1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Handle name lists, alias expansion; outof(): serve file / pipe addresses
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #ifndef HAVE_AMALGAMATION
49 # define _SET_CLOEXEC(FD) fcntl((FD), F_SETFD, FD_CLOEXEC)
51 # define _SET_CLOEXEC(FD)
54 /* Same name, taking care for *allnet*? */
55 static bool_t
_same_name(char const *n1
, char const *n2
);
57 /* Delete the given name from a namelist */
58 static struct name
* delname(struct name
*np
, char const *name
);
60 /* Put another node onto a list of names and return the list */
61 static struct name
* put(struct name
*list
, struct name
*node
);
63 /* Grab a single name (liberal name) */
64 static char const * yankname(char const *ap
, char *wbuf
,
65 char const *separators
, int keepcomms
);
67 /* Extraction multiplexer that splits an input line to names */
68 static struct name
* _extract1(char const *line
, enum gfield ntype
,
69 char const *separators
, bool_t keepcomms
);
71 /* Recursively expand a group name. Limit expansion to some fixed level.
72 * Direct recursion is not expanded for convenience */
73 static struct name
* _gexpand(size_t level
, struct name
*nlist
,
74 struct grouphead
*gh
, bool_t metoo
, int ntype
);
76 static void _remove_grouplist(struct grouphead
*gh
);
79 _same_name(char const *n1
, char const *n2
)
85 if (ok_blook(allnet
)) {
93 } while (c1
!= '\0' && c2
!= '\0' && c1
!= '@' && c2
!= '@');
96 rv
= !asccasecmp(n1
, n2
);
103 delname(struct name
*np
, char const *name
)
108 for (p
= np
; p
!= NULL
; p
= p
->n_flink
)
109 if (_same_name(p
->n_name
, name
)) {
110 if (p
->n_blink
== NULL
) {
111 if (p
->n_flink
!= NULL
)
112 p
->n_flink
->n_blink
= NULL
;
116 if (p
->n_flink
== NULL
) {
117 if (p
->n_blink
!= NULL
)
118 p
->n_blink
->n_flink
= NULL
;
121 p
->n_blink
->n_flink
= p
->n_flink
;
122 p
->n_flink
->n_blink
= p
->n_blink
;
129 put(struct name
*list
, struct name
*node
)
132 node
->n_flink
= list
;
133 node
->n_blink
= NULL
;
135 list
->n_blink
= node
;
141 yankname(char const *ap
, char *wbuf
, char const *separators
, int keepcomms
)
144 char *wp
, c
, inquote
, lc
, lastsp
;
149 /* Skip over intermediate list trash, as in ".org> , <xy@zz.org>" */
150 for (c
= *ap
; blankchar(c
) || c
== ','; c
= *++ap
)
157 /* Parse a full name: TODO RFC 5322
158 * - Keep everything in quotes, liberal handle *quoted-pair*s therein
159 * - Skip entire (nested) comments
160 * - In non-quote, non-comment, join adjacent space to a single SP
161 * - Understand separators only in non-quote, non-comment context,
162 * and only if not part of a *quoted-pair* (XXX too liberal) */
164 for (inquote
= lc
= lastsp
= 0;; lc
= c
, ++cp
) {
175 #if 0 /* TODO when doing real RFC 5322 parsers - why have i done this? */
181 if (inquote
|| lc
== '\\') {
189 cp
= skip_comment(cp
+ 1);
197 if (strchr(separators
, c
) != NULL
)
201 lastsp
= blankchar(c
);
215 _extract1(char const *line
, enum gfield ntype
, char const *separators
,
218 struct name
*topp
, *np
, *t
;
224 if (line
== NULL
|| *line
== '\0')
229 nbuf
= ac_alloc(strlen(line
) + 1);
230 while ((cp
= yankname(cp
, nbuf
, separators
, keepcomms
)) != NULL
) {
231 t
= nalloc(nbuf
, ntype
);
246 _gexpand(size_t level
, struct name
*nlist
, struct grouphead
*gh
, bool_t metoo
,
250 struct grouphead
*ngh
;
255 if (UICMP(z
, level
++, >, MAXEXP
)) {
256 printf(tr(150, "Expanding alias to depth larger than %d\n"), MAXEXP
);
260 for (gp
= gh
->g_list
; gp
!= NULL
; gp
= gp
->ge_link
) {
264 if (!strcmp(cp
, gh
->g_name
))
266 if ((ngh
= findgroup(cp
)) != NULL
) {
267 /* For S-nail(1), the "group" may *be* the sender in that a name maps
268 * to a full address specification */
269 if (!metoo
&& ngh
->g_list
->ge_link
== NULL
&& _same_name(cp
, myname
))
271 nlist
= _gexpand(level
, nlist
, ngh
, metoo
, ntype
);
275 np
= nalloc(cp
, ntype
| GFULL
);
276 /* At this point should allow to expand itself if only person in group */
277 if (gp
== gh
->g_list
&& gp
->ge_link
== NULL
)
279 if (!metoo
&& _same_name(cp
, myname
))
282 nlist
= put(nlist
, np
);
290 _remove_grouplist(struct grouphead
*gh
)
292 struct group
*gp
, *gq
;
295 if ((gp
= gh
->g_list
) != NULL
) {
296 for (; gp
; gp
= gq
) {
306 nalloc(char *str
, enum gfield ntype
)
313 np
= salloc(sizeof *np
);
319 addrspec_with_guts((ntype
& (GFULL
| GSKIN
| GREF
)) != 0, str
, &ag
);
320 if ((ag
.ag_n_flags
& NAME_NAME_SALLOC
) == 0) {
321 ag
.ag_n_flags
|= NAME_NAME_SALLOC
;
322 ag
.ag_skinned
= savestrbuf(ag
.ag_skinned
, ag
.ag_slen
);
324 np
->n_fullname
= np
->n_name
= ag
.ag_skinned
;
325 np
->n_flags
= ag
.ag_n_flags
;
328 if (ag
.ag_ilen
== ag
.ag_slen
330 && (ag
.ag_n_flags
& NAME_IDNA
) == 0
334 if (ag
.ag_n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
)
337 if ((ag
.ag_n_flags
& NAME_IDNA
) == 0) {
343 /* The domain name was IDNA and has been converted. We also have to
344 * ensure that the domain name in .n_fullname is replaced with the
345 * converted version, since MIME doesn't perform encoding of addrs */
346 size_t l
= ag
.ag_iaddr_start
,
347 lsuff
= ag
.ag_ilen
- ag
.ag_iaddr_aend
;
348 in
.s
= ac_alloc(l
+ ag
.ag_slen
+ lsuff
+ 1);
349 memcpy(in
.s
, str
, l
);
350 memcpy(in
.s
+ l
, ag
.ag_skinned
, ag
.ag_slen
);
352 memcpy(in
.s
+ l
, str
+ ag
.ag_iaddr_aend
, lsuff
);
358 mime_fromhdr(&in
, &out
, TD_ISPR
| TD_ICONV
);
359 np
->n_fullname
= savestr(out
.s
);
362 if (ag
.ag_n_flags
& NAME_IDNA
)
365 np
->n_flags
|= NAME_FULLNAME_SALLOC
;
366 } else if (ntype
& GREF
) { /* TODO LEGACY */
367 /* TODO Unfortunately we had to skin GREFerences i.e. the
368 * TODO surrounding angle brackets have been stripped away.
369 * TODO Necessarily since otherwise the plain address check
370 * TODO fails due to them; insert them back so that valid
371 * TODO headers will be created */
372 np
->n_fullname
= np
->n_name
= str
= salloc(ag
.ag_slen
+ 2 +1);
374 memcpy(str
, ag
.ag_skinned
, ag
.ag_slen
);
385 ndup(struct name
*np
, enum gfield ntype
)
390 if ((ntype
& (GFULL
| GSKIN
)) && !(np
->n_flags
& NAME_SKINNED
)) {
391 nnp
= nalloc(np
->n_name
, ntype
);
395 nnp
= salloc(sizeof *np
);
396 nnp
->n_flink
= nnp
->n_blink
= NULL
;
398 nnp
->n_flags
= (np
->n_flags
& ~(NAME_NAME_SALLOC
| NAME_FULLNAME_SALLOC
)) |
400 nnp
->n_name
= savestr(np
->n_name
);
401 if (np
->n_name
== np
->n_fullname
|| !(ntype
& (GFULL
| GSKIN
)))
402 nnp
->n_fullname
= nnp
->n_name
;
404 nnp
->n_flags
|= NAME_FULLNAME_SALLOC
;
405 nnp
->n_fullname
= savestr(np
->n_fullname
);
413 cat(struct name
*n1
, struct name
*n2
)
425 while (tail
->n_flink
!= NULL
)
426 tail
= tail
->n_flink
;
436 count(struct name
const*np
)
441 for (c
= 0; np
!= NULL
; np
= np
->n_flink
)
442 if (!(np
->n_type
& GDEL
))
449 extract(char const *line
, enum gfield ntype
)
454 rv
= _extract1(line
, ntype
, " \t,", 0);
460 lextract(char const *line
, enum gfield ntype
)
465 rv
= ((line
!= NULL
&& strpbrk(line
, ",\"\\(<|"))
466 ? _extract1(line
, ntype
, ",", 1) : extract(line
, ntype
));
472 detract(struct name
*np
, enum gfield ntype
)
483 comma
= ntype
& GCOMMA
;
486 if ((options
& OPT_DEBUG
) && comma
)
487 fprintf(stderr
, tr(145, "detract asked to insert commas\n"));
488 for (p
= np
; p
!= NULL
; p
= p
->n_flink
) {
489 if (ntype
&& (p
->n_type
& GMASK
) != ntype
)
491 s
+= strlen(p
->n_fullname
) + 1;
501 for (p
= np
; p
!= NULL
; p
= p
->n_flink
) {
502 if (ntype
&& (p
->n_type
& GMASK
) != ntype
)
504 cp
= sstpcpy(cp
, p
->n_fullname
);
505 if (comma
&& p
->n_flink
!= NULL
)
510 if (comma
&& *--cp
== ',')
518 grab_names(char const *field
, struct name
*np
, int comma
, enum gfield gflags
)
523 np
= lextract(readstr_input(field
, detract(np
, comma
)), gflags
);
524 for (nq
= np
; nq
!= NULL
; nq
= nq
->n_flink
)
525 if (is_addr_invalid(nq
, 1))
532 checkaddrs(struct name
*np
)
537 for (n
= np
; n
!= NULL
;) {
538 if (is_addr_invalid(n
, 1)) {
540 n
->n_blink
->n_flink
= n
->n_flink
;
542 n
->n_flink
->n_blink
= n
->n_blink
;
553 usermap(struct name
*names
, bool_t force_metoo
)
555 struct name
*new, *np
, *cp
;
556 struct grouphead
*gh
;
562 metoo
= (force_metoo
|| ok_blook(metoo
));
564 assert((np
->n_type
& GDEL
) == 0); /* TODO legacy */
565 if (is_fileorpipe_addr(np
) || np
->n_name
[0] == '\\') {
571 gh
= findgroup(np
->n_name
);
574 new = _gexpand(0, new, gh
, metoo
, np
->n_type
);
584 elide(struct name
*names
)
586 struct name
*np
, *t
, *newn
, *x
;
593 /* Throw away all deleted nodes (XXX merge with plain sort below?) */
594 for (np
= NULL
; names
!= NULL
; names
= names
->n_flink
)
595 if (!(names
->n_type
& GDEL
)) {
609 newn
->n_flink
= NULL
;
613 while (asccasecmp(t
->n_name
, np
->n_name
) < 0) {
614 if (t
->n_flink
== NULL
)
619 /* If we ran out of t's, put new entry after the current value of t */
620 if (asccasecmp(t
->n_name
, np
->n_name
) < 0) {
629 /* Otherwise, put the new entry in front of the current t. If at the
630 * front of the list, the new guy becomes the new head of the list */
641 /* The normal case -- we are inserting into the middle of the list */
645 x
->n_blink
= t
->n_blink
;
646 t
->n_blink
->n_flink
= x
;
650 /* Now the list headed up by new is sorted. Remove duplicates */
654 while (t
->n_flink
!= NULL
&& !asccasecmp(np
->n_name
, t
->n_flink
->n_name
))
661 /* Now t points to the last entry with the same name as np.
662 * Make np point beyond t */
663 np
->n_flink
= t
->n_flink
;
664 if (t
->n_flink
!= NULL
)
665 t
->n_flink
->n_blink
= np
;
674 delete_alternates(struct name
*np
)
680 np
= delname(np
, myname
);
682 for (ap
= altnames
; *ap
!= '\0'; ++ap
)
683 np
= delname(np
, *ap
);
685 if ((xp
= lextract(ok_vlook(from
), GEXTRA
| GSKIN
)) != NULL
)
687 np
= delname(np
, xp
->n_name
);
691 if ((xp
= lextract(ok_vlook(replyto
), GEXTRA
| GSKIN
)) != NULL
)
693 np
= delname(np
, xp
->n_name
);
697 if ((xp
= extract(ok_vlook(sender
), GEXTRA
| GSKIN
)) != NULL
)
699 np
= delname(np
, xp
->n_name
);
707 is_myname(char const *name
)
714 if (_same_name(myname
, name
))
717 for (ap
= altnames
; *ap
!= NULL
; ++ap
)
718 if (_same_name(*ap
, name
))
721 if ((xp
= lextract(ok_vlook(from
), GEXTRA
| GSKIN
)) != NULL
)
723 if (_same_name(xp
->n_name
, name
))
728 if ((xp
= lextract(ok_vlook(replyto
), GEXTRA
| GSKIN
)) != NULL
)
730 if (_same_name(xp
->n_name
, name
))
735 if ((xp
= extract(ok_vlook(sender
), GEXTRA
| GSKIN
)) != NULL
)
737 if (_same_name(xp
->n_name
, name
))
748 outof(struct name
*names
, FILE *fo
, struct header
*hp
, bool_t
*senderror
)
750 ui32_t pipecnt
, xcnt
, i
;
754 FILE *fin
= NULL
, *fout
;
758 /* Look through all recipients and do a quick return if no file or pipe
759 * addressee is found */
760 fda
= NULL
; /* Silence cc */
761 for (pipecnt
= xcnt
= 0, np
= names
; np
!= NULL
; np
= np
->n_flink
)
762 switch (np
->n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
) {
763 case NAME_ADDRSPEC_ISFILE
:
766 case NAME_ADDRSPEC_ISPIPE
:
770 if (pipecnt
== 0 && xcnt
== 0)
773 /* Otherwise create an array of file descriptors for each found pipe
774 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
775 * each pipe subprocess needs its very own file descriptor, and we need
777 * To make our life a bit easier let's just use the auto-reclaimed
783 fda
= salloc(sizeof(int) * pipecnt
);
784 for (i
= 0; i
< pipecnt
; ++i
)
786 if ((sh
= ok_vlook(SHELL
)) == NULL
)
790 for (np
= names
; np
!= NULL
;) {
791 if (!(np
->n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
)) {
796 /* See if we have copied the complete message out yet. If not, do so */
801 if ((fout
= Ftmp(&tempEdit
, "outof",
802 OF_WRONLY
| OF_HOLDSIGS
| OF_REGISTER
, 0600)) == NULL
) {
803 perror(tr(146, "Creation of temporary image"));
807 if ((image
= open(tempEdit
, O_RDWR
| O_CLOEXEC
)) >= 0) {
809 for (i
= 0; i
< pipecnt
; ++i
) {
810 int fd
= open(tempEdit
, O_RDONLY
| O_CLOEXEC
);
821 Ftmp_release(&tempEdit
);
824 perror(tr(147, "Creating descriptor duplicate of temporary image"));
830 fprintf(fout
, "From %s %s", myname
, time_current
.tc_ctime
);
832 while (i
= c
, (c
= getc(fo
)) != EOF
)
840 perror(tr(148, "Finalizing write of temporary image"));
846 /* If we have to serve file addressees, open reader */
847 if (xcnt
!= 0 && (fin
= Fdopen(image
, "r")) == NULL
) {
849 "Failed to open a duplicate of the temporary image"));
857 /* From now on use xcnt as a counter for pipecnt */
861 /* Now either copy "image" to the desired file or give it as the standard
862 * input to the desired program as appropriate */
863 if (np
->n_flags
& NAME_ADDRSPEC_ISPIPE
) {
868 sigaddset(&nset
, SIGHUP
);
869 sigaddset(&nset
, SIGINT
);
870 sigaddset(&nset
, SIGQUIT
);
871 pid
= start_command(sh
, &nset
, fda
[xcnt
++], -1, "-c",
872 np
->n_name
+ 1, NULL
);
874 fprintf(stderr
, tr(281, "Message piping to <%s> failed\n"),
881 char c
, *fname
= file_expand(np
->n_name
);
887 if ((fout
= Zopen(fname
, "a", NULL
)) == NULL
) {
888 fprintf(stderr
, tr(282, "Message writing to <%s> failed: %s\n"),
889 fname
, strerror(errno
));
894 while ((c
= getc(fin
)) != EOF
)
897 fprintf(stderr
, tr(282, "Message writing to <%s> failed: %s\n"),
898 fname
, tr(283, "write error"));
904 /* In days of old we removed the entry from the the list; now for sake of
905 * header expansion we leave it in and mark it as deleted */
914 for (i
= 0; i
< pipecnt
; ++i
)
925 if (np
->n_flags
& NAME_ADDRSPEC_ISFILEORPIPE
)
932 FL
struct grouphead
*
933 findgroup(char *name
)
935 struct grouphead
*gh
;
938 for (gh
= groups
[hash(name
)]; gh
!= NULL
; gh
= gh
->g_link
)
939 if (*gh
->g_name
== *name
&& !strcmp(gh
->g_name
, name
))
946 printgroup(char *name
)
948 struct grouphead
*gh
;
952 if ((gh
= findgroup(name
)) == NULL
) {
953 fprintf(stderr
, tr(202, "\"%s\": no such alias\n"), name
);
957 printf("%s\t", gh
->g_name
);
958 for (gp
= gh
->g_list
; gp
!= NULL
; gp
= gp
->ge_link
)
959 printf(" %s", gp
->ge_name
);
966 remove_group(char const *name
)
969 struct grouphead
*gh
, *gp
;
974 for (gp
= NULL
, gh
= groups
[h
]; gh
!= NULL
; gh
= gh
->g_link
) {
975 if (*gh
->g_name
== *name
&& !strcmp(gh
->g_name
, name
)) {
976 _remove_grouplist(gh
);
979 gp
->g_link
= gh
->g_link
;
996 /* vim:set fenc=utf-8:s-it-mode */