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/>. */
32 #include <sys/types.h>
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)
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)
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
61 extern struct servent
*hes_getservbyname (/* char *, char * */);
80 # ifdef HAVE_KERBEROSIV_KRB_H
81 # include <kerberosIV/krb.h>
83 # ifdef HAVE_KERBEROS_KRB_H
84 # include <kerberos/krb.h>
88 # ifdef HAVE_COM_ERR_H
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 *,
101 extern char *krb_realmofhost (/* char * */);
102 #endif /* ! KERBEROS5 */
103 #endif /* KERBEROS */
106 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
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
);
117 static int gettermination (popserver
);
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
126 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
128 #define KPOP_PORT 1109
129 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */
132 char pop_error
[ERROR_MAX
];
136 * Function: pop_open (char *host, char *username, char *password,
139 * Purpose: Establishes a connection with a post-office server, and
140 * completes the authorization portion of the session.
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,
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.
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
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.
165 pop_open (char *host
, char *username
, char *password
, int flags
)
170 /* Determine the user name */
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
;
187 strcpy (pop_error
, "Could not determine username");
195 * Determine the mail host.
200 host
= getenv ("MAILHOST");
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
212 host
= office
->po_host
;
213 username
= office
->po_name
;
227 strcpy (pop_error
, "Could not determine POP server");
231 /* Determine the password */
233 #define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
235 #define DONT_NEED_PASSWORD 0
238 if ((! password
) && (! DONT_NEED_PASSWORD
))
240 if (! (flags
& POP_NO_GETPASS
))
242 password
= getpass ("Enter POP password:");
246 strcpy (pop_error
, "Could not determine POP password");
250 if (password
) /* always true, detected 20060515 */
251 flags
|= POP_NO_KERBEROS
;
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
);
260 server
= (popserver
) malloc (sizeof (struct _popserver
));
263 strcpy (pop_error
, "Out of memory in pop_open");
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
);
276 server
->buffer_index
= 0;
277 server
->buffer_size
= GETLINE_MIN
;
278 server
->in_multi
= 0;
279 server
->trash_started
= 0;
285 * I really shouldn't use the pop_error variable like this, but....
287 if (strlen (username
) > ERROR_MAX
- 6)
291 "Username too long; recompile pop.c with larger ERROR_MAX");
294 sprintf (pop_error
, "USER %s", username
);
296 if (sendline (server
, pop_error
) || getok (server
))
301 if (strlen (password
) > ERROR_MAX
- 6)
305 "Password too long; recompile pop.c with larger ERROR_MAX");
308 sprintf (pop_error
, "PASS %s", password
);
310 if (sendline (server
, pop_error
) || getok (server
))
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
328 * Side effects: On failure, may make further operations on the
329 * connection impossible.
332 pop_stat (popserver server
, int *count
, int *size
)
337 if (server
->in_multi
)
339 strcpy (pop_error
, "In multi-line query in pop_stat");
343 if (sendline (server
, "STAT") || (pop_getline (server
, &fromserver
) < 0))
346 if (strncmp (fromserver
, "+OK ", 4))
348 if (0 == strncmp (fromserver
, "-ERR", 4))
350 strncpy (pop_error
, fromserver
, ERROR_MAX
);
355 "Unexpected response from POP server in pop_stat");
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");
371 fromserver
= end_ptr
;
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");
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.
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
398 * Return value: 0 on success, non-zero with error in pop_error on
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
)
410 if (server
->in_multi
)
412 strcpy (pop_error
, "In multi-line query in pop_list");
421 if (pop_stat (server
, &count
, &size
))
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");
436 sprintf (pop_error
, "LIST %d", message
);
437 if (sendline (server
, pop_error
))
439 free ((char *) *IDs
);
440 free ((char *) *sizes
);
443 if (pop_getline (server
, &fromserver
) < 0)
445 free ((char *) *IDs
);
446 free ((char *) *sizes
);
449 if (strncmp (fromserver
, "+OK ", 4))
451 if (! strncmp (fromserver
, "-ERR", 4))
452 strncpy (pop_error
, fromserver
, ERROR_MAX
);
456 "Unexpected response from server in pop_list");
459 free ((char *) *IDs
);
460 free ((char *) *sizes
);
463 (*IDs
)[0] = atoi (&fromserver
[4]);
464 fromserver
= strchr (&fromserver
[4], ' ');
468 "Badly formatted response from server in pop_list");
470 free ((char *) *IDs
);
471 free ((char *) *sizes
);
474 (*sizes
)[0] = atoi (fromserver
);
475 (*IDs
)[1] = (*sizes
)[1] = 0;
480 if (pop_multi_first (server
, "LIST", &fromserver
))
482 free ((char *) *IDs
);
483 free ((char *) *sizes
);
486 for (i
= 0; i
< how_many
; i
++)
488 if (pop_multi_next (server
, &fromserver
) <= 0)
490 free ((char *) *IDs
);
491 free ((char *) *sizes
);
494 (*IDs
)[i
] = atoi (fromserver
);
495 fromserver
= strchr (fromserver
, ' ');
499 "Badly formatted response from server in pop_list");
500 free ((char *) *IDs
);
501 free ((char *) *sizes
);
505 (*sizes
)[i
] = atoi (fromserver
);
507 if (pop_multi_next (server
, &fromserver
) < 0)
509 free ((char *) *IDs
);
510 free ((char *) *sizes
);
516 "Too many response lines from server in pop_list");
517 free ((char *) *IDs
);
518 free ((char *) *sizes
);
521 (*IDs
)[i
] = (*sizes
)[i
] = 0;
527 * Function: pop_retrieve
529 * Purpose: Retrieve a specified message from the maildrop.
532 * server The server to retrieve from.
533 * message The message number to retrieve.
535 * If true, then mark the string "From " at the beginning
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
;
553 if (server
->in_multi
)
555 strcpy (pop_error
, "In multi-line query in pop_retrieve");
559 if (pop_list (server
, message
, &IDs
, &sizes
))
562 if (pop_retrieve_first (server
, message
, &fromserver
))
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
);
576 free ((char *) sizes
);
580 strcpy (pop_error
, "Out of memory in pop_retrieve");
581 pop_retrieve_flush (server
);
585 while ((ret
= pop_retrieve_next (server
, &fromserver
)) >= 0)
593 if (markfrom
&& fromserver
[0] == 'F' && fromserver
[1] == 'r' &&
594 fromserver
[2] == 'o' && fromserver
[3] == 'm' &&
595 fromserver
[4] == ' ')
597 if (++fromcount
== 5)
600 ptr
= (char *)realloc (ptr
, bufsize
);
603 strcpy (pop_error
, "Out of memory in pop_retrieve");
604 pop_retrieve_flush (server
);
611 memcpy (&ptr
[cp
], fromserver
, ret
);
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
)
680 "Already in multi-line query in pop_multi_first");
684 if (sendline (server
, command
) || (pop_getline (server
, response
) < 0))
689 if (0 == strncmp (*response
, "-ERR", 4))
691 strncpy (pop_error
, *response
, ERROR_MAX
);
694 else if (0 == strncmp (*response
, "+OK", 3))
696 for (*response
+= 3; **response
== ' '; (*response
)++) /* empty */;
697 server
->in_multi
= 1;
703 "Unexpected response from server in pop_multi_first");
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
)
723 if (! server
->in_multi
)
725 strcpy (pop_error
, "Not in multi-line query in pop_multi_next");
729 if ((ret
= pop_getline (server
, &fromserver
)) < 0)
734 if (fromserver
[0] == '.')
739 server
->in_multi
= 0;
744 *line
= fromserver
+ 1;
756 pop_multi_flush (popserver server
)
761 if (! server
->in_multi
)
766 while ((ret
= pop_multi_next (server
, &line
)))
775 /* Function: pop_delete
777 * Purpose: Delete a specified message.
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
787 pop_delete (popserver server
, int message
)
789 if (server
->in_multi
)
791 strcpy (pop_error
, "In multi-line query in pop_delete");
795 sprintf (pop_error
, "DELE %d", message
);
797 if (sendline (server
, pop_error
) || getok (server
))
806 * Purpose: Send a noop command to the server.
809 * server The server to send to.
811 * Return value: 0 on success, non-zero with error in pop_error
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");
825 if (sendline (server
, "NOOP") || getok (server
))
834 * Purpose: Find out the highest seen message from 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
)
850 if (server
->in_multi
)
852 strcpy (pop_error
, "In multi-line query in pop_last");
856 if (sendline (server
, "LAST"))
859 if (pop_getline (server
, &fromserver
) < 0)
862 if (! strncmp (fromserver
, "-ERR", 4))
864 strncpy (pop_error
, fromserver
, ERROR_MAX
);
867 else if (strncmp (fromserver
, "+OK ", 4))
869 strcpy (pop_error
, "Unexpected response from server in pop_last");
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");
890 * Function: pop_reset
892 * Purpose: Reset the server to its initial connect state
897 * Return value: 0 for success, non-0 with error in pop_error
900 * Side effects: Closes the connection on error.
903 pop_reset (popserver server
)
905 if (pop_retrieve_flush (server
))
910 if (sendline (server
, "RSET") || getok (server
))
919 * Purpose: Quit the connection to the server,
922 * server The server to quit.
924 * Return value: 0 for success, non-zero otherwise with error in
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
)
935 if (server
->file
>= 0)
937 if (pop_retrieve_flush (server
))
942 if (sendline (server
, "QUIT") || getok (server
))
947 close (server
->file
);
950 free (server
->buffer
);
951 free ((char *) server
);
957 static int have_winsock
= 0;
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.
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
975 socket_connection (char *host
, int flags
)
977 #ifdef HAVE_GETADDRINFO
978 struct addrinfo
*res
, *it
;
979 struct addrinfo hints
;
981 #else /* !HAVE_GETADDRINFO */
982 struct hostent
*hostent
;
984 struct servent
*servent
;
985 struct sockaddr_in addr
;
993 krb5_context kcontext
= 0;
994 krb5_auth_context auth_context
= 0;
996 krb5_principal client
, server
;
1003 Key_schedule schedule
;
1005 #endif /* KERBEROS5 */
1006 #endif /* KERBEROS */
1013 WSADATA winsockData
;
1014 if (WSAStartup (0x101, &winsockData
) == 0)
1019 memset (&addr
, 0, sizeof (addr
));
1020 addr
.sin_family
= AF_INET
;
1022 /** "kpop" service is never used: look for 20060515 to see why **/
1024 service
= (flags
& POP_NO_KERBEROS
) ? POP_SERVICE
: KPOP_SERVICE
;
1026 service
= POP_SERVICE
;
1030 if (! (flags
& POP_NO_HESIOD
))
1032 servent
= hes_getservbyname (service
, "tcp");
1035 addr
.sin_port
= servent
->s_port
;
1042 servent
= getservbyname (service
, "tcp");
1045 addr
.sin_port
= servent
->s_port
;
1049 /** "kpop" service is never used: look for 20060515 to see why **/
1051 addr
.sin_port
= htons ((flags
& POP_NO_KERBEROS
) ?
1052 POP_PORT
: KPOP_PORT
);
1054 addr
.sin_port
= htons (POP_PORT
);
1059 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1061 sock
= socket (PF_INET
, SOCK_STREAM
, 0);
1064 strcpy (pop_error
, POP_SOCKET_ERROR
);
1065 strncat (pop_error
, strerror (errno
),
1066 ERROR_MAX
- sizeof (POP_SOCKET_ERROR
));
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
);
1080 if (ret
!= 0 && (ret
!= EAI_AGAIN
|| try_count
== 5))
1082 strcpy (pop_error
, "Could not determine POP server's address");
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
)))
1101 connect_ok
= it
!= NULL
;
1104 realhost
= alloca (strlen (it
->ai_canonname
) + 1);
1105 strcpy (realhost
, it
->ai_canonname
);
1109 #else /* !HAVE_GETADDRINFO */
1112 hostent
= gethostbyname (host
);
1114 if ((! hostent
) && ((h_errno
!= TRY_AGAIN
) || (try_count
== 5)))
1116 strcpy (pop_error
, "Could not determine POP server's address");
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
)))
1126 hostent
->h_addr_list
++;
1128 connect_ok
= *hostent
->h_addr_list
!= NULL
;
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: "
1142 strcpy (pop_error
, CONNECT_ERROR
);
1143 strncat (pop_error
, strerror (errno
),
1144 ERROR_MAX
- sizeof (CONNECT_ERROR
));
1151 #define KRB_ERROR "Kerberos error connecting to POP server: "
1152 if (! (flags
& POP_NO_KERBEROS
))
1155 if ((rem
= krb5_init_context (&kcontext
)))
1159 krb5_auth_con_free (kcontext
, auth_context
);
1161 krb5_free_context (kcontext
);
1162 strcpy (pop_error
, KRB_ERROR
);
1163 strncat (pop_error
, error_message (rem
),
1164 ERROR_MAX
- sizeof(KRB_ERROR
));
1169 if ((rem
= krb5_auth_con_init (kcontext
, &auth_context
)))
1172 if (rem
= krb5_cc_default (kcontext
, &ccdef
))
1175 if (rem
= krb5_cc_get_principal (kcontext
, ccdef
, &client
))
1178 for (cp
= realhost
; *cp
; cp
++)
1182 *cp
= tolower (*cp
);
1186 if (rem
= krb5_sname_to_principal (kcontext
, realhost
,
1187 POP_SERVICE
, FALSE
, &server
))
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 */
1197 0, /* don't need subsession key */
1198 0); /* don't need reply */
1199 krb5_free_principal (kcontext
, server
);
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);
1228 krb5_free_error (kcontext
, err_ret
);
1229 krb5_auth_con_free (kcontext
, auth_context
);
1230 krb5_free_context (kcontext
);
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,
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
));
1252 #endif /* KERBEROS5 */
1254 #endif /* KERBEROS */
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.
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!
1283 pop_getline (popserver server
, char **line
)
1285 #define GETLINE_ERROR "Error reading from server: "
1288 int search_offset
= 0;
1292 char *cp
= find_crlf (server
->buffer
+ server
->buffer_index
,
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
;
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);
1315 memmove (server
->buffer
, server
->buffer
+ server
->buffer_index
,
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;
1330 server
->buffer_index
= 0;
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");
1349 ret
= RECV (server
->file
, server
->buffer
+ server
->data
,
1350 server
->buffer_size
- server
->data
- 1, 0);
1353 strcpy (pop_error
, GETLINE_ERROR
);
1354 strncat (pop_error
, strerror (errno
),
1355 ERROR_MAX
- sizeof (GETLINE_ERROR
));
1361 strcpy (pop_error
, "Unexpected EOF from server in pop_getline");
1368 server
->data
+= ret
;
1369 server
->buffer
[server
->data
] = '\0';
1371 cp
= find_crlf (server
->buffer
+ search_offset
,
1372 server
->data
- search_offset
);
1375 int data_used
= (cp
+ 2) - server
->buffer
;
1377 server
->data
-= data_used
;
1378 server
->buffer_index
= data_used
;
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;
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.
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.
1413 sendline (popserver server
, const char *line
)
1415 #define SENDLINE_ERROR "Error writing to POP server: "
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);
1433 strcat (buf
, "\r\n");
1434 ret
= fullwrite (server
->file
, buf
, strlen (buf
));
1439 strcpy (pop_error
, SENDLINE_ERROR
);
1440 strncat (pop_error
, strerror (errno
),
1441 ERROR_MAX
- sizeof (SENDLINE_ERROR
));
1446 fprintf (stderr
, ">>> %s\n", line
);
1452 * Procedure: fullwrite
1454 * Purpose: Just like write, but keeps trying until the entire string
1457 * Return value: Same as write. Pop_error is not set.
1460 fullwrite (int fd
, char *buf
, int nbytes
)
1466 while (nbytes
&& ((ret
= SEND (fd
, cp
, nbytes
, 0)) > 0))
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.
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.
1490 getok (popserver server
)
1494 if (pop_getline (server
, &fromline
) < 0)
1499 if (! strncmp (fromline
, "+OK", 3))
1501 else if (! strncmp (fromline
, "-ERR", 4))
1503 strncpy (pop_error
, fromline
, ERROR_MAX
);
1504 pop_error
[ERROR_MAX
-1] = '\0';
1510 "Unexpected response from server; expecting +OK or -ERR");
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.
1528 gettermination (server
)
1533 if (pop_getline (server
, &fromserver
) < 0)
1536 if (strcmp (fromserver
, "."))
1539 "Unexpected response from server in gettermination");
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
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.
1561 pop_close (popserver server
)
1564 free ((char *) server
);
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.
1577 pop_trash (popserver server
)
1579 if (server
->file
>= 0)
1581 /* avoid recursion; sendline can call pop_trash */
1582 if (server
->trash_started
)
1584 server
->trash_started
= 1;
1586 sendline (server
, "RSET");
1587 sendline (server
, "QUIT");
1589 CLOSESOCKET (server
->file
);
1593 free (server
->buffer
);
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. */
1609 find_crlf (char *in_string
, int len
)
1613 if (*in_string
== '\r')
1615 if (*++in_string
== '\n')
1616 return (in_string
- 1);
1624 #endif /* MAIL_USE_POP */