1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Name lists, alternates and groups: aliases, mailing lists, shortcuts.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #define n_FILE nam_a_grp
38 #ifndef HAVE_AMALGAMATION
43 /* Main types (bits not values for easier testing only) */
47 GT_MASK
= GT_ALIAS
| GT_MLIST
| GT_SHORTCUT
,
49 /* Subtype bits and flags */
53 /* Extended type mask to be able to reflect what we really have; i.e., mlist
54 * can have GT_REGEX if they are subscribed or not, but `mlsubscribe' should
55 * print out only GT_MLIST which have the GT_SUBSCRIBE attribute set */
56 GT_PRINT_MASK
= GT_MASK
| GT_SUBSCRIBE
61 size_t g_subclass_off
; /* of "subclass" in .g_id (if any) */
62 ui8_t g_type
; /* enum group_type */
63 /* Identifying name, of variable size. Dependent on actual "subtype" more
64 * data follows thereafter, but note this is always used (i.e., for regular
65 * expression entries this is still set to the plain string) */
66 char g_id
[n_VFIELD_SIZE(-1)];
68 #define GP_TO_SUBCLASS(X,G) \
70 union __group_subclass {void *gs_vp; char *gs_cp;} __gs__;\
71 __gs__.gs_cp = (char*)n_UNCONST(G) + (G)->g_subclass_off;\
75 struct grp_names_head
{
76 struct grp_names
*gnh_head
;
80 struct grp_names
*gn_next
;
81 char gn_id
[n_VFIELD_SIZE(0)];
86 struct grp_regex
*gr_last
;
87 struct grp_regex
*gr_next
;
88 struct group
*gr_mygroup
; /* xxx because lists use grp_regex*! ?? */
89 size_t gr_hits
; /* Number of times this group matched */
95 struct group
**gl_htable
;
96 struct group
**gl_slot
;
97 struct group
*gl_slot_last
;
98 struct group
*gl_group
;
101 /* List of alternate names of user */
102 static char **a_nag_altnames
;
105 static struct group
*_alias_heads
[HSHSIZE
]; /* TODO dynamic hash */
107 /* `mlist', `mlsubscribe'. Anything is stored in the hashmap.. */
108 static struct group
*_mlist_heads
[HSHSIZE
]; /* TODO dynamic hash */
110 /* ..but entries which have GT_REGEX set are false lookups and will really be
111 * accessed via sequential lists instead, which are type-specific for better
112 * performance, but also to make it possible to have ".*@xy.org" as a mlist
113 * and "(one|two)@xy.org" as a mlsubscription.
114 * These lists use a bit of QOS optimization in that a matching group will
115 * become relinked as the new list head if its hit count is
116 * (>= ((xy_hits / _xy_size) >> 2))
117 * Note that the hit counts only count currently linked in nodes.. */
119 static struct grp_regex
*_mlist_regex
, *_mlsub_regex
;
120 static size_t _mlist_size
, _mlist_hits
, _mlsub_size
, _mlsub_hits
;
124 static struct group
*_shortcut_heads
[HSHSIZE
]; /* TODO dynamic hash */
126 /* Same name, while taking care for *allnet*? */
127 static bool_t
_same_name(char const *n1
, char const *n2
);
129 /* Delete the given name from a namelist */
130 static struct name
* delname(struct name
*np
, char const *name
);
132 /* Put another node onto a list of names and return the list */
133 static struct name
* put(struct name
*list
, struct name
*node
);
135 /* Grab a single name (liberal name) */
136 static char const * yankname(char const *ap
, char *wbuf
,
137 char const *separators
, int keepcomms
);
139 /* Extraction multiplexer that splits an input line to names */
140 static struct name
* _extract1(char const *line
, enum gfield ntype
,
141 char const *separators
, bool_t keepcomms
);
143 /* Recursively expand a alias name. Limit expansion to some fixed level.
144 * Direct recursion is not expanded for convenience */
145 static struct name
* _gexpand(size_t level
, struct name
*nlist
,
146 struct group
*gp
, bool_t metoo
, int ntype
);
148 /* Lookup a group, return it or NULL, fill in glp anyway */
149 static struct group
* _group_lookup(enum group_type gt
,
150 struct group_lookup
*glp
, char const *id
);
152 /* Easier-to-use wrapper around _group_lookup() */
153 static struct group
* _group_find(enum group_type gt
, char const *id
);
155 /* Iteration: go to the first group, which also inits the iterator. A valid
156 * iterator can be stepped via _next(). A NULL return means no (more) groups
157 * to be iterated exist, in which case only glp->gl_group is set (NULL) */
158 static struct group
* _group_go_first(enum group_type gt
,
159 struct group_lookup
*glp
);
160 static struct group
* _group_go_next(struct group_lookup
*glp
);
162 /* Fetch the group id, create it as necessary */
163 static struct group
* _group_fetch(enum group_type gt
, char const *id
,
166 /* "Intelligent" delete which handles a "*" id, too;
167 * returns a true boolean if a group was deleted, and always succeeds for "*" */
168 static bool_t
_group_del(enum group_type gt
, char const *id
);
170 static struct group
* __group_del(struct group_lookup
*glp
);
171 static void __names_del(struct group
*gp
);
173 /* Print all groups of the given type, alphasorted */
174 static void _group_print_all(enum group_type gt
);
176 static int __group_print_qsorter(void const *a
, void const *b
);
178 /* Really print a group, actually. Return number of written lines */
179 static size_t _group_print(struct group
const *gp
, FILE *fo
);
181 /* Multiplexers for list and subscribe commands */
182 static int _mlmux(enum group_type gt
, char **argv
);
183 static int _unmlmux(enum group_type gt
, char **argv
);
185 /* Relinkers for the sequential match lists */
187 static void _mlmux_linkin(struct group
*gp
);
188 static void _mlmux_linkout(struct group
*gp
);
189 # define _MLMUX_LINKIN(GP) \
190 do if ((GP)->g_type & GT_REGEX) _mlmux_linkin(GP); while (0)
191 # define _MLMUX_LINKOUT(GP) \
192 do if ((GP)->g_type & GT_REGEX) _mlmux_linkout(GP); while (0)
194 # define _MLMUX_LINKIN(GP)
195 # define _MLMUX_LINKOUT(GP)
199 _same_name(char const *n1
, char const *n2
)
205 if (ok_blook(allnet
)) {
213 } while (c1
!= '\0' && c2
!= '\0' && c1
!= '@' && c2
!= '@');
216 rv
= !asccasecmp(n1
, n2
);
223 delname(struct name
*np
, char const *name
)
228 for (p
= np
; p
!= NULL
; p
= p
->n_flink
)
229 if (_same_name(p
->n_name
, name
)) {
230 if (p
->n_blink
== NULL
) {
231 if (p
->n_flink
!= NULL
)
232 p
->n_flink
->n_blink
= NULL
;
236 if (p
->n_flink
== NULL
) {
237 if (p
->n_blink
!= NULL
)
238 p
->n_blink
->n_flink
= NULL
;
241 p
->n_blink
->n_flink
= p
->n_flink
;
242 p
->n_flink
->n_blink
= p
->n_blink
;
249 put(struct name
*list
, struct name
*node
)
252 node
->n_flink
= list
;
253 node
->n_blink
= NULL
;
255 list
->n_blink
= node
;
261 yankname(char const *ap
, char *wbuf
, char const *separators
, int keepcomms
)
264 char *wp
, c
, inquote
, lc
, lastsp
;
269 /* Skip over intermediate list trash, as in ".org> , <xy@zz.org>" */
270 for (c
= *ap
; blankchar(c
) || c
== ','; c
= *++ap
)
277 /* Parse a full name: TODO RFC 5322
278 * - Keep everything in quotes, liberal handle *quoted-pair*s therein
279 * - Skip entire (nested) comments
280 * - In non-quote, non-comment, join adjacent space to a single SP
281 * - Understand separators only in non-quote, non-comment context,
282 * and only if not part of a *quoted-pair* (XXX too liberal) */
284 for (inquote
= lc
= lastsp
= 0;; lc
= c
, ++cp
) {
293 #if 0 /* TODO when doing real RFC 5322 parsers - why have i done this? */
299 if (inquote
|| lc
== '\\') {
307 cp
= skip_comment(cp
+ 1);
315 if (strchr(separators
, c
) != NULL
)
319 lastsp
= blankchar(c
);
333 _extract1(char const *line
, enum gfield ntype
, char const *separators
,
336 struct name
*topp
, *np
, *t
;
342 if (line
== NULL
|| *line
== '\0')
347 nbuf
= smalloc(strlen(line
) +1);
348 while ((cp
= yankname(cp
, nbuf
, separators
, keepcomms
)) != NULL
) {
349 t
= nalloc(nbuf
, ntype
);
364 _gexpand(size_t level
, struct name
*nlist
, struct group
*gp
, bool_t metoo
,
368 struct grp_names_head
*gnhp
;
369 struct grp_names
*gnp
;
372 if (UICMP(z
, level
++, >, MAXEXP
)) {
373 n_err(_("Expanding alias to depth larger than %d\n"), MAXEXP
);
377 GP_TO_SUBCLASS(gnhp
, gp
);
378 logname
= ok_vlook(LOGNAME
);
379 for (gnp
= gnhp
->gnh_head
; gnp
!= NULL
; gnp
= gnp
->gn_next
) {
383 /* FIXME we do not really support leading backslash quoting do we??? */
384 if (*(cp
= gnp
->gn_id
) == '\\' || !strcmp(cp
, gp
->g_id
))
387 if ((ngp
= _group_find(GT_ALIAS
, cp
)) != NULL
) {
388 /* For S-nail(1), the "alias" may *be* the sender in that a name maps
389 * to a full address specification; aliases cannot be empty */
390 struct grp_names_head
*ngnhp
;
391 GP_TO_SUBCLASS(ngnhp
, ngp
);
393 assert(ngnhp
->gnh_head
!= NULL
);
394 if (metoo
|| ngnhp
->gnh_head
->gn_next
!= NULL
||
395 !_same_name(cp
, logname
))
396 nlist
= _gexpand(level
, nlist
, ngp
, metoo
, ntype
);
400 /* Here we should allow to expand to itself if only person in alias */
402 if (metoo
|| gnhp
->gnh_head
->gn_next
== NULL
|| !_same_name(cp
, logname
))
403 nlist
= put(nlist
, nalloc(cp
, ntype
| GFULL
));
410 static struct group
*
411 _group_lookup(enum group_type gt
, struct group_lookup
*glp
, char const *id
)
413 struct group
*lgp
, *gp
;
418 gp
= *(glp
->gl_htable
= glp
->gl_slot
=
419 ((gt
& GT_ALIAS
? _alias_heads
:
420 (gt
& GT_MLIST
? _mlist_heads
:
421 (/*gt & GT_SHORTCUT ?*/ _shortcut_heads
/*: NULL */))) +
422 torek_hash(id
) % HSHSIZE
));
424 for (; gp
!= NULL
; lgp
= gp
, gp
= gp
->g_next
)
425 if ((gp
->g_type
& gt
) && *gp
->g_id
== *id
&& !strcmp(gp
->g_id
, id
))
428 glp
->gl_slot_last
= lgp
;
434 static struct group
*
435 _group_find(enum group_type gt
, char const *id
)
437 struct group_lookup gl
;
441 gp
= _group_lookup(gt
, &gl
, id
);
446 static struct group
*
447 _group_go_first(enum group_type gt
, struct group_lookup
*glp
)
449 struct group
**gpa
, *gp
;
453 for (glp
->gl_htable
= gpa
= (gt
& GT_ALIAS
? _alias_heads
:
454 (gt
& GT_MLIST
? _mlist_heads
:
455 (/*gt & GT_SHORTCUT ?*/ _shortcut_heads
/*: NULL */))), i
= 0;
456 i
< HSHSIZE
; ++gpa
, ++i
)
457 if ((gp
= *gpa
) != NULL
) {
463 glp
->gl_group
= gp
= NULL
;
465 glp
->gl_slot_last
= NULL
;
470 static struct group
*
471 _group_go_next(struct group_lookup
*glp
)
473 struct group
*gp
, **gpa
;
476 if ((gp
= glp
->gl_group
->g_next
) != NULL
)
477 glp
->gl_slot_last
= glp
->gl_group
;
479 glp
->gl_slot_last
= NULL
;
480 for (gpa
= glp
->gl_htable
+ HSHSIZE
; ++glp
->gl_slot
< gpa
;)
481 if ((gp
= *glp
->gl_slot
) != NULL
)
489 static struct group
*
490 _group_fetch(enum group_type gt
, char const *id
, size_t addsz
)
492 struct group_lookup gl
;
497 if ((gp
= _group_lookup(gt
, &gl
, id
)) != NULL
)
501 i
= n_ALIGN(n_VSTRUCT_SIZEOF(struct group
, g_id
) + l
);
502 switch (gt
& GT_MASK
) {
504 addsz
= sizeof(struct grp_names_head
);
508 if (n_is_maybe_regex(id
)) {
509 addsz
= sizeof(struct grp_regex
);
518 gp
= smalloc(i
+ addsz
);
519 gp
->g_subclass_off
= i
;
521 memcpy(gp
->g_id
, id
, l
);
524 struct grp_names_head
*gnhp
;
526 GP_TO_SUBCLASS(gnhp
, gp
);
527 gnhp
->gnh_head
= NULL
;
530 else if (/*(gt & GT_MLIST) &&*/ gt
& GT_REGEX
) {
532 struct grp_regex
*grp
;
533 GP_TO_SUBCLASS(grp
, gp
);
535 if((s
= regcomp(&grp
->gr_regex
, id
,
536 REG_EXTENDED
| REG_ICASE
| REG_NOSUB
)) != 0){
537 n_err(_("Invalid regular expression: %s: %s\n"),
538 n_shexp_quote_cp(id
, FAL0
), n_regex_err_to_str(&grp
->gr_regex
, s
));
543 grp
->gr_mygroup
= gp
;
548 gp
->g_next
= *gl
.gl_slot
;
556 _group_del(enum group_type gt
, char const *id
)
558 enum group_type xgt
= gt
& GT_MASK
;
559 struct group_lookup gl
;
563 /* Delete 'em all? */
564 if (id
[0] == '*' && id
[1] == '\0') {
565 for (gp
= _group_go_first(gt
, &gl
); gp
!= NULL
;)
566 gp
= (gp
->g_type
& xgt
) ? __group_del(&gl
) : _group_go_next(&gl
);
567 gp
= (struct group
*)TRU1
;
568 } else if ((gp
= _group_lookup(gt
, &gl
, id
)) != NULL
) {
569 if (gp
->g_type
& xgt
)
578 static struct group
*
579 __group_del(struct group_lookup
*glp
)
581 struct group
*x
, *gp
;
584 /* Overly complicated: link off this node, step ahead to next.. */
586 if ((gp
= glp
->gl_slot_last
) != NULL
) {
587 gp
= (gp
->g_next
= x
->g_next
);
589 glp
->gl_slot_last
= NULL
;
590 gp
= (*glp
->gl_slot
= x
->g_next
);
593 struct group
**gpa
= glp
->gl_htable
+ HSHSIZE
;
595 while (++glp
->gl_slot
< gpa
)
596 if ((gp
= *glp
->gl_slot
) != NULL
)
602 if (x
->g_type
& GT_ALIAS
)
605 else if (/*(x->g_type & GT_MLIST) &&*/ x
->g_type
& GT_REGEX
) {
606 struct grp_regex
*grp
;
607 GP_TO_SUBCLASS(grp
, x
);
609 regfree(&grp
->gr_regex
);
620 __names_del(struct group
*gp
)
622 struct grp_names_head
*gnhp
;
623 struct grp_names
*gnp
;
626 GP_TO_SUBCLASS(gnhp
, gp
);
627 for (gnp
= gnhp
->gnh_head
; gnp
!= NULL
;) {
628 struct grp_names
*x
= gnp
;
636 _group_print_all(enum group_type gt
)
640 struct group
const *gp
;
647 xgt
= gt
& GT_PRINT_MASK
;
648 gpa
= (xgt
& GT_ALIAS
? _alias_heads
649 : (xgt
& GT_MLIST
? _mlist_heads
650 : (/*xgt & GT_SHORTCUT ?*/ _shortcut_heads
653 for (h
= 0, i
= 1; h
< HSHSIZE
; ++h
)
654 for (gp
= gpa
[h
]; gp
!= NULL
; gp
= gp
->g_next
)
655 if ((gp
->g_type
& xgt
) == xgt
)
657 ida
= salloc(i
* sizeof *ida
);
659 for (i
= h
= 0; h
< HSHSIZE
; ++h
)
660 for (gp
= gpa
[h
]; gp
!= NULL
; gp
= gp
->g_next
)
661 if ((gp
->g_type
& xgt
) == xgt
)
666 qsort(ida
, i
, sizeof *ida
, &__group_print_qsorter
);
668 if ((fp
= Ftmp(NULL
, "prgroup", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
)
672 for (i
= 0; ida
[i
] != NULL
; ++i
)
673 lines
+= _group_print(_group_find(gt
, ida
[i
]), fp
);
676 if (gt
& GT_SUBSCRIBE
)
677 i
= (ui32_t
)_mlsub_size
, h
= (ui32_t
)_mlsub_hits
;
679 i
= (ui32_t
)_mlist_size
, h
= (ui32_t
)_mlist_hits
;
680 if (i
> 0 && (n_poption
& n_PO_D_V
)){
681 fprintf(fp
, _("# %s list regex(7) total: %u entries, %u hits\n"),
682 (gt
& GT_SUBSCRIBE
? _("Subscribed") : _("Non-subscribed")),
689 if (fp
!= n_stdout
) {
690 page_or_print(fp
, lines
);
697 __group_print_qsorter(void const *a
, void const *b
)
702 rv
= strcmp(*(char**)n_UNCONST(a
), *(char**)n_UNCONST(b
));
708 _group_print(struct group
const *gp
, FILE *fo
)
716 if (gp
->g_type
& GT_ALIAS
) {
717 struct grp_names_head
*gnhp
;
718 struct grp_names
*gnp
;
720 fprintf(fo
, "alias %s ", gp
->g_id
);
722 GP_TO_SUBCLASS(gnhp
, gp
);
723 if ((gnp
= gnhp
->gnh_head
) != NULL
) { /* xxx always 1+ entries */
725 struct grp_names
*x
= gnp
;
727 fprintf(fo
, " \"%s\"", string_quote(x
->gn_id
)); /* TODO shexp */
728 } while (gnp
!= NULL
);
731 } else if (gp
->g_type
& GT_MLIST
) {
733 if ((gp
->g_type
& GT_REGEX
) && (n_poption
& n_PO_D_V
)){
735 struct grp_regex
*grp
,
736 *lp
= (gp
->g_type
& GT_SUBSCRIBE
? _mlsub_regex
: _mlist_regex
);
738 GP_TO_SUBCLASS(grp
, gp
);
739 for (i
= 1; lp
!= grp
; lp
= lp
->gr_next
)
741 fprintf(fo
, "# regex(7): hits %" PRIuZ
", sort %" PRIuZ
".\n ",
747 fprintf(fo
, "wysh %s %s\n",
748 (gp
->g_type
& GT_SUBSCRIBE
? "mlsubscribe" : "mlist"),
749 n_shexp_quote_cp(gp
->g_id
, TRU1
));
750 } else if (gp
->g_type
& GT_SHORTCUT
) {
751 GP_TO_SUBCLASS(cp
, gp
);
752 fprintf(fo
, "wysh shortcut %s %s\n",
753 gp
->g_id
, n_shexp_quote_cp(cp
, TRU1
));
761 _mlmux(enum group_type gt
, char **argv
)
768 _group_print_all(gt
);
770 if ((gp
= _group_find(gt
, *argv
)) != NULL
) {
771 if (gt
& GT_SUBSCRIBE
) {
772 if (!(gp
->g_type
& GT_SUBSCRIBE
)) {
774 gp
->g_type
|= GT_SUBSCRIBE
;
777 n_err(_("Mailing-list already `mlsubscribe'd: %s\n"),
782 n_err(_("Mailing-list already `mlist'ed: %s\n"), *argv
);
786 _group_fetch(gt
, *argv
, 0);
787 } while (*++argv
!= NULL
);
794 _unmlmux(enum group_type gt
, char **argv
)
800 for (; *argv
!= NULL
; ++argv
) {
801 if (gt
& GT_SUBSCRIBE
) {
802 struct group_lookup gl
;
805 if (!(isaster
= (**argv
== '*')))
806 gp
= _group_find(gt
, *argv
);
807 else if ((gp
= _group_go_first(gt
, &gl
)) == NULL
)
809 else if (gp
!= NULL
&& !(gp
->g_type
& GT_SUBSCRIBE
))
814 if (gp
->g_type
& GT_SUBSCRIBE
) {
816 gp
->g_type
&= ~GT_SUBSCRIBE
;
820 while ((gp
= _group_go_next(&gl
)) != NULL
&&
821 !(gp
->g_type
& GT_SUBSCRIBE
))
827 n_err(_("Mailing-list not `mlsubscribe'd: %s\n"),
828 n_shexp_quote_cp(*argv
, FAL0
));
833 } else if (_group_del(gt
, *argv
))
835 n_err(_("No such mailing-list: %s\n"), n_shexp_quote_cp(*argv
, FAL0
));
844 _mlmux_linkin(struct group
*gp
)
846 struct grp_regex
**lpp
, *grp
, *lhp
;
849 if (gp
->g_type
& GT_SUBSCRIBE
) {
857 GP_TO_SUBCLASS(grp
, gp
);
858 if ((lhp
= *lpp
) != NULL
) {
859 (grp
->gr_last
= lhp
->gr_last
)->gr_next
= grp
;
860 (grp
->gr_next
= lhp
)->gr_last
= grp
;
862 *lpp
= grp
->gr_last
= grp
->gr_next
= grp
;
868 _mlmux_linkout(struct group
*gp
)
870 struct grp_regex
*grp
, **lpp
;
873 GP_TO_SUBCLASS(grp
, gp
);
875 if (gp
->g_type
& GT_SUBSCRIBE
) {
878 _mlsub_hits
-= grp
->gr_hits
;
882 _mlist_hits
-= grp
->gr_hits
;
885 if (grp
->gr_next
== grp
)
888 (grp
->gr_last
->gr_next
= grp
->gr_next
)->gr_last
= grp
->gr_last
;
894 #endif /* HAVE_REGEX */
897 nalloc(char const *str
, enum gfield ntype
)
899 struct n_addrguts ag
;
903 assert(!(ntype
& GFULLEXTRA
) || (ntype
& GFULL
) != 0);
905 str
= n_addrspec_with_guts(&ag
, str
,
906 ((ntype
& (GFULL
| GSKIN
| GREF
)) != 0));
909 np = NULL; TODO We cannot return NULL,
910 goto jleave; TODO thus handle failures in here!
915 if (!(ag
.ag_n_flags
& NAME_NAME_SALLOC
)) {
916 ag
.ag_n_flags
|= NAME_NAME_SALLOC
;
917 np
= salloc(sizeof(*np
) + ag
.ag_slen
+1);
918 memcpy(np
+ 1, ag
.ag_skinned
, ag
.ag_slen
+1);
919 ag
.ag_skinned
= (char*)(np
+ 1);
921 np
= salloc(sizeof *np
);
928 np
->n_fullname
= np
->n_name
= ag
.ag_skinned
;
929 np
->n_fullextra
= NULL
;
930 np
->n_flags
= ag
.ag_n_flags
;
933 if (ag
.ag_ilen
== ag
.ag_slen
935 && !(ag
.ag_n_flags
& NAME_IDNA
)
939 if (ag
.ag_n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
)
942 /* n_fullextra is only the complete name part without address.
943 * Beware of "-r '<abc@def>'", don't treat that as FULLEXTRA */
944 if ((ntype
& GFULLEXTRA
) && ag
.ag_ilen
> ag
.ag_slen
+ 2) {
945 size_t s
= ag
.ag_iaddr_start
, e
= ag
.ag_iaddr_aend
, i
;
948 if (s
== 0 || str
[--s
] != '<' || str
[e
++] != '>')
951 in
.s
= n_lofi_alloc(s
+ 1 + i
+1);
952 while(s
> 0 && blankchar(str
[s
- 1]))
954 memcpy(in
.s
, str
, s
);
957 while (blankchar(str
[e
])) {
963 memcpy(&in
.s
[s
], &str
[e
], i
);
966 in
.s
[in
.l
= s
] = '\0';
967 mime_fromhdr(&in
, &out
, TD_ISPR
| TD_ICONV
);
969 for (cp
= out
.s
, i
= out
.l
; i
> 0 && spacechar(*cp
); --i
, ++cp
)
971 while (i
> 0 && spacechar(cp
[i
- 1]))
973 np
->n_fullextra
= savestrbuf(cp
, i
);
980 /* n_fullname depends on IDNA conversion */
982 if (!(ag
.ag_n_flags
& NAME_IDNA
)) {
984 in
.s
= n_UNCONST(str
);
988 /* The domain name was IDNA and has been converted. We also have to
989 * ensure that the domain name in .n_fullname is replaced with the
990 * converted version, since MIME doesn't perform encoding of addrs */
991 /* TODO This definetely doesn't belong here! */
992 size_t l
= ag
.ag_iaddr_start
,
993 lsuff
= ag
.ag_ilen
- ag
.ag_iaddr_aend
;
994 in
.s
= ac_alloc(l
+ ag
.ag_slen
+ lsuff
+1);
995 memcpy(in
.s
, str
, l
);
996 memcpy(in
.s
+ l
, ag
.ag_skinned
, ag
.ag_slen
);
998 memcpy(in
.s
+ l
, str
+ ag
.ag_iaddr_aend
, lsuff
);
1004 mime_fromhdr(&in
, &out
, TD_ISPR
| TD_ICONV
);
1005 np
->n_fullname
= savestr(out
.s
);
1008 if (ag
.ag_n_flags
& NAME_IDNA
)
1011 np
->n_flags
|= NAME_FULLNAME_SALLOC
;
1019 ndup(struct name
*np
, enum gfield ntype
)
1024 if ((ntype
& (GFULL
| GSKIN
)) && !(np
->n_flags
& NAME_SKINNED
)) {
1025 nnp
= nalloc(np
->n_name
, ntype
);
1029 nnp
= salloc(sizeof *np
);
1030 nnp
->n_flink
= nnp
->n_blink
= NULL
;
1031 nnp
->n_type
= ntype
;
1032 nnp
->n_flags
= (np
->n_flags
& ~(NAME_NAME_SALLOC
| NAME_FULLNAME_SALLOC
)) |
1034 nnp
->n_name
= savestr(np
->n_name
);
1035 if (np
->n_name
== np
->n_fullname
|| !(ntype
& (GFULL
| GSKIN
))) {
1036 nnp
->n_fullname
= nnp
->n_name
;
1037 nnp
->n_fullextra
= NULL
;
1039 nnp
->n_flags
|= NAME_FULLNAME_SALLOC
;
1040 nnp
->n_fullname
= savestr(np
->n_fullname
);
1041 nnp
->n_fullextra
= (np
->n_fullextra
== NULL
) ? NULL
1042 : savestr(np
->n_fullextra
);
1050 cat(struct name
*n1
, struct name
*n2
)
1062 while (tail
->n_flink
!= NULL
)
1063 tail
= tail
->n_flink
;
1073 namelist_dup(struct name
const *np
, enum gfield ntype
)
1078 for (nnp
= NULL
; np
!= NULL
; np
= np
->n_flink
) {
1079 struct name
*x
= ndup(n_UNCONST(np
), (np
->n_type
& ~GMASK
) | ntype
);
1088 count(struct name
const *np
)
1093 for (c
= 0; np
!= NULL
; np
= np
->n_flink
)
1094 if (!(np
->n_type
& GDEL
))
1101 count_nonlocal(struct name
const *np
)
1106 for (c
= 0; np
!= NULL
; np
= np
->n_flink
)
1107 if (!(np
->n_type
& GDEL
) && !(np
->n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
))
1114 extract(char const *line
, enum gfield ntype
)
1119 rv
= _extract1(line
, ntype
, " \t,", 0);
1125 lextract(char const *line
, enum gfield ntype
)
1130 rv
= ((line
!= NULL
&& strpbrk(line
, ",\"\\(<|"))
1131 ? _extract1(line
, ntype
, ",", 1) : extract(line
, ntype
));
1137 detract(struct name
*np
, enum gfield ntype
)
1148 flags
= ntype
& (GCOMMA
| GNAMEONLY
);
1149 ntype
&= ~(GCOMMA
| GNAMEONLY
);
1152 for (p
= np
; p
!= NULL
; p
= p
->n_flink
) {
1153 if (ntype
&& (p
->n_type
& GMASK
) != ntype
)
1155 s
+= strlen(flags
& GNAMEONLY
? p
->n_name
: p
->n_fullname
) +1;
1165 for (p
= np
; p
!= NULL
; p
= p
->n_flink
) {
1166 if (ntype
&& (p
->n_type
& GMASK
) != ntype
)
1168 cp
= sstpcpy(cp
, (flags
& GNAMEONLY
? p
->n_name
: p
->n_fullname
));
1169 if ((flags
& GCOMMA
) && p
->n_flink
!= NULL
)
1174 if ((flags
& GCOMMA
) && *--cp
== ',')
1182 grab_names(enum n_lexinput_flags lif
, char const *field
, struct name
*np
,
1183 int comma
, enum gfield gflags
)
1189 np
= lextract(n_lex_input_cp(lif
, field
, detract(np
, comma
)), gflags
);
1190 for (nq
= np
; nq
!= NULL
; nq
= nq
->n_flink
)
1191 if (is_addr_invalid(nq
, EACM_NONE
))
1198 name_is_same_domain(struct name
const *n1
, struct name
const *n2
)
1200 char const *d1
, *d2
;
1204 d1
= strrchr(n1
->n_name
, '@');
1205 d2
= strrchr(n2
->n_name
, '@');
1207 rv
= (d1
!= NULL
&& d2
!= NULL
) ? !asccasecmp(++d1
, ++d2
) : FAL0
;
1214 checkaddrs(struct name
*np
, enum expand_addr_check_mode eacm
,
1215 si8_t
*set_on_error
)
1220 for (n
= np
; n
!= NULL
; n
= n
->n_flink
) {
1223 if ((rv
= is_addr_invalid(n
, eacm
)) != 0) {
1224 if (set_on_error
!= NULL
)
1225 *set_on_error
|= rv
; /* don't loose -1! */
1226 else if (eacm
& EAF_MAYKEEP
) /* TODO HACK! See definition! */
1229 n
->n_blink
->n_flink
= n
->n_flink
;
1231 n
->n_flink
->n_blink
= n
->n_blink
;
1241 namelist_vaporise_head(struct header
*hp
, enum expand_addr_check_mode eacm
,
1242 bool_t metoo
, si8_t
*set_on_error
)
1244 struct name
*tolist
, *np
, **npp
;
1247 tolist
= usermap(cat(hp
->h_to
, cat(hp
->h_cc
, hp
->h_bcc
)), metoo
);
1248 hp
->h_to
= hp
->h_cc
= hp
->h_bcc
= NULL
;
1250 tolist
= elide(checkaddrs(tolist
, eacm
, set_on_error
));
1252 for (np
= tolist
; np
!= NULL
; np
= np
->n_flink
) {
1253 switch (np
->n_type
& (GDEL
| GMASK
)) {
1254 case GTO
: npp
= &hp
->h_to
; break;
1255 case GCC
: npp
= &hp
->h_cc
; break;
1256 case GBCC
: npp
= &hp
->h_bcc
; break;
1259 *npp
= cat(*npp
, ndup(np
, np
->n_type
| GFULL
));
1266 usermap(struct name
*names
, bool_t force_metoo
)
1268 struct name
*new, *np
, *cp
;
1275 metoo
= (force_metoo
|| ok_blook(metoo
));
1276 while (np
!= NULL
) {
1277 assert(!(np
->n_type
& GDEL
)); /* TODO legacy */
1278 if (is_fileorpipe_addr(np
) || np
->n_name
[0] == '\\') {
1284 gp
= _group_find(GT_ALIAS
, np
->n_name
);
1287 new = _gexpand(0, new, gp
, metoo
, np
->n_type
);
1297 elide(struct name
*names
)
1299 struct name
*np
, *t
, *newn
, *x
;
1306 /* Throw away all deleted nodes (XXX merge with plain sort below?) */
1307 for (np
= NULL
; names
!= NULL
; names
= names
->n_flink
)
1308 if (!(names
->n_type
& GDEL
)) {
1309 names
->n_blink
= np
;
1311 np
->n_flink
= names
;
1322 newn
->n_flink
= NULL
;
1324 while (np
!= NULL
) {
1328 while ((cmpres
= asccasecmp(t
->n_name
, np
->n_name
)) < 0) {
1329 if (t
->n_flink
== NULL
)
1334 /* If we ran out of t's, put new entry after the current value of t */
1344 /* Otherwise, put the new entry in front of the current t. If at the
1345 * front of the list, the new guy becomes the new head of the list */
1356 /* The normal case -- we are inserting into the middle of the list */
1360 x
->n_blink
= t
->n_blink
;
1361 t
->n_blink
->n_flink
= x
;
1365 /* Now the list headed up by new is sorted. Remove duplicates */
1367 while (np
!= NULL
) {
1369 while (t
->n_flink
!= NULL
&& !asccasecmp(np
->n_name
, t
->n_flink
->n_name
))
1376 /* Now t points to the last entry with the same name as np.
1377 * Make np point beyond t */
1378 np
->n_flink
= t
->n_flink
;
1379 if (t
->n_flink
!= NULL
)
1380 t
->n_flink
->n_blink
= np
;
1389 c_alternates(void *v
){
1390 char **namelist
, **ap
, **ap2
, *cp
;
1398 for(namelist
= v
; namelist
[l
] != NULL
; ++l
)
1402 if(a_nag_altnames
!= NULL
){
1403 fprintf(n_stdout
, "alternates ");
1404 for(ap
= a_nag_altnames
; *ap
!= NULL
; ++ap
)
1405 fprintf(n_stdout
, "%s ", *ap
);
1406 putc('\n', n_stdout
);
1409 if(a_nag_altnames
!= NULL
){
1410 for(ap
= a_nag_altnames
; *ap
!= NULL
; ++ap
)
1412 free(a_nag_altnames
);
1417 a_nag_altnames
= smalloc(l
* sizeof(*a_nag_altnames
));
1420 for(ap
= namelist
; *ap
!= NULL
; ++ap
)
1424 if((np
= lextract(*ap
, GSKIN
)) == NULL
|| np
->n_flink
!= NULL
||
1425 (np
= checkaddrs(np
, EACM_STRICT
, NULL
)) == NULL
){
1426 n_err(_("Invalid `alternates' argument: %s\n"),
1427 n_shexp_quote_cp(*ap
, FAL0
));
1431 l
= strlen(np
->n_name
) +1;
1434 memcpy(cp
, np
->n_name
, l
);
1439 /* And put it into *-alternates* */
1442 for(sl
= 0, ap
= a_nag_altnames
; *ap
!= NULL
; ++ap
)
1443 if((l
= strlen(*ap
)) > 0){
1444 memcpy(&cp
[sl
], *ap
, l
);
1452 free(a_nag_altnames
);
1453 a_nag_altnames
= NULL
;
1456 n_PS_ROOT_BLOCK(sl
> 0 ? ok_vset(_alternates
, cp
)
1457 : ok_vclear(_alternates
));
1464 delete_alternates(struct name
*np
)
1470 np
= delname(np
, ok_vlook(LOGNAME
));
1471 if (a_nag_altnames
!= NULL
)
1472 for (ap
= a_nag_altnames
; *ap
!= '\0'; ++ap
)
1473 np
= delname(np
, *ap
);
1475 if ((xp
= lextract(ok_vlook(from
), GEXTRA
| GSKIN
)) != NULL
)
1476 while (xp
!= NULL
) {
1477 np
= delname(np
, xp
->n_name
);
1481 if ((xp
= lextract(ok_vlook(replyto
), GEXTRA
| GSKIN
)) != NULL
)
1482 while (xp
!= NULL
) {
1483 np
= delname(np
, xp
->n_name
);
1487 if ((xp
= extract(ok_vlook(sender
), GEXTRA
| GSKIN
)) != NULL
)
1488 while (xp
!= NULL
) {
1489 np
= delname(np
, xp
->n_name
);
1497 is_myname(char const *name
)
1504 if (_same_name(ok_vlook(LOGNAME
), name
))
1506 if (a_nag_altnames
!= NULL
)
1507 for (ap
= a_nag_altnames
; *ap
!= NULL
; ++ap
)
1508 if (_same_name(*ap
, name
))
1511 if ((xp
= lextract(ok_vlook(from
), GEXTRA
| GSKIN
)) != NULL
)
1512 while (xp
!= NULL
) {
1513 if (_same_name(xp
->n_name
, name
))
1518 if ((xp
= lextract(ok_vlook(replyto
), GEXTRA
| GSKIN
)) != NULL
)
1519 while (xp
!= NULL
) {
1520 if (_same_name(xp
->n_name
, name
))
1525 if ((xp
= extract(ok_vlook(sender
), GEXTRA
| GSKIN
)) != NULL
)
1526 while (xp
!= NULL
) {
1527 if (_same_name(xp
->n_name
, name
))
1538 c_addrcodec(void *v
){
1539 struct n_addrguts ag
;
1540 struct n_string s_b
, *sp
;
1541 char const **argv
, *emv
, *varname
, *varres
, *cp
;
1545 sp
= n_string_creat_auto(&s_b
);
1549 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
1551 for(; *argv
!= NULL
; ++argv
){
1553 sp
= n_string_push_c(sp
, ' ');
1554 sp
= n_string_push_cp(sp
, *argv
);
1558 /* TODO nalloc() cannot yet fail, thus need to do the work twice!!
1559 * TODO I.e. later on this could be a simple nalloc() wrapper.. */
1560 for(cp
= n_string_cp(sp
); blankchar(*cp
); ++cp
)
1563 sp
= n_string_cut(sp
, 0, PTR2SIZE(cp
- sp
->s_dat
));
1564 for(varres
= cp
= &sp
->s_dat
[sp
->s_len
];
1565 cp
> sp
->s_dat
&& blankchar(cp
[-1]); --cp
)
1568 sp
= n_string_trunc(sp
, sp
->s_len
- (ui32_t
)PTR2SIZE(varres
- cp
));
1573 /* However, the difference for this command is that the user enters what
1574 * she wants to have, and we should make something of it. Therefore any
1575 * quotes are necessarily to be turned to quoted-pair! */
1577 for(i
= 0; i
< sp
->s_len
; ++i
)
1578 if(sp
->s_dat
[i
] == '"' || sp
->s_dat
[i
] == '\\')
1579 sp
= n_string_insert_c(sp
, i
++, '\\');
1582 if(n_addrspec_with_guts(&ag
, n_string_cp(sp
), TRU1
) == NULL
){
1588 np
= nalloc(n_string_cp(sp
), GTO
| GFULL
| GSKIN
);
1589 varres
= np
->n_fullname
;
1593 fprintf(n_stdout
, "%s\n", varres
);
1594 else if(!n_var_vset(varname
, (uintptr_t)varres
)){
1612 _group_print_all(GT_ALIAS
);
1613 else if (argv
[1] == NULL
) {
1614 if ((gp
= _group_find(GT_ALIAS
, *argv
)) != NULL
)
1615 _group_print(gp
, n_stdout
);
1617 n_err(_("No such alias: %s\n"), *argv
);
1621 struct grp_names_head
*gnhp
;
1623 gp
= _group_fetch(GT_ALIAS
, *argv
, 0);
1624 GP_TO_SUBCLASS(gnhp
, gp
);
1626 for (++argv
; *argv
!= NULL
; ++argv
) {
1627 size_t l
= strlen(*argv
) +1;
1628 struct grp_names
*gnp
= smalloc(n_VSTRUCT_SIZEOF(struct grp_names
,
1630 gnp
->gn_next
= gnhp
->gnh_head
;
1631 gnhp
->gnh_head
= gnp
;
1632 memcpy(gnp
->gn_id
, *argv
, l
);
1634 assert(gnhp
->gnh_head
!= NULL
);
1647 do if (!_group_del(GT_ALIAS
, *argv
)) {
1648 n_err(_("No such alias: %s\n"), *argv
);
1650 } while (*++argv
!= NULL
);
1661 rv
= _mlmux(GT_MLIST
, v
);
1672 rv
= _unmlmux(GT_MLIST
, v
);
1678 c_mlsubscribe(void *v
)
1683 rv
= _mlmux(GT_MLIST
| GT_SUBSCRIBE
, v
);
1689 c_unmlsubscribe(void *v
)
1694 rv
= _unmlmux(GT_MLIST
| GT_SUBSCRIBE
, v
);
1700 is_mlist(char const *name
, bool_t subscribed_only
)
1704 struct grp_regex
**lpp
, *grp
;
1707 enum mlist_state rv
;
1710 gp
= _group_find(GT_MLIST
, name
);
1711 rv
= (gp
!= NULL
) ? MLIST_KNOWN
: MLIST_OTHER
;
1712 if (rv
== MLIST_KNOWN
) {
1713 if (gp
->g_type
& GT_SUBSCRIBE
)
1714 rv
= MLIST_SUBSCRIBED
;
1715 else if (subscribed_only
)
1717 /* Of course, if that is a regular expression it doesn't mean a thing */
1719 if (gp
->g_type
& GT_REGEX
)
1726 /* Not in the hashmap (as something matchable), walk the lists */
1729 lpp
= &_mlsub_regex
;
1731 if ((grp
= *lpp
) != NULL
) {
1732 do if (regexec(&grp
->gr_regex
, name
, 0,NULL
, 0) != REG_NOMATCH
) {
1733 /* Relink as the head of this list if the hit count of this group is
1734 * >= 25% of the average hit count */
1737 i
= ++_mlsub_hits
/ _mlsub_size
;
1739 i
= ++_mlist_hits
/ _mlist_size
;
1742 if (++grp
->gr_hits
>= i
&& *lpp
!= grp
&& grp
->gr_next
!= grp
) {
1743 grp
->gr_last
->gr_next
= grp
->gr_next
;
1744 grp
->gr_next
->gr_last
= grp
->gr_last
;
1745 (grp
->gr_last
= (*lpp
)->gr_last
)->gr_next
= grp
;
1746 (grp
->gr_next
= *lpp
)->gr_last
= grp
;
1749 rv
= !re2
? MLIST_SUBSCRIBED
: MLIST_KNOWN
;
1751 } while ((grp
= grp
->gr_next
) != *lpp
);
1753 if (!re2
&& !subscribed_only
) {
1755 lpp
= &_mlist_regex
;
1758 assert(rv
== MLIST_OTHER
);
1774 _group_print_all(GT_SHORTCUT
);
1775 else for (; *argv
!= NULL
; argv
+= 2) {
1776 /* Because one hardly ever redefines, anything is stored in one chunk */
1781 if (argv
[1] == NULL
) {
1782 n_err(_("Shortcut expansion is missing: %s\n"), *argv
);
1786 if (_group_find(GT_SHORTCUT
, *argv
) != NULL
)
1787 _group_del(GT_SHORTCUT
, *argv
);
1789 l
= strlen(argv
[1]) +1;
1790 gp
= _group_fetch(GT_SHORTCUT
, *argv
, l
);
1791 GP_TO_SUBCLASS(cp
, gp
);
1792 memcpy(cp
, argv
[1], l
);
1799 c_unshortcut(void *v
)
1805 do if (!_group_del(GT_SHORTCUT
, *argv
)) {
1806 n_err(_("No such shortcut: %s\n"), *argv
);
1808 } while (*++argv
!= NULL
);
1814 shortcut_expand(char const *str
)
1819 if ((gp
= _group_find(GT_SHORTCUT
, str
)) != NULL
)
1820 GP_TO_SUBCLASS(str
, gp
);