📄 queue.c
字号:
# ifdef DEBUG if (tTd(40, 1)) printf("dowork: %s pri %ld\n", w->w_name, w->w_pri);# endif DEBUG /* ** Ignore jobs that are too expensive for the moment. */ if (shouldqueue(w->w_pri)) { if (Verbose) printf("\nSkipping %s\n", w->w_name + 2); return; } /* ** In order to use the cache, we delay forking here. ** ** Lock the control file to avoid duplicate deliveries. ** Then run the file as though we had just read it. ** We save an idea of the temporary name so we ** can recover on interrupt. */ /* set basic modes, etc. */ (void) alarm(0); closexscript(CurEnv); CurEnv = newenvelope(CurEnv); CurEnv->e_flags = BlankEnvelope.e_flags; QueueRun = TRUE; ErrorMode = EM_MAIL; CurEnv->e_id = &w->w_name[2]; setproctitle(CurEnv->e_id, 0); /* Set process name for ps */# ifdef LOG if (LogLevel > 11) syslog(LOG_DEBUG, "%s: dowork, pid=%d", CurEnv->e_id, getpid());# endif LOG /* don't use the headers from sendmail.cf... */ CurEnv->e_header = NULL; /* lock the control file during processing */ if (link(w->w_name, queuename(CurEnv, 'l')) < 0) { /* being processed by another queuer */# ifdef LOG if (LogLevel > 4) syslog(LOG_DEBUG, "%s: locked", CurEnv->e_id);# endif LOG return; } /* do basic system initialization */ initsys(); /* read the queue control file */ if (readqf(CurEnv, TRUE)) { unlockqueue(CurEnv); return; } CurEnv->e_flags |= EF_INQUEUE; eatheader(CurEnv); /* do the delivery */ if (!bitset(EF_FATALERRS, CurEnv->e_flags)) sendall(CurEnv, SM_DELIVER); dropenvelope(CurEnv);}/*** READQF -- read queue file and set up environment.**** Parameters:** e -- the envelope of the job to run.** full -- if set, read in all information. Otherwise just** read in info needed for a queue print.**** Returns:** Non-zero if we were unable to read the qf file** (so we do not remove it!)**** Side Effects:** cf is read and created as the current job, as though** we had been invoked by argument.*/staticreadqf(e, full) register ENVELOPE *e; bool full;{ char *qf; register FILE *qfp; char buf[MAXFIELD]; extern char *fgetfolded(); extern long atol(); int gotctluser = 0; /* ** Read and process the file. */ qf = queuename(e, 'q'); qfp = fopen(qf, "r"); if (qfp == NULL) { syserr("readqf: no control file %s", qf); return(-1); } FileName = qf; LineNumber = 0; if (Verbose && full) printf("\nRunning %s\n", e->e_id); while (fgetfolded(buf, sizeof buf, qfp) != NULL) {# ifdef DEBUG if (tTd(40, 4)) printf("+++++ %s\n", buf);# endif DEBUG switch (buf[0]) { case 'C': /* specify controlling user */ setctluser(&buf[1]); gotctluser = 1; break; case 'R': /* specify recipient */ sendtolist(&buf[1], (ADDRESS *) NULL, &e->e_sendqueue); break; case 'E': /* specify error recipient */ sendtolist(&buf[1], (ADDRESS *) NULL, &e->e_errorqueue); break; case 'H': /* header */ if (full) (void) chompheader(&buf[1], FALSE); break; case 'M': /* message */ e->e_message = newstr(&buf[1]); break; case 'S': /* sender */ setsender(newstr(&buf[1])); break; case 'D': /* data file name */ if (!full) break; e->e_df = newstr(&buf[1]); e->e_dfp = fopen(e->e_df, "r"); if (e->e_dfp == NULL) syserr("readqf: cannot open %s", e->e_df); break; case 'T': /* init time */ e->e_ctime = atol(&buf[1]); break; case 'P': /* message priority */ e->e_msgpriority = atol(&buf[1]) + WkTimeFact; break; case '\0': /* blank line; ignore */ break; default: syserr("readqf(%s:%d): bad line \"%s\"", e->e_id, LineNumber, buf); break; } /* ** The `C' queue file command operates on the next line, ** so we use "gotctluser" to maintain state as follows: ** 0 - no controlling user, ** 1 - controlling user has been set but not used, ** 2 - controlling user must be used on next iteration. */ if (gotctluser == 1) gotctluser++; else if (gotctluser == 2) { clrctluser(); gotctluser = 0; } } /* clear controlling user in case we break out prematurely */ clrctluser(); (void) fclose(qfp); FileName = NULL; /* ** If we haven't read any lines, this queue file is empty. ** Arrange to remove it without referencing any null pointers. */ if (LineNumber == 0) { errno = 0; e->e_flags |= EF_CLRQUEUE | EF_FATALERRS | EF_RESPONSE; } return(0);}/*** PRINTQUEUE -- print out a representation of the mail queue**** Parameters:** none.**** Returns:** none.**** Side Effects:** Prints a listing of the mail queue on the standard output.*/printqueue(){ register WORK *w; FILE *f; int nrequests; char buf[MAXLINE]; char cbuf[MAXLINE]; /* ** Read and order the queue. */ nrequests = orderq(TRUE); /* ** Print the work list that we have read. */ /* first see if there is anything */ if (nrequests <= 0) { printf("Mail queue is empty\n"); return; } printf("\t\tMail Queue (%d request%s", nrequests, nrequests == 1 ? "" : "s"); if (nrequests > QUEUESIZE) printf(", only %d printed", QUEUESIZE); if (Verbose) printf(")\n--QID-- --Size-- -Priority- ---Q-Time--- -----------Sender/Recipient-----------\n"); else printf(")\n--QID-- -Size- ----Q-Time----- ------------Sender/Recipient------------\n"); for (w = WorkQ; w != NULL; w = w->w_next) { struct stat st; auto time_t submittime = 0; long dfsize = -1; char lf[20]; char message[MAXLINE]; extern bool shouldqueue(); f = fopen(w->w_name, "r"); printf("%7s", w->w_name + 2); (void) strcpy(lf, w->w_name); lf[0] = 'l'; if (stat(lf, &st) >= 0) printf("*"); else printf(" "); if (shouldqueue(w->w_pri)) printf("X"); else printf(" "); errno = 0; if (f == NULL) { printf(" (finished)\n"); errno = 0; continue; } message[0] = '\0'; cbuf[0] = '\0'; while (fgets(buf, sizeof buf, f) != NULL) { fixcrlf(buf, TRUE); switch (buf[0]) { case 'M': /* error message */ (void) strcpy(message, &buf[1]); break; case 'S': /* sender name */ if (Verbose) printf("%5ld %10ld %.12s %.38s", dfsize, w->w_pri, ctime(&submittime) + 4, &buf[1]); else printf("%5ld %.16s %.45s", dfsize, ctime(&submittime), &buf[1]); if (message[0] != '\0') printf("\n%57s", message); break; case 'C': /* controlling user */ if (strlen(buf) < MAXLINE-3) /* sanity */ (void) strcat(buf, ") "); cbuf[0] = cbuf[1] = '('; (void) strncpy(&cbuf[2], &buf[1], MAXLINE-1); cbuf[MAXLINE-1] = '\0'; break; case 'R': /* recipient name */ if (cbuf[0] != '\0') { /* prepend controlling user to `buf' */ (void) strncat(cbuf, &buf[1], MAXLINE-strlen(cbuf)); cbuf[MAXLINE-1] = '\0'; (void) strcpy(buf, cbuf); cbuf[0] = '\0'; } if (Verbose) printf("\n\t\t\t\t\t %.38s", &buf[1]); else printf("\n\t\t\t\t %.45s", &buf[1]); break; case 'T': /* creation time */ submittime = atol(&buf[1]); break; case 'D': /* data file name */ if (stat(&buf[1], &st) >= 0) dfsize = st.st_size; break; } } if (submittime == (time_t) 0) printf(" (no control file)"); printf("\n"); (void) fclose(f); }}# endif QUEUE/*** QUEUENAME -- build a file name in the queue directory for this envelope.**** Assigns an id code if one does not already exist.** This code is very careful to avoid trashing existing files** under any circumstances.** We first create an nf file that is only used when** assigning an id. This file is always empty, so that** we can never accidently truncate an lf file.**** Parameters:** e -- envelope to build it in/from.** type -- the file type, used as the first character** of the file name.**** Returns:** a pointer to the new file name (in a static buffer).**** Side Effects:** Will create the lf and qf files if no id code is** already assigned. This will cause the envelope** to be modified.*/char *queuename(e, type) register ENVELOPE *e; char type;{ static char buf[MAXNAME]; static int pid = -1; char c1 = 'A'; char c2 = 'A'; if (e->e_id == NULL) { char qf[20]; char nf[20]; char lf[20]; /* find a unique id */ if (pid != getpid()) { /* new process -- start back at "AA" */ pid = getpid(); c1 = 'A'; c2 = 'A' - 1; } (void) sprintf(qf, "qfAA%05d", pid); (void) strcpy(lf, qf); lf[0] = 'l'; (void) strcpy(nf, qf); nf[0] = 'n'; while (c1 < '~' || c2 < 'Z') { int i; if (c2 >= 'Z') { c1++; c2 = 'A' - 1; } lf[2] = nf[2] = qf[2] = c1; lf[3] = nf[3] = qf[3] = ++c2;# ifdef DEBUG if (tTd(7, 20)) printf("queuename: trying \"%s\"\n", nf);# endif DEBUG# ifdef QUEUE if (access(lf, 0) >= 0 || access(qf, 0) >= 0) continue; errno = 0; i = creat(nf, FileMode); if (i < 0) { (void) unlink(nf); /* kernel bug */ continue; } (void) close(i); i = link(nf, lf); (void) unlink(nf); if (i < 0) continue; if (link(lf, qf) >= 0) break; (void) unlink(lf);# else QUEUE if (close(creat(qf, FileMode)) >= 0) break;# endif QUEUE } /* * The next test used to check for c1 >= '~', but there's * no reason to go thru 26**2 permutations; 52 should do. */ if (c1 >= 'B' && c2 >= 'Z') { if (type != '\0') { syserr("queuename: Cannot create \"%s\" in \"%s\"", qf, QueueDir); } exit(EX_OSERR); } e->e_id = newstr(&qf[2]); define('i', e->e_id, e);# ifdef DEBUG if (tTd(7, 1)) printf("queuename: assigned id %s, env=%x\n", e->e_id, e);# ifdef LOG if (LogLevel > 16) syslog(LOG_DEBUG, "%s: assigned id", e->e_id);# endif LOG# endif DEBUG } if (type == '\0') return (NULL); (void) sprintf(buf, "%cf%s", type, e->e_id);# ifdef DEBUG if (tTd(7, 2)) printf("queuename: %s\n", buf);# endif DEBUG return (buf);}/*** UNLOCKQUEUE -- unlock the queue entry for a specified envelope**** Parameters:** e -- the envelope to unlock.**** Returns:** none**** Side Effects:** unlocks the queue for `e'.*/unlockqueue(e) ENVELOPE *e;{ if (e->e_id == NULL) return; /* remove the transcript */#ifdef DEBUG# ifdef LOG if (LogLevel > 19) syslog(LOG_DEBUG, "%s: unlock", e->e_id);# endif LOG if (!tTd(51, 4))#endif DEBUG xunlink(queuename(e, 'x'));# ifdef QUEUE /* last but not least, remove the lock */ xunlink(queuename(e, 'l'));# endif QUEUE}/*** GETCTLUSER -- return controlling user if mailing to prog or file**** Check for a "|" or "/" at the beginning of the address. If** found, return a controlling username.**** Parameters:** a - the address to check out**** Returns:** Either NULL, if we werent mailing to a program or file,** or a controlling user name (possibly in getpwuid's** static buffer).**** Side Effects:** none.*/char *getctluser(a) ADDRESS *a;{ extern ADDRESS *getctladdr(); struct passwd *pw; char *retstr; /* ** Get unquoted user for file, program or user.name check. ** N.B. remove this code block to always emit controlling ** addresses (at the expense of backward compatibility). */ { char buf[MAXNAME]; (void) strncpy(buf, a->q_paddr, MAXNAME); buf[MAXNAME-1] = '\0'; stripquotes(buf, TRUE); if (buf[0] != '|' && buf[0] != '/') return((char *)NULL); } a = getctladdr(a); /* find controlling address */ if (a != NULL && a->q_uid != 0 && (pw = getpwuid(a->q_uid)) != NULL) retstr = pw->pw_name; else /* use default user */ retstr = DefUser; if (tTd(40, 5)) printf("Set controlling user for `%s' to `%s'\n", (a == NULL)? "<null>": a->q_paddr, retstr); return(retstr);}/*** SETCTLUSER - sets `CtlUser' to controlling user** CLRCTLUSER - clears controlling user (no params, nothing returned)**** These routines manipulate `CtlUser'.**** Parameters:** str - controlling user as passed to setctluser()**** Returns:** None.**** Side Effects:** `CtlUser' is changed.*/static char CtlUser[MAXNAME];setctluser(str)register char *str;{ (void) strncpy(CtlUser, str, MAXNAME); CtlUser[MAXNAME-1] = '\0';}clrctluser(){ CtlUser[0] = '\0';}/*** SETCTLADDR -- create a controlling address**** If global variable `CtlUser' is set and we are given a valid** address, make that address a controlling address; change the** `q_uid', `q_gid', and `q_ruser' fields and set QGOODUID.**** Parameters:** a - address for which control uid/gid info may apply**** Returns:** None. **** Side Effects:** Fills in uid/gid fields in address and sets QGOODUID** flag if appropriate.*/setctladdr(a) ADDRESS *a;{ struct passwd *pw; /* ** If there is no current controlling user, or we were passed a ** NULL addr ptr or we already have a controlling user, return. */ if (CtlUser[0] == '\0' || a == NULL || a->q_ruser) return; /* ** Set up addr fields for controlling user. If `CtlUser' is no ** longer valid, use the default user/group. */ if ((pw = getpwnam(CtlUser)) != NULL) { if (a->q_home) free(a->q_home); a->q_home = newstr(pw->pw_dir); a->q_uid = pw->pw_uid; a->q_gid = pw->pw_gid; a->q_ruser = newstr(CtlUser); } else { a->q_uid = DefUid; a->q_gid = DefGid; a->q_ruser = newstr(DefUser); } a->q_flags |= QGOODUID; /* flag as a "ctladdr" */ if (tTd(40, 5)) printf("Restored controlling user for `%s' to `%s'\n", a->q_paddr, a->q_ruser);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -