]> code.delx.au - gnu-emacs/blob - lib-src/pop.c
(custom-theme-set-variables): Sort symbols that are
[gnu-emacs] / lib-src / pop.c
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, 2008 Free Software Foundation, Inc.
4 Written by Jonathan Kamens, jik@security.ov.com.
5
6 This file is part of GNU Emacs.
7
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)
11 any later version.
12
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.
17
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. */
22
23 #ifdef HAVE_CONFIG_H
24 #define NO_SHORTNAMES /* Tell config not to load remap.h */
25 #include <config.h>
26 #else
27 #define MAIL_USE_POP
28 #endif
29
30 #ifdef MAIL_USE_POP
31
32 #include <sys/types.h>
33 #ifdef WINDOWSNT
34 #include "ntlib.h"
35 #include <winsock.h>
36 #undef SOCKET_ERROR
37 #define RECV(s,buf,len,flags) recv(s,buf,len,flags)
38 #define SEND(s,buf,len,flags) send(s,buf,len,flags)
39 #define CLOSESOCKET(s) closesocket(s)
40 #else
41 #include <netinet/in.h>
42 #include <sys/socket.h>
43 #define RECV(s,buf,len,flags) read(s,buf,len)
44 #define SEND(s,buf,len,flags) write(s,buf,len)
45 #define CLOSESOCKET(s) close(s)
46 #endif
47 #include <pop.h>
48
49 #ifdef sun
50 #include <malloc.h>
51 #endif /* sun */
52
53 #ifdef HESIOD
54 #include <hesiod.h>
55 /*
56 * It really shouldn't be necessary to put this declaration here, but
57 * the version of hesiod.h that Athena has installed in release 7.2
58 * doesn't declare this function; I don't know if the 7.3 version of
59 * hesiod.h does.
60 */
61 extern struct servent *hes_getservbyname (/* char *, char * */);
62 #endif
63
64 #include <pwd.h>
65 #include <netdb.h>
66 #include <errno.h>
67 #include <stdio.h>
68 #ifdef STDC_HEADERS
69 #include <string.h>
70 #define index strchr
71 #endif
72 #ifdef HAVE_UNISTD_H
73 #include <unistd.h>
74 #endif
75
76 #ifdef KERBEROS
77 # ifdef HAVE_KRB5_H
78 # include <krb5.h>
79 # endif
80 # ifdef HAVE_KRB_H
81 # include <krb.h>
82 # else
83 # ifdef HAVE_KERBEROSIV_KRB_H
84 # include <kerberosIV/krb.h>
85 # else
86 # ifdef HAVE_KERBEROS_KRB_H
87 # include <kerberos/krb.h>
88 # endif
89 # endif
90 # endif
91 # ifdef HAVE_COM_ERR_H
92 # include <com_err.h>
93 # endif
94 #endif /* KERBEROS */
95
96 #ifdef KERBEROS
97 #ifndef KERBEROS5
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 *,
101 char * */);
102 extern char *krb_realmofhost (/* char * */);
103 #endif /* ! KERBEROS5 */
104 #endif /* KERBEROS */
105
106 #ifndef WINDOWSNT
107 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
108 extern int h_errno;
109 #endif
110 #endif
111
112 #ifndef __P
113 # ifdef __STDC__
114 # define __P(a) a
115 # else
116 # define __P(a) ()
117 # endif /* __STDC__ */
118 #endif /* ! __P */
119
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));
125 #if 0
126 static int gettermination __P((popserver));
127 #endif
128 static void pop_trash __P((popserver));
129 static char *find_crlf __P((char *, int));
130
131 #define ERROR_MAX 160 /* a pretty arbitrary size, but needs
132 to be bigger than the original
133 value of 80 */
134 #define POP_PORT 110
135 #define KPOP_PORT 1109
136 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
137 #ifdef KERBEROS
138 #define KPOP_SERVICE "kpop" /* never used: look for 20060515 to see why */
139 #endif
140
141 char pop_error[ERROR_MAX];
142 int pop_debug = 0;
143
144 #ifndef min
145 #define min(a,b) (((a) < (b)) ? (a) : (b))
146 #endif
147
148 /*
149 * Function: pop_open (char *host, char *username, char *password,
150 * int flags)
151 *
152 * Purpose: Establishes a connection with a post-office server, and
153 * completes the authorization portion of the session.
154 *
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
171 *
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.
176 */
177 popserver
178 pop_open (host, username, password, flags)
179 char *host;
180 char *username;
181 char *password;
182 int flags;
183 {
184 int sock;
185 popserver server;
186
187 /* Determine the user name */
188 if (! username)
189 {
190 username = getenv ("USER");
191 if (! (username && *username))
192 {
193 username = getlogin ();
194 if (! (username && *username))
195 {
196 struct passwd *passwd;
197 passwd = getpwuid (getuid ());
198 if (passwd && passwd->pw_name && *passwd->pw_name)
199 {
200 username = passwd->pw_name;
201 }
202 else
203 {
204 strcpy (pop_error, "Could not determine username");
205 return (0);
206 }
207 }
208 }
209 }
210
211 /*
212 * Determine the mail host.
213 */
214
215 if (! host)
216 {
217 host = getenv ("MAILHOST");
218 }
219
220 #ifdef HESIOD
221 if ((! host) && (! (flags & POP_NO_HESIOD)))
222 {
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)
228 {
229 host = office->po_host;
230 username = office->po_name;
231 }
232 }
233 #endif
234
235 #ifdef MAILHOST
236 if (! host)
237 {
238 host = MAILHOST;
239 }
240 #endif
241
242 if (! host)
243 {
244 strcpy (pop_error, "Could not determine POP server");
245 return (0);
246 }
247
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
254
255 if ((! password) && (! DONT_NEED_PASSWORD))
256 {
257 if (! (flags & POP_NO_GETPASS))
258 {
259 password = getpass ("Enter POP password:");
260 }
261 if (! password)
262 {
263 strcpy (pop_error, "Could not determine POP password");
264 return (0);
265 }
266 }
267 if (password) /* always true, detected 20060515 */
268 flags |= POP_NO_KERBEROS;
269 else
270 password = username; /* dead code, detected 20060515 */
271 /** "kpop" service is never used: look for 20060515 to see why **/
272
273 sock = socket_connection (host, flags);
274 if (sock == -1)
275 return (0);
276
277 server = (popserver) malloc (sizeof (struct _popserver));
278 if (! server)
279 {
280 strcpy (pop_error, "Out of memory in pop_open");
281 return (0);
282 }
283 server->buffer = (char *) malloc (GETLINE_MIN);
284 if (! server->buffer)
285 {
286 strcpy (pop_error, "Out of memory in pop_open");
287 free ((char *) server);
288 return (0);
289 }
290
291 server->file = sock;
292 server->data = 0;
293 server->buffer_index = 0;
294 server->buffer_size = GETLINE_MIN;
295 server->in_multi = 0;
296 server->trash_started = 0;
297
298 if (getok (server))
299 return (0);
300
301 /*
302 * I really shouldn't use the pop_error variable like this, but....
303 */
304 if (strlen (username) > ERROR_MAX - 6)
305 {
306 pop_close (server);
307 strcpy (pop_error,
308 "Username too long; recompile pop.c with larger ERROR_MAX");
309 return (0);
310 }
311 sprintf (pop_error, "USER %s", username);
312
313 if (sendline (server, pop_error) || getok (server))
314 {
315 return (0);
316 }
317
318 if (strlen (password) > ERROR_MAX - 6)
319 {
320 pop_close (server);
321 strcpy (pop_error,
322 "Password too long; recompile pop.c with larger ERROR_MAX");
323 return (0);
324 }
325 sprintf (pop_error, "PASS %s", password);
326
327 if (sendline (server, pop_error) || getok (server))
328 {
329 return (0);
330 }
331
332 return (server);
333 }
334
335 /*
336 * Function: pop_stat
337 *
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.
341 *
342 * Return value: 0 on success, or non-zero with an error in pop_error
343 * in failure.
344 *
345 * Side effects: On failure, may make further operations on the
346 * connection impossible.
347 */
348 int
349 pop_stat (server, count, size)
350 popserver server;
351 int *count;
352 int *size;
353 {
354 char *fromserver;
355 char *end_ptr;
356
357 if (server->in_multi)
358 {
359 strcpy (pop_error, "In multi-line query in pop_stat");
360 return (-1);
361 }
362
363 if (sendline (server, "STAT") || (pop_getline (server, &fromserver) < 0))
364 return (-1);
365
366 if (strncmp (fromserver, "+OK ", 4))
367 {
368 if (0 == strncmp (fromserver, "-ERR", 4))
369 {
370 strncpy (pop_error, fromserver, ERROR_MAX);
371 }
372 else
373 {
374 strcpy (pop_error,
375 "Unexpected response from POP server in pop_stat");
376 pop_trash (server);
377 }
378 return (-1);
379 }
380
381 errno = 0;
382 *count = strtol (&fromserver[4], &end_ptr, 10);
383 /* Check validity of string-to-integer conversion. */
384 if (fromserver + 4 == end_ptr || *end_ptr != ' ' || errno)
385 {
386 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
387 pop_trash (server);
388 return (-1);
389 }
390
391 fromserver = end_ptr;
392
393 errno = 0;
394 *size = strtol (fromserver + 1, &end_ptr, 10);
395 if (fromserver + 1 == end_ptr || errno)
396 {
397 strcpy (pop_error, "Unexpected response from POP server in pop_stat");
398 pop_trash (server);
399 return (-1);
400 }
401
402 return (0);
403 }
404
405 /*
406 * Function: pop_list
407 *
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.
411 *
412 * Arguments:
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
416 * messages.
417 *
418 * Return value: 0 on success, non-zero with error in pop_error on
419 * failure.
420 *
421 * Side effects: On failure, may make further operations on the
422 * connection impossible.
423 */
424 int
425 pop_list (server, message, IDs, sizes)
426 popserver server;
427 int message;
428 int **IDs;
429 int **sizes;
430 {
431 int how_many, i;
432 char *fromserver;
433
434 if (server->in_multi)
435 {
436 strcpy (pop_error, "In multi-line query in pop_list");
437 return (-1);
438 }
439
440 if (message)
441 how_many = 1;
442 else
443 {
444 int count, size;
445 if (pop_stat (server, &count, &size))
446 return (-1);
447 how_many = count;
448 }
449
450 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
451 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
452 if (! (*IDs && *sizes))
453 {
454 strcpy (pop_error, "Out of memory in pop_list");
455 return (-1);
456 }
457
458 if (message)
459 {
460 sprintf (pop_error, "LIST %d", message);
461 if (sendline (server, pop_error))
462 {
463 free ((char *) *IDs);
464 free ((char *) *sizes);
465 return (-1);
466 }
467 if (pop_getline (server, &fromserver) < 0)
468 {
469 free ((char *) *IDs);
470 free ((char *) *sizes);
471 return (-1);
472 }
473 if (strncmp (fromserver, "+OK ", 4))
474 {
475 if (! strncmp (fromserver, "-ERR", 4))
476 strncpy (pop_error, fromserver, ERROR_MAX);
477 else
478 {
479 strcpy (pop_error,
480 "Unexpected response from server in pop_list");
481 pop_trash (server);
482 }
483 free ((char *) *IDs);
484 free ((char *) *sizes);
485 return (-1);
486 }
487 (*IDs)[0] = atoi (&fromserver[4]);
488 fromserver = index (&fromserver[4], ' ');
489 if (! fromserver)
490 {
491 strcpy (pop_error,
492 "Badly formatted response from server in pop_list");
493 pop_trash (server);
494 free ((char *) *IDs);
495 free ((char *) *sizes);
496 return (-1);
497 }
498 (*sizes)[0] = atoi (fromserver);
499 (*IDs)[1] = (*sizes)[1] = 0;
500 return (0);
501 }
502 else
503 {
504 if (pop_multi_first (server, "LIST", &fromserver))
505 {
506 free ((char *) *IDs);
507 free ((char *) *sizes);
508 return (-1);
509 }
510 for (i = 0; i < how_many; i++)
511 {
512 if (pop_multi_next (server, &fromserver) <= 0)
513 {
514 free ((char *) *IDs);
515 free ((char *) *sizes);
516 return (-1);
517 }
518 (*IDs)[i] = atoi (fromserver);
519 fromserver = index (fromserver, ' ');
520 if (! fromserver)
521 {
522 strcpy (pop_error,
523 "Badly formatted response from server in pop_list");
524 free ((char *) *IDs);
525 free ((char *) *sizes);
526 pop_trash (server);
527 return (-1);
528 }
529 (*sizes)[i] = atoi (fromserver);
530 }
531 if (pop_multi_next (server, &fromserver) < 0)
532 {
533 free ((char *) *IDs);
534 free ((char *) *sizes);
535 return (-1);
536 }
537 else if (fromserver)
538 {
539 strcpy (pop_error,
540 "Too many response lines from server in pop_list");
541 free ((char *) *IDs);
542 free ((char *) *sizes);
543 return (-1);
544 }
545 (*IDs)[i] = (*sizes)[i] = 0;
546 return (0);
547 }
548 }
549
550 /*
551 * Function: pop_retrieve
552 *
553 * Purpose: Retrieve a specified message from the maildrop.
554 *
555 * Arguments:
556 * server The server to retrieve from.
557 * message The message number to retrieve.
558 * markfrom
559 * If true, then mark the string "From " at the beginning
560 * of lines with '>'.
561 * msg_buf Output parameter to which a buffer containing the
562 * message is assigned.
563 *
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.
567 *
568 * Side effects: May kill connection on error.
569 */
570 int
571 pop_retrieve (server, message, markfrom, msg_buf)
572 popserver server;
573 int message;
574 int markfrom;
575 char **msg_buf;
576 {
577 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
578 char *ptr, *fromserver;
579 int ret;
580
581 if (server->in_multi)
582 {
583 strcpy (pop_error, "In multi-line query in pop_retrieve");
584 return (-1);
585 }
586
587 if (pop_list (server, message, &IDs, &sizes))
588 return (-1);
589
590 if (pop_retrieve_first (server, message, &fromserver))
591 {
592 return (-1);
593 }
594
595 /*
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.
600 */
601 bufsize = sizes[0] + (markfrom ? 5 : 0);
602 ptr = (char *)malloc (bufsize);
603 free ((char *) IDs);
604 free ((char *) sizes);
605
606 if (! ptr)
607 {
608 strcpy (pop_error, "Out of memory in pop_retrieve");
609 pop_retrieve_flush (server);
610 return (-1);
611 }
612
613 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0)
614 {
615 if (! fromserver)
616 {
617 ptr[cp] = '\0';
618 *msg_buf = ptr;
619 return (cp);
620 }
621 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
622 fromserver[2] == 'o' && fromserver[3] == 'm' &&
623 fromserver[4] == ' ')
624 {
625 if (++fromcount == 5)
626 {
627 bufsize += 5;
628 ptr = (char *)realloc (ptr, bufsize);
629 if (! ptr)
630 {
631 strcpy (pop_error, "Out of memory in pop_retrieve");
632 pop_retrieve_flush (server);
633 return (-1);
634 }
635 fromcount = 0;
636 }
637 ptr[cp++] = '>';
638 }
639 bcopy (fromserver, &ptr[cp], ret);
640 cp += ret;
641 ptr[cp++] = '\n';
642 }
643
644 free (ptr);
645 return (-1);
646 }
647
648 int
649 pop_retrieve_first (server, message, response)
650 popserver server;
651 int message;
652 char **response;
653 {
654 sprintf (pop_error, "RETR %d", message);
655 return (pop_multi_first (server, pop_error, response));
656 }
657
658 /*
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).
664 */
665
666 int
667 pop_retrieve_next (server, line)
668 popserver server;
669 char **line;
670 {
671 return (pop_multi_next (server, line));
672 }
673
674 int
675 pop_retrieve_flush (server)
676 popserver server;
677 {
678 return (pop_multi_flush (server));
679 }
680
681 int
682 pop_top_first (server, message, lines, response)
683 popserver server;
684 int message, lines;
685 char **response;
686 {
687 sprintf (pop_error, "TOP %d %d", message, lines);
688 return (pop_multi_first (server, pop_error, response));
689 }
690
691 /*
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).
697 */
698
699 int
700 pop_top_next (server, line)
701 popserver server;
702 char **line;
703 {
704 return (pop_multi_next (server, line));
705 }
706
707 int
708 pop_top_flush (server)
709 popserver server;
710 {
711 return (pop_multi_flush (server));
712 }
713
714 int
715 pop_multi_first (server, command, response)
716 popserver server;
717 char *command;
718 char **response;
719 {
720 if (server->in_multi)
721 {
722 strcpy (pop_error,
723 "Already in multi-line query in pop_multi_first");
724 return (-1);
725 }
726
727 if (sendline (server, command) || (pop_getline (server, response) < 0))
728 {
729 return (-1);
730 }
731
732 if (0 == strncmp (*response, "-ERR", 4))
733 {
734 strncpy (pop_error, *response, ERROR_MAX);
735 return (-1);
736 }
737 else if (0 == strncmp (*response, "+OK", 3))
738 {
739 for (*response += 3; **response == ' '; (*response)++) /* empty */;
740 server->in_multi = 1;
741 return (0);
742 }
743 else
744 {
745 strcpy (pop_error,
746 "Unexpected response from server in pop_multi_first");
747 return (-1);
748 }
749 }
750
751 /*
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. */
759
760 int
761 pop_multi_next (server, line)
762 popserver server;
763 char **line;
764 {
765 char *fromserver;
766 int ret;
767
768 if (! server->in_multi)
769 {
770 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
771 return (-1);
772 }
773
774 if ((ret = pop_getline (server, &fromserver)) < 0)
775 {
776 return (-1);
777 }
778
779 if (fromserver[0] == '.')
780 {
781 if (! fromserver[1])
782 {
783 *line = 0;
784 server->in_multi = 0;
785 return (0);
786 }
787 else
788 {
789 *line = fromserver + 1;
790 return (ret - 1);
791 }
792 }
793 else
794 {
795 *line = fromserver;
796 return (ret);
797 }
798 }
799
800 int
801 pop_multi_flush (server)
802 popserver server;
803 {
804 char *line;
805 int ret;
806
807 if (! server->in_multi)
808 {
809 return (0);
810 }
811
812 while ((ret = pop_multi_next (server, &line)))
813 {
814 if (ret < 0)
815 return (-1);
816 }
817
818 return (0);
819 }
820
821 /* Function: pop_delete
822 *
823 * Purpose: Delete a specified message.
824 *
825 * Arguments:
826 * server Server from which to delete the message.
827 * message Message to delete.
828 *
829 * Return value: 0 on success, non-zero with error in pop_error
830 * otherwise.
831 */
832 int
833 pop_delete (server, message)
834 popserver server;
835 int message;
836 {
837 if (server->in_multi)
838 {
839 strcpy (pop_error, "In multi-line query in pop_delete");
840 return (-1);
841 }
842
843 sprintf (pop_error, "DELE %d", message);
844
845 if (sendline (server, pop_error) || getok (server))
846 return (-1);
847
848 return (0);
849 }
850
851 /*
852 * Function: pop_noop
853 *
854 * Purpose: Send a noop command to the server.
855 *
856 * Argument:
857 * server The server to send to.
858 *
859 * Return value: 0 on success, non-zero with error in pop_error
860 * otherwise.
861 *
862 * Side effects: Closes connection on error.
863 */
864 int
865 pop_noop (server)
866 popserver server;
867 {
868 if (server->in_multi)
869 {
870 strcpy (pop_error, "In multi-line query in pop_noop");
871 return (-1);
872 }
873
874 if (sendline (server, "NOOP") || getok (server))
875 return (-1);
876
877 return (0);
878 }
879
880 /*
881 * Function: pop_last
882 *
883 * Purpose: Find out the highest seen message from the server.
884 *
885 * Arguments:
886 * server The server.
887 *
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.
891 *
892 * Side effects: Closes the connection on error.
893 */
894 int
895 pop_last (server)
896 popserver server;
897 {
898 char *fromserver;
899
900 if (server->in_multi)
901 {
902 strcpy (pop_error, "In multi-line query in pop_last");
903 return (-1);
904 }
905
906 if (sendline (server, "LAST"))
907 return (-1);
908
909 if (pop_getline (server, &fromserver) < 0)
910 return (-1);
911
912 if (! strncmp (fromserver, "-ERR", 4))
913 {
914 strncpy (pop_error, fromserver, ERROR_MAX);
915 return (-1);
916 }
917 else if (strncmp (fromserver, "+OK ", 4))
918 {
919 strcpy (pop_error, "Unexpected response from server in pop_last");
920 pop_trash (server);
921 return (-1);
922 }
923 else
924 {
925 char *end_ptr;
926 int count;
927 errno = 0;
928 count = strtol (&fromserver[4], &end_ptr, 10);
929 if (fromserver + 4 == end_ptr || errno)
930 {
931 strcpy (pop_error, "Unexpected response from server in pop_last");
932 pop_trash (server);
933 return (-1);
934 }
935 return count;
936 }
937 }
938
939 /*
940 * Function: pop_reset
941 *
942 * Purpose: Reset the server to its initial connect state
943 *
944 * Arguments:
945 * server The server.
946 *
947 * Return value: 0 for success, non-0 with error in pop_error
948 * otherwise.
949 *
950 * Side effects: Closes the connection on error.
951 */
952 int
953 pop_reset (server)
954 popserver server;
955 {
956 if (pop_retrieve_flush (server))
957 {
958 return (-1);
959 }
960
961 if (sendline (server, "RSET") || getok (server))
962 return (-1);
963
964 return (0);
965 }
966
967 /*
968 * Function: pop_quit
969 *
970 * Purpose: Quit the connection to the server,
971 *
972 * Arguments:
973 * server The server to quit.
974 *
975 * Return value: 0 for success, non-zero otherwise with error in
976 * pop_error.
977 *
978 * Side Effects: The popserver passed in is unusable after this
979 * function is called, even if an error occurs.
980 */
981 int
982 pop_quit (server)
983 popserver server;
984 {
985 int ret = 0;
986
987 if (server->file >= 0)
988 {
989 if (pop_retrieve_flush (server))
990 {
991 ret = -1;
992 }
993
994 if (sendline (server, "QUIT") || getok (server))
995 {
996 ret = -1;
997 }
998
999 close (server->file);
1000 }
1001
1002 if (server->buffer)
1003 free (server->buffer);
1004 free ((char *) server);
1005
1006 return (ret);
1007 }
1008
1009 #ifdef WINDOWSNT
1010 static int have_winsock = 0;
1011 #endif
1012
1013 /*
1014 * Function: socket_connection
1015 *
1016 * Purpose: Opens the network connection with the mail host, without
1017 * doing any sort of I/O with it or anything.
1018 *
1019 * Arguments:
1020 * host The host to which to connect.
1021 * flags Option flags.
1022 *
1023 * Return value: A file descriptor indicating the connection, or -1
1024 * indicating failure, in which case an error has been copied
1025 * into pop_error.
1026 */
1027 static int
1028 socket_connection (host, flags)
1029 char *host;
1030 int flags;
1031 {
1032 struct hostent *hostent;
1033 struct servent *servent;
1034 struct sockaddr_in addr;
1035 char found_port = 0;
1036 char *service;
1037 int sock;
1038 #ifdef KERBEROS
1039 #ifdef KERBEROS5
1040 krb5_error_code rem;
1041 krb5_context kcontext = 0;
1042 krb5_auth_context auth_context = 0;
1043 krb5_ccache ccdef;
1044 krb5_principal client, server;
1045 krb5_error *err_ret;
1046 register char *cp;
1047 #else
1048 KTEXT ticket;
1049 MSG_DAT msg_data;
1050 CREDENTIALS cred;
1051 Key_schedule schedule;
1052 int rem;
1053 char *realhost;
1054 #endif /* KERBEROS5 */
1055 #endif /* KERBEROS */
1056
1057 int try_count = 0;
1058
1059 #ifdef WINDOWSNT
1060 {
1061 WSADATA winsockData;
1062 if (WSAStartup (0x101, &winsockData) == 0)
1063 have_winsock = 1;
1064 }
1065 #endif
1066
1067 bzero ((char *) &addr, sizeof (addr));
1068 addr.sin_family = AF_INET;
1069
1070 /** "kpop" service is never used: look for 20060515 to see why **/
1071 #ifdef KERBEROS
1072 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1073 #else
1074 service = POP_SERVICE;
1075 #endif
1076
1077 #ifdef HESIOD
1078 if (! (flags & POP_NO_HESIOD))
1079 {
1080 servent = hes_getservbyname (service, "tcp");
1081 if (servent)
1082 {
1083 addr.sin_port = servent->s_port;
1084 found_port = 1;
1085 }
1086 }
1087 #endif
1088 if (! found_port)
1089 {
1090 servent = getservbyname (service, "tcp");
1091 if (servent)
1092 {
1093 addr.sin_port = servent->s_port;
1094 }
1095 else
1096 {
1097 /** "kpop" service is never used: look for 20060515 to see why **/
1098 #ifdef KERBEROS
1099 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ?
1100 POP_PORT : KPOP_PORT);
1101 #else
1102 addr.sin_port = htons (POP_PORT);
1103 #endif
1104 }
1105 }
1106
1107 #define POP_SOCKET_ERROR "Could not create socket for POP connection: "
1108
1109 sock = socket (PF_INET, SOCK_STREAM, 0);
1110 if (sock < 0)
1111 {
1112 strcpy (pop_error, POP_SOCKET_ERROR);
1113 strncat (pop_error, strerror (errno),
1114 ERROR_MAX - sizeof (POP_SOCKET_ERROR));
1115 return (-1);
1116
1117 }
1118
1119 do
1120 {
1121 hostent = gethostbyname (host);
1122 try_count++;
1123 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1124 {
1125 strcpy (pop_error, "Could not determine POP server's address");
1126 return (-1);
1127 }
1128 } while (! hostent);
1129
1130 while (*hostent->h_addr_list)
1131 {
1132 bcopy (*hostent->h_addr_list, (char *) &addr.sin_addr,
1133 hostent->h_length);
1134 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1135 break;
1136 hostent->h_addr_list++;
1137 }
1138
1139 #define CONNECT_ERROR "Could not connect to POP server: "
1140
1141 if (! *hostent->h_addr_list)
1142 {
1143 CLOSESOCKET (sock);
1144 strcpy (pop_error, CONNECT_ERROR);
1145 strncat (pop_error, strerror (errno),
1146 ERROR_MAX - sizeof (CONNECT_ERROR));
1147 return (-1);
1148
1149 }
1150
1151 #ifdef KERBEROS
1152 #define KRB_ERROR "Kerberos error connecting to POP server: "
1153 if (! (flags & POP_NO_KERBEROS))
1154 {
1155 #ifdef KERBEROS5
1156 if ((rem = krb5_init_context (&kcontext)))
1157 {
1158 krb5error:
1159 if (auth_context)
1160 krb5_auth_con_free (kcontext, auth_context);
1161 if (kcontext)
1162 krb5_free_context (kcontext);
1163 strcpy (pop_error, KRB_ERROR);
1164 strncat (pop_error, error_message (rem),
1165 ERROR_MAX - sizeof(KRB_ERROR));
1166 CLOSESOCKET (sock);
1167 return (-1);
1168 }
1169
1170 if ((rem = krb5_auth_con_init (kcontext, &auth_context)))
1171 goto krb5error;
1172
1173 if (rem = krb5_cc_default (kcontext, &ccdef))
1174 goto krb5error;
1175
1176 if (rem = krb5_cc_get_principal (kcontext, ccdef, &client))
1177 goto krb5error;
1178
1179 for (cp = hostent->h_name; *cp; cp++)
1180 {
1181 if (isupper (*cp))
1182 {
1183 *cp = tolower (*cp);
1184 }
1185 }
1186
1187 if (rem = krb5_sname_to_principal (kcontext, hostent->h_name,
1188 POP_SERVICE, FALSE, &server))
1189 goto krb5error;
1190
1191 rem = krb5_sendauth (kcontext, &auth_context,
1192 (krb5_pointer) &sock, "KPOPV1.0", client, server,
1193 AP_OPTS_MUTUAL_REQUIRED,
1194 0, /* no checksum */
1195 0, /* no creds, use ccache instead */
1196 ccdef,
1197 &err_ret,
1198 0, /* don't need subsession key */
1199 0); /* don't need reply */
1200 krb5_free_principal (kcontext, server);
1201 if (rem)
1202 {
1203 if (err_ret && err_ret->text.length)
1204 {
1205 strcpy (pop_error, KRB_ERROR);
1206 strncat (pop_error, error_message (rem),
1207 ERROR_MAX - sizeof (KRB_ERROR));
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);
1215 }
1216 else
1217 {
1218 strcpy (pop_error, KRB_ERROR);
1219 strncat (pop_error, error_message (rem),
1220 ERROR_MAX - sizeof (KRB_ERROR));
1221 }
1222 if (err_ret)
1223 krb5_free_error (kcontext, err_ret);
1224 krb5_auth_con_free (kcontext, auth_context);
1225 krb5_free_context (kcontext);
1226
1227 CLOSESOCKET (sock);
1228 return (-1);
1229 }
1230 #else /* ! KERBEROS5 */
1231 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
1232 realhost = strdup (hostent->h_name);
1233 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1234 (char *) krb_realmofhost (realhost),
1235 (unsigned long) 0, &msg_data, &cred, schedule,
1236 (struct sockaddr_in *) 0,
1237 (struct sockaddr_in *) 0,
1238 "KPOPV0.1");
1239 free ((char *) ticket);
1240 free (realhost);
1241 if (rem != KSUCCESS)
1242 {
1243 strcpy (pop_error, KRB_ERROR);
1244 strncat (pop_error, krb_err_txt[rem],
1245 ERROR_MAX - sizeof (KRB_ERROR));
1246 CLOSESOCKET (sock);
1247 return (-1);
1248 }
1249 #endif /* KERBEROS5 */
1250 }
1251 #endif /* KERBEROS */
1252
1253 return (sock);
1254 } /* socket_connection */
1255
1256 /*
1257 * Function: pop_getline
1258 *
1259 * Purpose: Get a line of text from the connection and return a
1260 * pointer to it. The carriage return and linefeed at the end of
1261 * the line are stripped, but periods at the beginnings of lines
1262 * are NOT dealt with in any special way.
1263 *
1264 * Arguments:
1265 * server The server from which to get the line of text.
1266 *
1267 * Returns: The number of characters in the line, which is returned in
1268 * LINE, not including the final null. A return value of 0
1269 * indicates a blank line. A negative return value indicates an
1270 * error (in which case the contents of LINE are undefined. In
1271 * case of error, an error message is copied into pop_error.
1272 *
1273 * Notes: The line returned is overwritten with each call to pop_getline.
1274 *
1275 * Side effects: Closes the connection on error.
1276 *
1277 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
1278 */
1279 static int
1280 pop_getline (server, line)
1281 popserver server;
1282 char **line;
1283 {
1284 #define GETLINE_ERROR "Error reading from server: "
1285
1286 int ret;
1287 int search_offset = 0;
1288
1289 if (server->data)
1290 {
1291 char *cp = find_crlf (server->buffer + server->buffer_index,
1292 server->data);
1293 if (cp)
1294 {
1295 int found;
1296 int data_used;
1297
1298 found = server->buffer_index;
1299 data_used = (cp + 2) - server->buffer - found;
1300
1301 *cp = '\0'; /* terminate the string to be returned */
1302 server->data -= data_used;
1303 server->buffer_index += data_used;
1304
1305 if (pop_debug)
1306 /* Embedded nulls will truncate this output prematurely,
1307 but that's OK because it's just for debugging anyway. */
1308 fprintf (stderr, "<<< %s\n", server->buffer + found);
1309 *line = server->buffer + found;
1310 return (data_used - 2);
1311 }
1312 else
1313 {
1314 bcopy (server->buffer + server->buffer_index,
1315 server->buffer, server->data);
1316 /* Record the fact that we've searched the data already in
1317 the buffer for a CRLF, so that when we search below, we
1318 don't have to search the same data twice. There's a "-
1319 1" here to account for the fact that the last character
1320 of the data we have may be the CR of a CRLF pair, of
1321 which we haven't read the second half yet, so we may have
1322 to search it again when we read more data. */
1323 search_offset = server->data - 1;
1324 server->buffer_index = 0;
1325 }
1326 }
1327 else
1328 {
1329 server->buffer_index = 0;
1330 }
1331
1332 while (1)
1333 {
1334 /* There's a "- 1" here to leave room for the null that we put
1335 at the end of the read data below. We put the null there so
1336 that find_crlf knows where to stop when we call it. */
1337 if (server->data == server->buffer_size - 1)
1338 {
1339 server->buffer_size += GETLINE_INCR;
1340 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1341 if (! server->buffer)
1342 {
1343 strcpy (pop_error, "Out of memory in pop_getline");
1344 pop_trash (server);
1345 return (-1);
1346 }
1347 }
1348 ret = RECV (server->file, server->buffer + server->data,
1349 server->buffer_size - server->data - 1, 0);
1350 if (ret < 0)
1351 {
1352 strcpy (pop_error, GETLINE_ERROR);
1353 strncat (pop_error, strerror (errno),
1354 ERROR_MAX - sizeof (GETLINE_ERROR));
1355 pop_trash (server);
1356 return (-1);
1357 }
1358 else if (ret == 0)
1359 {
1360 strcpy (pop_error, "Unexpected EOF from server in pop_getline");
1361 pop_trash (server);
1362 return (-1);
1363 }
1364 else
1365 {
1366 char *cp;
1367 server->data += ret;
1368 server->buffer[server->data] = '\0';
1369
1370 cp = find_crlf (server->buffer + search_offset,
1371 server->data - search_offset);
1372 if (cp)
1373 {
1374 int data_used = (cp + 2) - server->buffer;
1375 *cp = '\0';
1376 server->data -= data_used;
1377 server->buffer_index = data_used;
1378
1379 if (pop_debug)
1380 fprintf (stderr, "<<< %s\n", server->buffer);
1381 *line = server->buffer;
1382 return (data_used - 2);
1383 }
1384 /* As above, the "- 1" here is to account for the fact that
1385 we may have read a CR without its accompanying LF. */
1386 search_offset += ret - 1;
1387 }
1388 }
1389
1390 /* NOTREACHED */
1391 }
1392
1393 /*
1394 * Function: sendline
1395 *
1396 * Purpose: Sends a line of text to the POP server. The line of text
1397 * passed into this function should NOT have the carriage return
1398 * and linefeed on the end of it. Periods at beginnings of lines
1399 * will NOT be treated specially by this function.
1400 *
1401 * Arguments:
1402 * server The server to which to send the text.
1403 * line The line of text to send.
1404 *
1405 * Return value: Upon successful completion, a value of 0 will be
1406 * returned. Otherwise, a non-zero value will be returned, and
1407 * an error will be copied into pop_error.
1408 *
1409 * Side effects: Closes the connection on error.
1410 */
1411 static int
1412 sendline (server, line)
1413 popserver server;
1414 char *line;
1415 {
1416 #define SENDLINE_ERROR "Error writing to POP server: "
1417 int ret;
1418 char *buf;
1419
1420 /* Combine the string and the CR-LF into one buffer. Otherwise, two
1421 reasonable network stack optimizations, Nagle's algorithm and
1422 delayed acks, combine to delay us a fraction of a second on every
1423 message we send. (Movemail writes line without \r\n, client
1424 kernel sends packet, server kernel delays the ack to see if it
1425 can combine it with data, movemail writes \r\n, client kernel
1426 waits because it has unacked data already in its outgoing queue,
1427 client kernel eventually times out and sends.)
1428
1429 This can be something like 0.2s per command, which can add up
1430 over a few dozen messages, and is a big chunk of the time we
1431 spend fetching mail from a server close by. */
1432 buf = alloca (strlen (line) + 3);
1433 strcpy (buf, line);
1434 strcat (buf, "\r\n");
1435 ret = fullwrite (server->file, buf, strlen (buf));
1436
1437 if (ret < 0)
1438 {
1439 pop_trash (server);
1440 strcpy (pop_error, SENDLINE_ERROR);
1441 strncat (pop_error, strerror (errno),
1442 ERROR_MAX - sizeof (SENDLINE_ERROR));
1443 return (ret);
1444 }
1445
1446 if (pop_debug)
1447 fprintf (stderr, ">>> %s\n", line);
1448
1449 return (0);
1450 }
1451
1452 /*
1453 * Procedure: fullwrite
1454 *
1455 * Purpose: Just like write, but keeps trying until the entire string
1456 * has been written.
1457 *
1458 * Return value: Same as write. Pop_error is not set.
1459 */
1460 static int
1461 fullwrite (fd, buf, nbytes)
1462 int fd;
1463 char *buf;
1464 int nbytes;
1465 {
1466 char *cp;
1467 int ret = 0;
1468
1469 cp = buf;
1470 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0))
1471 {
1472 cp += ret;
1473 nbytes -= ret;
1474 }
1475
1476 return (ret);
1477 }
1478
1479 /*
1480 * Procedure getok
1481 *
1482 * Purpose: Reads a line from the server. If the return indicator is
1483 * positive, return with a zero exit status. If not, return with
1484 * a negative exit status.
1485 *
1486 * Arguments:
1487 * server The server to read from.
1488 *
1489 * Returns: 0 for success, else for failure and puts error in pop_error.
1490 *
1491 * Side effects: On failure, may make the connection unusable.
1492 */
1493 static int
1494 getok (server)
1495 popserver server;
1496 {
1497 char *fromline;
1498
1499 if (pop_getline (server, &fromline) < 0)
1500 {
1501 return (-1);
1502 }
1503
1504 if (! strncmp (fromline, "+OK", 3))
1505 return (0);
1506 else if (! strncmp (fromline, "-ERR", 4))
1507 {
1508 strncpy (pop_error, fromline, ERROR_MAX);
1509 pop_error[ERROR_MAX-1] = '\0';
1510 return (-1);
1511 }
1512 else
1513 {
1514 strcpy (pop_error,
1515 "Unexpected response from server; expecting +OK or -ERR");
1516 pop_trash (server);
1517 return (-1);
1518 }
1519 }
1520
1521 #if 0
1522 /*
1523 * Function: gettermination
1524 *
1525 * Purpose: Gets the next line and verifies that it is a termination
1526 * line (nothing but a dot).
1527 *
1528 * Return value: 0 on success, non-zero with pop_error set on error.
1529 *
1530 * Side effects: Closes the connection on error.
1531 */
1532 static int
1533 gettermination (server)
1534 popserver server;
1535 {
1536 char *fromserver;
1537
1538 if (pop_getline (server, &fromserver) < 0)
1539 return (-1);
1540
1541 if (strcmp (fromserver, "."))
1542 {
1543 strcpy (pop_error,
1544 "Unexpected response from server in gettermination");
1545 pop_trash (server);
1546 return (-1);
1547 }
1548
1549 return (0);
1550 }
1551 #endif
1552
1553 /*
1554 * Function pop_close
1555 *
1556 * Purpose: Close a pop connection, sending a "RSET" command to try to
1557 * preserve any changes that were made and a "QUIT" command to
1558 * try to get the server to quit, but ignoring any responses that
1559 * are received.
1560 *
1561 * Side effects: The server is unusable after this function returns.
1562 * Changes made to the maildrop since the session was started (or
1563 * since the last pop_reset) may be lost.
1564 */
1565 void
1566 pop_close (server)
1567 popserver server;
1568 {
1569 pop_trash (server);
1570 free ((char *) server);
1571
1572 return;
1573 }
1574
1575 /*
1576 * Function: pop_trash
1577 *
1578 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1579 * memory associated with the server. It is valid to call
1580 * pop_close or pop_quit after this function has been called.
1581 */
1582 static void
1583 pop_trash (server)
1584 popserver server;
1585 {
1586 if (server->file >= 0)
1587 {
1588 /* avoid recursion; sendline can call pop_trash */
1589 if (server->trash_started)
1590 return;
1591 server->trash_started = 1;
1592
1593 sendline (server, "RSET");
1594 sendline (server, "QUIT");
1595
1596 CLOSESOCKET (server->file);
1597 server->file = -1;
1598 if (server->buffer)
1599 {
1600 free (server->buffer);
1601 server->buffer = 0;
1602 }
1603 }
1604
1605 #ifdef WINDOWSNT
1606 if (have_winsock)
1607 WSACleanup ();
1608 #endif
1609 }
1610
1611 /* Return a pointer to the first CRLF in IN_STRING, which can contain
1612 embedded nulls and has LEN characters in it not including the final
1613 null, or 0 if it does not contain one. */
1614
1615 static char *
1616 find_crlf (in_string, len)
1617 char *in_string;
1618 int len;
1619 {
1620 while (len--)
1621 {
1622 if (*in_string == '\r')
1623 {
1624 if (*++in_string == '\n')
1625 return (in_string - 1);
1626 }
1627 else
1628 in_string++;
1629 }
1630 return (0);
1631 }
1632
1633 #endif /* MAIL_USE_POP */
1634
1635 /* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d
1636 (do not change this comment) */