X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fconfig.h;h=0a57d4fdbf48a013193b9a8a2b3bc1b3ef239482;hb=19838fe2ef8161be435454490284baf98d73df88;hp=47badfe7a392d86408b7e831361c34f59edc53ff;hpb=77a925d7f6936675fca087fce3bb700d7a6fe646;p=openldap diff --git a/servers/slapd/config.h b/servers/slapd/config.h index 47badfe7a3..0a57d4fdbf 100644 --- a/servers/slapd/config.h +++ b/servers/slapd/config.h @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2006 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -14,6 +14,9 @@ * . */ +#ifndef CONFIG_H +#define CONFIG_H + typedef struct ConfigTable { char *name; char *what; @@ -62,6 +65,7 @@ typedef enum { #define ARG_NO_INSERT 0x04000000 /* no arbitrary inserting */ #define ARG_NO_DELETE 0x08000000 /* no runtime deletes */ #define ARG_UNIQUE 0x10000000 +#define ARG_QUOTE 0x20000000 /* wrap with quotes before parsing */ #define ARG_OFFSET 0x40000000 #define ARG_MAGIC 0x80000000 @@ -108,7 +112,7 @@ typedef struct config_args_s { char *line; char *tline; const char *fname; - unsigned long lineno; + int lineno; char log[MAXPATHLEN + STRLENOF(": line 18446744073709551615") + 1]; char msg[SLAP_TEXT_BUFLEN]; int depth; @@ -139,6 +143,11 @@ typedef struct config_args_s { ConfigDriver *cleanup; } ConfigArgs; +/* If lineno is zero, we have an actual LDAP Add request from a client. + * Otherwise, we're reading a config file or a config dir. + */ +#define CONFIG_ONLINE_ADD(ca) (!((ca)->lineno)) + #define value_int values.v_int #define value_long values.v_long #define value_ber_t values.v_ber_t @@ -148,8 +157,30 @@ typedef struct config_args_s { #define value_ndn values.v_dn.vdn_ndn int config_register_schema(ConfigTable *ct, ConfigOCs *co); +int config_del_vals(ConfigTable *cf, ConfigArgs *c); int config_get_vals(ConfigTable *ct, ConfigArgs *c); int config_add_vals(ConfigTable *ct, ConfigArgs *c); + +void init_config_argv( ConfigArgs *c ); +int init_config_attrs(ConfigTable *ct); +int init_config_ocs( ConfigOCs *ocs ); +int config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx); +int config_parse_add(ConfigTable *ct, ConfigArgs *c); +int read_config_file(const char *fname, int depth, ConfigArgs *cf, + ConfigTable *cft ); + ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c); Entry * config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent, ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra ); + +int config_shadow( ConfigArgs *c, int flag ); +#define config_slurp_shadow(c) config_shadow((c), SLAP_DBFLAG_SLURP_SHADOW) +#define config_sync_shadow(c) config_shadow((c), SLAP_DBFLAG_SYNC_SHADOW) + + /* Make sure we don't exceed the bits reserved for userland */ +#define config_check_userland(last) \ + assert( ( ( (last) - 1 ) & ARGS_USERLAND ) == ( (last) - 1 ) ); + +#define SLAP_X_ORDERED_FMT "{%d}" + +#endif /* CONFIG_H */