2 * smtp.c -- nmh SMTP interface
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.
13 #include <h/signals.h>
16 #include <sasl/sasl.h>
17 #include <sasl/saslutil.h>
18 #include <sys/socket.h>
19 #include <netinet/in.h>
20 #include <arpa/inet.h>
23 #endif /* CYRUS_SASL */
26 #include <openssl/ssl.h>
27 #include <openssl/err.h>
28 #endif /* TLS_SUPPORT */
31 * This module implements an interface to SendMail very similar
32 * to the MMDF mm_(3) routines. The sm_() routines herein talk
33 * SMTP to a sendmail process, mapping SMTP reply codes into
38 * On older 4.2BSD machines without the POSIX function `sigaction',
39 * the alarm handing stuff for time-outs will NOT work due to the way
40 * syscalls get restarted. This is not really crucial, since SendMail
41 * is generally well-behaved in this area.
46 * It appears that some versions of Sendmail will return Code 451
47 * when they don't really want to indicate a failure.
48 * "Code 451 almost always means sendmail has deferred; we don't
49 * really want bomb out at this point since sendmail will rectify
50 * things later." So, if you define SENDMAILBUG, Code 451 is
51 * considered the same as Code 250. Yuck!
58 #define NBITS ((sizeof (int)) * 8)
61 * these codes must all be different!
63 #define SM_OPEN 300 /* Changed to 5 minutes to comply with a SHOULD in RFC 1123 */
66 #define SM_MAIL 301 /* changed to 5 minutes and a second (for uniqueness), see above */
67 #define SM_RCPT 302 /* see above */
68 #define SM_DATA 120 /* see above */
69 #define SM_TEXT 180 /* see above */
70 #define SM_DOT 600 /* see above */
75 #endif /* CYRUS_SASL */
77 static int sm_addrs
= 0;
78 static int sm_alarmed
= 0;
79 static int sm_child
= NOTOK
;
80 static int sm_debug
= 0;
81 static int sm_nl
= TRUE
;
82 static int sm_verbose
= 0;
84 static FILE *sm_rfp
= NULL
;
85 static FILE *sm_wfp
= NULL
;
89 * Some globals needed by SASL
92 static sasl_conn_t
*conn
= NULL
; /* SASL connection state */
93 static int sasl_complete
= 0; /* Has authentication succeded? */
94 static sasl_ssf_t sasl_ssf
; /* Our security strength factor */
95 static char *sasl_pw_context
[2]; /* Context to pass into sm_get_pass */
96 static int maxoutbuf
; /* Maximum crypto output buffer */
97 static char *sasl_outbuffer
; /* SASL output buffer for encryption */
98 static int sasl_outbuflen
; /* Current length of data in outbuf */
99 static int sm_get_user(void *, int, const char **, unsigned *);
100 static int sm_get_pass(sasl_conn_t
*, void *, int, sasl_secret_t
**);
102 static sasl_callback_t callbacks
[] = {
103 { SASL_CB_USER
, sm_get_user
, NULL
},
104 #define SM_SASL_N_CB_USER 0
105 { SASL_CB_PASS
, sm_get_pass
, NULL
},
106 #define SM_SASL_N_CB_PASS 1
107 { SASL_CB_AUTHNAME
, sm_get_user
, NULL
},
108 #define SM_SASL_N_CB_AUTHNAME 2
109 { SASL_CB_LIST_END
, NULL
, NULL
},
112 #else /* CYRUS_SASL */
114 #endif /* CYRUS_SASL */
117 static SSL_CTX
*sslctx
= NULL
;
118 static SSL
*ssl
= NULL
;
119 static BIO
*sbior
= NULL
;
120 static BIO
*sbiow
= NULL
;
121 static BIO
*io
= NULL
;
122 #endif /* TLS_SUPPORT */
124 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
125 #define SASL_MAXRECVBUF 65536
126 static int sm_fgetc(FILE *);
127 static char *sasl_inbuffer
; /* SASL input buffer for encryption */
128 static char *sasl_inptr
; /* Pointer to current inbuf position */
129 static int sasl_inbuflen
; /* Current length of data in inbuf */
131 #define sm_fgetc fgetc
134 static int tls_active
= 0;
136 static char *sm_noreply
= "No reply text given";
137 static char *sm_moreply
= "; ";
139 struct smtp sm_reply
; /* global... */
143 static int doingEHLO
;
144 char *EHLOkeys
[MAXEHLO
+ 1];
149 static int smtp_init (char *, char *, char *, int, int, int, int, int, int,
150 int, char *, char *, int);
151 static int sendmail_init (char *, char *, int, int, int, int, int, int,
152 int, char *, char *);
154 static int rclient (char *, char *);
155 static int sm_ierror (char *fmt
, ...);
156 static int smtalk (int time
, char *fmt
, ...);
157 static int sm_wrecord (char *, int);
158 static int sm_wstream (char *, int);
159 static int sm_werror (void);
160 static int smhear (void);
161 static int sm_rrecord (char *, int *);
162 static int sm_rerror (int);
163 static void alrmser (int);
164 static char *EHLOset (char *);
165 static int sm_fwrite(char *, int);
166 static int sm_fputs(char *);
167 static int sm_fputc(int);
168 static void sm_fflush(void);
169 static int sm_fgets(char *, int, FILE *);
173 * Function prototypes needed for SASL
176 static int sm_auth_sasl(char *, int, char *, char *);
177 #endif /* CYRUS_SASL */
180 sm_init (char *client
, char *server
, char *port
, int watch
, int verbose
,
181 int debug
, int onex
, int queued
, int sasl
, int saslssf
,
182 char *saslmech
, char *user
, int tls
)
184 if (sm_mts
== MTS_SMTP
)
185 return smtp_init (client
, server
, port
, watch
, verbose
,
186 debug
, onex
, queued
, sasl
, saslssf
, saslmech
,
189 return sendmail_init (client
, server
, watch
, verbose
,
190 debug
, onex
, queued
, sasl
, saslssf
, saslmech
,
195 smtp_init (char *client
, char *server
, char *port
, int watch
, int verbose
,
196 int debug
, int onex
, int queued
,
197 int sasl
, int saslssf
, char *saslmech
, char *user
, int tls
)
201 #else /* CYRUS_SASL */
203 NMH_UNUSED (saslssf
);
204 NMH_UNUSED (saslmech
);
206 #endif /* CYRUS_SASL */
207 int result
, sd1
, sd2
;
212 sm_verbose
= verbose
;
215 if (sm_rfp
!= NULL
&& sm_wfp
!= NULL
)
218 if (client
== NULL
|| *client
== '\0') {
222 client
= LocalName(1); /* no clientname -> LocalName */
227 * Last-ditch check just in case client still isn't set to anything
230 if (client
== NULL
|| *client
== '\0')
231 client
= "localhost";
233 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
234 sasl_inbuffer
= malloc(SASL_MAXRECVBUF
);
236 return sm_ierror("Unable to allocate %d bytes for read buffer",
238 #endif /* CYRUS_SASL || TLS_SUPPORT */
240 if ((sd1
= rclient (server
, port
)) == NOTOK
)
243 if ((sd2
= dup (sd1
)) == NOTOK
) {
245 return sm_ierror ("unable to dup");
248 SIGNAL (SIGALRM
, alrmser
);
249 SIGNAL (SIGPIPE
, SIG_IGN
);
251 if ((sm_rfp
= fdopen (sd1
, "r")) == NULL
252 || (sm_wfp
= fdopen (sd2
, "w")) == NULL
) {
255 sm_rfp
= sm_wfp
= NULL
;
256 return sm_ierror ("unable to fdopen");
276 * Give EHLO or HELO command
280 result
= smtalk (SM_HELO
, "EHLO %s", client
);
283 if (result
>= 500 && result
<= 599)
284 result
= smtalk (SM_HELO
, "HELO %s", client
);
293 * If the user requested TLS support, then try to do the STARTTLS command
294 * as part of the initial dialog. Assuming this works, we then need to
295 * restart the EHLO dialog after TLS negotiation is complete.
301 if (! EHLOset("STARTTLS")) {
303 return sm_ierror("SMTP server does not support TLS");
306 result
= smtalk(SM_HELO
, "STARTTLS");
314 * Okay, the other side should be waiting for us to start TLS
315 * negotiation. Oblige them.
322 SSL_load_error_strings();
324 method
= TLSv1_client_method(); /* Not sure about this */
326 sslctx
= SSL_CTX_new(method
);
330 return sm_ierror("Unable to initialize OpenSSL context: %s",
331 ERR_error_string(ERR_get_error(), NULL
));
335 ssl
= SSL_new(sslctx
);
339 return sm_ierror("Unable to create SSL connection: %s",
340 ERR_error_string(ERR_get_error(), NULL
));
343 sbior
= BIO_new_socket(fileno(sm_rfp
), BIO_NOCLOSE
);
344 sbiow
= BIO_new_socket(fileno(sm_wfp
), BIO_NOCLOSE
);
346 if (sbior
== NULL
|| sbiow
== NULL
) {
348 return sm_ierror("Unable to create BIO endpoints: %s",
349 ERR_error_string(ERR_get_error(), NULL
));
352 SSL_set_bio(ssl
, sbior
, sbiow
);
353 SSL_set_connect_state(ssl
);
356 * Set up a BIO to handle buffering for us
359 io
= BIO_new(BIO_f_buffer());
363 return sm_ierror("Unable to create a buffer BIO: %s",
364 ERR_error_string(ERR_get_error(), NULL
));
367 ssl_bio
= BIO_new(BIO_f_ssl());
371 return sm_ierror("Unable to create a SSL BIO: %s",
372 ERR_error_string(ERR_get_error(), NULL
));
375 BIO_set_ssl(ssl_bio
, ssl
, BIO_CLOSE
);
376 BIO_push(io
, ssl_bio
);
379 * Try doing the handshake now
382 if (BIO_do_handshake(io
) < 1) {
384 return sm_ierror("Unable to negotiate SSL connection: %s",
385 ERR_error_string(ERR_get_error(), NULL
));
389 SSL_CIPHER
*cipher
= SSL_get_current_cipher(ssl
);
390 printf("SSL negotiation successful: %s(%d) %s\n",
391 SSL_CIPHER_get_name(cipher
),
392 SSL_CIPHER_get_bits(cipher
, NULL
),
393 SSL_CIPHER_get_version(cipher
));
400 result
= smtalk (SM_HELO
, "EHLO %s", client
);
408 #else /* TLS_SUPPORT */
410 #endif /* TLS_SUPPORT */
414 * If the user asked for SASL, then check to see if the SMTP server
415 * supports it. Otherwise, error out (because the SMTP server
416 * might have been spoofed; we don't want to just silently not
421 if (! (server_mechs
= EHLOset("AUTH"))) {
423 return sm_ierror("SMTP server does not support SASL");
426 if (saslmech
&& stringdex(saslmech
, server_mechs
) == -1) {
428 return sm_ierror("Requested SASL mech \"%s\" is not in the "
429 "list of supported mechanisms:\n%s",
430 saslmech
, server_mechs
);
433 if (sm_auth_sasl(user
, saslssf
, saslmech
? saslmech
: server_mechs
,
439 #endif /* CYRUS_SASL */
442 if (watch
&& EHLOset ("XVRB"))
443 smtalk (SM_HELO
, "VERB on");
444 if (onex
&& EHLOset ("XONE"))
445 smtalk (SM_HELO
, "ONEX");
446 if (queued
&& EHLOset ("XQUE"))
447 smtalk (SM_HELO
, "QUED");
453 sendmail_init (char *client
, char *server
, int watch
, int verbose
,
454 int debug
, int onex
, int queued
,
455 int sasl
, int saslssf
, char *saslmech
, char *user
)
459 #else /* CYRUS_SASL */
462 NMH_UNUSED (saslssf
);
463 NMH_UNUSED (saslmech
);
465 #endif /* CYRUS_SASL */
466 unsigned int i
, result
, vecp
;
473 sm_verbose
= verbose
;
475 if (sm_rfp
!= NULL
&& sm_wfp
!= NULL
)
478 if (client
== NULL
|| *client
== '\0') {
482 client
= LocalName(1); /* no clientname -> LocalName */
486 * Last-ditch check just in case client still isn't set to anything
489 if (client
== NULL
|| *client
== '\0')
490 client
= "localhost";
492 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
493 sasl_inbuffer
= malloc(SASL_MAXRECVBUF
);
495 return sm_ierror("Unable to allocate %d bytes for read buffer",
497 #endif /* CYRUS_SASL || TLS_SUPPORT */
499 if (pipe (pdi
) == NOTOK
)
500 return sm_ierror ("no pipes");
501 if (pipe (pdo
) == NOTOK
) {
504 return sm_ierror ("no pipes");
507 for (i
= 0; (sm_child
= fork ()) == NOTOK
&& i
< 5; i
++)
516 return sm_ierror ("unable to fork");
519 if (pdo
[0] != fileno (stdin
))
520 dup2 (pdo
[0], fileno (stdin
));
521 if (pdi
[1] != fileno (stdout
))
522 dup2 (pdi
[1], fileno (stdout
));
523 if (pdi
[1] != fileno (stderr
))
524 dup2 (pdi
[1], fileno (stderr
));
525 for (i
= fileno (stderr
) + 1; i
< NBITS
; i
++)
529 vec
[vecp
++] = r1bindex (sendmail
, '/');
531 vec
[vecp
++] = watch
? "-odi" : queued
? "-odq" : "-odb";
532 vec
[vecp
++] = "-oem";
537 # endif /* not RAND */
542 execvp (sendmail
, vec
);
543 fprintf (stderr
, "unable to exec ");
545 _exit (-1); /* NOTREACHED */
548 SIGNAL (SIGALRM
, alrmser
);
549 SIGNAL (SIGPIPE
, SIG_IGN
);
553 if ((sm_rfp
= fdopen (pdi
[0], "r")) == NULL
554 || (sm_wfp
= fdopen (pdo
[1], "w")) == NULL
) {
557 sm_rfp
= sm_wfp
= NULL
;
558 return sm_ierror ("unable to fdopen");
574 result
= smtalk (SM_HELO
, "EHLO %s", client
);
577 if (500 <= result
&& result
<= 599)
578 result
= smtalk (SM_HELO
, "HELO %s", client
);
591 * If the user asked for SASL, then check to see if the SMTP server
592 * supports it. Otherwise, error out (because the SMTP server
593 * might have been spoofed; we don't want to just silently not
598 if (! (server_mechs
= EHLOset("AUTH"))) {
600 return sm_ierror("SMTP server does not support SASL");
603 if (saslmech
&& stringdex(saslmech
, server_mechs
) == -1) {
605 return sm_ierror("Requested SASL mech \"%s\" is not in the "
606 "list of supported mechanisms:\n%s",
607 saslmech
, server_mechs
);
610 if (sm_auth_sasl(user
, saslssf
, saslmech
? saslmech
: server_mechs
,
616 #endif /* CYRUS_SASL */
619 smtalk (SM_HELO
, "ONEX");
621 smtalk (SM_HELO
, "VERB on");
628 rclient (char *server
, char *service
)
631 char response
[BUFSIZ
];
633 if ((sd
= client (server
, service
, response
, sizeof(response
),
637 sm_ierror ("%s", response
);
642 sm_winit (int mode
, char *from
)
644 char *smtpcom
= NULL
;
664 /* Hopefully, we do not get here. */
668 switch (smtalk (SM_MAIL
, "%s FROM:<%s>", smtpcom
, from
)) {
685 sm_wadr (char *mbox
, char *host
, char *path
)
687 switch (smtalk (SM_RCPT
, host
&& *host
? "RCPT TO:<%s%s@%s>"
689 path
? path
: "", mbox
, host
)) {
699 #endif /* SENDMAILBUG */
724 switch (smtalk (SM_DATA
, "DATA")) {
733 #endif /* SENDMAILBUG */
750 sm_wtxt (char *buffer
, int len
)
756 result
= sm_wstream (buffer
, len
);
759 return (result
== NOTOK
? RP_BHST
: RP_OK
);
766 if (sm_wstream ((char *) NULL
, 0) == NOTOK
)
769 switch (smtalk (SM_DOT
+ 3 * sm_addrs
, ".")) {
777 #endif /* SENDMAILBUG */
795 if (sm_mts
== MTS_SENDMAIL
) {
806 if (sm_rfp
== NULL
&& sm_wfp
== NULL
)
811 smtalk (SM_QUIT
, "QUIT");
815 sm_note
.code
= sm_reply
.code
;
816 sm_note
.length
= sm_reply
.length
;
817 memcpy (sm_note
.text
, sm_reply
.text
, sm_reply
.length
+ 1);/* fall */
819 if (smtalk (SM_RSET
, "RSET") == 250 && type
== DONE
)
821 if (sm_mts
== MTS_SMTP
)
822 smtalk (SM_QUIT
, "QUIT");
824 kill (sm_child
, SIGKILL
);
829 sm_reply
.code
= sm_note
.code
;
830 sm_reply
.length
= sm_note
.length
;
831 memcpy (sm_reply
.text
, sm_note
.text
, sm_note
.length
+ 1);
838 BIO_ssl_shutdown(io
);
841 #endif /* TLS_SUPPORT */
843 if (sm_rfp
!= NULL
) {
848 if (sm_wfp
!= NULL
) {
854 if (sm_mts
== MTS_SMTP
) {
859 if (sasl_outbuffer
) {
860 free(sasl_outbuffer
);
865 #endif /* CYRUS_SASL */
867 status
= pidwait (sm_child
, OK
);
871 sm_rfp
= sm_wfp
= NULL
;
872 return (status
? RP_BHST
: RP_OK
);
877 * This function implements SASL authentication for SMTP. If this function
878 * completes successfully, then authentication is successful and we've
879 * (optionally) negotiated a security layer.
882 sm_auth_sasl(char *user
, int saslssf
, char *mechlist
, char *inhost
)
885 unsigned int buflen
, outlen
;
886 char *buf
, outbuf
[BUFSIZ
], host
[NI_MAXHOST
];
887 const char *chosen_mech
;
888 sasl_security_properties_t secprops
;
893 * Initialize the callback contexts
897 user
= getusername();
899 callbacks
[SM_SASL_N_CB_USER
].context
= user
;
900 callbacks
[SM_SASL_N_CB_AUTHNAME
].context
= user
;
903 * This is a _bit_ of a hack ... but if the hostname wasn't supplied
904 * to us on the command line, then call getpeername and do a
905 * reverse-address lookup on the IP address to get the name.
908 memset(host
, 0, sizeof(host
));
911 struct sockaddr_storage sin
;
912 socklen_t len
= sizeof(sin
);
915 if (getpeername(fileno(sm_wfp
), (struct sockaddr
*) &sin
, &len
) < 0) {
916 sm_ierror("getpeername on SMTP socket failed: %s",
921 result
= getnameinfo((struct sockaddr
*) &sin
, len
, host
, sizeof(host
),
922 NULL
, 0, NI_NAMEREQD
);
924 sm_ierror("Unable to look up name of connected host: %s",
925 gai_strerror(result
));
929 strncpy(host
, inhost
, sizeof(host
) - 1);
932 sasl_pw_context
[0] = host
;
933 sasl_pw_context
[1] = user
;
935 callbacks
[SM_SASL_N_CB_PASS
].context
= sasl_pw_context
;
937 result
= sasl_client_init(callbacks
);
939 if (result
!= SASL_OK
) {
940 sm_ierror("SASL library initialization failed: %s",
941 sasl_errstring(result
, NULL
, NULL
));
945 result
= sasl_client_new("smtp", host
, NULL
, NULL
, NULL
, 0, &conn
);
947 if (result
!= SASL_OK
) {
948 sm_ierror("SASL client initialization failed: %s",
949 sasl_errstring(result
, NULL
, NULL
));
954 * Initialize the security properties. But if TLS is active, then
955 * don't negotiate encryption here.
958 memset(&secprops
, 0, sizeof(secprops
));
959 secprops
.maxbufsize
= SASL_MAXRECVBUF
;
961 tls_active
? 0 : (saslssf
!= -1 ? (unsigned int) saslssf
: UINT_MAX
);
963 result
= sasl_setprop(conn
, SASL_SEC_PROPS
, &secprops
);
965 if (result
!= SASL_OK
) {
966 sm_ierror("SASL security property initialization failed: %s",
967 sasl_errstring(result
, NULL
, NULL
));
972 * Start the actual protocol. Feed the mech list into the library
973 * and get out a possible initial challenge
976 result
= sasl_client_start(conn
, mechlist
, NULL
, (const char **) &buf
,
977 &buflen
, (const char **) &chosen_mech
);
979 if (result
!= SASL_OK
&& result
!= SASL_CONTINUE
) {
980 sm_ierror("SASL client start failed: %s", sasl_errdetail(conn
));
985 * If we got an initial challenge, send it as part of the AUTH
986 * command; otherwise, just send a plain AUTH command.
990 status
= sasl_encode64(buf
, buflen
, outbuf
, sizeof(outbuf
), NULL
);
991 if (status
!= SASL_OK
) {
992 sm_ierror("SASL base64 encode failed: %s",
993 sasl_errstring(status
, NULL
, NULL
));
997 status
= smtalk(SM_AUTH
, "AUTH %s %s", chosen_mech
, outbuf
);
999 status
= smtalk(SM_AUTH
, "AUTH %s", chosen_mech
);
1002 * Now we loop until we either fail, get a SASL_OK, or a 235
1003 * response code. Receive the challenges and process them until
1007 while (result
== SASL_CONTINUE
) {
1010 * If we get a 235 response, that means authentication has
1011 * succeeded and we need to break out of the loop (yes, even if
1012 * we still get SASL_CONTINUE from sasl_client_step()).
1014 * Otherwise, if we get a message that doesn't seem to be a
1015 * valid response, then abort
1020 else if (status
< 300 || status
> 399)
1024 * Special case; a zero-length response from the SMTP server
1025 * is returned as a single =. If we get that, then set buflen
1026 * to be zero. Otherwise, just decode the response.
1029 if (strcmp("=", sm_reply
.text
) == 0) {
1032 result
= sasl_decode64(sm_reply
.text
, sm_reply
.length
,
1033 outbuf
, sizeof(outbuf
), &outlen
);
1035 if (result
!= SASL_OK
) {
1036 smtalk(SM_AUTH
, "*");
1037 sm_ierror("SASL base64 decode failed: %s",
1038 sasl_errstring(result
, NULL
, NULL
));
1043 result
= sasl_client_step(conn
, outbuf
, outlen
, NULL
,
1044 (const char **) &buf
, &buflen
);
1046 if (result
!= SASL_OK
&& result
!= SASL_CONTINUE
) {
1047 smtalk(SM_AUTH
, "*");
1048 sm_ierror("SASL client negotiation failed: %s",
1049 sasl_errstring(result
, NULL
, NULL
));
1053 status
= sasl_encode64(buf
, buflen
, outbuf
, sizeof(outbuf
), NULL
);
1055 if (status
!= SASL_OK
) {
1056 smtalk(SM_AUTH
, "*");
1057 sm_ierror("SASL base64 encode failed: %s",
1058 sasl_errstring(status
, NULL
, NULL
));
1062 status
= smtalk(SM_AUTH
, outbuf
);
1066 * Make sure that we got the correct response
1069 if (status
< 200 || status
> 299)
1073 * We _should_ have completed the authentication successfully.
1074 * Get a few properties from the authentication exchange.
1077 result
= sasl_getprop(conn
, SASL_MAXOUTBUF
, (const void **) &outbufmax
);
1079 if (result
!= SASL_OK
) {
1080 sm_ierror("Cannot retrieve SASL negotiated output buffer size: %s",
1081 sasl_errstring(result
, NULL
, NULL
));
1085 maxoutbuf
= *outbufmax
;
1087 result
= sasl_getprop(conn
, SASL_SSF
, (const void **) &ssf
);
1091 if (result
!= SASL_OK
) {
1092 sm_ierror("Cannot retrieve SASL negotiated security strength "
1093 "factor: %s", sasl_errstring(result
, NULL
, NULL
));
1098 sasl_outbuffer
= malloc(maxoutbuf
);
1100 if (sasl_outbuffer
== NULL
) {
1101 sm_ierror("Unable to allocate %d bytes for SASL output "
1102 "buffer", maxoutbuf
);
1107 sasl_inptr
= sasl_inbuffer
;
1109 sasl_outbuffer
= NULL
;
1110 /* Don't NULL out sasl_inbuffer because it could be used in
1120 * Our callback functions to feed data to the SASL library
1124 sm_get_user(void *context
, int id
, const char **result
, unsigned *len
)
1126 char *user
= (char *) context
;
1128 if (! result
|| ((id
!= SASL_CB_USER
) && (id
!= SASL_CB_AUTHNAME
)))
1129 return SASL_BADPARAM
;
1133 *len
= strlen(user
);
1139 sm_get_pass(sasl_conn_t
*conn
, void *context
, int id
,
1140 sasl_secret_t
**psecret
)
1144 char **pw_context
= (char **) context
;
1148 if (! psecret
|| id
!= SASL_CB_PASS
)
1149 return SASL_BADPARAM
;
1151 ruserpass(pw_context
[0], &(pw_context
[1]), &pass
);
1155 *psecret
= (sasl_secret_t
*) malloc(sizeof(sasl_secret_t
) + len
);
1162 (*psecret
)->len
= len
;
1163 strcpy((char *) (*psecret
)->data
, pass
);
1168 #endif /* CYRUS_SASL */
1171 sm_ierror (char *fmt
, ...)
1176 vsnprintf (sm_reply
.text
, sizeof(sm_reply
.text
), fmt
, ap
);
1179 sm_reply
.length
= strlen (sm_reply
.text
);
1180 sm_reply
.code
= NOTOK
;
1186 smtalk (int time
, char *fmt
, ...)
1190 char buffer
[BUFSIZ
];
1193 vsnprintf (buffer
, sizeof(buffer
), fmt
, ap
);
1198 printf("(sasl-encrypted) ");
1200 printf("(tls-encrypted) ");
1201 printf ("=> %s\n", buffer
);
1206 alarm ((unsigned) time
);
1207 if ((result
= sm_wrecord (buffer
, strlen (buffer
))) != NOTOK
)
1216 * write the buffer to the open SMTP channel
1220 sm_wrecord (char *buffer
, int len
)
1223 return sm_werror ();
1225 sm_fwrite (buffer
, len
);
1229 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1234 sm_wstream (char *buffer
, int len
)
1237 static char lc
= '\0';
1240 return sm_werror ();
1242 if (buffer
== NULL
&& len
== 0) {
1246 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1249 for (bp
= buffer
; len
> 0; bp
++, len
--) {
1258 sm_fputc ('.');/* FALL THROUGH */
1263 if (ferror (sm_wfp
))
1264 return sm_werror ();
1269 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1273 * Write out to the network, but do buffering for SASL (if enabled)
1277 sm_fwrite(char *buffer
, int len
)
1281 unsigned int outputlen
;
1283 if (sasl_complete
== 0 || sasl_ssf
== 0) {
1284 #endif /* CYRUS_SASL */
1289 ret
= BIO_write(io
, buffer
, len
);
1292 sm_ierror("TLS error during write: %s",
1293 ERR_error_string(ERR_get_error(), NULL
));
1297 #endif /* TLS_SUPPORT */
1298 fwrite(buffer
, sizeof(*buffer
), len
, sm_wfp
);
1301 while (len
>= maxoutbuf
- sasl_outbuflen
) {
1302 memcpy(sasl_outbuffer
+ sasl_outbuflen
, buffer
,
1303 maxoutbuf
- sasl_outbuflen
);
1304 len
-= maxoutbuf
- sasl_outbuflen
;
1307 if (sasl_encode(conn
, sasl_outbuffer
, maxoutbuf
,
1308 &output
, &outputlen
) != SASL_OK
) {
1309 sm_ierror("Unable to SASL encode connection data: %s",
1310 sasl_errdetail(conn
));
1314 fwrite(output
, sizeof(*output
), outputlen
, sm_wfp
);
1318 memcpy(sasl_outbuffer
+ sasl_outbuflen
, buffer
, len
);
1319 sasl_outbuflen
+= len
;
1322 #endif /* CYRUS_SASL */
1323 return ferror(sm_wfp
) ? NOTOK
: RP_OK
;
1327 * Convenience functions to replace occurences of fputs() and fputc()
1331 sm_fputs(char *buffer
)
1333 return sm_fwrite(buffer
, strlen(buffer
));
1341 return sm_fwrite(&h
, 1);
1345 * Flush out any pending data on the connection
1353 unsigned int outputlen
;
1356 if (sasl_complete
== 1 && sasl_ssf
> 0 && sasl_outbuflen
> 0) {
1357 result
= sasl_encode(conn
, sasl_outbuffer
, sasl_outbuflen
,
1358 &output
, &outputlen
);
1359 if (result
!= SASL_OK
) {
1360 sm_ierror("Unable to SASL encode connection data: %s",
1361 sasl_errdetail(conn
));
1365 fwrite(output
, sizeof(*output
), outputlen
, sm_wfp
);
1368 #endif /* CYRUS_SASL */
1372 (void) BIO_flush(io
);
1374 #endif /* TLS_SUPPORT */
1383 strlen (strcpy (sm_reply
.text
, sm_wfp
== NULL
? "no socket opened"
1384 : sm_alarmed
? "write to socket timed out"
1385 : "error writing to socket"));
1387 return (sm_reply
.code
= NOTOK
);
1394 int i
, code
, cont
, bc
= 0, rc
, more
;
1397 char **ehlo
= NULL
, buffer
[BUFSIZ
];
1400 static int at_least_once
= 0;
1402 if (at_least_once
) {
1405 for (ehlo
= EHLOkeys
; *ehlo
; ehlo
++) {
1419 sm_reply
.length
= 0;
1420 sm_reply
.text
[0] = 0;
1422 rc
= sizeof(sm_reply
.text
) - 1;
1424 for (more
= FALSE
; sm_rrecord ((char *) (bp
= (unsigned char *) buffer
),
1428 printf("(sasl-decrypted) ");
1430 printf("(tls-decrypted) ");
1431 printf ("<= %s\n", buffer
);
1436 && strncmp (buffer
, "250", sizeof("250") - 1) == 0
1437 && (buffer
[3] == '-' || doingEHLO
== 2)
1439 if (doingEHLO
== 2) {
1440 if ((*ehlo
= malloc ((size_t) (strlen (buffer
+ 4) + 1)))) {
1441 strcpy (*ehlo
++, buffer
+ 4);
1443 if (ehlo
>= EHLOkeys
+ MAXEHLO
)
1453 for (; bc
> 0 && (!isascii (*bp
) || !isdigit (*bp
)); bp
++, bc
--)
1457 code
= atoi ((char *) bp
);
1459 for (; bc
> 0 && isspace (*bp
); bp
++, bc
--)
1461 if (bc
> 0 && *bp
== '-') {
1464 for (; bc
> 0 && isspace (*bp
); bp
++, bc
--)
1469 if (code
!= sm_reply
.code
|| cont
)
1473 sm_reply
.code
= code
;
1476 /* can never fail to 0-terminate because of size of buffer vs fixed string */
1477 strncpy (buffer
, sm_noreply
, sizeof(buffer
));
1478 bp
= (unsigned char *) buffer
;
1479 bc
= strlen (sm_noreply
);
1483 if ((i
= min (bc
, rc
)) > 0) {
1487 i
= strlen(sm_moreply
);
1488 if (more
&& rc
> i
+ 1) {
1489 memcpy (rp
, sm_moreply
, i
); /* safe because of check in if() */
1496 if (sm_reply
.code
< 100) {
1498 printf ("%s\n", sm_reply
.text
);
1504 sm_reply
.length
= rp
- sm_reply
.text
;
1505 sm_reply
.text
[sm_reply
.length
] = 0;
1506 return sm_reply
.code
;
1513 sm_rrecord (char *buffer
, int *len
)
1518 return sm_rerror(0);
1520 buffer
[*len
= 0] = 0;
1522 if ((retval
= sm_fgets (buffer
, BUFSIZ
, sm_rfp
)) != RP_OK
)
1524 *len
= strlen (buffer
);
1525 /* *len should be >0 except on EOF, but check for safety's sake */
1527 return sm_rerror (RP_EOF
);
1528 if (buffer
[*len
- 1] != '\n')
1529 while ((retval
= sm_fgetc (sm_rfp
)) != '\n' && retval
!= EOF
&&
1533 if ((*len
> 1) && (buffer
[*len
- 2] == '\r'))
1542 * Our version of fgets, which calls our private fgetc function
1546 sm_fgets(char *buffer
, int size
, FILE *f
)
1560 } while (size
> 1 && c
!= '\n');
1568 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
1570 * Read from the network, but do SASL or TLS encryption
1576 char tmpbuf
[BUFSIZ
], *retbuf
;
1577 unsigned int retbufsize
= 0;
1581 * If we have leftover data, return it
1584 if (sasl_inbuflen
) {
1586 return (int) *sasl_inptr
++;
1590 * If not, read from the network until we have some data to return
1593 while (retbufsize
== 0) {
1597 cc
= SSL_read(ssl
, tmpbuf
, sizeof(tmpbuf
));
1600 result
= SSL_get_error(ssl
, cc
);
1602 if (result
!= SSL_ERROR_ZERO_RETURN
) {
1603 sm_ierror("TLS peer aborted connection");
1610 sm_ierror("SSL_read failed: %s",
1611 ERR_error_string(ERR_get_error(), NULL
));
1615 #endif /* TLS_SUPPORT */
1617 cc
= read(fileno(f
), tmpbuf
, sizeof(tmpbuf
));
1623 sm_ierror("Unable to read from network: %s", strerror(errno
));
1628 * Don't call sasl_decode unless sasl is complete and we have
1629 * encryption working
1633 if (sasl_complete
== 0 || sasl_ssf
== 0) {
1637 result
= sasl_decode(conn
, tmpbuf
, cc
, (const char **) &retbuf
,
1640 if (result
!= SASL_OK
) {
1641 sm_ierror("Unable to decode SASL network data: %s",
1642 sasl_errdetail(conn
));
1646 #else /* ! CYRUS_SASL */
1649 #endif /* CYRUS_SASL */
1652 if (retbufsize
> SASL_MAXRECVBUF
) {
1653 sm_ierror("Received data (%d bytes) is larger than the buffer "
1654 "size (%d bytes)", retbufsize
, SASL_MAXRECVBUF
);
1658 memcpy(sasl_inbuffer
, retbuf
, retbufsize
);
1659 sasl_inptr
= sasl_inbuffer
+ 1;
1660 sasl_inbuflen
= retbufsize
- 1;
1662 return (int) sasl_inbuffer
[0];
1664 #endif /* CYRUS_SASL || TLS_SUPPORT */
1669 if (sm_mts
== MTS_SMTP
)
1671 strlen (strcpy (sm_reply
.text
, sm_rfp
== NULL
? "no socket opened"
1672 : sm_alarmed
? "read from socket timed out"
1673 : rc
== RP_EOF
? "premature end-of-file on socket"
1674 : "error reading from socket"));
1677 strlen (strcpy (sm_reply
.text
, sm_rfp
== NULL
? "no pipe opened"
1678 : sm_alarmed
? "read from pipe timed out"
1679 : rc
== RP_EOF
? "premature end-of-file on pipe"
1680 : "error reading from pipe"));
1682 return (sm_reply
.code
= NOTOK
);
1691 #ifndef RELIABLE_SIGNALS
1692 SIGNAL (SIGALRM
, alrmser
);
1697 printf ("timed out...\n");
1704 rp_string (int code
)
1707 static char buffer
[BUFSIZ
];
1709 switch (sm_reply
.code
!= NOTOK
? code
: NOTOK
) {
1729 snprintf (buffer
, sizeof(buffer
), "[%s] %s", text
, sm_reply
.text
);
1749 snprintf (buffer
, sizeof(buffer
), "[%s] %3d %s",
1750 text
, sm_reply
.code
, sm_reply
.text
);
1762 for (ehlo
= EHLOkeys
; *ehlo
; ehlo
++) {
1764 if (strncmp (ep
, s
, len
) == 0) {
1765 for (ep
+= len
; *ep
== ' '; ep
++)