* erc-stamp.el (erc-echo-timestamp):
[emacs.git] / lib-src / pop.c
blob5e6623aaf8d0473bc0a3f1f6dde8b31406e4b506
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 Free Software Foundation, Inc.
4 Written by Jonathan Kamens, jik@security.ov.com.
6 This file is part of GNU Emacs.
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.
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.
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. */
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
30 #ifdef MAIL_USE_POP
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>
49 #ifdef sun
50 #include <malloc.h>
51 #endif /* sun */
53 #ifdef HESIOD
54 #include <hesiod.h>
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.
61 extern struct servent *hes_getservbyname (/* char *, char * */);
62 #endif
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
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 */
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 */
106 #ifndef WINDOWSNT
107 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
108 extern int h_errno;
109 #endif
110 #endif
112 #ifndef __P
113 # ifdef __STDC__
114 # define __P(a) a
115 # else
116 # define __P(a) ()
117 # endif /* __STDC__ */
118 #endif /* ! __P */
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));
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
141 char pop_error[ERROR_MAX];
142 int pop_debug = 0;
144 #ifndef min
145 #define min(a,b) (((a) < (b)) ? (a) : (b))
146 #endif
149 * Function: pop_open (char *host, char *username, char *password,
150 * int flags)
152 * Purpose: Establishes a connection with a post-office server, and
153 * completes the authorization portion of the session.
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
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.
177 popserver
178 pop_open (host, username, password, flags)
179 char *host;
180 char *username;
181 char *password;
182 int flags;
184 int sock;
185 popserver server;
187 /* Determine the user name */
188 if (! username)
190 username = getenv ("USER");
191 if (! (username && *username))
193 username = getlogin ();
194 if (! (username && *username))
196 struct passwd *passwd;
197 passwd = getpwuid (getuid ());
198 if (passwd && passwd->pw_name && *passwd->pw_name)
200 username = passwd->pw_name;
202 else
204 strcpy (pop_error, "Could not determine username");
205 return (0);
212 * Determine the mail host.
215 if (! host)
217 host = getenv ("MAILHOST");
220 #ifdef HESIOD
221 if ((! host) && (! (flags & POP_NO_HESIOD)))
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)
229 host = office->po_host;
230 username = office->po_name;
233 #endif
235 #ifdef MAILHOST
236 if (! host)
238 host = MAILHOST;
240 #endif
242 if (! host)
244 strcpy (pop_error, "Could not determine POP server");
245 return (0);
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
255 if ((! password) && (! DONT_NEED_PASSWORD))
257 if (! (flags & POP_NO_GETPASS))
259 password = getpass ("Enter POP password:");
261 if (! password)
263 strcpy (pop_error, "Could not determine POP password");
264 return (0);
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 **/
273 sock = socket_connection (host, flags);
274 if (sock == -1)
275 return (0);
277 server = (popserver) malloc (sizeof (struct _popserver));
278 if (! server)
280 strcpy (pop_error, "Out of memory in pop_open");
281 return (0);
283 server->buffer = (char *) malloc (GETLINE_MIN);
284 if (! server->buffer)
286 strcpy (pop_error, "Out of memory in pop_open");
287 free ((char *) server);
288 return (0);
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;
298 if (getok (server))
299 return (0);
302 * I really shouldn't use the pop_error variable like this, but....
304 if (strlen (username) > ERROR_MAX - 6)
306 pop_close (server);
307 strcpy (pop_error,
308 "Username too long; recompile pop.c with larger ERROR_MAX");
309 return (0);
311 sprintf (pop_error, "USER %s", username);
313 if (sendline (server, pop_error) || getok (server))
315 return (0);
318 if (strlen (password) > ERROR_MAX - 6)
320 pop_close (server);
321 strcpy (pop_error,
322 "Password too long; recompile pop.c with larger ERROR_MAX");
323 return (0);
325 sprintf (pop_error, "PASS %s", password);
327 if (sendline (server, pop_error) || getok (server))
329 return (0);
332 return (server);
336 * Function: pop_stat
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.
342 * Return value: 0 on success, or non-zero with an error in pop_error
343 * in failure.
345 * Side effects: On failure, may make further operations on the
346 * connection impossible.
349 pop_stat (server, count, size)
350 popserver server;
351 int *count;
352 int *size;
354 char *fromserver;
356 if (server->in_multi)
358 strcpy (pop_error, "In multi-line query in pop_stat");
359 return (-1);
362 if (sendline (server, "STAT") || (pop_getline (server, &fromserver) < 0))
363 return (-1);
365 if (strncmp (fromserver, "+OK ", 4))
367 if (0 == strncmp (fromserver, "-ERR", 4))
369 strncpy (pop_error, fromserver, ERROR_MAX);
371 else
373 strcpy (pop_error,
374 "Unexpected response from POP server in pop_stat");
375 pop_trash (server);
377 return (-1);
380 *count = atoi (&fromserver[4]);
382 fromserver = index (&fromserver[4], ' ');
383 if (! fromserver)
385 strcpy (pop_error,
386 "Badly formatted response from server in pop_stat");
387 pop_trash (server);
388 return (-1);
391 *size = atoi (fromserver + 1);
393 return (0);
397 * Function: pop_list
399 * Purpose: Performs the POP "list" command and returns (in value
400 * parameters) two malloc'd zero-terminated arrays -- one of
401 * message IDs, and a parallel one of sizes.
403 * Arguments:
404 * server The pop connection to talk to.
405 * message The number of the one message about which to get
406 * information, or 0 to get information about all
407 * messages.
409 * Return value: 0 on success, non-zero with error in pop_error on
410 * failure.
412 * Side effects: On failure, may make further operations on the
413 * connection impossible.
416 pop_list (server, message, IDs, sizes)
417 popserver server;
418 int message;
419 int **IDs;
420 int **sizes;
422 int how_many, i;
423 char *fromserver;
425 if (server->in_multi)
427 strcpy (pop_error, "In multi-line query in pop_list");
428 return (-1);
431 if (message)
432 how_many = 1;
433 else
435 int count, size;
436 if (pop_stat (server, &count, &size))
437 return (-1);
438 how_many = count;
441 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
442 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
443 if (! (*IDs && *sizes))
445 strcpy (pop_error, "Out of memory in pop_list");
446 return (-1);
449 if (message)
451 sprintf (pop_error, "LIST %d", message);
452 if (sendline (server, pop_error))
454 free ((char *) *IDs);
455 free ((char *) *sizes);
456 return (-1);
458 if (pop_getline (server, &fromserver) < 0)
460 free ((char *) *IDs);
461 free ((char *) *sizes);
462 return (-1);
464 if (strncmp (fromserver, "+OK ", 4))
466 if (! strncmp (fromserver, "-ERR", 4))
467 strncpy (pop_error, fromserver, ERROR_MAX);
468 else
470 strcpy (pop_error,
471 "Unexpected response from server in pop_list");
472 pop_trash (server);
474 free ((char *) *IDs);
475 free ((char *) *sizes);
476 return (-1);
478 (*IDs)[0] = atoi (&fromserver[4]);
479 fromserver = index (&fromserver[4], ' ');
480 if (! fromserver)
482 strcpy (pop_error,
483 "Badly formatted response from server in pop_list");
484 pop_trash (server);
485 free ((char *) *IDs);
486 free ((char *) *sizes);
487 return (-1);
489 (*sizes)[0] = atoi (fromserver);
490 (*IDs)[1] = (*sizes)[1] = 0;
491 return (0);
493 else
495 if (pop_multi_first (server, "LIST", &fromserver))
497 free ((char *) *IDs);
498 free ((char *) *sizes);
499 return (-1);
501 for (i = 0; i < how_many; i++)
503 if (pop_multi_next (server, &fromserver) <= 0)
505 free ((char *) *IDs);
506 free ((char *) *sizes);
507 return (-1);
509 (*IDs)[i] = atoi (fromserver);
510 fromserver = index (fromserver, ' ');
511 if (! fromserver)
513 strcpy (pop_error,
514 "Badly formatted response from server in pop_list");
515 free ((char *) *IDs);
516 free ((char *) *sizes);
517 pop_trash (server);
518 return (-1);
520 (*sizes)[i] = atoi (fromserver);
522 if (pop_multi_next (server, &fromserver) < 0)
524 free ((char *) *IDs);
525 free ((char *) *sizes);
526 return (-1);
528 else if (fromserver)
530 strcpy (pop_error,
531 "Too many response lines from server in pop_list");
532 free ((char *) *IDs);
533 free ((char *) *sizes);
534 return (-1);
536 (*IDs)[i] = (*sizes)[i] = 0;
537 return (0);
542 * Function: pop_retrieve
544 * Purpose: Retrieve a specified message from the maildrop.
546 * Arguments:
547 * server The server to retrieve from.
548 * message The message number to retrieve.
549 * markfrom
550 * If true, then mark the string "From " at the beginning
551 * of lines with '>'.
552 * msg_buf Output parameter to which a buffer containing the
553 * message is assigned.
555 * Return value: The number of bytes in msg_buf, which may contain
556 * embedded nulls, not including its final null, or -1 on error
557 * with pop_error set.
559 * Side effects: May kill connection on error.
562 pop_retrieve (server, message, markfrom, msg_buf)
563 popserver server;
564 int message;
565 int markfrom;
566 char **msg_buf;
568 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
569 char *ptr, *fromserver;
570 int ret;
572 if (server->in_multi)
574 strcpy (pop_error, "In multi-line query in pop_retrieve");
575 return (-1);
578 if (pop_list (server, message, &IDs, &sizes))
579 return (-1);
581 if (pop_retrieve_first (server, message, &fromserver))
583 return (-1);
587 * The "5" below is an arbitrary constant -- I assume that if
588 * there are "From" lines in the text to be marked, there
589 * probably won't be more than 5 of them. If there are, I
590 * allocate more space for them below.
592 bufsize = sizes[0] + (markfrom ? 5 : 0);
593 ptr = (char *)malloc (bufsize);
594 free ((char *) IDs);
595 free ((char *) sizes);
597 if (! ptr)
599 strcpy (pop_error, "Out of memory in pop_retrieve");
600 pop_retrieve_flush (server);
601 return (-1);
604 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0)
606 if (! fromserver)
608 ptr[cp] = '\0';
609 *msg_buf = ptr;
610 return (cp);
612 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
613 fromserver[2] == 'o' && fromserver[3] == 'm' &&
614 fromserver[4] == ' ')
616 if (++fromcount == 5)
618 bufsize += 5;
619 ptr = (char *)realloc (ptr, bufsize);
620 if (! ptr)
622 strcpy (pop_error, "Out of memory in pop_retrieve");
623 pop_retrieve_flush (server);
624 return (-1);
626 fromcount = 0;
628 ptr[cp++] = '>';
630 bcopy (fromserver, &ptr[cp], ret);
631 cp += ret;
632 ptr[cp++] = '\n';
635 free (ptr);
636 return (-1);
640 pop_retrieve_first (server, message, response)
641 popserver server;
642 int message;
643 char **response;
645 sprintf (pop_error, "RETR %d", message);
646 return (pop_multi_first (server, pop_error, response));
650 Returns a negative number on error, 0 to indicate that the data has
651 all been read (i.e., the server has returned a "." termination
652 line), or a positive number indicating the number of bytes in the
653 returned buffer (which is null-terminated and may contain embedded
654 nulls, but the returned bytecount doesn't include the final null).
658 pop_retrieve_next (server, line)
659 popserver server;
660 char **line;
662 return (pop_multi_next (server, line));
666 pop_retrieve_flush (server)
667 popserver server;
669 return (pop_multi_flush (server));
673 pop_top_first (server, message, lines, response)
674 popserver server;
675 int message, lines;
676 char **response;
678 sprintf (pop_error, "TOP %d %d", message, lines);
679 return (pop_multi_first (server, pop_error, response));
683 Returns a negative number on error, 0 to indicate that the data has
684 all been read (i.e., the server has returned a "." termination
685 line), or a positive number indicating the number of bytes in the
686 returned buffer (which is null-terminated and may contain embedded
687 nulls, but the returned bytecount doesn't include the final null).
691 pop_top_next (server, line)
692 popserver server;
693 char **line;
695 return (pop_multi_next (server, line));
699 pop_top_flush (server)
700 popserver server;
702 return (pop_multi_flush (server));
706 pop_multi_first (server, command, response)
707 popserver server;
708 char *command;
709 char **response;
711 if (server->in_multi)
713 strcpy (pop_error,
714 "Already in multi-line query in pop_multi_first");
715 return (-1);
718 if (sendline (server, command) || (pop_getline (server, response) < 0))
720 return (-1);
723 if (0 == strncmp (*response, "-ERR", 4))
725 strncpy (pop_error, *response, ERROR_MAX);
726 return (-1);
728 else if (0 == strncmp (*response, "+OK", 3))
730 for (*response += 3; **response == ' '; (*response)++) /* empty */;
731 server->in_multi = 1;
732 return (0);
734 else
736 strcpy (pop_error,
737 "Unexpected response from server in pop_multi_first");
738 return (-1);
743 Read the next line of data from SERVER and place a pointer to it
744 into LINE. Return -1 on error, 0 if there are no more lines to read
745 (i.e., the server has returned a line containing only "."), or a
746 positive number indicating the number of bytes in the LINE buffer
747 (not including the final null). The data in that buffer may contain
748 embedded nulls, but does not contain the final CRLF. When returning
749 0, LINE is set to null. */
752 pop_multi_next (server, line)
753 popserver server;
754 char **line;
756 char *fromserver;
757 int ret;
759 if (! server->in_multi)
761 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
762 return (-1);
765 if ((ret = pop_getline (server, &fromserver)) < 0)
767 return (-1);
770 if (fromserver[0] == '.')
772 if (! fromserver[1])
774 *line = 0;
775 server->in_multi = 0;
776 return (0);
778 else
780 *line = fromserver + 1;
781 return (ret - 1);
784 else
786 *line = fromserver;
787 return (ret);
792 pop_multi_flush (server)
793 popserver server;
795 char *line;
796 int ret;
798 if (! server->in_multi)
800 return (0);
803 while ((ret = pop_multi_next (server, &line)))
805 if (ret < 0)
806 return (-1);
809 return (0);
812 /* Function: pop_delete
814 * Purpose: Delete a specified message.
816 * Arguments:
817 * server Server from which to delete the message.
818 * message Message to delete.
820 * Return value: 0 on success, non-zero with error in pop_error
821 * otherwise.
824 pop_delete (server, message)
825 popserver server;
826 int message;
828 if (server->in_multi)
830 strcpy (pop_error, "In multi-line query in pop_delete");
831 return (-1);
834 sprintf (pop_error, "DELE %d", message);
836 if (sendline (server, pop_error) || getok (server))
837 return (-1);
839 return (0);
843 * Function: pop_noop
845 * Purpose: Send a noop command to the server.
847 * Argument:
848 * server The server to send to.
850 * Return value: 0 on success, non-zero with error in pop_error
851 * otherwise.
853 * Side effects: Closes connection on error.
856 pop_noop (server)
857 popserver server;
859 if (server->in_multi)
861 strcpy (pop_error, "In multi-line query in pop_noop");
862 return (-1);
865 if (sendline (server, "NOOP") || getok (server))
866 return (-1);
868 return (0);
872 * Function: pop_last
874 * Purpose: Find out the highest seen message from the server.
876 * Arguments:
877 * server The server.
879 * Return value: If successful, the highest seen message, which is
880 * greater than or equal to 0. Otherwise, a negative number with
881 * the error explained in pop_error.
883 * Side effects: Closes the connection on error.
886 pop_last (server)
887 popserver server;
889 char *fromserver;
891 if (server->in_multi)
893 strcpy (pop_error, "In multi-line query in pop_last");
894 return (-1);
897 if (sendline (server, "LAST"))
898 return (-1);
900 if (pop_getline (server, &fromserver) < 0)
901 return (-1);
903 if (! strncmp (fromserver, "-ERR", 4))
905 strncpy (pop_error, fromserver, ERROR_MAX);
906 return (-1);
908 else if (strncmp (fromserver, "+OK ", 4))
910 strcpy (pop_error, "Unexpected response from server in pop_last");
911 pop_trash (server);
912 return (-1);
914 else
916 return (atoi (&fromserver[4]));
921 * Function: pop_reset
923 * Purpose: Reset the server to its initial connect state
925 * Arguments:
926 * server The server.
928 * Return value: 0 for success, non-0 with error in pop_error
929 * otherwise.
931 * Side effects: Closes the connection on error.
934 pop_reset (server)
935 popserver server;
937 if (pop_retrieve_flush (server))
939 return (-1);
942 if (sendline (server, "RSET") || getok (server))
943 return (-1);
945 return (0);
949 * Function: pop_quit
951 * Purpose: Quit the connection to the server,
953 * Arguments:
954 * server The server to quit.
956 * Return value: 0 for success, non-zero otherwise with error in
957 * pop_error.
959 * Side Effects: The popserver passed in is unusable after this
960 * function is called, even if an error occurs.
963 pop_quit (server)
964 popserver server;
966 int ret = 0;
968 if (server->file >= 0)
970 if (pop_retrieve_flush (server))
972 ret = -1;
975 if (sendline (server, "QUIT") || getok (server))
977 ret = -1;
980 close (server->file);
983 if (server->buffer)
984 free (server->buffer);
985 free ((char *) server);
987 return (ret);
990 #ifdef WINDOWSNT
991 static int have_winsock = 0;
992 #endif
995 * Function: socket_connection
997 * Purpose: Opens the network connection with the mail host, without
998 * doing any sort of I/O with it or anything.
1000 * Arguments:
1001 * host The host to which to connect.
1002 * flags Option flags.
1004 * Return value: A file descriptor indicating the connection, or -1
1005 * indicating failure, in which case an error has been copied
1006 * into pop_error.
1008 static int
1009 socket_connection (host, flags)
1010 char *host;
1011 int flags;
1013 #ifdef HAVE_GETADDRINFO
1014 struct addrinfo *res, *it;
1015 struct addrinfo hints;
1016 int ret;
1017 #else /* !HAVE_GETADDRINFO */
1018 struct hostent *hostent;
1019 #endif
1020 struct servent *servent;
1021 struct sockaddr_in addr;
1022 char found_port = 0;
1023 char *service;
1024 int sock;
1025 char *realhost;
1026 #ifdef KERBEROS
1027 #ifdef KERBEROS5
1028 krb5_error_code rem;
1029 krb5_context kcontext = 0;
1030 krb5_auth_context auth_context = 0;
1031 krb5_ccache ccdef;
1032 krb5_principal client, server;
1033 krb5_error *err_ret;
1034 register char *cp;
1035 #else
1036 KTEXT ticket;
1037 MSG_DAT msg_data;
1038 CREDENTIALS cred;
1039 Key_schedule schedule;
1040 int rem;
1041 #endif /* KERBEROS5 */
1042 #endif /* KERBEROS */
1044 int try_count = 0;
1045 int connect_ok;
1047 #ifdef WINDOWSNT
1049 WSADATA winsockData;
1050 if (WSAStartup (0x101, &winsockData) == 0)
1051 have_winsock = 1;
1053 #endif
1055 bzero ((char *) &addr, sizeof (addr));
1056 addr.sin_family = AF_INET;
1058 /** "kpop" service is never used: look for 20060515 to see why **/
1059 #ifdef KERBEROS
1060 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1061 #else
1062 service = POP_SERVICE;
1063 #endif
1065 #ifdef HESIOD
1066 if (! (flags & POP_NO_HESIOD))
1068 servent = hes_getservbyname (service, "tcp");
1069 if (servent)
1071 addr.sin_port = servent->s_port;
1072 found_port = 1;
1075 #endif
1076 if (! found_port)
1078 servent = getservbyname (service, "tcp");
1079 if (servent)
1081 addr.sin_port = servent->s_port;
1083 else
1085 /** "kpop" service is never used: look for 20060515 to see why **/
1086 #ifdef KERBEROS
1087 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ?
1088 POP_PORT : KPOP_PORT);
1089 #else
1090 addr.sin_port = htons (POP_PORT);
1091 #endif
1095 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1097 sock = socket (PF_INET, SOCK_STREAM, 0);
1098 if (sock < 0)
1100 strcpy (pop_error, POP_SOCKET_ERROR);
1101 strncat (pop_error, strerror (errno),
1102 ERROR_MAX - sizeof (POP_SOCKET_ERROR));
1103 return (-1);
1107 #ifdef HAVE_GETADDRINFO
1108 memset (&hints, 0, sizeof(hints));
1109 hints.ai_socktype = SOCK_STREAM;
1110 hints.ai_flags = AI_CANONNAME;
1111 hints.ai_family = AF_INET;
1114 ret = getaddrinfo (host, service, &hints, &res);
1115 try_count++;
1116 if (ret != 0 && (ret != EAI_AGAIN || try_count == 5))
1118 strcpy (pop_error, "Could not determine POP server's address");
1119 return (-1);
1121 } while (ret != 0);
1123 if (ret == 0)
1125 it = res;
1126 while (it)
1128 if (it->ai_addrlen == sizeof (addr))
1130 struct sockaddr_in *in_a = (struct sockaddr_in *) it->ai_addr;
1131 bcopy (&in_a->sin_addr, (char *) &addr.sin_addr,
1132 sizeof (addr.sin_addr));
1133 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1134 break;
1136 it = it->ai_next;
1138 connect_ok = it != NULL;
1139 if (connect_ok)
1141 realhost = alloca (strlen (it->ai_canonname) + 1);
1142 strcpy (realhost, it->ai_canonname);
1144 freeaddrinfo (res);
1146 #else /* !HAVE_GETADDRINFO */
1149 hostent = gethostbyname (host);
1150 try_count++;
1151 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1153 strcpy (pop_error, "Could not determine POP server's address");
1154 return (-1);
1156 } while (! hostent);
1158 while (*hostent->h_addr_list)
1160 bcopy (*hostent->h_addr_list, (char *) &addr.sin_addr,
1161 hostent->h_length);
1162 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1163 break;
1164 hostent->h_addr_list++;
1166 connect_ok = *hostent->h_addr_list != NULL;
1167 if (! connect_ok)
1169 realhost = alloca (strlen (hostent->h_name) + 1);
1170 strcpy (realhost, hostent->h_name);
1173 #endif /* !HAVE_GETADDRINFO */
1175 #define CONNECT_ERROR "Could not connect to POP server: "
1177 if (! connect_ok)
1179 CLOSESOCKET (sock);
1180 strcpy (pop_error, CONNECT_ERROR);
1181 strncat (pop_error, strerror (errno),
1182 ERROR_MAX - sizeof (CONNECT_ERROR));
1183 return (-1);
1187 #ifdef KERBEROS
1189 #define KRB_ERROR "Kerberos error connecting to POP server: "
1190 if (! (flags & POP_NO_KERBEROS))
1192 #ifdef KERBEROS5
1193 if ((rem = krb5_init_context (&kcontext)))
1195 krb5error:
1196 if (auth_context)
1197 krb5_auth_con_free (kcontext, auth_context);
1198 if (kcontext)
1199 krb5_free_context (kcontext);
1200 strcpy (pop_error, KRB_ERROR);
1201 strncat (pop_error, error_message (rem),
1202 ERROR_MAX - sizeof(KRB_ERROR));
1203 CLOSESOCKET (sock);
1204 return (-1);
1207 if ((rem = krb5_auth_con_init (kcontext, &auth_context)))
1208 goto krb5error;
1210 if (rem = krb5_cc_default (kcontext, &ccdef))
1211 goto krb5error;
1213 if (rem = krb5_cc_get_principal (kcontext, ccdef, &client))
1214 goto krb5error;
1216 for (cp = realhost; *cp; cp++)
1218 if (isupper (*cp))
1220 *cp = tolower (*cp);
1224 if (rem = krb5_sname_to_principal (kcontext, realhost,
1225 POP_SERVICE, FALSE, &server))
1226 goto krb5error;
1228 rem = krb5_sendauth (kcontext, &auth_context,
1229 (krb5_pointer) &sock, "KPOPV1.0", client, server,
1230 AP_OPTS_MUTUAL_REQUIRED,
1231 0, /* no checksum */
1232 0, /* no creds, use ccache instead */
1233 ccdef,
1234 &err_ret,
1235 0, /* don't need subsession key */
1236 0); /* don't need reply */
1237 krb5_free_principal (kcontext, server);
1238 if (rem)
1240 if (err_ret && err_ret->text.length)
1242 strcpy (pop_error, KRB_ERROR);
1243 strncat (pop_error, error_message (rem),
1244 ERROR_MAX - sizeof (KRB_ERROR));
1245 strncat (pop_error, " [server says '",
1246 ERROR_MAX - strlen (pop_error) - 1);
1247 strncat (pop_error, err_ret->text.data,
1248 min (ERROR_MAX - strlen (pop_error) - 1,
1249 err_ret->text.length));
1250 strncat (pop_error, "']",
1251 ERROR_MAX - strlen (pop_error) - 1);
1253 else
1255 strcpy (pop_error, KRB_ERROR);
1256 strncat (pop_error, error_message (rem),
1257 ERROR_MAX - sizeof (KRB_ERROR));
1259 if (err_ret)
1260 krb5_free_error (kcontext, err_ret);
1261 krb5_auth_con_free (kcontext, auth_context);
1262 krb5_free_context (kcontext);
1264 CLOSESOCKET (sock);
1265 return (-1);
1267 #else /* ! KERBEROS5 */
1268 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
1269 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1270 (char *) krb_realmofhost (realhost),
1271 (unsigned long) 0, &msg_data, &cred, schedule,
1272 (struct sockaddr_in *) 0,
1273 (struct sockaddr_in *) 0,
1274 "KPOPV0.1");
1275 free ((char *) ticket);
1276 if (rem != KSUCCESS)
1278 strcpy (pop_error, KRB_ERROR);
1279 strncat (pop_error, krb_err_txt[rem],
1280 ERROR_MAX - sizeof (KRB_ERROR));
1281 CLOSESOCKET (sock);
1282 return (-1);
1284 #endif /* KERBEROS5 */
1286 #endif /* KERBEROS */
1288 return (sock);
1289 } /* socket_connection */
1292 * Function: pop_getline
1294 * Purpose: Get a line of text from the connection and return a
1295 * pointer to it. The carriage return and linefeed at the end of
1296 * the line are stripped, but periods at the beginnings of lines
1297 * are NOT dealt with in any special way.
1299 * Arguments:
1300 * server The server from which to get the line of text.
1302 * Returns: The number of characters in the line, which is returned in
1303 * LINE, not including the final null. A return value of 0
1304 * indicates a blank line. A negative return value indicates an
1305 * error (in which case the contents of LINE are undefined. In
1306 * case of error, an error message is copied into pop_error.
1308 * Notes: The line returned is overwritten with each call to pop_getline.
1310 * Side effects: Closes the connection on error.
1312 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
1314 static int
1315 pop_getline (server, line)
1316 popserver server;
1317 char **line;
1319 #define GETLINE_ERROR "Error reading from server: "
1321 int ret;
1322 int search_offset = 0;
1324 if (server->data)
1326 char *cp = find_crlf (server->buffer + server->buffer_index,
1327 server->data);
1328 if (cp)
1330 int found;
1331 int data_used;
1333 found = server->buffer_index;
1334 data_used = (cp + 2) - server->buffer - found;
1336 *cp = '\0'; /* terminate the string to be returned */
1337 server->data -= data_used;
1338 server->buffer_index += data_used;
1340 if (pop_debug)
1341 /* Embedded nulls will truncate this output prematurely,
1342 but that's OK because it's just for debugging anyway. */
1343 fprintf (stderr, "<<< %s\n", server->buffer + found);
1344 *line = server->buffer + found;
1345 return (data_used - 2);
1347 else
1349 bcopy (server->buffer + server->buffer_index,
1350 server->buffer, server->data);
1351 /* Record the fact that we've searched the data already in
1352 the buffer for a CRLF, so that when we search below, we
1353 don't have to search the same data twice. There's a "-
1354 1" here to account for the fact that the last character
1355 of the data we have may be the CR of a CRLF pair, of
1356 which we haven't read the second half yet, so we may have
1357 to search it again when we read more data. */
1358 search_offset = server->data - 1;
1359 server->buffer_index = 0;
1362 else
1364 server->buffer_index = 0;
1367 while (1)
1369 /* There's a "- 1" here to leave room for the null that we put
1370 at the end of the read data below. We put the null there so
1371 that find_crlf knows where to stop when we call it. */
1372 if (server->data == server->buffer_size - 1)
1374 server->buffer_size += GETLINE_INCR;
1375 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1376 if (! server->buffer)
1378 strcpy (pop_error, "Out of memory in pop_getline");
1379 pop_trash (server);
1380 return (-1);
1383 ret = RECV (server->file, server->buffer + server->data,
1384 server->buffer_size - server->data - 1, 0);
1385 if (ret < 0)
1387 strcpy (pop_error, GETLINE_ERROR);
1388 strncat (pop_error, strerror (errno),
1389 ERROR_MAX - sizeof (GETLINE_ERROR));
1390 pop_trash (server);
1391 return (-1);
1393 else if (ret == 0)
1395 strcpy (pop_error, "Unexpected EOF from server in pop_getline");
1396 pop_trash (server);
1397 return (-1);
1399 else
1401 char *cp;
1402 server->data += ret;
1403 server->buffer[server->data] = '\0';
1405 cp = find_crlf (server->buffer + search_offset,
1406 server->data - search_offset);
1407 if (cp)
1409 int data_used = (cp + 2) - server->buffer;
1410 *cp = '\0';
1411 server->data -= data_used;
1412 server->buffer_index = data_used;
1414 if (pop_debug)
1415 fprintf (stderr, "<<< %s\n", server->buffer);
1416 *line = server->buffer;
1417 return (data_used - 2);
1419 /* As above, the "- 1" here is to account for the fact that
1420 we may have read a CR without its accompanying LF. */
1421 search_offset += ret - 1;
1425 /* NOTREACHED */
1429 * Function: sendline
1431 * Purpose: Sends a line of text to the POP server. The line of text
1432 * passed into this function should NOT have the carriage return
1433 * and linefeed on the end of it. Periods at beginnings of lines
1434 * will NOT be treated specially by this function.
1436 * Arguments:
1437 * server The server to which to send the text.
1438 * line The line of text to send.
1440 * Return value: Upon successful completion, a value of 0 will be
1441 * returned. Otherwise, a non-zero value will be returned, and
1442 * an error will be copied into pop_error.
1444 * Side effects: Closes the connection on error.
1446 static int
1447 sendline (server, line)
1448 popserver server;
1449 char *line;
1451 #define SENDLINE_ERROR "Error writing to POP server: "
1452 int ret;
1453 char *buf;
1455 /* Combine the string and the CR-LF into one buffer. Otherwise, two
1456 reasonable network stack optimizations, Nagle's algorithm and
1457 delayed acks, combine to delay us a fraction of a second on every
1458 message we send. (Movemail writes line without \r\n, client
1459 kernel sends packet, server kernel delays the ack to see if it
1460 can combine it with data, movemail writes \r\n, client kernel
1461 waits because it has unacked data already in its outgoing queue,
1462 client kernel eventually times out and sends.)
1464 This can be something like 0.2s per command, which can add up
1465 over a few dozen messages, and is a big chunk of the time we
1466 spend fetching mail from a server close by. */
1467 buf = alloca (strlen (line) + 3);
1468 strcpy (buf, line);
1469 strcat (buf, "\r\n");
1470 ret = fullwrite (server->file, buf, strlen (buf));
1472 if (ret < 0)
1474 pop_trash (server);
1475 strcpy (pop_error, SENDLINE_ERROR);
1476 strncat (pop_error, strerror (errno),
1477 ERROR_MAX - sizeof (SENDLINE_ERROR));
1478 return (ret);
1481 if (pop_debug)
1482 fprintf (stderr, ">>> %s\n", line);
1484 return (0);
1488 * Procedure: fullwrite
1490 * Purpose: Just like write, but keeps trying until the entire string
1491 * has been written.
1493 * Return value: Same as write. Pop_error is not set.
1495 static int
1496 fullwrite (fd, buf, nbytes)
1497 int fd;
1498 char *buf;
1499 int nbytes;
1501 char *cp;
1502 int ret = 0;
1504 cp = buf;
1505 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0))
1507 cp += ret;
1508 nbytes -= ret;
1511 return (ret);
1515 * Procedure getok
1517 * Purpose: Reads a line from the server. If the return indicator is
1518 * positive, return with a zero exit status. If not, return with
1519 * a negative exit status.
1521 * Arguments:
1522 * server The server to read from.
1524 * Returns: 0 for success, else for failure and puts error in pop_error.
1526 * Side effects: On failure, may make the connection unusable.
1528 static int
1529 getok (server)
1530 popserver server;
1532 char *fromline;
1534 if (pop_getline (server, &fromline) < 0)
1536 return (-1);
1539 if (! strncmp (fromline, "+OK", 3))
1540 return (0);
1541 else if (! strncmp (fromline, "-ERR", 4))
1543 strncpy (pop_error, fromline, ERROR_MAX);
1544 pop_error[ERROR_MAX-1] = '\0';
1545 return (-1);
1547 else
1549 strcpy (pop_error,
1550 "Unexpected response from server; expecting +OK or -ERR");
1551 pop_trash (server);
1552 return (-1);
1556 #if 0
1558 * Function: gettermination
1560 * Purpose: Gets the next line and verifies that it is a termination
1561 * line (nothing but a dot).
1563 * Return value: 0 on success, non-zero with pop_error set on error.
1565 * Side effects: Closes the connection on error.
1567 static int
1568 gettermination (server)
1569 popserver server;
1571 char *fromserver;
1573 if (pop_getline (server, &fromserver) < 0)
1574 return (-1);
1576 if (strcmp (fromserver, "."))
1578 strcpy (pop_error,
1579 "Unexpected response from server in gettermination");
1580 pop_trash (server);
1581 return (-1);
1584 return (0);
1586 #endif
1589 * Function pop_close
1591 * Purpose: Close a pop connection, sending a "RSET" command to try to
1592 * preserve any changes that were made and a "QUIT" command to
1593 * try to get the server to quit, but ignoring any responses that
1594 * are received.
1596 * Side effects: The server is unusable after this function returns.
1597 * Changes made to the maildrop since the session was started (or
1598 * since the last pop_reset) may be lost.
1600 void
1601 pop_close (server)
1602 popserver server;
1604 pop_trash (server);
1605 free ((char *) server);
1607 return;
1611 * Function: pop_trash
1613 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1614 * memory associated with the server. It is legal to call
1615 * pop_close or pop_quit after this function has been called.
1617 static void
1618 pop_trash (server)
1619 popserver server;
1621 if (server->file >= 0)
1623 /* avoid recursion; sendline can call pop_trash */
1624 if (server->trash_started)
1625 return;
1626 server->trash_started = 1;
1628 sendline (server, "RSET");
1629 sendline (server, "QUIT");
1631 CLOSESOCKET (server->file);
1632 server->file = -1;
1633 if (server->buffer)
1635 free (server->buffer);
1636 server->buffer = 0;
1640 #ifdef WINDOWSNT
1641 if (have_winsock)
1642 WSACleanup ();
1643 #endif
1646 /* Return a pointer to the first CRLF in IN_STRING, which can contain
1647 embedded nulls and has LEN characters in it not including the final
1648 null, or 0 if it does not contain one. */
1650 static char *
1651 find_crlf (in_string, len)
1652 char *in_string;
1653 int len;
1655 while (len--)
1657 if (*in_string == '\r')
1659 if (*++in_string == '\n')
1660 return (in_string - 1);
1662 else
1663 in_string++;
1665 return (0);
1668 #endif /* MAIL_USE_POP */
1670 /* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d
1671 (do not change this comment) */