1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/* libcyr_cfg.c -- configuration interface to libcyrus
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include "assert.h"
#include "libcyr_cfg.h"
#include "cyrusdb.h"
#include "xmalloc.h"
#include "util.h"
#if defined(__GNUC__) && __GNUC__ > 1
/* We can use the GCC union constructor extension */
#define CFGVAL(t,v) (union cyrus_config_value)((t)(v))
#else
#define CFGVAL(t,v) {(void *)(v)}
#endif
struct delayed_action {
struct delayed_action *next;
char *key;
void (*cb)(void *rock);
void (*myfree)(void *rock);
void *rock;
};
static struct delayed_action *delayed_actions;
static struct cyrusopt_s cyrus_options[] = {
{ CYRUSOPT_ZERO, { NULL }, CYRUS_OPT_NOTOPT },
{ CYRUSOPT_AUTH_UNIX_GROUP_ENABLE,
CFGVAL(long, 1),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_USERNAME_TOLOWER,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_SKIPLIST_UNSAFE,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_TEMP_PATH,
CFGVAL(const char *, "/tmp"),
CYRUS_OPT_STRING },
{ CYRUSOPT_PTS_CACHE_TIMEOUT,
CFGVAL(long, 3 * 60 * 60), /* 3 hours */
CYRUS_OPT_INT },
{ CYRUSOPT_CONFIG_DIR,
CFGVAL(const char *, "/var/imap"),
CYRUS_OPT_STRING },
{ CYRUSOPT_DB_INIT_FLAGS,
CFGVAL(long, 0),
CYRUS_OPT_INT },
{ CYRUSOPT_FULLDIRHASH,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_PTSCACHE_DB,
CFGVAL(const char *, "skiplist"),
CYRUS_OPT_STRING },
{ CYRUSOPT_PTSCACHE_DB_PATH,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_PTLOADER_SOCK,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_VIRTDOMAINS,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_AUTH_MECH,
CFGVAL(const char *, "unix"),
CYRUS_OPT_STRING },
{ CYRUSOPT_DELETERIGHT,
CFGVAL(const char *, "c"),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_DATABASE,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_ENGINE,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_HOSTNAMES,
CFGVAL(const char *, ""),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_USER,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_PASSWD,
CFGVAL(const char *, NULL),
CYRUS_OPT_STRING },
{ CYRUSOPT_SQL_USESSL,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_SKIPLIST_ALWAYS_CHECKPOINT,
CFGVAL(long, 1),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_ACL_ADMIN_IMPLIES_WRITE,
CFGVAL(long, 0),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_NORMALIZEUID,
CFGVAL(long, 1),
CYRUS_OPT_SWITCH },
{ CYRUSOPT_LAST, { NULL }, CYRUS_OPT_NOTOPT }
};
HIDDEN const char *libcyrus_config_getstring(enum cyrus_opt opt)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_STRING);
return cyrus_options[opt].val.s;
}
HIDDEN int libcyrus_config_getint(enum cyrus_opt opt)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_INT);
#if (SIZEOF_LONG != 4)
if ((cyrus_options[opt].val.i > 0x7fffffff)||(cyrus_options[opt].val.i < -0x7fffffff)) {
syslog(LOG_ERR, "libcyrus_config_getint: option %d: %ld too large for type", cyrus_options[opt].opt, cyrus_options[opt].val.i);
}
#endif
return cyrus_options[opt].val.i;
}
EXPORTED int libcyrus_config_getswitch(enum cyrus_opt opt)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_SWITCH);
#if (SIZEOF_LONG != 4)
if ((cyrus_options[opt].val.b > 0x7fffffff)||(cyrus_options[opt].val.b < -0x7fffffff)) {
syslog(LOG_ERR, "libcyrus_config_getswitch: option %d: %ld too large for type", cyrus_options[opt].opt, cyrus_options[opt].val.b);
}
#endif
return cyrus_options[opt].val.b;
}
EXPORTED void libcyrus_config_setstring(enum cyrus_opt opt, const char *val)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_STRING);
cyrus_options[opt].val.s = val;
}
EXPORTED void libcyrus_config_setint(enum cyrus_opt opt, int val)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_INT);
cyrus_options[opt].val.i = val;
}
EXPORTED void libcyrus_config_setswitch(enum cyrus_opt opt, int val)
{
assert(opt > CYRUSOPT_ZERO && opt < CYRUSOPT_LAST);
assert(cyrus_options[opt].opt == opt);
assert(cyrus_options[opt].t == CYRUS_OPT_SWITCH);
cyrus_options[opt].val.b = val;
}
/* This keeps a list of functions to call at an opportune time when the
* user is not waiting.
* Arguments:
* dedup key: if provided, don't add this callback again if there's
* already one for this key.
* cb: callback to call with rock passed
* free: function to call with rock after the callback to free it,
if NULL there is nothing to free.
* rock: arguments for the callback
*/
EXPORTED void libcyrus_delayed_action(const char *key, void (*cb)(void *),
void (*myfree)(void *), void *rock)
{
struct delayed_action *action;
if (key) {
// check if we already have this event on our list
for (action = delayed_actions; action; action = action->next) {
if (!strcmpsafe(key, action->key)) {
if (myfree) myfree(rock);
return;
}
}
}
action = xzmalloc(sizeof(struct delayed_action));
action->key = xstrdupnull(key);
action->cb = cb;
action->myfree = myfree;
action->rock = rock;
action->next = delayed_actions;
delayed_actions = action;
}
EXPORTED void libcyrus_run_delayed(void)
{
while (delayed_actions) {
struct delayed_action *action = delayed_actions;
delayed_actions = action->next;
action->cb(action->rock);
if (action->myfree) action->myfree(action->rock);
free(action->key);
free(action);
}
}
EXPORTED void libcyrus_init(void)
{
cyrusdb_init();
}
EXPORTED void libcyrus_done(void)
{
libcyrus_run_delayed();
cyrusdb_done();
}
|