-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathswaks.pl
executable file
·2028 lines (1636 loc) · 77.4 KB
/
swaks.pl
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env perl
# use 'swaks --help' to view documentation for this program
# if you want to be notified about future releases of this program,
# please send an email to [email protected]
use strict;
my($p_name) = $0 =~ m|/?([^/]+)$|;
my $p_version = "20061116.0";
my $p_usage = "Usage: $p_name [--help|--version] (see --help for details)";
my $p_cp = <<EOM;
Copyright (c) 2003-2006 John Jetmore <jj33\@pobox.com>
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
EOM
ext_usage(); # before we do anything else, check for --help
my %O = ();
$| = 1;
# need to rewrite header-HEADER opts before std option parsing
for (my $i = 0; $i < scalar(@ARGV); $i++) {
if ($ARGV[$i] =~ /^--h(?:eader)?-(.*)$/) {
$ARGV[$i] = "--header"; $ARGV[$i+1] = "$1: $ARGV[$i+1]";
}
}
if (!load("Getopt::Long")) {
ptrans(12, "Unable to load Getopt::Long for option processing, Exiting");
exit(1);
}
Getopt::Long::Configure("bundling_override");
GetOptions(
'l|input-file=s' => \$O{option_file}, # (l)ocation of input data
'f|from:s' => \$O{mail_from}, # envelope-(f)rom address
't|to:s' => \$O{mail_to}, # envelope-(t)o address
'h|helo|ehlo|lhlo:s' => \$O{mail_helo}, # (h)elo string
's|server:s' => \$O{mail_server}, # (s)erver to use
'p|port:s' => \$O{mail_port}, # (p)ort to use
'protocol:s' => \$O{mail_protocol}, # protocol to use (smtp, esmtp, lmtp)
'd|data:s' => \$O{mail_data}, # (d)ata portion ('\n' for newlines)
'timeout:s' => \$O{timeout}, # timeout for each trans (def 30s)
'g' => \$O{data_on_stdin}, # (g)et data on stdin
'm' => \$O{emulate_mail}, # emulate (M)ail command
'q|quit|quit-after=s' => \$O{quit_after}, # (q)uit after
'n|suppress-data' => \$O{suppress_data}, # do (n)ot print data portion
'a|auth:s' => \$O{auth}, # force auth, exit if not supported
'au|auth-user:s' => \$O{auth_user}, # user for auth
'ap|auth-password:s' => \$O{auth_pass}, # pass for auth
'am|auth-map=s' => \$O{auth_map}, # auth type map
#'ahp|auth-hide-password' => \$O{auth_hidepw}, # hide passwords when possible
'apt|auth-plaintext' => \$O{auth_showpt}, # translate base64 strings
'ao|auth-optional:s' => \$O{auth_optional}, # auth optional (ignore failure)
'support' => \$O{get_support}, # report capabilties
'li|local-interface:s' => \$O{lint}, # local interface to use
'tls' => \$O{tls}, # use TLS
'tlso|tls-optional' => \$O{tls_optional}, # use tls if available
'tlsc|tls-on-connect' => \$O{tls_on_connect}, # use tls if available
'S|silent+' => \$O{silent}, # suppress output to varying degrees
'nsf|no-strip-from' => \$O{no_strip_from}, # Don't strip From_ line from DATA
'nth|no-hints' => \$O{no_hints}, # Don't show transaction hints
'hr|hide-receive' => \$O{hide_receive}, # Don't show reception lines
'hs|hide-send' => \$O{hide_send}, # Don't show sending lines
'stl|show-time-lapse:s' => \$O{show_time_lapse}, # print lapse for send/recv
'ndf|no-data-fixup' => \$O{no_data_fixup}, # don't touch the data
'pipe:s' => \$O{pipe_cmd}, # command to communicate with
'socket:s' => \$O{socket}, # unix domain socket to talk to
'body:s' => \$O{body_822}, # the content of the body of the DATA
'attach-type|attach:s' => \@{$O{attach_822}}, # A file to attach
'ah|add-header:s' => \@{$O{add_header}}, # replacement for %H DATA token
'header:s' => \@{$O{header}}, # replace header if exist, else add
'dump' => \$O{dump_args}, # build options and dump
'pipeline' => \$O{pipeline}, # attempt PIPELINING
'force-getpwuid' => \$O{force_getpwuid} # use getpwuid building -f
) || exit(1);
# lists of dependencies for features
%G::dependencies = (
auth => { name => "Basic AUTH", opt => ['MIME::Base64'],
req => [] },
auth_cram_md5 => { name => "AUTH CRAM-MD5", req => ['Digest::MD5'] },
auth_cram_sha1 => { name => "AUTH CRAM-SHA1", req => ['Digest::SHA1'] },
auth_ntlm => { name => "AUTH NTLM", req => ['Authen::NTLM'] },
auth_digest_md5 => { name => "AUTH DIGEST-MD5",
req => ['Authen::DigestMD5'] },
dns => { name => "MX Routing", req => ['Net::DNS'] },
tls => { name => "TLS", req => ['Net::SSLeay'] },
pipe => { name => "Pipe Transport", req => ['IPC::Open2'] },
socket => { name => "Socket Transport", req => ['IO::Socket'] },
date_manip => { name => "Date Manipulation", req => ['Time::Local'] },
hostname => { name => "Local Hostname Detection",
req => ['Sys::Hostname'] },
hires_timing => { name => "High Resolution Timing",
req => ['Time::HiRes'] },
);
if ($O{get_support}) {
test_support();
exit(0);
}
# We need to fix things up a bit and set a couple of global options
my $opts = process_args(\%O);
if ($G::dump_args) {
test_support();
print "dump_args = ", $G::dump_args ? "TRUE" : "FALSE", "\n";
print "server_only = ", $G::server_only ? "TRUE" : "FALSE", "\n";
print "show_time_lapse = ", $G::show_time_lapse ? "TRUE" : "FALSE", "\n";
print "show_time_hires = ", $G::show_time_hires ? "TRUE" : "FALSE", "\n";
print "auth_showpt = ", $G::auth_showpt ? "TRUE" : "FALSE", "\n";
print "suppress_data = ", $G::suppress_data ? "TRUE" : "FALSE", "\n";
print "no_hints = ", $G::no_hints ? "TRUE" : "FALSE", "\n";
print "hide_send = ", $G::hide_send ? "TRUE" : "FALSE", "\n";
print "hide_receive = ", $G::hide_receive ? "TRUE" : "FALSE", "\n";
print "pipeline = ", $G::pipeline ? "TRUE" : "FALSE", "\n";
print "silent = $G::silent\n";
print "protocol = $G::protocol\n";
print "type = $G::link{type}\n";
print "server = $G::link{server}\n";
print "sockfile = $G::link{sockfile}\n";
print "process = $G::link{process}\n";
print "from = $opts->{from}\n";
print "to = $opts->{to}\n";
print "helo = $opts->{helo}\n";
print "port = $G::link{port}\n";
print "tls = ";
if ($G::tls) {
print "starttls (", $G::tls_optional ? 'optional' : 'required', ")\n";
} elsif ($G::tls_on_connect) {
print "on connect (required)\n";
} else { print "no\n"; }
print "auth = ";
if ($opts->{a_type}) {
print $G::auth_optional ? 'optional' : 'yes', " type='",
join(',', @{$opts->{a_type}}), "' ",
"user='$opts->{a_user}' pass='$opts->{a_pass}'\n";
} else { print "no\n"; }
print "auth map = ", join("\n".' 'x19,
map { "$_ = ".
join(', ', @{$G::auth_map_t{$_}})
} (keys %G::auth_map_t)
), "\n";
print "quit after = $G::quit_after\n";
print "local int = $G::link{lint}\n";
print "timeout = $G::link{timeout}\n";
print "data = <<.\n$opts->{data}\n";
exit(0);
}
# we're going to abstract away the actual connection layer from the mail
# process, so move the act of connecting into its own sub. The sub will
# set info in global hash %G::link
# XXX instead of passing raw data, have processs_opts create a link_data
# XXX hash that we can pass verbatim here
open_link();
sendmail($opts->{from}, $opts->{to}, $opts->{helo}, $opts->{data},
$opts->{a_user}, $opts->{a_pass}, $opts->{a_type});
teardown_link();
exit(0);
sub teardown_link {
if ($G::link{type} eq 'socket-inet' || $G::link{type} eq 'socket-unix') {
# XXX need anything special for tls teardown?
close($G::link{sock});
ptrans(11, "Connection closed with remote host.");
} elsif ($G::link{type} eq 'pipe') {
delete($SIG{PIPE});
$SIG{CHLD} = 'IGNORE';
close($G::link{sock}{wr});
close($G::link{sock}{re});
ptrans(11, "Connection closed with child process.");
}
}
sub open_link {
if ($G::link{type} eq 'socket-inet') {
ptrans(11, "Trying $G::link{server}:$G::link{port}...");
$@ = "";
$G::link{sock} = IO::Socket::INET->new(PeerAddr => $G::link{server},
PeerPort => $G::link{port}, Proto => 'tcp',
Timeout => $G::link{timeout},
LocalAddr => $G::link{lint});
if ($@) {
ptrans(12, "Error connecting $G::link{lint} " .
"to $G::link{server}:$G::link{port}:\n\t$@");
exit(2);
}
ptrans(11, "Connected to $G::link{server}.");
} elsif ($G::link{type} eq 'socket-unix') {
ptrans(11, "Trying $G::link{sockfile}...");
$SIG{PIPE} = 'IGNORE';
$@ = "";
$G::link{sock} = IO::Socket::UNIX->new(Peer => $G::link{sockfile},
Timeout => $G::link{timeout});
if ($@) {
ptrans(12, "Error connecting to $G::link{sockfile}:\n\t$@");
exit(2);
}
ptrans(11, "Connected to $G::link{sockfile}.");
} elsif ($G::link{type} eq 'pipe') {
$SIG{PIPE} = 'IGNORE';
$SIG{CHLD} = 'IGNORE';
ptrans(11, "Trying pipe to $G::link{process}...");
eval{
open2($G::link{sock}{re}, $G::link{sock}{wr}, $G::link{process});
};
if ($@) {
ptrans(12, "Error connecting to $G::link{process}:\n\t$@");
exit(2);
}
select((select($G::link{sock}{wr}), $| = 1)[0]);
select((select($G::link{sock}{re}), $| = 1)[0]);
ptrans(11, "Connected to $G::link{process}.");
} else {
ptrans(12, "Unknown or unimplemented connection type " .
"$G::link{type}");
exit(3);
}
}
sub sendmail {
my $from = shift; # envelope-from
my $to = shift; # envelope-to
my $helo = shift; # who am I?
my $data = shift; # body of message (content after DATA command)
my $a_user = shift; # what user to auth with?
my $a_pass = shift; # what pass to auth with
my $a_type = shift; # what kind of auth (this must be set to to attempt)
my $ehlo = {}; # If server is esmtp, save advertised features here
# start up tls if -tlsc specified
if ($G::tls_on_connect) {
if (start_tls()) {
ptrans(11, "TLS started w/ cipher $G::link{tls}{cipher}");
} else {
ptrans(12, "TLS startup failed ($G::link{tls}{res})");
exit(29);
}
}
# read the server's 220 banner
do_smtp_gen(undef, '220') || do_smtp_quit(1, 21);
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'connect');
# Send a HELO string
do_smtp_helo($helo, $ehlo, $G::protocol) || do_smtp_quit(1, 22);
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'first-helo');
# handle TLS here if user has requested it
if ($G::tls) {
do_smtp_quit(1, 29) if (!do_smtp_tls($ehlo) && !$G::tls_optional);
}
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'tls');
#if ($G::link{tls}{active} && $ehlo->{STARTTLS}) {
if ($G::link{tls}{active} && !$G::tls_on_connect) {
# According to RFC3207, we need to forget state info and re-EHLO here
$ehlo = {};
do_smtp_helo($helo, $ehlo, $G::protocol) || do_smtp_quit(1, 32);
}
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'helo');
# handle auth here if user has requested it
if ($a_type) {
do_smtp_quit(1, 28) if (!do_smtp_auth($ehlo, $a_type, $a_user, $a_pass)
&& !$G::auth_optional);
}
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'auth');
# send MAIL
#do_smtp_gen("MAIL FROM:<$from>", '250') || do_smtp_quit(1, 23);
do_smtp_mail($from); # failures in this handled by smtp_mail_callback
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'mail');
# send RCPT (sub handles multiple, comma-delimited recips
#do_smtp_rcpt($to) || do_smtp_quit(1, 24);
do_smtp_rcpt($to); # failures in this handled by smtp_rcpt_callback
# note that smtp_rcpt_callback increments
# $G::smtp_rcpt_failures at every failure. This and
# $G::smtp_rcpt_total are used after DATA for LMTP
# QUIT here if the user has asked us to do so
do_smtp_quit(1, 0) if ($G::quit_after eq 'rcpt');
# send DATA
do_smtp_gen('DATA', '354') || do_smtp_quit(1, 25);
# send the actual data
#do_smtp_gen($data, '250', undef, $G::suppress_data) || do_smtp_quit(1, 26);
# this was moved to a custom sub because the server will have a custom
# behaviour when using LMTP
do_smtp_data($data, $G::suppress_data) || do_smtp_quit(1, 26);
# send QUIT
do_smtp_quit(0) || do_smtp_quit(1, 27);
}
sub start_tls {
my %t = (); # This is a convenience var to access $G::link{tls}{...}
$G::link{tls} = \%t;
Net::SSLeay::load_error_strings();
Net::SSLeay::SSLeay_add_ssl_algorithms();
Net::SSLeay::randomize();
$t{con} = Net::SSLeay::CTX_new() || return(0);
Net::SSLeay::CTX_set_options($t{con}, &Net::SSLeay::OP_ALL); # error check
$t{ssl} = Net::SSLeay::new($t{con}) || return(0);
if ($G::link{type} eq 'pipe') {
Net::SSLeay::set_wfd($t{ssl}, fileno($G::link{sock}{wr})); # error check?
Net::SSLeay::set_rfd($t{ssl}, fileno($G::link{sock}{re})); # error check?
} else {
Net::SSLeay::set_fd($t{ssl}, fileno($G::link{sock})); # error check?
}
$t{active} = Net::SSLeay::connect($t{ssl}) == 1 ? 1 : 0;
$t{res} = Net::SSLeay::ERR_error_string(Net::SSLeay::ERR_get_error())
if (!$t{active});
$t{cipher} = Net::SSLeay::get_cipher($t{ssl});
return($t{active});
}
sub ptrans {
my $c = shift; # transaction flag
my $m = shift; # message to print
my $b = shift; # be brief in what we print
my $o = \*STDOUT;
my $f;
return if (($G::hide_send && int($c/10) == 2) ||
($G::hide_receive && int($c/10) == 3));
# global option silent controls what we echo to the terminal
# 0 - print everything
# 1 - don't show anything until you hit an error, then show everything
# received after that (done by setting option to 0 on first error)
# 2 - don't show anything but errors
# >=3 - don't print anything
if ($G::silent > 0) {
return if ($G::silent >= 3);
return if ($G::silent == 2 && $c%2 != 0);
if ($G::silent == 1) {
if ($c%2 != 0) {
return();
} else {
$G::silent = 0;
}
}
}
# 1x is program messages
# 2x is smtp send
# 3x is smtp recv
# x = 1 is info/normal
# x = 2 is error
# program info
if ($c == 11) { $f = '==='; }
# program error
elsif ($c == 12) { $f = '***'; $o = \*STDERR; }
# smtp send info
elsif ($c == 21) { $f = $G::link{tls}{active} ? ' ~>' : ' ->'; }
# smtp send error
elsif ($c == 22) { $f = $G::link{tls}{active} ? '*~>' : '**>'; }
# smtp recv info
elsif ($c == 31) { $f = $G::link{tls}{active} ? '<~ ' : '<- '; }
# smtp recv error
elsif ($c == 32) { $f = $G::link{tls}{active} ? '<~*' : '<**'; }
# something went unexpectedly
else { $c = '???'; }
$f .= ' ';
$f = '' if ($G::no_hints && int($c/10) != 1);
if ($b) {
# split to tmp list to prevent -w gripe
my @t = split(/\n/ms, $m); $m = scalar(@t) . " lines sent";
}
$m =~ s/\n/\n$f/msg;
print $o "$f$m\n";
}
sub do_smtp_quit {
my $exit = shift;
my $err = shift;
$G::link{allow_lost_cxn} = 1;
my $r = do_smtp_gen('QUIT', '221');
$G::link{allow_lost_cxn} = 0;
handle_disconnect($err) if ($G::link{lost_cxn});
if ($exit) {
teardown_link();
exit $err;
}
return($r);
}
sub do_smtp_tls {
my $e = shift; # ehlo config hash
if (!$e->{STARTTLS}) {
ptrans(12, "STARTTLS not supported");
return $G::tls_optional ? 1 : 0;
} elsif (!do_smtp_gen("STARTTLS", '220')) {
return $G::tls_optional ? 1 : 0;
} elsif (!start_tls()) {
ptrans(12, "TLS startup failed ($G::link{tls}{res})");
return $G::tls_optional ? 1 : 0;
}
ptrans(11, "TLS started w/ cipher $G::link{tls}{cipher}");
return(1);
}
sub do_smtp_auth {
my $e = shift; # ehlo config hash
my $at = shift; # auth type
my $au = shift; # auth user
my $ap = shift; # auth password
# the auth_optional stuff is handled higher up, so tell the truth about
# failing here
# note that we don't have to check whether the modules are loaded here,
# that's done in the option processing - trust that an auth type
# wouldn't be in $at if we didn't have the correct tools.
my $auth_attempted = 0; # set to true if we ever attempt auth
foreach my $btype (@$at) {
# if server doesn't support, skip type (may change in future)
next if (!$e->{AUTH}{$btype});
foreach my $type (@{$G::auth_map_t{'CRAM-MD5'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_cram($au, $ap, $type));
$auth_attempted = 1;
}
}
foreach my $type (@{$G::auth_map_t{'CRAM-SHA1'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_cram($au, $ap, $type));
$auth_attempted = 1;
}
}
foreach my $type (@{$G::auth_map_t{'DIGEST-MD5'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_digest($au, $ap, $type));
$auth_attempted = 1;
}
}
foreach my $type (@{$G::auth_map_t{'NTLM'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_ntlm($au, $ap, $type));
$auth_attempted = 1;
}
}
foreach my $type (@{$G::auth_map_t{'PLAIN'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_plain($au, $ap, $type));
$auth_attempted = 1;
}
}
foreach my $type (@{$G::auth_map_t{'LOGIN'}}) {
if ($btype eq $type) {
return(1) if (do_smtp_auth_login($au, $ap, $type));
$auth_attempted = 1;
}
}
}
if ($auth_attempted) {
ptrans(12, "No authentication type succeeded");
} else {
ptrans(12, "No acceptable authentication types available");
}
return(0);
}
sub do_smtp_auth_ntlm {
my $u = shift; # auth user
my $p = shift; # auth password
my $as = shift; # auth type (since NTLM might be SPA or MSN)
my $r = ''; # will store smtp response
my $domain;
($u,$domain) = split(/%/, $u);
my $auth_string = "AUTH $as";
do_smtp_gen($auth_string, '334') || return(0);
my $d = db64(Authen::NTLM::ntlm());
$auth_string = eb64($d);
do_smtp_gen($auth_string, '334', \$r, '', $G::auth_showpt ? "$d" : '',
$G::auth_showpt ? \&unencode_smtp : '') || return(0);
$r =~ s/^....//; # maybe something a little better here?
Authen::NTLM::ntlm_domain($domain);
Authen::NTLM::ntlm_user($u);
Authen::NTLM::ntlm_password($p);
$d = db64(Authen::NTLM::ntlm($r));
$auth_string = eb64($d);
do_smtp_gen($auth_string, '235', \$r, '',
$G::auth_showpt ? "$d" : '') || return(0);
return(1);
}
sub do_smtp_auth_digest {
my $u = shift; # auth user
my $p = shift; # auth password
my $as = shift; # auth string
my $r = ''; # will store smtp response
my $auth_string = "AUTH $as";
do_smtp_gen($auth_string, '334', \$r, '', '',
$G::auth_showpt ? \&unencode_smtp : '')
|| return(0);
$r =~ s/^....//; # maybe something a little better here?
$r = db64($r);
my $req = Authen::DigestMD5::Request->new($r);
my $res = Authen::DigestMD5::Response->new();
$res->got_request($req);
# XXX using link{server} here is probably a bug, but I don;t know what else
# XXX to use yet on a non-inet-socket connection
$res->set('username' => $u, 'realm' => '',
'digest-uri' => "smtp/$G::link{server}");
$res->add_digest(password => $p);
my $d = $res->output();
$auth_string = eb64($d);
do_smtp_gen($auth_string, '334', \$r, '', $G::auth_showpt ? "$d" : '',
$G::auth_showpt ? \&unencode_smtp : '')
|| return(0);
$r =~ s/^....//; # maybe something a little better here?
$r = db64($r);
$req->input($r);
return(0) if (!$req->auth_ok);
do_smtp_gen("", '235', undef, '',
$G::auth_showpt ? "" : '') || return(0);
return(1);
}
# This can handle both CRAM-MD5 and CRAM-SHA1
sub do_smtp_auth_cram {
my $u = shift; # auth user
my $p = shift; # auth password
my $as = shift; # auth string
my $r = ''; # will store smtp response
my $auth_string = "AUTH $as";
do_smtp_gen($auth_string, '334', \$r, '', '',
$G::auth_showpt ? \&unencode_smtp : '')
|| return(0);
$r =~ s/^....//; # maybe something a little better here?
# specify which type of digest we need based on $as
my $d = get_digest($p, $r, ($as =~ /-SHA1$/ ? 'sha1' : 'md5'));
$auth_string = eb64("$u $d");
do_smtp_gen($auth_string, '235', undef, '',
$G::auth_showpt ? "$u $d" : '') || return(0);
return(1);
}
sub do_smtp_auth_login {
my $u = shift; # auth user
my $p = shift; # auth password
my $as = shift; # auth string
my $z = '';
my $auth_string = "AUTH $as";
do_smtp_gen($auth_string, '334', undef, '', '',
$G::auth_showpt ? \&unencode_smtp : '') || return(0);
$auth_string = eb64($u);
$z = $u if ($G::auth_showpt);
do_smtp_gen($auth_string, '334', undef, '', $z,
$G::auth_showpt ? \&unencode_smtp : '') || return(0);
$auth_string = eb64($p);
$z = $p if ($G::auth_showpt);
do_smtp_gen($auth_string, '235', undef, '', $z) || return(0);
return(1);
}
sub do_smtp_auth_plain {
my $u = shift; # auth user
my $p = shift; # auth password
my $as = shift; # auth string
my $auth_string = "AUTH $as " . eb64("\0$u\0$p");
my $z = '';
if ($G::auth_showpt) {
$z = "AUTH $as \\0$u\\0$p";
}
return(do_smtp_gen($auth_string, '235', undef, '', $z));
}
sub do_smtp_helo {
my $h = shift; # helo string to use
my $e = shift; # this is a hashref that will be populated w/ server options
my $p = shift; # protocol for the transaction
my $r = ''; # this'll be populated by do_smtp_gen
if ($p eq 'esmtp' || $p eq 'lmtp') {
my $l = $p eq 'lmtp' ? "LHLO" : "EHLO";
if (do_smtp_gen("$l $h", '250', \$r)) {
# $ehlo is designed to hold the advertised options, but I'm not sure how
# to store them all - for instance, SIZE is a simple key/value pair, but
# AUTH lends itself more towards a multilevel hash. What I'm going to do
# is come here and add each key in the way that makes most sense in each
# case. I only need auth for now.
foreach my $l (split(/\n/, $r)) {
$l =~ s/^....//;
if ($l =~ /^AUTH=?(.*)$/) {
map { $e->{AUTH}{uc($_)} = 1 } (split(' ', $1));
} elsif ($l =~ /^STARTTLS$/) {
$e->{STARTTLS} = 1;
} elsif ($l =~ /^PIPELINING$/) {
$e->{PIPELINING} = 1;
$G::pipeline_adv = 1;
}
}
return(1);
}
}
if ($p eq 'esmtp' || $p eq 'smtp') {
return(do_smtp_gen("HELO $h", '250'));
}
return(0);
}
sub do_smtp_mail {
my $m = shift; # from address
transact(cxn_string => "MAIL FROM:<$m>", expect => '250', defer => 1,
fail_callback => \&smtp_mail_callback);
return(1); # the callback handles failures, so just return here
}
# this only really needs to exist until I figure out a clever way of making
# do_smtp_quit the callback while still preserving the exit codes
sub smtp_mail_callback {
do_smtp_quit(1, 23);
}
sub do_smtp_rcpt {
my $m = shift; # string of comma separated recipients
my $f = 0; # The number of failures we've experienced
my @a = split(/,/, $m);
$G::smtp_rcpt_total = scalar(@a);
foreach my $addr (@a) {
#$f++ if (!do_smtp_gen("RCPT TO:<$addr>", '250'));
transact(cxn_string => "RCPT TO:<$addr>", expect => '250', defer => 1,
fail_callback => \&smtp_rcpt_callback);
}
return(1); # the callback handles failures, so just return here
# # if at least one addr succeeded, we can proceed, else we stop here
# return $f == scalar(@a) ? 0 : 1;
}
sub smtp_rcpt_callback {
# record that a failure occurred
$G::smtp_rcpt_failures++;
# if the number of failures is the same as the total rcpts (if every rcpt
# rejected), quit.
if ($G::smtp_rcpt_failures == $G::smtp_rcpt_total) {
do_smtp_quit(1, 24);
}
}
sub do_smtp_data {
my $m = shift; # string to send
my $b = shift; # be brief in the data we send
my $calls = $G::smtp_rcpt_total - $G::smtp_rcpt_failures;
my $ok = transact(cxn_string => $m, expect => '250', summarize_output => $b);
# now be a little messy - lmtp is not a lockstep after data - we need to
# listen for as many calls as we had accepted recipients
if ($G::protocol eq 'lmtp') {
foreach my $c (1..($calls-1)) { # -1 because we already got 1 above
$ok += transact(cxn_string => undef, expect => '250');
}
}
return($ok)
}
sub do_smtp_gen {
my $m = shift; # string to send
my $e = shift; # String we're expecting to get back
my $p = shift; # this is a scalar ref, assign the server return string to it
my $b = shift; # be brief in the data we send
my $x = shift; # if this is populated, print this instead of $m
my $c = shift; # if this is a code ref, call it on the return value b4 print
my $r = ''; # This'll be the return value from transact()
my $time;
return transact(cxn_string => $m, expect => $e, return_text => $p,
summarize_output => $b, show_string => $x,
print_callback => $c);
}
# If we detect that the other side has gone away when we were expecting
# to still be reading, come in here to error and die. Abstracted because
# the error message will vary depending on the type of connection
sub handle_disconnect {
my $e = shift || 6; # this is the code we will exit with
if ($G::link{type} eq 'socket-inet') {
ptrans(12, "Remote host closed connection unexpectedly.");
} elsif ($G::link{type} eq 'socket-unix') {
ptrans(12, "Socket closed connection unexpectedly.");
} elsif ($G::link{type} eq 'pipe') {
ptrans(12, "Child process closed connection unexpectedly.");
}
exit($e);
}
sub flush_send_buffer {
my $s = $G::link{type} eq 'pipe' ? $G::link{sock}->{wr} : $G::link{sock};
return if (!$G::send_buffer);
if ($G::link{tls}{active}) {
my $res = Net::SSLeay::write($G::link{tls}{ssl}, $G::send_buffer);
} else {
print $s $G::send_buffer;
}
$G::send_buffer = '';
}
sub send_data {
my $d = shift; # data to write
$G::send_buffer .= "$d\r\n";
}
sub recv_line {
# Either an IO::Socket obj or a FH to my child - the thing to read from
my $s = $G::link{type} eq 'pipe' ? $G::link{sock}->{re} : $G::link{sock};
my $r = undef;
if ($G::link{tls}{active}) {
$r = Net::SSLeay::read($G::link{tls}{ssl});
} else {
$r = <$s>;
}
$r =~ s|\r||msg;
#print "in recv_line, returning \$r = $r\n";
return($r);
}
# any request which has immediate set will be checking the return code.
# any non-immediate request will handle results through fail_callback().
# therefore, only return the state of the last transaction attempted,
# which will always be immediate
# We still need to reimplement timing
sub transact {
my %h = @_; # this is an smtp transaction element
my $ret = 1; # this is our return value
my @handlers = (); # will hold and fail_handlers we need to run
my $time = ''; # used in time lapse calculations
push(@G::pending_send, \%h); # push onto send queue
if (!($G::pipeline && $G::pipeline_adv) || !$h{defer}) {
if ($G::show_time_lapse) {
if ($G::show_time_hires) { $time = [Time::HiRes::gettimeofday()]; }
else { $time = time(); }
}
while (my $i = shift(@G::pending_send)) {
if ($i->{cxn_string}) {
ptrans(21,$i->{show_string}||$i->{cxn_string},$i->{summarize_output});
send_data($i->{cxn_string});
}
push(@G::pending_recv, $i);
}
flush_send_buffer();
while (my $i = shift(@G::pending_recv)) {
my $buff = '';
eval {
local $SIG{'ALRM'} = sub {
$buff ="Timeout ($G::link{timeout} secs) waiting for server response";
die;
};
alarm($G::link{timeout});
while ($buff !~ /^\d\d\d /m) {
my $l = recv_line();
$buff .= $l;
if (!defined($l)) {
$G::link{lost_cxn} = 1;
last;
}
}
chomp($buff);
alarm(0);
};
if ($G::show_time_lapse) {
if ($G::show_time_hires) {
$time = sprintf("%0.03f", Time::HiRes::tv_interval($time,
[Time::HiRes::gettimeofday()]));
ptrans(11, "response in ${time}s");
$time = [Time::HiRes::gettimeofday()];
} else {
$time = time() - $time;
ptrans(11, "response in ${time}s");
$time = time();
}
}
${$i->{return_text}} = $buff;
$buff = &{$i->{print_callback}}($buff)
if (ref($i->{print_callback}) eq 'CODE');
my $ptc;
($ret,$ptc) = $buff !~ /^$i->{expect} /m ? (0,32) : (1,31);
ptrans($ptc, $buff) if ($buff);
if ($G::link{lost_cxn}) {
if ($G::link{allow_lost_cxn}) {
# this means the calling code wants to handle a lost cxn itself
return($ret);
} else {
# if caller didn't want to handle, we'll handle a lost cxn ourselves
handle_disconnect();
}
}
if (!$ret && ref($i->{fail_callback}) eq 'CODE') {
push(@handlers, $i->{fail_callback});
}
}
}
foreach my $h (@handlers) { &{$h}(); }
return($ret);
}
sub unencode_smtp {
my $t = shift;
my @t = split(' ', $t);
return("$t[0] " . db64($t[1]));
}
sub process_file {
my $f = shift;
my $h = shift;
if (! -e "$f") {
ptrans(12, "File $f does not exist, skipping");
return;
} elsif (! -f "$f") {
ptrans(12, "File $f is not a file, skipping");
return;
} elsif (!open(I, "<$f")) {
ptrans(12, "Couldn't open $f, skipping... ($!)");
return;
}
while (<I>) {
chomp;
next if (/^#?\s*$/); # skip blank lines and those that start w/ '#'
my($key,$value) = split(' ', $_, 2);
$h->{uc($key)} = $value;
}
return;
}
sub interact {
my($prompt) = shift;
my($regexp) = shift;
my($continue) = shift;
my($response) = '';
do {
print "$prompt";
chomp($response = <STDIN>);
} while ($regexp ne 'SKIP' && $response !~ /$regexp/);
return($response);
}
sub get_hostname {
# in some cases hostname returns value but gethostbyname doesn't.
return("") if (!avail("hostname"));
my $h = hostname();
return("") if (!$h);
my $l = (gethostbyname($h))[0];
return($l || $h);
}
sub get_server {
my $addr = shift;
my $pref = -1;
my $server = "localhost";
if ($addr =~ /\@\[(\d+\.\d+\.\d+\.\d+)\]$/) {
# handle automatic routing of domain literals (user@[1.2.3.4])
return($1);
} elsif ($addr =~ /\@\#(\d+)$/) {
# handle automatic routing of decimal domain literals (user@#16909060)
$addr = $1;
return(($addr/(2**24))%(2**8) . '.' . ($addr/(2**16))%(2**8) . '.'
.($addr/(2**8))%(2**8) . '.' . ($addr/(2**0))%(2**8));
}
if (!avail("dns")) {
ptrans(12, avail_str("dns").". Using $server as mail server");
return($server);
}
my $res = new Net::DNS::Resolver;
return($server) if ($addr !~ /\@/);
$addr =~ s/^.*\@([^\@]*)$/$1/;
return($server) if (!$addr);
$server = $addr;
my @mx = mx($res, $addr);
foreach my $rr (@mx) {
if ($rr->preference < $pref || $pref == -1) {
$pref = $rr->preference;
$server = $rr->exchange;
}
}
return($server);
}
sub load {
my $m = shift;
return $G::modules{$m} if (exists($G::modules{$m}));
eval("use $m");
return $G::modules{$m} = $@ ? 0 : 1;
}
# Currently this is just an informational string - it's set on both
# success and failure. It currently has four output formats (supported,
# supported but not optimal, unsupported, unsupported and missing optimal)
sub avail_str { return $G::dependencies{$_[0]}{errstr}; }
sub avail {
my $f = shift; # this is the feature we want to check support for (auth, tls)
my $s = \%G::dependencies;
# return immediately if we've already tested this.
return($s->{$f}{avail}) if (exists($s->{$f}{avail}));
$s->{$f}{req_failed} = [];
$s->{$f}{opt_failed} = [];
foreach my $m (@{$s->{$f}{req}}) {
push(@{$s->{$f}{req_failed}}, $m) if (!load($m));
}
foreach my $m (@{$s->{$f}{opt}}) {
push(@{$s->{$f}{opt_failed}}, $m) if (!load($m));
}
if (scalar(@{$s->{$f}{req_failed}})) {
$s->{$f}{errstr} = "$s->{$f}{name} not available: requires "
. join(', ', @{$s->{$f}{req_failed}});
if (scalar(@{$s->{$f}{opt_failed}})) {
$s->{$f}{errstr} .= ". Also missing optimizing "
. join(', ', @{$s->{$f}{opt_failed}});