summaryrefslogtreecommitdiff
path: root/main.c
blob: a8a1c657c805cec1a29f5a3ecd383f05dd3d60ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
/*
 *  A libESMTP Example Application.
 *  Copyright (C) 2001,2002  Brian Stafford <brian@stafford.uklinux.net>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published
 *  by the Free Software Foundation; either version 2 of the License,
 *  or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/* This program attemps to mimic the sendmail program behavior using libESMTP.
 *
 * Adapted from the libESMTP's mail-file example by José Fonseca.
 */
#define _XOPEN_SOURCE 500

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include <unistd.h>
#include <getopt.h>
#include <string.h>
#include <fcntl.h>
#include <signal.h>
#include <errno.h>

#include <auth-client.h>
#include <libesmtp.h>

char *from = NULL;
char *host = NULL;
char *user = NULL;
char *pass = NULL;
enum starttls_option starttls = Starttls_DISABLED;
char *certificate_passphrase = NULL;

extern void parse_rcfile(void);

/* Callback function to read the message from a file.  Since libESMTP does not
 * provide callbacks which translate line endings, one must be provided by the
 * application.
 *
 * The message is read a line at a time and the newlines converted to \r\n.
 * Unfortunately, RFC 822 states that bare \n and \r are acceptable in messages
 * and that individually they do not constitute a line termination.  This
 * requirement cannot be reconciled with storing messages with Unix line
 * terminations.  RFC 2822 rescues this situation slightly by prohibiting lone
 * \r and \n in messages.
 *
 * The following code cannot therefore work correctly in all situations.
 * Furthermore it is very inefficient since it must search for the \n.
 */
#define BUFLEN	8192

const char * readlinefp_cb (void **buf, int *len, void *arg)
{
    int octets;

    if (*buf == NULL)
	*buf = malloc (BUFLEN);

    if (len == NULL)
    {
	rewind ((FILE *) arg);
	return NULL;
    }

    if (fgets (*buf, BUFLEN - 2, (FILE *) arg) == NULL)
	octets = 0;
    else
    {
	char *p = strchr (*buf, '\0');

	if (p[-1] == '\n' && p[-2] != '\r')
	{
	    strcpy (p - 1, "\r\n");
	    p++;
	}
	octets = p - (char *) *buf;
    }
    *len = octets;
    return *buf;
}

#define SIZETICKER 1024	/* print 1 dot per this many bytes */

void event_cb (smtp_session_t session, int event_no, void *arg, ...)
{
    FILE *fp = arg;
    va_list ap;
    const char *mailbox;
    smtp_message_t message;
    smtp_recipient_t recipient;
    const smtp_status_t *status;
    static int sizeticking = 0, sizeticker;

    if (event_no != SMTP_EV_MESSAGEDATA && sizeticking)
    {
	fputs("\n", fp);
	sizeticking = 0;
    }

    va_start (ap, arg);
    switch (event_no) {
	case SMTP_EV_CONNECT:
	    fputs("Connected to MTA\n", fp);
	    break;
	    
	case SMTP_EV_MAILSTATUS:
	    mailbox = va_arg (ap, const char *);
	    message = va_arg (ap, smtp_message_t);
	    status = smtp_reverse_path_status (message);
	    fprintf (fp, "From %s: %d %s", mailbox, status->code, status->text);
	    break;

	case SMTP_EV_RCPTSTATUS:
	    mailbox = va_arg (ap, const char *);
	    recipient = va_arg (ap, smtp_recipient_t);
	    status = smtp_recipient_status (recipient);
	    fprintf (fp, "To %s: %d %s", mailbox, status->code, status->text);
	    break;
	    
	case SMTP_EV_MESSAGEDATA:
	    message = va_arg (ap, smtp_message_t);
	    if (!sizeticking)
	    {
		fputs("Message data: ", fp);
		sizeticking = 1;
		sizeticker = SIZETICKER - 1;
	    }
	    sizeticker += va_arg (ap, int);
	    while (sizeticker >= SIZETICKER)
	    {
		fputc('.', fp);
		sizeticker -= SIZETICKER;
	    }
	    break;

	case SMTP_EV_MESSAGESENT:
	    message = va_arg (ap, smtp_message_t);
	    status = smtp_message_transfer_status (message);
	    fprintf (fp, "Message sent: %d %s", status->code, status->text);
	    break;
	    
	case SMTP_EV_DISCONNECT:
	    fputs("Disconnected\n", fp);
	    break;
	
	default:
	    break;
    }
    va_end (ap);
}

void monitor_cb (const char *buf, int buflen, int writing, void *arg)
{
    FILE *fp = arg;

    if (writing == SMTP_CB_HEADERS)
    {
	fputs ("H: ", fp);
	fwrite (buf, 1, buflen, fp);
	return;
    }

   fputs (writing ? "C: " : "S: ", fp);
   fwrite (buf, 1, buflen, fp);
   if (buf[buflen - 1] != '\n')
       putc ('\n', fp);
}

void usage (void)
{
    fputs ("usage: esmtp [options] mailbox [mailbox ...]\n",
	   stderr);
}

void version (void)
{
    char buf[32];

    smtp_version (buf, sizeof buf, 0);
    printf ("libESMTP version %s\n", buf);
}

/* Callback to request user/password info.  Not thread safe. */
int authinteract (auth_client_request_t request, char **result, int fields,
		  void *arg)
{
    int i;

    for (i = 0; i < fields; i++)
    {
	if (request[i].flags & AUTH_USER && user)
	    result[i] = user;
	else if (request[i].flags & AUTH_PASS && pass)
	    result[i] = pass;
	else
	    return 0;
    }
    return 1;
}

int tlsinteract (char *buf, int buflen, int rwflag, void *arg)
{
    char *pw;
    int len;

    if (certificate_passphrase)
    {
	pw = certificate_passphrase;
	len = strlen (pw);
	if (len + 1 > buflen)
	    return 0;
	strcpy (buf, pw);
	return len;
    }
    else
	return 0;
}

/* Callback to print the recipient status. */
void print_recipient_status (smtp_recipient_t recipient, const char *mailbox, 
			     void *arg)
{
    const smtp_status_t *status;

    status = smtp_recipient_status (recipient);
    fprintf (stderr, "%s: %d %s\n", mailbox, status->code, status->text);
}

int main (int argc, char **argv)
{
    smtp_session_t session;
    smtp_message_t message;
    smtp_recipient_t recipient;
    auth_context_t authctx;
    const smtp_status_t *status;
    struct sigaction sa;
    int c;
    int ret;
    enum notify_flags notify = Notify_NOTSET;
    FILE *fp = NULL;

    /* Parse the rc file. */
    parse_rcfile();

    /* This program sends only one message at a time.  Create an SMTP session.
     */
    auth_client_init (); session = smtp_create_session ();

    while ((c = getopt (argc, argv,
			"A:B:b:C:cd:e:F:f:Gh:IiL:M:mN:nO:o:p:q:R:r:sTtV:vX:")) != EOF)
	switch (c)
	{
	    case 'A':
		/* Use alternate sendmail/submit.cf */
		break;

	    case 'B':
		/* Body type */
		break;

	    case 'C':
		/* Select configuration file */
		break;

	    case 'F':
		/* Set full name */
		break;

	    case 'G':
		/* Relay (gateway) submission */
		break;

	    case 'I':
		/* Initialize alias database */
		break;

	    case 'L':
		/* Program label */
		break;

	    case 'M':
		/* Define macro */
		break;

	    case 'N':
		/* Delivery status notifications */
		if (strcmp (optarg, "never") == 0)
		    notify = Notify_NEVER;
		else
		{
		    if (strstr (optarg, "failure"))
			notify |= Notify_FAILURE;
		    if (strstr (optarg, "delay"))
			notify |= Notify_DELAY;
		    if (strstr (optarg, "success"))
			notify |= Notify_SUCCESS;
		}
		break;

	    case 'R':
		/* What to return */
		break;

	    case 'T':
		/* Set timeout interval */
		break;

	    case 'X':
		/* Traffic log file */
		if (fp)
		    fclose(fp);
		if ((fp = fopen(optarg, "a")))
		    /* Add a protocol monitor. */
		    smtp_set_monitorcb (session, monitor_cb, fp, 1);
		break;

	    case 'V':
		/* Set original envelope id */
		break;

	    case 'b':
		/* Operations mode */
		c = (optarg == NULL) ? ' ' : *optarg;
		switch (c)
		{
		    case 'm':
			/* Deliver mail in the usual way */
			break;

		    case 'i':
			/* Initialize the alias database */
			break;

		    case 'a':
			/* Go into ARPANET mode */
		    case 'd':
			/* Run as a daemon */
		    case 'D':
			/* Run as a daemon in foreground */
		    case 'h':
			/* Print the persistent host status database */
		    case 'H':
			/* Purge expired entries from the persistent host
			 * status database */
		    case 'p':
			/* Print a listing of the queue(s) */
		    case 'P':
			/* Print number of entries in the queue(s) */
		    case 's':
			/* Use the SMTP protocol as described in RFC821
			 * on standard input and output */
		    case 't':
			/* Run in address test mode */
		    case 'v':
			/* Verify names only */
			fprintf (stderr, "Unsupported operation mode %c\n", c);
			exit (64);
			break;

		    default:
			fprintf (stderr, "Invalid operation mode %c\n", c);
			exit (64);
			break;
		 }
		 break;

	    case 'c':
		/* Connect to non-local mailers */
		break;

	    case 'd':
		/* Debugging */
		break;

	    case 'e':
		/* Error message disposition */
		break;

	    case 'f':
		/* From address */
	    case 'r':
		/* Obsolete -f flag */
		from = optarg;
		break;

	    case 'h':
		/* Hop count */
		break;

	    case 'i':
		/* Don't let dot stop me */
		break;

	    case 'm':
		/* Send to me too */
		break;

	    case 'n':
		/* don't alias */
		break;

	    case 'o':
		/* Set option */
		break;

	    case 'p':
		/* Set protocol */
		break;

	    case 'q':
		/* Run queue files at intervals */
		if (optarg[0] == '!')
		{
		    /* Negate the meaning of pattern match */
		    optarg++;
		}

		switch (optarg[0])
		{
		    case 'G':
			/* Limit by queue group name */
			break;

		    case 'I':
			/* Limit by ID */
			break;

		    case 'R':
			/* Limit by recipient */
			break;

		    case 'S':
			/* Limit by sender */
			break;

		    case 'f':
			/* Foreground queue run */
			break;

		    case 'p':
			/* Persistent queue */
			if (optarg[1] == '\0')
			    break;
			++optarg;

		    default:
			break;
		}
		break;

	    case 's':
		/* Save From lines in headers */
		break;

	    case 't':
		/* Read recipients from message */
		fprintf (stderr, "Unsupported option 't'\n");
		exit (64);
		break;

	    case 'v':
		/* Verbose */
		/* Set the event callback. */
		smtp_set_eventcb (session, event_cb, stdout);
		break;

	    default:
		usage ();
		exit (64);
	    }

    /* At least one more argument is needed. */
    if (optind > argc - 1)
    {
	usage ();
	exit (64);
    }

    /* NB.  libESMTP sets timeouts as it progresses through the protocol.  In
     * addition the remote server might close its socket on a timeout.
     * Consequently libESMTP may sometimes try to write to a socket with no
     * reader.  Ignore SIGPIPE, then the program doesn't get killed if/when
     * this happens.
     */
    sa.sa_handler = SIG_IGN; sigemptyset (&sa.sa_mask); sa.sa_flags = 0;
    sigaction (SIGPIPE, &sa, NULL);

    /* Set the host running the SMTP server.  LibESMTP has a default port
     * number of 587, however this is not widely deployed so the port is
     * specified as 25 along with the default MTA host.
     */
    smtp_set_server (session, host ? host : "localhost:25");

    /* Set the SMTP Starttls extension. */
    smtp_starttls_enable (session, starttls);

    /* Do what's needed at application level to use authentication. */
    authctx = auth_create_context ();
    auth_set_mechanism_flags (authctx, AUTH_PLUGIN_PLAIN, 0);
    auth_set_interact_cb (authctx, authinteract, NULL);

    /* Use our callback for X.509 certificate passwords.  If STARTTLS is not in
     * use or disabled in configure, the following is harmless.
     */
    smtp_starttls_set_password_cb (tlsinteract, NULL);

    /* Now tell libESMTP it can use the SMTP AUTH extension. */
    smtp_auth_set_context (session, authctx);

    /* At present it can't handle one recipient only out of many failing.  Make
     * libESMTP require all specified recipients to succeed before transferring
     * a message.
     */
    smtp_option_require_all_recipients (session, 1);

    /* Add a message to the SMTP session. */
    message = smtp_add_message (session);

    /* Set the reverse path for the mail envelope.  (NULL is ok) */
    smtp_set_reverse_path (message, from);

    /* Open the message file and set the callback to read it. */
#if 0
    smtp_set_message_fp (message, stdin);
#else
    smtp_set_messagecb (message, readlinefp_cb, stdin);
#endif

    /* Add remaining program arguments as message recipients. */
    while (optind < argc)
    {
	recipient = smtp_add_recipient (message, argv[optind++]);

	/* Recipient options set here */
	if (notify != Notify_NOTSET)
	    smtp_dsn_set_notify (recipient, notify);
    }

    /* Initiate a connection to the SMTP server and transfer the message. */
    if (!smtp_start_session (session))
    {
	char buf[128];

	fprintf (stderr, "SMTP server problem %s\n",
		 smtp_strerror (smtp_errno (), buf, sizeof buf));

	ret = 69;
    }
    else
    {
	/* Report on the success or otherwise of the mail transfer. */
	status = smtp_message_transfer_status (message);
	if (status->code / 100 == 2)
	{
	    ret = 0;
      	}
	else
	{
	    /* Report on the failure of the mail transfer. */
	    status = smtp_message_transfer_status (message);
	    fprintf (stderr, "%d %s\n", status->code, status->text);
	    smtp_enumerate_recipients (message, print_recipient_status, NULL);

	    ret = 70;
	}
    }

    /* Free resources consumed by the program. */
    if (fp)
    {
	fputc('\n', fp);
	fclose(fp);
    }

    smtp_destroy_session (session);
    auth_destroy_context (authctx);
    auth_client_exit ();

    exit (ret);
}