2 ** inc.c -- incorporate messages from a maildrop into a folder
4 ** This code is Copyright (c) 2002, by the authors of nmh. See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
11 ** Revised: Sat Apr 14 17:08:17 PDT 1990 (marvit@hplabs)
12 ** Added hpux hacks to set and reset gid to be "mail" as needed. The reset
13 ** is necessary so inc'ed mail is the group of the inc'er, rather than
14 ** "mail". We setgid to egid only when [un]locking the mail file. This
15 ** is also a major security precaution which will not be explained here.
17 ** Fri Feb 7 16:04:57 PST 1992 John Romine <bug-mh@ics.uci.edu>
18 ** NB: I'm not 100% sure that this setgid stuff is secure even now.
20 ** See the *GROUPPRIVS() macros later. I'm reasonably happy with the setgid
21 ** attribute. Running setuid root is probably not a terribly good idea, though.
22 ** -- Peter Maydell <pmaydell@chiark.greenend.org.uk>, 04/1998
24 ** Peter Maydell's patch slightly modified for nmh 0.28-pre2.
25 ** Ruud de Rooij <ruud@debian.org> Wed, 22 Jul 1998 13:24:22 +0200
33 #include <h/fmt_scan.h>
34 #include <h/scansbr.h>
35 #include <h/signals.h>
40 static struct swit switches[] = {
42 { "audit audit-file", 0 },
52 { "form formatfile", 0 },
62 { "width columns", 0 },
71 ** This is an attempt to simplify things by putting all the
72 ** privilege ops into macros.
73 ** *GROUPPRIVS() is related to handling the setgid MAIL property,
74 ** and only applies if MAILGROUP is defined.
75 ** Basically, SAVEGROUPPRIVS() is called right at the top of main()
76 ** to initialise things, and then DROPGROUPPRIVS() and GETGROUPPRIVS()
77 ** do the obvious thing. TRYDROPGROUPPRIVS() has to be safe to call
78 ** before DROPUSERPRIVS() is called [this is needed because setgid()
79 ** sets both effective and real uids if euid is root.]
81 ** There's probably a better implementation if we're allowed to use
82 ** BSD-style setreuid() rather than using POSIX saved-ids.
83 ** Anyway, if you're euid root it's a bit pointless to drop the group
86 ** I'm pretty happy that the security is good provided we aren't setuid root.
87 ** The only things we trust with group=mail privilege are lkfopen()
92 ** For setting and returning to "mail" gid
95 static int return_gid;
97 ** easy case; we're not setuid root, so can drop group privs immediately.
99 #define TRYDROPGROUPPRIVS() DROPGROUPPRIVS()
100 #define DROPGROUPPRIVS() setgid(getgid())
101 #define GETGROUPPRIVS() setgid(return_gid)
102 #define SAVEGROUPPRIVS() return_gid = getegid()
104 /* define *GROUPPRIVS() as null; this avoids having lots of "#ifdef MAILGROUP"s */
105 #define TRYDROPGROUPPRIVS()
106 #define DROPGROUPPRIVS()
107 #define GETGROUPPRIVS()
108 #define SAVEGROUPPRIVS()
109 #endif /* not MAILGROUP */
112 ** these variables have to be globals so that done() can correctly clean
115 static int locked = 0;
116 static char *newmail;
126 main(int argc, char **argv)
128 int chgflag = 1, trnflag = 1;
129 int noisy = 1, width = 0;
130 int hghnum = 0, msgnum = 0;
132 ** <0 if inc hits an error which means it should
133 ** not truncate mailspool
135 char *cp, *maildir = NULL, *folder = NULL;
137 char *audfile = NULL, *from = NULL;
138 char buf[BUFSIZ], **argp, *fmtstr, **arguments;
139 struct msgs *mp = NULL;
142 char b[MAXPATHLEN + 1];
143 /* copy of mail directory because the static gets overwritten */
144 char *maildir_copy = NULL;
146 if (atexit(inc_done) != 0) {
147 adios(NULL, "atexit failed");
151 ** absolutely the first thing we do is save our privileges,
152 ** and drop them if we can.
157 setlocale(LC_ALL, "");
158 invo_name = mhbasename(argv[0]);
160 /* read user profile/context */
163 arguments = getarguments(invo_name, argc, argv, 1);
166 while ((cp = *argp++)) {
168 switch (smatch(++cp, switches)) {
170 ambigsw(cp, switches);
171 /* sysexits.h EX_USAGE */
174 adios(NULL, "-%s unknown", cp);
177 snprintf(buf, sizeof(buf), "%s [+folder] [switches]", invo_name);
178 print_help(buf, switches, 1);
181 print_version(invo_name);
185 if (!(cp = *argp++) || *cp == '-')
186 adios(NULL, "missing argument to %s", argp[-2]);
187 audfile = getcpy(expanddir(cp));
201 ** The flag `trnflag' has the value:
203 ** 2 if -truncate is given
204 ** 1 by default (truncating is default)
205 ** 0 if -notruncate is given
215 if (!(cp = *argp++) || *cp == '-')
216 adios(NULL, "missing argument to %s",
218 from = getcpy(expanddir(cp));
221 ** If the truncate file is in default state,
222 ** change to not truncate.
236 if (!(form = *argp++) || *form == '-')
237 adios(NULL, "missing argument to %s",
242 if (!(cp = *argp++) || *cp == '-')
243 adios(NULL, "missing argument to %s",
249 if (*cp == '+' || *cp == '@') {
251 adios(NULL, "only one folder at a time!");
253 folder = getcpy(expandfol(cp));
255 adios(NULL, "usage: %s [+folder] [switches]",
261 ** NOTE: above this point you should use TRYDROPGROUPPRIVS(),
262 ** not DROPGROUPPRIVS().
264 /* guarantee dropping group priveleges; we might not have done so earlier */
268 ** We will get the mail from a file
269 ** (typically the standard maildrop)
273 else if ((newmail = getenv("MAILDROP")) && *newmail)
274 newmail = toabsdir(newmail);
275 else if ((newmail = context_find("maildrop")) && *newmail)
276 newmail = toabsdir(newmail);
278 newmail = concat(mailspool, "/", getusername(), NULL);
280 if (stat(newmail, &s1) == NOTOK || s1.st_size == 0)
281 adios(NULL, "no mail to incorporate");
283 if ((cp = strdup(newmail)) == NULL)
284 adios(NULL, "error allocating memory to copy newmail");
289 folder = getdeffol();
290 maildir = toabsdir(folder);
292 if ((maildir_copy = strdup(maildir)) == NULL)
293 adios(maildir, "error allocating memory to copy maildir");
295 create_folder(maildir, noisy ? 0 : 1, exit);
297 if (chdir(maildir) == NOTOK)
298 adios(maildir, "unable to change directory to");
300 /* read folder and create message structure */
301 if (!(mp = folder_read(folder)))
302 adios(NULL, "unable to read folder %s", folder);
304 if (access(newmail, W_OK) != NOTOK) {
307 SIGNAL(SIGHUP, SIG_IGN);
308 SIGNAL(SIGINT, SIG_IGN);
309 SIGNAL(SIGQUIT, SIG_IGN);
310 SIGNAL(SIGTERM, SIG_IGN);
313 GETGROUPPRIVS(); /* Reset gid to lock mail file */
314 in = lkfopen(newmail, "r");
317 adios(NULL, "unable to lock and fopen %s", newmail);
318 fstat(fileno(in), &s1);
321 if ((in = fopen(newmail, "r")) == NULL)
322 adios(newmail, "unable to read");
325 /* This shouldn't be necessary but it can't hurt. */
330 if ((i = stat(audfile, &st)) == NOTOK)
331 advise(NULL, "Creating Receive-Audit: %s", audfile);
332 if ((aud = fopen(audfile, "a")) == NULL)
333 adios(audfile, "unable to append to");
335 chmod(audfile, m_gmprot());
337 fprintf(aud, from ? "<<inc>> %s -ms %s\n" : "<<inc>> %s\n",
341 /* Get new format string */
342 fmtstr = new_fs(form, FORMAT);
345 printf("Incorporating new mail into %s...\n\n", folder);
350 ** Get the mail from file (usually mail spool)
353 hghnum = msgnum = mp->hghmsg;
356 ** Check if we need to allocate more space for message status.
357 ** If so, then add space for an additional 100 messages.
359 if (msgnum >= mp->hghoff && !(mp = folder_realloc(mp, mp->lowoff, mp->hghoff + 100))) {
360 advise(NULL, "unable to allocate folder storage");
365 /* create scanline for new message */
366 switch (incerr = scan(in, msgnum + 1, msgnum + 1,
367 noisy ? fmtstr : NULL, width,
368 msgnum == hghnum && chgflag, 1)) {
375 fputs("inc aborted!\n", aud);
376 /* doesn't clean up locks! */
377 advise(NULL, "aborted!");
381 advise(NULL, "BUG in %s, number out of range",
386 advise(NULL, "BUG in %s, scan() botch (%d)",
392 ** Run the external program hook on the message.
395 snprintf(b, sizeof (b), "%s/%d", maildir_copy,
397 ext_hook("add-hook", b, NULL);
408 clear_msg_flags(mp, msgnum);
409 set_exists(mp, msgnum);
410 set_unseen(mp, msgnum);
411 mp->msgflags |= SEQMOD;
415 ** If we get here there was some sort of error from scan(),
416 ** so stop processing anything more from the spool.
422 if (incerr < 0) { /* error */
424 GETGROUPPRIVS(); /* Be sure we can unlock mail file */
425 lkfclose(in, newmail); in = NULL;
427 ** And then return us to normal
431 fclose(in); in = NULL;
433 adios(NULL, "failed");
443 ** truncate file we are incorporating from
446 if (stat(newmail, &st) != NOTOK && s1.st_mtime != st.st_mtime)
447 advise(NULL, "new messages have arrived!\007");
450 if ((newfd = creat(newmail, 0600)) != NOTOK)
453 admonish(newmail, "error zero'ing");
456 printf("%s not zero'd\n", newmail);
459 if (msgnum == hghnum) {
460 admonish(NULL, "no messages incorporated");
462 context_replace(curfolder, folder); /* update current folder */
464 mp->curmsg = hghnum + 1;
468 if (chgflag) /* sigh... */
469 seq_setcur(mp, mp->curmsg);
473 ** unlock the mail spool
476 GETGROUPPRIVS(); /* Be sure we can unlock mail file */
477 lkfclose(in, newmail); in = NULL;
478 DROPGROUPPRIVS(); /* And then return us to normal privileges */
480 fclose(in); in = NULL;
483 seq_setunseen(mp, 1); /* add new msgs to unseen sequences */
484 seq_save(mp); /* synchronize sequences */
485 context_save(); /* save the context file */
494 lkfclose(in, newmail);