| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- #!/usr/bin/perl
- use utf8;
- use warnings;
- use Encode;
- use open qw(:std :encoding(UTF-8));
- no warnings 'utf8';
- use English;
- use FindBin '$Bin';
- use lib "/opt/Eye/scripts";
- use strict;
- use DBI;
- use File::Basename;
- use File::Find;
- use File::stat qw(:FIELDS);
- use File::Spec::Functions;
- use Sys::Hostname;
- use DirHandle;
- use Time::localtime;
- use Fcntl;
- use Tie::File;
- use Data::Dumper;
- use Net::Ping;
- use eyelib::config;
- use eyelib::main;
- use eyelib::nagios;
- use eyelib::logconfig;
- use eyelib::snmp;
- use eyelib::database;
- use eyelib::common;
- use Fcntl qw(:flock);
- open(SELF,"<",$0) or die "Cannot open $0 - $!";
- flock(SELF, LOCK_EX|LOCK_NB) or exit 1;
- my %devices;
- my %auths;
- my %dependency;
- my $nagios_devices = "/etc/snmp/devices.cfg";
- my @OU_list = get_records_sql($dbh,"SELECT * FROM ou");
- my %ou;
- my @cfg_dirs = ();
- foreach my $row (@OU_list) {
- next if (!$row->{nagios_dir});
- if ($row->{nagios_dir}!~/^$config_ref{nagios_dir}/) { $row->{nagios_dir}=$config_ref{nagios_dir}.'/'.$row->{nagios_dir}; }
- $row->{nagios_dir}=~s/\/$//;
- $ou{$row->{id}}=$row;
- push(@cfg_dirs,$row->{nagios_dir});
- }
- @cfg_dirs = uniq(@cfg_dirs);
- my @Model_list = get_records_sql($dbh,"SELECT * FROM device_models");
- my %models;
- foreach my $row (@Model_list) {
- $models{$row->{id}}=$row;
- }
- #switches & routers only
- my @netdev_list=get_records_sql($dbh,'SELECT * FROM devices WHERE deleted=0 and nagios=1 and device_type<=2');
- ##################################### Netdevices analyze ################################################
- if (scalar(@netdev_list)>0) {
- foreach my $router (@netdev_list) {
- next if (!$router);
- my $ip = $router->{'ip'};
- $ip =~s/\/\d+$//g;
- my $device_id = 'netdev_'.$router->{'id'};
- $devices{$device_id}{ip}=$ip;
- setCommunity($router);
- $devices{$device_id}{snmp} = $router->{snmp};
- $devices{$device_id}{description}=translit($router->{'description'});
- $devices{$device_id}{name} = $router->{'device_name'};
- $devices{$device_id}{device_model_id} = $router->{'device_model_id'};
- if ($router->{'device_model_id'}) { $devices{$device_id}{device_model} = $models{$router->{'device_model_id'}}; }
- $devices{$device_id}{device_id} = $router->{'id'};
- $devices{$device_id}{vendor_id} = $router->{'vendor_id'};
- $devices{$device_id}{ou_id} = 0;
- #1 - switch; 2 - router; 3 - auth
- #NOT DEVICE TYPE IN DB!!!
- $devices{$device_id}{type}='1';
- $devices{$device_id}{ou_id}='7';
- if ($router->{'device_type'} eq 2) {
- $devices{$device_id}{type}='2';
- $devices{$device_id}{ou_id}='10';
- }
- if ($router->{'user_id'}) {
- #get user
- my $login = get_record_sql($dbh,"SELECT * FROM user_list WHERE id= ?", $router->{'user_id'});
- if ($login and $login->{ou_id} and $ou{$login->{ou_id}}->{nagios_dir}) { $devices{$device_id}{ou_id} = $login->{ou_id}; }
- }
- $devices{$device_id}{ou}=$ou{$devices{$device_id}{ou_id}};
- if (!$devices{$device_id}{ou}->{nagios_dir}) {
- if ($devices{$device_id}{type} eq '1') { $devices{$device_id}{ou}->{nagios_dir}='switches'; }
- if ($devices{$device_id}{type} eq '2') { $devices{$device_id}{ou}->{nagios_dir}='routers'; }
- }
- $devices{$device_id}{user_id}=$router->{'user_id'};
- #get uplinks
- my $uplink_port = get_record_sql($dbh,"SELECT * FROM device_ports WHERE uplink=1 AND device_id= ? AND target_port_id>0 ORDER BY port DESC",$devices{$device_id}{device_id});
- if ($uplink_port and $uplink_port->{target_port_id}) {
- my $parent_uplink = get_record_sql($dbh,"SELECT * FROM device_ports WHERE id= ? ORDER BY id DESC",$uplink_port->{target_port_id});
- if ($parent_uplink and $parent_uplink->{device_id}) {
- my $uplink_device = get_record_sql($dbh,"SELECT * FROM devices WHERE id= ? AND nagios=1 AND deleted=0",$parent_uplink->{device_id});
- if ($uplink_device) {
- $devices{$device_id}{parent}='netdev_'.$uplink_device->{'id'};
- $devices{$device_id}{parent_name}=$uplink_device->{'device_name'};
- }
- }
- my $uplink = get_record_sql($dbh,"SELECT * FROM device_ports WHERE id=? ORDER BY id DESC",$uplink_port->{id});
- $devices{$device_id}{parent_downlink}=$parent_uplink;
- $devices{$device_id}{uplink}=$uplink;
- }
- #downlinks
- my @downlinks = get_records_sql($dbh,"SELECT * FROM device_ports WHERE device_id= ? and target_port_id>0 and uplink=0", $devices{$device_id}{device_id});
- foreach my $downlink_port (@downlinks) {
- my $downlink = get_record_sql($dbh,"SELECT * FROM device_ports WHERE id= ?", $downlink_port->{target_port_id});
- if ($downlink) {
- my $downlink_device = get_record_sql($dbh,"SELECT * FROM devices WHERE id= ?", $downlink->{device_id});
- if ($downlink_device) { $downlink_port->{downlink_name}=$downlink_device->{device_name}; }
- }
- #id,port,snmp_index
- push(@{$devices{$device_id}{downlinks}},$downlink_port);
- }
- #custom ports
- my @custom_ports = get_records_sql($dbh,"SELECT * FROM device_ports WHERE device_id= ? and target_port_id=0 and uplink=0 and nagios=1", $devices{$device_id}{device_id});
- foreach my $downlink_port (@custom_ports) {
- #id,port,snmp_index,description
- push(@{$devices{$device_id}{downlinks}},$downlink_port);
- }
- }
- }
- my @auth_list=get_records_sql($dbh,'SELECT * FROM user_auth WHERE deleted=0 and nagios=1');
- ##################################### User auth analyze ################################################
- if (scalar(@auth_list)>0) {
- foreach my $auth (@auth_list) {
- next if (!$auth);
- my $ip = $auth->{'ip'};
- $ip =~s/\/\d+$//g;
- #skip doubles
- my $device_id = 'auth_'.$auth->{'id'};
- next if ($devices{$device_id});
- #skip user device with few ip
- my $auth_count = get_count_records($dbh,"user_auth","user_id= ? AND deleted=0",$auth->{'user_id'});
- next if ($auth_count>1);
- #skip switches and routers
- my $auth_device = get_record_sql($dbh,"SELECT * FROM devices WHERE user_id=?",$auth->{'user_id'});
- next if ($auth_device and $auth_device->{device_type}<=2);
- #snmp parameters
- setCommunity($auth_device);
- $devices{$device_id}{snmp}=$auth_device->{snmp} if ($auth_device->{snmp});
- $devices{$device_id}{ip}=$ip;
- #get user
- my $login = get_record_sql($dbh,"SELECT * FROM user_list WHERE id=?",$auth->{'user_id'});
-
- $devices{$device_id}{user_login} = $login->{login};
- $devices{$device_id}{user_description} = $login->{description};
- $devices{$device_id}{ou_id} = 0;
- if ($login and $login->{ou_id} and $ou{$login->{ou_id}}->{nagios_dir}) { $devices{$device_id}{ou_id} = $login->{ou_id}; }
- $devices{$device_id}{ou}=$ou{$devices{$device_id}{ou_id}};
-
- $devices{$device_id}{device_model_id} = $auth_device->{'device_model_id'};
- if ($auth_device->{'device_model_id'}) { $devices{$device_id}{device_model} = $models{$auth_device->{'device_model_id'}}; }
-
- #name
- if (!$devices{$device_id}{name} and $auth->{dns_name}) { $devices{$device_id}{name} = $auth->{dns_name}; }
- if (!$devices{$device_id}{name}) {
- if ($login->{login}) {
- $devices{$device_id}{name} = translit($login->{login});
- $devices{$device_id}{name}=~s/\(/-/g;
- $devices{$device_id}{name}=~s/\)/-/g;
- $devices{$device_id}{name}=~s/--/-/g;
- } else {
- $devices{$device_id}{name} = "auth_id_".$auth->{id};
- }
- }
- $devices{$device_id}{description}=translit($auth->{'description'}) || $devices{$device_id}{name};
- $devices{$device_id}{auth_id} = $auth->{'id'};
- $devices{$device_id}{nagios_handler} = $auth->{'nagios_handler'};
- $devices{$device_id}{link_check} = $auth->{'link_check'};
- $devices{$device_id}{type}='3';
- $devices{$device_id}{user_id}=$auth->{'user_id'};
- #get uplinks
- my $uplink_port = get_record_sql($dbh,"SELECT * FROM connections WHERE auth_id=?",$auth->{'id'});
- if ($uplink_port and $uplink_port->{port_id}) {
- my $uplink = get_record_sql($dbh,"SELECT * FROM device_ports WHERE id=?",$uplink_port->{port_id});
- if ($uplink and $uplink->{device_id} and $devices{'netdev_'.$uplink->{'device_id'}}) {
- $devices{$device_id}{parent}='netdev_'.$uplink->{'device_id'};
- $devices{$device_id}{parent_port} = $uplink->{port};
- $devices{$device_id}{parent_port_snmp_index} = $uplink->{snmp_index};
- $devices{$device_id}{parent_name}=$devices{$devices{$device_id}{parent}}->{'name'};
- $devices{$device_id}{parent_snmp}=$devices{$devices{$device_id}{parent}}->{'snmp'};
- }
- }
- }
- }
- foreach my $dir (@cfg_dirs) {
- next if ($dir eq '/');
- next if ($dir eq '/etc');
- next if ($dir eq $config_ref{nagios_dir});
- mkdir $dir unless (-d $dir);
- unlink glob "$dir/*.cfg";
- }
- ##################################### Switches config ################################################
- write_to_file($nagios_devices,"#lisf of device for nagios",0);
- foreach my $device_id (keys %devices) {
- my $device = $devices{$device_id};
- next if (!$device->{ip});
- if ($device->{parent_name}) { push(@{$dependency{$device->{parent_name}}},$device->{name}); }
- print_nagios_cfg($device);
- write_to_file($nagios_devices,'$devices{"'.$device->{'ip'}.'"}{"hostname"}="'.$device->{'name'}.'";',1);
- }
- ####################### Dependency ###########################
- open(FH,">",$config_ref{nagios_dir}."/dependency/dep_hosts.cfg");
- foreach my $device_name (keys %dependency) {
- my @dep_list=@{$dependency{$device_name}};
- if (@dep_list and scalar(@dep_list)) {
- my $dep_hosts = '';
- foreach my $dep_host (@dep_list) {
- next if (!$dep_host);
- $dep_hosts = $dep_hosts.",".$dep_host;
- }
- next if (!$dep_hosts);
- $dep_hosts=~s/^,//;
- print(FH "define hostdependency {\n");
- print(FH " host_name $device_name\n");
- print(FH " dependent_host_name $dep_hosts\n");
- print(FH " execution_failure_criteria n,u\n");
- print(FH " notification_failure_criteria d,u\n");
- print(FH " }\n");
- }
- }
- close(FH);
- exit
|