mh_alias.y
9.25 KB
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
%{
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2003 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Mailutils is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Mailutils; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <mh.h>
#include <pwd.h>
#include <grp.h>
#include <sys/types.h>
struct mh_alias
{
char *name;
list_t rcpt_list;
int inclusive;
};
static list_t alias_list;
static list_t
list_create_or_die ()
{
int status;
list_t list;
status = list_create (&list);
if (status)
{
ali_parse_error (_("can't create list: %s"), mu_strerror (status));
exit (1);
}
return list;
}
static list_t unix_group_to_list __P((char *name));
static list_t unix_gid_to_list __P((char *name));
static list_t unix_passwd_to_list __P((void));
int yyerror __P((char *s));
int yylex __P((void));
%}
%union {
char *string;
list_t list;
struct mh_alias *alias;
}
%token <string> STRING
%type <list> address_list address_group
%type <string> address
%type <alias> alias
%%
input : /* empty */
| alias_list
| alias_list nl
;
alias_list : alias
{
if (!alias_list)
alias_list = list_create_or_die ();
list_append (alias_list, $1);
}
| alias_list nl alias
{
list_append (alias_list, $3);
}
;
nl : '\n'
| nl '\n'
;
alias : STRING ':' address_group
{
$$ = xmalloc (sizeof (*$$));
$$->name = $1;
$$->rcpt_list = $3;
$$->inclusive = 0;
}
| STRING ';' address_group
{
$$ = xmalloc (sizeof (*$$));
$$->name = $1;
$$->rcpt_list = $3;
$$->inclusive = 1;
}
;
address_group: address_list
| '=' STRING
{
$$ = unix_group_to_list ($2);
free ($2);
}
| '+' STRING
{
$$ = unix_gid_to_list ($2);
free ($2);
}
| '*'
{
$$ = unix_passwd_to_list ();
}
;
address_list : address
{
$$ = list_create_or_die ();
list_append ($$, $1);
}
| address_list ',' address
{
list_append ($1, $3);
$$ = $1;
}
;
address : STRING
;
%%
static list_t
ali_list_dup (list_t src)
{
list_t dst;
iterator_t itr;
if (list_create (&dst))
return NULL;
if (iterator_create (&itr, src))
{
list_destroy (&dst);
return NULL;
}
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
void *data;
iterator_current (itr, (void **)&data);
list_append (dst, data);
}
iterator_destroy (&itr);
return dst;
}
static int
ali_member (list_t list, char *name)
{
iterator_t itr;
int rc = 1;
if (iterator_create (&itr, list))
return 1;
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
char *item;
iterator_current (itr, (void **)&item);
if (strcmp (name, item) == 0)
{
rc = 0;
break;
}
}
iterator_destroy (&itr);
return rc;
}
int
aliascmp (char *pattern, char *name)
{
int len = strlen (pattern);
if (len > 1 && pattern[len - 1] == '*')
return strncmp (pattern, name, len - 2);
return strcmp (pattern, name);
}
int
_insert_list (list_t list, void *prev, list_t new_list)
{
iterator_t itr;
if (iterator_create (&itr, new_list))
return 1;
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
void *item;
iterator_current (itr, &item);
list_insert (list, prev, item);
prev = item;
}
iterator_destroy (&itr);
return 0;
}
static int mh_alias_get_internal __P((char *name, iterator_t start,
list_t *return_list, int *inclusive));
int
alias_expand_list (list_t name_list, iterator_t orig_itr, int *inclusive)
{
iterator_t itr;
if (iterator_create (&itr, name_list))
return 1;
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
char *name;
list_t exlist;
iterator_current (itr, (void **)&name);
if (mh_alias_get_internal (name, orig_itr, &exlist, inclusive) == 0)
{
_insert_list (name_list, name, exlist);
list_remove (name_list, name);
list_destroy (&exlist);
}
}
iterator_destroy (&itr);
return 0;
}
/* Look up the named alias. If found, return the list of recipient
names associated with it */
static int
mh_alias_get_internal (char *name, iterator_t start, list_t *return_list,
int *inclusive)
{
iterator_t itr;
int rc = 1;
if (!start)
{
if (iterator_create (&itr, alias_list))
return 1;
iterator_first (itr);
}
else
{
iterator_dup (&itr, start);
iterator_next (itr);
}
for (; !iterator_is_done (itr); iterator_next (itr))
{
struct mh_alias *alias;
iterator_current (itr, (void **)&alias);
if (inclusive)
*inclusive |= alias->inclusive;
if (aliascmp (alias->name, name) == 0)
{
*return_list = ali_list_dup (alias->rcpt_list);
alias_expand_list (*return_list, itr, inclusive);
rc = 0;
break;
}
}
iterator_destroy (&itr);
return rc;
}
int
mh_alias_get (char *name, list_t *return_list)
{
return mh_alias_get_internal (name, NULL, return_list, NULL);
}
int
mh_alias_get_address (char *name, address_t *paddr, int *incl)
{
iterator_t itr;
list_t list;
const char *domain = NULL;
if (mh_alias_get_internal (name, NULL, &list, incl))
return 1;
if (list_is_empty (list))
{
list_destroy (&list);
return 1;
}
if (iterator_create (&itr, list) == 0)
{
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
char *item;
address_t a;
char *ptr = NULL;
iterator_current (itr, (void **)&item);
if (incl && *incl)
{
if (strchr (item, '@') == 0)
{
if (!domain)
mu_get_user_email_domain (&domain);
asprintf (&ptr, "\"%s\" <%s@%s>", name, item, domain);
}
else
asprintf (&ptr, "\"%s\" <%s>", name, item);
item = ptr;
}
if (address_create (&a, item))
{
mh_error (_("Error expanding aliases -- invalid address `%s'"),
item);
}
else
{
address_union (paddr, a);
address_destroy (&a);
}
if (ptr)
free (ptr);
}
iterator_destroy (&itr);
}
list_destroy (&list);
return 0;
}
/* Look up the given user name in the aliases. Return the list of
alias names this user is member of */
int
mh_alias_get_alias (char *uname, list_t *return_list)
{
iterator_t itr;
int rc = 1;
if (iterator_create (&itr, alias_list))
return 1;
for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
{
struct mh_alias *alias;
iterator_current (itr, (void **)&alias);
if (ali_member (alias->rcpt_list, uname) == 0)
{
if (*return_list == NULL && list_create (return_list))
break;
list_append (*return_list, alias->name);
rc = 0;
}
}
iterator_destroy (&itr);
return rc;
}
void
mh_alias_enumerate (mh_alias_enumerator_t fun, void *data)
{
iterator_t itr;
int rc = 0;
if (iterator_create (&itr, alias_list))
return ;
for (iterator_first (itr);
rc == 0 && !iterator_is_done (itr);
iterator_next (itr))
{
struct mh_alias *alias;
list_t tmp;
iterator_current (itr, (void **)&alias);
tmp = ali_list_dup (alias->rcpt_list);
alias_expand_list (tmp, itr, NULL);
rc = fun (alias->name, tmp, data);
list_destroy (&tmp);
}
iterator_destroy (&itr);
}
static list_t
unix_group_to_list (char *name)
{
struct group *grp = getgrnam (name);
list_t lst = list_create_or_die ();
if (grp)
{
char **p;
for (p = grp->gr_mem; *p; p++)
list_append (lst, strdup (*p));
}
return lst;
}
static list_t
unix_gid_to_list (char *name)
{
struct group *grp = getgrnam (name);
list_t lst = list_create_or_die ();
if (grp)
{
struct passwd *pw;
setpwent();
while ((pw = getpwent ()))
{
if (pw->pw_gid == grp->gr_gid)
list_append (lst, strdup (pw->pw_name));
}
endpwent();
}
return lst;
}
static list_t
unix_passwd_to_list ()
{
list_t lst = list_create_or_die ();
struct passwd *pw;
setpwent();
while ((pw = getpwent ()))
{
if (pw->pw_uid > 200)
list_append (lst, strdup (pw->pw_name));
}
endpwent();
return lst;
}
int
mh_read_aliases ()
{
char *p, *sp;
p = mh_global_profile_get ("Aliasfile", NULL);
if (p)
for (p = strtok_r (p, " \t", &sp); p; p = strtok_r (NULL, " \t", &sp))
mh_alias_read (p, 1);
mh_alias_read (DEFAULT_ALIAS_FILE, 0);
return 0;
}