]>
diplodocus.org Git - nmh/blob - uip/popsbr.c
2 * popsbr.c -- POP client subroutines
4 * This code is Copyright (c) 2002, by the authors of nmh. See the
5 * COPYRIGHT file in the root directory of the nmh distribution for
6 * complete copyright information.
15 #include <h/signals.h>
19 static int poprint
= 0;
21 char response
[BUFSIZ
];
22 static netsec_context
*nsc
= NULL
;
28 static int command(const char *, ...);
29 static int multiline(void);
31 static int traverse (int (*)(char *), const char *, ...);
32 static int vcommand(const char *, va_list);
33 static int pop_getline (char *, int, netsec_context
*);
34 static int pop_sasl_callback(enum sasl_message_type
, unsigned const char *,
35 unsigned int, unsigned char **, unsigned int *,
39 check_mech(char *server_mechs
, size_t server_mechs_size
)
41 int status
, sasl_capability
= 0;
44 * First off, we're going to send the CAPA command to see if we can
45 * even support the AUTH command, and if we do, then we'll get a
46 * list of mechanisms the server supports. If we don't support
47 * the CAPA command, then it's unlikely that we will support
51 if (command("CAPA") == NOTOK
) {
52 snprintf(response
, sizeof(response
),
53 "The POP CAPA command failed; POP server does not "
58 while ((status
= multiline()) != DONE
)
63 case DONE
: /* Shouldn't be possible, but just in case */
66 if (strncasecmp(response
, "SASL ", 5) == 0) {
68 * We've seen the SASL capability. Grab the mech list
71 strncpy(server_mechs
, response
+ 5, server_mechs_size
);
76 if (!sasl_capability
) {
77 snprintf(response
, sizeof(response
), "POP server does not support "
86 * Split string containing proxy command into an array of arguments
87 * suitable for passing to exec. Returned array must be freed. Shouldn't
88 * be possible to call this with host set to NULL.
91 parse_proxy(char *proxy
, char *host
)
95 int hlen
= strlen(host
);
97 unsigned char *cur
, *pro
;
100 /* skip any initial space */
101 for (pro
= (unsigned char *) proxy
; isspace(*pro
); pro
++)
104 /* calculate required size for argument array */
105 for (cur
= pro
; *cur
; cur
++) {
106 if (isspace(*cur
) && cur
[1] && !isspace(cur
[1]))
108 else if (*cur
== '%' && cur
[1] == 'h') {
111 } else if (!isspace(*cur
))
115 /* put together list of arguments */
116 p
= pargv
= mh_xmalloc(pargc
* sizeof(char *));
117 c
= *pargv
= mh_xmalloc(plen
* sizeof(char));
118 for (cur
= pro
; *cur
; cur
++) {
119 if (isspace(*cur
) && cur
[1] && !isspace(cur
[1])) {
122 } else if (*cur
== '%' && cur
[1] == 'h') {
126 } else if (!isspace(*cur
))
135 pop_init (char *host
, char *port
, char *user
, char *proxy
, int snoop
,
136 int sasl
, char *mech
, int tls
, const char *oauth_svc
)
145 netsec_set_userid(nsc
, user
);
147 netsec_set_hostname(nsc
, host
);
149 if (oauth_svc
!= NULL
) {
150 if (netsec_set_oauth_service(nsc
, oauth_svc
) != OK
) {
151 snprintf(response
, sizeof(response
), "OAuth2 not supported");
156 if (proxy
&& *proxy
) {
158 int inpipe
[2]; /* for reading from the server */
159 int outpipe
[2]; /* for sending to the server */
161 if (pipe(inpipe
) < 0) {
162 adios ("inpipe", "pipe");
164 if (pipe(outpipe
) < 0) {
165 adios ("outpipe", "pipe");
175 dup2(outpipe
[0],0); /* connect read end of connection */
176 dup2(inpipe
[1], 1); /* connect write end of connection */
177 if(inpipe
[0]>1) close(inpipe
[0]);
178 if(inpipe
[1]>1) close(inpipe
[1]);
179 if(outpipe
[0]>1) close(outpipe
[0]);
180 if(outpipe
[1]>1) close(outpipe
[1]);
182 /* run the proxy command */
183 argv
=parse_proxy(proxy
, host
);
184 execvp(argv
[0],argv
);
194 /* okay in the parent we do some stuff */
195 close(inpipe
[1]); /* child uses this */
196 close(outpipe
[0]); /* child uses this */
200 /* and write on fd2 */
204 if ((fd1
= client (host
, port
? port
: "pop3", response
,
205 sizeof(response
), snoop
)) == NOTOK
) {
211 SIGNAL (SIGPIPE
, SIG_IGN
);
213 netsec_set_fd(nsc
, fd1
, fd2
);
214 netsec_set_snoop(nsc
, snoop
);
216 if (tls
& P_INITTLS
) {
217 if (netsec_set_tls(nsc
, 1, tls
& P_NOVERIFY
, &errstr
) != OK
) {
218 snprintf(response
, sizeof(response
), "%s", errstr
);
223 if (netsec_negotiate_tls(nsc
, &errstr
) != OK
) {
224 snprintf(response
, sizeof(response
), "%s", errstr
);
231 if (netsec_set_sasl_params(nsc
, "pop", mech
, pop_sasl_callback
,
233 snprintf(response
, sizeof(response
), "%s", errstr
);
239 switch (pop_getline (response
, sizeof response
, nsc
)) {
242 fprintf (stderr
, "<--- %s\n", response
);
243 if (*response
== '+') {
247 char server_mechs
[256];
248 if (check_mech(server_mechs
, sizeof(server_mechs
)) != OK
)
250 if (netsec_negotiate_sasl(nsc
, server_mechs
,
252 strncpy(response
, errstr
, sizeof(response
));
253 response
[sizeof(response
) - 1] = '\0';
260 if (!(creds
= nmh_get_credentials(host
, user
)))
262 if (command ("USER %s", nmh_cred_get_user(creds
))
264 if (command("PASS %s", nmh_cred_get_password(creds
))
266 nmh_credentials_free(creds
);
270 nmh_credentials_free(creds
);
272 strncpy (buffer
, response
, sizeof(buffer
));
274 strncpy (response
, buffer
, sizeof(response
));
280 fprintf (stderr
, "%s\n", response
);
281 netsec_shutdown(nsc
, 1);
286 return NOTOK
; /* NOTREACHED */
291 * Our SASL callback; we are given SASL tokens and then have to format
292 * them according to the protocol requirements, and then process incoming
293 * messages and feed them back into the SASL library.
297 pop_sasl_callback(enum sasl_message_type mtype
, unsigned const char *indata
,
298 unsigned int indatalen
, unsigned char **outdata
,
299 unsigned int *outdatalen
, char **errstr
)
306 case NETSEC_SASL_START
:
308 * Generate our AUTH message, but there is a wrinkle.
310 * Technically, according to RFC 5034, if your command INCLUDING
311 * an initial response exceeds 255 octets (including CRLF), you
312 * can't issue this all in one go, but have to just issue the
313 * AUTH command, wait for a blank initial response, and then
317 mech
= netsec_get_sasl_mechanism(nsc
);
321 b64data
= mh_xmalloc(BASE64SIZE(indatalen
));
322 writeBase64raw(indata
, indatalen
, (unsigned char *) b64data
);
323 b64len
= strlen(b64data
);
325 /* Formula here is AUTH + SP + mech + SP + out + CR + LF */
326 len
= b64len
+ 8 + strlen(mech
);
328 rc
= netsec_printf(nsc
, errstr
, "AUTH %s\r\n", mech
);
331 if (netsec_flush(nsc
, errstr
) != OK
)
333 line
= netsec_readline(nsc
, &len
, errstr
);
337 * If the protocol is being followed correctly, should just
338 * be a "+ ", nothing else.
340 if (len
!= 2 || strcmp(line
, "+ ") != 0) {
341 netsec_err(errstr
, "Did not get expected blank response "
342 "for initial challenge response");
345 netsec_set_snoop_callback(nsc
, netsec_b64_snoop_decoder
, NULL
);
346 rc
= netsec_printf(nsc
, errstr
, "%s\r\n", b64data
);
347 netsec_set_snoop_callback(nsc
, NULL
, NULL
);
351 if (netsec_flush(nsc
, errstr
) != OK
)
354 netsec_set_snoop_callback(nsc
, netsec_b64_snoop_decoder
,
356 snoopoffset
= 6 + strlen(mech
);
357 rc
= netsec_printf(nsc
, errstr
, "AUTH %s %s\r\n", mech
,
360 netsec_set_snoop_callback(nsc
, NULL
, NULL
);
363 if (netsec_flush(nsc
, errstr
) != OK
)
367 if (netsec_printf(nsc
, errstr
, "AUTH %s\r\n", mech
) != OK
)
369 if (netsec_flush(nsc
, errstr
) != OK
)
376 * We should get one line back, with our base64 data. Decode that
377 * and feed it back into the SASL library.
379 case NETSEC_SASL_READ
:
380 netsec_set_snoop_callback(nsc
, netsec_b64_snoop_decoder
, &snoopoffset
);
382 line
= netsec_readline(nsc
, &len
, errstr
);
383 netsec_set_snoop_callback(nsc
, NULL
, NULL
);
387 if (len
< 2 || (len
== 2 && strcmp(line
, "+ ") != 0)) {
388 netsec_err(errstr
, "Invalid format for SASL response");
396 rc
= decodeBase64(line
+ 2, outdata
, &len
, 0, NULL
);
399 netsec_err(errstr
, "Unable to decode base64 response");
406 * Our encoding is pretty simple, so this is easy.
409 case NETSEC_SASL_WRITE
:
410 if (indatalen
== 0) {
411 rc
= netsec_printf(nsc
, errstr
, "\r\n");
413 unsigned char *b64data
;
414 b64data
= mh_xmalloc(BASE64SIZE(indatalen
));
415 writeBase64raw(indata
, indatalen
, b64data
);
416 netsec_set_snoop_callback(nsc
, netsec_b64_snoop_decoder
, NULL
);
417 rc
= netsec_printf(nsc
, errstr
, "%s\r\n", b64data
);
418 netsec_set_snoop_callback(nsc
, NULL
, NULL
);
425 if (netsec_flush(nsc
, errstr
) != OK
)
430 * Finish the protocol; we're looking for an +OK
433 case NETSEC_SASL_FINISH
:
434 line
= netsec_readline(nsc
, &len
, errstr
);
438 if (!HasPrefix(line
, "+OK")) {
439 netsec_err(errstr
, "Authentication failed: %s", line
);
445 * Cancel the SASL exchange in the middle of the commands; for
446 * POP, that's a single "*".
448 * It's unclear to me if I should be returning errors up; I finally
449 * decided the answer should be "yes", and if the upper layer wants to
450 * ignore them that's their choice.
453 case NETSEC_SASL_CANCEL
:
454 rc
= netsec_printf(nsc
, errstr
, "*\r\n");
456 rc
= netsec_flush(nsc
, errstr
);
466 * Find out number of messages available
467 * and their total size.
471 pop_stat (int *nmsgs
, int *nbytes
)
474 if (command ("STAT") == NOTOK
)
477 *nmsgs
= *nbytes
= 0;
478 sscanf (response
, "+OK %d %d", nmsgs
, nbytes
);
485 pop_list (int msgno
, int *nmsgs
, int *msgs
, int *bytes
)
491 if (command ("LIST %d", msgno
) == NOTOK
)
496 sscanf (response
, "+OK %d %d %d", msgs
, bytes
, ids
);
499 sscanf (response
, "+OK %d %d", msgs
, bytes
);
503 if (command ("LIST") == NOTOK
)
506 for (i
= 0; i
< *nmsgs
; i
++)
507 switch (multiline ()) {
517 sscanf (response
, "%d %d %d",
518 msgs
++, bytes
++, ids
++);
521 sscanf (response
, "%d %d", msgs
++, bytes
++);
525 switch (multiline ()) {
537 pop_retr (int msgno
, int (*action
)(char *))
539 return traverse (action
, "RETR %d", msgno
);
544 traverse (int (*action
)(char *), const char *fmt
, ...)
546 int result
, snoopstate
;
548 char buffer
[sizeof(response
)];
551 result
= vcommand (fmt
, ap
);
556 strncpy (buffer
, response
, sizeof(buffer
));
558 if ((snoopstate
= netsec_get_snoop(nsc
)))
559 netsec_set_snoop(nsc
, 0);
562 switch (multiline ()) {
564 netsec_set_snoop(nsc
, snoopstate
);
568 strncpy (response
, buffer
, sizeof(response
));
569 netsec_set_snoop(nsc
, snoopstate
);
573 (*action
) (response
);
582 return command ("DELE %d", msgno
);
589 return command ("NOOP");
596 return command ("RSET");
601 pop_top (int msgno
, int lines
, int (*action
)(char *))
603 return traverse (action
, "TOP %d %d", msgno
, lines
);
612 i
= command ("QUIT");
623 netsec_shutdown(nsc
, 1);
630 command(const char *fmt
, ...)
636 result
= vcommand(fmt
, ap
);
644 vcommand (const char *fmt
, va_list ap
)
649 if (netsec_vprintf(nsc
, &errstr
, fmt
, ap
) != OK
) {
650 strncpy(response
, errstr
, sizeof(response
));
651 response
[sizeof(response
) - 1] = '\0';
656 if (netsec_printf(nsc
, &errstr
, "\r\n") != OK
) {
657 strncpy(response
, errstr
, sizeof(response
));
658 response
[sizeof(response
) - 1] = '\0';
663 if (netsec_flush(nsc
, &errstr
) != OK
) {
664 strncpy(response
, errstr
, sizeof(response
));
665 response
[sizeof(response
) - 1] = '\0';
670 switch (pop_getline (response
, sizeof response
, nsc
)) {
673 fprintf (stderr
, "<--- %s\n", response
);
674 return (*response
== '+' ? OK
: NOTOK
);
679 fprintf (stderr
, "%s\n", response
);
683 return NOTOK
; /* NOTREACHED */
690 char buffer
[BUFSIZ
+ LEN(TRM
)];
692 if (pop_getline (buffer
, sizeof buffer
, nsc
) != OK
)
694 if (HasPrefix(buffer
, TRM
)) {
695 if (buffer
[LEN(TRM
)] == 0)
697 strncpy (response
, buffer
+ LEN(TRM
), sizeof(response
));
700 strncpy (response
, buffer
, sizeof(response
));
706 * This is now just a thin wrapper around netsec_readline().
710 pop_getline (char *s
, int n
, netsec_context
*ns
)
718 p
= netsec_readline(ns
, &len
, &errstr
);
721 strncpy(response
, errstr
, sizeof(response
));
722 response
[sizeof(response
) - 1] = '\0';
728 * If we had an error, it should have been returned already. Since
729 * netsec_readline() strips off the CR-LF ending, just copy the existing
730 * buffer into response now.
732 * We get a length back from netsec_readline, but the rest of the POP
733 * code doesn't handle it; the assumptions are that everything from
734 * the network can be respresented as C strings. That should get fixed
738 destlen
= len
< ((size_t) (n
- 1)) ? len
: (size_t) (n
- 1);
740 memcpy(s
, p
, destlen
);