aboutsummaryrefslogtreecommitdiff
path: root/netsnmp-sendmail-setup
blob: 5e49ad6194b8d59939ff544a44488ec40cf5147e (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
#!/bin/sh
#! -*-perl-*-
# This file is part of NetSNMP::Sendmail
# Copyright (C) 2019-2020 Sergey Poznyakoff <gray@gnu.org>
#
# 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 3, 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, see <http://www.gnu.org/licenses/>.
eval 'exec perl -x -wS $0 ${1+"$@"}'
    if 0;

use strict;
use warnings;
use File::Temp;
use File::Basename;
use IPC::Cmd qw(can_run);
use POSIX qw(strftime);
use Fcntl;
use Getopt::Long qw(:config gnu_getopt no_ignore_case require_order);
use Pod::Usage;

sub addts {
    my $fd = shift;
    print $fd "# Line added by $0 at "
	      . strftime("%Y-%m-%dT%H:%M:%S", localtime)
	      . "\n";
}

my $my_ts_rx = qr{^# Line added by $0 at };

use constant {
    EX_OK => 0,           # Success
    EX_UNCHANGED => 1,    # Files not changed
    EX_FATAL => 2,        # Fatal error
    EX_USAGE => 64        # Usage error
};

use constant {
    CMD_SETUP => 0,
    CMD_REMOVE => 1
};

my $suppress_level = 0;
my $dry_run;
my @updated_services;

use constant {
    L_INFO => 0,
    L_NOTICE => 1,
    L_WARN => 2,
    L_ERR => 3
};

use constant MAX_SUPPRESS_LEVEL => L_WARN;

sub printlog {
    my $level = shift;
    if ($suppress_level <= $level) {
	my $fh = (($level >= L_WARN) ? \*STDERR : \*STDOUT);
	print $fh "$0: ".join(' ',@_)."\n";
    }
}

my @restart_commands = (
    [qw(systemctl restart $service)],
    [qw(service $service restart)],
    [qw(/etc/init.d/$service restart)],
    [qw(/etc/rc.d/$service restart)],
);
my %restart_override;

sub restart_service {
    my $service = shift;

    my $cmd = $restart_override{$service};
    return if $cmd && $cmd eq 'no';

    printlog(L_NOTICE, "restarting $service");
    return if $dry_run;

    if ($cmd) {
	printlog(L_NOTICE, "running $cmd");
	system($cmd);
    } else {
	foreach $cmd (@restart_commands) {
	    my @c = map { (my $s = $_) =~ s/\$service/$service/g; $s } @$cmd;
	    if (can_run($c[0])) {
		printlog(L_NOTICE, "running @c");
		system(@c);
		return if ($? == 0);
	    }
	}
    }
}

sub file_replace {
    my ($file, $newfile) = @_;
    my $bk = "$file~";
    unlink $bk if -e $bk;
    rename $file, $bk or die "can't rename $file to $bk: $!";
    unless (rename $newfile, $file) {
	printlog(L_WARN,
		 "can't rename $newfile to $file: $!; restoring from backup");
	unless (rename $bk, $file) {
	    printlog(L_ERR, "failed to rename $bk to $file: $!");
	    exit(EX_FATAL);
	}
    }
}

sub file_remline {
    my ($file, $fd, $line, $endline) = @_;
    $endline //= $line;
    printlog(L_NOTICE,
	     ($endline == $line) ? "editing $file: removing line $line"
	     : "editing $file: removing lines $line-$endline");
    return if $dry_run;
    my $ofd = File::Temp->new(DIR => dirname($file), UNLINK => $dry_run);
    seek($fd, 0, SEEK_SET) or die "seek $file: $!";
    my $ln = 0;
    while (<$fd>) {
	$ln++;
	next if ($line <= $ln && $ln <= $endline);
	print $ofd $_;
    }
    close $ofd;
    close $fd;
    file_replace($file, $ofd->filename);
}

sub scan_snmpd_conf {
    my ($file, $fd) = @_;

    my $line = 0;
    my $comline;
    my $insert_line;

    while (<$fd>) {
	++$line;
	chomp;
	s/^\s+//;
	
	if (/$my_ts_rx/) {
	    $comline = $line;
	    next;
	}
	
	if (/^perl\s+use\s+NetSNMP::Sendmail/) {
	    if ($comline && $comline + 1 == $line) {
		return (1, $comline, $line);
	    } else {
		return (1, $line);
	    }
	}
	
	if (/^perl\s+use/) {
	    $insert_line = $line;
	}
    }
    return (0, $insert_line || $line + 1);
}

sub update_snmpd_conf {
    my ($ifile, $ifd, $insert_line, $stmt) = @_;

    seek($ifd, 0, SEEK_SET) or die "seek: $!";
    my $ofd = File::Temp->new(DIR => dirname($ifile), UNLINK => $dry_run);
    my $line = 0;
    while (<$ifd>) {
	chomp;
	++$line;
	if ($insert_line && $line == $insert_line) {
	    printlog(L_NOTICE, "editing $ifile (line $line)");
	    addts $ofd;
	    print $ofd "$stmt\n";
	    $insert_line = undef;
	}
	print $ofd "$_\n";
    }
    if ($insert_line) {
	printlog(L_NOTICE, "editing $ifile (append)");
	addts $ofd;
	print $ofd "$stmt\n";
    }
    close $ofd;
    file_replace($ifile, $ofd->filename) unless ($dry_run);
}

sub edit_snmpd_conf {
    my ($command, $name, $stmt) = @_;
    my $u = umask(077);
    if (open(my $fd, '<', $name)) {
	my ($found, $line, $endline) = scan_snmpd_conf($name, $fd);
	if ($command == CMD_SETUP) {
	    if ($found) {
		printlog(L_INFO, "$name:".($endline ? $endline : $line).": NetSNMP::Sendmail already enabled");
	    } else {
		update_snmpd_conf($name, $fd, $line, $stmt);
	        push @updated_services, 'snmpd';
	    }
	} elsif ($found) {
	    file_remline($name, $fd, $line, $endline);
            push @updated_services, 'snmpd';
	}
	close $fd;
    } else {
	printlog(L_ERR, "can't open $name: $!");
	exit(EX_FATAL);
    }
    umask($u);
}

sub check_file {
    my $file = shift;
    if (-f $file) {
	if (! -r $file) {
	    printlog(L_ERR, "$file is not readable");
	    exit(EX_FATAL);
	}
    } else {
	printlog(L_ERR, "$file does not exist");
	exit(EX_FATAL);
    }
}

# Check if NetSNMP::Sendmail is available.
# To avoid namespace contamination, do it in a subprocess.
# The module requires SmtpAgent.pm, whic spits out lots of messages
# to STDERR when loaded outside of snmpd, so first redirect stderr
# to /dev/null.
sub check_module {
    my $pid = fork();
    die "fork failed" unless defined $pid;
    if ($pid == 0) {
	open(STDERR, '>', '/dev/null');
	require NetSNMP::Sendmail;
	exit 0;
    }
    wait;
    if ($?) {
	printlog(L_ERR, "NetSNMP::Sendmail doesn't seem to be installed");
	exit(EX_FATAL);
    }
}

sub scan_sendmail_mc {
    my $fd = shift;
    my $name;
    my $last_nl;
    my $comline;
    my $line = 0;
    while (<$fd>) {
	$line++;
	$last_nl = chomp;
	s/^\s+//;

	if (/$my_ts_rx/) {
	    $comline = $line;
	    next;
	}
	if (/^define\(\s*`?STATUS_FILE'?\s*,\s*`?(.+?)'?\s*\)/) {
	    $name = $1;
	    last
	}
    }

    return ($name, $last_nl,
	    ($comline && $comline + 1 == $line) ? ($comline, $line) : ($line));
}

sub edit_sendmail_mc {
    my ($command, $file, $default_statfile) = @_;
    if (open(my $fd, '+<', $file)) {
	my $need_make;
	my ($statfile, $last_nl, $line, $endline) = scan_sendmail_mc($fd);
	if ($command == CMD_SETUP) {
	    if ($statfile) {
		printlog(L_INFO,
			 "$file:".($endline ? $endline : $line).
			 ": status file $statfile already enabled");
	    } else {
		$statfile = $default_statfile;
		printlog(L_NOTICE, "editing $file");
		unless ($dry_run) {
		    seek($fd, 0, SEEK_END) or die "seek: $!";
		    print $fd "\n" unless $last_nl;
		    addts $fd;
		    print $fd "define(`STATUS_FILE', `$statfile')\n";
		}
	        push @updated_services, 'sendmail';
	        $need_make = !$dry_run;
	    }

	    if (-f $statfile) {
		printlog(L_INFO, "$statfile exists");
	    } else {
	        printlog(L_NOTICE, "creating $statfile");
	        unless ($dry_run) {
		    if (open($fd, '>', $statfile)) {
			close($fd);
		    } else {
		        warn "failed to create $statfile: $!";
		    }
		}
	    }
	} elsif ($statfile) {
	    if ($endline) {
		file_remline($file, $fd, $line, $endline);
   	        push @updated_services, 'sendmail';
	        $need_make = !$dry_run;
	    } else {
		printlog(L_INFO,
			 "$file:$line: retaining status file setup: not configured by $0");
	    }
	}
	close $fd;

	if ($need_make) {
	    my $sendmail_dir = dirname($file);
	    printlog(L_NOTICE, "running make in $sendmail_dir");
	    system("make "
		   . ($dry_run ? '-n ' : '')
		   . "-C $sendmail_dir");
	}
    } else {
	printlog(L_ERR, "can't open $file: $!");
	exit(EX_FATAL);
    }
}

# Main
my $snmpd_conf = '/etc/snmp/snmpd.conf';
my $sendmail_mc = '/etc/mail/sendmail.mc';
my $sendmail_statfile = '/etc/mail/sendmail.st';
my $sendmail_bindir;

my $command = CMD_SETUP;

GetOptions('quiet|q+' => \$suppress_level,
	   'dry-run|n' => \$dry_run,
	   'status-file=s' => \$sendmail_statfile,
	   'bindir=s' => \$sendmail_bindir,
	   'restart=s' => sub {
	       my ($name,$cmd) = split /=/, $_[1], 2;
	       $restart_override{$name} = $cmd;
	   },
	   'configure' => sub { $command = CMD_SETUP },
	   'deconfigure' => sub { $command = CMD_REMOVE },
	   'help' => sub {
	       pod2usage(-exitstatus => EX_OK, -verbose => 2);
	   },
	   'usage' => sub {
	       pod2usage(-exitstatus => EX_OK, -verbose => 0);
	   }
) or pod2usage(-exitstatus => EX_USAGE, -verbose => 0, -output => \*STDERR);

pod2usage(-exitstatus => EX_USAGE, -verbose => 0, -output => \*STDERR)
    if @ARGV;

if ($suppress_level > MAX_SUPPRESS_LEVEL) {
    $suppress_level = MAX_SUPPRESS_LEVEL;
}

check_module;
check_file($snmpd_conf);
check_file($sendmail_mc);
check_file('/etc/mail/Makefile');

unless ($sendmail_bindir) {
    if (-d "/usr/lib/sm.bin") {
	$sendmail_bindir = "/usr/lib/sm.bin";
    }
}

my $stmt = 'perl use NetSNMP::Sendmail';
if ($sendmail_bindir) {
    $stmt .= ' qw(:config bindir /usr/lib/sm.bin)';
}
$stmt .= ';';

edit_sendmail_mc($command, $sendmail_mc, $sendmail_statfile);
edit_snmpd_conf($command, $snmpd_conf, $stmt);

map { restart_service($_) } @updated_services;

exit(@updated_services ? EX_OK : EX_UNCHANGED);

__END__
=head1 NAME

netsnmp-sendmail-setup - sets up Sendmail monitoring via SNMP

=head1 SYNOPSIS

B<netsnmp-sendmail-setup>
[B<-nq>]
[B<--bindir=I<DIR>>]
[B<--configure>]
[B<--deconfigure>]
[B<--dry-run>]
[B<--status-file=I<FILE>>]
[B<--quiet>]
[B<--restart=I<service>=I<command>>]
    
B<netsnmp-sendmail-setup> B<--help> | B<--usage>

=head1 DESCRIPTION

Sets up B<sendmail> and B<snmpd> for obtaining Sendmail statistics via
SNMP. First, it checks whether the Sendmail configuration source
F</etc/mail/sendmail.mc> contains the B<STATUS_FILE> clause and adds it
if not. Then, it creates the status file and runs B<make> in the F</etc/mail>
directory. Finally, the file F</etc/snmp/snmpd.conf> is scanned for the
B<perl use NetSNMP::Sendmail> statement. It is added if not already present.
Each added configuration line is preceded by a comment stating that it
was added by the script.

When run with the B<--deconfigure> option, the reverse operation is
performed.  The B<NetSNMP::Sendmail> configuration statement is removed
from the snmpd configuration unconditionally.  The B<STATUS_FILE> clause
is removed from F</etc/mail/sendmail.mc> only if it is preceded by the
B<netsnmp-sendmail-setup> comment marker.  The status file itself is
never removed.

=head1 OPTIONS

=over 4

=item B<--bindir=I<DIR>>

Some installations place Sendmail binaries in a separate directory, which
is not included in the B<$PATH> environment variable.  Use this option to
inform B<NetSNMP::Sendmail> about this.

Notice for the users of Debian-based systems: the F</usr/lib/sm.bin>
directory is picked up automatically.

=item B<--configure>

A no-op option included for symmetry with B<--deconfigure>.    

=item B<--deconfigure>

Remove the configuration statements previously added to the snmdp and
sendmail configuration files.    
    
=item B<-n>, B<--dry-run>

Dry run mode.  Don't modify any files, just print what would have been done
and exit with the appropriate error code (see B<EXIT STATUS> section).

Use the B<--quiet> option to control the amount of data printed.

=item B<-q>, B<--quiet>

Quiet mode.  When used once, suppresses informative output.  When used twice,
suppresses both informative output and notification messages about modified
files.

=item B<--restart=I<service>=I<command>>

Use I<command> to restart system service I<service> (either B<snmpd> or
B<sendmail>).  Use B<--restart=I<service>=no> to skip restarting this
particular I<service>.

In the absence of this option, B<netsnmp-sendmail-setup> uses the first
available command from the following list:

    systemctl restart $service
    service $service restart
    /etc/init.d/$service restart
    /etc/rc.d/$service restart

=item B<--status-file=I<FILE>>

Name of the Sendmail status file to use when generating the
B<define(STATUS_FILE)> statement in the Sendmail configuration file.

=item B<--help>

Displays short help message.

=item B<--usage>

Displaye short usage message.

=back

=head1 FILES

=over 4

=item F</etc/mail/Makefile>

This file is supposed to recreate the B<sendmail.cf> file from B<sendmail.mc>
if no special goal is given.

=item F</etc/snmp/snmpd.conf>

Default B<snmpd> configuration file.  This file must exist.

=item F</etc/mail/sendmail.mc>

Default source file for creating B<sendmail.cf>.

=item F</etc/mail/sendmail.st>

Default statistics file to use. Can be changed using the B<--status-file>
option.

=item F</usr/lib/sm.bin>

Default directory for Sendmail binaries on Debian-based installations. If
exists, it will be used in the B<NetSNMP::Sendmail> configuration.

This can be changed using the B<--bindir> command line option.

=back

=head1 EXIT STATUS

=over 4

=item B<0>

Success.

=item B<1>

Success, no modification was necessary.

=item B<2>

Fatal error occurred.

=item B<64>

Command line usage error.

=back

=head1 SEE ALSO

B<NetSNMP::Sendmail>(3).

=head1 BUGS

The Sendmail configuration directory and the name of the B<snmpd>
configuration file are hardcoded.

The command relies on B<make -C /etc/mail> to create F<sendmail.cf> from
F<sendmail.mc>.

=cut

Return to:

Send suggestions and report system problems to the System administrator.