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 char *, char *, int);
151 static int sendmail_init (char *, char *, int, int, int, int, int, int,
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 *, 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
, char *saslmech
,
184 if (sm_mts
== MTS_SMTP
)
185 return smtp_init (client
, server
, port
, watch
, verbose
,
186 debug
, onex
, queued
, sasl
, saslmech
, user
, tls
);
188 return sendmail_init (client
, server
, watch
, verbose
,
189 debug
, onex
, queued
, sasl
, saslmech
, user
);
193 smtp_init (char *client
, char *server
, char *port
, int watch
, int verbose
,
194 int debug
, int onex
, int queued
,
195 int sasl
, char *saslmech
, char *user
, int tls
)
199 #else /* CYRUS_SASL */
201 NMH_UNUSED (saslmech
);
203 #endif /* CYRUS_SASL */
204 int result
, sd1
, sd2
;
209 sm_verbose
= verbose
;
212 if (sm_rfp
!= NULL
&& sm_wfp
!= NULL
)
215 if (client
== NULL
|| *client
== '\0') {
219 client
= LocalName(); /* no clientname -> LocalName */
224 * Last-ditch check just in case client still isn't set to anything
227 if (client
== NULL
|| *client
== '\0')
228 client
= "localhost";
230 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
231 sasl_inbuffer
= malloc(SASL_MAXRECVBUF
);
233 return sm_ierror("Unable to allocate %d bytes for read buffer",
235 #endif /* CYRUS_SASL || TLS_SUPPORT */
237 if ((sd1
= rclient (server
, port
)) == NOTOK
)
240 if ((sd2
= dup (sd1
)) == NOTOK
) {
242 return sm_ierror ("unable to dup");
245 SIGNAL (SIGALRM
, alrmser
);
246 SIGNAL (SIGPIPE
, SIG_IGN
);
248 if ((sm_rfp
= fdopen (sd1
, "r")) == NULL
249 || (sm_wfp
= fdopen (sd2
, "w")) == NULL
) {
252 sm_rfp
= sm_wfp
= NULL
;
253 return sm_ierror ("unable to fdopen");
273 * Give EHLO or HELO command
277 result
= smtalk (SM_HELO
, "EHLO %s", client
);
280 if (result
>= 500 && result
<= 599)
281 result
= smtalk (SM_HELO
, "HELO %s", client
);
290 * If the user requested TLS support, then try to do the STARTTLS command
291 * as part of the initial dialog. Assuming this works, we then need to
292 * restart the EHLO dialog after TLS negotiation is complete.
298 if (! EHLOset("STARTTLS")) {
300 return sm_ierror("SMTP server does not support TLS");
303 result
= smtalk(SM_HELO
, "STARTTLS");
311 * Okay, the other side should be waiting for us to start TLS
312 * negotiation. Oblige them.
319 SSL_load_error_strings();
321 method
= TLSv1_client_method(); /* Not sure about this */
323 sslctx
= SSL_CTX_new(method
);
327 return sm_ierror("Unable to initialize OpenSSL context: %s",
328 ERR_error_string(ERR_get_error(), NULL
));
332 ssl
= SSL_new(sslctx
);
336 return sm_ierror("Unable to create SSL connection: %s",
337 ERR_error_string(ERR_get_error(), NULL
));
340 sbior
= BIO_new_socket(fileno(sm_rfp
), BIO_NOCLOSE
);
341 sbiow
= BIO_new_socket(fileno(sm_wfp
), BIO_NOCLOSE
);
343 if (sbior
== NULL
|| sbiow
== NULL
) {
345 return sm_ierror("Unable to create BIO endpoints: %s",
346 ERR_error_string(ERR_get_error(), NULL
));
349 SSL_set_bio(ssl
, sbior
, sbiow
);
350 SSL_set_connect_state(ssl
);
353 * Set up a BIO to handle buffering for us
356 io
= BIO_new(BIO_f_buffer());
360 return sm_ierror("Unable to create a buffer BIO: %s",
361 ERR_error_string(ERR_get_error(), NULL
));
364 ssl_bio
= BIO_new(BIO_f_ssl());
368 return sm_ierror("Unable to create a SSL BIO: %s",
369 ERR_error_string(ERR_get_error(), NULL
));
372 BIO_set_ssl(ssl_bio
, ssl
, BIO_CLOSE
);
373 BIO_push(io
, ssl_bio
);
376 * Try doing the handshake now
379 if (BIO_do_handshake(io
) < 1) {
381 return sm_ierror("Unable to negotiate SSL connection: %s",
382 ERR_error_string(ERR_get_error(), NULL
));
386 SSL_CIPHER
*cipher
= SSL_get_current_cipher(ssl
);
387 printf("SSL negotiation successful: %s(%d) %s\n",
388 SSL_CIPHER_get_name(cipher
),
389 SSL_CIPHER_get_bits(cipher
, NULL
),
390 SSL_CIPHER_get_version(cipher
));
397 result
= smtalk (SM_HELO
, "EHLO %s", client
);
405 #else /* TLS_SUPPORT */
407 #endif /* TLS_SUPPORT */
411 * If the user asked for SASL, then check to see if the SMTP server
412 * supports it. Otherwise, error out (because the SMTP server
413 * might have been spoofed; we don't want to just silently not
418 if (! (server_mechs
= EHLOset("AUTH"))) {
420 return sm_ierror("SMTP server does not support SASL");
423 if (saslmech
&& stringdex(saslmech
, server_mechs
) == -1) {
425 return sm_ierror("Requested SASL mech \"%s\" is not in the "
426 "list of supported mechanisms:\n%s",
427 saslmech
, server_mechs
);
430 if (sm_auth_sasl(user
, saslmech
? saslmech
: server_mechs
,
436 #endif /* CYRUS_SASL */
439 if (watch
&& EHLOset ("XVRB"))
440 smtalk (SM_HELO
, "VERB on");
441 if (onex
&& EHLOset ("XONE"))
442 smtalk (SM_HELO
, "ONEX");
443 if (queued
&& EHLOset ("XQUE"))
444 smtalk (SM_HELO
, "QUED");
450 sendmail_init (char *client
, char *server
, int watch
, int verbose
,
451 int debug
, int onex
, int queued
,
452 int sasl
, char *saslmech
, char *user
)
456 #else /* CYRUS_SASL */
459 NMH_UNUSED (saslmech
);
461 #endif /* CYRUS_SASL */
462 unsigned int i
, result
, vecp
;
469 sm_verbose
= verbose
;
471 if (sm_rfp
!= NULL
&& sm_wfp
!= NULL
)
474 if (client
== NULL
|| *client
== '\0') {
478 client
= LocalName(); /* no clientname -> LocalName */
482 * Last-ditch check just in case client still isn't set to anything
485 if (client
== NULL
|| *client
== '\0')
486 client
= "localhost";
488 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
489 sasl_inbuffer
= malloc(SASL_MAXRECVBUF
);
491 return sm_ierror("Unable to allocate %d bytes for read buffer",
493 #endif /* CYRUS_SASL || TLS_SUPPORT */
495 if (pipe (pdi
) == NOTOK
)
496 return sm_ierror ("no pipes");
497 if (pipe (pdo
) == NOTOK
) {
500 return sm_ierror ("no pipes");
503 for (i
= 0; (sm_child
= fork ()) == NOTOK
&& i
< 5; i
++)
512 return sm_ierror ("unable to fork");
515 if (pdo
[0] != fileno (stdin
))
516 dup2 (pdo
[0], fileno (stdin
));
517 if (pdi
[1] != fileno (stdout
))
518 dup2 (pdi
[1], fileno (stdout
));
519 if (pdi
[1] != fileno (stderr
))
520 dup2 (pdi
[1], fileno (stderr
));
521 for (i
= fileno (stderr
) + 1; i
< NBITS
; i
++)
525 vec
[vecp
++] = r1bindex (sendmail
, '/');
527 vec
[vecp
++] = watch
? "-odi" : queued
? "-odq" : "-odb";
528 vec
[vecp
++] = "-oem";
533 # endif /* not RAND */
538 execvp (sendmail
, vec
);
539 fprintf (stderr
, "unable to exec ");
541 _exit (-1); /* NOTREACHED */
544 SIGNAL (SIGALRM
, alrmser
);
545 SIGNAL (SIGPIPE
, SIG_IGN
);
549 if ((sm_rfp
= fdopen (pdi
[0], "r")) == NULL
550 || (sm_wfp
= fdopen (pdo
[1], "w")) == NULL
) {
553 sm_rfp
= sm_wfp
= NULL
;
554 return sm_ierror ("unable to fdopen");
570 result
= smtalk (SM_HELO
, "EHLO %s", client
);
573 if (500 <= result
&& result
<= 599)
574 result
= smtalk (SM_HELO
, "HELO %s", client
);
587 * If the user asked for SASL, then check to see if the SMTP server
588 * supports it. Otherwise, error out (because the SMTP server
589 * might have been spoofed; we don't want to just silently not
594 if (! (server_mechs
= EHLOset("AUTH"))) {
596 return sm_ierror("SMTP server does not support SASL");
599 if (saslmech
&& stringdex(saslmech
, server_mechs
) == -1) {
601 return sm_ierror("Requested SASL mech \"%s\" is not in the "
602 "list of supported mechanisms:\n%s",
603 saslmech
, server_mechs
);
606 if (sm_auth_sasl(user
, saslmech
? saslmech
: server_mechs
,
612 #endif /* CYRUS_SASL */
615 smtalk (SM_HELO
, "ONEX");
617 smtalk (SM_HELO
, "VERB on");
624 rclient (char *server
, char *service
)
627 char response
[BUFSIZ
];
629 if ((sd
= client (server
, service
, response
, sizeof(response
),
633 sm_ierror ("%s", response
);
638 sm_winit (int mode
, char *from
)
640 char *smtpcom
= NULL
;
660 /* Hopefully, we do not get here. */
664 switch (smtalk (SM_MAIL
, "%s FROM:<%s>", smtpcom
, from
)) {
681 sm_wadr (char *mbox
, char *host
, char *path
)
683 switch (smtalk (SM_RCPT
, host
&& *host
? "RCPT TO:<%s%s@%s>"
685 path
? path
: "", mbox
, host
)) {
695 #endif /* SENDMAILBUG */
720 switch (smtalk (SM_DATA
, "DATA")) {
729 #endif /* SENDMAILBUG */
746 sm_wtxt (char *buffer
, int len
)
752 result
= sm_wstream (buffer
, len
);
755 return (result
== NOTOK
? RP_BHST
: RP_OK
);
762 if (sm_wstream ((char *) NULL
, 0) == NOTOK
)
765 switch (smtalk (SM_DOT
+ 3 * sm_addrs
, ".")) {
773 #endif /* SENDMAILBUG */
791 if (sm_mts
== MTS_SENDMAIL
) {
802 if (sm_rfp
== NULL
&& sm_wfp
== NULL
)
807 smtalk (SM_QUIT
, "QUIT");
811 sm_note
.code
= sm_reply
.code
;
812 sm_note
.length
= sm_reply
.length
;
813 memcpy (sm_note
.text
, sm_reply
.text
, sm_reply
.length
+ 1);/* fall */
815 if (smtalk (SM_RSET
, "RSET") == 250 && type
== DONE
)
817 if (sm_mts
== MTS_SMTP
)
818 smtalk (SM_QUIT
, "QUIT");
820 kill (sm_child
, SIGKILL
);
825 sm_reply
.code
= sm_note
.code
;
826 sm_reply
.length
= sm_note
.length
;
827 memcpy (sm_reply
.text
, sm_note
.text
, sm_note
.length
+ 1);
834 BIO_ssl_shutdown(io
);
837 #endif /* TLS_SUPPORT */
839 if (sm_rfp
!= NULL
) {
844 if (sm_wfp
!= NULL
) {
850 if (sm_mts
== MTS_SMTP
) {
855 if (sasl_outbuffer
) {
856 free(sasl_outbuffer
);
861 #endif /* CYRUS_SASL */
863 status
= pidwait (sm_child
, OK
);
867 sm_rfp
= sm_wfp
= NULL
;
868 return (status
? RP_BHST
: RP_OK
);
873 * This function implements SASL authentication for SMTP. If this function
874 * completes successfully, then authentication is successful and we've
875 * (optionally) negotiated a security layer.
878 sm_auth_sasl(char *user
, char *mechlist
, char *inhost
)
881 unsigned int buflen
, outlen
;
882 char *buf
, outbuf
[BUFSIZ
], host
[NI_MAXHOST
];
883 const char *chosen_mech
;
884 sasl_security_properties_t secprops
;
889 * Initialize the callback contexts
893 user
= getusername();
895 callbacks
[SM_SASL_N_CB_USER
].context
= user
;
896 callbacks
[SM_SASL_N_CB_AUTHNAME
].context
= user
;
899 * This is a _bit_ of a hack ... but if the hostname wasn't supplied
900 * to us on the command line, then call getpeername and do a
901 * reverse-address lookup on the IP address to get the name.
904 memset(host
, 0, sizeof(host
));
907 struct sockaddr_storage sin
;
908 socklen_t len
= sizeof(sin
);
911 if (getpeername(fileno(sm_wfp
), (struct sockaddr
*) &sin
, &len
) < 0) {
912 sm_ierror("getpeername on SMTP socket failed: %s",
917 result
= getnameinfo((struct sockaddr
*) &sin
, len
, host
, sizeof(host
),
918 NULL
, 0, NI_NAMEREQD
);
920 sm_ierror("Unable to look up name of connected host: %s",
921 gai_strerror(result
));
925 strncpy(host
, inhost
, sizeof(host
) - 1);
928 sasl_pw_context
[0] = host
;
929 sasl_pw_context
[1] = user
;
931 callbacks
[SM_SASL_N_CB_PASS
].context
= sasl_pw_context
;
933 result
= sasl_client_init(callbacks
);
935 if (result
!= SASL_OK
) {
936 sm_ierror("SASL library initialization failed: %s",
937 sasl_errstring(result
, NULL
, NULL
));
941 result
= sasl_client_new("smtp", host
, NULL
, NULL
, NULL
, 0, &conn
);
943 if (result
!= SASL_OK
) {
944 sm_ierror("SASL client initialization failed: %s",
945 sasl_errstring(result
, NULL
, NULL
));
950 * Initialize the security properties. But if TLS is active, then
951 * don't negotiate encryption here.
954 memset(&secprops
, 0, sizeof(secprops
));
955 secprops
.maxbufsize
= SASL_MAXRECVBUF
;
956 secprops
.max_ssf
= tls_active
? 0 : UINT_MAX
;
958 result
= sasl_setprop(conn
, SASL_SEC_PROPS
, &secprops
);
960 if (result
!= SASL_OK
) {
961 sm_ierror("SASL security property initialization failed: %s",
962 sasl_errstring(result
, NULL
, NULL
));
967 * Start the actual protocol. Feed the mech list into the library
968 * and get out a possible initial challenge
971 result
= sasl_client_start(conn
, mechlist
, NULL
, (const char **) &buf
,
972 &buflen
, (const char **) &chosen_mech
);
974 if (result
!= SASL_OK
&& result
!= SASL_CONTINUE
) {
975 sm_ierror("SASL client start failed: %s", sasl_errdetail(conn
));
980 * If we got an initial challenge, send it as part of the AUTH
981 * command; otherwise, just send a plain AUTH command.
985 status
= sasl_encode64(buf
, buflen
, outbuf
, sizeof(outbuf
), NULL
);
986 if (status
!= SASL_OK
) {
987 sm_ierror("SASL base64 encode failed: %s",
988 sasl_errstring(status
, NULL
, NULL
));
992 status
= smtalk(SM_AUTH
, "AUTH %s %s", chosen_mech
, outbuf
);
994 status
= smtalk(SM_AUTH
, "AUTH %s", chosen_mech
);
997 * Now we loop until we either fail, get a SASL_OK, or a 235
998 * response code. Receive the challenges and process them until
1002 while (result
== SASL_CONTINUE
) {
1005 * If we get a 235 response, that means authentication has
1006 * succeeded and we need to break out of the loop (yes, even if
1007 * we still get SASL_CONTINUE from sasl_client_step()).
1009 * Otherwise, if we get a message that doesn't seem to be a
1010 * valid response, then abort
1015 else if (status
< 300 || status
> 399)
1019 * Special case; a zero-length response from the SMTP server
1020 * is returned as a single =. If we get that, then set buflen
1021 * to be zero. Otherwise, just decode the response.
1024 if (strcmp("=", sm_reply
.text
) == 0) {
1027 result
= sasl_decode64(sm_reply
.text
, sm_reply
.length
,
1028 outbuf
, sizeof(outbuf
), &outlen
);
1030 if (result
!= SASL_OK
) {
1031 smtalk(SM_AUTH
, "*");
1032 sm_ierror("SASL base64 decode failed: %s",
1033 sasl_errstring(result
, NULL
, NULL
));
1038 result
= sasl_client_step(conn
, outbuf
, outlen
, NULL
,
1039 (const char **) &buf
, &buflen
);
1041 if (result
!= SASL_OK
&& result
!= SASL_CONTINUE
) {
1042 smtalk(SM_AUTH
, "*");
1043 sm_ierror("SASL client negotiation failed: %s",
1044 sasl_errstring(result
, NULL
, NULL
));
1048 status
= sasl_encode64(buf
, buflen
, outbuf
, sizeof(outbuf
), NULL
);
1050 if (status
!= SASL_OK
) {
1051 smtalk(SM_AUTH
, "*");
1052 sm_ierror("SASL base64 encode failed: %s",
1053 sasl_errstring(status
, NULL
, NULL
));
1057 status
= smtalk(SM_AUTH
, outbuf
);
1061 * Make sure that we got the correct response
1064 if (status
< 200 || status
> 299)
1068 * We _should_ have completed the authentication successfully.
1069 * Get a few properties from the authentication exchange.
1072 result
= sasl_getprop(conn
, SASL_MAXOUTBUF
, (const void **) &outbufmax
);
1074 if (result
!= SASL_OK
) {
1075 sm_ierror("Cannot retrieve SASL negotiated output buffer size: %s",
1076 sasl_errstring(result
, NULL
, NULL
));
1080 maxoutbuf
= *outbufmax
;
1082 result
= sasl_getprop(conn
, SASL_SSF
, (const void **) &ssf
);
1086 if (result
!= SASL_OK
) {
1087 sm_ierror("Cannot retrieve SASL negotiated security strength "
1088 "factor: %s", sasl_errstring(result
, NULL
, NULL
));
1093 sasl_outbuffer
= malloc(maxoutbuf
);
1095 if (sasl_outbuffer
== NULL
) {
1096 sm_ierror("Unable to allocate %d bytes for SASL output "
1097 "buffer", maxoutbuf
);
1102 sasl_inptr
= sasl_inbuffer
;
1104 sasl_outbuffer
= NULL
;
1105 /* Don't NULL out sasl_inbuffer because it could be used in
1115 * Our callback functions to feed data to the SASL library
1119 sm_get_user(void *context
, int id
, const char **result
, unsigned *len
)
1121 char *user
= (char *) context
;
1123 if (! result
|| ((id
!= SASL_CB_USER
) && (id
!= SASL_CB_AUTHNAME
)))
1124 return SASL_BADPARAM
;
1128 *len
= strlen(user
);
1134 sm_get_pass(sasl_conn_t
*conn
, void *context
, int id
,
1135 sasl_secret_t
**psecret
)
1139 char **pw_context
= (char **) context
;
1143 if (! psecret
|| id
!= SASL_CB_PASS
)
1144 return SASL_BADPARAM
;
1146 ruserpass(pw_context
[0], &(pw_context
[1]), &pass
);
1150 *psecret
= (sasl_secret_t
*) malloc(sizeof(sasl_secret_t
) + len
);
1157 (*psecret
)->len
= len
;
1158 strcpy((char *) (*psecret
)->data
, pass
);
1163 #endif /* CYRUS_SASL */
1166 sm_ierror (char *fmt
, ...)
1171 vsnprintf (sm_reply
.text
, sizeof(sm_reply
.text
), fmt
, ap
);
1174 sm_reply
.length
= strlen (sm_reply
.text
);
1175 sm_reply
.code
= NOTOK
;
1181 smtalk (int time
, char *fmt
, ...)
1185 char buffer
[BUFSIZ
];
1188 vsnprintf (buffer
, sizeof(buffer
), fmt
, ap
);
1193 printf("(sasl-encrypted) ");
1195 printf("(tls-encrypted) ");
1196 printf ("=> %s\n", buffer
);
1201 alarm ((unsigned) time
);
1202 if ((result
= sm_wrecord (buffer
, strlen (buffer
))) != NOTOK
)
1211 * write the buffer to the open SMTP channel
1215 sm_wrecord (char *buffer
, int len
)
1218 return sm_werror ();
1220 sm_fwrite (buffer
, len
);
1224 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1229 sm_wstream (char *buffer
, int len
)
1232 static char lc
= '\0';
1235 return sm_werror ();
1237 if (buffer
== NULL
&& len
== 0) {
1241 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1244 for (bp
= buffer
; len
> 0; bp
++, len
--) {
1253 sm_fputc ('.');/* FALL THROUGH */
1258 if (ferror (sm_wfp
))
1259 return sm_werror ();
1264 return (ferror (sm_wfp
) ? sm_werror () : OK
);
1268 * Write out to the network, but do buffering for SASL (if enabled)
1272 sm_fwrite(char *buffer
, int len
)
1276 unsigned int outputlen
;
1278 if (sasl_complete
== 0 || sasl_ssf
== 0) {
1279 #endif /* CYRUS_SASL */
1284 ret
= BIO_write(io
, buffer
, len
);
1287 sm_ierror("TLS error during write: %s",
1288 ERR_error_string(ERR_get_error(), NULL
));
1292 #endif /* TLS_SUPPORT */
1293 fwrite(buffer
, sizeof(*buffer
), len
, sm_wfp
);
1296 while (len
>= maxoutbuf
- sasl_outbuflen
) {
1297 memcpy(sasl_outbuffer
+ sasl_outbuflen
, buffer
,
1298 maxoutbuf
- sasl_outbuflen
);
1299 len
-= maxoutbuf
- sasl_outbuflen
;
1302 if (sasl_encode(conn
, sasl_outbuffer
, maxoutbuf
,
1303 &output
, &outputlen
) != SASL_OK
) {
1304 sm_ierror("Unable to SASL encode connection data: %s",
1305 sasl_errdetail(conn
));
1309 fwrite(output
, sizeof(*output
), outputlen
, sm_wfp
);
1313 memcpy(sasl_outbuffer
+ sasl_outbuflen
, buffer
, len
);
1314 sasl_outbuflen
+= len
;
1317 #endif /* CYRUS_SASL */
1318 return ferror(sm_wfp
) ? NOTOK
: RP_OK
;
1322 * Convenience functions to replace occurences of fputs() and fputc()
1326 sm_fputs(char *buffer
)
1328 return sm_fwrite(buffer
, strlen(buffer
));
1336 return sm_fwrite(&h
, 1);
1340 * Flush out any pending data on the connection
1348 unsigned int outputlen
;
1351 if (sasl_complete
== 1 && sasl_ssf
> 0 && sasl_outbuflen
> 0) {
1352 result
= sasl_encode(conn
, sasl_outbuffer
, sasl_outbuflen
,
1353 &output
, &outputlen
);
1354 if (result
!= SASL_OK
) {
1355 sm_ierror("Unable to SASL encode connection data: %s",
1356 sasl_errdetail(conn
));
1360 fwrite(output
, sizeof(*output
), outputlen
, sm_wfp
);
1363 #endif /* CYRUS_SASL */
1367 (void) BIO_flush(io
);
1369 #endif /* TLS_SUPPORT */
1378 strlen (strcpy (sm_reply
.text
, sm_wfp
== NULL
? "no socket opened"
1379 : sm_alarmed
? "write to socket timed out"
1380 : "error writing to socket"));
1382 return (sm_reply
.code
= NOTOK
);
1389 int i
, code
, cont
, bc
= 0, rc
, more
;
1392 char **ehlo
= NULL
, buffer
[BUFSIZ
];
1395 static int at_least_once
= 0;
1397 if (at_least_once
) {
1400 for (ehlo
= EHLOkeys
; *ehlo
; ehlo
++) {
1414 sm_reply
.length
= 0;
1415 sm_reply
.text
[0] = 0;
1417 rc
= sizeof(sm_reply
.text
) - 1;
1419 for (more
= FALSE
; sm_rrecord ((char *) (bp
= (unsigned char *) buffer
),
1423 printf("(sasl-decrypted) ");
1425 printf("(tls-decrypted) ");
1426 printf ("<= %s\n", buffer
);
1431 && strncmp (buffer
, "250", sizeof("250") - 1) == 0
1432 && (buffer
[3] == '-' || doingEHLO
== 2)
1434 if (doingEHLO
== 2) {
1435 if ((*ehlo
= malloc ((size_t) (strlen (buffer
+ 4) + 1)))) {
1436 strcpy (*ehlo
++, buffer
+ 4);
1438 if (ehlo
>= EHLOkeys
+ MAXEHLO
)
1448 for (; bc
> 0 && (!isascii (*bp
) || !isdigit (*bp
)); bp
++, bc
--)
1452 code
= atoi ((char *) bp
);
1454 for (; bc
> 0 && isspace (*bp
); bp
++, bc
--)
1456 if (bc
> 0 && *bp
== '-') {
1459 for (; bc
> 0 && isspace (*bp
); bp
++, bc
--)
1464 if (code
!= sm_reply
.code
|| cont
)
1468 sm_reply
.code
= code
;
1471 /* can never fail to 0-terminate because of size of buffer vs fixed string */
1472 strncpy (buffer
, sm_noreply
, sizeof(buffer
));
1473 bp
= (unsigned char *) buffer
;
1474 bc
= strlen (sm_noreply
);
1478 if ((i
= min (bc
, rc
)) > 0) {
1482 i
= strlen(sm_moreply
);
1483 if (more
&& rc
> i
+ 1) {
1484 memcpy (rp
, sm_moreply
, i
); /* safe because of check in if() */
1491 if (sm_reply
.code
< 100) {
1493 printf ("%s\n", sm_reply
.text
);
1499 sm_reply
.length
= rp
- sm_reply
.text
;
1500 sm_reply
.text
[sm_reply
.length
] = 0;
1501 return sm_reply
.code
;
1508 sm_rrecord (char *buffer
, int *len
)
1513 return sm_rerror(0);
1515 buffer
[*len
= 0] = 0;
1517 if ((retval
= sm_fgets (buffer
, BUFSIZ
, sm_rfp
)) != RP_OK
)
1519 *len
= strlen (buffer
);
1520 /* *len should be >0 except on EOF, but check for safety's sake */
1522 return sm_rerror (RP_EOF
);
1523 if (buffer
[*len
- 1] != '\n')
1524 while ((retval
= sm_fgetc (sm_rfp
)) != '\n' && retval
!= EOF
&&
1528 if ((*len
> 1) && (buffer
[*len
- 2] == '\r'))
1537 * Our version of fgets, which calls our private fgetc function
1541 sm_fgets(char *buffer
, int size
, FILE *f
)
1555 } while (size
> 1 && c
!= '\n');
1563 #if defined(CYRUS_SASL) || defined(TLS_SUPPORT)
1565 * Read from the network, but do SASL or TLS encryption
1571 char tmpbuf
[BUFSIZ
], *retbuf
;
1572 unsigned int retbufsize
= 0;
1576 * If we have leftover data, return it
1579 if (sasl_inbuflen
) {
1581 return (int) *sasl_inptr
++;
1585 * If not, read from the network until we have some data to return
1588 while (retbufsize
== 0) {
1592 cc
= SSL_read(ssl
, tmpbuf
, sizeof(tmpbuf
));
1595 result
= SSL_get_error(ssl
, cc
);
1597 if (result
!= SSL_ERROR_ZERO_RETURN
) {
1598 sm_ierror("TLS peer aborted connection");
1605 sm_ierror("SSL_read failed: %s",
1606 ERR_error_string(ERR_get_error(), NULL
));
1610 #endif /* TLS_SUPPORT */
1612 cc
= read(fileno(f
), tmpbuf
, sizeof(tmpbuf
));
1618 sm_ierror("Unable to read from network: %s", strerror(errno
));
1623 * Don't call sasl_decode unless sasl is complete and we have
1624 * encryption working
1628 if (sasl_complete
== 0 || sasl_ssf
== 0) {
1632 result
= sasl_decode(conn
, tmpbuf
, cc
, (const char **) &retbuf
,
1635 if (result
!= SASL_OK
) {
1636 sm_ierror("Unable to decode SASL network data: %s",
1637 sasl_errdetail(conn
));
1641 #else /* ! CYRUS_SASL */
1644 #endif /* CYRUS_SASL */
1647 if (retbufsize
> SASL_MAXRECVBUF
) {
1648 sm_ierror("Received data (%d bytes) is larger than the buffer "
1649 "size (%d bytes)", retbufsize
, SASL_MAXRECVBUF
);
1653 memcpy(sasl_inbuffer
, retbuf
, retbufsize
);
1654 sasl_inptr
= sasl_inbuffer
+ 1;
1655 sasl_inbuflen
= retbufsize
- 1;
1657 return (int) sasl_inbuffer
[0];
1659 #endif /* CYRUS_SASL || TLS_SUPPORT */
1664 if (sm_mts
== MTS_SMTP
)
1666 strlen (strcpy (sm_reply
.text
, sm_rfp
== NULL
? "no socket opened"
1667 : sm_alarmed
? "read from socket timed out"
1668 : rc
== RP_EOF
? "premature end-of-file on socket"
1669 : "error reading from socket"));
1672 strlen (strcpy (sm_reply
.text
, sm_rfp
== NULL
? "no pipe opened"
1673 : sm_alarmed
? "read from pipe timed out"
1674 : rc
== RP_EOF
? "premature end-of-file on pipe"
1675 : "error reading from pipe"));
1677 return (sm_reply
.code
= NOTOK
);
1686 #ifndef RELIABLE_SIGNALS
1687 SIGNAL (SIGALRM
, alrmser
);
1692 printf ("timed out...\n");
1699 rp_string (int code
)
1702 static char buffer
[BUFSIZ
];
1704 switch (sm_reply
.code
!= NOTOK
? code
: NOTOK
) {
1724 snprintf (buffer
, sizeof(buffer
), "[%s] %s", text
, sm_reply
.text
);
1744 snprintf (buffer
, sizeof(buffer
), "[%s] %3d %s",
1745 text
, sm_reply
.code
, sm_reply
.text
);
1757 for (ehlo
= EHLOkeys
; *ehlo
; ehlo
++) {
1759 if (strncmp (ep
, s
, len
) == 0) {
1760 for (ep
+= len
; *ep
== ' '; ep
++)