Navigation


Changes in / [1353:23db8abdccda:1359:09f94b1bedc3] in freeDiameter


Ignore:
Files:
1 added
1 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • doc/acl_wl.conf.sample

    r162 r1354  
    44# maintaining this connection ourselves (as it would be the case by declaring the
    55# peer in a ConnectPeer directive).
     6#
     7# This extension supports configuration reload at runtime. Send
     8# signal SIGUSR1 to the process to cause the process to reload its
     9# config.
     10#
    611# The format of this file is very simple. It contains a list of peer names
    712# separated by spaces or newlines.
  • extensions/acl_wl/acl_wl.c

    r741 r1354  
    3838 */
    3939
     40#include <pthread.h>
     41#include <signal.h>
     42
    4043#include "acl_wl.h"
     44
     45static pthread_rwlock_t acl_wl_lock;
     46
     47#define MODULE_NAME "acl_wl"
     48
     49static char *acl_wl_config_file;
    4150
    4251/* The validator function */
     
    5463        /* Default to unknown result */
    5564        *auth = 0;
    56        
     65
     66        if (pthread_rwlock_rdlock(&acl_wl_lock) != 0) {
     67                fd_log_notice("%s: read-lock failed, skipping handler", MODULE_NAME);
     68                return 0;
     69        }
     70
    5771        /* Now search the peer in our tree */
    5872        CHECK_FCT( aw_tree_lookup(info->pi_diamid, &res) );
     73
     74        if (pthread_rwlock_unlock(&acl_wl_lock) != 0) {
     75                fd_log_notice("%s: read-unlock failed after aw_tree_lookup, exiting", MODULE_NAME);
     76                exit(1);
     77        }
     78
    5979        if (res < 0) {
    6080                /* The peer is not whitelisted */
     
    88108}
    89109
     110static volatile int in_signal_handler = 0;
     111
     112/* signal handler */
     113static void sig_hdlr(void)
     114{
     115        struct fd_list old_tree;
     116
     117        if (in_signal_handler) {
     118                fd_log_error("%s: already handling a signal, ignoring new one", MODULE_NAME);
     119                return;
     120        }
     121        in_signal_handler = 1;
     122
     123        if (pthread_rwlock_wrlock(&acl_wl_lock) != 0) {
     124                fd_log_error("%s: locking failed, aborting config reload", MODULE_NAME);
     125                return;
     126        }
     127
     128        /* save old config in case reload goes wrong */
     129        old_tree = tree_root;
     130        fd_list_init(&tree_root, NULL);
     131
     132        if (aw_conf_handle(acl_wl_config_file) != 0) {
     133                fd_log_error("%s: error reloading configuration, restoring previous configuration", MODULE_NAME);
     134                aw_tree_destroy();
     135                tree_root = old_tree;
     136        } else {
     137                struct fd_list new_tree;
     138                new_tree = tree_root;
     139                tree_root = old_tree;
     140                aw_tree_destroy();
     141                tree_root = new_tree;
     142        }
     143
     144        if (pthread_rwlock_unlock(&acl_wl_lock) != 0) {
     145                fd_log_error("%s: unlocking failed after config reload, exiting", MODULE_NAME);
     146                exit(1);
     147        }
     148
     149        fd_log_notice("%s: reloaded configuration", MODULE_NAME);
     150
     151        in_signal_handler = 0;
     152}
     153
     154
    90155/* entry point */
    91156static int aw_entry(char * conffile)
     
    93158        TRACE_ENTRY("%p", conffile);
    94159        CHECK_PARAMS(conffile);
    95        
     160
     161        acl_wl_config_file = conffile;
     162
     163        pthread_rwlock_init(&acl_wl_lock, NULL);
     164
     165        if (pthread_rwlock_wrlock(&acl_wl_lock) != 0) {
     166                fd_log_notice("%s: write-lock failed, aborting", MODULE_NAME);
     167                return EDEADLK;
     168        }
     169
    96170        /* Parse configuration file */
    97171        CHECK_FCT( aw_conf_handle(conffile) );
    98        
     172
    99173        TRACE_DEBUG(INFO, "Extension ACL_wl initialized with configuration: '%s'", conffile);
    100174        if (TRACE_BOOL(ANNOYING)) {
    101175                aw_tree_dump();
    102176        }
    103        
     177
     178        if (pthread_rwlock_unlock(&acl_wl_lock) != 0) {
     179                fd_log_notice("%s: write-unlock failed, aborting", MODULE_NAME);
     180                return EDEADLK;
     181        }
     182
     183        /* Register reload callback */
     184        CHECK_FCT(fd_event_trig_regcb(SIGUSR1, MODULE_NAME, sig_hdlr));
     185
    104186        /* Register the validator function */
    105187        CHECK_FCT( fd_peer_validate_register ( aw_validate ) );
     
    115197}
    116198
    117 EXTENSION_ENTRY("acl_wl", aw_entry);
     199EXTENSION_ENTRY(MODULE_NAME, aw_entry);
  • extensions/acl_wl/acl_wl.h

    r741 r1354  
    4444#include <freeDiameter/extension.h>
    4545
     46extern struct fd_list tree_root;
     47
    4648/* Parse the configuration file */
    4749int aw_conf_handle(char * conffile);
  • extensions/acl_wl/aw_conf.l

    r1057 r1354  
    3636/* Lex extension's configuration parser.
    3737 *
    38  * The configuration file contains a default priority, and a list of peers with optional overwite priority.
     38 * The configuration file contains a default priority, and a list of peers with optional overwrite priority.
    3939 * -- see the app_test.conf.sample file for more detail.
    4040 */
  • extensions/acl_wl/aw_conf.y

    r1057 r1354  
    5858/* Forward declaration */
    5959int yyparse(char * conffile);
     60void aw_confrestart(FILE *input_file);
    6061
    6162static int fqdn_added = 0;
     
    7576                ret = errno;
    7677                fd_log_debug("Unable to open extension configuration file %s for reading: %s", conffile, strerror(ret));
    77                 TRACE_DEBUG (INFO, "Error occurred, message logged -- configuration file.");
     78                TRACE_DEBUG (INFO, "acl_wl: Error occurred, message logged -- configuration file.");
    7879                return ret;
    7980        }
    8081
     82        aw_confrestart(aw_confin);
    8183        ret = yyparse(conffile);
    8284
     
    8486
    8587        if (ret != 0) {
    86                 TRACE_DEBUG (INFO, "Unable to parse the configuration file.");
     88                TRACE_DEBUG (INFO, "acl_wl: Unable to parse the configuration file.");
    8789                return EINVAL;
    8890        } else {
    89                 TRACE_DEBUG(FULL, "Read %d FQDN entries successfully.", fqdn_added);
     91                TRACE_DEBUG(FULL, "acl_wl: Read %d FQDN entries successfully.", fqdn_added);
    9092        }
    9193       
     
    99101void yyerror (YYLTYPE *ploc, char * conffile, char const *s)
    100102{
    101         TRACE_DEBUG(INFO, "Error in configuration parsing");
     103        TRACE_DEBUG(INFO, "acl_wl: Error in configuration parsing");
    102104       
    103105        if (ploc->first_line != ploc->last_line)
     
    131133                        {
    132134                                fqdn_added++;
    133                                 TRACE_DEBUG(FULL, "Added FQDN: %s", $2);
     135                                TRACE_DEBUG(FULL, "acl_wl: Added FQDN: %s", $2);
    134136                        }
    135137                        | conffile LEX_ERROR
    136138                        {
    137                                 yyerror(&yylloc, conffile, "An error occurred while parsing the configuration file");
     139                                yyerror(&yylloc, conffile, "acl_wl: An error occurred while parsing the configuration file");
    138140                                return EINVAL;
    139141                        }
  • extensions/acl_wl/aw_tree.c

    r1127 r1354  
    7070
    7171/* The root of the tree */
    72 static struct fd_list tree_root = FD_LIST_INITIALIZER(tree_root);
    73 
    74 /* Note: we don't need to lock, since we add only when parsing the conf, and then read only */
     72struct fd_list tree_root = FD_LIST_INITIALIZER(tree_root);
     73
     74/* Note: we lock accesses to the tree with acl_wl_lock because of config reload */
    7575
    7676
  • extensions/dict_json/CMakeLists.txt

    r1333 r1355  
    77PKG_CHECK_MODULES(JSONCPP REQUIRED jsoncpp)
    88PKG_CHECK_MODULES(JSON_SCHEMA REQUIRED json-schema)
     9PKG_CHECK_MODULES(PCRECPP REQUIRED libpcrecpp)
    910
    1011# List of source files
    1112SET(DICT_JSON_SRC
    1213        dict_json.cc
    13         dict_json_dict_schema.cc
     14        ${CMAKE_CURRENT_BINARY_DIR}/dict_json_dict_schema.cc
    1415)
    1516
     
    2930TARGET_LINK_LIBRARIES(dict-json-diff ${JSONCPP_LIBRARIES} ${JSON_SCHEMA_STATIC_LIBRARIES})
    3031
     32ADD_EXECUTABLE(json-schema-to-c json-schema-to-c.cc)
     33TARGET_LINK_LIBRARIES(json-schema-to-c ${JSONCPP_LIBRARIES} ${JSON_SCHEMA_STATIC_LIBRARIES} ${PCRECPP_LIBRARIES})
     34
     35ADD_CUSTOM_COMMAND(
     36        OUTPUT dict_json_dict_schema.cc
     37        COMMAND json-schema-to-c ${CMAKE_CURRENT_SOURCE_DIR}/dict_json_dict_schema.json ${CMAKE_CURRENT_BINARY_DIR}/dict_json_dict_schema.cc
     38        DEPENDS dict_json_dict_schema.json
     39)
    3140
    3241####
     
    3948        RUNTIME DESTINATION ${INSTALL_DAEMON_SUFFIX}
    4049        COMPONENT freeDiameter-dictionary-json)
    41 
    42 # dict_json_dict_schema.cc is created from dict_json_dict_schema.json
    43 # the tool for that is not yet open source, but the conversion is straightforward
  • libfdcore/cnxctx.c

    r1322 r1356  
    15461546                tmp = gnutls_certificate_type_get_name (gnutls_certificate_type_get (session));
    15471547                LOG_D("\t - Certificate Type: %s", tmp);
    1548 
    1549                 /* print the compression algorithm (if any)
    1550                 */
    1551                 tmp = gnutls_compression_get_name (gnutls_compression_get (session));
    1552                 LOG_D("\t - Compression: %s", tmp);
    15531548
    15541549                /* print the name of the cipher used.
  • tests/tests.h

    r1127 r1357  
    132132       
    133133
     134#ifndef GNUTLS_VERSION_210
    134135GCRY_THREAD_OPTION_PTHREAD_IMPL;
     136#endif /* GNUTLS_VERSION_210 */
    135137
    136138/* gnutls debug. */
     
    214216       
    215217        /* Initialize gcrypt and gnutls */
     218#ifndef GNUTLS_VERSION_210
    216219        (void) gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
    217220        (void) gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
     221#endif /* GNUTLS_VERSION_210 */
    218222        CHECK( 0, gnutls_global_init());
    219223        /* Set gnutls debug level ? */
Note: See TracChangeset for help on using the changeset viewer.