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