1 /* pop.c: client routines for talking to a POP3-protocol post-office server
2 Copyright (c) 1991, 1993, 1996, 1997, 1999 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)
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. */
23 #define NO_SHORTNAMES /* Tell config not to load remap.h */
31 #include <sys/types.h>
36 #define RECV(s,buf,len,flags) recv(s,buf,len,flags)
37 #define SEND(s,buf,len,flags) send(s,buf,len,flags)
38 #define CLOSESOCKET(s) closesocket(s)
40 #include <netinet/in.h>
41 #include <sys/socket.h>
42 #define RECV(s,buf,len,flags) read(s,buf,len)
43 #define SEND(s,buf,len,flags) write(s,buf,len)
44 #define CLOSESOCKET(s) close(s)
55 * It really shouldn't be necessary to put this declaration here, but
56 * the version of hesiod.h that Athena has installed in release 7.2
57 * doesn't declare this function; I don't know if the 7.3 version of
60 extern struct servent
*hes_getservbyname (/* char *, char * */);
82 # ifdef HAVE_KERBEROSIV_DES_H
83 # include <kerberosIV/des.h>
85 # ifdef HAVE_KERBEROS_DES_H
86 # include <kerberos/des.h>
93 # ifdef HAVE_KERBEROSIV_KRB_H
94 # include <kerberosIV/krb.h>
96 # ifdef HAVE_KERBEROS_KRB_H
97 # include <kerberos/krb.h>
101 # ifdef HAVE_COM_ERR_H
102 # include <com_err.h>
104 #endif /* KERBEROS */
108 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
109 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
110 struct sockaddr_in *, struct sockaddr_in *,
112 extern char *krb_realmofhost (/* char * */);
113 #endif /* ! KERBEROS5 */
114 #endif /* KERBEROS */
117 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
127 # endif /* __STDC__ */
130 static int socket_connection
_P((char *, int));
131 static int pop_getline
_P((popserver
, char **));
132 static int sendline
_P((popserver
, char *));
133 static int fullwrite
_P((int, char *, int));
134 static int getok
_P((popserver
));
136 static int gettermination
_P((popserver
));
138 static void pop_trash
_P((popserver
));
139 static char *find_crlf
_P((char *, int));
141 #define ERROR_MAX 160 /* a pretty arbitrary size, but needs
142 to be bigger than the original
145 #define KPOP_PORT 1109
146 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
148 #define KPOP_SERVICE "kpop"
151 char pop_error
[ERROR_MAX
];
155 #define min(a,b) (((a) < (b)) ? (a) : (b))
159 * Function: pop_open (char *host, char *username, char *password,
162 * Purpose: Establishes a connection with a post-office server, and
163 * completes the authorization portion of the session.
166 * host The server host with which the connection should be
167 * established. Optional. If omitted, internal
168 * heuristics will be used to determine the server host,
171 * The username of the mail-drop to access. Optional.
172 * If omitted, internal heuristics will be used to
173 * determine the username, if possible.
175 * The password to use for authorization. If omitted,
176 * internal heuristics will be used to determine the
177 * password, if possible.
178 * flags A bit mask containing flags controlling certain
179 * functions of the routine. Valid flags are defined in
182 * Return value: Upon successful establishment of a connection, a
183 * non-null popserver will be returned. Otherwise, null will be
184 * returned, and the string variable pop_error will contain an
185 * explanation of the error.
188 pop_open (host
, username
, password
, flags
)
197 /* Determine the user name */
200 username
= getenv ("USER");
201 if (! (username
&& *username
))
203 username
= getlogin ();
204 if (! (username
&& *username
))
206 struct passwd
*passwd
;
207 passwd
= getpwuid (getuid ());
208 if (passwd
&& passwd
->pw_name
&& *passwd
->pw_name
)
210 username
= passwd
->pw_name
;
214 strcpy (pop_error
, "Could not determine username");
222 * Determine the mail host.
227 host
= getenv ("MAILHOST");
231 if ((! host
) && (! (flags
& POP_NO_HESIOD
)))
233 struct hes_postoffice
*office
;
234 office
= hes_getmailhost (username
);
235 if (office
&& office
->po_type
&& (! strcmp (office
->po_type
, "POP"))
236 && office
->po_name
&& *office
->po_name
&& office
->po_host
239 host
= office
->po_host
;
240 username
= office
->po_name
;
254 strcpy (pop_error
, "Could not determine POP server");
258 /* Determine the password */
260 #define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
262 #define DONT_NEED_PASSWORD 0
265 if ((! password
) && (! DONT_NEED_PASSWORD
))
267 if (! (flags
& POP_NO_GETPASS
))
269 password
= getpass ("Enter POP password:");
273 strcpy (pop_error
, "Could not determine POP password");
278 flags
|= POP_NO_KERBEROS
;
282 sock
= socket_connection (host
, flags
);
286 server
= (popserver
) malloc (sizeof (struct _popserver
));
289 strcpy (pop_error
, "Out of memory in pop_open");
292 server
->buffer
= (char *) malloc (GETLINE_MIN
);
293 if (! server
->buffer
)
295 strcpy (pop_error
, "Out of memory in pop_open");
296 free ((char *) server
);
302 server
->buffer_index
= 0;
303 server
->buffer_size
= GETLINE_MIN
;
304 server
->in_multi
= 0;
305 server
->trash_started
= 0;
311 * I really shouldn't use the pop_error variable like this, but....
313 if (strlen (username
) > ERROR_MAX
- 6)
317 "Username too long; recompile pop.c with larger ERROR_MAX");
320 sprintf (pop_error
, "USER %s", username
);
322 if (sendline (server
, pop_error
) || getok (server
))
327 if (strlen (password
) > ERROR_MAX
- 6)
331 "Password too long; recompile pop.c with larger ERROR_MAX");
334 sprintf (pop_error
, "PASS %s", password
);
336 if (sendline (server
, pop_error
) || getok (server
))
347 * Purpose: Issue the STAT command to the server and return (in the
348 * value parameters) the number of messages in the maildrop and
349 * the total size of the maildrop.
351 * Return value: 0 on success, or non-zero with an error in pop_error
354 * Side effects: On failure, may make further operations on the
355 * connection impossible.
358 pop_stat (server
, count
, size
)
365 if (server
->in_multi
)
367 strcpy (pop_error
, "In multi-line query in pop_stat");
371 if (sendline (server
, "STAT") || (pop_getline (server
, &fromserver
) < 0))
374 if (strncmp (fromserver
, "+OK ", 4))
376 if (0 == strncmp (fromserver
, "-ERR", 4))
378 strncpy (pop_error
, fromserver
, ERROR_MAX
);
383 "Unexpected response from POP server in pop_stat");
389 *count
= atoi (&fromserver
[4]);
391 fromserver
= index (&fromserver
[4], ' ');
395 "Badly formatted response from server in pop_stat");
400 *size
= atoi (fromserver
+ 1);
408 * Purpose: Performs the POP "list" command and returns (in value
409 * parameters) two malloc'd zero-terminated arrays -- one of
410 * message IDs, and a parallel one of sizes.
413 * server The pop connection to talk to.
414 * message The number of the one message about which to get
415 * information, or 0 to get information about all
418 * Return value: 0 on success, non-zero with error in pop_error on
421 * Side effects: On failure, may make further operations on the
422 * connection impossible.
425 pop_list (server
, message
, IDs
, sizes
)
434 if (server
->in_multi
)
436 strcpy (pop_error
, "In multi-line query in pop_list");
445 if (pop_stat (server
, &count
, &size
))
450 *IDs
= (int *) malloc ((how_many
+ 1) * sizeof (int));
451 *sizes
= (int *) malloc ((how_many
+ 1) * sizeof (int));
452 if (! (*IDs
&& *sizes
))
454 strcpy (pop_error
, "Out of memory in pop_list");
460 sprintf (pop_error
, "LIST %d", message
);
461 if (sendline (server
, pop_error
))
463 free ((char *) *IDs
);
464 free ((char *) *sizes
);
467 if (pop_getline (server
, &fromserver
) < 0)
469 free ((char *) *IDs
);
470 free ((char *) *sizes
);
473 if (strncmp (fromserver
, "+OK ", 4))
475 if (! strncmp (fromserver
, "-ERR", 4))
476 strncpy (pop_error
, fromserver
, ERROR_MAX
);
480 "Unexpected response from server in pop_list");
483 free ((char *) *IDs
);
484 free ((char *) *sizes
);
487 (*IDs
)[0] = atoi (&fromserver
[4]);
488 fromserver
= index (&fromserver
[4], ' ');
492 "Badly formatted response from server in pop_list");
494 free ((char *) *IDs
);
495 free ((char *) *sizes
);
498 (*sizes
)[0] = atoi (fromserver
);
499 (*IDs
)[1] = (*sizes
)[1] = 0;
504 if (pop_multi_first (server
, "LIST", &fromserver
))
506 free ((char *) *IDs
);
507 free ((char *) *sizes
);
510 for (i
= 0; i
< how_many
; i
++)
512 if (pop_multi_next (server
, &fromserver
) <= 0)
514 free ((char *) *IDs
);
515 free ((char *) *sizes
);
518 (*IDs
)[i
] = atoi (fromserver
);
519 fromserver
= index (fromserver
, ' ');
523 "Badly formatted response from server in pop_list");
524 free ((char *) *IDs
);
525 free ((char *) *sizes
);
529 (*sizes
)[i
] = atoi (fromserver
);
531 if (pop_multi_next (server
, &fromserver
) < 0)
533 free ((char *) *IDs
);
534 free ((char *) *sizes
);
540 "Too many response lines from server in pop_list");
541 free ((char *) *IDs
);
542 free ((char *) *sizes
);
545 (*IDs
)[i
] = (*sizes
)[i
] = 0;
551 * Function: pop_retrieve
553 * Purpose: Retrieve a specified message from the maildrop.
556 * server The server to retrieve from.
557 * message The message number to retrieve.
559 * If true, then mark the string "From " at the beginning
561 * msg_buf Output parameter to which a buffer containing the
562 * message is assigned.
564 * Return value: The number of bytes in msg_buf, which may contain
565 * embedded nulls, not including its final null, or -1 on error
566 * with pop_error set.
568 * Side effects: May kill connection on error.
571 pop_retrieve (server
, message
, markfrom
, msg_buf
)
577 int *IDs
, *sizes
, bufsize
, fromcount
= 0, cp
= 0;
578 char *ptr
, *fromserver
;
581 if (server
->in_multi
)
583 strcpy (pop_error
, "In multi-line query in pop_retrieve");
587 if (pop_list (server
, message
, &IDs
, &sizes
))
590 if (pop_retrieve_first (server
, message
, &fromserver
))
596 * The "5" below is an arbitrary constant -- I assume that if
597 * there are "From" lines in the text to be marked, there
598 * probably won't be more than 5 of them. If there are, I
599 * allocate more space for them below.
601 bufsize
= sizes
[0] + (markfrom
? 5 : 0);
602 ptr
= (char *)malloc (bufsize
);
604 free ((char *) sizes
);
608 strcpy (pop_error
, "Out of memory in pop_retrieve");
609 pop_retrieve_flush (server
);
613 while ((ret
= pop_retrieve_next (server
, &fromserver
)) >= 0)
621 if (markfrom
&& fromserver
[0] == 'F' && fromserver
[1] == 'r' &&
622 fromserver
[2] == 'o' && fromserver
[3] == 'm' &&
623 fromserver
[4] == ' ')
625 if (++fromcount
== 5)
628 ptr
= (char *)realloc (ptr
, bufsize
);
631 strcpy (pop_error
, "Out of memory in pop_retrieve");
632 pop_retrieve_flush (server
);
639 bcopy (fromserver
, &ptr
[cp
], ret
);
649 pop_retrieve_first (server
, message
, response
)
654 sprintf (pop_error
, "RETR %d", message
);
655 return (pop_multi_first (server
, pop_error
, response
));
659 Returns a negative number on error, 0 to indicate that the data has
660 all been read (i.e., the server has returned a "." termination
661 line), or a positive number indicating the number of bytes in the
662 returned buffer (which is null-terminated and may contain embedded
663 nulls, but the returned bytecount doesn't include the final null).
667 pop_retrieve_next (server
, line
)
671 return (pop_multi_next (server
, line
));
675 pop_retrieve_flush (server
)
678 return (pop_multi_flush (server
));
682 pop_top_first (server
, message
, lines
, response
)
687 sprintf (pop_error
, "TOP %d %d", message
, lines
);
688 return (pop_multi_first (server
, pop_error
, response
));
692 Returns a negative number on error, 0 to indicate that the data has
693 all been read (i.e., the server has returned a "." termination
694 line), or a positive number indicating the number of bytes in the
695 returned buffer (which is null-terminated and may contain embedded
696 nulls, but the returned bytecount doesn't include the final null).
700 pop_top_next (server
, line
)
704 return (pop_multi_next (server
, line
));
708 pop_top_flush (server
)
711 return (pop_multi_flush (server
));
715 pop_multi_first (server
, command
, response
)
720 if (server
->in_multi
)
723 "Already in multi-line query in pop_multi_first");
727 if (sendline (server
, command
) || (pop_getline (server
, response
) < 0))
732 if (0 == strncmp (*response
, "-ERR", 4))
734 strncpy (pop_error
, *response
, ERROR_MAX
);
737 else if (0 == strncmp (*response
, "+OK", 3))
739 for (*response
+= 3; **response
== ' '; (*response
)++) /* empty */;
740 server
->in_multi
= 1;
746 "Unexpected response from server in pop_multi_first");
752 Read the next line of data from SERVER and place a pointer to it
753 into LINE. Return -1 on error, 0 if there are no more lines to read
754 (i.e., the server has returned a line containing only "."), or a
755 positive number indicating the number of bytes in the LINE buffer
756 (not including the final null). The data in that buffer may contain
757 embedded nulls, but does not contain the final CRLF. When returning
758 0, LINE is set to null. */
761 pop_multi_next (server
, line
)
768 if (! server
->in_multi
)
770 strcpy (pop_error
, "Not in multi-line query in pop_multi_next");
774 if ((ret
= pop_getline (server
, &fromserver
)) < 0)
779 if (fromserver
[0] == '.')
784 server
->in_multi
= 0;
789 *line
= fromserver
+ 1;
801 pop_multi_flush (server
)
807 if (! server
->in_multi
)
812 while ((ret
= pop_multi_next (server
, &line
)))
821 /* Function: pop_delete
823 * Purpose: Delete a specified message.
826 * server Server from which to delete the message.
827 * message Message to delete.
829 * Return value: 0 on success, non-zero with error in pop_error
833 pop_delete (server
, message
)
837 if (server
->in_multi
)
839 strcpy (pop_error
, "In multi-line query in pop_delete");
843 sprintf (pop_error
, "DELE %d", message
);
845 if (sendline (server
, pop_error
) || getok (server
))
854 * Purpose: Send a noop command to the server.
857 * server The server to send to.
859 * Return value: 0 on success, non-zero with error in pop_error
862 * Side effects: Closes connection on error.
868 if (server
->in_multi
)
870 strcpy (pop_error
, "In multi-line query in pop_noop");
874 if (sendline (server
, "NOOP") || getok (server
))
883 * Purpose: Find out the highest seen message from the server.
888 * Return value: If successful, the highest seen message, which is
889 * greater than or equal to 0. Otherwise, a negative number with
890 * the error explained in pop_error.
892 * Side effects: Closes the connection on error.
900 if (server
->in_multi
)
902 strcpy (pop_error
, "In multi-line query in pop_last");
906 if (sendline (server
, "LAST"))
909 if (pop_getline (server
, &fromserver
) < 0)
912 if (! strncmp (fromserver
, "-ERR", 4))
914 strncpy (pop_error
, fromserver
, ERROR_MAX
);
917 else if (strncmp (fromserver
, "+OK ", 4))
919 strcpy (pop_error
, "Unexpected response from server in pop_last");
925 return (atoi (&fromserver
[4]));
930 * Function: pop_reset
932 * Purpose: Reset the server to its initial connect state
937 * Return value: 0 for success, non-0 with error in pop_error
940 * Side effects: Closes the connection on error.
946 if (pop_retrieve_flush (server
))
951 if (sendline (server
, "RSET") || getok (server
))
960 * Purpose: Quit the connection to the server,
963 * server The server to quit.
965 * Return value: 0 for success, non-zero otherwise with error in
968 * Side Effects: The popserver passed in is unusable after this
969 * function is called, even if an error occurs.
977 if (server
->file
>= 0)
979 if (pop_retrieve_flush (server
))
984 if (sendline (server
, "QUIT") || getok (server
))
989 close (server
->file
);
993 free (server
->buffer
);
994 free ((char *) server
);
1000 static int have_winsock
= 0;
1004 * Function: socket_connection
1006 * Purpose: Opens the network connection with the mail host, without
1007 * doing any sort of I/O with it or anything.
1010 * host The host to which to connect.
1011 * flags Option flags.
1013 * Return value: A file descriptor indicating the connection, or -1
1014 * indicating failure, in which case an error has been copied
1018 socket_connection (host
, flags
)
1022 struct hostent
*hostent
;
1023 struct servent
*servent
;
1024 struct sockaddr_in addr
;
1025 char found_port
= 0;
1030 krb5_error_code rem
;
1031 krb5_context kcontext
= 0;
1032 krb5_auth_context auth_context
= 0;
1034 krb5_principal client
, server
;
1035 krb5_error
*err_ret
;
1041 Key_schedule schedule
;
1044 #endif /* KERBEROS5 */
1045 #endif /* KERBEROS */
1051 WSADATA winsockData
;
1052 if (WSAStartup (0x101, &winsockData
) == 0)
1057 bzero ((char *) &addr
, sizeof (addr
));
1058 addr
.sin_family
= AF_INET
;
1061 service
= (flags
& POP_NO_KERBEROS
) ? POP_SERVICE
: KPOP_SERVICE
;
1063 service
= POP_SERVICE
;
1067 if (! (flags
& POP_NO_HESIOD
))
1069 servent
= hes_getservbyname (service
, "tcp");
1072 addr
.sin_port
= servent
->s_port
;
1079 servent
= getservbyname (service
, "tcp");
1082 addr
.sin_port
= servent
->s_port
;
1087 addr
.sin_port
= htons ((flags
& POP_NO_KERBEROS
) ?
1088 POP_PORT
: KPOP_PORT
);
1090 addr
.sin_port
= htons (POP_PORT
);
1095 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1097 sock
= socket (PF_INET
, SOCK_STREAM
, 0);
1100 strcpy (pop_error
, POP_SOCKET_ERROR
);
1101 strncat (pop_error
, strerror (errno
),
1102 ERROR_MAX
- sizeof (POP_SOCKET_ERROR
));
1109 hostent
= gethostbyname (host
);
1111 if ((! hostent
) && ((h_errno
!= TRY_AGAIN
) || (try_count
== 5)))
1113 strcpy (pop_error
, "Could not determine POP server's address");
1116 } while (! hostent
);
1118 while (*hostent
->h_addr_list
)
1120 bcopy (*hostent
->h_addr_list
, (char *) &addr
.sin_addr
,
1122 if (! connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)))
1124 hostent
->h_addr_list
++;
1127 #define CONNECT_ERROR "Could not connect to POP server: "
1129 if (! *hostent
->h_addr_list
)
1132 strcpy (pop_error
, CONNECT_ERROR
);
1133 strncat (pop_error
, strerror (errno
),
1134 ERROR_MAX
- sizeof (CONNECT_ERROR
));
1140 #define KRB_ERROR "Kerberos error connecting to POP server: "
1141 if (! (flags
& POP_NO_KERBEROS
))
1144 if ((rem
= krb5_init_context (&kcontext
)))
1148 krb5_auth_con_free (kcontext
, auth_context
);
1150 krb5_free_context (kcontext
);
1151 strcpy (pop_error
, KRB_ERROR
);
1152 strncat (pop_error
, error_message (rem
),
1153 ERROR_MAX
- sizeof(KRB_ERROR
));
1158 if ((rem
= krb5_auth_con_init (kcontext
, &auth_context
)))
1161 if (rem
= krb5_cc_default (kcontext
, &ccdef
))
1164 if (rem
= krb5_cc_get_principal (kcontext
, ccdef
, &client
))
1167 for (cp
= hostent
->h_name
; *cp
; cp
++)
1171 *cp
= tolower (*cp
);
1175 if (rem
= krb5_sname_to_principal (kcontext
, hostent
->h_name
,
1176 POP_SERVICE
, FALSE
, &server
))
1179 rem
= krb5_sendauth (kcontext
, &auth_context
,
1180 (krb5_pointer
) &sock
, "KPOPV1.0", client
, server
,
1181 AP_OPTS_MUTUAL_REQUIRED
,
1182 0, /* no checksum */
1183 0, /* no creds, use ccache instead */
1186 0, /* don't need subsession key */
1187 0); /* don't need reply */
1188 krb5_free_principal (kcontext
, server
);
1191 if (err_ret
&& err_ret
->text
.length
)
1193 strcpy (pop_error
, KRB_ERROR
);
1194 strncat (pop_error
, error_message (rem
),
1195 ERROR_MAX
- sizeof (KRB_ERROR
));
1196 strncat (pop_error
, " [server says '",
1197 ERROR_MAX
- strlen (pop_error
) - 1);
1198 strncat (pop_error
, err_ret
->text
.data
,
1199 min (ERROR_MAX
- strlen (pop_error
) - 1,
1200 err_ret
->text
.length
));
1201 strncat (pop_error
, "']",
1202 ERROR_MAX
- strlen (pop_error
) - 1);
1206 strcpy (pop_error
, KRB_ERROR
);
1207 strncat (pop_error
, error_message (rem
),
1208 ERROR_MAX
- sizeof (KRB_ERROR
));
1211 krb5_free_error (kcontext
, err_ret
);
1212 krb5_auth_con_free (kcontext
, auth_context
);
1213 krb5_free_context (kcontext
);
1218 #else /* ! KERBEROS5 */
1219 ticket
= (KTEXT
) malloc (sizeof (KTEXT_ST
));
1220 realhost
= strdup (hostent
->h_name
);
1221 rem
= krb_sendauth (0L, sock
, ticket
, "pop", realhost
,
1222 (char *) krb_realmofhost (realhost
),
1223 (unsigned long) 0, &msg_data
, &cred
, schedule
,
1224 (struct sockaddr_in
*) 0,
1225 (struct sockaddr_in
*) 0,
1227 free ((char *) ticket
);
1229 if (rem
!= KSUCCESS
)
1231 strcpy (pop_error
, KRB_ERROR
);
1232 strncat (pop_error
, krb_err_txt
[rem
],
1233 ERROR_MAX
- sizeof (KRB_ERROR
));
1237 #endif /* KERBEROS5 */
1239 #endif /* KERBEROS */
1242 } /* socket_connection */
1245 * Function: pop_getline
1247 * Purpose: Get a line of text from the connection and return a
1248 * pointer to it. The carriage return and linefeed at the end of
1249 * the line are stripped, but periods at the beginnings of lines
1250 * are NOT dealt with in any special way.
1253 * server The server from which to get the line of text.
1255 * Returns: The number of characters in the line, which is returned in
1256 * LINE, not including the final null. A return value of 0
1257 * indicates a blank line. A negative return value indicates an
1258 * error (in which case the contents of LINE are undefined. In
1259 * case of error, an error message is copied into pop_error.
1261 * Notes: The line returned is overwritten with each call to pop_getline.
1263 * Side effects: Closes the connection on error.
1265 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
1268 pop_getline (server
, line
)
1272 #define GETLINE_ERROR "Error reading from server: "
1275 int search_offset
= 0;
1279 char *cp
= find_crlf (server
->buffer
+ server
->buffer_index
,
1286 found
= server
->buffer_index
;
1287 data_used
= (cp
+ 2) - server
->buffer
- found
;
1289 *cp
= '\0'; /* terminate the string to be returned */
1290 server
->data
-= data_used
;
1291 server
->buffer_index
+= data_used
;
1294 /* Embedded nulls will truncate this output prematurely,
1295 but that's OK because it's just for debugging anyway. */
1296 fprintf (stderr
, "<<< %s\n", server
->buffer
+ found
);
1297 *line
= server
->buffer
+ found
;
1298 return (data_used
- 2);
1302 bcopy (server
->buffer
+ server
->buffer_index
,
1303 server
->buffer
, server
->data
);
1304 /* Record the fact that we've searched the data already in
1305 the buffer for a CRLF, so that when we search below, we
1306 don't have to search the same data twice. There's a "-
1307 1" here to account for the fact that the last character
1308 of the data we have may be the CR of a CRLF pair, of
1309 which we haven't read the second half yet, so we may have
1310 to search it again when we read more data. */
1311 search_offset
= server
->data
- 1;
1312 server
->buffer_index
= 0;
1317 server
->buffer_index
= 0;
1322 /* There's a "- 1" here to leave room for the null that we put
1323 at the end of the read data below. We put the null there so
1324 that find_crlf knows where to stop when we call it. */
1325 if (server
->data
== server
->buffer_size
- 1)
1327 server
->buffer_size
+= GETLINE_INCR
;
1328 server
->buffer
= (char *)realloc (server
->buffer
, server
->buffer_size
);
1329 if (! server
->buffer
)
1331 strcpy (pop_error
, "Out of memory in pop_getline");
1336 ret
= RECV (server
->file
, server
->buffer
+ server
->data
,
1337 server
->buffer_size
- server
->data
- 1, 0);
1340 strcpy (pop_error
, GETLINE_ERROR
);
1341 strncat (pop_error
, strerror (errno
),
1342 ERROR_MAX
- sizeof (GETLINE_ERROR
));
1348 strcpy (pop_error
, "Unexpected EOF from server in pop_getline");
1355 server
->data
+= ret
;
1356 server
->buffer
[server
->data
] = '\0';
1358 cp
= find_crlf (server
->buffer
+ search_offset
,
1359 server
->data
- search_offset
);
1362 int data_used
= (cp
+ 2) - server
->buffer
;
1364 server
->data
-= data_used
;
1365 server
->buffer_index
= data_used
;
1368 fprintf (stderr
, "<<< %s\n", server
->buffer
);
1369 *line
= server
->buffer
;
1370 return (data_used
- 2);
1372 /* As above, the "- 1" here is to account for the fact that
1373 we may have read a CR without its accompanying LF. */
1374 search_offset
+= ret
- 1;
1382 * Function: sendline
1384 * Purpose: Sends a line of text to the POP server. The line of text
1385 * passed into this function should NOT have the carriage return
1386 * and linefeed on the end of it. Periods at beginnings of lines
1387 * will NOT be treated specially by this function.
1390 * server The server to which to send the text.
1391 * line The line of text to send.
1393 * Return value: Upon successful completion, a value of 0 will be
1394 * returned. Otherwise, a non-zero value will be returned, and
1395 * an error will be copied into pop_error.
1397 * Side effects: Closes the connection on error.
1400 sendline (server
, line
)
1404 #define SENDLINE_ERROR "Error writing to POP server: "
1407 ret
= fullwrite (server
->file
, line
, strlen (line
));
1409 { /* 0 indicates that a blank line was written */
1410 ret
= fullwrite (server
->file
, "\r\n", 2);
1416 strcpy (pop_error
, SENDLINE_ERROR
);
1417 strncat (pop_error
, strerror (errno
),
1418 ERROR_MAX
- sizeof (SENDLINE_ERROR
));
1423 fprintf (stderr
, ">>> %s\n", line
);
1429 * Procedure: fullwrite
1431 * Purpose: Just like write, but keeps trying until the entire string
1434 * Return value: Same as write. Pop_error is not set.
1437 fullwrite (fd
, buf
, nbytes
)
1446 while (nbytes
&& ((ret
= SEND (fd
, cp
, nbytes
, 0)) > 0))
1458 * Purpose: Reads a line from the server. If the return indicator is
1459 * positive, return with a zero exit status. If not, return with
1460 * a negative exit status.
1463 * server The server to read from.
1465 * Returns: 0 for success, else for failure and puts error in pop_error.
1467 * Side effects: On failure, may make the connection unusable.
1475 if (pop_getline (server
, &fromline
) < 0)
1480 if (! strncmp (fromline
, "+OK", 3))
1482 else if (! strncmp (fromline
, "-ERR", 4))
1484 strncpy (pop_error
, fromline
, ERROR_MAX
);
1485 pop_error
[ERROR_MAX
-1] = '\0';
1491 "Unexpected response from server; expecting +OK or -ERR");
1499 * Function: gettermination
1501 * Purpose: Gets the next line and verifies that it is a termination
1502 * line (nothing but a dot).
1504 * Return value: 0 on success, non-zero with pop_error set on error.
1506 * Side effects: Closes the connection on error.
1509 gettermination (server
)
1514 if (pop_getline (server
, &fromserver
) < 0)
1517 if (strcmp (fromserver
, "."))
1520 "Unexpected response from server in gettermination");
1530 * Function pop_close
1532 * Purpose: Close a pop connection, sending a "RSET" command to try to
1533 * preserve any changes that were made and a "QUIT" command to
1534 * try to get the server to quit, but ignoring any responses that
1537 * Side effects: The server is unusable after this function returns.
1538 * Changes made to the maildrop since the session was started (or
1539 * since the last pop_reset) may be lost.
1546 free ((char *) server
);
1552 * Function: pop_trash
1554 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1555 * memory associated with the server. It is legal to call
1556 * pop_close or pop_quit after this function has been called.
1562 if (server
->file
>= 0)
1564 /* avoid recursion; sendline can call pop_trash */
1565 if (server
->trash_started
)
1567 server
->trash_started
= 1;
1569 sendline (server
, "RSET");
1570 sendline (server
, "QUIT");
1572 CLOSESOCKET (server
->file
);
1576 free (server
->buffer
);
1587 /* Return a pointer to the first CRLF in IN_STRING, which can contain
1588 embedded nulls and has LEN characters in it not including the final
1589 null, or 0 if it does not contain one. */
1592 find_crlf (in_string
, len
)
1598 if (*in_string
== '\r')
1600 if (*++in_string
== '\n')
1601 return (in_string
- 1);
1609 #endif /* MAIL_USE_POP */