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
|
/*
SMTP PING
Copyright (C) 2011 Halon Security <support@halon.se>
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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <string>
#include <vector>
#include <stdexcept>
#include <fstream>
using std::string;
using std::vector;
#ifdef __WIN32__
#include <winsock2.h>
#include <ws2tcpip.h>
#include <winbase.h>
#else
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/wait.h>
#include <errno.h>
#include <semaphore.h>
#include <sys/mman.h>
#if _POSIX_SEMAPHORES && MAP_ANONYMOUS
#define SUPPORT_RATE
#endif
#endif
/* DNS Resolver */
#include "resolver.hpp"
/*
* Global Variables
*/
bool debug = false;
#define APP_VERSION "1.1.4"
#define APP_NAME "smtpping"
/*
* Signal Handlers (abort ping and show statistics)
*/
bool abort_ping = false;
void abort(int)
{
abort_ping = true;
signal(SIGINT, SIG_DFL);
}
/*
* SMTPReadLine: read a smtp line and return status code
* return false on disconnect
*/
bool SMTPReadLine(int s, size_t& ret)
{
#ifdef __WIN32__
#define MSG_NOSIGNAL 0
#endif
char buf[1];
string cmd;
int r;
do {
r = recv(s, buf, sizeof buf, MSG_NOSIGNAL);
if (r > 0) cmd += buf[0];
if (buf[0] == '\n')
{
if (debug)
fprintf(stderr, "response %s", cmd.c_str());
/* support multi-line responses */
if (cmd.size() > 4 && cmd[3] == ' ')
{
ret = strtoul(cmd.substr(0, 3).c_str(), NULL, 10);
return true;
} else
cmd.clear();
}
} while(r > 0);
return false;
}
/*
* high resolution timers (should return ms with 2 decimals)
*/
#ifdef WIN32
#include <windows.h>
double PCFreq = 0.0;
__int64 CounterStart = 0;
/* initialize counters */
void StartCounter()
{
LARGE_INTEGER li;
if(!QueryPerformanceFrequency(&li))
return;
PCFreq = double(li.QuadPart)/1000.0;
QueryPerformanceCounter(&li);
CounterStart = li.QuadPart;
}
/* GetHighResTime(): should be ported */
double GetHighResTime()
{
LARGE_INTEGER li;
QueryPerformanceCounter(&li);
return double(li.QuadPart-CounterStart)/PCFreq;
}
#else
#include <sys/time.h>
/* GetHighResTime(): should be ported */
double GetHighResTime()
{
struct timeval tv;
if(gettimeofday(&tv, NULL) != 0)
return 0;
return (tv.tv_sec * 1000.0) + (tv.tv_usec / 1000.0);
}
#endif
/*
* usage information, displays all arugments and a short help
*/
void usage(const char* name, FILE* fp, int status)
{
fprintf(fp,
"Usage: " APP_NAME " [ARGS] x@y.z [@server]\n"
"Where: x@y.z is the address that will receive e-mail\n"
" server is the address to connect to (optional)\n"
" ARGS is one or many of: (optional)\n"
" -h, --help\tShow this help message\n"
" -v, --version\tShow version\n"
" -d, --debug\tShow more debugging\n"
" -4\t\tUse IPv4\n"
" -6\t\tUse IPv6\n"
" -b, --bind\tBind source address\n"
" -p, --port\tWhich TCP port to use [default: 25]\n"
" -w, --wait\tTime to wait between PINGs [default: 1000]"
" (ms)\n"
" -c, --count\tNumber of messages [default: unlimited]\n"
" -P, --parallel\tNumber of parallel workers [default: 1]\n"
" -s, --size\tMessage size in kilobytes [default: 10]"
" (KiB)\n"
" -f, --file\tSend message file (RFC 822)\n"
" -H, --helo\tHELO domain [default: localhost.localdomain]\n"
" -S, --sender\tSender address [default: empty]\n"
" -C, --chunking\tUse CHUNKING (BDAT)\n"
" -r, --rate\tShow message rate per second\n"
" -q, --quiet\tShow less output\n"
" -J\t\tRun in jailed mode (forbid --file)\n"
"\n"
" If no @server is specified, " APP_NAME " will try to find "
"the recipient domain's\n MX record, falling back on A/AAAA "
"records.\n"
"\n"
" " APP_NAME " " APP_VERSION " built on " __DATE__
" (c) Halon Security <support@halon.se>\n"
);
exit(status);
}
int main(int argc, char* argv[])
{
/* register signal handlers */
signal(SIGINT, abort);
#ifdef __WIN32__
/* initialize winsock */
WSAData wData;
WSAStartup(MAKEWORD(2,2), &wData);
#endif
/* default pareamters */
const char *smtp_bind = NULL;
const char *smtp_helo = "localhost.localdomain";
const char *smtp_from = "";
const char *smtp_port = "25";
const char *smtp_rcpt = NULL;
const char *smtp_file = NULL;
unsigned int smtp_probes = 0;
unsigned int smtp_probe_wait = 1000;
unsigned int smtp_data_size = 10;
unsigned int forks = 0;
bool show_rate = false;
bool quiet = false;
bool safe_mode = false;
unsigned int proto = 0;
bool chunking = false;
/* no arguments: show help */
if (argc < 2)
usage(argv[0], stderr, 2);
/* getopts/longopts */
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ "version", no_argument, NULL, 'v' },
{ "helo", required_argument, NULL, 'H' },
{ "sender", required_argument, NULL, 'S' },
{ "count", required_argument, NULL, 'c' },
{ "wait", required_argument, NULL, 'w' },
{ "parallel", required_argument, NULL, 'P' },
{ "size", required_argument, NULL, 's' },
{ "port", required_argument, NULL, 'p' },
{ "file", required_argument, NULL, 'f' },
{ "rate", no_argument, NULL, 'r' },
{ "quiet", no_argument, NULL, 'q' },
{ "bind", required_argument, NULL, 'b' },
{ "chunking", no_argument, NULL, 'C' },
{ NULL, 0, NULL, 0 }
};
opterr = 0;
optind = 0;
int ch;
while ((ch = getopt_long(argc, argv, "H:S:s:hw:c:P:p:df:rqJ46b:Cv", longopts, NULL)) != -1)
{
switch(ch)
{
case 'H':
smtp_helo = optarg;
break;
case 'S':
smtp_from = optarg;
break;
case 's':
smtp_data_size = strtoul(optarg, NULL, 10);
break;
case 'h':
usage(argv[0], stdout, 0);
break;
case 'w':
smtp_probe_wait = strtoul(optarg, NULL, 10);
break;
case 'c':
smtp_probes = strtoul(optarg, NULL, 10);
break;
case 'p':
smtp_port = optarg;
break;
case 'P':
forks = strtoul(optarg, NULL, 10);
break;
case 'd':
debug = true;
break;
case 'r':
show_rate = true;
quiet = true;
break;
case 'q':
quiet = true;
break;
case 'f':
smtp_file = optarg;
break;
case 'J':
safe_mode = true;
break;
case '4':
proto = AF_INET;
break;
case '6':
proto = AF_INET6;
break;
case 'b':
smtp_bind = optarg;
break;
case 'C':
chunking = true;
break;
case 'v':
printf("%s\n", APP_VERSION);
exit(0);
break;
default:
usage(argv[0], stderr, 2);
break;
}
}
if (safe_mode && smtp_file)
usage(argv[0], stderr, 2);
argc -= optind;
argv += optind;
/* no e-mail or mx specified */
if (argc < 1)
usage(argv[0], stderr, 2);
/* mail address */
smtp_rcpt = argv[0];
string data;
if (smtp_file) {
/* read smtp_file */
std::ifstream ifs(smtp_file, std::ios::in | std::ios::binary);
if (!ifs.good())
fprintf(stderr, "warning: file %s could not be opened\n"
, smtp_file);
else
data.append(std::istreambuf_iterator<char>(ifs.rdbuf()),
std::istreambuf_iterator<char>());
if (!chunking) data += ".\r\n";
} else {
/* generate message with approximatly size */
data += "Subject: SMTP Ping\r\n";
data += "Content-Type: text/plain\r\n";
data += string("From: <") + smtp_from + ">\r\n";
data += string("To: <") + smtp_rcpt + ">\r\n";
data += "\r\n";
while (data.size() / 1024 < smtp_data_size)
data += "AABBCCDDEEFFGGHHIIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXXYYZZ"
"00112233445566778899\r\n";
if (!chunking) data += "\r\n.\r\n";
}
if (chunking) data = "BDAT " + std::to_string(data.size()) + " LAST\r\n" + data;
Resolver resolv;
vector<string> address;
/* user@example.com @mailserver */
if (argc > 1)
{
if (argv[1][0] != '@')
usage(argv[0], stderr, 2);
/* jmp past '@' */
const char* domain = argv[1] + 1;
char buf[sizeof(struct in6_addr)];
if (inet_pton(AF_INET, domain, &buf) == 1 || inet_pton(AF_INET6, domain, &buf) == 1)
address.push_back(domain);
else
{
/* resolve as A/AAAA */
if (!resolv.Lookup(domain, Resolver::RR_A, address))
if (debug) fprintf(stderr, "warning: failed to resolve "
"A for %s\n", domain);
if (!resolv.Lookup(domain, Resolver::RR_AAAA, address))
if (debug) fprintf(stderr, "warning: failed to resolve "
"AAAA for %s\n", domain);
/* could not resolve, try to use address */
if (address.empty())
address.push_back(domain);
}
} else
{
/* use mailaddress as mx */
const char* domain = strrchr(smtp_rcpt, '@');
/* no domain, abort! */
if (!domain)
usage(argv[0], stderr, 2);
/* jmp past '@' */
domain += 1;
/* resolve as MX, with A/AAAA fallback */
vector<string> mx;
if (!resolv.Lookup(domain, Resolver::RR_MX, mx))
{
/* if dns failed, we should not try A/AAAA,
only if no data is returned */
fprintf(stderr, "failed to resolve %s\n", domain);
} else
{
/* no data, try A/AAAAA */
if (mx.empty())
{
if (debug) fprintf(stderr, " no mx, failling "
"back on A/AAAA record for %s\n",
domain);
if (!resolv.Lookup(domain, Resolver::RR_A,
address))
if (debug) fprintf(stderr, "failed to "
"resolve A for %s\n", domain);
if (!resolv.Lookup(domain, Resolver::RR_AAAA,
address))
if (debug) fprintf(stderr, "failed to "
"resolve AAAA for %s\n",
domain);
} else
{
/* resolve all mx */
for(vector<string>::const_iterator i = mx.begin();
i != mx.end(); ++i)
{
bool ok = false;
if (!resolv.Lookup(*i, Resolver::RR_A, address))
{
if (debug) fprintf(stderr, "warning: failed "
"to resolve A for %s\n", i->c_str());
else
ok = true;
}
if (!resolv.Lookup(*i, Resolver::RR_AAAA, address))
{
if (debug) fprintf(stderr, "warning: failed to "
"resolve AAAA for %s\n", i->c_str());
else
ok = true;
}
/* could not reslove as either A or AAAA:
maybe it's an IP */
if (!ok)
address.push_back(*i);
}
}
}
}
#ifdef SUPPORT_RATE
sem_t* sem = (sem_t*)mmap(NULL, sizeof(sem_t), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0);
if (sem_init(sem, 1, 1) != 0)
fprintf(stderr, "sem_init: failed\n");
size_t* counter = (size_t*)mmap(NULL, sizeof(size_t), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0);
*counter = 0;
#else
if (show_rate) {
fprintf(stderr, "-r is not supported on this platform\n");
return 1;
}
#endif
unsigned int child = 1;
if (forks > 0) {
#ifdef __WIN32__
fprintf(stderr, "-P is not supported on this platform\n");
return 1;
#else
pid_t pid;
for (; child <= forks; ++child) {
pid = fork();
if (pid == 0)
goto spawn;
}
#ifdef SUPPORT_RATE
while (show_rate && !abort_ping) {
sem_wait(sem);
printf("%zu\n", *counter);
*counter = 0;
sem_post(sem);
sleep(1);
}
#endif
while ((pid = waitpid(-1, NULL, 0))) {
if (errno == ECHILD) {
break;
}
}
return 0;
#endif
} else if (show_rate) {
fprintf(stderr, "-r only works with -P1 or greater\n");
return 1;
}
spawn:
/* register statistics */
#define STATS_GLOB(name) \
double smtp_##name##_min = -1, smtp_##name##_max = -1,\
smtp_##name##_sum = 0 , smtp_##name##_num = 0;
STATS_GLOB(connect);
STATS_GLOB(banner);
STATS_GLOB(helo);
STATS_GLOB(mailfrom);
STATS_GLOB(rcptto);
STATS_GLOB(data);
STATS_GLOB(datasent);
STATS_GLOB(quit);
#define STATS(name, min) \
double smtp_##name = GetHighResTime();\
if (smtp_##name - smtp_##min < smtp_##name##_min ||\
smtp_##name##_min == -1)\
smtp_##name##_min = smtp_##name - smtp_##min;\
if (smtp_##name - smtp_##min > smtp_##name##_max ||\
smtp_##name##_max == -1)\
smtp_##name##_max = smtp_##name - smtp_##min;\
smtp_##name##_sum += smtp_##name - smtp_##min; smtp_##name##_num++;
#define STATS_TIME(name) \
(smtp_##name - smtp_init)
#define STATS_SESSION_TIME(name) \
(smtp_##name - smtp_connect)
struct addrinfo *bindIP = NULL, bindIPTmp;
if (smtp_bind)
{
memset(&bindIPTmp, 0, sizeof bindIPTmp);
bindIPTmp.ai_family = AF_UNSPEC;
bindIPTmp.ai_socktype = SOCK_STREAM;
int r = getaddrinfo(smtp_bind, 0, &bindIPTmp, &bindIP);
if (r != 0)
{
fprintf(stderr, "getaddrinfo() failed %s: %s\n",
smtp_bind, gai_strerror(r));
return 1;
}
}
/* connect to the first working address */
unsigned int smtp_seq = 0;
vector<string>::const_iterator i;
for(i = address.begin(); i != address.end(); ++i)
{
struct addrinfo *res = NULL, resTmp;
memset(&resTmp, 0, sizeof resTmp);
resTmp.ai_family = AF_UNSPEC;
resTmp.ai_socktype = SOCK_STREAM;
int r = getaddrinfo(i->c_str(), smtp_port, &resTmp, &res);
if (r != 0)
{
fprintf(stderr, "getaddrinfo() failed %s: %s\n",
i->c_str(), gai_strerror(r));
continue;
}
if (proto && res->ai_family != proto)
continue;
if (bindIP && bindIP->ai_family != res->ai_family)
continue;
/* print header */
if (!quiet)
printf("PING %s ([%s]:%s): %d bytes (SMTP DATA)\n",
smtp_rcpt, i->c_str(), smtp_port,
(unsigned int)data.size());
reconnect:
/* abort by ctrl+c or if smtp_seq is done */
if (abort_ping || (smtp_probes && smtp_seq >= smtp_probes)) {
freeaddrinfo(res);
break;
}
/* sleep between smtp_req */
if (smtp_seq > 0)
{
#ifdef __WIN32__
Sleep(smtp_probe_wait);
#else
usleep(smtp_probe_wait * 1000);
#endif
}
/* only increase if smtp_req > 0 */
if (smtp_seq > 0)
smtp_seq++;
int s = socket(res->ai_family, res->ai_socktype,
res->ai_protocol);
if (s == -1)
{
fprintf(stderr, "seq=%u: socket() failed\n",
smtp_seq);
if (smtp_seq == 0) {
freeaddrinfo(res);
continue;
} else {
goto reconnect;
}
}
if (bindIP && bind(s, bindIP->ai_addr, bindIP->ai_addrlen) != 0)
{
fprintf(stderr, "seq=%u: bind() failed\n",
smtp_seq);
if (smtp_seq == 0) {
freeaddrinfo(res);
continue;
} else {
goto reconnect;
}
}
/* initiate counters on windows */
#ifdef __WIN32__
StartCounter();
#endif
/* start up time */
double smtp_init = GetHighResTime();
/* connect */
if (connect(s, res->ai_addr, res->ai_addrlen) != 0) {
fprintf(stderr, "seq=%u: connect() failed "
"%s\n", smtp_seq, i->c_str());
if (smtp_seq == 0) {
freeaddrinfo(res);
continue;
} else {
close(s);
goto reconnect;
}
}
STATS(connect, init);
/* if it's working, start smtp_req */
if (smtp_seq == 0)
smtp_seq = 1;
/*
* < SMTP Banner
*/
string cmd;
size_t ret;
if (!SMTPReadLine(s, ret) || ret / 100 != 2)
{
fprintf(stderr, "seq=%u: recv: BANNER failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(banner, connect);
/*
* > HELO helo
* < 250 OK
*/
cmd = string("HELO ") + smtp_helo + "\r\n";
if (send(s, cmd.c_str(), cmd.size(), 0) != (int)cmd.size())
{
fprintf(stderr, "seq=%u: send: failed\n", smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret) || ret / 100 != 2)
{
fprintf(stderr, "seq=%u: recv: HELO failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(helo, connect);
/*
* > MAIL FROM: <address>
* < 250 OK
*/
cmd = string("MAIL FROM: <") + smtp_from + ">\r\n";
if (send(s, cmd.c_str(), cmd.size(), 0) != (int)cmd.size())
{
fprintf(stderr, "seq=%u: send: failed\n", smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret) || ret / 100 != 2)
{
fprintf(stderr, "seq=%u: recv: MAIL FROM failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(mailfrom, connect);
/*
* > RCPT TO: <address>
* < 250 OK
*/
cmd = string("RCPT TO: <") + smtp_rcpt + ">\r\n";
if (send(s, cmd.c_str(), cmd.size(), 0) != (int)cmd.size())
{
fprintf(stderr, "seq=%u: send: failed\n", smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret) || ret / 100 != 2)
{
fprintf(stderr, "seq=%u: recv: RCPT TO failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(rcptto, connect);
if (!chunking)
{
/*
* > DATA
* < 354 Feed me
*/
cmd = string("DATA\r\n");
if (send(s, cmd.c_str(), cmd.size(), 0) != (int)cmd.size())
{
fprintf(stderr, "seq=%u: send: failed\n", smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret) || ret / 100 != 3)
{
fprintf(stderr, "seq=%u: recv: DATA failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
}
STATS(data, connect);
/*
* > data...
* < ??? Mkay
*/
if (send(s, data.c_str(), data.size(), 0) != (int)data.size())
{
fprintf(stderr, "seq=%u: send: failed\n", smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret))
{
fprintf(stderr, "seq=%u: recv: EOM failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(datasent, connect);
/*
* > QUIT
* < ??? Mkay
*/
cmd = string("QUIT\r\n");
if (send(s, cmd.c_str(), cmd.size(), 0) != (int)cmd.size())
{
fprintf(stderr, "seq=%u: send: QUIT failed\n",
smtp_seq);
close(s);
goto reconnect;
}
if (!SMTPReadLine(s, ret))
{
fprintf(stderr, "seq=%u: recv: QUIT failed (%zu)\n",
smtp_seq, ret);
close(s);
goto reconnect;
}
STATS(quit, connect);
shutdown(s, 2);
close(s);
#ifdef SUPPORT_RATE
if (show_rate) {
sem_wait(sem);
(*counter)++;
sem_post(sem);
}
#endif
/* print statistics */
if (!quiet)
printf("seq=%u, connect=%.2lf ms, helo=%.2lf ms, "
"mailfrom=%.2lf ms, rcptto=%.2lf ms, datasent=%.2lf ms, "
"quit=%.2lf ms\n",
smtp_seq,
STATS_TIME(connect),
STATS_SESSION_TIME(helo),
STATS_SESSION_TIME(mailfrom),
STATS_SESSION_TIME(rcptto),
STATS_SESSION_TIME(datasent),
STATS_SESSION_TIME(quit)
);
/* next loop */
goto reconnect;
}
/* if we successfully connected somewhere */
if (forks > 1)
;
else if (i != address.end() && smtp_seq > 0)
{
printf("\n--- %s SMTP ping statistics ---\n", i->c_str());
printf("%u e-mail messages transmitted\n", smtp_seq);
#define SHOWSTAT(x) \
printf(#x " min/avg/max = %.2lf/%.2lf/%.2lf ms\n", \
smtp_##x##_min, smtp_##x##_num>0?smtp_##x##_sum / smtp_##x##_num:0, \
smtp_##x##_max);
SHOWSTAT(connect);
SHOWSTAT(banner);
SHOWSTAT(helo);
SHOWSTAT(mailfrom);
SHOWSTAT(rcptto);
SHOWSTAT(data);
SHOWSTAT(datasent);
SHOWSTAT(quit);
} else
{
printf("\n--- no pings were sent ---\n");
}
#ifdef __WIN32__
if (abort_ping)
{
printf("Aborted by Control-C\n");
}
WSACleanup();
#endif
return 0;
}
|