automatically generated from GPLed version
[emacs/old-mirror.git] / lib-src / pop.c
blob9292998e2882fa938674cda290ac987a188eb3f6
1 /* pop.c: client routines for talking to a POP3-protocol post-office server
2 Copyright (c) 1991, 1993, 1996 Free Software Foundation, Inc.
3 Written by Jonathan Kamens, jik@security.ov.com.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #ifdef HAVE_CONFIG_H
23 #define NO_SHORTNAMES /* Tell config not to load remap.h */
24 #include <../src/config.h>
25 #else
26 #define MAIL_USE_POP
27 #endif
29 #ifdef MAIL_USE_POP
31 #ifdef HAVE_CONFIG_H
32 /* Cancel these substitutions made in config.h */
33 #undef open
34 #undef read
35 #undef write
36 #undef close
37 #endif
39 #include <sys/types.h>
40 #ifdef WINDOWSNT
41 #include "ntlib.h"
42 #include <winsock.h>
43 #undef SOCKET_ERROR
44 #define RECV(s,buf,len,flags) recv(s,buf,len,flags)
45 #define SEND(s,buf,len,flags) send(s,buf,len,flags)
46 #define CLOSESOCKET(s) closesocket(s)
47 #else
48 #include <netinet/in.h>
49 #include <sys/socket.h>
50 #define RECV(s,buf,len,flags) read(s,buf,len)
51 #define SEND(s,buf,len,flags) write(s,buf,len)
52 #define CLOSESOCKET(s) close(s)
53 #endif
54 #include <pop.h>
56 #ifdef sun
57 #include <malloc.h>
58 #endif /* sun */
60 #ifdef HESIOD
61 #include <hesiod.h>
63 * It really shouldn't be necessary to put this declaration here, but
64 * the version of hesiod.h that Athena has installed in release 7.2
65 * doesn't declare this function; I don't know if the 7.3 version of
66 * hesiod.h does.
68 extern struct servent *hes_getservbyname (/* char *, char * */);
69 #endif
71 #include <pwd.h>
72 #include <netdb.h>
73 #include <errno.h>
74 #include <stdio.h>
76 #ifdef KERBEROS
77 #ifndef KRB5
78 #ifndef SOLARIS2
79 #include <des.h>
80 #include <krb.h>
81 #else /* not SOLARIS2 */
82 #include <kerberos/des.h>
83 #include <kerberos/krb.h>
84 #endif /* not SOLARIS2 */
85 #else /* KRB5 */
86 #include <krb5/krb5.h>
87 #include <krb5/ext-proto.h>
88 #include <ctype.h>
89 #endif /* KRB5 */
90 #endif /* KERBEROS */
92 extern char *getenv (/* char * */);
93 extern char *getlogin (/* void */);
94 extern char *getpass (/* char * */);
95 extern char *strerror (/* int */);
96 extern char *index ();
98 #ifdef KERBEROS
99 #ifndef KRB5
100 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
101 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
102 struct sockaddr_in *, struct sockaddr_in *,
103 char * */);
104 extern char *krb_realmofhost (/* char * */);
105 #endif /* ! KRB5 */
106 #endif /* KERBEROS */
108 #ifndef WINDOWSNT
109 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
110 extern int h_errno;
111 #endif
112 #endif
114 static int socket_connection (/* char *, int */);
115 static char *getline (/* popserver */);
116 static int sendline (/* popserver, char * */);
117 static int fullwrite (/* int, char *, int */);
118 static int getok (/* popserver */);
119 #if 0
120 static int gettermination (/* popserver */);
121 #endif
122 static void pop_trash (/* popserver */);
123 static char *find_crlf (/* char * */);
125 #define ERROR_MAX 80 /* a pretty arbitrary size */
126 #define POP_PORT 110
127 #define KPOP_PORT 1109
128 #ifdef WINDOWSNT
129 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
130 #else
131 #define POP_SERVICE "pop"
132 #endif
133 #ifdef KERBEROS
134 #ifdef KRB5
135 #define KPOP_SERVICE "k5pop";
136 #else
137 #define KPOP_SERVICE "kpop"
138 #endif
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)
268 flags |= POP_NO_KERBEROS;
269 else
270 password = username;
272 sock = socket_connection (host, flags);
273 if (sock == -1)
274 return (0);
276 server = (popserver) malloc (sizeof (struct _popserver));
277 if (! server)
279 strcpy (pop_error, "Out of memory in pop_open");
280 return (0);
282 server->buffer = (char *) malloc (GETLINE_MIN);
283 if (! server->buffer)
285 strcpy (pop_error, "Out of memory in pop_open");
286 free ((char *) server);
287 return (0);
290 server->file = sock;
291 server->data = 0;
292 server->buffer_index = 0;
293 server->buffer_size = GETLINE_MIN;
294 server->in_multi = 0;
295 server->trash_started = 0;
297 if (getok (server))
298 return (0);
301 * I really shouldn't use the pop_error variable like this, but....
303 if (strlen (username) > ERROR_MAX - 6)
305 pop_close (server);
306 strcpy (pop_error,
307 "Username too long; recompile pop.c with larger ERROR_MAX");
308 return (0);
310 sprintf (pop_error, "USER %s", username);
312 if (sendline (server, pop_error) || getok (server))
314 return (0);
317 if (strlen (password) > ERROR_MAX - 6)
319 pop_close (server);
320 strcpy (pop_error,
321 "Password too long; recompile pop.c with larger ERROR_MAX");
322 return (0);
324 sprintf (pop_error, "PASS %s", password);
326 if (sendline (server, pop_error) || getok (server))
328 return (0);
331 return (server);
335 * Function: pop_stat
337 * Purpose: Issue the STAT command to the server and return (in the
338 * value parameters) the number of messages in the maildrop and
339 * the total size of the maildrop.
341 * Return value: 0 on success, or non-zero with an error in pop_error
342 * in failure.
344 * Side effects: On failure, may make further operations on the
345 * connection impossible.
348 pop_stat (server, count, size)
349 popserver server;
350 int *count;
351 int *size;
353 char *fromserver;
355 if (server->in_multi)
357 strcpy (pop_error, "In multi-line query in pop_stat");
358 return (-1);
361 if (sendline (server, "STAT") || (! (fromserver = getline (server))))
362 return (-1);
364 if (strncmp (fromserver, "+OK ", 4))
366 if (0 == strncmp (fromserver, "-ERR", 4))
368 strncpy (pop_error, fromserver, ERROR_MAX);
370 else
372 strcpy (pop_error,
373 "Unexpected response from POP server in pop_stat");
374 pop_trash (server);
376 return (-1);
379 *count = atoi (&fromserver[4]);
381 fromserver = index (&fromserver[4], ' ');
382 if (! fromserver)
384 strcpy (pop_error,
385 "Badly formatted response from server in pop_stat");
386 pop_trash (server);
387 return (-1);
390 *size = atoi (fromserver + 1);
392 return (0);
396 * Function: pop_list
398 * Purpose: Performs the POP "list" command and returns (in value
399 * parameters) two malloc'd zero-terminated arrays -- one of
400 * message IDs, and a parallel one of sizes.
402 * Arguments:
403 * server The pop connection to talk to.
404 * message The number of the one message about which to get
405 * information, or 0 to get information about all
406 * messages.
408 * Return value: 0 on success, non-zero with error in pop_error on
409 * failure.
411 * Side effects: On failure, may make further operations on the
412 * connection impossible.
415 pop_list (server, message, IDs, sizes)
416 popserver server;
417 int message;
418 int **IDs;
419 int **sizes;
421 int how_many, i;
422 char *fromserver;
424 if (server->in_multi)
426 strcpy (pop_error, "In multi-line query in pop_list");
427 return (-1);
430 if (message)
431 how_many = 1;
432 else
434 int count, size;
435 if (pop_stat (server, &count, &size))
436 return (-1);
437 how_many = count;
440 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
441 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
442 if (! (*IDs && *sizes))
444 strcpy (pop_error, "Out of memory in pop_list");
445 return (-1);
448 if (message)
450 sprintf (pop_error, "LIST %d", message);
451 if (sendline (server, pop_error))
453 free ((char *) *IDs);
454 free ((char *) *sizes);
455 return (-1);
457 if (! (fromserver = getline (server)))
459 free ((char *) *IDs);
460 free ((char *) *sizes);
461 return (-1);
463 if (strncmp (fromserver, "+OK ", 4))
465 if (! strncmp (fromserver, "-ERR", 4))
466 strncpy (pop_error, fromserver, ERROR_MAX);
467 else
469 strcpy (pop_error,
470 "Unexpected response from server in pop_list");
471 pop_trash (server);
473 free ((char *) *IDs);
474 free ((char *) *sizes);
475 return (-1);
477 (*IDs)[0] = atoi (&fromserver[4]);
478 fromserver = index (&fromserver[4], ' ');
479 if (! fromserver)
481 strcpy (pop_error,
482 "Badly formatted response from server in pop_list");
483 pop_trash (server);
484 free ((char *) *IDs);
485 free ((char *) *sizes);
486 return (-1);
488 (*sizes)[0] = atoi (fromserver);
489 (*IDs)[1] = (*sizes)[1] = 0;
490 return (0);
492 else
494 if (pop_multi_first (server, "LIST", &fromserver))
496 free ((char *) *IDs);
497 free ((char *) *sizes);
498 return (-1);
500 for (i = 0; i < how_many; i++)
502 if (pop_multi_next (server, &fromserver))
504 free ((char *) *IDs);
505 free ((char *) *sizes);
506 return (-1);
508 (*IDs)[i] = atoi (fromserver);
509 fromserver = index (fromserver, ' ');
510 if (! fromserver)
512 strcpy (pop_error,
513 "Badly formatted response from server in pop_list");
514 free ((char *) *IDs);
515 free ((char *) *sizes);
516 pop_trash (server);
517 return (-1);
519 (*sizes)[i] = atoi (fromserver);
521 if (pop_multi_next (server, &fromserver))
523 free ((char *) *IDs);
524 free ((char *) *sizes);
525 return (-1);
527 else if (fromserver)
529 strcpy (pop_error,
530 "Too many response lines from server in pop_list");
531 free ((char *) *IDs);
532 free ((char *) *sizes);
533 return (-1);
535 (*IDs)[i] = (*sizes)[i] = 0;
536 return (0);
541 * Function: pop_retrieve
543 * Purpose: Retrieve a specified message from the maildrop.
545 * Arguments:
546 * server The server to retrieve from.
547 * message The message number to retrieve.
548 * markfrom
549 * If true, then mark the string "From " at the beginning
550 * of lines with '>'.
552 * Return value: A string pointing to the message, if successful, or
553 * null with pop_error set if not.
555 * Side effects: May kill connection on error.
557 char *
558 pop_retrieve (server, message, markfrom)
559 popserver server;
560 int message;
561 int markfrom;
563 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
564 char *ptr, *fromserver;
565 int ret;
567 if (server->in_multi)
569 strcpy (pop_error, "In multi-line query in pop_retrieve");
570 return (0);
573 if (pop_list (server, message, &IDs, &sizes))
574 return (0);
576 if (pop_retrieve_first (server, message, &fromserver))
578 return (0);
582 * The "5" below is an arbitrary constant -- I assume that if
583 * there are "From" lines in the text to be marked, there
584 * probably won't be more than 5 of them. If there are, I
585 * allocate more space for them below.
587 bufsize = sizes[0] + (markfrom ? 5 : 0);
588 ptr = (char *)malloc (bufsize);
589 free ((char *) IDs);
590 free ((char *) sizes);
592 if (! ptr)
594 strcpy (pop_error, "Out of memory in pop_retrieve");
595 pop_retrieve_flush (server);
596 return (0);
599 while (! (ret = pop_retrieve_next (server, &fromserver)))
601 int linesize;
603 if (! fromserver)
605 ptr[cp] = '\0';
606 return (ptr);
608 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
609 fromserver[2] == 'o' && fromserver[3] == 'm' &&
610 fromserver[4] == ' ')
612 if (++fromcount == 5)
614 bufsize += 5;
615 ptr = (char *)realloc (ptr, bufsize);
616 if (! ptr)
618 strcpy (pop_error, "Out of memory in pop_retrieve");
619 pop_retrieve_flush (server);
620 return (0);
622 fromcount = 0;
624 ptr[cp++] = '>';
626 linesize = strlen (fromserver);
627 bcopy (fromserver, &ptr[cp], linesize);
628 cp += linesize;
629 ptr[cp++] = '\n';
632 if (ret)
634 free (ptr);
635 return (0);
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 pop_retrieve_next (server, line)
651 popserver server;
652 char **line;
654 return (pop_multi_next (server, line));
658 pop_retrieve_flush (server)
659 popserver server;
661 return (pop_multi_flush (server));
665 pop_top_first (server, message, lines, response)
666 popserver server;
667 int message, lines;
668 char **response;
670 sprintf (pop_error, "TOP %d %d", message, lines);
671 return (pop_multi_first (server, pop_error, response));
675 pop_top_next (server, line)
676 popserver server;
677 char **line;
679 return (pop_multi_next (server, line));
683 pop_top_flush (server)
684 popserver server;
686 return (pop_multi_flush (server));
690 pop_multi_first (server, command, response)
691 popserver server;
692 char *command;
693 char **response;
695 if (server->in_multi)
697 strcpy (pop_error,
698 "Already in multi-line query in pop_multi_first");
699 return (-1);
702 if (sendline (server, command) || (! (*response = getline (server))))
704 return (-1);
707 if (0 == strncmp (*response, "-ERR", 4))
709 strncpy (pop_error, *response, ERROR_MAX);
710 return (-1);
712 else if (0 == strncmp (*response, "+OK", 3))
714 for (*response += 3; **response == ' '; (*response)++) /* empty */;
715 server->in_multi = 1;
716 return (0);
718 else
720 strcpy (pop_error,
721 "Unexpected response from server in pop_multi_first");
722 return (-1);
727 pop_multi_next (server, line)
728 popserver server;
729 char **line;
731 char *fromserver;
733 if (! server->in_multi)
735 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
736 return (-1);
739 fromserver = getline (server);
740 if (! fromserver)
742 return (-1);
745 if (fromserver[0] == '.')
747 if (! fromserver[1])
749 *line = 0;
750 server->in_multi = 0;
751 return (0);
753 else
755 *line = fromserver + 1;
756 return (0);
759 else
761 *line = fromserver;
762 return (0);
767 pop_multi_flush (server)
768 popserver server;
770 char *line;
772 if (! server->in_multi)
774 return (0);
777 while (! pop_multi_next (server, &line))
779 if (! line)
781 return (0);
785 return (-1);
788 /* Function: pop_delete
790 * Purpose: Delete a specified message.
792 * Arguments:
793 * server Server from which to delete the message.
794 * message Message to delete.
796 * Return value: 0 on success, non-zero with error in pop_error
797 * otherwise.
800 pop_delete (server, message)
801 popserver server;
802 int message;
804 if (server->in_multi)
806 strcpy (pop_error, "In multi-line query in pop_delete");
807 return (-1);
810 sprintf (pop_error, "DELE %d", message);
812 if (sendline (server, pop_error) || getok (server))
813 return (-1);
815 return (0);
819 * Function: pop_noop
821 * Purpose: Send a noop command to the server.
823 * Argument:
824 * server The server to send to.
826 * Return value: 0 on success, non-zero with error in pop_error
827 * otherwise.
829 * Side effects: Closes connection on error.
832 pop_noop (server)
833 popserver server;
835 if (server->in_multi)
837 strcpy (pop_error, "In multi-line query in pop_noop");
838 return (-1);
841 if (sendline (server, "NOOP") || getok (server))
842 return (-1);
844 return (0);
848 * Function: pop_last
850 * Purpose: Find out the highest seen message from the server.
852 * Arguments:
853 * server The server.
855 * Return value: If successful, the highest seen message, which is
856 * greater than or equal to 0. Otherwise, a negative number with
857 * the error explained in pop_error.
859 * Side effects: Closes the connection on error.
862 pop_last (server)
863 popserver server;
865 char *fromserver;
867 if (server->in_multi)
869 strcpy (pop_error, "In multi-line query in pop_last");
870 return (-1);
873 if (sendline (server, "LAST"))
874 return (-1);
876 if (! (fromserver = getline (server)))
877 return (-1);
879 if (! strncmp (fromserver, "-ERR", 4))
881 strncpy (pop_error, fromserver, ERROR_MAX);
882 return (-1);
884 else if (strncmp (fromserver, "+OK ", 4))
886 strcpy (pop_error, "Unexpected response from server in pop_last");
887 pop_trash (server);
888 return (-1);
890 else
892 return (atoi (&fromserver[4]));
897 * Function: pop_reset
899 * Purpose: Reset the server to its initial connect state
901 * Arguments:
902 * server The server.
904 * Return value: 0 for success, non-0 with error in pop_error
905 * otherwise.
907 * Side effects: Closes the connection on error.
910 pop_reset (server)
911 popserver server;
913 if (pop_retrieve_flush (server))
915 return (-1);
918 if (sendline (server, "RSET") || getok (server))
919 return (-1);
921 return (0);
925 * Function: pop_quit
927 * Purpose: Quit the connection to the server,
929 * Arguments:
930 * server The server to quit.
932 * Return value: 0 for success, non-zero otherwise with error in
933 * pop_error.
935 * Side Effects: The popserver passed in is unusable after this
936 * function is called, even if an error occurs.
939 pop_quit (server)
940 popserver server;
942 int ret = 0;
944 if (server->file >= 0)
946 if (pop_retrieve_flush (server))
948 ret = -1;
951 if (sendline (server, "QUIT") || getok (server))
953 ret = -1;
956 close (server->file);
959 if (server->buffer)
960 free (server->buffer);
961 free ((char *) server);
963 return (ret);
966 #ifdef WINDOWSNT
967 static int have_winsock = 0;
968 #endif
971 * Function: socket_connection
973 * Purpose: Opens the network connection with the mail host, without
974 * doing any sort of I/O with it or anything.
976 * Arguments:
977 * host The host to which to connect.
978 * flags Option flags.
980 * Return value: A file descriptor indicating the connection, or -1
981 * indicating failure, in which case an error has been copied
982 * into pop_error.
984 static int
985 socket_connection (host, flags)
986 char *host;
987 int flags;
989 struct hostent *hostent;
990 struct servent *servent;
991 struct sockaddr_in addr;
992 char found_port = 0;
993 char *service;
994 int sock;
995 #ifdef KERBEROS
996 #ifdef KRB5
997 krb5_error_code rem;
998 krb5_ccache ccdef;
999 krb5_principal client, server;
1000 krb5_error *err_ret;
1001 register char *cp;
1002 #else
1003 KTEXT ticket;
1004 MSG_DAT msg_data;
1005 CREDENTIALS cred;
1006 Key_schedule schedule;
1007 int rem;
1008 char *realhost;
1009 #endif /* KRB5 */
1010 #endif /* KERBEROS */
1012 int try_count = 0;
1014 #ifdef WINDOWSNT
1016 WSADATA winsockData;
1017 if (WSAStartup (0x101, &winsockData) == 0)
1018 have_winsock = 1;
1020 #endif
1024 hostent = gethostbyname (host);
1025 try_count++;
1026 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1028 strcpy (pop_error, "Could not determine POP server's address");
1029 return (-1);
1031 } while (! hostent);
1033 bzero ((char *) &addr, sizeof (addr));
1034 addr.sin_family = AF_INET;
1036 #ifdef KERBEROS
1037 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1038 #else
1039 service = POP_SERVICE;
1040 #endif
1042 #ifdef HESIOD
1043 if (! (flags & POP_NO_HESIOD))
1045 servent = hes_getservbyname (service, "tcp");
1046 if (servent)
1048 addr.sin_port = servent->s_port;
1049 found_port = 1;
1052 #endif
1053 if (! found_port)
1055 servent = getservbyname (service, "tcp");
1056 if (servent)
1058 addr.sin_port = servent->s_port;
1060 else
1062 #ifdef KERBEROS
1063 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ?
1064 POP_PORT : KPOP_PORT);
1065 #else
1066 addr.sin_port = htons (POP_PORT);
1067 #endif
1071 #define SOCKET_ERROR "Could not create socket for POP connection: "
1073 sock = socket (PF_INET, SOCK_STREAM, 0);
1074 if (sock < 0)
1076 strcpy (pop_error, SOCKET_ERROR);
1077 strncat (pop_error, strerror (errno),
1078 ERROR_MAX - sizeof (SOCKET_ERROR));
1079 return (-1);
1083 while (*hostent->h_addr_list)
1085 bcopy (*hostent->h_addr_list, (char *) &addr.sin_addr,
1086 hostent->h_length);
1087 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1088 break;
1089 hostent->h_addr_list++;
1092 #define CONNECT_ERROR "Could not connect to POP server: "
1094 if (! *hostent->h_addr_list)
1096 CLOSESOCKET (sock);
1097 strcpy (pop_error, CONNECT_ERROR);
1098 strncat (pop_error, strerror (errno),
1099 ERROR_MAX - sizeof (CONNECT_ERROR));
1100 return (-1);
1104 #ifdef KERBEROS
1105 #define KRB_ERROR "Kerberos error connecting to POP server: "
1106 if (! (flags & POP_NO_KERBEROS))
1108 #ifdef KRB5
1109 krb5_init_ets ();
1111 if (rem = krb5_cc_default (&ccdef))
1113 krb5error:
1114 strcpy (pop_error, KRB_ERROR);
1115 strncat (pop_error, error_message (rem),
1116 ERROR_MAX - sizeof(KRB_ERROR));
1117 CLOSESOCKET (sock);
1118 return (-1);
1121 if (rem = krb5_cc_get_principal (ccdef, &client))
1123 goto krb5error;
1126 for (cp = hostent->h_name; *cp; cp++)
1128 if (isupper (*cp))
1130 *cp = tolower (*cp);
1134 if (rem = krb5_sname_to_principal (hostent->h_name, POP_SERVICE,
1135 FALSE, &server))
1137 goto krb5error;
1140 rem = krb5_sendauth ((krb5_pointer) &sock, "KPOPV1.0", client, server,
1141 AP_OPTS_MUTUAL_REQUIRED,
1142 0, /* no checksum */
1143 0, /* no creds, use ccache instead */
1144 ccdef,
1145 0, /* don't need seq # */
1146 0, /* don't need subsession key */
1147 &err_ret,
1148 0); /* don't need reply */
1149 krb5_free_principal (server);
1150 if (rem)
1152 if (err_ret && err_ret->text.length)
1154 strcpy (pop_error, KRB_ERROR);
1155 strncat (pop_error, error_message (rem),
1156 ERROR_MAX - sizeof (KRB_ERROR));
1157 strncat (pop_error, " [server says '",
1158 ERROR_MAX - strlen (pop_error) - 1);
1159 strncat (pop_error, err_ret->text.data,
1160 min (ERROR_MAX - strlen (pop_error) - 1,
1161 err_ret->text.length));
1162 strncat (pop_error, "']",
1163 ERROR_MAX - strlen (pop_error) - 1);
1165 else
1167 strcpy (pop_error, KRB_ERROR);
1168 strncat (pop_error, error_message (rem),
1169 ERROR_MAX - sizeof (KRB_ERROR));
1171 if (err_ret)
1172 krb5_free_error (err_ret);
1174 CLOSESOCKET (sock);
1175 return (-1);
1177 #else /* ! KRB5 */
1178 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
1179 realhost = strdup (hostent->h_name);
1180 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1181 (char *) krb_realmofhost (realhost),
1182 (unsigned long) 0, &msg_data, &cred, schedule,
1183 (struct sockaddr_in *) 0,
1184 (struct sockaddr_in *) 0,
1185 "KPOPV0.1");
1186 free ((char *) ticket);
1187 free (realhost);
1188 if (rem != KSUCCESS)
1190 strcpy (pop_error, KRB_ERROR);
1191 strncat (pop_error, krb_err_txt[rem],
1192 ERROR_MAX - sizeof (KRB_ERROR));
1193 CLOSESOCKET (sock);
1194 return (-1);
1196 #endif /* KRB5 */
1198 #endif /* KERBEROS */
1200 return (sock);
1201 } /* socket_connection */
1204 * Function: getline
1206 * Purpose: Get a line of text from the connection and return a
1207 * pointer to it. The carriage return and linefeed at the end of
1208 * the line are stripped, but periods at the beginnings of lines
1209 * are NOT dealt with in any special way.
1211 * Arguments:
1212 * server The server from which to get the line of text.
1214 * Returns: A non-null pointer if successful, or a null pointer on any
1215 * error, with an error message copied into pop_error.
1217 * Notes: The line returned is overwritten with each call to getline.
1219 * Side effects: Closes the connection on error.
1221 static char *
1222 getline (server)
1223 popserver server;
1225 #define GETLINE_ERROR "Error reading from server: "
1227 int ret;
1228 int search_offset = 0;
1230 if (server->data)
1232 char *cp = find_crlf (server->buffer + server->buffer_index);
1233 if (cp)
1235 int found;
1236 int data_used;
1238 found = server->buffer_index;
1239 data_used = (cp + 2) - server->buffer - found;
1241 *cp = '\0'; /* terminate the string to be returned */
1242 server->data -= data_used;
1243 server->buffer_index += data_used;
1245 if (pop_debug)
1246 fprintf (stderr, "<<< %s\n", server->buffer + found);
1247 return (server->buffer + found);
1249 else
1251 bcopy (server->buffer + server->buffer_index,
1252 server->buffer, server->data);
1253 /* Record the fact that we've searched the data already in
1254 the buffer for a CRLF, so that when we search below, we
1255 don't have to search the same data twice. There's a "-
1256 1" here to account for the fact that the last character
1257 of the data we have may be the CR of a CRLF pair, of
1258 which we haven't read the second half yet, so we may have
1259 to search it again when we read more data. */
1260 search_offset = server->data - 1;
1261 server->buffer_index = 0;
1264 else
1266 server->buffer_index = 0;
1269 while (1)
1271 /* There's a "- 1" here to leave room for the null that we put
1272 at the end of the read data below. We put the null there so
1273 that find_crlf knows where to stop when we call it. */
1274 if (server->data == server->buffer_size - 1)
1276 server->buffer_size += GETLINE_INCR;
1277 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1278 if (! server->buffer)
1280 strcpy (pop_error, "Out of memory in getline");
1281 pop_trash (server);
1282 return (0);
1285 ret = RECV (server->file, server->buffer + server->data,
1286 server->buffer_size - server->data - 1, 0);
1287 if (ret < 0)
1289 strcpy (pop_error, GETLINE_ERROR);
1290 strncat (pop_error, strerror (errno),
1291 ERROR_MAX - sizeof (GETLINE_ERROR));
1292 pop_trash (server);
1293 return (0);
1295 else if (ret == 0)
1297 strcpy (pop_error, "Unexpected EOF from server in getline");
1298 pop_trash (server);
1299 return (0);
1301 else
1303 char *cp;
1304 server->data += ret;
1305 server->buffer[server->data] = '\0';
1307 cp = find_crlf (server->buffer + search_offset);
1308 if (cp)
1310 int data_used = (cp + 2) - server->buffer;
1311 *cp = '\0';
1312 server->data -= data_used;
1313 server->buffer_index = data_used;
1315 if (pop_debug)
1316 fprintf (stderr, "<<< %s\n", server->buffer);
1317 return (server->buffer);
1319 search_offset += ret;
1323 /* NOTREACHED */
1327 * Function: sendline
1329 * Purpose: Sends a line of text to the POP server. The line of text
1330 * passed into this function should NOT have the carriage return
1331 * and linefeed on the end of it. Periods at beginnings of lines
1332 * will NOT be treated specially by this function.
1334 * Arguments:
1335 * server The server to which to send the text.
1336 * line The line of text to send.
1338 * Return value: Upon successful completion, a value of 0 will be
1339 * returned. Otherwise, a non-zero value will be returned, and
1340 * an error will be copied into pop_error.
1342 * Side effects: Closes the connection on error.
1344 static int
1345 sendline (server, line)
1346 popserver server;
1347 char *line;
1349 #define SENDLINE_ERROR "Error writing to POP server: "
1350 int ret;
1352 ret = fullwrite (server->file, line, strlen (line));
1353 if (ret >= 0)
1354 { /* 0 indicates that a blank line was written */
1355 ret = fullwrite (server->file, "\r\n", 2);
1358 if (ret < 0)
1360 pop_trash (server);
1361 strcpy (pop_error, SENDLINE_ERROR);
1362 strncat (pop_error, strerror (errno),
1363 ERROR_MAX - sizeof (SENDLINE_ERROR));
1364 return (ret);
1367 if (pop_debug)
1368 fprintf (stderr, ">>> %s\n", line);
1370 return (0);
1374 * Procedure: fullwrite
1376 * Purpose: Just like write, but keeps trying until the entire string
1377 * has been written.
1379 * Return value: Same as write. Pop_error is not set.
1381 static int
1382 fullwrite (fd, buf, nbytes)
1383 int fd;
1384 char *buf;
1385 int nbytes;
1387 char *cp;
1388 int ret;
1390 cp = buf;
1391 while ((ret = SEND (fd, cp, nbytes, 0)) > 0)
1393 cp += ret;
1394 nbytes -= ret;
1397 return (ret);
1401 * Procedure getok
1403 * Purpose: Reads a line from the server. If the return indicator is
1404 * positive, return with a zero exit status. If not, return with
1405 * a negative exit status.
1407 * Arguments:
1408 * server The server to read from.
1410 * Returns: 0 for success, else for failure and puts error in pop_error.
1412 * Side effects: On failure, may make the connection unusable.
1414 static int
1415 getok (server)
1416 popserver server;
1418 char *fromline;
1420 if (! (fromline = getline (server)))
1422 return (-1);
1425 if (! strncmp (fromline, "+OK", 3))
1426 return (0);
1427 else if (! strncmp (fromline, "-ERR", 4))
1429 strncpy (pop_error, fromline, ERROR_MAX);
1430 pop_error[ERROR_MAX-1] = '\0';
1431 return (-1);
1433 else
1435 strcpy (pop_error,
1436 "Unexpected response from server; expecting +OK or -ERR");
1437 pop_trash (server);
1438 return (-1);
1442 #if 0
1444 * Function: gettermination
1446 * Purpose: Gets the next line and verifies that it is a termination
1447 * line (nothing but a dot).
1449 * Return value: 0 on success, non-zero with pop_error set on error.
1451 * Side effects: Closes the connection on error.
1453 static int
1454 gettermination (server)
1455 popserver server;
1457 char *fromserver;
1459 fromserver = getline (server);
1460 if (! fromserver)
1461 return (-1);
1463 if (strcmp (fromserver, "."))
1465 strcpy (pop_error,
1466 "Unexpected response from server in gettermination");
1467 pop_trash (server);
1468 return (-1);
1471 return (0);
1473 #endif
1476 * Function pop_close
1478 * Purpose: Close a pop connection, sending a "RSET" command to try to
1479 * preserve any changes that were made and a "QUIT" command to
1480 * try to get the server to quit, but ignoring any responses that
1481 * are received.
1483 * Side effects: The server is unusable after this function returns.
1484 * Changes made to the maildrop since the session was started (or
1485 * since the last pop_reset) may be lost.
1487 void
1488 pop_close (server)
1489 popserver server;
1491 pop_trash (server);
1492 free ((char *) server);
1494 return;
1498 * Function: pop_trash
1500 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1501 * memory associated with the server. It is legal to call
1502 * pop_close or pop_quit after this function has been called.
1504 static void
1505 pop_trash (server)
1506 popserver server;
1508 if (server->file >= 0)
1510 /* avoid recursion; sendline can call pop_trash */
1511 if (server->trash_started)
1512 return;
1513 server->trash_started = 1;
1515 sendline (server, "RSET");
1516 sendline (server, "QUIT");
1518 CLOSESOCKET (server->file);
1519 server->file = -1;
1520 if (server->buffer)
1522 free (server->buffer);
1523 server->buffer = 0;
1527 #ifdef WINDOWSNT
1528 if (have_winsock)
1529 WSACleanup ();
1530 #endif
1533 /* Return a pointer to the first CRLF in IN_STRING,
1534 or 0 if it does not contain one. */
1536 static char *
1537 find_crlf (in_string)
1538 char *in_string;
1540 while (1)
1542 if (! *in_string)
1543 return (0);
1544 else if (*in_string == '\r')
1546 if (*++in_string == '\n')
1547 return (in_string - 1);
1549 else
1550 in_string++;
1552 /* NOTREACHED */
1555 #endif /* MAIL_USE_POP */