summaryrefslogtreecommitdiffstats
path: root/web/attachments/104059-check_smtp.c.patch
blob: 4977bcc1f5ad651a9f119d7d69c5b8a65527617b (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
*** check_smtp.c	Fri Mar  7 02:15:40 2003
--- /usr/local/projects/nagios-plugins-1.3.1/plugins//check_smtp.c	Wed Sep 29 15:14:33 2004
***************
*** 37,46 ****
--- 37,64 ----
  #include "config.h"
  #include "common.h"
  #include "netutils.h"
  #include "utils.h"
  
+ #ifdef HAVE_SSL
+ #include <openssl/ssl.h>
+ #include <openssl/x509.h>
+ #include <openssl/err.h>
+ #include <openssl/rand.h>
+ #endif
+ 
+ #ifdef HAVE_SSL
+ int check_cert = FALSE;
+ int days_till_exp;
+ SSL_CTX *ctx;
+ SSL *ssl;
+ X509 *server_cert;
+ int connect_SSL (void);
+ int check_certificate (X509 **);
+ #endif
+ 
+ 
  const char *progname = "check_smtp";
  
  #define SMTP_PORT	25
  #define SMTP_EXPECT     "220"
  #define SMTP_HELO "HELO "
***************
*** 57,66 ****
--- 75,85 ----
   */
    
  #define SMTP_DUMMYCMD  "MAIL "
  #define SMTP_USE_DUMMYCMD 1
  #define SMTP_QUIT	"QUIT\r\n"
+ #define SMTP_STARTTLS   "STARTTLS\r\n"
  
  int process_arguments (int, char **);
  int validate_arguments (void);
  void print_help (void);
  void print_usage (void);
***************
*** 72,88 ****
  int warning_time = 0;
  int check_warning_time = FALSE;
  int critical_time = 0;
  int check_critical_time = FALSE;
  int verbose = FALSE;
  
  int
  main (int argc, char **argv)
  {
! 	int sd;
  	int result = STATE_UNKNOWN;
- 	char buffer[MAX_INPUT_BUFFER] = "";
  	char *from_str = NULL;
  	char *helocmd = NULL;
  
  	if (process_arguments (argc, argv) != OK)
  		usage ("Invalid command arguments supplied\n");
--- 91,116 ----
  int warning_time = 0;
  int check_warning_time = FALSE;
  int critical_time = 0;
  int check_critical_time = FALSE;
  int verbose = FALSE;
+ int use_ssl = FALSE;
+ int sd;
+ char timestamp[17] = "";
+ //char *buffer = "";
+ char buffer[MAX_INPUT_BUFFER] = "";
+ enum {
+   TCP_PROTOCOL = 1,
+   UDP_PROTOCOL = 2,
+         MAXBUF = 1024
+ };
  
  int
  main (int argc, char **argv)
  {
! 
  	int result = STATE_UNKNOWN;
  	char *from_str = NULL;
  	char *helocmd = NULL;
  
  	if (process_arguments (argc, argv) != OK)
  		usage ("Invalid command arguments supplied\n");
***************
*** 114,130 ****
  	/* we connected, so close connection before exiting */
  	if (result == STATE_OK) {
  
  		/* watch for the SMTP connection string and */
  		/* return a WARNING status if we couldn't read any data */
! 		if (recv (sd, buffer, MAX_INPUT_BUFFER - 1, 0) == -1) {
! 			printf ("recv() failed\n");
  			result = STATE_WARNING;
  		}
  		else {
  			/* strip the buffer of carriage returns */
! 			strip (buffer);
  			/* make sure we find the response we are looking for */
  			if (!strstr (buffer, server_expect)) {
  				if (server_port == SMTP_PORT)
  					printf ("Invalid SMTP response received from host\n");
  				else
--- 142,158 ----
  	/* we connected, so close connection before exiting */
  	if (result == STATE_OK) {
  
  		/* watch for the SMTP connection string and */
  		/* return a WARNING status if we couldn't read any data */
! 		if (recv(sd, buffer, MAX_INPUT_BUFFER-1, 0) == -1) {
! 			printf ("my_recv() failed\n");
  			result = STATE_WARNING;
  		}
  		else {
  			/* strip the buffer of carriage returns */
! 		        strip (buffer);
  			/* make sure we find the response we are looking for */
  			if (!strstr (buffer, server_expect)) {
  				if (server_port == SMTP_PORT)
  					printf ("Invalid SMTP response received from host\n");
  				else
***************
*** 132,162 ****
  									server_port);
  				result = STATE_WARNING;
  			}
  		}
  
  		/* send the HELO command */
  		send(sd, helocmd, strlen(helocmd), 0);
  
  		/* allow for response to helo command to reach us */
! 		recv(sd, buffer, MAX_INPUT_BUFFER-1, 0);
! 				
  #ifdef SMTP_USE_DUMMYCMD
  		send(sd, from_str, strlen(from_str), 0);
  
  		/* allow for response to DUMMYCMD to reach us */
! 		recv(sd, buffer, MAX_INPUT_BUFFER-1, 0);
  
  		if (verbose == TRUE) 
  			printf("DUMMYCMD: %s\n%s\n",from_str,buffer);
  #endif /* SMTP_USE_DUMMYCMD */
! 
  		/* tell the server we're done */
  		send (sd, SMTP_QUIT, strlen (SMTP_QUIT), 0);
  
  		/* finally close the connection */
! 		close (sd);
  	}
  
  	/* reset the alarm */
  	alarm (0);
  
--- 160,228 ----
  									server_port);
  				result = STATE_WARNING;
  			}
  		}
  
+ #ifdef HAVE_SSL
+ 		if(use_ssl) {
+ 		/* send the STARTTLS command */
+ 		  send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0);	       
+ 
+ 		  recv(sd, buffer, MAX_INPUT_BUFFER-1, 0); // wait for it
+ 		  if(connect_STARTTLS() != OK) {
+ 		    printf ("ERROR: Cannot create SSL context.\n");
+ 		    return STATE_CRITICAL;
+ 		  }
+ 		  if ( check_cert ) {
+ 		    if ((server_cert = SSL_get_peer_certificate (ssl)) != NULL) {
+ 		      result = check_certificate (&server_cert);
+ 		      X509_free(server_cert);
+ 		    } 
+ 		    else {
+ 		      printf("ERROR: Cannot retrieve server certificate.\n");
+ 		      result = STATE_CRITICAL;
+ 		    }
+ 		    my_close ();
+ 		    return result;
+ 		  }
+ 		}
+ #endif
+ 
  		/* send the HELO command */
+ #ifdef HAVE_SSL
+                 if (use_ssl)
+ 		  SSL_write(ssl, helocmd, strlen (helocmd));
+                 else
+ #endif
  		send(sd, helocmd, strlen(helocmd), 0);
  
  		/* allow for response to helo command to reach us */
! 		my_recv();
! #if defined(SMTP_USE_DUMMYCMD) && defined(HAVE_SSL)
! 		if (use_ssl)
! 		  SSL_write(ssl,from_str, strlen(from_str));
! 		else
! #endif
  #ifdef SMTP_USE_DUMMYCMD
  		send(sd, from_str, strlen(from_str), 0);
  
  		/* allow for response to DUMMYCMD to reach us */
! 		my_recv();
  
  		if (verbose == TRUE) 
  			printf("DUMMYCMD: %s\n%s\n",from_str,buffer);
  #endif /* SMTP_USE_DUMMYCMD */
! #ifdef HAVE_SSL
! 		if (use_ssl)
! 		  SSL_write(ssl,SMTP_QUIT,strlen (SMTP_QUIT));
! 		else
! #endif
  		/* tell the server we're done */
  		send (sd, SMTP_QUIT, strlen (SMTP_QUIT), 0);
  
  		/* finally close the connection */
! 		my_close ();
  	}
  
  	/* reset the alarm */
  	alarm (0);
  
***************
*** 197,206 ****
--- 263,274 ----
  		{"port", required_argument, 0, 'p'},
  		{"from", required_argument, 0, 'f'},
  		{"verbose", no_argument, 0, 'v'},
  		{"version", no_argument, 0, 'V'},
  		{"help", no_argument, 0, 'h'},
+ 		{"starttls",no_argument,0,'S'},
+ 		{"certificate",required_argument,0,'C'},
  		{0, 0, 0, 0}
  	};
  #endif
  
  	if (argc < 2)
***************
*** 216,229 ****
  	}
  
  	while (1) {
  #ifdef HAVE_GETOPT_H
  		c =
! 			getopt_long (argc, argv, "+hVvt:p:f:e:c:w:H:", long_options,
  									 &option_index);
  #else
! 		c = getopt (argc, argv, "+?hVvt:p:f:e:c:w:H:");
  #endif
  		if (c == -1 || c == EOF)
  			break;
  
  		switch (c) {
--- 284,297 ----
  	}
  
  	while (1) {
  #ifdef HAVE_GETOPT_H
  		c =
! 			getopt_long (argc, argv, "+hVvt:p:f:e:c:w:H:SC:", long_options,
  									 &option_index);
  #else
! 		c = getopt (argc, argv, "+?hVvt:p:f:e:c:w:H:SC:");
  #endif
  		if (c == -1 || c == EOF)
  			break;
  
  		switch (c) {
***************
*** 276,285 ****
--- 344,369 ----
  			}
  			else {
  				usage ("Time interval must be a nonnegative integer\n");
  			}
  			break;
+ 		case 'S':
+ 		 /* starttls */
+    		        use_ssl = TRUE;
+ 			break;
+                 case 'C': /* Check SSL cert validity */
+ #ifdef HAVE_SSL
+ 		  if (!is_intnonneg (optarg))
+ 		    usage2 ("invalid certificate expiration period", optarg);
+                   days_till_exp = atoi (optarg);
+                   check_cert = TRUE;
+ 		  use_ssl = TRUE;
+ #else
+                   terminate (STATE_UNKNOWN,
+                              "SSL support not available.  Install OpenSSL and recompile.");
+ #endif
+ 		  break;
  		case 'V':									/* version */
  			print_revision (progname, "$Revision: 1.9.2.2 $");
  			exit (STATE_OK);
  		case 'h':									/* help */
  			print_help ();
***************
*** 344,353 ****
--- 428,443 ----
  		 "   Seconds necessary to result in a warning status\n"
  		 " -c, --critical=INTEGER\n"
  		 "   Seconds necessary to result in a critical status\n"
  		 " -t, --timeout=INTEGER\n"
  		 "   Seconds before connection attempt times out (default: %d)\n"
+ #ifdef HAVE_SSL
+ 		 " -S, --starttls\n"
+ 		 "   Use starttls for connection\n"
+ 		 " -C, --certificate\n"
+ 		 "   Check certificate\n"
+ #endif		
  		 " -v, --verbose\n"
  		 "   Print extra information (command-line use only)\n"
  		 " -h, --help\n"
  		 "   Print detailed help screen\n"
  		 " -V, --version\n"
***************
*** 365,370 ****
--- 455,615 ----
  {
  	printf
  		("Usage: %s -H host [-e expect] [-p port] [-f from addr] [-w warn] [-c crit] [-t timeout] [-v]\n"
  		 "       %s --help\n"
  		 "       %s --version\n", progname, progname, progname);
+ }
+ 
+ #ifdef HAVE_SSL
+ int
+ connect_STARTTLS (void)
+ {
+   SSL_METHOD *meth;
+ 
+   /* Initialize SSL context */
+   SSLeay_add_ssl_algorithms ();
+   meth = SSLv2_client_method ();
+   SSL_load_error_strings ();
+   if ((ctx = SSL_CTX_new (meth)) == NULL)
+     {
+       printf ("ERROR: Cannot create SSL context.\n");
+       return STATE_CRITICAL;
+     }
+       /* Do the SSL handshake */
+       if ((ssl = SSL_new (ctx)) != NULL)
+ 	{
+ 	  SSL_set_fd (ssl, sd);
+ 	  /* original version checked for -1
+ 	     I look for success instead (1) */
+ 	  if (SSL_connect (ssl) == 1)
+ 	    return OK;
+ 	  ERR_print_errors_fp (stderr);
+ 	}
+       else
+ 	{
+ 	  printf ("ERROR: Cannot initiate SSL handshake.\n");
+ 	}
+       /* this causes a seg fault
+ 	 not sure why, being sloppy 
+ 	 and commenting it out */
+ 	//	SSL_free (ssl);
+     
+ 
+   SSL_CTX_free (ctx);
+   my_close ();
+ 
+   return STATE_CRITICAL;
+ }
+ #endif
+ 
+ #ifdef HAVE_SSL
+ int
+ check_certificate (X509 ** certificate)
+ {
+   ASN1_STRING *tm;
+   int offset;
+   struct tm stamp;
+   int days_left;
+ 
+ 
+   /* Retrieve timestamp of certificate */
+   tm = X509_get_notAfter (*certificate);
+ 
+   /* Generate tm structure to process timestamp */
+   if (tm->type == V_ASN1_UTCTIME) {
+     if (tm->length < 10) {
+       printf ("ERROR: Wrong time format in certificate.\n");
+       return STATE_CRITICAL;
+     }
+     else {
+       stamp.tm_year = (tm->data[0] - '0') * 10 + (tm->data[1] - '0');
+       if (stamp.tm_year < 50)
+         stamp.tm_year += 100;
+       offset = 0;
+     }
+   }
+   else {
+     if (tm->length < 12) {
+       printf ("ERROR: Wrong time format in certificate.\n");
+       return STATE_CRITICAL;
+     }
+     else {
+                         stamp.tm_year =
+                           (tm->data[0] - '0') * 1000 + (tm->data[1] - '0') * 100 +
+                           (tm->data[2] - '0') * 10 + (tm->data[3] - '0');
+                         stamp.tm_year -= 1900;
+                         offset = 2;
+     }
+   }
+         stamp.tm_mon =
+           (tm->data[2 + offset] - '0') * 10 + (tm->data[3 + offset] - '0') - 1;
+         stamp.tm_mday =
+           (tm->data[4 + offset] - '0') * 10 + (tm->data[5 + offset] - '0');
+         stamp.tm_hour =
+           (tm->data[6 + offset] - '0') * 10 + (tm->data[7 + offset] - '0');
+         stamp.tm_min =
+           (tm->data[8 + offset] - '0') * 10 + (tm->data[9 + offset] - '0');
+         stamp.tm_sec = 0;
+         stamp.tm_isdst = -1;
+ 
+         days_left = (mktime (&stamp) - time (NULL)) / 86400;
+         snprintf
+           (timestamp, 16, "%02d/%02d/%04d %02d:%02d",
+            stamp.tm_mon + 1,
+            stamp.tm_mday, stamp.tm_year + 1900, stamp.tm_hour, stamp.tm_min);
+ 
+         if (days_left > 0 && days_left <= days_till_exp) {
+           printf ("Certificate expires in %d day(s) (%s).\n", days_left, timestamp);
+           return STATE_WARNING;
+         }
+         if (days_left < 0) {
+           printf ("Certificate expired on %s.\n", timestamp);
+           return STATE_CRITICAL;
+         }
+ 
+         if (days_left == 0) {
+           printf ("Certificate expires today (%s).\n", timestamp);
+           return STATE_WARNING;
+         }
+ 
+         printf ("Certificate will expire on %s.\n", timestamp);
+ 
+         return STATE_OK;
+ }
+ #endif
+ 
+ int
+ my_recv (void)
+ {
+   int i;
+ 
+ #ifdef HAVE_SSL
+   if (use_ssl) {
+     i = SSL_read (ssl, buffer, MAXBUF - 1);
+   }
+   else {
+ #endif
+     i = read (sd, buffer, MAXBUF - 1);
+ #ifdef HAVE_SSL
+   }
+ #endif
+ 
+   return i;
+ }
+ 
+ int
+ my_close (void)
+ {
+ #ifdef HAVE_SSL
+   if (use_ssl == TRUE) {
+     SSL_shutdown (ssl);
+     SSL_free (ssl);
+     SSL_CTX_free (ctx);
+     return 0;
+   }
+   else {
+ #endif
+     return close (sd);
+ #ifdef HAVE_SSL
+   }
+ #endif
  }