]> Pileus Git - ~andy/fetchmail/blob - driver.c
Tony Nugent's fixes.
[~andy/fetchmail] / driver.c
1 /*
2  * driver.c -- generic driver for mail fetch method protocols
3  *
4  * Copyright 1996 by Eric S. Raymond
5  * All rights reserved.
6  * For license terms, see the file COPYING in this directory.
7  */
8
9 #include  <config.h>
10 #include  <stdio.h>
11 #include  <setjmp.h>
12 #include  <errno.h>
13 #include  <ctype.h>
14 #include  <string.h>
15 #if defined(STDC_HEADERS)
16 #include  <stdlib.h>
17 #endif
18 #if defined(HAVE_UNISTD_H)
19 #include <unistd.h>
20 #endif
21 #if defined(HAVE_STDARG_H)
22 #include  <stdarg.h>
23 #else
24 #include  <varargs.h>
25 #endif
26 #if defined(HAVE_ALLOCA_H)
27 #include <alloca.h>
28 #endif
29 #include  <sys/time.h>
30 #include  <signal.h>
31
32 #ifdef HAVE_GETHOSTBYNAME
33 #include <netdb.h>
34 #include "mx.h"
35 #endif /* HAVE_GETHOSTBYNAME */
36
37 #ifdef KERBEROS_V4
38 #include <krb.h>
39 #include <des.h>
40 #include <netinet/in.h>
41 #include <netdb.h>
42 #endif /* KERBEROS_V4 */
43 #include  "socket.h"
44 #include  "fetchmail.h"
45 #include  "socket.h"
46 #include  "smtp.h"
47
48 /* BSD portability hack...I know, this is an ugly place to put it */
49 #if !defined(SIGCHLD) && defined(SIGCLD)
50 #define SIGCHLD SIGCLD
51 #endif
52
53 #define SMTP_PORT       25      /* standard SMTP service port */
54
55 extern char *strstr();  /* needed on sysV68 R3V7.1. */
56
57 int batchlimit;         /* how often to tear down the delivery connection */
58 int fetchlimit;         /* how often to tear down the server connection */
59 int batchcount;         /* count of messages sent in current batch */
60 int peek_capable;       /* can we peek for better error recovery? */
61
62 static const struct method *protocol;
63 static jmp_buf  restart;
64
65 char tag[TAGLEN];
66 static int tagnum;
67 #define GENSYM  (sprintf(tag, "a%04d", ++tagnum), tag)
68
69 static char *shroud;    /* string to shroud in debug output, if  non-NULL */
70 static int mytimeout;   /* value of nonreponse timeout */
71
72 static void vtalarm(int timeleft)
73 /* reset the nonresponse-timeout */
74 {
75     struct itimerval ntimeout;
76
77     ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_usec = 0;
78     ntimeout.it_value.tv_sec  = timeleft;
79     ntimeout.it_value.tv_usec = 0;
80     setitimer(ITIMER_VIRTUAL, &ntimeout, (struct itimerval *)NULL);
81 }
82
83 static void vtalarm_handler (int signal)
84 /* handle server-timeout SIGVTALARM signal */
85 {
86     longjmp(restart, 1);
87 }
88
89 #ifdef HAVE_RES_SEARCH
90 #define MX_RETRIES      3
91
92 static int is_host_alias(const char *name, struct query *ctl)
93 /* determine whether name is a DNS alias of the hostname */
94 {
95     struct hostent      *he;
96     struct mxentry      *mxp, *mxrecords;
97
98     /*
99      * The first two checks are optimizations that will catch a good
100      * many cases.  (1) check against the hostname the user
101      * specified.  Odds are good this will either be the mailserver's
102      * FQDN or a suffix of it with the mailserver's domain's default
103      * host name omitted.  Then check the rest of the `also known as'
104      * cache accumulated by previous DNS checks.  This cache is primed
105      * by the aka list option.
106      *
107      * (2) check against the mailserver's FQDN, in case
108      * it's not the same as the declared hostname.
109      *
110      * Either of these on a mail address is definitive.  Only if the
111      * name doesn't match either is it time to call the bind library.
112      * If this happens odds are good we're looking at an MX name.
113      */
114     if (str_in_list(&ctl->server.lead_server->names, name))
115         return(TRUE);
116     else if (strcmp(name, ctl->server.canonical_name) == 0)
117         return(TRUE);
118     else if (!ctl->server.dns)
119         return(FALSE);
120
121     /*
122      * We know DNS service was up at the beginning of this poll cycle.
123      * If it's down, our nameserver has crashed.  We don't want to try
124      * delivering the current message or anything else from this
125      * mailbox until it's back up.
126      */
127     else if ((he = gethostbyname(name)) != (struct hostent *)NULL)
128     {
129         if (strcmp(ctl->server.canonical_name, he->h_name) == 0)
130             goto match;
131         else
132             return(FALSE);
133     }
134     else
135         switch (h_errno)
136         {
137         case HOST_NOT_FOUND:    /* specified host is unknown */
138         case NO_ADDRESS:        /* valid, but does not have an IP address */
139             break;
140
141         case NO_RECOVERY:       /* non-recoverable name server error */
142         case TRY_AGAIN:         /* temporary error on authoritative server */
143         default:
144             if (outlevel != O_SILENT)
145                 putchar('\n');  /* terminate the progress message */
146             error(0, 0,
147                 "nameserver failure while looking for `%s' during poll of %s.",
148                 name, ctl->server.names->id);
149             ctl->errcount++;
150             longjmp(restart, 2);        /* try again next poll cycle */
151             break;
152         }
153
154     /*
155      * We're only here if DNS was OK but the gethostbyname() failed
156      * with a HOST_NOT_FOUND or NO_ADDRESS error.
157      * Search for a name match on MX records pointing to the server.
158      */
159     h_errno = 0;
160     if ((mxrecords = getmxrecords(name)) == (struct mxentry *)NULL)
161     {
162         switch (h_errno)
163         {
164         case HOST_NOT_FOUND:    /* specified host is unknown */
165         case NO_ADDRESS:        /* valid, but does not have an IP address */
166             return(FALSE);
167             break;
168
169         case NO_RECOVERY:       /* non-recoverable name server error */
170         case TRY_AGAIN:         /* temporary error on authoritative server */
171         default:
172             error(0, 0,
173                 "nameserver failure while looking for `%s' during poll of %s.",
174                 name, ctl->server.names->id);
175             ctl->errcount++;
176             longjmp(restart, 2);        /* try again next poll cycle */
177             break;
178         }
179     }
180     else
181     {
182         for (mxp = mxrecords; mxp->name; mxp++)
183             if (strcmp(ctl->server.canonical_name, mxp->name) == 0)
184                 goto match;
185         return(FALSE);
186     match:;
187     }
188
189     /* add this name to relevant server's `also known as' list */
190     save_str(&ctl->server.lead_server->names, -1, name);
191     return(TRUE);
192 }
193
194 static void map_name(name, ctl, xmit_names)
195 /* add given name to xmit_names if it matches declared localnames */
196 const char *name;               /* name to map */
197 struct query *ctl;              /* list of permissible aliases */
198 struct idlist **xmit_names;     /* list of recipient names parsed out */
199 {
200     const char  *lname;
201
202     lname = idpair_find(&ctl->localnames, name);
203     if (!lname && ctl->wildcard)
204         lname = name;
205
206     if (lname != (char *)NULL)
207     {
208         if (outlevel == O_VERBOSE)
209             error(0, 0, "mapped %s to local %s", name, lname);
210         save_str(xmit_names, -1, lname);
211     }
212 }
213
214 void find_server_names(hdr, ctl, xmit_names)
215 /* parse names out of a RFC822 header into an ID list */
216 const char *hdr;                /* RFC822 header in question */
217 struct query *ctl;              /* list of permissible aliases */
218 struct idlist **xmit_names;     /* list of recipient names parsed out */
219 {
220     if (hdr == (char *)NULL)
221         return;
222     else
223     {
224         char    *cp, *lname;
225
226         if ((cp = nxtaddr(hdr)) != (char *)NULL)
227             do {
228                 char    *atsign;
229
230                 if ((atsign = strchr(cp, '@')))
231                 {
232                     struct idlist       *idp;
233
234                     /*
235                      * Does a trailing segment of the hostname match something
236                      * on the localdomains list?  If so, save the whole name
237                      * and keep going.
238                      */
239                     for (idp = ctl->server.localdomains; idp; idp = idp->next)
240                     {
241                         char    *rhs;
242
243                         rhs = atsign + 1 + (strlen(atsign) - strlen(idp->id));
244                         if ((rhs[-1] == '.' || rhs[-1] == '@')
245                                         && strcmp(rhs, idp->id) == 0)
246                         {
247                             if (outlevel == O_VERBOSE)
248                                 error(0, 0, "passed through %s matching %s", 
249                                       cp, idp->id);
250                             save_str(xmit_names, -1, cp);
251                             continue;
252                         }
253                     }
254
255                     /*
256                      * Check to see if the right-hand part is an alias
257                      * or MX equivalent of the mailserver.  If it's
258                      * not, skip this name.  If it is, we'll keep
259                      * going and try to find a mapping to a client name.
260                      */
261                     if (!is_host_alias(atsign+1, ctl))
262                         continue;
263                     atsign[0] = '\0';
264                 }
265
266                 map_name(cp, ctl, xmit_names);
267             } while
268                 ((cp = nxtaddr((char *)NULL)) != (char *)NULL);
269     }
270 }
271
272 char *parse_received(struct query *ctl, char *bufp)
273 /* try to extract */
274 {
275     char *ok;
276     static char rbuf[HOSTLEN + USERNAMELEN + 4]; 
277
278     /*
279      * Try to extract the real envelope addressee.  We look here
280      * specifically for the mailserver's Received line.
281      * Note: this will only work for sendmail, or an MTA that
282      * shares sendmail's convention for embedding the envelope
283      * address in the Received line.  Sendmail itself only
284      * does this when the mail has a single recipient.
285      */
286     if ((ok = strstr(bufp, "by ")) == (char *)NULL)
287         ok = (char *)NULL;
288     else
289     {
290         char    *sp, *tp;
291
292         /* extract space-delimited token after "by " */
293         for (sp = ok + 3; isspace(*sp); sp++)
294             continue;
295         tp = rbuf;
296         for (; !isspace(*sp); sp++)
297             *tp++ = *sp;
298         *tp = '\0';
299
300         /*
301          * If it's a DNS name of the mail server, look for the
302          * recipient name after a following "for".  Otherwise
303          * punt.
304          */
305         if (is_host_alias(rbuf, ctl))
306             ok = strstr(sp, "for ");
307         else
308             ok = (char *)NULL;
309     }
310
311     if (ok != 0)
312     {
313         char    *sp, *tp;
314
315         tp = rbuf;
316         sp = ok + 4;
317         if (*sp == '<')
318             sp++;
319         while (*sp && *sp != '>' && *sp != '@' && *sp != ';')
320             if (!isspace(*sp))
321                 *tp++ = *sp++;
322             else
323             {
324                 /* uh oh -- whitespace here can't be right! */
325                 ok = (char *)NULL;
326                 break;
327             }
328         *tp = '\0';
329     }
330
331     if (!ok)
332         return(NULL);
333     else
334     {
335         if (outlevel == O_VERBOSE)
336             error(0, 0, "found Received address `%s'", rbuf);
337         return(rbuf);
338     }
339 }
340 #endif /* HAVE_RES_SEARCH */
341
342 static FILE *smtp_open(struct query *ctl)
343 /* try to open a socket to the appropriate SMTP server for this query */ 
344 {
345     struct query *lead;
346
347     lead = ctl->lead_smtp; /* go to the SMTP leader for this query */
348
349     /* maybe it's time to close the socket in order to force delivery */
350     if (batchlimit && lead->smtp_sockfp && batchcount++ == batchlimit)
351     {
352         fclose(lead->smtp_sockfp);
353         lead->smtp_sockfp = (FILE *)NULL;
354         batchcount = 0;
355     }
356
357     /* 
358      * RFC 1123 requires that the domain name in HELO address is a
359      * "valid principal domain name" for the client host.  We
360      * violate this with malice aforethought in order to make the
361      * Received headers and logging look right.
362      *
363      * In fact this code relies on the RFC1123 requirement that the
364      * SMTP listener must accept messages even if verification of the
365      * HELO name fails (RFC1123 section 5.2.5, paragraph 2).
366      */
367
368     /* if no socket to this host is already set up, try to open ESMTP */
369     if (lead->smtp_sockfp == (FILE *)NULL)
370     {
371         if ((lead->smtp_sockfp = SockOpen(lead->smtphost, SMTP_PORT)) == (FILE *)NULL)
372             return((FILE *)NULL);
373         else if (SMTP_ok(lead->smtp_sockfp) != SM_OK
374                  || SMTP_ehlo(lead->smtp_sockfp, 
375                               ctl->server.names->id,
376                               &lead->server.esmtp_options) != SM_OK)
377         {
378             /*
379              * RFC 1869 warns that some listeners hang up on a failed EHLO,
380              * so it's safest not to assume the socket will still be good.
381              */
382             fclose(lead->smtp_sockfp);
383             lead->smtp_sockfp = (FILE *)NULL;
384         }
385     }
386
387     /* if opening for ESMTP failed, try SMTP */
388     if (lead->smtp_sockfp == (FILE *)NULL)
389     {
390         if ((lead->smtp_sockfp = SockOpen(lead->smtphost, SMTP_PORT)) == (FILE *)NULL)
391             return((FILE *)NULL);
392         else if (SMTP_ok(lead->smtp_sockfp) != SM_OK
393                  || SMTP_helo(lead->smtp_sockfp, ctl->server.names->id) != SM_OK)
394         {
395             fclose(lead->smtp_sockfp);
396             lead->smtp_sockfp = (FILE *)NULL;
397         }
398     }
399
400     return(lead->smtp_sockfp);
401 }
402
403 static int gen_readmsg(sockfp, len, delimited, ctl, realname)
404 /* read message content and ship to SMTP or MDA */
405 FILE *sockfp;           /* to which the server is connected */
406 long len;               /* length of message */
407 int delimited;          /* does the protocol use a message delimiter? */
408 struct query *ctl;      /* query control record */
409 char *realname;         /* real name of host */
410 {
411     char buf [MSGBUFSIZE+1]; 
412     int from_offs, to_offs, cc_offs, bcc_offs, ctt_offs, env_offs;
413     char *headers, *received_for;
414     int n, oldlen, ch, sizeticker, delete_ok;
415     FILE *sinkfp;
416     RETSIGTYPE (*sigchld)();
417 #ifdef HAVE_GETHOSTBYNAME
418     char rbuf[HOSTLEN + USERNAMELEN + 4]; 
419 #endif /* HAVE_GETHOSTBYNAME */
420     char                *cp;
421     struct idlist       *idp, *xmit_names;
422     int                 good_addresses, bad_addresses;
423 #ifdef HAVE_RES_SEARCH
424     int                 no_local_matches = FALSE;
425 #endif /* HAVE_RES_SEARCH */
426
427     sizeticker = 0;
428     delete_ok = TRUE;
429
430     /* read message headers */
431     headers = received_for = NULL;
432     from_offs = to_offs = cc_offs = bcc_offs = ctt_offs = env_offs = -1;
433     oldlen = 0;
434     for (;;)
435     {
436         char *line;
437
438         line = xmalloc(sizeof(buf));
439         line[0] = '\0';
440         do {
441             if (!SockGets(buf, sizeof(buf)-1, sockfp))
442                 return(PS_SOCKET);
443             vtalarm(ctl->server.timeout);
444             /* leave extra room for reply_hack to play with */
445             line = realloc(line, strlen(line) + strlen(buf) + HOSTLEN + 1);
446             strcat(line, buf);
447             if (line[0] == '\r' && line[1] == '\n')
448                 break;
449         } while
450             /* we may need to grab RFC822 continuations */
451             ((ch = SockPeek(sockfp)) == ' ' || ch == '\t');
452
453         /* write the message size dots */
454         if ((outlevel>O_SILENT && outlevel<O_VERBOSE) && (n=strlen(line)) > 0)
455         {
456             sizeticker += n;
457             while (sizeticker >= SIZETICKER)
458             {
459                 error_build(".");
460                 sizeticker -= SIZETICKER;
461             }
462         }
463         len -= n;
464
465         /* check for end of headers; don't save terminating line */
466         if (line[0] == '\r' && line[1] == '\n')
467         {
468             free(line);
469             break;
470         }
471      
472         if (ctl->rewrite)
473             reply_hack(line, realname);
474
475         if (!headers)
476         {
477             oldlen = strlen(line);
478             headers = xmalloc(oldlen + 1);
479             (void) strcpy(headers, line);
480             free(line);
481             line = headers;
482         }
483         else
484         {
485             int newlen;
486
487             newlen = oldlen + strlen(line);
488             headers = realloc(headers, newlen + 1);
489             if (headers == NULL)
490                 return(PS_IOERR);
491             strcpy(headers + oldlen, line);
492             free(line);
493             line = headers + oldlen;
494             oldlen = newlen;
495         }
496
497         if (from_offs == -1 && !strncasecmp("From:", line, 5))
498             from_offs = (line - headers);
499         else if (from_offs == -1 && !strncasecmp("Resent-From:", line, 12))
500             from_offs = (line - headers);
501         else if (from_offs == -1 && !strncasecmp("Apparently-From:", line, 16))
502             from_offs = (line - headers);
503
504         else if (!strncasecmp("To:", line, 3))
505             to_offs = (line - headers);
506
507         else if (env_offs == -1 && !strncasecmp(ctl->server.envelope,
508                                                 line,
509                                                 strlen(ctl->server.envelope)))
510             env_offs = (line - headers);
511
512         else if (!strncasecmp("Cc:", line, 3))
513             cc_offs = (line - headers);
514
515         else if (!strncasecmp("Bcc:", line, 4))
516             bcc_offs = (line - headers);
517
518         else if (!strncasecmp("Content-Transfer-Encoding:", line, 26))
519             ctt_offs = (line - headers);
520
521 #ifdef HAVE_RES_SEARCH
522         else if (MULTIDROP(ctl) && !received_for && !strncasecmp("Received:", line, 9))
523             received_for = parse_received(ctl, line);
524 #endif /* HAVE_RES_SEARCH */
525     }
526
527     /*
528      * Hack time.  If the first line of the message was blank, with no headers
529      * (this happens occasionally due to bad gatewaying software) cons up
530      * a set of fake headers.  
531      *
532      * If you modify the fake header template below, be sure you don't
533      * make either From or To address @-less, otherwise the reply_hack
534      * logic will do bad things.
535      */
536     if (headers == (char *)NULL)
537     {
538         sprintf(buf, 
539         "From: <FETCHMAIL-DAEMON@%s>\r\nTo: %s@localhost\r\nSubject: Headerless mail from %s's mailbox on %s\r\n",
540                 fetchmailhost, user, ctl->remotename, realname);
541         headers = xstrdup(buf);
542     }
543
544     /*
545      * We can now process message headers before reading the text.
546      * In fact we have to, as this will tell us where to forward to.
547      */
548
549     /* cons up a list of local recipients */
550     xmit_names = (struct idlist *)NULL;
551     bad_addresses = good_addresses = 0;
552 #ifdef HAVE_RES_SEARCH
553     /* is this a multidrop box? */
554     if (MULTIDROP(ctl))
555     {
556         if (env_offs > -1)          /* We have the actual envelope addressee */
557             find_server_names(headers + env_offs, ctl, &xmit_names);
558         else if (received_for)
559             /*
560              * We have the Received for addressee.  
561              * It has to be a mailserver address, or we
562              * wouldn't have got here.
563              */
564             map_name(received_for, ctl, &xmit_names);
565         else
566         {
567             /*
568              * We haven't extracted the envelope address.
569              * So check all the header addresses.
570              */
571             if (to_offs > -1)
572                 find_server_names(headers + to_offs,  ctl, &xmit_names);
573             if (cc_offs > -1)
574                 find_server_names(headers + cc_offs,  ctl, &xmit_names);
575             if (bcc_offs > -1)
576                 find_server_names(headers + bcc_offs, ctl, &xmit_names);
577         }
578         if (!xmit_names)
579         {
580             no_local_matches = TRUE;
581             save_str(&xmit_names, -1, user);
582             if (outlevel == O_VERBOSE)
583                 error(0, 0, 
584                       "no local matches, forwarding to %s",
585                       user);
586         }
587     }
588     else        /* it's a single-drop box, use first localname */
589 #endif /* HAVE_RES_SEARCH */
590         save_str(&xmit_names, -1, ctl->localnames->id);
591
592     /* time to address the message */
593     if (ctl->mda)       /* we have a declared MDA */
594     {
595         int     length = 0;
596         char    *names, *cmd;
597
598         /*
599          * We go through this in order to be able to handle very
600          * long lists of users and (re)implement %s.
601          */
602         for (idp = xmit_names; idp; idp = idp->next)
603             length += (strlen(idp->id) + 1);
604         names = (char *)alloca(length);
605         names[0] = '\0';
606         for (idp = xmit_names; idp; idp = idp->next)
607         {
608             strcat(names, idp->id);
609             strcat(names, " ");
610         }
611         cmd = (char *)alloca(strlen(ctl->mda) + length);
612         sprintf(cmd, ctl->mda, names);
613         if (outlevel == O_VERBOSE)
614             error(0, 0, "about to deliver with: %s", cmd);
615
616 #ifdef HAVE_SETEUID
617         /*
618          * Arrange to run with user's permissions if we're root.
619          * This will initialize the ownership of any files the
620          * MDA creates properly.  (The seteuid call is available
621          * under all BSDs and Linux)
622          */
623         seteuid(ctl->uid);
624 #endif /* HAVE_SETEUID */
625
626         sinkfp = popen(cmd, "w");
627
628 #ifdef HAVE_SETEUID
629         /* this will fail quietly if we didn't start as root */
630         seteuid(0);
631 #endif /* HAVE_SETEUID */
632
633         if (!sinkfp)
634         {
635             error(0, 0, "MDA open failed");
636             return(PS_IOERR);
637         }
638
639         sigchld = signal(SIGCHLD, SIG_DFL);
640     }
641     else
642     {
643         char    *ap, *ctt, options[MSGBUFSIZE];
644         int     smtperr;
645
646         /* build a connection to the SMTP listener */
647         if (!ctl->mda && ((sinkfp = smtp_open(ctl)) == NULL))
648         {
649             free_str_list(&xmit_names);
650             error(0, 0, "SMTP connect failed");
651             return(PS_SMTP);
652         }
653
654         /*
655          * Compute ESMTP options.  It's a kluge to use nxtaddr()
656          * here because the contents of the Content-Transfer-Encoding
657          * headers isn't semantically an address.  But it has the
658          * desired tokenizing effect.
659          */
660         options[0] = '\0';
661         if ((ctl->server.esmtp_options & ESMTP_8BITMIME)
662             && (ctt_offs >= 0)
663             && (ctt = nxtaddr(headers + ctt_offs)))
664             if (!strcasecmp(ctt,"7BIT"))
665                 sprintf(options, " BODY=7BIT", ctt);
666             else if (!strcasecmp(ctt,"8BIT"))
667                 sprintf(options, " BODY=8BITMIME", ctt);
668         if ((ctl->server.esmtp_options & ESMTP_SIZE) && !delimited)
669             sprintf(options + strlen(options), " SIZE=%d", len);
670
671         /*
672          * Try to get the SMTP listener to take the header
673          * From address as MAIL FROM (this makes the logging
674          * nicer).  If it won't, fall back on the calling-user
675          * ID.  This won't affect replies, which use the header
676          * From address anyway.
677          *
678          * RFC 1123 requires that the domain name part of the
679          * MAIL FROM address be "canonicalized", that is a
680          * FQDN or MX but not a CNAME.  We'll assume the From
681          * header is already in this form here (it certainly
682          * is if rewrite is on).  RFC 1123 is silent on whether
683          * a nonexistent hostname part is considered canonical.
684          *
685          * This is a potential problem if the MTAs further
686          * upstream didn't pass canonicalized From lines, *and*
687          * the local SMTP listener insists on them.
688          */
689         if (from_offs == -1 || !(ap = nxtaddr(headers + from_offs)))
690             ap = user;
691         if (SMTP_from(sinkfp, ap, options) != SM_OK)
692         {
693             int smtperr = atoi(smtp_response);
694
695             if (smtperr >= 400)
696                 error(0, 0, "SMTP error: %s", smtp_response);
697
698             /*
699              * There'a one problem with this flow of control;
700              * there's no way to avoid reading the whole message
701              * off the server, even if the MAIL FROM response 
702              * tells us that it's just to be discarded.  We could
703              * fix this under IMAP by reading headers first, then
704              * trying to issue the MAIL FROM, and *then* reading
705              * the body...but POP3 can't do this.
706              */
707
708             switch (smtperr)
709             {
710             case 571: /* unsolicited email refused */
711                 /*
712                  * SMTP listener explicitly refuses to deliver
713                  * mail coming from this address, probably due
714                  * to an anti-spam domain exclusion.  Respect
715                  * this.  Don't try to ship the message, and
716                  * don't prevent it from being deleted.
717                  */
718                 sinkfp = (FILE *)NULL;
719                 goto skiptext;
720
721             case 452: /* insufficient system storage */
722                 /*
723                  * Temporary out-of-queue-space condition on the
724                  * ESMTP server.  Don't try to ship the message, 
725                  * and suppress deletion so it can be retried on
726                  * a future retrieval cycle.
727                  */
728                 delete_ok = FALSE;
729                 sinkfp = (FILE *)NULL;
730                 SMTP_rset(sockfp);      /* required by RFC1870 */
731                 goto skiptext;
732
733             case 552: /* message exceeds fixed maximum message size */
734                 /*
735                  * Permanent no-go condition on the
736                  * ESMTP server.  Don't try to ship the message, 
737                  * and allow it to be deleted.
738                  */
739                 sinkfp = (FILE *)NULL;
740                 SMTP_rset(sockfp);      /* required by RFC1870 */
741                 goto skiptext;
742
743             default:    /* retry with invoking user's address */
744                 if (SMTP_from(sinkfp, user, options) != SM_OK)
745                 {
746                     error(0,0,"SMTP error: %s", smtp_response);
747                     return(PS_SMTP);    /* should never happen */
748                 }
749             }
750         }
751
752         /*
753          * Now list the recipient addressees
754          *
755          * RFC 1123 requires that the domain name part of the
756          * RCPT TO address be "canonicalized", that is a FQDN
757          * or MX but not a CNAME.  RFC1123 doesn't say whether
758          * the FQDN part can be null (as it frequently will be
759          * here), but it's hard to see how this could cause a
760          * problem.
761          */
762         for (idp = xmit_names; idp; idp = idp->next)
763             if (SMTP_rcpt(sinkfp, idp->id) == SM_OK)
764                 good_addresses++;
765             else
766             {
767                 bad_addresses++;
768                 idp->val.num = 0;
769                 error(0, 0, 
770                       "SMTP listener doesn't like recipient address `%s'", idp->id);
771             }
772         if (!good_addresses && SMTP_rcpt(sinkfp, user) != SM_OK)
773         {
774             error(0, 0, 
775                   "can't even send to calling user!");
776             return(PS_SMTP);
777         }
778
779         /* tell it we're ready to send data */
780         SMTP_data(sinkfp);
781
782     skiptext:;
783     }
784
785     /* we may need to strip carriage returns */
786     if (ctl->stripcr)
787     {
788         char    *sp, *tp;
789
790         for (sp = tp = headers; *sp; sp++)
791             if (*sp != '\r')
792                 *tp++ =  *sp;
793         *tp = '\0';
794
795     }
796
797     /* write all the headers */
798     if (sinkfp)
799     {
800         if (ctl->mda)
801             n = fwrite(headers, 1, strlen(headers), sinkfp);
802         else
803             n = SockWrite(headers, 1, strlen(headers), sinkfp);
804
805         if (n < 0)
806         {
807             free(headers);
808             headers = NULL;
809             error(0, errno, "writing RFC822 headers");
810             if (ctl->mda)
811             {
812                 pclose(sinkfp);
813                 signal(SIGCHLD, sigchld);
814             }
815             return(PS_IOERR);
816         }
817         else if (outlevel == O_VERBOSE)
818             fputs("#", stderr);
819     }
820     free(headers);
821     headers = NULL;
822
823     /* write error notifications */
824 #ifdef HAVE_RES_SEARCH
825     if (no_local_matches || bad_addresses)
826 #else
827     if (bad_addresses)
828 #endif /* HAVE_RES_SEARCH */
829     {
830         int     errlen = 0;
831         char    errhd[USERNAMELEN + POPBUFSIZE], *errmsg;
832
833         errmsg = errhd;
834         (void) strcpy(errhd, "X-Fetchmail-Warning: ");
835 #ifdef HAVE_RES_SEARCH
836         if (no_local_matches)
837         {
838             strcat(errhd, "no recipient addresses matched declared local names");
839             if (bad_addresses)
840                 strcat(errhd, "; ");
841         }
842 #endif /* HAVE_RES_SEARCH */
843
844         if (bad_addresses)
845         {
846             strcat(errhd, "SMTP listener rejected local recipient addresses: ");
847             errlen = strlen(errhd);
848             for (idp = xmit_names; idp; idp = idp->next)
849                 if (!idp->val.num)
850                     errlen += strlen(idp->id) + 2;
851
852             errmsg = alloca(errlen+3);
853             (void) strcpy(errmsg, errhd);
854             for (idp = xmit_names; idp; idp = idp->next)
855                 if (!idp->val.num)
856                 {
857                     strcat(errmsg, idp->id);
858                     if (idp->next)
859                         strcat(errmsg, ", ");
860                 }
861         }
862
863         strcat(errmsg, "\n");
864
865         /* we may need to strip carriage returns */
866         if (ctl->stripcr)
867         {
868             char        *sp, *tp;
869
870             for (sp = tp = errmsg; *sp; sp++)
871                 if (*sp != '\r')
872                     *tp++ =  *sp;
873             *tp = '\0';
874         }
875
876         /* ship out the error line */
877         if (sinkfp)
878         {
879             if (ctl->mda)
880                 fwrite(errmsg, 1, strlen(errmsg), sinkfp);
881             else
882                 SockWrite(errmsg, 1, strlen(errmsg), sinkfp);
883         }
884     }
885
886     free_str_list(&xmit_names);
887
888     /* issue the delimiter line */
889     if (sinkfp)
890     {
891         if (ctl->mda)
892             fputc('\n', sinkfp);
893         else
894             SockWrite("\r\n", 1, 2, sinkfp);
895     }
896
897     /*
898      *  Body processing starts here
899      */
900
901     /* pass through the text lines */
902     while (delimited || len > 0)
903     {
904         if (!SockGets(buf, sizeof(buf)-1, sockfp))
905             return(PS_SOCKET);
906         vtalarm(ctl->server.timeout);
907
908         /* write the message size dots */
909         if ((n = strlen(buf)) > 0)
910         {
911             sizeticker += n;
912             while (sizeticker >= SIZETICKER)
913             {
914                 if (outlevel > O_SILENT)
915                     error_build(".");
916                 sizeticker -= SIZETICKER;
917             }
918         }
919         len -= n;
920
921         /* check for end of message */
922         if (delimited && *buf == '.')
923             if (buf[1] == '\r' && buf[2] == '\n')
924                 break;
925
926         /* ship out the text line */
927         if (sinkfp)
928         {
929             /* SMTP byte-stuffing */
930             if (*buf == '.')
931                 if (ctl->mda)
932                     fputs(".", sinkfp);
933                 else
934                     SockWrite(buf, 1, 1, sinkfp);
935
936             /* we may need to strip carriage returns */
937             if (ctl->stripcr)
938             {
939                 char    *sp, *tp;
940
941                 for (sp = tp = buf; *sp; sp++)
942                     if (*sp != '\r')
943                         *tp++ =  *sp;
944                 *tp = '\0';
945             }
946
947             /* ship the text line */
948             if (ctl->mda)
949                 n = fwrite(buf, 1, strlen(buf), sinkfp);
950             else if (sinkfp)
951                 n = SockWrite(buf, 1, strlen(buf), sinkfp);
952
953             if (n < 0)
954             {
955                 error(0, errno, "writing message text");
956                 if (ctl->mda)
957                 {
958                     pclose(sinkfp);
959                     signal(SIGCHLD, sigchld);
960                 }
961                 return(PS_IOERR);
962             }
963             else if (outlevel == O_VERBOSE)
964                 fputc('*', stderr);
965         }
966     }
967
968     /*
969      * End-of-message processing starts here
970      */
971
972     if (outlevel == O_VERBOSE)
973         fputc('\n', stderr);
974
975     if (ctl->mda)
976     {
977         int rc;
978
979         /* close the delivery pipe, we'll reopen before next message */
980         rc = pclose(sinkfp);
981         signal(SIGCHLD, sigchld);
982         if (rc)
983         {
984             error(0, 0, "MDA exited abnormally or returned nonzero status");
985             return(PS_IOERR);
986         }
987     }
988     else if (sinkfp)
989     {
990         /* write message terminator */
991         if (SMTP_eom(sinkfp) != SM_OK)
992         {
993             error(0, 0, "SMTP listener refused delivery");
994             return(PS_TRANSIENT);
995         }
996     }
997
998     return(delete_ok ? PS_SUCCESS : PS_TRANSIENT);
999 }
1000
1001 #ifdef KERBEROS_V4
1002 int
1003 kerberos_auth (socket, canonical) 
1004 /* authenticate to the server host using Kerberos V4 */
1005 int socket;             /* socket to server host */
1006 const char *canonical;  /* server name */
1007 {
1008     char * host_primary;
1009     KTEXT ticket;
1010     MSG_DAT msg_data;
1011     CREDENTIALS cred;
1012     Key_schedule schedule;
1013     int rem;
1014   
1015     ticket = ((KTEXT) (malloc (sizeof (KTEXT_ST))));
1016     rem = (krb_sendauth (0L, socket, ticket, "pop",
1017                          canonical,
1018                          ((char *) (krb_realmofhost (canonical))),
1019                          ((unsigned long) 0),
1020                          (&msg_data),
1021                          (&cred),
1022                          (schedule),
1023                          ((struct sockaddr_in *) 0),
1024                          ((struct sockaddr_in *) 0),
1025                          "KPOPV0.1"));
1026     free (ticket);
1027     if (rem != KSUCCESS)
1028     {
1029         error(0, 0, "kerberos error %s", (krb_get_err_text (rem)));
1030         return (PS_ERROR);
1031     }
1032     return (0);
1033 }
1034 #endif /* KERBEROS_V4 */
1035
1036 int do_protocol(ctl, proto)
1037 /* retrieve messages from server using given protocol method table */
1038 struct query *ctl;              /* parsed options with merged-in defaults */
1039 const struct method *proto;     /* protocol method table */
1040 {
1041     int ok, js, pst;
1042     char *msg, *sp, *cp, realname[HOSTLEN];
1043     void (*sigsave)();
1044
1045 #ifndef KERBEROS_V4
1046     if (ctl->server.authenticate == A_KERBEROS)
1047     {
1048         error(0, 0, "Kerberos support not linked.");
1049         return(PS_ERROR);
1050     }
1051 #endif /* KERBEROS_V4 */
1052
1053     /* lacking methods, there are some options that may fail */
1054     if (!proto->is_old)
1055     {
1056         /* check for unsupported options */
1057         if (ctl->flush) {
1058             error(0, 0,
1059                     "Option --flush is not supported with %s",
1060                     proto->name);
1061             return(PS_SYNTAX);
1062         }
1063         else if (ctl->fetchall) {
1064             error(0, 0,
1065                     "Option --all is not supported with %s",
1066                     proto->name);
1067             return(PS_SYNTAX);
1068         }
1069     }
1070     if (!proto->getsizes && ctl->limit)
1071     {
1072         error(0, 0,
1073                 "Option --limit is not supported with %s",
1074                 proto->name);
1075         return(PS_SYNTAX);
1076     }
1077
1078     protocol = proto;
1079     tagnum = 0;
1080     tag[0] = '\0';      /* nuke any tag hanging out from previous query */
1081     ok = 0;
1082     error_init(poll_interval == 0 && !logfile);
1083
1084     /* set up the server-nonresponse timeout */
1085     sigsave = signal(SIGVTALRM, vtalarm_handler);
1086     vtalarm(mytimeout = ctl->server.timeout);
1087
1088     if ((js = setjmp(restart)) == 1)
1089     {
1090         error(0, 0,
1091                 "timeout after %d seconds waiting for %s.",
1092                 ctl->server.timeout, ctl->server.names->id);
1093         ok = PS_ERROR;
1094     }
1095     else if (js == 2)
1096     {
1097         /* error message printed at point of longjmp */
1098         ok = PS_ERROR;
1099     }
1100     else
1101     {
1102         char buf [POPBUFSIZE+1];
1103         int *msgsizes, len, num, count, new, deletions = 0;
1104         FILE *sockfp; 
1105         /* execute pre-initialization command, if any */
1106         if (ctl->preconnect && (ok = system(ctl->preconnect)))
1107         {
1108             sprintf(buf, "pre-connection command failed with status %d", ok);
1109             error(0, 0, buf);
1110             ok = PS_SYNTAX;
1111             goto closeUp;
1112         }
1113
1114         /* open a socket to the mail server */
1115         if (!(sockfp = SockOpen(ctl->server.names->id,
1116                      ctl->server.port ? ctl->server.port : protocol->port)))
1117         {
1118 #ifndef EHOSTUNREACH
1119 #define EHOSTUNREACH (-1)
1120 #endif
1121             if (errno != EHOSTUNREACH)
1122                 error(0, errno, "connecting to host");
1123             ok = PS_SOCKET;
1124             goto closeUp;
1125         }
1126
1127 #ifdef KERBEROS_V4
1128         if (ctl->authenticate == A_KERBEROS)
1129         {
1130             ok = kerberos_auth(fileno(sockfp), ctl->server.canonical_name);
1131             if (ok != 0)
1132                 goto cleanUp;
1133             vtalarm(ctl->server.timeout);
1134         }
1135 #endif /* KERBEROS_V4 */
1136
1137         /* accept greeting message from mail server */
1138         ok = (protocol->parse_response)(sockfp, buf);
1139         if (ok != 0)
1140             goto cleanUp;
1141         vtalarm(ctl->server.timeout);
1142
1143         /*
1144          * Try to parse the host's actual name out of the greeting
1145          * message.  We do this so that the progress messages will
1146          * make sense even if the connection is indirected through
1147          * ssh. *Do* use this for hacking reply headers, but *don't*
1148          * use it for error logging, as the names in the log should
1149          * correlate directly back to rc file entries.
1150          *
1151          * This assumes that the first space-delimited token found
1152          * that contains at least two dots (with the characters on
1153          * each side of the dot alphanumeric to exclude version
1154          * numbers) is the hostname.  The hostname candidate may not
1155          * contain @ -- if it does it's probably a mailserver
1156          * maintainer's name.  If no such token is found, fall back on
1157          * the .fetchmailrc id.
1158          */
1159         pst = 0;
1160         for (cp = buf; *cp; cp++)
1161         {
1162             switch (pst)
1163             {
1164             case 0:             /* skip to end of current token */
1165                 if (*cp == ' ')
1166                     pst = 1;
1167                 break;
1168
1169             case 1:             /* look for blank-delimited token */
1170                 if (*cp != ' ')
1171                 {
1172                     sp = cp;
1173                     pst = 2;
1174                 }
1175                 break;
1176
1177             case 2:             /* look for first dot */
1178                 if (*cp == '@')
1179                     pst = 0;
1180                 else if (*cp == ' ')
1181                     pst = 1;
1182                 else if (*cp == '.' && isalpha(cp[1]) && isalpha(cp[-1]))
1183                     pst = 3;
1184                 break;
1185
1186             case 3:             /* look for second dot */
1187                 if (*cp == '@')
1188                     pst = 0;
1189                 else if (*cp == ' ')
1190                     pst = 1;
1191                 else if (*cp == '.' && isalpha(cp[1]) && isalpha(cp[-1]))
1192                     pst = 4;
1193                 break;
1194
1195             case 4:             /* look for trailing space */
1196                 if (*cp == '@')
1197                     pst = 0;
1198                 else if (*cp == ' ')
1199                 {
1200                     pst = 5;
1201                     goto done;
1202                 }
1203                 break;
1204             }
1205         }
1206     done:
1207         if (pst == 5)
1208         {
1209             char        *tp = realname;
1210
1211             while (sp < cp)
1212                 *tp++ = *sp++;
1213             *tp = '\0';
1214         }
1215         else
1216             strcpy(realname, ctl->server.names->id);
1217
1218         /* try to get authorized to fetch mail */
1219         if (protocol->getauth)
1220         {
1221             shroud = ctl->password;
1222             ok = (protocol->getauth)(sockfp, ctl, buf);
1223             shroud = (char *)NULL;
1224             if (ok == PS_ERROR)
1225                 ok = PS_AUTHFAIL;
1226             if (ok != 0)
1227             {
1228                 error(0, 0, "Authorization failure on %s@%s", 
1229                       ctl->remotename,
1230                       realname);
1231                 goto cleanUp;
1232             }
1233             vtalarm(ctl->server.timeout);
1234         }
1235
1236         /* compute number of messages and number of new messages waiting */
1237         ok = (protocol->getrange)(sockfp, ctl, &count, &new);
1238         if (ok != 0)
1239             goto cleanUp;
1240         vtalarm(ctl->server.timeout);
1241
1242         /* show user how many messages we downloaded */
1243         if (outlevel > O_SILENT)
1244             if (count == -1)                    /* only used for ETRN */
1245                 error(0, 0, "Polling %s@%s", 
1246                         ctl->remotename,
1247                         realname);
1248             else if (count == 0)
1249                 error(0, 0, "No mail at %s@%s", 
1250                         ctl->remotename,
1251                         realname);
1252             else
1253             {
1254                 if (new != -1 && (count - new) > 0)
1255                     error(0, 0, "%d message%s (%d seen) at %s@%s.",
1256                                 count, count > 1 ? "s" : "", count-new,
1257                                 ctl->remotename,
1258                                 realname);
1259                 else
1260                     error(0, 0, "%d message%s at %s@%s.", 
1261                                 count, count > 1 ? "s" : "",
1262                                 ctl->remotename,
1263                                 realname);
1264             }
1265
1266         /* we may need to get sizes in order to check message limits */
1267         msgsizes = (int *)NULL;
1268         if (!ctl->fetchall && proto->getsizes && ctl->limit)
1269         {
1270             msgsizes = (int *)alloca(sizeof(int) * count);
1271
1272             ok = (proto->getsizes)(sockfp, count, msgsizes);
1273             if (ok != 0)
1274                 goto cleanUp;
1275             vtalarm(ctl->server.timeout);
1276         }
1277
1278         if (check_only)
1279         {
1280             if (new == -1 || ctl->fetchall)
1281                 new = count;
1282             ok = ((new > 0) ? PS_SUCCESS : PS_NOMAIL);
1283             goto cleanUp;
1284         }
1285         else if (count > 0)
1286         {    
1287             int force_retrieval, fetches;
1288
1289             /*
1290              * What forces this code is that in POP3 and IMAP2BIS you can't
1291              * fetch a message without having it marked `seen'.  In IMAP4,
1292              * on the other hand, you can (peek_capable is set to convey
1293              * this).
1294              *
1295              * The result of being unable to peek is that if there's
1296              * any kind of transient error (DNS lookup failure, or
1297              * sendmail refusing delivery due to process-table limits)
1298              * the message will be marked "seen" on the server without
1299              * having been delivered.  This is not a big problem if
1300              * fetchmail is running in foreground, because the user
1301              * will see a "skipped" message when it next runs and get
1302              * clued in.
1303              *
1304              * But in daemon mode this leads to the message being silently
1305              * ignored forever.  This is not acceptable.
1306              *
1307              * We compensate for this by checking the error count from the 
1308              * previous pass and forcing all messages to be considered new
1309              * if it's nonzero.
1310              */
1311             force_retrieval = !peek_capable && (ctl->errcount > 0);
1312
1313             ctl->errcount = fetches = 0;
1314
1315             /* read, forward, and delete messages */
1316             for (num = 1; num <= count; num++)
1317             {
1318                 int     toolarge = msgsizes && (msgsizes[num-1] > ctl->limit);
1319                 int     fetch_it = ctl->fetchall ||
1320                     (!toolarge && (force_retrieval || !(protocol->is_old && (protocol->is_old)(sockfp,ctl,num))));
1321                 int     suppress_delete = FALSE;
1322
1323                 /* we may want to reject this message if it's old */
1324                 if (!fetch_it)
1325                 {
1326                     if (outlevel > O_SILENT)
1327                     {
1328                         error_build("skipping message %d", num);
1329                         if (toolarge)
1330                             error_build(" (oversized, %d bytes)", msgsizes[num-1]);
1331                     }
1332                 }
1333                 else
1334                 {
1335                     /* request a message */
1336                     ok = (protocol->fetch)(sockfp, ctl, num, &len);
1337                     if (ok != 0)
1338                         goto cleanUp;
1339                     vtalarm(ctl->server.timeout);
1340
1341                     if (outlevel > O_SILENT)
1342                     {
1343                         error_build("reading message %d", num);
1344                         if (len > 0)
1345                             error_build(" (%d bytes)", len);
1346                         if (outlevel == O_VERBOSE)
1347                             error_complete(0, 0, "");
1348                         else
1349                             error_build(" ");
1350                     }
1351
1352                     /* read the message and ship it to the output sink */
1353                     ok = gen_readmsg(sockfp,
1354                                      len, 
1355                                      protocol->delimited,
1356                                      ctl,
1357                                      realname);
1358                     if (ok == PS_TRANSIENT)
1359                         suppress_delete = TRUE;
1360                     else if (ok)
1361                         goto cleanUp;
1362                     vtalarm(ctl->server.timeout);
1363
1364                     /* tell the server we got it OK and resynchronize */
1365                     if (protocol->trail)
1366                     {
1367                         ok = (protocol->trail)(sockfp, ctl, num);
1368                         if (ok != 0)
1369                             goto cleanUp;
1370                         vtalarm(ctl->server.timeout);
1371                     }
1372
1373                     fetches++;
1374                 }
1375
1376                 /*
1377                  * At this point in flow of control, either we've bombed
1378                  * on a protocol error or had delivery refused by the SMTP
1379                  * server (unlikely -- I've never seen it) or we've seen
1380                  * `accepted for delivery' and the message is shipped.
1381                  * It's safe to mark the message seen and delete it on the
1382                  * server now.
1383                  */
1384
1385                 /* maybe we delete this message now? */
1386                 if (protocol->delete
1387                     && !suppress_delete
1388                     && (fetch_it ? !ctl->keep : ctl->flush))
1389                 {
1390                     deletions++;
1391                     if (outlevel > O_SILENT) 
1392                         error_complete(0, 0, " flushed");
1393                     ok = (protocol->delete)(sockfp, ctl, num);
1394                     if (ok != 0)
1395                         goto cleanUp;
1396                     vtalarm(ctl->server.timeout);
1397                     delete_str(&ctl->newsaved, num);
1398                 }
1399                 else if (outlevel > O_SILENT) 
1400                     error_complete(0, 0, " not flushed");
1401
1402                 /* perhaps this as many as we're ready to handle */
1403                 if (ctl->fetchlimit && ctl->fetchlimit <= fetches)
1404                     break;
1405             }
1406
1407             ok = gen_transact(sockfp, protocol->exit_cmd);
1408             if (ok == 0)
1409                 ok = PS_SUCCESS;
1410             vtalarm(0);
1411             fclose(sockfp);
1412             goto closeUp;
1413         }
1414         else {
1415             ok = gen_transact(sockfp, protocol->exit_cmd);
1416             if (ok == 0)
1417                 ok = PS_NOMAIL;
1418             vtalarm(0);
1419             fclose(sockfp);
1420             goto closeUp;
1421         }
1422
1423     cleanUp:
1424         vtalarm(ctl->server.timeout);
1425         if (ok != 0 && ok != PS_SOCKET)
1426             gen_transact(sockfp, protocol->exit_cmd);
1427         vtalarm(0);
1428         fclose(sockfp);
1429     }
1430
1431     switch (ok)
1432     {
1433     case PS_SOCKET:
1434         msg = "socket";
1435         break;
1436     case PS_AUTHFAIL:
1437         msg = "authorization";
1438         break;
1439     case PS_SYNTAX:
1440         msg = "missing or bad RFC822 header";
1441         break;
1442     case PS_IOERR:
1443         msg = "MDA";
1444         break;
1445     case PS_ERROR:
1446         msg = "client/server synchronization";
1447         break;
1448     case PS_PROTOCOL:
1449         msg = "client/server protocol";
1450         break;
1451     case PS_SMTP:
1452         msg = "SMTP transaction";
1453         break;
1454     case PS_UNDEFINED:
1455         error(0, 0, "undefined");
1456         break;
1457     }
1458     if (ok==PS_SOCKET || ok==PS_AUTHFAIL || ok==PS_SYNTAX || ok==PS_IOERR
1459                 || ok==PS_ERROR || ok==PS_PROTOCOL || ok==PS_SMTP)
1460         error(0, 0, "%s error while fetching from %s", msg, ctl->server.names->id);
1461
1462 closeUp:
1463     signal(SIGVTALRM, sigsave);
1464     return(ok);
1465 }
1466
1467 #if defined(HAVE_STDARG_H)
1468 void gen_send(FILE *sockfp, char *fmt, ... )
1469 /* assemble command in printf(3) style and send to the server */
1470 #else
1471 void gen_send(sockfp, fmt, va_alist)
1472 /* assemble command in printf(3) style and send to the server */
1473 FILE *sockfp;           /* socket to which server is connected */
1474 const char *fmt;        /* printf-style format */
1475 va_dcl
1476 #endif
1477 {
1478     char buf [POPBUFSIZE+1];
1479     va_list ap;
1480
1481     if (protocol->tagged)
1482         (void) sprintf(buf, "%s ", GENSYM);
1483     else
1484         buf[0] = '\0';
1485
1486 #if defined(HAVE_STDARG_H)
1487     va_start(ap, fmt) ;
1488 #else
1489     va_start(ap);
1490 #endif
1491     vsprintf(buf + strlen(buf), fmt, ap);
1492     va_end(ap);
1493
1494     strcat(buf, "\r\n");
1495     SockWrite(buf, 1, strlen(buf), sockfp);
1496
1497     if (outlevel == O_VERBOSE)
1498     {
1499         char *cp;
1500
1501         if (shroud && (cp = strstr(buf, shroud)))
1502         {
1503             char        *sp;
1504
1505             sp = cp + strlen(shroud);
1506             *cp++ = '*';
1507             while (*sp)
1508                 *cp++ = *sp++;
1509             *cp = '\0';
1510         }
1511         buf[strlen(buf)-2] = '\0';
1512         error(0, 0, "%s> %s", protocol->name, buf);
1513     }
1514 }
1515
1516 int gen_recv(sockfp, buf, size)
1517 /* get one line of input from the server */
1518 FILE *sockfp;   /* socket to which server is connected */
1519 char *buf;      /* buffer to receive input */
1520 int size;       /* length of buffer */
1521 {
1522     if (!SockGets(buf, size, sockfp))
1523         return(PS_SOCKET);
1524     else
1525     {
1526         if (buf[strlen(buf)-1] == '\n')
1527             buf[strlen(buf)-1] = '\0';
1528         if (buf[strlen(buf)-1] == '\r')
1529             buf[strlen(buf)-1] = '\r';
1530         if (outlevel == O_VERBOSE)
1531             error(0, 0, "%s< %s", protocol->name, buf);
1532         return(PS_SUCCESS);
1533     }
1534 }
1535
1536 #if defined(HAVE_STDARG_H)
1537 int gen_transact(FILE *sockfp, char *fmt, ... )
1538 /* assemble command in printf(3) style, send to server, accept a response */
1539 #else
1540 int gen_transact(sockfp, fmt, va_alist)
1541 /* assemble command in printf(3) style, send to server, accept a response */
1542 FILE *sockfp;           /* socket to which server is connected */
1543 const char *fmt;        /* printf-style format */
1544 va_dcl
1545 #endif
1546 {
1547     int ok;
1548     char buf [POPBUFSIZE+1];
1549     va_list ap;
1550
1551     if (protocol->tagged)
1552         (void) sprintf(buf, "%s ", GENSYM);
1553     else
1554         buf[0] = '\0';
1555
1556 #if defined(HAVE_STDARG_H)
1557     va_start(ap, fmt) ;
1558 #else
1559     va_start(ap);
1560 #endif
1561     vsprintf(buf + strlen(buf), fmt, ap);
1562     va_end(ap);
1563
1564     strcat(buf, "\r\n");
1565     SockWrite(buf, 1, strlen(buf), sockfp);
1566
1567     if (outlevel == O_VERBOSE)
1568     {
1569         char *cp;
1570
1571         if (shroud && (cp = strstr(buf, shroud)))
1572         {
1573             char        *sp;
1574
1575             sp = cp + strlen(shroud);
1576             *cp++ = '*';
1577             while (*sp)
1578                 *cp++ = *sp++;
1579             *sp = '\0';
1580         }
1581         buf[strlen(buf)-1] = '\0';
1582         error(0, 0, "%s> %s", protocol->name, buf);
1583     }
1584
1585     /* we presume this does its own response echoing */
1586     ok = (protocol->parse_response)(sockfp, buf);
1587     vtalarm(mytimeout);
1588
1589     return(ok);
1590 }
1591
1592 /* driver.c ends here */
1593