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
|
/* $OpenBSD: map.c,v 1.35 2012/11/12 14:58:53 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, 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 <sys/types.h>
#include <sys/queue.h>
#include <sys/tree.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <err.h>
#include <errno.h>
#include <event.h>
#include <imsg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "smtpd.h"
#include "log.h"
struct map_backend *map_backend_lookup(enum map_src);
extern struct map_backend map_backend_static;
extern struct map_backend map_backend_db;
extern struct map_backend map_backend_file;
static objid_t last_map_id = 0;
struct map_backend *
map_backend_lookup(enum map_src source)
{
switch (source) {
case S_NONE:
return &map_backend_static;
case S_DB:
return &map_backend_db;
case S_FILE:
return &map_backend_file;
default:
fatalx("invalid map type");
}
return NULL;
}
struct map *
map_findbyname(const char *name)
{
struct map *m;
TAILQ_FOREACH(m, env->sc_maps, m_entry) {
if (strcmp(m->m_name, name) == 0)
break;
}
return (m);
}
struct map *
map_find(objid_t id)
{
struct map *m;
TAILQ_FOREACH(m, env->sc_maps, m_entry) {
if (m->m_id == id)
break;
}
return (m);
}
void *
map_lookup(objid_t mapid, const char *key, enum map_kind kind)
{
void *hdl = NULL;
char *ret = NULL;
struct map *map;
struct map_backend *backend = NULL;
map = map_find(mapid);
if (map == NULL) {
errno = EINVAL;
return NULL;
}
backend = map_backend_lookup(map->m_src);
hdl = backend->open(map);
if (hdl == NULL) {
log_warn("warn: map_lookup: can't open %s", map->m_config);
if (errno == 0)
errno = ENOTSUP;
return NULL;
}
ret = backend->lookup(hdl, key, kind);
backend->close(hdl);
errno = 0;
return ret;
}
int
map_compare(objid_t mapid, const char *key, enum map_kind kind,
int (*func)(const char *, const char *))
{
void *hdl = NULL;
struct map *map;
struct map_backend *backend = NULL;
int ret;
map = map_find(mapid);
if (map == NULL) {
errno = EINVAL;
return 0;
}
backend = map_backend_lookup(map->m_src);
hdl = backend->open(map);
if (hdl == NULL) {
log_warn("warn: map_compare: can't open %s", map->m_config);
if (errno == 0)
errno = ENOTSUP;
return 0;
}
ret = backend->compare(hdl, key, kind, func);
backend->close(hdl);
errno = 0;
return ret;
}
struct map *
map_create(enum map_src src, const char *name)
{
struct map *m;
size_t n;
if (name && map_findbyname(name))
errx(1, "map_create: map \"%s\" already defined", name);
m = xcalloc(1, sizeof(*m), "map_create");
m->m_src = src;
m->m_id = ++last_map_id;
if (m->m_id == INT_MAX)
errx(1, "map_create: too many maps defined");
if (name == NULL)
snprintf(m->m_name, sizeof(m->m_name), "<dynamic:%u>", m->m_id);
else {
n = strlcpy(m->m_name, name, sizeof(m->m_name));
if (n >= sizeof(m->m_name))
errx(1, "map_create: map name too long");
}
TAILQ_INIT(&m->m_contents);
TAILQ_INSERT_TAIL(env->sc_maps, m, m_entry);
return (m);
}
void
map_destroy(struct map *m)
{
struct mapel *me;
if (m->m_src != S_NONE)
errx(1, "map_add: cannot delete all from map");
while ((me = TAILQ_FIRST(&m->m_contents))) {
TAILQ_REMOVE(&m->m_contents, me, me_entry);
free(me);
}
TAILQ_REMOVE(env->sc_maps, m, m_entry);
free(m);
}
void
map_add(struct map *m, const char *key, const char * val)
{
struct mapel *me;
size_t n;
if (m->m_src != S_NONE)
errx(1, "map_add: cannot add to map");
me = xcalloc(1, sizeof(*me), "map_add");
n = strlcpy(me->me_key, key, sizeof(me->me_key));
if (n >= sizeof(me->me_key))
errx(1, "map_add: key too long");
if (val) {
n = strlcpy(me->me_val, val,
sizeof(me->me_val));
if (n >= sizeof(me->me_val))
errx(1, "map_add: value too long");
}
TAILQ_INSERT_TAIL(&m->m_contents, me, me_entry);
}
void
map_delete(struct map *m, const char *key)
{
struct mapel *me;
if (m->m_src != S_NONE)
errx(1, "map_add: cannot delete from map");
TAILQ_FOREACH(me, &m->m_contents, me_entry) {
if (strcmp(me->me_key, key) == 0)
break;
}
if (me == NULL)
return;
TAILQ_REMOVE(&m->m_contents, me, me_entry);
free(me);
}
void *
map_open(struct map *m)
{
struct map_backend *backend = NULL;
backend = map_backend_lookup(m->m_src);
return backend->open(m);
}
void
map_close(struct map *m, void *hdl)
{
struct map_backend *backend = NULL;
backend = map_backend_lookup(m->m_src);
backend->close(hdl);
}
void
map_update(struct map *m)
{
struct map_backend *backend = NULL;
backend = map_backend_lookup(m->m_src);
if (backend->update)
backend->update(m);
}
|