122708Sdist /* 222708Sdist ** Sendmail 322708Sdist ** Copyright (c) 1983 Eric P. Allman 422708Sdist ** Berkeley, California 522708Sdist ** 622708Sdist ** Copyright (c) 1983 Regents of the University of California. 722708Sdist ** All rights reserved. The Berkeley software License Agreement 822708Sdist ** specifies the terms and conditions for redistribution. 922708Sdist */ 1022708Sdist 1122708Sdist 124632Seric # include "sendmail.h" 134632Seric # include <sys/stat.h> 1413707Ssam # include <sys/dir.h> 154634Seric # include <signal.h> 164632Seric # include <errno.h> 174632Seric 185182Seric # ifndef QUEUE 1923116Seric # ifndef lint 20*25032Seric static char SccsId[] = "@(#)queue.c 5.16 (Berkeley) 09/25/85 (no queueing)"; 2123116Seric # endif not lint 225182Seric # else QUEUE 234632Seric 2423116Seric # ifndef lint 25*25032Seric static char SccsId[] = "@(#)queue.c 5.16 (Berkeley) 09/25/85"; 2623116Seric # endif not lint 275182Seric 284632Seric /* 299377Seric ** Work queue. 309377Seric */ 319377Seric 329377Seric struct work 339377Seric { 349377Seric char *w_name; /* name of control file */ 359377Seric long w_pri; /* priority of message, see below */ 3625013Seric time_t w_ctime; /* creation time of message */ 379377Seric struct work *w_next; /* next in queue */ 389377Seric }; 399377Seric 409377Seric typedef struct work WORK; 419377Seric 429377Seric WORK *WorkQ; /* queue of things to be done */ 439377Seric /* 444632Seric ** QUEUEUP -- queue a message up for future transmission. 454632Seric ** 464632Seric ** Parameters: 476980Seric ** e -- the envelope to queue up. 486999Seric ** queueall -- if TRUE, queue all addresses, rather than 496999Seric ** just those with the QQUEUEUP flag set. 509377Seric ** announce -- if TRUE, tell when you are queueing up. 514632Seric ** 524632Seric ** Returns: 534632Seric ** none. 544632Seric ** 554632Seric ** Side Effects: 569377Seric ** The current request are saved in a control file. 574632Seric */ 584632Seric 599377Seric queueup(e, queueall, announce) 606980Seric register ENVELOPE *e; 616999Seric bool queueall; 629377Seric bool announce; 634632Seric { 647812Seric char *tf; 657812Seric char *qf; 667763Seric char buf[MAXLINE]; 677812Seric register FILE *tfp; 684632Seric register HDR *h; 695007Seric register ADDRESS *q; 7010173Seric MAILER nullmailer; 714632Seric 725037Seric /* 7317477Seric ** Create control file. 745037Seric */ 754632Seric 7617477Seric tf = newstr(queuename(e, 't')); 7717477Seric tfp = fopen(tf, "w"); 787812Seric if (tfp == NULL) 794632Seric { 8017477Seric syserr("queueup: cannot create temp file %s", tf); 8117477Seric return; 824632Seric } 8317477Seric (void) chmod(tf, FileMode); 844632Seric 854632Seric # ifdef DEBUG 867677Seric if (tTd(40, 1)) 8717468Seric printf("queueing %s\n", e->e_id); 884632Seric # endif DEBUG 894632Seric 904632Seric /* 916980Seric ** If there is no data file yet, create one. 926980Seric */ 936980Seric 946980Seric if (e->e_df == NULL) 956980Seric { 966980Seric register FILE *dfp; 979389Seric extern putbody(); 986980Seric 997812Seric e->e_df = newstr(queuename(e, 'd')); 1006980Seric dfp = fopen(e->e_df, "w"); 1016980Seric if (dfp == NULL) 1026980Seric { 1036980Seric syserr("queueup: cannot create %s", e->e_df); 1047812Seric (void) fclose(tfp); 1056980Seric return; 1066980Seric } 1079048Seric (void) chmod(e->e_df, FileMode); 10810173Seric (*e->e_putbody)(dfp, ProgMailer, e); 1097009Seric (void) fclose(dfp); 1109389Seric e->e_putbody = putbody; 1116980Seric } 1126980Seric 1136980Seric /* 1144632Seric ** Output future work requests. 1159377Seric ** Priority should be first, since it is read by orderq. 1164632Seric */ 1174632Seric 1189377Seric /* output message priority */ 1199377Seric fprintf(tfp, "P%ld\n", e->e_msgpriority); 1209377Seric 1219630Seric /* output creation time */ 1229630Seric fprintf(tfp, "T%ld\n", e->e_ctime); 1239630Seric 1244632Seric /* output name of data file */ 1257812Seric fprintf(tfp, "D%s\n", e->e_df); 1264632Seric 12710108Seric /* message from envelope, if it exists */ 12810108Seric if (e->e_message != NULL) 12910108Seric fprintf(tfp, "M%s\n", e->e_message); 13010108Seric 1314632Seric /* output name of sender */ 1327812Seric fprintf(tfp, "S%s\n", e->e_from.q_paddr); 1334632Seric 1344632Seric /* output list of recipient addresses */ 1356980Seric for (q = e->e_sendqueue; q != NULL; q = q->q_next) 1364632Seric { 1377763Seric if (queueall ? !bitset(QDONTSEND, q->q_flags) : 1387763Seric bitset(QQUEUEUP, q->q_flags)) 1398245Seric { 1407812Seric fprintf(tfp, "R%s\n", q->q_paddr); 1419377Seric if (announce) 1429377Seric { 1439377Seric e->e_to = q->q_paddr; 1449377Seric message(Arpa_Info, "queued"); 1459377Seric if (LogLevel > 4) 1469377Seric logdelivery("queued"); 1479377Seric e->e_to = NULL; 1489377Seric } 1499387Seric #ifdef DEBUG 1509387Seric if (tTd(40, 1)) 1519387Seric { 1529387Seric printf("queueing "); 1539387Seric printaddr(q, FALSE); 1549387Seric } 1559387Seric #endif DEBUG 1568245Seric } 1574632Seric } 1584632Seric 1599377Seric /* 1609377Seric ** Output headers for this message. 1619377Seric ** Expand macros completely here. Queue run will deal with 1629377Seric ** everything as absolute headers. 1639377Seric ** All headers that must be relative to the recipient 1649377Seric ** can be cracked later. 16510173Seric ** We set up a "null mailer" -- i.e., a mailer that will have 16610173Seric ** no effect on the addresses as they are output. 1679377Seric */ 1689377Seric 16910686Seric bzero((char *) &nullmailer, sizeof nullmailer); 17010173Seric nullmailer.m_r_rwset = nullmailer.m_s_rwset = -1; 17110349Seric nullmailer.m_eol = "\n"; 17210173Seric 17316147Seric define('g', "\001f", e); 1746980Seric for (h = e->e_header; h != NULL; h = h->h_link) 1754632Seric { 17610686Seric extern bool bitzerop(); 17710686Seric 17812015Seric /* don't output null headers */ 1794632Seric if (h->h_value == NULL || h->h_value[0] == '\0') 1804632Seric continue; 18112015Seric 18212015Seric /* don't output resent headers on non-resent messages */ 18312015Seric if (bitset(H_RESENT, h->h_flags) && !bitset(EF_RESENT, e->e_flags)) 18412015Seric continue; 18512015Seric 18612015Seric /* output this header */ 1877812Seric fprintf(tfp, "H"); 18812015Seric 18912015Seric /* if conditional, output the set of conditions */ 19010686Seric if (!bitzerop(h->h_mflags) && bitset(H_CHECK|H_ACHECK, h->h_flags)) 19110686Seric { 19210686Seric int j; 19310686Seric 19423098Seric (void) putc('?', tfp); 19510686Seric for (j = '\0'; j <= '\177'; j++) 19610686Seric if (bitnset(j, h->h_mflags)) 19723098Seric (void) putc(j, tfp); 19823098Seric (void) putc('?', tfp); 19910686Seric } 20012015Seric 20112015Seric /* output the header: expand macros, convert addresses */ 2027763Seric if (bitset(H_DEFAULT, h->h_flags)) 2037763Seric { 2047763Seric (void) expand(h->h_value, buf, &buf[sizeof buf], e); 2058236Seric fprintf(tfp, "%s: %s\n", h->h_field, buf); 2067763Seric } 2078245Seric else if (bitset(H_FROM|H_RCPT, h->h_flags)) 2089348Seric { 2099348Seric commaize(h, h->h_value, tfp, bitset(EF_OLDSTYLE, e->e_flags), 21010173Seric &nullmailer); 2119348Seric } 2127763Seric else 2138245Seric fprintf(tfp, "%s: %s\n", h->h_field, h->h_value); 2144632Seric } 2154632Seric 2164632Seric /* 2174632Seric ** Clean up. 2184632Seric */ 2194632Seric 22017477Seric (void) fclose(tfp); 22117468Seric qf = queuename(e, 'q'); 22217468Seric if (tf != NULL) 22317468Seric { 22417468Seric (void) unlink(qf); 22524968Seric if (rename(tf, qf) < 0) 22624968Seric syserr("cannot unlink(%s, %s), df=%s", tf, qf, e->e_df); 22724968Seric errno = 0; 22817468Seric } 2297391Seric 2307677Seric # ifdef LOG 2317677Seric /* save log info */ 2327878Seric if (LogLevel > 15) 2337878Seric syslog(LOG_DEBUG, "%s: queueup, qf=%s, df=%s\n", e->e_id, qf, e->e_df); 2347677Seric # endif LOG 2354632Seric } 2364632Seric /* 2374632Seric ** RUNQUEUE -- run the jobs in the queue. 2384632Seric ** 2394632Seric ** Gets the stuff out of the queue in some presumably logical 2404632Seric ** order and processes them. 2414632Seric ** 2424632Seric ** Parameters: 24324941Seric ** forkflag -- TRUE if the queue scanning should be done in 24424941Seric ** a child process. We double-fork so it is not our 24524941Seric ** child and we don't have to clean up after it. 2464632Seric ** 2474632Seric ** Returns: 2484632Seric ** none. 2494632Seric ** 2504632Seric ** Side Effects: 2514632Seric ** runs things in the mail queue. 2524632Seric */ 2534632Seric 2544639Seric runqueue(forkflag) 2554639Seric bool forkflag; 2564632Seric { 25724953Seric extern bool shouldqueue(); 25824953Seric 2597466Seric /* 26024953Seric ** If no work will ever be selected, don't even bother reading 26124953Seric ** the queue. 26224953Seric */ 26324953Seric 26424953Seric if (shouldqueue(-100000000L)) 26524953Seric { 26624953Seric if (Verbose) 26724953Seric printf("Skipping queue run -- load average too high\n"); 26824953Seric 26924953Seric if (forkflag) 27024953Seric return; 27124953Seric finis(); 27224953Seric } 27324953Seric 27424953Seric /* 2757466Seric ** See if we want to go off and do other useful work. 2767466Seric */ 2774639Seric 2784639Seric if (forkflag) 2794639Seric { 2807943Seric int pid; 2817943Seric 2827943Seric pid = dofork(); 2837943Seric if (pid != 0) 2844639Seric { 2857943Seric /* parent -- pick up intermediate zombie */ 2869377Seric (void) waitfor(pid); 2877690Seric if (QueueIntvl != 0) 2889348Seric (void) setevent(QueueIntvl, runqueue, TRUE); 2894639Seric return; 2904639Seric } 2917943Seric /* child -- double fork */ 2927943Seric if (fork() != 0) 2937943Seric exit(EX_OK); 2944639Seric } 29524941Seric 29624941Seric setproctitle("running queue"); 29724941Seric 2987876Seric # ifdef LOG 2997876Seric if (LogLevel > 11) 3007943Seric syslog(LOG_DEBUG, "runqueue %s, pid=%d", QueueDir, getpid()); 3017876Seric # endif LOG 3024639Seric 3037466Seric /* 30410205Seric ** Release any resources used by the daemon code. 30510205Seric */ 30610205Seric 30710205Seric # ifdef DAEMON 30810205Seric clrdaemon(); 30910205Seric # endif DAEMON 31010205Seric 31110205Seric /* 3127466Seric ** Start making passes through the queue. 3137466Seric ** First, read and sort the entire queue. 3147466Seric ** Then, process the work in that order. 3157466Seric ** But if you take too long, start over. 3167466Seric */ 3177466Seric 3187943Seric /* order the existing work requests */ 31924954Seric (void) orderq(FALSE); 3207690Seric 3217943Seric /* process them once at a time */ 3227943Seric while (WorkQ != NULL) 3234639Seric { 3247943Seric WORK *w = WorkQ; 3257881Seric 3267943Seric WorkQ = WorkQ->w_next; 3277943Seric dowork(w); 3287943Seric free(w->w_name); 3297943Seric free((char *) w); 3304639Seric } 3317943Seric finis(); 3324634Seric } 3334634Seric /* 3344632Seric ** ORDERQ -- order the work queue. 3354632Seric ** 3364632Seric ** Parameters: 33724941Seric ** doall -- if set, include everything in the queue (even 33824941Seric ** the jobs that cannot be run because the load 33924941Seric ** average is too high). Otherwise, exclude those 34024941Seric ** jobs. 3414632Seric ** 3424632Seric ** Returns: 34310121Seric ** The number of request in the queue (not necessarily 34410121Seric ** the number of requests in WorkQ however). 3454632Seric ** 3464632Seric ** Side Effects: 3474632Seric ** Sets WorkQ to the queue of available work, in order. 3484632Seric */ 3494632Seric 3504632Seric # define WLSIZE 120 /* max size of worklist per sort */ 3514632Seric 35224941Seric orderq(doall) 35324941Seric bool doall; 3544632Seric { 3556625Sglickman register struct direct *d; 3564632Seric register WORK *w; 3576625Sglickman DIR *f; 3584632Seric register int i; 35910121Seric WORK wlist[WLSIZE+1]; 36010070Seric int wn = -1; 3614632Seric extern workcmpf(); 3624632Seric 3634632Seric /* clear out old WorkQ */ 3644632Seric for (w = WorkQ; w != NULL; ) 3654632Seric { 3664632Seric register WORK *nw = w->w_next; 3674632Seric 3684632Seric WorkQ = nw; 3694632Seric free(w->w_name); 3704632Seric free((char *) w); 3714632Seric w = nw; 3724632Seric } 3734632Seric 3744632Seric /* open the queue directory */ 3758148Seric f = opendir("."); 3764632Seric if (f == NULL) 3774632Seric { 3788148Seric syserr("orderq: cannot open \"%s\" as \".\"", QueueDir); 37910070Seric return (0); 3804632Seric } 3814632Seric 3824632Seric /* 3834632Seric ** Read the work directory. 3844632Seric */ 3854632Seric 38610070Seric while ((d = readdir(f)) != NULL) 3874632Seric { 3889377Seric FILE *cf; 3894632Seric char lbuf[MAXNAME]; 3904632Seric 3914632Seric /* is this an interesting entry? */ 3927812Seric if (d->d_name[0] != 'q' || d->d_name[1] != 'f') 3934632Seric continue; 3944632Seric 39510070Seric /* yes -- open control file (if not too many files) */ 39610070Seric if (++wn >= WLSIZE) 39710070Seric continue; 3988148Seric cf = fopen(d->d_name, "r"); 3994632Seric if (cf == NULL) 4004632Seric { 4017055Seric /* this may be some random person sending hir msgs */ 4027055Seric /* syserr("orderq: cannot open %s", cbuf); */ 40310090Seric #ifdef DEBUG 40410090Seric if (tTd(41, 2)) 40510090Seric printf("orderq: cannot open %s (%d)\n", 40610090Seric d->d_name, errno); 40710090Seric #endif DEBUG 4087055Seric errno = 0; 40910090Seric wn--; 4104632Seric continue; 4114632Seric } 4128148Seric wlist[wn].w_name = newstr(d->d_name); 4134632Seric 41425027Seric /* make sure jobs in creation don't clog queue */ 41525027Seric wlist[wn].w_pri = 0x7fffffff; 41625027Seric wlist[wn].w_ctime = 0; 41725027Seric 4184632Seric /* extract useful information */ 4194632Seric while (fgets(lbuf, sizeof lbuf, cf) != NULL) 4204632Seric { 42124954Seric extern long atol(); 42224954Seric 42324941Seric switch (lbuf[0]) 4244632Seric { 42524941Seric case 'P': 42624941Seric wlist[wn].w_pri = atol(&lbuf[1]); 4274632Seric break; 42825013Seric 42925013Seric case 'T': 43025013Seric wlist[wn].w_ctime = atol(&lbuf[1]); 43125013Seric break; 4324632Seric } 4334632Seric } 4344632Seric (void) fclose(cf); 43524953Seric 43624953Seric if (!doall && shouldqueue(wlist[wn].w_pri)) 43724953Seric { 43824953Seric /* don't even bother sorting this job in */ 43924953Seric wn--; 44024953Seric } 4414632Seric } 4426625Sglickman (void) closedir(f); 44310090Seric wn++; 4444632Seric 4454632Seric /* 4464632Seric ** Sort the work directory. 4474632Seric */ 4484632Seric 44923116Seric qsort((char *) wlist, min(wn, WLSIZE), sizeof *wlist, workcmpf); 4504632Seric 4514632Seric /* 4524632Seric ** Convert the work list into canonical form. 4539377Seric ** Should be turning it into a list of envelopes here perhaps. 4544632Seric */ 4554632Seric 45624981Seric WorkQ = NULL; 45710121Seric for (i = min(wn, WLSIZE); --i >= 0; ) 4584632Seric { 4594632Seric w = (WORK *) xalloc(sizeof *w); 4604632Seric w->w_name = wlist[i].w_name; 4614632Seric w->w_pri = wlist[i].w_pri; 46225013Seric w->w_ctime = wlist[i].w_ctime; 46324981Seric w->w_next = WorkQ; 46424981Seric WorkQ = w; 4654632Seric } 4664632Seric 4674632Seric # ifdef DEBUG 4687677Seric if (tTd(40, 1)) 4694632Seric { 4704632Seric for (w = WorkQ; w != NULL; w = w->w_next) 4715037Seric printf("%32s: pri=%ld\n", w->w_name, w->w_pri); 4724632Seric } 4734632Seric # endif DEBUG 47410070Seric 47510090Seric return (wn); 4764632Seric } 4774632Seric /* 4787677Seric ** WORKCMPF -- compare function for ordering work. 4794632Seric ** 4804632Seric ** Parameters: 4814632Seric ** a -- the first argument. 4824632Seric ** b -- the second argument. 4834632Seric ** 4844632Seric ** Returns: 48524981Seric ** -1 if a < b 48624981Seric ** 0 if a == b 48724981Seric ** +1 if a > b 4884632Seric ** 4894632Seric ** Side Effects: 4904632Seric ** none. 4914632Seric */ 4924632Seric 4934632Seric workcmpf(a, b) 4945037Seric register WORK *a; 4955037Seric register WORK *b; 4964632Seric { 49725013Seric long pa = a->w_pri + a->w_ctime; 49825013Seric long pb = b->w_pri + b->w_ctime; 49924941Seric 50024941Seric if (pa == pb) 5014632Seric return (0); 50224941Seric else if (pa > pb) 50324981Seric return (1); 50424981Seric else 50510121Seric return (-1); 5064632Seric } 5074632Seric /* 5084632Seric ** DOWORK -- do a work request. 5094632Seric ** 5104632Seric ** Parameters: 5114632Seric ** w -- the work request to be satisfied. 5124632Seric ** 5134632Seric ** Returns: 5144632Seric ** none. 5154632Seric ** 5164632Seric ** Side Effects: 5174632Seric ** The work request is satisfied if possible. 5184632Seric */ 5194632Seric 5204632Seric dowork(w) 5214632Seric register WORK *w; 5224632Seric { 5234632Seric register int i; 52424941Seric extern bool shouldqueue(); 5254632Seric 5264632Seric # ifdef DEBUG 5277677Seric if (tTd(40, 1)) 5285037Seric printf("dowork: %s pri %ld\n", w->w_name, w->w_pri); 5294632Seric # endif DEBUG 5304632Seric 5314632Seric /* 53224941Seric ** Ignore jobs that are too expensive for the moment. 5334632Seric */ 5344632Seric 53524941Seric if (shouldqueue(w->w_pri)) 5364632Seric { 53724941Seric if (Verbose) 53824967Seric printf("\nSkipping %s\n", w->w_name + 2); 5394632Seric return; 5404632Seric } 5414632Seric 54224941Seric /* 54324941Seric ** Fork for work. 54424941Seric */ 54524941Seric 54624941Seric if (ForkQueueRuns) 54724941Seric { 54824941Seric i = fork(); 54924941Seric if (i < 0) 55024941Seric { 55124941Seric syserr("dowork: cannot fork"); 55224941Seric return; 55324941Seric } 55424941Seric } 55524941Seric else 55624941Seric { 55724941Seric i = 0; 55824941Seric } 55924941Seric 5604632Seric if (i == 0) 5614632Seric { 5624632Seric /* 5634632Seric ** CHILD 5648148Seric ** Lock the control file to avoid duplicate deliveries. 5658148Seric ** Then run the file as though we had just read it. 5667350Seric ** We save an idea of the temporary name so we 5677350Seric ** can recover on interrupt. 5684632Seric */ 5694632Seric 5707763Seric /* set basic modes, etc. */ 5717356Seric (void) alarm(0); 57224961Seric clearenvelope(CurEnv); 5734632Seric QueueRun = TRUE; 5749377Seric ErrorMode = EM_MAIL; 5758148Seric CurEnv->e_id = &w->w_name[2]; 5767876Seric # ifdef LOG 5777876Seric if (LogLevel > 11) 5787881Seric syslog(LOG_DEBUG, "%s: dowork, pid=%d", CurEnv->e_id, 5797881Seric getpid()); 5807876Seric # endif LOG 5817763Seric 5827763Seric /* don't use the headers from sendmail.cf... */ 5837763Seric CurEnv->e_header = NULL; 5847763Seric 58517468Seric /* lock the control file during processing */ 5867812Seric if (link(w->w_name, queuename(CurEnv, 'l')) < 0) 5876980Seric { 5887812Seric /* being processed by another queuer */ 5897881Seric # ifdef LOG 5907881Seric if (LogLevel > 4) 5917881Seric syslog(LOG_DEBUG, "%s: locked", CurEnv->e_id); 5927881Seric # endif LOG 59324941Seric if (ForkQueueRuns) 59424941Seric exit(EX_OK); 59524941Seric else 59624941Seric return; 5976980Seric } 5986980Seric 5996980Seric /* do basic system initialization */ 6004632Seric initsys(); 6016980Seric 6026980Seric /* read the queue control file */ 60317477Seric readqf(CurEnv, TRUE); 6049338Seric CurEnv->e_flags |= EF_INQUEUE; 6059377Seric eatheader(CurEnv); 6066980Seric 6076980Seric /* do the delivery */ 6089338Seric if (!bitset(EF_FATALERRS, CurEnv->e_flags)) 6099282Seric sendall(CurEnv, SM_DELIVER); 6106980Seric 6116980Seric /* finish up and exit */ 61224941Seric if (ForkQueueRuns) 61324941Seric finis(); 61424941Seric else 61524941Seric dropenvelope(CurEnv); 6164632Seric } 61724941Seric else 61824941Seric { 61924941Seric /* 62024941Seric ** Parent -- pick up results. 62124941Seric */ 6224632Seric 62324941Seric errno = 0; 62424941Seric (void) waitfor(i); 62524941Seric } 6264632Seric } 6274632Seric /* 6284632Seric ** READQF -- read queue file and set up environment. 6294632Seric ** 6304632Seric ** Parameters: 6319377Seric ** e -- the envelope of the job to run. 6329630Seric ** full -- if set, read in all information. Otherwise just 6339630Seric ** read in info needed for a queue print. 6344632Seric ** 6354632Seric ** Returns: 6364632Seric ** none. 6374632Seric ** 6384632Seric ** Side Effects: 6394632Seric ** cf is read and created as the current job, as though 6404632Seric ** we had been invoked by argument. 6414632Seric */ 6424632Seric 64317477Seric readqf(e, full) 6449377Seric register ENVELOPE *e; 6459630Seric bool full; 6464632Seric { 64717477Seric char *qf; 64817477Seric register FILE *qfp; 6497785Seric char buf[MAXFIELD]; 6509348Seric extern char *fgetfolded(); 65124954Seric extern long atol(); 6524632Seric 6534632Seric /* 65417468Seric ** Read and process the file. 6554632Seric */ 6564632Seric 65717477Seric qf = queuename(e, 'q'); 65817477Seric qfp = fopen(qf, "r"); 65917477Seric if (qfp == NULL) 66017477Seric { 66117477Seric syserr("readqf: no control file %s", qf); 66217477Seric return; 66317477Seric } 66417477Seric FileName = qf; 6659377Seric LineNumber = 0; 6669630Seric if (Verbose && full) 6679377Seric printf("\nRunning %s\n", e->e_id); 66817468Seric while (fgetfolded(buf, sizeof buf, qfp) != NULL) 6694632Seric { 6704632Seric switch (buf[0]) 6714632Seric { 6724632Seric case 'R': /* specify recipient */ 6739618Seric sendtolist(&buf[1], (ADDRESS *) NULL, &e->e_sendqueue); 6744632Seric break; 6754632Seric 6764632Seric case 'H': /* header */ 6779630Seric if (full) 6789630Seric (void) chompheader(&buf[1], FALSE); 6794632Seric break; 6804632Seric 68110108Seric case 'M': /* message */ 68210108Seric e->e_message = newstr(&buf[1]); 68310108Seric break; 68410108Seric 6854632Seric case 'S': /* sender */ 6864634Seric setsender(newstr(&buf[1])); 6874632Seric break; 6884632Seric 6894632Seric case 'D': /* data file name */ 6909630Seric if (!full) 6919630Seric break; 6929377Seric e->e_df = newstr(&buf[1]); 6939544Seric e->e_dfp = fopen(e->e_df, "r"); 6949544Seric if (e->e_dfp == NULL) 6959377Seric syserr("readqf: cannot open %s", e->e_df); 6964632Seric break; 6974632Seric 6987860Seric case 'T': /* init time */ 69924941Seric e->e_ctime = atol(&buf[1]); 7004632Seric break; 7014632Seric 7024634Seric case 'P': /* message priority */ 70325008Seric e->e_msgpriority = atol(&buf[1]) + WkTimeFact; 7044634Seric break; 7054634Seric 70624941Seric case '\0': /* blank line; ignore */ 70724941Seric break; 70824941Seric 7094632Seric default: 71024941Seric syserr("readqf(%s:%d): bad line \"%s\"", e->e_id, 71124941Seric LineNumber, buf); 7124632Seric break; 7134632Seric } 7144632Seric } 7159377Seric 71624954Seric (void) fclose(qfp); 7179377Seric FileName = NULL; 71824941Seric 71924941Seric /* 72024941Seric ** If we haven't read any lines, this queue file is empty. 72124941Seric ** Arrange to remove it without referencing any null pointers. 72224941Seric */ 72324941Seric 72424941Seric if (LineNumber == 0) 72524941Seric { 72624941Seric errno = 0; 72724941Seric e->e_flags |= EF_CLRQUEUE | EF_FATALERRS | EF_RESPONSE; 72824941Seric } 7294632Seric } 7304632Seric /* 7319630Seric ** PRINTQUEUE -- print out a representation of the mail queue 7329630Seric ** 7339630Seric ** Parameters: 7349630Seric ** none. 7359630Seric ** 7369630Seric ** Returns: 7379630Seric ** none. 7389630Seric ** 7399630Seric ** Side Effects: 7409630Seric ** Prints a listing of the mail queue on the standard output. 7419630Seric */ 7425182Seric 7439630Seric printqueue() 7449630Seric { 7459630Seric register WORK *w; 7469630Seric FILE *f; 74710070Seric int nrequests; 7489630Seric char buf[MAXLINE]; 7499630Seric 7509630Seric /* 7519630Seric ** Read and order the queue. 7529630Seric */ 7539630Seric 75424941Seric nrequests = orderq(TRUE); 7559630Seric 7569630Seric /* 7579630Seric ** Print the work list that we have read. 7589630Seric */ 7599630Seric 7609630Seric /* first see if there is anything */ 76110070Seric if (nrequests <= 0) 7629630Seric { 76310070Seric printf("Mail queue is empty\n"); 7649630Seric return; 7659630Seric } 7669630Seric 76710096Seric printf("\t\tMail Queue (%d request%s", nrequests, nrequests == 1 ? "" : "s"); 76810070Seric if (nrequests > WLSIZE) 76910070Seric printf(", only %d printed", WLSIZE); 77024979Seric if (Verbose) 771*25032Seric printf(")\n--QID-- --Size-- -Priority- ---Q-Time--- -----------Sender/Recipient-----------\n"); 77224979Seric else 77324979Seric printf(")\n--QID-- --Size-- -----Q-Time----- ------------Sender/Recipient------------\n"); 7749630Seric for (w = WorkQ; w != NULL; w = w->w_next) 7759630Seric { 7769630Seric struct stat st; 77710070Seric auto time_t submittime = 0; 77810070Seric long dfsize = -1; 77910108Seric char lf[20]; 78010108Seric char message[MAXLINE]; 78124941Seric extern bool shouldqueue(); 7829630Seric 78317468Seric f = fopen(w->w_name, "r"); 78417468Seric if (f == NULL) 78517468Seric { 78617468Seric errno = 0; 78717468Seric continue; 78817468Seric } 7899630Seric printf("%7s", w->w_name + 2); 79023098Seric (void) strcpy(lf, w->w_name); 79110070Seric lf[0] = 'l'; 79210070Seric if (stat(lf, &st) >= 0) 79310070Seric printf("*"); 79424941Seric else if (shouldqueue(w->w_pri)) 79524941Seric printf("X"); 79610070Seric else 79710070Seric printf(" "); 79810070Seric errno = 0; 79917468Seric 80010108Seric message[0] = '\0'; 8019630Seric while (fgets(buf, sizeof buf, f) != NULL) 8029630Seric { 8039630Seric fixcrlf(buf, TRUE); 8049630Seric switch (buf[0]) 8059630Seric { 80610108Seric case 'M': /* error message */ 80723098Seric (void) strcpy(message, &buf[1]); 80810108Seric break; 80910108Seric 8109630Seric case 'S': /* sender name */ 81124979Seric if (Verbose) 81225027Seric printf("%8ld %10ld %.12s %.38s", dfsize, 81325027Seric w->w_pri, ctime(&submittime) + 4, 81424979Seric &buf[1]); 81524979Seric else 81624979Seric printf("%8ld %.16s %.45s", dfsize, 81724979Seric ctime(&submittime), &buf[1]); 81810108Seric if (message[0] != '\0') 81925027Seric printf("\n\t\t (%.60s)", message); 8209630Seric break; 8219630Seric 8229630Seric case 'R': /* recipient name */ 82324979Seric if (Verbose) 82425027Seric printf("\n\t\t\t\t\t %.38s", &buf[1]); 82524979Seric else 82624979Seric printf("\n\t\t\t\t %.45s", &buf[1]); 8279630Seric break; 8289630Seric 8299630Seric case 'T': /* creation time */ 83024941Seric submittime = atol(&buf[1]); 8319630Seric break; 83210070Seric 83310070Seric case 'D': /* data file name */ 83410070Seric if (stat(&buf[1], &st) >= 0) 83510070Seric dfsize = st.st_size; 83610070Seric break; 8379630Seric } 8389630Seric } 83910070Seric if (submittime == (time_t) 0) 84010070Seric printf(" (no control file)"); 8419630Seric printf("\n"); 84223098Seric (void) fclose(f); 8439630Seric } 8449630Seric } 8459630Seric 8465182Seric # endif QUEUE 84717468Seric /* 84817468Seric ** QUEUENAME -- build a file name in the queue directory for this envelope. 84917468Seric ** 85017468Seric ** Assigns an id code if one does not already exist. 85117468Seric ** This code is very careful to avoid trashing existing files 85217468Seric ** under any circumstances. 85317468Seric ** We first create an nf file that is only used when 85417468Seric ** assigning an id. This file is always empty, so that 85517468Seric ** we can never accidently truncate an lf file. 85617468Seric ** 85717468Seric ** Parameters: 85817468Seric ** e -- envelope to build it in/from. 85917468Seric ** type -- the file type, used as the first character 86017468Seric ** of the file name. 86117468Seric ** 86217468Seric ** Returns: 86317468Seric ** a pointer to the new file name (in a static buffer). 86417468Seric ** 86517468Seric ** Side Effects: 86617468Seric ** Will create the lf and qf files if no id code is 86717468Seric ** already assigned. This will cause the envelope 86817468Seric ** to be modified. 86917468Seric */ 87017468Seric 87117468Seric char * 87217468Seric queuename(e, type) 87317468Seric register ENVELOPE *e; 87417468Seric char type; 87517468Seric { 87617468Seric static char buf[MAXNAME]; 87717468Seric static int pid = -1; 87817468Seric char c1 = 'A'; 87917468Seric char c2 = 'A'; 88017468Seric 88117468Seric if (e->e_id == NULL) 88217468Seric { 88317468Seric char qf[20]; 88417468Seric char nf[20]; 88517468Seric char lf[20]; 88617468Seric 88717468Seric /* find a unique id */ 88817468Seric if (pid != getpid()) 88917468Seric { 89017468Seric /* new process -- start back at "AA" */ 89117468Seric pid = getpid(); 89217468Seric c1 = 'A'; 89317468Seric c2 = 'A' - 1; 89417468Seric } 89517468Seric (void) sprintf(qf, "qfAA%05d", pid); 89623098Seric (void) strcpy(lf, qf); 89717468Seric lf[0] = 'l'; 89823098Seric (void) strcpy(nf, qf); 89917468Seric nf[0] = 'n'; 90017468Seric 90117468Seric while (c1 < '~' || c2 < 'Z') 90217468Seric { 90317468Seric int i; 90417468Seric 90517468Seric if (c2 >= 'Z') 90617468Seric { 90717468Seric c1++; 90817468Seric c2 = 'A' - 1; 90917468Seric } 91017477Seric lf[2] = nf[2] = qf[2] = c1; 91117477Seric lf[3] = nf[3] = qf[3] = ++c2; 91217468Seric # ifdef DEBUG 91317468Seric if (tTd(7, 20)) 91417468Seric printf("queuename: trying \"%s\"\n", nf); 91517468Seric # endif DEBUG 91617468Seric 91717468Seric # ifdef QUEUE 91817468Seric if (access(lf, 0) >= 0 || access(qf, 0) >= 0) 91917468Seric continue; 92017468Seric errno = 0; 92117468Seric i = creat(nf, FileMode); 92217468Seric if (i < 0) 92317468Seric { 92417468Seric (void) unlink(nf); /* kernel bug */ 92517468Seric continue; 92617468Seric } 92717468Seric (void) close(i); 92817468Seric i = link(nf, lf); 92917468Seric (void) unlink(nf); 93017468Seric if (i < 0) 93117468Seric continue; 93217468Seric if (link(lf, qf) >= 0) 93317468Seric break; 93417468Seric (void) unlink(lf); 93517468Seric # else QUEUE 93617982Seric if (close(creat(qf, FileMode)) >= 0) 93717982Seric break; 93817468Seric # endif QUEUE 93917468Seric } 94017468Seric if (c1 >= '~' && c2 >= 'Z') 94117468Seric { 94217468Seric syserr("queuename: Cannot create \"%s\" in \"%s\"", 94317468Seric qf, QueueDir); 94417468Seric exit(EX_OSERR); 94517468Seric } 94617468Seric e->e_id = newstr(&qf[2]); 94717468Seric define('i', e->e_id, e); 94817468Seric # ifdef DEBUG 94917468Seric if (tTd(7, 1)) 95017468Seric printf("queuename: assigned id %s, env=%x\n", e->e_id, e); 95117468Seric # ifdef LOG 95217468Seric if (LogLevel > 16) 95317468Seric syslog(LOG_DEBUG, "%s: assigned id", e->e_id); 95417468Seric # endif LOG 95517468Seric # endif DEBUG 95617468Seric } 95717468Seric 95817468Seric if (type == '\0') 95917468Seric return (NULL); 96017468Seric (void) sprintf(buf, "%cf%s", type, e->e_id); 96117468Seric # ifdef DEBUG 96217468Seric if (tTd(7, 2)) 96317468Seric printf("queuename: %s\n", buf); 96417468Seric # endif DEBUG 96517468Seric return (buf); 96617468Seric } 96717468Seric /* 96817468Seric ** UNLOCKQUEUE -- unlock the queue entry for a specified envelope 96917468Seric ** 97017468Seric ** Parameters: 97117468Seric ** e -- the envelope to unlock. 97217468Seric ** 97317468Seric ** Returns: 97417468Seric ** none 97517468Seric ** 97617468Seric ** Side Effects: 97717468Seric ** unlocks the queue for `e'. 97817468Seric */ 97917468Seric 98017468Seric unlockqueue(e) 98117468Seric ENVELOPE *e; 98217468Seric { 98317468Seric /* remove the transcript */ 98417468Seric #ifdef DEBUG 98517468Seric # ifdef LOG 98617468Seric if (LogLevel > 19) 98717468Seric syslog(LOG_DEBUG, "%s: unlock", e->e_id); 98817468Seric # endif LOG 98917468Seric if (!tTd(51, 4)) 99017468Seric #endif DEBUG 99117468Seric xunlink(queuename(e, 'x')); 99217468Seric 99317468Seric # ifdef QUEUE 99417468Seric /* last but not least, remove the lock */ 99517468Seric xunlink(queuename(e, 'l')); 99617468Seric # endif QUEUE 99717468Seric } 998