]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-sock/config.c
ITS#6024 Don't send cookies without csn.
[openldap] / servers / slapd / back-sock / config.c
index c9938dde2bc9d0fbc720249bd2a887fb73acb0a7..288a69d7cc6d9e355f16a82c916c5f197eae8c2f 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2007 The OpenLDAP Foundation.
+ * Copyright 2007-2009 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * top-level directory of the distribution or, alternatively, at
  * <http://www.OpenLDAP.org/license.html>.
  */
+/* ACKNOWLEDGEMENTS:
+ * This work was initially developed by Brian Candler for inclusion
+ * in OpenLDAP Software. Dynamic config support by Howard Chu.
+ */
 
 #include "portable.h"
 
 #include <ac/socket.h>
 
 #include "slap.h"
+#include "config.h"
 #include "back-sock.h"
 
-int
-sock_back_db_config(
-    BackendDB  *be,
-    const char *fname,
-    int                lineno,
-    int                argc,
-    char       **argv
-)
-{
-       struct sockinfo *si = (struct sockinfo *) be->be_private;
+static ConfigDriver bs_cf_gen;
 
-       if ( si == NULL ) {
-               fprintf( stderr, "%s: line %d: sock backend info is null!\n",
-                   fname, lineno );
-               return( 1 );
-       }
+enum {
+       BS_EXT = 1
+};
 
-       /* socketpath */
-       if ( strcasecmp( argv[0], "socketpath" ) == 0 ) {
-               if ( argc != 2 ) {
-                       fprintf( stderr,
-       "%s: line %d: exactly one parameter needed for \"socketpath\"\n",
-                           fname, lineno );
-                       return( 1 );
-               }
-               si->si_sockpath = ch_strdup( argv[1] );
+static ConfigTable bscfg[] = {
+       { "socketpath", "pathname", 2, 2, 0, ARG_STRING|ARG_OFFSET,
+               (void *)offsetof(struct sockinfo, si_sockpath),
+               "( OLcfgDbAt:7.1 NAME 'olcDbSocketPath' "
+                       "DESC 'Pathname for Unix domain socket' "
+                       "EQUALITY caseExactMatch "
+                       "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
+       { "extensions", "ext", 2, 0, 0, ARG_MAGIC|BS_EXT,
+               bs_cf_gen, "( OLcfgDbAt:7.2 NAME 'olcDbSocketExtensions' "
+                       "DESC 'binddn, peername, or ssf' "
+                       "EQUALITY caseIgnoreMatch "
+                       "SYNTAX OMsDirectoryString )", NULL, NULL },
+       { NULL, NULL }
+};
+
+static ConfigOCs bsocs[] = {
+       { "( OLcfgDbOc:7.1 "
+               "NAME 'olcDbSocketConfig' "
+               "DESC 'Socket backend configuration' "
+               "SUP olcDatabaseConfig "
+               "MUST olcDbSocketPath "
+               "MAY olcDbSocketExtensions )",
+                       Cft_Database, bscfg },
+       { NULL, 0, NULL }
+};
 
-       /* extensions */
-       } else if ( strcasecmp( argv[0], "extensions" ) == 0 ) {
-               int i;
-               for ( i=1; i<argc; i++ ) {
-                       if ( strcasecmp( argv[i], "binddn" ) == 0 )
-                               si->si_extensions |= SOCK_EXT_BINDDN;
-                       else if ( strcasecmp( argv[i], "peername" ) == 0 )
-                               si->si_extensions |= SOCK_EXT_PEERNAME;
-                       else if ( strcasecmp( argv[i], "ssf" ) == 0 )
-                               si->si_extensions |= SOCK_EXT_SSF;
-                       else {
-                               fprintf( stderr,
-       "%s: line %d: unknown extension \"%s\"\n",
-                           fname, lineno, argv[i] );
-                               return( 1 );
+static slap_verbmasks bs_exts[] = {
+       { BER_BVC("binddn"), SOCK_EXT_BINDDN },
+       { BER_BVC("peername"), SOCK_EXT_PEERNAME },
+       { BER_BVC("ssf"), SOCK_EXT_SSF },
+       { BER_BVNULL, 0 }
+};
+
+static int
+bs_cf_gen( ConfigArgs *c )
+{
+       struct sockinfo *si = c->be->be_private;
+       int rc;
+
+       if ( c->op == SLAP_CONFIG_EMIT ) {
+               switch( c->type ) {
+               case BS_EXT:
+                       return mask_to_verbs( bs_exts, si->si_extensions, &c->rvalue_vals );
+               }
+       } else if ( c->op == LDAP_MOD_DELETE ) {
+               switch( c->type ) {
+               case BS_EXT:
+                       if ( c->valx < 0 ) {
+                               si->si_extensions = 0;
+                               rc = 0;
+                       } else {
+                               slap_mask_t dels = 0;
+                               rc = verbs_to_mask( c->argc, c->argv, bs_exts, &dels );
+                               if ( rc == 0 )
+                                       si->si_extensions ^= dels;
                        }
+                       return rc;
                }
 
-       /* anything else */
        } else {
-               return SLAP_CONF_UNKNOWN;
+               switch( c->type ) {
+               case BS_EXT:
+                       return verbs_to_mask( c->argc, c->argv, bs_exts, &si->si_extensions );
+               }
        }
+       return 1;
+}
+
+int
+sock_back_init_cf( BackendInfo *bi )
+{
+       bi->bi_cf_ocs = bsocs;
 
-       return 0;
+       return config_register_schema( bscfg, bsocs );
 }