2 * Copyright (c) 1997-2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "push_locl.h"
35 __RCSID("$Heimdal: push.c 14850 2005-04-19 18:00:17Z lha $"
39 static int use_v4
= -1;
43 static int use_v5
= -1;
44 static krb5_context context
;
47 static char *port_str
;
48 static int verbose_level
;
51 static int do_version
;
55 static char *header_str
;
57 struct getargs args
[] = {
59 { "krb4", '4', arg_flag
, &use_v4
, "Use Kerberos V4",
63 { "krb5", '5', arg_flag
, &use_v5
, "Use Kerberos V5",
66 { "verbose",'v', arg_counter
, &verbose_level
, "Verbose",
68 { "fork", 'f', arg_flag
, &do_fork
, "Fork deleting proc",
70 { "leave", 'l', arg_flag
, &do_leave
, "Leave mail on server",
72 { "port", 'p', arg_string
, &port_str
, "Use this port",
73 "number-or-service" },
74 { "from", 0, arg_flag
, &do_from
, "Behave like from",
76 { "headers", 0, arg_string
, &header_str
, "Headers to print", NULL
},
77 { "count", 'c', arg_flag
, &do_count
, "Print number of messages", NULL
},
78 { "version", 0, arg_flag
, &do_version
, "Print version",
80 { "help", 0, arg_flag
, &do_help
, NULL
,
89 sizeof(args
) / sizeof(args
[0]),
91 "[[{po:username[@hostname] | hostname[:username]}] ...] "
97 do_connect (const char *hostname
, int port
, int nodelay
)
99 struct addrinfo
*ai
, *a
;
100 struct addrinfo hints
;
103 char portstr
[NI_MAXSERV
];
105 memset (&hints
, 0, sizeof(hints
));
106 hints
.ai_socktype
= SOCK_STREAM
;
107 hints
.ai_protocol
= IPPROTO_TCP
;
109 snprintf (portstr
, sizeof(portstr
), "%u", ntohs(port
));
111 error
= getaddrinfo (hostname
, portstr
, &hints
, &ai
);
113 errx (1, "getaddrinfo(%s): %s", hostname
, gai_strerror(error
));
115 for (a
= ai
; a
!= NULL
; a
= a
->ai_next
) {
116 s
= socket (a
->ai_family
, a
->ai_socktype
, a
->ai_protocol
);
119 if (connect (s
, a
->ai_addr
, a
->ai_addrlen
) < 0) {
120 warn ("connect(%s)", hostname
);
128 warnx ("failed to contact %s", hostname
);
132 if(setsockopt(s
, IPPROTO_TCP
, TCP_NODELAY
,
133 (void *)&nodelay
, sizeof(nodelay
)) < 0)
134 err (1, "setsockopt TCP_NODELAY");
138 typedef enum { INIT
= 0, GREET
, USER
, PASS
, STAT
, RETR
, TOP
,
139 DELE
, XDELE
, QUIT
} pop_state
;
141 static char *pop_state_string
[] = {
142 "INIT", "GREET", "USER", "PASS", "STAT", "RETR", "TOP",
143 "DELE", "XDELE", "QUIT"
146 #define PUSH_BUFSIZ 65536
151 struct iovec
*iovecs
;
152 size_t niovecs
, maxiovecs
, allociovecs
;
157 write_state_init (struct write_state
*w
, int fd
)
160 w
->maxiovecs
= UIO_MAXIOV
;
164 w
->allociovecs
= min(STEP
, w
->maxiovecs
);
166 w
->iovecs
= emalloc(w
->allociovecs
* sizeof(*w
->iovecs
));
171 write_state_add (struct write_state
*w
, void *v
, size_t len
)
173 if(w
->niovecs
== w
->allociovecs
) {
174 if(w
->niovecs
== w
->maxiovecs
) {
175 if(writev (w
->fd
, w
->iovecs
, w
->niovecs
) < 0)
179 w
->allociovecs
= min(w
->allociovecs
+ STEP
, w
->maxiovecs
);
180 w
->iovecs
= erealloc (w
->iovecs
,
181 w
->allociovecs
* sizeof(*w
->iovecs
));
184 w
->iovecs
[w
->niovecs
].iov_base
= v
;
185 w
->iovecs
[w
->niovecs
].iov_len
= len
;
190 write_state_flush (struct write_state
*w
)
193 if (writev (w
->fd
, w
->iovecs
, w
->niovecs
) < 0)
200 write_state_destroy (struct write_state
*w
)
209 const char *outfilename
,
210 const char *header_str
,
216 char out_buf
[PUSH_BUFSIZ
];
222 pop_state state
= INIT
;
223 unsigned count
, bytes
;
224 unsigned asked_for
= 0, retrieved
= 0, asked_deleted
= 0, deleted
= 0;
225 unsigned sent_xdele
= 0;
228 size_t from_line_length
;
230 struct write_state write_state
;
232 char **headers
= NULL
;
236 in_buf
= emalloc(PUSH_BUFSIZ
+ 1);
238 in_buf_size
= PUSH_BUFSIZ
;
243 tmp2
= tmp
= estrdup(header_str
);
247 fprintf (stderr
, "%s@%s\n", user
, host
);
248 while (*tmp
!= '\0') {
249 tmp
= strchr(tmp
, ',');
256 headers
= emalloc(sizeof(char *) * (numheaders
+ 1));
257 for (i
= 0; i
< numheaders
; i
++) {
258 headers
[i
] = strtok_r(tmp2
, ",", &tmp2
);
260 headers
[numheaders
] = NULL
;
262 out_fd
= open(outfilename
, O_WRONLY
| O_APPEND
| O_CREAT
, 0666);
264 err (1, "open %s", outfilename
);
266 fprintf (stderr
, "%s@%s -> %s\n", user
, host
, outfilename
);
270 from_line_length
= snprintf (from_line
, sizeof(from_line
),
271 "From %s %s", "push", ctime(&now
));
272 if (from_line_length
< 0 || from_line_length
> sizeof(from_line
))
273 errx (1, "snprintf failed");
275 out_len
= snprintf (out_buf
, sizeof(out_buf
),
276 "USER %s\r\nPASS hej\r\nSTAT\r\n",
278 if (out_len
< 0 || out_len
> sizeof(out_buf
))
279 errx (1, "snprintf failed");
280 if (net_write (s
, out_buf
, out_len
) != out_len
)
283 fprintf (stderr
, "%s", out_buf
);
286 write_state_init (&write_state
, out_fd
);
288 while(state
!= QUIT
) {
289 fd_set readset
, writeset
;
294 errx (1, "fd too large");
298 fprintf (stderr
, "state: %s count: %d asked_for: %d "
299 "retrieved: %d asked_deleted: %d\n",
300 pop_state_string
[state
],
301 count
, asked_for
, retrieved
, asked_deleted
);
303 if (((state
== STAT
|| state
== RETR
|| state
== TOP
)
304 && asked_for
< count
)
305 || (state
== XDELE
&& !sent_xdele
)
306 || (state
== DELE
&& asked_deleted
< count
))
308 ret
= select (s
+ 1, &readset
, &writeset
, NULL
, NULL
);
316 if (FD_ISSET(s
, &readset
)) {
321 if(in_len
>= in_buf_size
) {
322 char *tmp
= erealloc(in_buf
, in_buf_size
+ PUSH_BUFSIZ
+ 1);
323 in_ptr
= tmp
+ (in_ptr
- in_buf
);
325 in_buf_size
+= PUSH_BUFSIZ
;
328 ret
= read (s
, in_ptr
, in_buf_size
- in_len
);
332 errx (1, "EOF during read");
341 && (p
= strstr(beg
, "\r\n")) != NULL
) {
345 for (i
= 0; i
< numheaders
; i
++) {
348 len
= min(p
- copy
+ 1, strlen(headers
[i
]));
349 if (strncasecmp(copy
, headers
[i
], len
) == 0) {
350 fprintf (stdout
, "%.*s\n", (int)(p
- copy
), copy
);
353 if (beg
[0] == '.' && beg
[1] == '\r' && beg
[2] == '\n') {
355 fprintf (stdout
, "\n");
357 if (++retrieved
== count
) {
359 net_write (s
, "QUIT\r\n", 6);
361 fprintf (stderr
, "QUIT\r\n");
366 } else if (state
== RETR
) {
369 if (beg
[1] == '\r' && beg
[2] == '\n') {
371 write_state_add(&write_state
, "\n", 1);
375 if (++retrieved
== count
) {
376 write_state_flush (&write_state
);
377 if (fsync (out_fd
) < 0)
382 net_write (s
, "QUIT\r\n", 6);
384 fprintf (stderr
, "QUIT\r\n");
402 fprintf (stderr
, "deleting... ");
411 strncmp(copy
, "From ", min(p
- copy
+ 1, 5)) == 0)
412 write_state_add(&write_state
, ">", 1);
413 write_state_add(&write_state
, copy
, p
- copy
+ 1);
414 blank_line
= (*copy
== '\n');
417 } else if (rem
>= 3 && strncmp (beg
, "+OK", 3) == 0) {
420 write_state_add(&write_state
,
421 from_line
, from_line_length
);
427 } else if (state
== XDELE
) {
429 net_write (s
, "QUIT\r\n", 6);
431 fprintf (stderr
, "QUIT\r\n");
433 } else if (state
== DELE
) {
434 if (++deleted
== count
) {
436 net_write (s
, "QUIT\r\n", 6);
438 fprintf (stderr
, "QUIT\r\n");
441 } else if (++state
== STAT
) {
442 if(sscanf (beg
+ 4, "%u %u", &count
, &bytes
) != 2)
443 errx(1, "Bad STAT-line: %.*s", (int)(p
- beg
), beg
);
445 fprintf (stderr
, "%u message(s) (%u bytes). "
449 fprintf (stderr
, "\n");
450 } else if (do_count
) {
451 fprintf (stderr
, "%u message(s) (%u bytes).\n",
456 net_write (s
, "QUIT\r\n", 6);
458 fprintf (stderr
, "QUIT\r\n");
471 errx (1, "Bad response: %.*s", (int)(p
- beg
), beg
);
475 write_state_flush (&write_state
);
477 memmove (in_buf
, beg
, rem
);
479 in_ptr
= in_buf
+ rem
;
481 if (FD_ISSET(s
, &writeset
)) {
482 if ((state
== STAT
&& !do_from
) || state
== RETR
)
483 out_len
= snprintf (out_buf
, sizeof(out_buf
),
484 "RETR %u\r\n", ++asked_for
);
485 else if ((state
== STAT
&& do_from
) || state
== TOP
)
486 out_len
= snprintf (out_buf
, sizeof(out_buf
),
487 "TOP %u 0\r\n", ++asked_for
);
488 else if(state
== XDELE
) {
489 out_len
= snprintf(out_buf
, sizeof(out_buf
),
490 "XDELE %u %u\r\n", 1, count
);
493 else if(state
== DELE
)
494 out_len
= snprintf (out_buf
, sizeof(out_buf
),
495 "DELE %u\r\n", ++asked_deleted
);
496 if (out_len
< 0 || out_len
> sizeof(out_buf
))
497 errx (1, "snprintf failed");
498 if (net_write (s
, out_buf
, out_len
) != out_len
)
501 fprintf (stderr
, "%s", out_buf
);
505 fprintf (stderr
, "Done\n");
510 write_state_destroy (&write_state
);
517 do_v5 (const char *host
,
520 const char *filename
,
521 const char *header_str
,
527 krb5_auth_context auth_context
= NULL
;
528 krb5_principal server
;
531 s
= do_connect (host
, port
, 1);
535 ret
= krb5_sname_to_principal (context
,
541 warnx ("krb5_sname_to_principal: %s",
542 krb5_get_err_text (context
, ret
));
546 ret
= krb5_sendauth (context
,
559 krb5_free_principal (context
, server
);
561 warnx ("krb5_sendauth: %s",
562 krb5_get_err_text (context
, ret
));
565 return doit (s
, host
, user
, filename
, header_str
, leavep
, verbose
, forkp
);
571 do_v4 (const char *host
,
574 const char *filename
,
575 const char *header_str
,
583 des_key_schedule sched
;
587 s
= do_connect (host
, port
, 1);
590 ret
= krb_sendauth(0,
595 krb_realmofhost(host
),
604 warnx("krb_sendauth: %s", krb_get_err_text(ret
));
607 return doit (s
, host
, user
, filename
, header_str
, leavep
, verbose
, forkp
);
613 #ifdef HESIOD_INTERFACES
616 hesiod_get_pobox (const char **user
)
619 struct hesiod_postoffice
*hpo
;
622 if(hesiod_init (&context
) != 0)
623 err (1, "hesiod_init");
625 hpo
= hesiod_getmailhost (context
, *user
);
627 warn ("hesiod_getmailhost %s", *user
);
629 if (strcasecmp(hpo
->hesiod_po_type
, "pop") != 0)
630 errx (1, "Unsupported po type %s", hpo
->hesiod_po_type
);
632 ret
= estrdup(hpo
->hesiod_po_host
);
633 *user
= estrdup(hpo
->hesiod_po_name
);
634 hesiod_free_postoffice (context
, hpo
);
636 hesiod_end (context
);
640 #else /* !HESIOD_INTERFACES */
643 hesiod_get_pobox (const char **user
)
646 struct hes_postoffice
*hpo
;
648 hpo
= hes_getmailhost (*user
);
650 warn ("hes_getmailhost %s", *user
);
652 if (strcasecmp(hpo
->po_type
, "pop") != 0)
653 errx (1, "Unsupported po type %s", hpo
->po_type
);
655 ret
= estrdup(hpo
->po_host
);
656 *user
= estrdup(hpo
->po_name
);
661 #endif /* HESIOD_INTERFACES */
666 get_pobox (const char **user
)
671 ret
= hesiod_get_pobox (user
);
675 ret
= getenv("MAILHOST");
677 errx (1, "MAILHOST not set");
682 parse_pobox (char *a0
, const char **host
, const char **user
)
690 *user
= getenv ("USERNAME");
692 struct passwd
*pwd
= getpwuid (getuid ());
695 errx (1, "Who are you?");
696 *user
= estrdup (pwd
->pw_name
);
698 *host
= get_pobox (user
);
702 /* if the specification starts with po:, remember this information */
703 if(strncmp(a0
, "po:", 3) == 0) {
707 /* if there is an `@', the hostname is after it, otherwise at the
708 beginning of the string */
716 /* if there is a `:', the username comes before it, otherwise at
717 the beginning of the string */
726 /* some inconsistent compatibility with various mailers */
730 u
= get_default_username ();
732 errx (1, "Who are you?");
740 main(int argc
, char **argv
)
745 const char *host
, *user
, *filename
= NULL
;
748 setprogname (argv
[0]);
754 ret
= krb5_init_context (&context
);
756 errx (1, "krb5_init_context failed: %d", ret
);
760 if (getarg (args
, sizeof(args
) / sizeof(args
[0]), argc
, argv
,
767 #if defined(KRB4) && defined(KRB5)
768 if(use_v4
== -1 && use_v5
== 1)
770 if(use_v5
== -1 && use_v4
== 1)
782 if (do_from
&& header_str
== NULL
)
783 header_str
= "From:";
784 else if (header_str
!= NULL
)
798 } else if (argc
== 2) {
806 struct servent
*s
= roken_getservbyname (port_str
, "tcp");
813 port
= strtol (port_str
, &ptr
, 10);
814 if (port
== 0 && ptr
== port_str
)
815 errx (1, "Bad port `%s'", port_str
);
821 port
= krb5_getportbyname (context
, "kpop", "tcp", 1109);
823 port
= k_getportbyname ("kpop", "tcp", htons(1109));
825 #error must define KRB4 or KRB5
829 parse_pobox (pobox
, &host
, &user
);
833 ret
= do_v5 (host
, port
, user
, filename
, header_str
,
834 do_leave
, verbose_level
, do_fork
);
840 ret
= do_v4 (host
, port
, user
, filename
, header_str
,
841 do_leave
, verbose_level
, do_fork
);