1 /* pop.c: client routines for talking to a POP3-protocol post-office server
2 Copyright (C) 1991, 1993, 1996, 1997, 1999, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
4 Written by Jonathan Kamens, jik@security.ov.com.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #define NO_SHORTNAMES /* Tell config not to load remap.h */
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 * */);
83 # ifdef HAVE_KERBEROSIV_KRB_H
84 # include <kerberosIV/krb.h>
86 # ifdef HAVE_KERBEROS_KRB_H
87 # include <kerberos/krb.h>
91 # ifdef HAVE_COM_ERR_H
98 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
99 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
100 struct sockaddr_in *, struct sockaddr_in *,
102 extern char *krb_realmofhost (/* char * */);
103 #endif /* ! KERBEROS5 */
104 #endif /* KERBEROS */
107 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
117 # endif /* __STDC__ */
120 static int socket_connection
__P((char *, int));
121 static int pop_getline
__P((popserver
, char **));
122 static int sendline
__P((popserver
, char *));
123 static int fullwrite
__P((int, char *, int));
124 static int getok
__P((popserver
));
126 static int gettermination
__P((popserver
));
128 static void pop_trash
__P((popserver
));
129 static char *find_crlf
__P((char *, int));
131 #define ERROR_MAX 160 /* a pretty arbitrary size, but needs
132 to be bigger than the original
135 #define KPOP_PORT 1109
136 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
138 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */
141 char pop_error
[ERROR_MAX
];
145 #define min(a,b) (((a) < (b)) ? (a) : (b))
149 * Function: pop_open (char *host, char *username, char *password,
152 * Purpose: Establishes a connection with a post-office server, and
153 * completes the authorization portion of the session.
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,
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.
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
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.
178 pop_open (host
, username
, password
, flags
)
187 /* Determine the user name */
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
;
204 strcpy (pop_error
, "Could not determine username");
212 * Determine the mail host.
217 host
= getenv ("MAILHOST");
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
229 host
= office
->po_host
;
230 username
= office
->po_name
;
244 strcpy (pop_error
, "Could not determine POP server");
248 /* Determine the password */
250 #define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
252 #define DONT_NEED_PASSWORD 0
255 if ((! password
) && (! DONT_NEED_PASSWORD
))
257 if (! (flags
& POP_NO_GETPASS
))
259 password
= getpass ("Enter POP password:");
263 strcpy (pop_error
, "Could not determine POP password");
267 if (password
) /* always true, detected 20060515 */
268 flags
|= POP_NO_KERBEROS
;
270 password
= username
; /* dead code, detected 20060515 */
271 /** "kpop" service is never used: look for 20060515 to see why **/
273 sock
= socket_connection (host
, flags
);
277 server
= (popserver
) malloc (sizeof (struct _popserver
));
280 strcpy (pop_error
, "Out of memory in pop_open");
283 server
->buffer
= (char *) malloc (GETLINE_MIN
);
284 if (! server
->buffer
)
286 strcpy (pop_error
, "Out of memory in pop_open");
287 free ((char *) server
);
293 server
->buffer_index
= 0;
294 server
->buffer_size
= GETLINE_MIN
;
295 server
->in_multi
= 0;
296 server
->trash_started
= 0;
302 * I really shouldn't use the pop_error variable like this, but....
304 if (strlen (username
) > ERROR_MAX
- 6)
308 "Username too long; recompile pop.c with larger ERROR_MAX");
311 sprintf (pop_error
, "USER %s", username
);
313 if (sendline (server
, pop_error
) || getok (server
))
318 if (strlen (password
) > ERROR_MAX
- 6)
322 "Password too long; recompile pop.c with larger ERROR_MAX");
325 sprintf (pop_error
, "PASS %s", password
);
327 if (sendline (server
, pop_error
) || getok (server
))
338 * Purpose: Issue the STAT command to the server and return (in the
339 * value parameters) the number of messages in the maildrop and
340 * the total size of the maildrop.
342 * Return value: 0 on success, or non-zero with an error in pop_error
345 * Side effects: On failure, may make further operations on the
346 * connection impossible.
349 pop_stat (server
, count
, size
)
356 if (server
->in_multi
)
358 strcpy (pop_error
, "In multi-line query in pop_stat");
362 if (sendline (server
, "STAT") || (pop_getline (server
, &fromserver
) < 0))
365 if (strncmp (fromserver
, "+OK ", 4))
367 if (0 == strncmp (fromserver
, "-ERR", 4))
369 strncpy (pop_error
, fromserver
, ERROR_MAX
);
374 "Unexpected response from POP server in pop_stat");
380 *count
= atoi (&fromserver
[4]);
382 fromserver
= index (&fromserver
[4], ' ');
386 "Badly formatted response from server in pop_stat");
391 *size
= atoi (fromserver
+ 1);
399 * Purpose: Performs the POP "list" command and returns (in value
400 * parameters) two malloc'd zero-terminated arrays -- one of
401 * message IDs, and a parallel one of sizes.
404 * server The pop connection to talk to.
405 * message The number of the one message about which to get
406 * information, or 0 to get information about all
409 * Return value: 0 on success, non-zero with error in pop_error on
412 * Side effects: On failure, may make further operations on the
413 * connection impossible.
416 pop_list (server
, message
, IDs
, sizes
)
425 if (server
->in_multi
)
427 strcpy (pop_error
, "In multi-line query in pop_list");
436 if (pop_stat (server
, &count
, &size
))
441 *IDs
= (int *) malloc ((how_many
+ 1) * sizeof (int));
442 *sizes
= (int *) malloc ((how_many
+ 1) * sizeof (int));
443 if (! (*IDs
&& *sizes
))
445 strcpy (pop_error
, "Out of memory in pop_list");
451 sprintf (pop_error
, "LIST %d", message
);
452 if (sendline (server
, pop_error
))
454 free ((char *) *IDs
);
455 free ((char *) *sizes
);
458 if (pop_getline (server
, &fromserver
) < 0)
460 free ((char *) *IDs
);
461 free ((char *) *sizes
);
464 if (strncmp (fromserver
, "+OK ", 4))
466 if (! strncmp (fromserver
, "-ERR", 4))
467 strncpy (pop_error
, fromserver
, ERROR_MAX
);
471 "Unexpected response from server in pop_list");
474 free ((char *) *IDs
);
475 free ((char *) *sizes
);
478 (*IDs
)[0] = atoi (&fromserver
[4]);
479 fromserver
= index (&fromserver
[4], ' ');
483 "Badly formatted response from server in pop_list");
485 free ((char *) *IDs
);
486 free ((char *) *sizes
);
489 (*sizes
)[0] = atoi (fromserver
);
490 (*IDs
)[1] = (*sizes
)[1] = 0;
495 if (pop_multi_first (server
, "LIST", &fromserver
))
497 free ((char *) *IDs
);
498 free ((char *) *sizes
);
501 for (i
= 0; i
< how_many
; i
++)
503 if (pop_multi_next (server
, &fromserver
) <= 0)
505 free ((char *) *IDs
);
506 free ((char *) *sizes
);
509 (*IDs
)[i
] = atoi (fromserver
);
510 fromserver
= index (fromserver
, ' ');
514 "Badly formatted response from server in pop_list");
515 free ((char *) *IDs
);
516 free ((char *) *sizes
);
520 (*sizes
)[i
] = atoi (fromserver
);
522 if (pop_multi_next (server
, &fromserver
) < 0)
524 free ((char *) *IDs
);
525 free ((char *) *sizes
);
531 "Too many response lines from server in pop_list");
532 free ((char *) *IDs
);
533 free ((char *) *sizes
);
536 (*IDs
)[i
] = (*sizes
)[i
] = 0;
542 * Function: pop_retrieve
544 * Purpose: Retrieve a specified message from the maildrop.
547 * server The server to retrieve from.
548 * message The message number to retrieve.
550 * If true, then mark the string "From " at the beginning
552 * msg_buf Output parameter to which a buffer containing the
553 * message is assigned.
555 * Return value: The number of bytes in msg_buf, which may contain
556 * embedded nulls, not including its final null, or -1 on error
557 * with pop_error set.
559 * Side effects: May kill connection on error.
562 pop_retrieve (server
, message
, markfrom
, msg_buf
)
568 int *IDs
, *sizes
, bufsize
, fromcount
= 0, cp
= 0;
569 char *ptr
, *fromserver
;
572 if (server
->in_multi
)
574 strcpy (pop_error
, "In multi-line query in pop_retrieve");
578 if (pop_list (server
, message
, &IDs
, &sizes
))
581 if (pop_retrieve_first (server
, message
, &fromserver
))
587 * The "5" below is an arbitrary constant -- I assume that if
588 * there are "From" lines in the text to be marked, there
589 * probably won't be more than 5 of them. If there are, I
590 * allocate more space for them below.
592 bufsize
= sizes
[0] + (markfrom
? 5 : 0);
593 ptr
= (char *)malloc (bufsize
);
595 free ((char *) sizes
);
599 strcpy (pop_error
, "Out of memory in pop_retrieve");
600 pop_retrieve_flush (server
);
604 while ((ret
= pop_retrieve_next (server
, &fromserver
)) >= 0)
612 if (markfrom
&& fromserver
[0] == 'F' && fromserver
[1] == 'r' &&
613 fromserver
[2] == 'o' && fromserver
[3] == 'm' &&
614 fromserver
[4] == ' ')
616 if (++fromcount
== 5)
619 ptr
= (char *)realloc (ptr
, bufsize
);
622 strcpy (pop_error
, "Out of memory in pop_retrieve");
623 pop_retrieve_flush (server
);
630 bcopy (fromserver
, &ptr
[cp
], ret
);
640 pop_retrieve_first (server
, message
, response
)
645 sprintf (pop_error
, "RETR %d", message
);
646 return (pop_multi_first (server
, pop_error
, response
));
650 Returns a negative number on error, 0 to indicate that the data has
651 all been read (i.e., the server has returned a "." termination
652 line), or a positive number indicating the number of bytes in the
653 returned buffer (which is null-terminated and may contain embedded
654 nulls, but the returned bytecount doesn't include the final null).
658 pop_retrieve_next (server
, line
)
662 return (pop_multi_next (server
, line
));
666 pop_retrieve_flush (server
)
669 return (pop_multi_flush (server
));
673 pop_top_first (server
, message
, lines
, response
)
678 sprintf (pop_error
, "TOP %d %d", message
, lines
);
679 return (pop_multi_first (server
, pop_error
, response
));
683 Returns a negative number on error, 0 to indicate that the data has
684 all been read (i.e., the server has returned a "." termination
685 line), or a positive number indicating the number of bytes in the
686 returned buffer (which is null-terminated and may contain embedded
687 nulls, but the returned bytecount doesn't include the final null).
691 pop_top_next (server
, line
)
695 return (pop_multi_next (server
, line
));
699 pop_top_flush (server
)
702 return (pop_multi_flush (server
));
706 pop_multi_first (server
, command
, response
)
711 if (server
->in_multi
)
714 "Already in multi-line query in pop_multi_first");
718 if (sendline (server
, command
) || (pop_getline (server
, response
) < 0))
723 if (0 == strncmp (*response
, "-ERR", 4))
725 strncpy (pop_error
, *response
, ERROR_MAX
);
728 else if (0 == strncmp (*response
, "+OK", 3))
730 for (*response
+= 3; **response
== ' '; (*response
)++) /* empty */;
731 server
->in_multi
= 1;
737 "Unexpected response from server in pop_multi_first");
743 Read the next line of data from SERVER and place a pointer to it
744 into LINE. Return -1 on error, 0 if there are no more lines to read
745 (i.e., the server has returned a line containing only "."), or a
746 positive number indicating the number of bytes in the LINE buffer
747 (not including the final null). The data in that buffer may contain
748 embedded nulls, but does not contain the final CRLF. When returning
749 0, LINE is set to null. */
752 pop_multi_next (server
, line
)
759 if (! server
->in_multi
)
761 strcpy (pop_error
, "Not in multi-line query in pop_multi_next");
765 if ((ret
= pop_getline (server
, &fromserver
)) < 0)
770 if (fromserver
[0] == '.')
775 server
->in_multi
= 0;
780 *line
= fromserver
+ 1;
792 pop_multi_flush (server
)
798 if (! server
->in_multi
)
803 while ((ret
= pop_multi_next (server
, &line
)))
812 /* Function: pop_delete
814 * Purpose: Delete a specified message.
817 * server Server from which to delete the message.
818 * message Message to delete.
820 * Return value: 0 on success, non-zero with error in pop_error
824 pop_delete (server
, message
)
828 if (server
->in_multi
)
830 strcpy (pop_error
, "In multi-line query in pop_delete");
834 sprintf (pop_error
, "DELE %d", message
);
836 if (sendline (server
, pop_error
) || getok (server
))
845 * Purpose: Send a noop command to the server.
848 * server The server to send to.
850 * Return value: 0 on success, non-zero with error in pop_error
853 * Side effects: Closes connection on error.
859 if (server
->in_multi
)
861 strcpy (pop_error
, "In multi-line query in pop_noop");
865 if (sendline (server
, "NOOP") || getok (server
))
874 * Purpose: Find out the highest seen message from the server.
879 * Return value: If successful, the highest seen message, which is
880 * greater than or equal to 0. Otherwise, a negative number with
881 * the error explained in pop_error.
883 * Side effects: Closes the connection on error.
891 if (server
->in_multi
)
893 strcpy (pop_error
, "In multi-line query in pop_last");
897 if (sendline (server
, "LAST"))
900 if (pop_getline (server
, &fromserver
) < 0)
903 if (! strncmp (fromserver
, "-ERR", 4))
905 strncpy (pop_error
, fromserver
, ERROR_MAX
);
908 else if (strncmp (fromserver
, "+OK ", 4))
910 strcpy (pop_error
, "Unexpected response from server in pop_last");
916 return (atoi (&fromserver
[4]));
921 * Function: pop_reset
923 * Purpose: Reset the server to its initial connect state
928 * Return value: 0 for success, non-0 with error in pop_error
931 * Side effects: Closes the connection on error.
937 if (pop_retrieve_flush (server
))
942 if (sendline (server
, "RSET") || getok (server
))
951 * Purpose: Quit the connection to the server,
954 * server The server to quit.
956 * Return value: 0 for success, non-zero otherwise with error in
959 * Side Effects: The popserver passed in is unusable after this
960 * function is called, even if an error occurs.
968 if (server
->file
>= 0)
970 if (pop_retrieve_flush (server
))
975 if (sendline (server
, "QUIT") || getok (server
))
980 close (server
->file
);
984 free (server
->buffer
);
985 free ((char *) server
);
991 static int have_winsock
= 0;
995 * Function: socket_connection
997 * Purpose: Opens the network connection with the mail host, without
998 * doing any sort of I/O with it or anything.
1001 * host The host to which to connect.
1002 * flags Option flags.
1004 * Return value: A file descriptor indicating the connection, or -1
1005 * indicating failure, in which case an error has been copied
1009 socket_connection (host
, flags
)
1013 struct hostent
*hostent
;
1014 struct servent
*servent
;
1015 struct sockaddr_in addr
;
1016 char found_port
= 0;
1021 krb5_error_code rem
;
1022 krb5_context kcontext
= 0;
1023 krb5_auth_context auth_context
= 0;
1025 krb5_principal client
, server
;
1026 krb5_error
*err_ret
;
1032 Key_schedule schedule
;
1035 #endif /* KERBEROS5 */
1036 #endif /* KERBEROS */
1042 WSADATA winsockData
;
1043 if (WSAStartup (0x101, &winsockData
) == 0)
1048 bzero ((char *) &addr
, sizeof (addr
));
1049 addr
.sin_family
= AF_INET
;
1051 /** "kpop" service is never used: look for 20060515 to see why **/
1053 service
= (flags
& POP_NO_KERBEROS
) ? POP_SERVICE
: KPOP_SERVICE
;
1055 service
= POP_SERVICE
;
1059 if (! (flags
& POP_NO_HESIOD
))
1061 servent
= hes_getservbyname (service
, "tcp");
1064 addr
.sin_port
= servent
->s_port
;
1071 servent
= getservbyname (service
, "tcp");
1074 addr
.sin_port
= servent
->s_port
;
1078 /** "kpop" service is never used: look for 20060515 to see why **/
1080 addr
.sin_port
= htons ((flags
& POP_NO_KERBEROS
) ?
1081 POP_PORT
: KPOP_PORT
);
1083 addr
.sin_port
= htons (POP_PORT
);
1088 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1090 sock
= socket (PF_INET
, SOCK_STREAM
, 0);
1093 strcpy (pop_error
, POP_SOCKET_ERROR
);
1094 strncat (pop_error
, strerror (errno
),
1095 ERROR_MAX
- sizeof (POP_SOCKET_ERROR
));
1102 hostent
= gethostbyname (host
);
1104 if ((! hostent
) && ((h_errno
!= TRY_AGAIN
) || (try_count
== 5)))
1106 strcpy (pop_error
, "Could not determine POP server's address");
1109 } while (! hostent
);
1111 while (*hostent
->h_addr_list
)
1113 bcopy (*hostent
->h_addr_list
, (char *) &addr
.sin_addr
,
1115 if (! connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)))
1117 hostent
->h_addr_list
++;
1120 #define CONNECT_ERROR "Could not connect to POP server: "
1122 if (! *hostent
->h_addr_list
)
1125 strcpy (pop_error
, CONNECT_ERROR
);
1126 strncat (pop_error
, strerror (errno
),
1127 ERROR_MAX
- sizeof (CONNECT_ERROR
));
1133 #define KRB_ERROR "Kerberos error connecting to POP server: "
1134 if (! (flags
& POP_NO_KERBEROS
))
1137 if ((rem
= krb5_init_context (&kcontext
)))
1141 krb5_auth_con_free (kcontext
, auth_context
);
1143 krb5_free_context (kcontext
);
1144 strcpy (pop_error
, KRB_ERROR
);
1145 strncat (pop_error
, error_message (rem
),
1146 ERROR_MAX
- sizeof(KRB_ERROR
));
1151 if ((rem
= krb5_auth_con_init (kcontext
, &auth_context
)))
1154 if (rem
= krb5_cc_default (kcontext
, &ccdef
))
1157 if (rem
= krb5_cc_get_principal (kcontext
, ccdef
, &client
))
1160 for (cp
= hostent
->h_name
; *cp
; cp
++)
1164 *cp
= tolower (*cp
);
1168 if (rem
= krb5_sname_to_principal (kcontext
, hostent
->h_name
,
1169 POP_SERVICE
, FALSE
, &server
))
1172 rem
= krb5_sendauth (kcontext
, &auth_context
,
1173 (krb5_pointer
) &sock
, "KPOPV1.0", client
, server
,
1174 AP_OPTS_MUTUAL_REQUIRED
,
1175 0, /* no checksum */
1176 0, /* no creds, use ccache instead */
1179 0, /* don't need subsession key */
1180 0); /* don't need reply */
1181 krb5_free_principal (kcontext
, server
);
1184 if (err_ret
&& err_ret
->text
.length
)
1186 strcpy (pop_error
, KRB_ERROR
);
1187 strncat (pop_error
, error_message (rem
),
1188 ERROR_MAX
- sizeof (KRB_ERROR
));
1189 strncat (pop_error
, " [server says '",
1190 ERROR_MAX
- strlen (pop_error
) - 1);
1191 strncat (pop_error
, err_ret
->text
.data
,
1192 min (ERROR_MAX
- strlen (pop_error
) - 1,
1193 err_ret
->text
.length
));
1194 strncat (pop_error
, "']",
1195 ERROR_MAX
- strlen (pop_error
) - 1);
1199 strcpy (pop_error
, KRB_ERROR
);
1200 strncat (pop_error
, error_message (rem
),
1201 ERROR_MAX
- sizeof (KRB_ERROR
));
1204 krb5_free_error (kcontext
, err_ret
);
1205 krb5_auth_con_free (kcontext
, auth_context
);
1206 krb5_free_context (kcontext
);
1211 #else /* ! KERBEROS5 */
1212 ticket
= (KTEXT
) malloc (sizeof (KTEXT_ST
));
1213 realhost
= strdup (hostent
->h_name
);
1214 rem
= krb_sendauth (0L, sock
, ticket
, "pop", realhost
,
1215 (char *) krb_realmofhost (realhost
),
1216 (unsigned long) 0, &msg_data
, &cred
, schedule
,
1217 (struct sockaddr_in
*) 0,
1218 (struct sockaddr_in
*) 0,
1220 free ((char *) ticket
);
1222 if (rem
!= KSUCCESS
)
1224 strcpy (pop_error
, KRB_ERROR
);
1225 strncat (pop_error
, krb_err_txt
[rem
],
1226 ERROR_MAX
- sizeof (KRB_ERROR
));
1230 #endif /* KERBEROS5 */
1232 #endif /* KERBEROS */
1235 } /* socket_connection */
1238 * Function: pop_getline
1240 * Purpose: Get a line of text from the connection and return a
1241 * pointer to it. The carriage return and linefeed at the end of
1242 * the line are stripped, but periods at the beginnings of lines
1243 * are NOT dealt with in any special way.
1246 * server The server from which to get the line of text.
1248 * Returns: The number of characters in the line, which is returned in
1249 * LINE, not including the final null. A return value of 0
1250 * indicates a blank line. A negative return value indicates an
1251 * error (in which case the contents of LINE are undefined. In
1252 * case of error, an error message is copied into pop_error.
1254 * Notes: The line returned is overwritten with each call to pop_getline.
1256 * Side effects: Closes the connection on error.
1258 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
1261 pop_getline (server
, line
)
1265 #define GETLINE_ERROR "Error reading from server: "
1268 int search_offset
= 0;
1272 char *cp
= find_crlf (server
->buffer
+ server
->buffer_index
,
1279 found
= server
->buffer_index
;
1280 data_used
= (cp
+ 2) - server
->buffer
- found
;
1282 *cp
= '\0'; /* terminate the string to be returned */
1283 server
->data
-= data_used
;
1284 server
->buffer_index
+= data_used
;
1287 /* Embedded nulls will truncate this output prematurely,
1288 but that's OK because it's just for debugging anyway. */
1289 fprintf (stderr
, "<<< %s\n", server
->buffer
+ found
);
1290 *line
= server
->buffer
+ found
;
1291 return (data_used
- 2);
1295 bcopy (server
->buffer
+ server
->buffer_index
,
1296 server
->buffer
, server
->data
);
1297 /* Record the fact that we've searched the data already in
1298 the buffer for a CRLF, so that when we search below, we
1299 don't have to search the same data twice. There's a "-
1300 1" here to account for the fact that the last character
1301 of the data we have may be the CR of a CRLF pair, of
1302 which we haven't read the second half yet, so we may have
1303 to search it again when we read more data. */
1304 search_offset
= server
->data
- 1;
1305 server
->buffer_index
= 0;
1310 server
->buffer_index
= 0;
1315 /* There's a "- 1" here to leave room for the null that we put
1316 at the end of the read data below. We put the null there so
1317 that find_crlf knows where to stop when we call it. */
1318 if (server
->data
== server
->buffer_size
- 1)
1320 server
->buffer_size
+= GETLINE_INCR
;
1321 server
->buffer
= (char *)realloc (server
->buffer
, server
->buffer_size
);
1322 if (! server
->buffer
)
1324 strcpy (pop_error
, "Out of memory in pop_getline");
1329 ret
= RECV (server
->file
, server
->buffer
+ server
->data
,
1330 server
->buffer_size
- server
->data
- 1, 0);
1333 strcpy (pop_error
, GETLINE_ERROR
);
1334 strncat (pop_error
, strerror (errno
),
1335 ERROR_MAX
- sizeof (GETLINE_ERROR
));
1341 strcpy (pop_error
, "Unexpected EOF from server in pop_getline");
1348 server
->data
+= ret
;
1349 server
->buffer
[server
->data
] = '\0';
1351 cp
= find_crlf (server
->buffer
+ search_offset
,
1352 server
->data
- search_offset
);
1355 int data_used
= (cp
+ 2) - server
->buffer
;
1357 server
->data
-= data_used
;
1358 server
->buffer_index
= data_used
;
1361 fprintf (stderr
, "<<< %s\n", server
->buffer
);
1362 *line
= server
->buffer
;
1363 return (data_used
- 2);
1365 /* As above, the "- 1" here is to account for the fact that
1366 we may have read a CR without its accompanying LF. */
1367 search_offset
+= ret
- 1;
1375 * Function: sendline
1377 * Purpose: Sends a line of text to the POP server. The line of text
1378 * passed into this function should NOT have the carriage return
1379 * and linefeed on the end of it. Periods at beginnings of lines
1380 * will NOT be treated specially by this function.
1383 * server The server to which to send the text.
1384 * line The line of text to send.
1386 * Return value: Upon successful completion, a value of 0 will be
1387 * returned. Otherwise, a non-zero value will be returned, and
1388 * an error will be copied into pop_error.
1390 * Side effects: Closes the connection on error.
1393 sendline (server
, line
)
1397 #define SENDLINE_ERROR "Error writing to POP server: "
1401 /* Combine the string and the CR-LF into one buffer. Otherwise, two
1402 reasonable network stack optimizations, Nagle's algorithm and
1403 delayed acks, combine to delay us a fraction of a second on every
1404 message we send. (Movemail writes line without \r\n, client
1405 kernel sends packet, server kernel delays the ack to see if it
1406 can combine it with data, movemail writes \r\n, client kernel
1407 waits because it has unacked data already in its outgoing queue,
1408 client kernel eventually times out and sends.)
1410 This can be something like 0.2s per command, which can add up
1411 over a few dozen messages, and is a big chunk of the time we
1412 spend fetching mail from a server close by. */
1413 buf
= alloca (strlen (line
) + 3);
1415 strcat (buf
, "\r\n");
1416 ret
= fullwrite (server
->file
, buf
, strlen (buf
));
1421 strcpy (pop_error
, SENDLINE_ERROR
);
1422 strncat (pop_error
, strerror (errno
),
1423 ERROR_MAX
- sizeof (SENDLINE_ERROR
));
1428 fprintf (stderr
, ">>> %s\n", line
);
1434 * Procedure: fullwrite
1436 * Purpose: Just like write, but keeps trying until the entire string
1439 * Return value: Same as write. Pop_error is not set.
1442 fullwrite (fd
, buf
, nbytes
)
1451 while (nbytes
&& ((ret
= SEND (fd
, cp
, nbytes
, 0)) > 0))
1463 * Purpose: Reads a line from the server. If the return indicator is
1464 * positive, return with a zero exit status. If not, return with
1465 * a negative exit status.
1468 * server The server to read from.
1470 * Returns: 0 for success, else for failure and puts error in pop_error.
1472 * Side effects: On failure, may make the connection unusable.
1480 if (pop_getline (server
, &fromline
) < 0)
1485 if (! strncmp (fromline
, "+OK", 3))
1487 else if (! strncmp (fromline
, "-ERR", 4))
1489 strncpy (pop_error
, fromline
, ERROR_MAX
);
1490 pop_error
[ERROR_MAX
-1] = '\0';
1496 "Unexpected response from server; expecting +OK or -ERR");
1504 * Function: gettermination
1506 * Purpose: Gets the next line and verifies that it is a termination
1507 * line (nothing but a dot).
1509 * Return value: 0 on success, non-zero with pop_error set on error.
1511 * Side effects: Closes the connection on error.
1514 gettermination (server
)
1519 if (pop_getline (server
, &fromserver
) < 0)
1522 if (strcmp (fromserver
, "."))
1525 "Unexpected response from server in gettermination");
1535 * Function pop_close
1537 * Purpose: Close a pop connection, sending a "RSET" command to try to
1538 * preserve any changes that were made and a "QUIT" command to
1539 * try to get the server to quit, but ignoring any responses that
1542 * Side effects: The server is unusable after this function returns.
1543 * Changes made to the maildrop since the session was started (or
1544 * since the last pop_reset) may be lost.
1551 free ((char *) server
);
1557 * Function: pop_trash
1559 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1560 * memory associated with the server. It is legal to call
1561 * pop_close or pop_quit after this function has been called.
1567 if (server
->file
>= 0)
1569 /* avoid recursion; sendline can call pop_trash */
1570 if (server
->trash_started
)
1572 server
->trash_started
= 1;
1574 sendline (server
, "RSET");
1575 sendline (server
, "QUIT");
1577 CLOSESOCKET (server
->file
);
1581 free (server
->buffer
);
1592 /* Return a pointer to the first CRLF in IN_STRING, which can contain
1593 embedded nulls and has LEN characters in it not including the final
1594 null, or 0 if it does not contain one. */
1597 find_crlf (in_string
, len
)
1603 if (*in_string
== '\r')
1605 if (*++in_string
== '\n')
1606 return (in_string
- 1);
1614 #endif /* MAIL_USE_POP */
1616 /* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d
1617 (do not change this comment) */