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