* dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]: Clarify fallback case.
[bpt/emacs.git] / lib-src / pop.c
CommitLineData
9c0f2dac 1/* pop.c: client routines for talking to a POP3-protocol post-office server
95df8112 2
acaf905b 3Copyright (C) 1991, 1993, 1996-1997, 1999, 2001-2012
95df8112 4 Free Software Foundation, Inc.
294981c7
GM
5
6Author: Jonathan Kamens <jik@security.ov.com>
9c0f2dac
RS
7
8This file is part of GNU Emacs.
9
294981c7 10GNU Emacs is free software: you can redistribute it and/or modify
9c0f2dac 11it under the terms of the GNU General Public License as published by
294981c7
GM
12the Free Software Foundation, either version 3 of the License, or
13(at your option) any later version.
9c0f2dac
RS
14
15GNU Emacs is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
20You should have received a copy of the GNU General Public License
294981c7
GM
21along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22
9c0f2dac 23
2f8fe2f4 24#include <config.h>
c9c3d8f6 25
8148baf9
RS
26#ifdef MAIL_USE_POP
27
9c0f2dac 28#include <sys/types.h>
c2668a61
RS
29#ifdef WINDOWSNT
30#include "ntlib.h"
31#include <winsock.h>
32#undef SOCKET_ERROR
5e617bc2
JB
33#define RECV(s,buf,len,flags) recv (s,buf,len,flags)
34#define SEND(s,buf,len,flags) send (s,buf,len,flags)
35#define CLOSESOCKET(s) closesocket (s)
c2668a61 36#else
9c0f2dac
RS
37#include <netinet/in.h>
38#include <sys/socket.h>
5e617bc2
JB
39#define RECV(s,buf,len,flags) read (s,buf,len)
40#define SEND(s,buf,len,flags) write (s,buf,len)
41#define CLOSESOCKET(s) close (s)
c2668a61 42#endif
9c0f2dac 43#include <pop.h>
625ad89f 44
9c0f2dac
RS
45#ifdef sun
46#include <malloc.h>
8148baf9 47#endif /* sun */
625ad89f 48
9c0f2dac
RS
49#ifdef HESIOD
50#include <hesiod.h>
51/*
52 * It really shouldn't be necessary to put this declaration here, but
53 * the version of hesiod.h that Athena has installed in release 7.2
54 * doesn't declare this function; I don't know if the 7.3 version of
55 * hesiod.h does.
56 */
57extern struct servent *hes_getservbyname (/* char *, char * */);
58#endif
625ad89f 59
9c0f2dac 60#include <pwd.h>
9c0f2dac
RS
61#include <netdb.h>
62#include <errno.h>
63#include <stdio.h>
a27738b6 64#include <string.h>
020d3015 65#include <unistd.h>
625ad89f 66
9c0f2dac 67#ifdef KERBEROS
a27738b6
RS
68# ifdef HAVE_KRB5_H
69# include <krb5.h>
70# endif
a27738b6
RS
71# ifdef HAVE_KRB_H
72# include <krb.h>
73# else
74# ifdef HAVE_KERBEROSIV_KRB_H
75# include <kerberosIV/krb.h>
76# else
77# ifdef HAVE_KERBEROS_KRB_H
78# include <kerberos/krb.h>
79# endif
80# endif
81# endif
82# ifdef HAVE_COM_ERR_H
83# include <com_err.h>
84# endif
8148baf9 85#endif /* KERBEROS */
9c0f2dac 86
ba01e9d7
PE
87#include <min-max.h>
88
8148baf9 89#ifdef KERBEROS
a27738b6 90#ifndef KERBEROS5
9c0f2dac 91extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
8148baf9
RS
92 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
93 struct sockaddr_in *, struct sockaddr_in *,
94 char * */);
9c0f2dac 95extern char *krb_realmofhost (/* char * */);
a27738b6 96#endif /* ! KERBEROS5 */
8148baf9 97#endif /* KERBEROS */
9c0f2dac 98
c2668a61 99#ifndef WINDOWSNT
cf38a720 100#ifndef HAVE_H_ERRNO
9c0f2dac
RS
101extern int h_errno;
102#endif
c2668a61 103#endif
9c0f2dac 104
f57e2426
J
105static int socket_connection (char *, int);
106static int pop_getline (popserver, char **);
988e88ab 107static int sendline (popserver, const char *);
f57e2426
J
108static int fullwrite (int, char *, int);
109static int getok (popserver);
9c0f2dac 110#if 0
f57e2426 111static int gettermination (popserver);
9c0f2dac 112#endif
f57e2426
J
113static void pop_trash (popserver);
114static char *find_crlf (char *, int);
7a481e50 115
5bf244f1 116#define ERROR_MAX 160 /* a pretty arbitrary size, but needs
a47bf648
DL
117 to be bigger than the original
118 value of 80 */
9c0f2dac 119#define POP_PORT 110
c2668a61 120#define POP_SERVICE "pop3" /* we don't want the POP2 port! */
9c0f2dac 121#ifdef KERBEROS
0d7fdc0e 122#define KPOP_PORT 1109
81264b38 123#define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */
9c0f2dac 124#endif
9c0f2dac
RS
125
126char pop_error[ERROR_MAX];
127int pop_debug = 0;
128
9c0f2dac
RS
129/*
130 * Function: pop_open (char *host, char *username, char *password,
131 * int flags)
132 *
133 * Purpose: Establishes a connection with a post-office server, and
134 * completes the authorization portion of the session.
135 *
136 * Arguments:
137 * host The server host with which the connection should be
138 * established. Optional. If omitted, internal
139 * heuristics will be used to determine the server host,
140 * if possible.
141 * username
142 * The username of the mail-drop to access. Optional.
143 * If omitted, internal heuristics will be used to
144 * determine the username, if possible.
145 * password
146 * The password to use for authorization. If omitted,
147 * internal heuristics will be used to determine the
148 * password, if possible.
149 * flags A bit mask containing flags controlling certain
150 * functions of the routine. Valid flags are defined in
151 * the file pop.h
152 *
153 * Return value: Upon successful establishment of a connection, a
154 * non-null popserver will be returned. Otherwise, null will be
155 * returned, and the string variable pop_error will contain an
156 * explanation of the error.
157 */
158popserver
873fbd0b 159pop_open (char *host, char *username, char *password, int flags)
9c0f2dac
RS
160{
161 int sock;
162 popserver server;
163
164 /* Determine the user name */
165 if (! username)
166 {
167 username = getenv ("USER");
168 if (! (username && *username))
169 {
170 username = getlogin ();
171 if (! (username && *username))
172 {
173 struct passwd *passwd;
174 passwd = getpwuid (getuid ());
175 if (passwd && passwd->pw_name && *passwd->pw_name)
176 {
177 username = passwd->pw_name;
178 }
179 else
180 {
181 strcpy (pop_error, "Could not determine username");
182 return (0);
183 }
184 }
185 }
186 }
187
188 /*
189 * Determine the mail host.
190 */
191
192 if (! host)
193 {
194 host = getenv ("MAILHOST");
195 }
196
197#ifdef HESIOD
198 if ((! host) && (! (flags & POP_NO_HESIOD)))
199 {
200 struct hes_postoffice *office;
201 office = hes_getmailhost (username);
202 if (office && office->po_type && (! strcmp (office->po_type, "POP"))
203 && office->po_name && *office->po_name && office->po_host
204 && *office->po_host)
205 {
206 host = office->po_host;
207 username = office->po_name;
208 }
209 }
210#endif
211
212#ifdef MAILHOST
213 if (! host)
214 {
215 host = MAILHOST;
216 }
217#endif
218
219 if (! host)
220 {
221 strcpy (pop_error, "Could not determine POP server");
222 return (0);
223 }
224
225 /* Determine the password */
bbcac09c
RS
226#ifdef KERBEROS
227#define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
9c0f2dac 228#else
bbcac09c 229#define DONT_NEED_PASSWORD 0
9c0f2dac 230#endif
177c0ea7 231
9c0f2dac
RS
232 if ((! password) && (! DONT_NEED_PASSWORD))
233 {
234 if (! (flags & POP_NO_GETPASS))
235 {
236 password = getpass ("Enter POP password:");
237 }
238 if (! password)
239 {
240 strcpy (pop_error, "Could not determine POP password");
241 return (0);
242 }
243 }
81264b38 244 if (password) /* always true, detected 20060515 */
bbcac09c 245 flags |= POP_NO_KERBEROS;
9c0f2dac 246 else
81264b38
FP
247 password = username; /* dead code, detected 20060515 */
248 /** "kpop" service is never used: look for 20060515 to see why **/
9c0f2dac
RS
249
250 sock = socket_connection (host, flags);
251 if (sock == -1)
252 return (0);
253
254 server = (popserver) malloc (sizeof (struct _popserver));
255 if (! server)
256 {
257 strcpy (pop_error, "Out of memory in pop_open");
258 return (0);
259 }
260 server->buffer = (char *) malloc (GETLINE_MIN);
261 if (! server->buffer)
262 {
263 strcpy (pop_error, "Out of memory in pop_open");
264 free ((char *) server);
265 return (0);
266 }
80b2cbf2 267
9c0f2dac
RS
268 server->file = sock;
269 server->data = 0;
270 server->buffer_index = 0;
271 server->buffer_size = GETLINE_MIN;
272 server->in_multi = 0;
c2668a61 273 server->trash_started = 0;
9c0f2dac
RS
274
275 if (getok (server))
276 return (0);
277
278 /*
279 * I really shouldn't use the pop_error variable like this, but....
280 */
281 if (strlen (username) > ERROR_MAX - 6)
282 {
283 pop_close (server);
284 strcpy (pop_error,
285 "Username too long; recompile pop.c with larger ERROR_MAX");
286 return (0);
287 }
288 sprintf (pop_error, "USER %s", username);
289
290 if (sendline (server, pop_error) || getok (server))
291 {
292 return (0);
293 }
294
295 if (strlen (password) > ERROR_MAX - 6)
296 {
297 pop_close (server);
298 strcpy (pop_error,
299 "Password too long; recompile pop.c with larger ERROR_MAX");
300 return (0);
301 }
302 sprintf (pop_error, "PASS %s", password);
303
304 if (sendline (server, pop_error) || getok (server))
305 {
306 return (0);
307 }
308
309 return (server);
310}
311
312/*
313 * Function: pop_stat
314 *
315 * Purpose: Issue the STAT command to the server and return (in the
316 * value parameters) the number of messages in the maildrop and
317 * the total size of the maildrop.
318 *
319 * Return value: 0 on success, or non-zero with an error in pop_error
320 * in failure.
321 *
322 * Side effects: On failure, may make further operations on the
323 * connection impossible.
324 */
325int
873fbd0b 326pop_stat (popserver server, int *count, int *size)
9c0f2dac
RS
327{
328 char *fromserver;
0b074993 329 char *end_ptr;
9c0f2dac
RS
330
331 if (server->in_multi)
332 {
333 strcpy (pop_error, "In multi-line query in pop_stat");
334 return (-1);
335 }
80b2cbf2 336
60b0a379 337 if (sendline (server, "STAT") || (pop_getline (server, &fromserver) < 0))
9c0f2dac
RS
338 return (-1);
339
340 if (strncmp (fromserver, "+OK ", 4))
341 {
342 if (0 == strncmp (fromserver, "-ERR", 4))
343 {
344 strncpy (pop_error, fromserver, ERROR_MAX);
bf98199c 345 pop_error[ERROR_MAX-1] = '\0';
9c0f2dac
RS
346 }
347 else
348 {
349 strcpy (pop_error,
350 "Unexpected response from POP server in pop_stat");
351 pop_trash (server);
352 }
353 return (-1);
354 }
355
0b074993
CY
356 errno = 0;
357 *count = strtol (&fromserver[4], &end_ptr, 10);
358 /* Check validity of string-to-integer conversion. */
59a431d6 359 if (fromserver + 4 == end_ptr || *end_ptr != ' ' || errno)
0b074993
CY
360 {
361 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
362 pop_trash (server);
363 return (-1);
364 }
80b2cbf2 365
59a431d6 366 fromserver = end_ptr;
9c0f2dac 367
0b074993
CY
368 errno = 0;
369 *size = strtol (fromserver + 1, &end_ptr, 10);
59a431d6 370 if (fromserver + 1 == end_ptr || errno)
0b074993
CY
371 {
372 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
373 pop_trash (server);
374 return (-1);
375 }
9c0f2dac
RS
376
377 return (0);
378}
379
380/*
381 * Function: pop_list
382 *
383 * Purpose: Performs the POP "list" command and returns (in value
384 * parameters) two malloc'd zero-terminated arrays -- one of
385 * message IDs, and a parallel one of sizes.
386 *
387 * Arguments:
388 * server The pop connection to talk to.
389 * message The number of the one message about which to get
390 * information, or 0 to get information about all
391 * messages.
392 *
393 * Return value: 0 on success, non-zero with error in pop_error on
394 * failure.
395 *
396 * Side effects: On failure, may make further operations on the
397 * connection impossible.
398 */
399int
873fbd0b 400pop_list (popserver server, int message, int **IDs, int **sizes)
9c0f2dac
RS
401{
402 int how_many, i;
403 char *fromserver;
404
405 if (server->in_multi)
406 {
407 strcpy (pop_error, "In multi-line query in pop_list");
408 return (-1);
409 }
410
411 if (message)
412 how_many = 1;
413 else
414 {
415 int count, size;
416 if (pop_stat (server, &count, &size))
417 return (-1);
418 how_many = count;
419 }
420
421 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
422 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
423 if (! (*IDs && *sizes))
424 {
425 strcpy (pop_error, "Out of memory in pop_list");
426 return (-1);
427 }
428
429 if (message)
430 {
431 sprintf (pop_error, "LIST %d", message);
432 if (sendline (server, pop_error))
433 {
434 free ((char *) *IDs);
435 free ((char *) *sizes);
436 return (-1);
437 }
60b0a379 438 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
439 {
440 free ((char *) *IDs);
441 free ((char *) *sizes);
442 return (-1);
443 }
444 if (strncmp (fromserver, "+OK ", 4))
445 {
446 if (! strncmp (fromserver, "-ERR", 4))
bf98199c
JM
447 {
448 strncpy (pop_error, fromserver, ERROR_MAX);
449 pop_error[ERROR_MAX-1] = '\0';
450 }
9c0f2dac
RS
451 else
452 {
453 strcpy (pop_error,
454 "Unexpected response from server in pop_list");
455 pop_trash (server);
456 }
457 free ((char *) *IDs);
458 free ((char *) *sizes);
459 return (-1);
460 }
461 (*IDs)[0] = atoi (&fromserver[4]);
8966b757 462 fromserver = strchr (&fromserver[4], ' ');
9c0f2dac
RS
463 if (! fromserver)
464 {
465 strcpy (pop_error,
466 "Badly formatted response from server in pop_list");
467 pop_trash (server);
468 free ((char *) *IDs);
469 free ((char *) *sizes);
470 return (-1);
471 }
472 (*sizes)[0] = atoi (fromserver);
473 (*IDs)[1] = (*sizes)[1] = 0;
474 return (0);
475 }
476 else
477 {
478 if (pop_multi_first (server, "LIST", &fromserver))
479 {
480 free ((char *) *IDs);
481 free ((char *) *sizes);
482 return (-1);
483 }
484 for (i = 0; i < how_many; i++)
485 {
d89d0243 486 if (pop_multi_next (server, &fromserver) <= 0)
9c0f2dac
RS
487 {
488 free ((char *) *IDs);
489 free ((char *) *sizes);
490 return (-1);
491 }
492 (*IDs)[i] = atoi (fromserver);
8966b757 493 fromserver = strchr (fromserver, ' ');
9c0f2dac
RS
494 if (! fromserver)
495 {
496 strcpy (pop_error,
497 "Badly formatted response from server in pop_list");
498 free ((char *) *IDs);
499 free ((char *) *sizes);
500 pop_trash (server);
501 return (-1);
502 }
503 (*sizes)[i] = atoi (fromserver);
504 }
d89d0243 505 if (pop_multi_next (server, &fromserver) < 0)
9c0f2dac
RS
506 {
507 free ((char *) *IDs);
508 free ((char *) *sizes);
509 return (-1);
510 }
511 else if (fromserver)
512 {
513 strcpy (pop_error,
514 "Too many response lines from server in pop_list");
515 free ((char *) *IDs);
516 free ((char *) *sizes);
517 return (-1);
518 }
519 (*IDs)[i] = (*sizes)[i] = 0;
520 return (0);
521 }
522}
523
524/*
525 * Function: pop_retrieve
526 *
527 * Purpose: Retrieve a specified message from the maildrop.
528 *
529 * Arguments:
530 * server The server to retrieve from.
531 * message The message number to retrieve.
532 * markfrom
533 * If true, then mark the string "From " at the beginning
534 * of lines with '>'.
d89d0243
KH
535 * msg_buf Output parameter to which a buffer containing the
536 * message is assigned.
177c0ea7 537 *
d89d0243
KH
538 * Return value: The number of bytes in msg_buf, which may contain
539 * embedded nulls, not including its final null, or -1 on error
540 * with pop_error set.
9c0f2dac
RS
541 *
542 * Side effects: May kill connection on error.
543 */
d89d0243 544int
873fbd0b 545pop_retrieve (popserver server, int message, int markfrom, char **msg_buf)
9c0f2dac
RS
546{
547 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
548 char *ptr, *fromserver;
549 int ret;
550
551 if (server->in_multi)
552 {
553 strcpy (pop_error, "In multi-line query in pop_retrieve");
d89d0243 554 return (-1);
9c0f2dac
RS
555 }
556
557 if (pop_list (server, message, &IDs, &sizes))
d89d0243 558 return (-1);
9c0f2dac
RS
559
560 if (pop_retrieve_first (server, message, &fromserver))
561 {
d89d0243 562 return (-1);
9c0f2dac
RS
563 }
564
565 /*
566 * The "5" below is an arbitrary constant -- I assume that if
567 * there are "From" lines in the text to be marked, there
568 * probably won't be more than 5 of them. If there are, I
569 * allocate more space for them below.
570 */
571 bufsize = sizes[0] + (markfrom ? 5 : 0);
7d665945 572 ptr = (char *)malloc (bufsize);
9c0f2dac
RS
573 free ((char *) IDs);
574 free ((char *) sizes);
575
576 if (! ptr)
577 {
578 strcpy (pop_error, "Out of memory in pop_retrieve");
579 pop_retrieve_flush (server);
d89d0243 580 return (-1);
9c0f2dac
RS
581 }
582
d89d0243 583 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0)
9c0f2dac 584 {
9c0f2dac
RS
585 if (! fromserver)
586 {
587 ptr[cp] = '\0';
d89d0243
KH
588 *msg_buf = ptr;
589 return (cp);
9c0f2dac
RS
590 }
591 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
592 fromserver[2] == 'o' && fromserver[3] == 'm' &&
593 fromserver[4] == ' ')
594 {
595 if (++fromcount == 5)
596 {
597 bufsize += 5;
7d665945 598 ptr = (char *)realloc (ptr, bufsize);
9c0f2dac
RS
599 if (! ptr)
600 {
601 strcpy (pop_error, "Out of memory in pop_retrieve");
602 pop_retrieve_flush (server);
d89d0243 603 return (-1);
9c0f2dac
RS
604 }
605 fromcount = 0;
606 }
607 ptr[cp++] = '>';
608 }
72af86bd 609 memcpy (&ptr[cp], fromserver, ret);
d89d0243 610 cp += ret;
9c0f2dac
RS
611 ptr[cp++] = '\n';
612 }
613
d89d0243
KH
614 free (ptr);
615 return (-1);
177c0ea7 616}
9c0f2dac
RS
617
618int
873fbd0b 619pop_retrieve_first (popserver server, int message, char **response)
9c0f2dac
RS
620{
621 sprintf (pop_error, "RETR %d", message);
622 return (pop_multi_first (server, pop_error, response));
623}
624
d89d0243
KH
625/*
626 Returns a negative number on error, 0 to indicate that the data has
627 all been read (i.e., the server has returned a "." termination
628 line), or a positive number indicating the number of bytes in the
629 returned buffer (which is null-terminated and may contain embedded
630 nulls, but the returned bytecount doesn't include the final null).
631 */
632
9c0f2dac 633int
873fbd0b 634pop_retrieve_next (popserver server, char **line)
9c0f2dac
RS
635{
636 return (pop_multi_next (server, line));
637}
638
639int
873fbd0b 640pop_retrieve_flush (popserver server)
9c0f2dac
RS
641{
642 return (pop_multi_flush (server));
643}
644
645int
873fbd0b 646pop_top_first (popserver server, int message, int lines, char **response)
9c0f2dac
RS
647{
648 sprintf (pop_error, "TOP %d %d", message, lines);
649 return (pop_multi_first (server, pop_error, response));
650}
651
d89d0243
KH
652/*
653 Returns a negative number on error, 0 to indicate that the data has
654 all been read (i.e., the server has returned a "." termination
655 line), or a positive number indicating the number of bytes in the
656 returned buffer (which is null-terminated and may contain embedded
657 nulls, but the returned bytecount doesn't include the final null).
658 */
659
9c0f2dac 660int
873fbd0b 661pop_top_next (popserver server, char **line)
9c0f2dac
RS
662{
663 return (pop_multi_next (server, line));
664}
665
666int
873fbd0b 667pop_top_flush (popserver server)
9c0f2dac
RS
668{
669 return (pop_multi_flush (server));
670}
671
672int
988e88ab 673pop_multi_first (popserver server, const char *command, char **response)
9c0f2dac
RS
674{
675 if (server->in_multi)
676 {
677 strcpy (pop_error,
678 "Already in multi-line query in pop_multi_first");
679 return (-1);
680 }
681
60b0a379 682 if (sendline (server, command) || (pop_getline (server, response) < 0))
9c0f2dac
RS
683 {
684 return (-1);
685 }
686
687 if (0 == strncmp (*response, "-ERR", 4))
688 {
689 strncpy (pop_error, *response, ERROR_MAX);
bf98199c 690 pop_error[ERROR_MAX-1] = '\0';
9c0f2dac
RS
691 return (-1);
692 }
693 else if (0 == strncmp (*response, "+OK", 3))
694 {
695 for (*response += 3; **response == ' '; (*response)++) /* empty */;
696 server->in_multi = 1;
697 return (0);
698 }
699 else
700 {
701 strcpy (pop_error,
702 "Unexpected response from server in pop_multi_first");
703 return (-1);
704 }
705}
706
d89d0243
KH
707/*
708 Read the next line of data from SERVER and place a pointer to it
709 into LINE. Return -1 on error, 0 if there are no more lines to read
710 (i.e., the server has returned a line containing only "."), or a
711 positive number indicating the number of bytes in the LINE buffer
712 (not including the final null). The data in that buffer may contain
713 embedded nulls, but does not contain the final CRLF. When returning
714 0, LINE is set to null. */
715
9c0f2dac 716int
873fbd0b 717pop_multi_next (popserver server, char **line)
9c0f2dac
RS
718{
719 char *fromserver;
d89d0243 720 int ret;
9c0f2dac
RS
721
722 if (! server->in_multi)
723 {
724 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
725 return (-1);
726 }
727
60b0a379 728 if ((ret = pop_getline (server, &fromserver)) < 0)
9c0f2dac
RS
729 {
730 return (-1);
731 }
732
733 if (fromserver[0] == '.')
734 {
735 if (! fromserver[1])
736 {
737 *line = 0;
738 server->in_multi = 0;
739 return (0);
740 }
741 else
742 {
743 *line = fromserver + 1;
d89d0243 744 return (ret - 1);
9c0f2dac
RS
745 }
746 }
747 else
748 {
749 *line = fromserver;
d89d0243 750 return (ret);
9c0f2dac
RS
751 }
752}
753
754int
873fbd0b 755pop_multi_flush (popserver server)
9c0f2dac
RS
756{
757 char *line;
d89d0243 758 int ret;
9c0f2dac
RS
759
760 if (! server->in_multi)
761 {
762 return (0);
763 }
764
d89d0243 765 while ((ret = pop_multi_next (server, &line)))
9c0f2dac 766 {
d89d0243
KH
767 if (ret < 0)
768 return (-1);
9c0f2dac
RS
769 }
770
d89d0243 771 return (0);
9c0f2dac
RS
772}
773
774/* Function: pop_delete
775 *
776 * Purpose: Delete a specified message.
777 *
778 * Arguments:
779 * server Server from which to delete the message.
780 * message Message to delete.
781 *
782 * Return value: 0 on success, non-zero with error in pop_error
783 * otherwise.
784 */
785int
873fbd0b 786pop_delete (popserver server, int message)
9c0f2dac
RS
787{
788 if (server->in_multi)
789 {
790 strcpy (pop_error, "In multi-line query in pop_delete");
791 return (-1);
792 }
793
794 sprintf (pop_error, "DELE %d", message);
795
796 if (sendline (server, pop_error) || getok (server))
797 return (-1);
798
799 return (0);
800}
801
802/*
803 * Function: pop_noop
804 *
805 * Purpose: Send a noop command to the server.
806 *
807 * Argument:
808 * server The server to send to.
809 *
810 * Return value: 0 on success, non-zero with error in pop_error
811 * otherwise.
812 *
813 * Side effects: Closes connection on error.
814 */
815int
873fbd0b 816pop_noop (popserver server)
9c0f2dac
RS
817{
818 if (server->in_multi)
819 {
820 strcpy (pop_error, "In multi-line query in pop_noop");
821 return (-1);
822 }
823
824 if (sendline (server, "NOOP") || getok (server))
825 return (-1);
826
827 return (0);
828}
829
830/*
831 * Function: pop_last
832 *
833 * Purpose: Find out the highest seen message from the server.
834 *
835 * Arguments:
836 * server The server.
837 *
838 * Return value: If successful, the highest seen message, which is
839 * greater than or equal to 0. Otherwise, a negative number with
840 * the error explained in pop_error.
841 *
842 * Side effects: Closes the connection on error.
843 */
844int
873fbd0b 845pop_last (popserver server)
9c0f2dac
RS
846{
847 char *fromserver;
80b2cbf2 848
9c0f2dac
RS
849 if (server->in_multi)
850 {
851 strcpy (pop_error, "In multi-line query in pop_last");
852 return (-1);
853 }
854
855 if (sendline (server, "LAST"))
856 return (-1);
857
60b0a379 858 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
859 return (-1);
860
861 if (! strncmp (fromserver, "-ERR", 4))
862 {
863 strncpy (pop_error, fromserver, ERROR_MAX);
bf98199c 864 pop_error[ERROR_MAX-1] = '\0';
9c0f2dac
RS
865 return (-1);
866 }
867 else if (strncmp (fromserver, "+OK ", 4))
868 {
869 strcpy (pop_error, "Unexpected response from server in pop_last");
870 pop_trash (server);
871 return (-1);
872 }
873 else
874 {
0b074993
CY
875 char *end_ptr;
876 int count;
877 errno = 0;
878 count = strtol (&fromserver[4], &end_ptr, 10);
59a431d6 879 if (fromserver + 4 == end_ptr || errno)
0b074993
CY
880 {
881 strcpy (pop_error, "Unexpected response from server in pop_last");
882 pop_trash (server);
883 return (-1);
884 }
885 return count;
9c0f2dac
RS
886 }
887}
888
889/*
890 * Function: pop_reset
891 *
892 * Purpose: Reset the server to its initial connect state
893 *
894 * Arguments:
895 * server The server.
896 *
897 * Return value: 0 for success, non-0 with error in pop_error
898 * otherwise.
899 *
900 * Side effects: Closes the connection on error.
901 */
902int
873fbd0b 903pop_reset (popserver server)
9c0f2dac
RS
904{
905 if (pop_retrieve_flush (server))
906 {
907 return (-1);
908 }
909
910 if (sendline (server, "RSET") || getok (server))
911 return (-1);
912
913 return (0);
914}
915
916/*
917 * Function: pop_quit
918 *
919 * Purpose: Quit the connection to the server,
920 *
921 * Arguments:
922 * server The server to quit.
923 *
924 * Return value: 0 for success, non-zero otherwise with error in
925 * pop_error.
926 *
8e6208c5 927 * Side Effects: The popserver passed in is unusable after this
9c0f2dac
RS
928 * function is called, even if an error occurs.
929 */
930int
873fbd0b 931pop_quit (popserver server)
9c0f2dac
RS
932{
933 int ret = 0;
934
935 if (server->file >= 0)
936 {
937 if (pop_retrieve_flush (server))
938 {
939 ret = -1;
940 }
941
942 if (sendline (server, "QUIT") || getok (server))
943 {
944 ret = -1;
945 }
946
947 close (server->file);
948 }
949
c2cd06e6 950 free (server->buffer);
9c0f2dac
RS
951 free ((char *) server);
952
953 return (ret);
954}
955
c2668a61
RS
956#ifdef WINDOWSNT
957static int have_winsock = 0;
958#endif
959
9c0f2dac
RS
960/*
961 * Function: socket_connection
962 *
963 * Purpose: Opens the network connection with the mail host, without
964 * doing any sort of I/O with it or anything.
965 *
966 * Arguments:
967 * host The host to which to connect.
968 * flags Option flags.
80b2cbf2 969 *
9c0f2dac
RS
970 * Return value: A file descriptor indicating the connection, or -1
971 * indicating failure, in which case an error has been copied
972 * into pop_error.
973 */
974static int
873fbd0b 975socket_connection (char *host, int flags)
9c0f2dac 976{
33a2a872
JD
977#ifdef HAVE_GETADDRINFO
978 struct addrinfo *res, *it;
979 struct addrinfo hints;
980 int ret;
981#else /* !HAVE_GETADDRINFO */
9c0f2dac 982 struct hostent *hostent;
33a2a872 983#endif
9c0f2dac
RS
984 struct servent *servent;
985 struct sockaddr_in addr;
986 char found_port = 0;
988e88ab 987 const char *service;
9c0f2dac 988 int sock;
ee15f312 989 char *realhost;
9c0f2dac 990#ifdef KERBEROS
a27738b6 991#ifdef KERBEROS5
9c0f2dac 992 krb5_error_code rem;
a27738b6
RS
993 krb5_context kcontext = 0;
994 krb5_auth_context auth_context = 0;
9c0f2dac
RS
995 krb5_ccache ccdef;
996 krb5_principal client, server;
997 krb5_error *err_ret;
998 register char *cp;
999#else
1000 KTEXT ticket;
1001 MSG_DAT msg_data;
1002 CREDENTIALS cred;
1003 Key_schedule schedule;
1004 int rem;
a27738b6 1005#endif /* KERBEROS5 */
9c0f2dac
RS
1006#endif /* KERBEROS */
1007
1008 int try_count = 0;
33a2a872 1009 int connect_ok;
9c0f2dac 1010
c2668a61
RS
1011#ifdef WINDOWSNT
1012 {
1013 WSADATA winsockData;
1014 if (WSAStartup (0x101, &winsockData) == 0)
1015 have_winsock = 1;
1016 }
1017#endif
1018
72af86bd 1019 memset (&addr, 0, sizeof (addr));
9c0f2dac
RS
1020 addr.sin_family = AF_INET;
1021
81264b38 1022 /** "kpop" service is never used: look for 20060515 to see why **/
9c0f2dac
RS
1023#ifdef KERBEROS
1024 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1025#else
1026 service = POP_SERVICE;
1027#endif
1028
1029#ifdef HESIOD
1030 if (! (flags & POP_NO_HESIOD))
1031 {
1032 servent = hes_getservbyname (service, "tcp");
1033 if (servent)
1034 {
1035 addr.sin_port = servent->s_port;
1036 found_port = 1;
1037 }
1038 }
1039#endif
1040 if (! found_port)
1041 {
1042 servent = getservbyname (service, "tcp");
1043 if (servent)
1044 {
1045 addr.sin_port = servent->s_port;
1046 }
1047 else
1048 {
81264b38 1049 /** "kpop" service is never used: look for 20060515 to see why **/
9c0f2dac
RS
1050#ifdef KERBEROS
1051 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ?
1052 POP_PORT : KPOP_PORT);
1053#else
1054 addr.sin_port = htons (POP_PORT);
1055#endif
1056 }
1057 }
1058
a27738b6 1059#define POP_SOCKET_ERROR "Could not create socket for POP connection: "
9c0f2dac
RS
1060
1061 sock = socket (PF_INET, SOCK_STREAM, 0);
1062 if (sock < 0)
1063 {
a27738b6 1064 strcpy (pop_error, POP_SOCKET_ERROR);
9c0f2dac 1065 strncat (pop_error, strerror (errno),
a27738b6 1066 ERROR_MAX - sizeof (POP_SOCKET_ERROR));
9c0f2dac 1067 return (-1);
80b2cbf2 1068
9c0f2dac
RS
1069 }
1070
33a2a872 1071#ifdef HAVE_GETADDRINFO
5e617bc2 1072 memset (&hints, 0, sizeof (hints));
33a2a872 1073 hints.ai_socktype = SOCK_STREAM;
7291159e 1074 hints.ai_flags = AI_CANONNAME;
33a2a872
JD
1075 hints.ai_family = AF_INET;
1076 do
1077 {
1078 ret = getaddrinfo (host, service, &hints, &res);
1079 try_count++;
1080 if (ret != 0 && (ret != EAI_AGAIN || try_count == 5))
1081 {
1082 strcpy (pop_error, "Could not determine POP server's address");
1083 return (-1);
1084 }
1085 } while (ret != 0);
1086
1087 if (ret == 0)
1088 {
1089 it = res;
1090 while (it)
1091 {
1092 if (it->ai_addrlen == sizeof (addr))
1093 {
1094 struct sockaddr_in *in_a = (struct sockaddr_in *) it->ai_addr;
72af86bd 1095 memcpy (&addr.sin_addr, &in_a->sin_addr, sizeof (addr.sin_addr));
33a2a872
JD
1096 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1097 break;
1098 }
1099 it = it->ai_next;
1100 }
1101 connect_ok = it != NULL;
ee15f312
JD
1102 if (connect_ok)
1103 {
1104 realhost = alloca (strlen (it->ai_canonname) + 1);
1105 strcpy (realhost, it->ai_canonname);
1106 }
33a2a872
JD
1107 freeaddrinfo (res);
1108 }
1109#else /* !HAVE_GETADDRINFO */
b72f3bcb
EZ
1110 do
1111 {
1112 hostent = gethostbyname (host);
1113 try_count++;
1114 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1115 {
1116 strcpy (pop_error, "Could not determine POP server's address");
1117 return (-1);
1118 }
1119 } while (! hostent);
1120
9c0f2dac
RS
1121 while (*hostent->h_addr_list)
1122 {
72af86bd 1123 memcpy (&addr.sin_addr, *hostent->h_addr_list, hostent->h_length);
9c0f2dac
RS
1124 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1125 break;
1126 hostent->h_addr_list++;
1127 }
33a2a872 1128 connect_ok = *hostent->h_addr_list != NULL;
ee15f312
JD
1129 if (! connect_ok)
1130 {
1131 realhost = alloca (strlen (hostent->h_name) + 1);
1132 strcpy (realhost, hostent->h_name);
1133 }
1134
33a2a872 1135#endif /* !HAVE_GETADDRINFO */
9c0f2dac
RS
1136
1137#define CONNECT_ERROR "Could not connect to POP server: "
80b2cbf2 1138
33a2a872 1139 if (! connect_ok)
9c0f2dac 1140 {
de5c39cf 1141 CLOSESOCKET (sock);
9c0f2dac
RS
1142 strcpy (pop_error, CONNECT_ERROR);
1143 strncat (pop_error, strerror (errno),
1144 ERROR_MAX - sizeof (CONNECT_ERROR));
1145 return (-1);
80b2cbf2 1146
9c0f2dac
RS
1147 }
1148
1149#ifdef KERBEROS
33a2a872 1150
9c0f2dac
RS
1151#define KRB_ERROR "Kerberos error connecting to POP server: "
1152 if (! (flags & POP_NO_KERBEROS))
1153 {
a27738b6
RS
1154#ifdef KERBEROS5
1155 if ((rem = krb5_init_context (&kcontext)))
9c0f2dac
RS
1156 {
1157 krb5error:
a27738b6
RS
1158 if (auth_context)
1159 krb5_auth_con_free (kcontext, auth_context);
1160 if (kcontext)
1161 krb5_free_context (kcontext);
9c0f2dac
RS
1162 strcpy (pop_error, KRB_ERROR);
1163 strncat (pop_error, error_message (rem),
5e617bc2 1164 ERROR_MAX - sizeof (KRB_ERROR));
de5c39cf 1165 CLOSESOCKET (sock);
9c0f2dac
RS
1166 return (-1);
1167 }
1168
a27738b6
RS
1169 if ((rem = krb5_auth_con_init (kcontext, &auth_context)))
1170 goto krb5error;
80b2cbf2 1171
a27738b6
RS
1172 if (rem = krb5_cc_default (kcontext, &ccdef))
1173 goto krb5error;
1174
1175 if (rem = krb5_cc_get_principal (kcontext, ccdef, &client))
1176 goto krb5error;
9c0f2dac 1177
33a2a872 1178 for (cp = realhost; *cp; cp++)
9c0f2dac
RS
1179 {
1180 if (isupper (*cp))
1181 {
1182 *cp = tolower (*cp);
1183 }
1184 }
1185
33a2a872 1186 if (rem = krb5_sname_to_principal (kcontext, realhost,
a27738b6
RS
1187 POP_SERVICE, FALSE, &server))
1188 goto krb5error;
9c0f2dac 1189
a27738b6
RS
1190 rem = krb5_sendauth (kcontext, &auth_context,
1191 (krb5_pointer) &sock, "KPOPV1.0", client, server,
9c0f2dac
RS
1192 AP_OPTS_MUTUAL_REQUIRED,
1193 0, /* no checksum */
1194 0, /* no creds, use ccache instead */
1195 ccdef,
9c0f2dac 1196 &err_ret,
a27738b6 1197 0, /* don't need subsession key */
9c0f2dac 1198 0); /* don't need reply */
a27738b6 1199 krb5_free_principal (kcontext, server);
9c0f2dac
RS
1200 if (rem)
1201 {
5fe92a72
CY
1202 strcpy (pop_error, KRB_ERROR);
1203 strncat (pop_error, error_message (rem),
1204 ERROR_MAX - sizeof (KRB_ERROR));
1205#if defined HAVE_KRB5_ERROR_TEXT
9c0f2dac
RS
1206 if (err_ret && err_ret->text.length)
1207 {
9c0f2dac
RS
1208 strncat (pop_error, " [server says '",
1209 ERROR_MAX - strlen (pop_error) - 1);
1210 strncat (pop_error, err_ret->text.data,
1211 min (ERROR_MAX - strlen (pop_error) - 1,
1212 err_ret->text.length));
1213 strncat (pop_error, "']",
1214 ERROR_MAX - strlen (pop_error) - 1);
1215 }
5fe92a72 1216#elif defined HAVE_KRB5_ERROR_E_TEXT
5e617bc2 1217 if (err_ret && err_ret->e_text && strlen (*err_ret->e_text))
9c0f2dac 1218 {
5fe92a72
CY
1219 strncat (pop_error, " [server says '",
1220 ERROR_MAX - strlen (pop_error) - 1);
1221 strncat (pop_error, *err_ret->e_text,
1222 ERROR_MAX - strlen (pop_error) - 1);
1223 strncat (pop_error, "']",
1224 ERROR_MAX - strlen (pop_error) - 1);
9c0f2dac 1225 }
5fe92a72 1226#endif
9c0f2dac 1227 if (err_ret)
a27738b6
RS
1228 krb5_free_error (kcontext, err_ret);
1229 krb5_auth_con_free (kcontext, auth_context);
1230 krb5_free_context (kcontext);
9c0f2dac 1231
de5c39cf 1232 CLOSESOCKET (sock);
9c0f2dac
RS
1233 return (-1);
1234 }
80b2cbf2 1235#else /* ! KERBEROS5 */
9c0f2dac 1236 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
51a66525
CH
1237 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1238 (char *) krb_realmofhost (realhost),
9c0f2dac
RS
1239 (unsigned long) 0, &msg_data, &cred, schedule,
1240 (struct sockaddr_in *) 0,
1241 (struct sockaddr_in *) 0,
1242 "KPOPV0.1");
1243 free ((char *) ticket);
1244 if (rem != KSUCCESS)
1245 {
1246 strcpy (pop_error, KRB_ERROR);
1247 strncat (pop_error, krb_err_txt[rem],
1248 ERROR_MAX - sizeof (KRB_ERROR));
de5c39cf 1249 CLOSESOCKET (sock);
9c0f2dac
RS
1250 return (-1);
1251 }
a27738b6 1252#endif /* KERBEROS5 */
9c0f2dac
RS
1253 }
1254#endif /* KERBEROS */
1255
1256 return (sock);
1257} /* socket_connection */
1258
1259/*
60b0a379 1260 * Function: pop_getline
9c0f2dac
RS
1261 *
1262 * Purpose: Get a line of text from the connection and return a
1263 * pointer to it. The carriage return and linefeed at the end of
1264 * the line are stripped, but periods at the beginnings of lines
1265 * are NOT dealt with in any special way.
1266 *
1267 * Arguments:
1268 * server The server from which to get the line of text.
1269 *
d89d0243
KH
1270 * Returns: The number of characters in the line, which is returned in
1271 * LINE, not including the final null. A return value of 0
1272 * indicates a blank line. A negative return value indicates an
1273 * error (in which case the contents of LINE are undefined. In
1274 * case of error, an error message is copied into pop_error.
9c0f2dac 1275 *
60b0a379 1276 * Notes: The line returned is overwritten with each call to pop_getline.
9c0f2dac
RS
1277 *
1278 * Side effects: Closes the connection on error.
d89d0243
KH
1279 *
1280 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
9c0f2dac 1281 */
d89d0243 1282static int
873fbd0b 1283pop_getline (popserver server, char **line)
9c0f2dac
RS
1284{
1285#define GETLINE_ERROR "Error reading from server: "
1286
1287 int ret;
b6606ad8
RS
1288 int search_offset = 0;
1289
9c0f2dac
RS
1290 if (server->data)
1291 {
d89d0243
KH
1292 char *cp = find_crlf (server->buffer + server->buffer_index,
1293 server->data);
9c0f2dac
RS
1294 if (cp)
1295 {
1296 int found;
1297 int data_used;
1298
1299 found = server->buffer_index;
1300 data_used = (cp + 2) - server->buffer - found;
80b2cbf2 1301
9c0f2dac
RS
1302 *cp = '\0'; /* terminate the string to be returned */
1303 server->data -= data_used;
1304 server->buffer_index += data_used;
1305
1306 if (pop_debug)
d89d0243
KH
1307 /* Embedded nulls will truncate this output prematurely,
1308 but that's OK because it's just for debugging anyway. */
9c0f2dac 1309 fprintf (stderr, "<<< %s\n", server->buffer + found);
d89d0243
KH
1310 *line = server->buffer + found;
1311 return (data_used - 2);
9c0f2dac
RS
1312 }
1313 else
1314 {
72af86bd
AS
1315 memmove (server->buffer, server->buffer + server->buffer_index,
1316 server->data);
b6606ad8
RS
1317 /* Record the fact that we've searched the data already in
1318 the buffer for a CRLF, so that when we search below, we
1319 don't have to search the same data twice. There's a "-
1320 1" here to account for the fact that the last character
1321 of the data we have may be the CR of a CRLF pair, of
1322 which we haven't read the second half yet, so we may have
1323 to search it again when we read more data. */
1324 search_offset = server->data - 1;
9c0f2dac
RS
1325 server->buffer_index = 0;
1326 }
1327 }
1328 else
1329 {
1330 server->buffer_index = 0;
1331 }
1332
1333 while (1)
1334 {
bbcac09c
RS
1335 /* There's a "- 1" here to leave room for the null that we put
1336 at the end of the read data below. We put the null there so
1337 that find_crlf knows where to stop when we call it. */
1338 if (server->data == server->buffer_size - 1)
9c0f2dac 1339 {
bbcac09c
RS
1340 server->buffer_size += GETLINE_INCR;
1341 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1342 if (! server->buffer)
9c0f2dac 1343 {
bbcac09c
RS
1344 strcpy (pop_error, "Out of memory in pop_getline");
1345 pop_trash (server);
1346 return (-1);
0ea95737 1347 }
0ea95737 1348 }
bbcac09c
RS
1349 ret = RECV (server->file, server->buffer + server->data,
1350 server->buffer_size - server->data - 1, 0);
9c0f2dac
RS
1351 if (ret < 0)
1352 {
1353 strcpy (pop_error, GETLINE_ERROR);
1354 strncat (pop_error, strerror (errno),
1355 ERROR_MAX - sizeof (GETLINE_ERROR));
1356 pop_trash (server);
d89d0243 1357 return (-1);
9c0f2dac
RS
1358 }
1359 else if (ret == 0)
1360 {
60b0a379 1361 strcpy (pop_error, "Unexpected EOF from server in pop_getline");
9c0f2dac 1362 pop_trash (server);
d89d0243 1363 return (-1);
9c0f2dac
RS
1364 }
1365 else
1366 {
7a481e50 1367 char *cp;
9c0f2dac 1368 server->data += ret;
7a481e50 1369 server->buffer[server->data] = '\0';
80b2cbf2 1370
d89d0243
KH
1371 cp = find_crlf (server->buffer + search_offset,
1372 server->data - search_offset);
9c0f2dac
RS
1373 if (cp)
1374 {
1375 int data_used = (cp + 2) - server->buffer;
1376 *cp = '\0';
1377 server->data -= data_used;
1378 server->buffer_index = data_used;
1379
1380 if (pop_debug)
1381 fprintf (stderr, "<<< %s\n", server->buffer);
d89d0243
KH
1382 *line = server->buffer;
1383 return (data_used - 2);
9c0f2dac 1384 }
a8f44d07
RS
1385 /* As above, the "- 1" here is to account for the fact that
1386 we may have read a CR without its accompanying LF. */
1387 search_offset += ret - 1;
9c0f2dac
RS
1388 }
1389 }
1390
1391 /* NOTREACHED */
1392}
1393
1394/*
1395 * Function: sendline
1396 *
1397 * Purpose: Sends a line of text to the POP server. The line of text
1398 * passed into this function should NOT have the carriage return
1399 * and linefeed on the end of it. Periods at beginnings of lines
1400 * will NOT be treated specially by this function.
1401 *
1402 * Arguments:
1403 * server The server to which to send the text.
1404 * line The line of text to send.
1405 *
1406 * Return value: Upon successful completion, a value of 0 will be
1407 * returned. Otherwise, a non-zero value will be returned, and
1408 * an error will be copied into pop_error.
1409 *
1410 * Side effects: Closes the connection on error.
1411 */
1412static int
988e88ab 1413sendline (popserver server, const char *line)
9c0f2dac
RS
1414{
1415#define SENDLINE_ERROR "Error writing to POP server: "
1416 int ret;
ec641d50
KR
1417 char *buf;
1418
1419 /* Combine the string and the CR-LF into one buffer. Otherwise, two
1420 reasonable network stack optimizations, Nagle's algorithm and
1421 delayed acks, combine to delay us a fraction of a second on every
1422 message we send. (Movemail writes line without \r\n, client
1423 kernel sends packet, server kernel delays the ack to see if it
1424 can combine it with data, movemail writes \r\n, client kernel
1425 waits because it has unacked data already in its outgoing queue,
1426 client kernel eventually times out and sends.)
1427
1428 This can be something like 0.2s per command, which can add up
1429 over a few dozen messages, and is a big chunk of the time we
1430 spend fetching mail from a server close by. */
1431 buf = alloca (strlen (line) + 3);
1432 strcpy (buf, line);
1433 strcat (buf, "\r\n");
1434 ret = fullwrite (server->file, buf, strlen (buf));
9c0f2dac
RS
1435
1436 if (ret < 0)
1437 {
1438 pop_trash (server);
1439 strcpy (pop_error, SENDLINE_ERROR);
1440 strncat (pop_error, strerror (errno),
1441 ERROR_MAX - sizeof (SENDLINE_ERROR));
1442 return (ret);
1443 }
1444
1445 if (pop_debug)
1446 fprintf (stderr, ">>> %s\n", line);
1447
1448 return (0);
1449}
1450
1451/*
1452 * Procedure: fullwrite
1453 *
1454 * Purpose: Just like write, but keeps trying until the entire string
1455 * has been written.
1456 *
1457 * Return value: Same as write. Pop_error is not set.
1458 */
1459static int
873fbd0b 1460fullwrite (int fd, char *buf, int nbytes)
9c0f2dac
RS
1461{
1462 char *cp;
9d3f4cee 1463 int ret = 0;
9c0f2dac
RS
1464
1465 cp = buf;
9d3f4cee 1466 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0))
9c0f2dac
RS
1467 {
1468 cp += ret;
1469 nbytes -= ret;
1470 }
1471
1472 return (ret);
1473}
1474
1475/*
1476 * Procedure getok
1477 *
1478 * Purpose: Reads a line from the server. If the return indicator is
1479 * positive, return with a zero exit status. If not, return with
1480 * a negative exit status.
1481 *
1482 * Arguments:
1483 * server The server to read from.
80b2cbf2 1484 *
9c0f2dac
RS
1485 * Returns: 0 for success, else for failure and puts error in pop_error.
1486 *
8e6208c5 1487 * Side effects: On failure, may make the connection unusable.
9c0f2dac
RS
1488 */
1489static int
873fbd0b 1490getok (popserver server)
9c0f2dac
RS
1491{
1492 char *fromline;
1493
60b0a379 1494 if (pop_getline (server, &fromline) < 0)
9c0f2dac
RS
1495 {
1496 return (-1);
1497 }
1498
1499 if (! strncmp (fromline, "+OK", 3))
1500 return (0);
1501 else if (! strncmp (fromline, "-ERR", 4))
1502 {
1503 strncpy (pop_error, fromline, ERROR_MAX);
1504 pop_error[ERROR_MAX-1] = '\0';
1505 return (-1);
1506 }
1507 else
1508 {
1509 strcpy (pop_error,
1510 "Unexpected response from server; expecting +OK or -ERR");
1511 pop_trash (server);
1512 return (-1);
1513 }
80b2cbf2 1514}
9c0f2dac
RS
1515
1516#if 0
1517/*
1518 * Function: gettermination
1519 *
1520 * Purpose: Gets the next line and verifies that it is a termination
1521 * line (nothing but a dot).
1522 *
1523 * Return value: 0 on success, non-zero with pop_error set on error.
1524 *
1525 * Side effects: Closes the connection on error.
1526 */
1527static int
1528gettermination (server)
1529 popserver server;
1530{
1531 char *fromserver;
1532
60b0a379 1533 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
1534 return (-1);
1535
1536 if (strcmp (fromserver, "."))
1537 {
1538 strcpy (pop_error,
1539 "Unexpected response from server in gettermination");
1540 pop_trash (server);
1541 return (-1);
1542 }
1543
1544 return (0);
1545}
1546#endif
1547
1548/*
1549 * Function pop_close
1550 *
1551 * Purpose: Close a pop connection, sending a "RSET" command to try to
1552 * preserve any changes that were made and a "QUIT" command to
1553 * try to get the server to quit, but ignoring any responses that
1554 * are received.
1555 *
8e6208c5 1556 * Side effects: The server is unusable after this function returns.
9c0f2dac
RS
1557 * Changes made to the maildrop since the session was started (or
1558 * since the last pop_reset) may be lost.
1559 */
80b2cbf2 1560void
873fbd0b 1561pop_close (popserver server)
9c0f2dac
RS
1562{
1563 pop_trash (server);
1564 free ((char *) server);
1565
1566 return;
1567}
1568
1569/*
1570 * Function: pop_trash
1571 *
1572 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
4d90eee4 1573 * memory associated with the server. It is valid to call
9c0f2dac
RS
1574 * pop_close or pop_quit after this function has been called.
1575 */
1576static void
873fbd0b 1577pop_trash (popserver server)
9c0f2dac
RS
1578{
1579 if (server->file >= 0)
1580 {
c2668a61
RS
1581 /* avoid recursion; sendline can call pop_trash */
1582 if (server->trash_started)
1583 return;
1584 server->trash_started = 1;
de5c39cf 1585
9c0f2dac
RS
1586 sendline (server, "RSET");
1587 sendline (server, "QUIT");
1588
de5c39cf 1589 CLOSESOCKET (server->file);
9c0f2dac
RS
1590 server->file = -1;
1591 if (server->buffer)
1592 {
1593 free (server->buffer);
1594 server->buffer = 0;
1595 }
1596 }
c2668a61
RS
1597
1598#ifdef WINDOWSNT
1599 if (have_winsock)
1600 WSACleanup ();
1601#endif
9c0f2dac
RS
1602}
1603
d89d0243
KH
1604/* Return a pointer to the first CRLF in IN_STRING, which can contain
1605 embedded nulls and has LEN characters in it not including the final
1606 null, or 0 if it does not contain one. */
9c0f2dac
RS
1607
1608static char *
873fbd0b 1609find_crlf (char *in_string, int len)
9c0f2dac 1610{
d89d0243 1611 while (len--)
9c0f2dac 1612 {
d89d0243 1613 if (*in_string == '\r')
8148baf9
RS
1614 {
1615 if (*++in_string == '\n')
1616 return (in_string - 1);
1617 }
1618 else
1619 in_string++;
9c0f2dac 1620 }
d89d0243 1621 return (0);
9c0f2dac
RS
1622}
1623
1624#endif /* MAIL_USE_POP */