src/xdisp.c (single_display_spec_string): Correct a FIXME comment.
[emacs.git] / lib-src / pop.c
blob426b39bd1fb4c34aef01161b16317ada6a9a37df
1 /* pop.c: client routines for talking to a POP3-protocol post-office server
3 Copyright (C) 1991, 1993, 1996-1997, 1999, 2001-2011
4 Free Software Foundation, Inc.
6 Author: Jonathan Kamens <jik@security.ov.com>
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 #ifdef HAVE_CONFIG_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 #endif
71 #include <unistd.h>
73 #ifdef KERBEROS
74 # ifdef HAVE_KRB5_H
75 # include <krb5.h>
76 # endif
77 # ifdef HAVE_KRB_H
78 # include <krb.h>
79 # else
80 # ifdef HAVE_KERBEROSIV_KRB_H
81 # include <kerberosIV/krb.h>
82 # else
83 # ifdef HAVE_KERBEROS_KRB_H
84 # include <kerberos/krb.h>
85 # endif
86 # endif
87 # endif
88 # ifdef HAVE_COM_ERR_H
89 # include <com_err.h>
90 # endif
91 #endif /* KERBEROS */
93 #include <min-max.h>
95 #ifdef KERBEROS
96 #ifndef KERBEROS5
97 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
98 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
99 struct sockaddr_in *, struct sockaddr_in *,
100 char * */);
101 extern char *krb_realmofhost (/* char * */);
102 #endif /* ! KERBEROS5 */
103 #endif /* KERBEROS */
105 #ifndef WINDOWSNT
106 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
107 extern int h_errno;
108 #endif
109 #endif
111 static int socket_connection (char *, int);
112 static int pop_getline (popserver, char **);
113 static int sendline (popserver, const char *);
114 static int fullwrite (int, char *, int);
115 static int getok (popserver);
116 #if 0
117 static int gettermination (popserver);
118 #endif
119 static void pop_trash (popserver);
120 static char *find_crlf (char *, int);
122 #define ERROR_MAX 160 /* a pretty arbitrary size, but needs
123 to be bigger than the original
124 value of 80 */
125 #define POP_PORT 110
126 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
127 #ifdef KERBEROS
128 #define KPOP_PORT 1109
129 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */
130 #endif
132 char pop_error[ERROR_MAX];
133 int pop_debug = 0;
136 * Function: pop_open (char *host, char *username, char *password,
137 * int flags)
139 * Purpose: Establishes a connection with a post-office server, and
140 * completes the authorization portion of the session.
142 * Arguments:
143 * host The server host with which the connection should be
144 * established. Optional. If omitted, internal
145 * heuristics will be used to determine the server host,
146 * if possible.
147 * username
148 * The username of the mail-drop to access. Optional.
149 * If omitted, internal heuristics will be used to
150 * determine the username, if possible.
151 * password
152 * The password to use for authorization. If omitted,
153 * internal heuristics will be used to determine the
154 * password, if possible.
155 * flags A bit mask containing flags controlling certain
156 * functions of the routine. Valid flags are defined in
157 * the file pop.h
159 * Return value: Upon successful establishment of a connection, a
160 * non-null popserver will be returned. Otherwise, null will be
161 * returned, and the string variable pop_error will contain an
162 * explanation of the error.
164 popserver
165 pop_open (char *host, char *username, char *password, int flags)
167 int sock;
168 popserver server;
170 /* Determine the user name */
171 if (! username)
173 username = getenv ("USER");
174 if (! (username && *username))
176 username = getlogin ();
177 if (! (username && *username))
179 struct passwd *passwd;
180 passwd = getpwuid (getuid ());
181 if (passwd && passwd->pw_name && *passwd->pw_name)
183 username = passwd->pw_name;
185 else
187 strcpy (pop_error, "Could not determine username");
188 return (0);
195 * Determine the mail host.
198 if (! host)
200 host = getenv ("MAILHOST");
203 #ifdef HESIOD
204 if ((! host) && (! (flags & POP_NO_HESIOD)))
206 struct hes_postoffice *office;
207 office = hes_getmailhost (username);
208 if (office && office->po_type && (! strcmp (office->po_type, "POP"))
209 && office->po_name && *office->po_name && office->po_host
210 && *office->po_host)
212 host = office->po_host;
213 username = office->po_name;
216 #endif
218 #ifdef MAILHOST
219 if (! host)
221 host = MAILHOST;
223 #endif
225 if (! host)
227 strcpy (pop_error, "Could not determine POP server");
228 return (0);
231 /* Determine the password */
232 #ifdef KERBEROS
233 #define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
234 #else
235 #define DONT_NEED_PASSWORD 0
236 #endif
238 if ((! password) && (! DONT_NEED_PASSWORD))
240 if (! (flags & POP_NO_GETPASS))
242 password = getpass ("Enter POP password:");
244 if (! password)
246 strcpy (pop_error, "Could not determine POP password");
247 return (0);
250 if (password) /* always true, detected 20060515 */
251 flags |= POP_NO_KERBEROS;
252 else
253 password = username; /* dead code, detected 20060515 */
254 /** "kpop" service is never used: look for 20060515 to see why **/
256 sock = socket_connection (host, flags);
257 if (sock == -1)
258 return (0);
260 server = (popserver) malloc (sizeof (struct _popserver));
261 if (! server)
263 strcpy (pop_error, "Out of memory in pop_open");
264 return (0);
266 server->buffer = (char *) malloc (GETLINE_MIN);
267 if (! server->buffer)
269 strcpy (pop_error, "Out of memory in pop_open");
270 free ((char *) server);
271 return (0);
274 server->file = sock;
275 server->data = 0;
276 server->buffer_index = 0;
277 server->buffer_size = GETLINE_MIN;
278 server->in_multi = 0;
279 server->trash_started = 0;
281 if (getok (server))
282 return (0);
285 * I really shouldn't use the pop_error variable like this, but....
287 if (strlen (username) > ERROR_MAX - 6)
289 pop_close (server);
290 strcpy (pop_error,
291 "Username too long; recompile pop.c with larger ERROR_MAX");
292 return (0);
294 sprintf (pop_error, "USER %s", username);
296 if (sendline (server, pop_error) || getok (server))
298 return (0);
301 if (strlen (password) > ERROR_MAX - 6)
303 pop_close (server);
304 strcpy (pop_error,
305 "Password too long; recompile pop.c with larger ERROR_MAX");
306 return (0);
308 sprintf (pop_error, "PASS %s", password);
310 if (sendline (server, pop_error) || getok (server))
312 return (0);
315 return (server);
319 * Function: pop_stat
321 * Purpose: Issue the STAT command to the server and return (in the
322 * value parameters) the number of messages in the maildrop and
323 * the total size of the maildrop.
325 * Return value: 0 on success, or non-zero with an error in pop_error
326 * in failure.
328 * Side effects: On failure, may make further operations on the
329 * connection impossible.
332 pop_stat (popserver server, int *count, int *size)
334 char *fromserver;
335 char *end_ptr;
337 if (server->in_multi)
339 strcpy (pop_error, "In multi-line query in pop_stat");
340 return (-1);
343 if (sendline (server, "STAT") || (pop_getline (server, &fromserver) < 0))
344 return (-1);
346 if (strncmp (fromserver, "+OK ", 4))
348 if (0 == strncmp (fromserver, "-ERR", 4))
350 strncpy (pop_error, fromserver, ERROR_MAX);
352 else
354 strcpy (pop_error,
355 "Unexpected response from POP server in pop_stat");
356 pop_trash (server);
358 return (-1);
361 errno = 0;
362 *count = strtol (&fromserver[4], &end_ptr, 10);
363 /* Check validity of string-to-integer conversion. */
364 if (fromserver + 4 == end_ptr || *end_ptr != ' ' || errno)
366 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
367 pop_trash (server);
368 return (-1);
371 fromserver = end_ptr;
373 errno = 0;
374 *size = strtol (fromserver + 1, &end_ptr, 10);
375 if (fromserver + 1 == end_ptr || errno)
377 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
378 pop_trash (server);
379 return (-1);
382 return (0);
386 * Function: pop_list
388 * Purpose: Performs the POP "list" command and returns (in value
389 * parameters) two malloc'd zero-terminated arrays -- one of
390 * message IDs, and a parallel one of sizes.
392 * Arguments:
393 * server The pop connection to talk to.
394 * message The number of the one message about which to get
395 * information, or 0 to get information about all
396 * messages.
398 * Return value: 0 on success, non-zero with error in pop_error on
399 * failure.
401 * Side effects: On failure, may make further operations on the
402 * connection impossible.
405 pop_list (popserver server, int message, int **IDs, int **sizes)
407 int how_many, i;
408 char *fromserver;
410 if (server->in_multi)
412 strcpy (pop_error, "In multi-line query in pop_list");
413 return (-1);
416 if (message)
417 how_many = 1;
418 else
420 int count, size;
421 if (pop_stat (server, &count, &size))
422 return (-1);
423 how_many = count;
426 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
427 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
428 if (! (*IDs && *sizes))
430 strcpy (pop_error, "Out of memory in pop_list");
431 return (-1);
434 if (message)
436 sprintf (pop_error, "LIST %d", message);
437 if (sendline (server, pop_error))
439 free ((char *) *IDs);
440 free ((char *) *sizes);
441 return (-1);
443 if (pop_getline (server, &fromserver) < 0)
445 free ((char *) *IDs);
446 free ((char *) *sizes);
447 return (-1);
449 if (strncmp (fromserver, "+OK ", 4))
451 if (! strncmp (fromserver, "-ERR", 4))
452 strncpy (pop_error, fromserver, ERROR_MAX);
453 else
455 strcpy (pop_error,
456 "Unexpected response from server in pop_list");
457 pop_trash (server);
459 free ((char *) *IDs);
460 free ((char *) *sizes);
461 return (-1);
463 (*IDs)[0] = atoi (&fromserver[4]);
464 fromserver = strchr (&fromserver[4], ' ');
465 if (! fromserver)
467 strcpy (pop_error,
468 "Badly formatted response from server in pop_list");
469 pop_trash (server);
470 free ((char *) *IDs);
471 free ((char *) *sizes);
472 return (-1);
474 (*sizes)[0] = atoi (fromserver);
475 (*IDs)[1] = (*sizes)[1] = 0;
476 return (0);
478 else
480 if (pop_multi_first (server, "LIST", &fromserver))
482 free ((char *) *IDs);
483 free ((char *) *sizes);
484 return (-1);
486 for (i = 0; i < how_many; i++)
488 if (pop_multi_next (server, &fromserver) <= 0)
490 free ((char *) *IDs);
491 free ((char *) *sizes);
492 return (-1);
494 (*IDs)[i] = atoi (fromserver);
495 fromserver = strchr (fromserver, ' ');
496 if (! fromserver)
498 strcpy (pop_error,
499 "Badly formatted response from server in pop_list");
500 free ((char *) *IDs);
501 free ((char *) *sizes);
502 pop_trash (server);
503 return (-1);
505 (*sizes)[i] = atoi (fromserver);
507 if (pop_multi_next (server, &fromserver) < 0)
509 free ((char *) *IDs);
510 free ((char *) *sizes);
511 return (-1);
513 else if (fromserver)
515 strcpy (pop_error,
516 "Too many response lines from server in pop_list");
517 free ((char *) *IDs);
518 free ((char *) *sizes);
519 return (-1);
521 (*IDs)[i] = (*sizes)[i] = 0;
522 return (0);
527 * Function: pop_retrieve
529 * Purpose: Retrieve a specified message from the maildrop.
531 * Arguments:
532 * server The server to retrieve from.
533 * message The message number to retrieve.
534 * markfrom
535 * If true, then mark the string "From " at the beginning
536 * of lines with '>'.
537 * msg_buf Output parameter to which a buffer containing the
538 * message is assigned.
540 * Return value: The number of bytes in msg_buf, which may contain
541 * embedded nulls, not including its final null, or -1 on error
542 * with pop_error set.
544 * Side effects: May kill connection on error.
547 pop_retrieve (popserver server, int message, int markfrom, char **msg_buf)
549 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
550 char *ptr, *fromserver;
551 int ret;
553 if (server->in_multi)
555 strcpy (pop_error, "In multi-line query in pop_retrieve");
556 return (-1);
559 if (pop_list (server, message, &IDs, &sizes))
560 return (-1);
562 if (pop_retrieve_first (server, message, &fromserver))
564 return (-1);
568 * The "5" below is an arbitrary constant -- I assume that if
569 * there are "From" lines in the text to be marked, there
570 * probably won't be more than 5 of them. If there are, I
571 * allocate more space for them below.
573 bufsize = sizes[0] + (markfrom ? 5 : 0);
574 ptr = (char *)malloc (bufsize);
575 free ((char *) IDs);
576 free ((char *) sizes);
578 if (! ptr)
580 strcpy (pop_error, "Out of memory in pop_retrieve");
581 pop_retrieve_flush (server);
582 return (-1);
585 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0)
587 if (! fromserver)
589 ptr[cp] = '\0';
590 *msg_buf = ptr;
591 return (cp);
593 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
594 fromserver[2] == 'o' && fromserver[3] == 'm' &&
595 fromserver[4] == ' ')
597 if (++fromcount == 5)
599 bufsize += 5;
600 ptr = (char *)realloc (ptr, bufsize);
601 if (! ptr)
603 strcpy (pop_error, "Out of memory in pop_retrieve");
604 pop_retrieve_flush (server);
605 return (-1);
607 fromcount = 0;
609 ptr[cp++] = '>';
611 memcpy (&ptr[cp], fromserver, ret);
612 cp += ret;
613 ptr[cp++] = '\n';
616 free (ptr);
617 return (-1);
621 pop_retrieve_first (popserver server, int message, char **response)
623 sprintf (pop_error, "RETR %d", message);
624 return (pop_multi_first (server, pop_error, response));
628 Returns a negative number on error, 0 to indicate that the data has
629 all been read (i.e., the server has returned a "." termination
630 line), or a positive number indicating the number of bytes in the
631 returned buffer (which is null-terminated and may contain embedded
632 nulls, but the returned bytecount doesn't include the final null).
636 pop_retrieve_next (popserver server, char **line)
638 return (pop_multi_next (server, line));
642 pop_retrieve_flush (popserver server)
644 return (pop_multi_flush (server));
648 pop_top_first (popserver server, int message, int lines, char **response)
650 sprintf (pop_error, "TOP %d %d", message, lines);
651 return (pop_multi_first (server, pop_error, response));
655 Returns a negative number on error, 0 to indicate that the data has
656 all been read (i.e., the server has returned a "." termination
657 line), or a positive number indicating the number of bytes in the
658 returned buffer (which is null-terminated and may contain embedded
659 nulls, but the returned bytecount doesn't include the final null).
663 pop_top_next (popserver server, char **line)
665 return (pop_multi_next (server, line));
669 pop_top_flush (popserver server)
671 return (pop_multi_flush (server));
675 pop_multi_first (popserver server, const char *command, char **response)
677 if (server->in_multi)
679 strcpy (pop_error,
680 "Already in multi-line query in pop_multi_first");
681 return (-1);
684 if (sendline (server, command) || (pop_getline (server, response) < 0))
686 return (-1);
689 if (0 == strncmp (*response, "-ERR", 4))
691 strncpy (pop_error, *response, ERROR_MAX);
692 return (-1);
694 else if (0 == strncmp (*response, "+OK", 3))
696 for (*response += 3; **response == ' '; (*response)++) /* empty */;
697 server->in_multi = 1;
698 return (0);
700 else
702 strcpy (pop_error,
703 "Unexpected response from server in pop_multi_first");
704 return (-1);
709 Read the next line of data from SERVER and place a pointer to it
710 into LINE. Return -1 on error, 0 if there are no more lines to read
711 (i.e., the server has returned a line containing only "."), or a
712 positive number indicating the number of bytes in the LINE buffer
713 (not including the final null). The data in that buffer may contain
714 embedded nulls, but does not contain the final CRLF. When returning
715 0, LINE is set to null. */
718 pop_multi_next (popserver server, char **line)
720 char *fromserver;
721 int ret;
723 if (! server->in_multi)
725 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
726 return (-1);
729 if ((ret = pop_getline (server, &fromserver)) < 0)
731 return (-1);
734 if (fromserver[0] == '.')
736 if (! fromserver[1])
738 *line = 0;
739 server->in_multi = 0;
740 return (0);
742 else
744 *line = fromserver + 1;
745 return (ret - 1);
748 else
750 *line = fromserver;
751 return (ret);
756 pop_multi_flush (popserver server)
758 char *line;
759 int ret;
761 if (! server->in_multi)
763 return (0);
766 while ((ret = pop_multi_next (server, &line)))
768 if (ret < 0)
769 return (-1);
772 return (0);
775 /* Function: pop_delete
777 * Purpose: Delete a specified message.
779 * Arguments:
780 * server Server from which to delete the message.
781 * message Message to delete.
783 * Return value: 0 on success, non-zero with error in pop_error
784 * otherwise.
787 pop_delete (popserver server, int message)
789 if (server->in_multi)
791 strcpy (pop_error, "In multi-line query in pop_delete");
792 return (-1);
795 sprintf (pop_error, "DELE %d", message);
797 if (sendline (server, pop_error) || getok (server))
798 return (-1);
800 return (0);
804 * Function: pop_noop
806 * Purpose: Send a noop command to the server.
808 * Argument:
809 * server The server to send to.
811 * Return value: 0 on success, non-zero with error in pop_error
812 * otherwise.
814 * Side effects: Closes connection on error.
817 pop_noop (popserver server)
819 if (server->in_multi)
821 strcpy (pop_error, "In multi-line query in pop_noop");
822 return (-1);
825 if (sendline (server, "NOOP") || getok (server))
826 return (-1);
828 return (0);
832 * Function: pop_last
834 * Purpose: Find out the highest seen message from the server.
836 * Arguments:
837 * server The server.
839 * Return value: If successful, the highest seen message, which is
840 * greater than or equal to 0. Otherwise, a negative number with
841 * the error explained in pop_error.
843 * Side effects: Closes the connection on error.
846 pop_last (popserver server)
848 char *fromserver;
850 if (server->in_multi)
852 strcpy (pop_error, "In multi-line query in pop_last");
853 return (-1);
856 if (sendline (server, "LAST"))
857 return (-1);
859 if (pop_getline (server, &fromserver) < 0)
860 return (-1);
862 if (! strncmp (fromserver, "-ERR", 4))
864 strncpy (pop_error, fromserver, ERROR_MAX);
865 return (-1);
867 else if (strncmp (fromserver, "+OK ", 4))
869 strcpy (pop_error, "Unexpected response from server in pop_last");
870 pop_trash (server);
871 return (-1);
873 else
875 char *end_ptr;
876 int count;
877 errno = 0;
878 count = strtol (&fromserver[4], &end_ptr, 10);
879 if (fromserver + 4 == end_ptr || errno)
881 strcpy (pop_error, "Unexpected response from server in pop_last");
882 pop_trash (server);
883 return (-1);
885 return count;
890 * Function: pop_reset
892 * Purpose: Reset the server to its initial connect state
894 * Arguments:
895 * server The server.
897 * Return value: 0 for success, non-0 with error in pop_error
898 * otherwise.
900 * Side effects: Closes the connection on error.
903 pop_reset (popserver server)
905 if (pop_retrieve_flush (server))
907 return (-1);
910 if (sendline (server, "RSET") || getok (server))
911 return (-1);
913 return (0);
917 * Function: pop_quit
919 * Purpose: Quit the connection to the server,
921 * Arguments:
922 * server The server to quit.
924 * Return value: 0 for success, non-zero otherwise with error in
925 * pop_error.
927 * Side Effects: The popserver passed in is unusable after this
928 * function is called, even if an error occurs.
931 pop_quit (popserver server)
933 int ret = 0;
935 if (server->file >= 0)
937 if (pop_retrieve_flush (server))
939 ret = -1;
942 if (sendline (server, "QUIT") || getok (server))
944 ret = -1;
947 close (server->file);
950 free (server->buffer);
951 free ((char *) server);
953 return (ret);
956 #ifdef WINDOWSNT
957 static int have_winsock = 0;
958 #endif
961 * Function: socket_connection
963 * Purpose: Opens the network connection with the mail host, without
964 * doing any sort of I/O with it or anything.
966 * Arguments:
967 * host The host to which to connect.
968 * flags Option flags.
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.
974 static int
975 socket_connection (char *host, int flags)
977 #ifdef HAVE_GETADDRINFO
978 struct addrinfo *res, *it;
979 struct addrinfo hints;
980 int ret;
981 #else /* !HAVE_GETADDRINFO */
982 struct hostent *hostent;
983 #endif
984 struct servent *servent;
985 struct sockaddr_in addr;
986 char found_port = 0;
987 const char *service;
988 int sock;
989 char *realhost;
990 #ifdef KERBEROS
991 #ifdef KERBEROS5
992 krb5_error_code rem;
993 krb5_context kcontext = 0;
994 krb5_auth_context auth_context = 0;
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;
1005 #endif /* KERBEROS5 */
1006 #endif /* KERBEROS */
1008 int try_count = 0;
1009 int connect_ok;
1011 #ifdef WINDOWSNT
1013 WSADATA winsockData;
1014 if (WSAStartup (0x101, &winsockData) == 0)
1015 have_winsock = 1;
1017 #endif
1019 memset (&addr, 0, sizeof (addr));
1020 addr.sin_family = AF_INET;
1022 /** "kpop" service is never used: look for 20060515 to see why **/
1023 #ifdef KERBEROS
1024 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1025 #else
1026 service = POP_SERVICE;
1027 #endif
1029 #ifdef HESIOD
1030 if (! (flags & POP_NO_HESIOD))
1032 servent = hes_getservbyname (service, "tcp");
1033 if (servent)
1035 addr.sin_port = servent->s_port;
1036 found_port = 1;
1039 #endif
1040 if (! found_port)
1042 servent = getservbyname (service, "tcp");
1043 if (servent)
1045 addr.sin_port = servent->s_port;
1047 else
1049 /** "kpop" service is never used: look for 20060515 to see why **/
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
1059 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1061 sock = socket (PF_INET, SOCK_STREAM, 0);
1062 if (sock < 0)
1064 strcpy (pop_error, POP_SOCKET_ERROR);
1065 strncat (pop_error, strerror (errno),
1066 ERROR_MAX - sizeof (POP_SOCKET_ERROR));
1067 return (-1);
1071 #ifdef HAVE_GETADDRINFO
1072 memset (&hints, 0, sizeof(hints));
1073 hints.ai_socktype = SOCK_STREAM;
1074 hints.ai_flags = AI_CANONNAME;
1075 hints.ai_family = AF_INET;
1078 ret = getaddrinfo (host, service, &hints, &res);
1079 try_count++;
1080 if (ret != 0 && (ret != EAI_AGAIN || try_count == 5))
1082 strcpy (pop_error, "Could not determine POP server's address");
1083 return (-1);
1085 } while (ret != 0);
1087 if (ret == 0)
1089 it = res;
1090 while (it)
1092 if (it->ai_addrlen == sizeof (addr))
1094 struct sockaddr_in *in_a = (struct sockaddr_in *) it->ai_addr;
1095 memcpy (&addr.sin_addr, &in_a->sin_addr, sizeof (addr.sin_addr));
1096 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1097 break;
1099 it = it->ai_next;
1101 connect_ok = it != NULL;
1102 if (connect_ok)
1104 realhost = alloca (strlen (it->ai_canonname) + 1);
1105 strcpy (realhost, it->ai_canonname);
1107 freeaddrinfo (res);
1109 #else /* !HAVE_GETADDRINFO */
1112 hostent = gethostbyname (host);
1113 try_count++;
1114 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1116 strcpy (pop_error, "Could not determine POP server's address");
1117 return (-1);
1119 } while (! hostent);
1121 while (*hostent->h_addr_list)
1123 memcpy (&addr.sin_addr, *hostent->h_addr_list, hostent->h_length);
1124 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1125 break;
1126 hostent->h_addr_list++;
1128 connect_ok = *hostent->h_addr_list != NULL;
1129 if (! connect_ok)
1131 realhost = alloca (strlen (hostent->h_name) + 1);
1132 strcpy (realhost, hostent->h_name);
1135 #endif /* !HAVE_GETADDRINFO */
1137 #define CONNECT_ERROR "Could not connect to POP server: "
1139 if (! connect_ok)
1141 CLOSESOCKET (sock);
1142 strcpy (pop_error, CONNECT_ERROR);
1143 strncat (pop_error, strerror (errno),
1144 ERROR_MAX - sizeof (CONNECT_ERROR));
1145 return (-1);
1149 #ifdef KERBEROS
1151 #define KRB_ERROR "Kerberos error connecting to POP server: "
1152 if (! (flags & POP_NO_KERBEROS))
1154 #ifdef KERBEROS5
1155 if ((rem = krb5_init_context (&kcontext)))
1157 krb5error:
1158 if (auth_context)
1159 krb5_auth_con_free (kcontext, auth_context);
1160 if (kcontext)
1161 krb5_free_context (kcontext);
1162 strcpy (pop_error, KRB_ERROR);
1163 strncat (pop_error, error_message (rem),
1164 ERROR_MAX - sizeof(KRB_ERROR));
1165 CLOSESOCKET (sock);
1166 return (-1);
1169 if ((rem = krb5_auth_con_init (kcontext, &auth_context)))
1170 goto krb5error;
1172 if (rem = krb5_cc_default (kcontext, &ccdef))
1173 goto krb5error;
1175 if (rem = krb5_cc_get_principal (kcontext, ccdef, &client))
1176 goto krb5error;
1178 for (cp = realhost; *cp; cp++)
1180 if (isupper (*cp))
1182 *cp = tolower (*cp);
1186 if (rem = krb5_sname_to_principal (kcontext, realhost,
1187 POP_SERVICE, FALSE, &server))
1188 goto krb5error;
1190 rem = krb5_sendauth (kcontext, &auth_context,
1191 (krb5_pointer) &sock, "KPOPV1.0", client, server,
1192 AP_OPTS_MUTUAL_REQUIRED,
1193 0, /* no checksum */
1194 0, /* no creds, use ccache instead */
1195 ccdef,
1196 &err_ret,
1197 0, /* don't need subsession key */
1198 0); /* don't need reply */
1199 krb5_free_principal (kcontext, server);
1200 if (rem)
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
1206 if (err_ret && err_ret->text.length)
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);
1216 #elif defined HAVE_KRB5_ERROR_E_TEXT
1217 if (err_ret && err_ret->e_text && strlen(*err_ret->e_text))
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);
1226 #endif
1227 if (err_ret)
1228 krb5_free_error (kcontext, err_ret);
1229 krb5_auth_con_free (kcontext, auth_context);
1230 krb5_free_context (kcontext);
1232 CLOSESOCKET (sock);
1233 return (-1);
1235 #else /* ! KERBEROS5 */
1236 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
1237 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1238 (char *) krb_realmofhost (realhost),
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)
1246 strcpy (pop_error, KRB_ERROR);
1247 strncat (pop_error, krb_err_txt[rem],
1248 ERROR_MAX - sizeof (KRB_ERROR));
1249 CLOSESOCKET (sock);
1250 return (-1);
1252 #endif /* KERBEROS5 */
1254 #endif /* KERBEROS */
1256 return (sock);
1257 } /* socket_connection */
1260 * Function: pop_getline
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.
1267 * Arguments:
1268 * server The server from which to get the line of text.
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.
1276 * Notes: The line returned is overwritten with each call to pop_getline.
1278 * Side effects: Closes the connection on error.
1280 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
1282 static int
1283 pop_getline (popserver server, char **line)
1285 #define GETLINE_ERROR "Error reading from server: "
1287 int ret;
1288 int search_offset = 0;
1290 if (server->data)
1292 char *cp = find_crlf (server->buffer + server->buffer_index,
1293 server->data);
1294 if (cp)
1296 int found;
1297 int data_used;
1299 found = server->buffer_index;
1300 data_used = (cp + 2) - server->buffer - found;
1302 *cp = '\0'; /* terminate the string to be returned */
1303 server->data -= data_used;
1304 server->buffer_index += data_used;
1306 if (pop_debug)
1307 /* Embedded nulls will truncate this output prematurely,
1308 but that's OK because it's just for debugging anyway. */
1309 fprintf (stderr, "<<< %s\n", server->buffer + found);
1310 *line = server->buffer + found;
1311 return (data_used - 2);
1313 else
1315 memmove (server->buffer, server->buffer + server->buffer_index,
1316 server->data);
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;
1325 server->buffer_index = 0;
1328 else
1330 server->buffer_index = 0;
1333 while (1)
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)
1340 server->buffer_size += GETLINE_INCR;
1341 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1342 if (! server->buffer)
1344 strcpy (pop_error, "Out of memory in pop_getline");
1345 pop_trash (server);
1346 return (-1);
1349 ret = RECV (server->file, server->buffer + server->data,
1350 server->buffer_size - server->data - 1, 0);
1351 if (ret < 0)
1353 strcpy (pop_error, GETLINE_ERROR);
1354 strncat (pop_error, strerror (errno),
1355 ERROR_MAX - sizeof (GETLINE_ERROR));
1356 pop_trash (server);
1357 return (-1);
1359 else if (ret == 0)
1361 strcpy (pop_error, "Unexpected EOF from server in pop_getline");
1362 pop_trash (server);
1363 return (-1);
1365 else
1367 char *cp;
1368 server->data += ret;
1369 server->buffer[server->data] = '\0';
1371 cp = find_crlf (server->buffer + search_offset,
1372 server->data - search_offset);
1373 if (cp)
1375 int data_used = (cp + 2) - server->buffer;
1376 *cp = '\0';
1377 server->data -= data_used;
1378 server->buffer_index = data_used;
1380 if (pop_debug)
1381 fprintf (stderr, "<<< %s\n", server->buffer);
1382 *line = server->buffer;
1383 return (data_used - 2);
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;
1391 /* NOTREACHED */
1395 * Function: sendline
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.
1402 * Arguments:
1403 * server The server to which to send the text.
1404 * line The line of text to send.
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.
1410 * Side effects: Closes the connection on error.
1412 static int
1413 sendline (popserver server, const char *line)
1415 #define SENDLINE_ERROR "Error writing to POP server: "
1416 int ret;
1417 char *buf;
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.)
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));
1436 if (ret < 0)
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);
1445 if (pop_debug)
1446 fprintf (stderr, ">>> %s\n", line);
1448 return (0);
1452 * Procedure: fullwrite
1454 * Purpose: Just like write, but keeps trying until the entire string
1455 * has been written.
1457 * Return value: Same as write. Pop_error is not set.
1459 static int
1460 fullwrite (int fd, char *buf, int nbytes)
1462 char *cp;
1463 int ret = 0;
1465 cp = buf;
1466 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0))
1468 cp += ret;
1469 nbytes -= ret;
1472 return (ret);
1476 * Procedure getok
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.
1482 * Arguments:
1483 * server The server to read from.
1485 * Returns: 0 for success, else for failure and puts error in pop_error.
1487 * Side effects: On failure, may make the connection unusable.
1489 static int
1490 getok (popserver server)
1492 char *fromline;
1494 if (pop_getline (server, &fromline) < 0)
1496 return (-1);
1499 if (! strncmp (fromline, "+OK", 3))
1500 return (0);
1501 else if (! strncmp (fromline, "-ERR", 4))
1503 strncpy (pop_error, fromline, ERROR_MAX);
1504 pop_error[ERROR_MAX-1] = '\0';
1505 return (-1);
1507 else
1509 strcpy (pop_error,
1510 "Unexpected response from server; expecting +OK or -ERR");
1511 pop_trash (server);
1512 return (-1);
1516 #if 0
1518 * Function: gettermination
1520 * Purpose: Gets the next line and verifies that it is a termination
1521 * line (nothing but a dot).
1523 * Return value: 0 on success, non-zero with pop_error set on error.
1525 * Side effects: Closes the connection on error.
1527 static int
1528 gettermination (server)
1529 popserver server;
1531 char *fromserver;
1533 if (pop_getline (server, &fromserver) < 0)
1534 return (-1);
1536 if (strcmp (fromserver, "."))
1538 strcpy (pop_error,
1539 "Unexpected response from server in gettermination");
1540 pop_trash (server);
1541 return (-1);
1544 return (0);
1546 #endif
1549 * Function pop_close
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.
1556 * Side effects: The server is unusable after this function returns.
1557 * Changes made to the maildrop since the session was started (or
1558 * since the last pop_reset) may be lost.
1560 void
1561 pop_close (popserver server)
1563 pop_trash (server);
1564 free ((char *) server);
1566 return;
1570 * Function: pop_trash
1572 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1573 * memory associated with the server. It is valid to call
1574 * pop_close or pop_quit after this function has been called.
1576 static void
1577 pop_trash (popserver server)
1579 if (server->file >= 0)
1581 /* avoid recursion; sendline can call pop_trash */
1582 if (server->trash_started)
1583 return;
1584 server->trash_started = 1;
1586 sendline (server, "RSET");
1587 sendline (server, "QUIT");
1589 CLOSESOCKET (server->file);
1590 server->file = -1;
1591 if (server->buffer)
1593 free (server->buffer);
1594 server->buffer = 0;
1598 #ifdef WINDOWSNT
1599 if (have_winsock)
1600 WSACleanup ();
1601 #endif
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. */
1608 static char *
1609 find_crlf (char *in_string, int len)
1611 while (len--)
1613 if (*in_string == '\r')
1615 if (*++in_string == '\n')
1616 return (in_string - 1);
1618 else
1619 in_string++;
1621 return (0);
1624 #endif /* MAIL_USE_POP */