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