| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- #!/usr/bin/perl
- #
- # Copyright (C) Roman Dmitiriev, rnd@rajven.ru
- #
- use utf8;
- use open ":encoding(utf8)";
- use Encode;
- no warnings 'utf8';
- use English;
- use base;
- use FindBin '$Bin';
- use lib "/opt/Eye/scripts";
- use Data::Dumper;
- use eyelib::config;
- use eyelib::main;
- use eyelib::database;
- use eyelib::net_utils;
- use strict;
- use warnings;
- use Getopt::Long;
- use Proc::Daemon;
- use POSIX;
- use Net::Netmask;
- use Text::Iconv;
- use File::Tail;
- use Fcntl qw(:flock);
- open(SELF,"<",$0) or die "Cannot open $0 - $!";
- flock(SELF, LOCK_EX|LOCK_NB) or exit 1;
- setpriority(0,0,19);
- my $mute_time=300;
- my $log_file='/var/log/dhcp.log';
- my $proc_name = $MY_NAME;
- $proc_name =~ s/\.[^.]+$//;
- my $pid_file = '/run/eye/'.$proc_name;
- my $pf = $pid_file.'.pid';
- my $daemon = Proc::Daemon->new(
- pid_file => $pf,
- work_dir => $HOME_DIR
- );
- # are you running? Returns 0 if not.
- my $pid = $daemon->Status($pf);
- my $daemonize = 1;
- GetOptions(
- 'daemon!' => \$daemonize,
- "help" => \&usage,
- "reload" => \&reload,
- "restart" => \&restart,
- "start" => \&run,
- "status" => \&status,
- "stop" => \&stop
- ) or &usage;
- exit(0);
- sub stop {
- if ($pid) {
- print "Stopping pid $pid...";
- if ($daemon->Kill_Daemon($pf)) {
- print "Successfully stopped.\n";
- } else {
- print "Could not find $pid. Was it running?\n";
- }
- } else {
- print "Not running, nothing to stop.\n";
- }
- }
- sub status {
- if ($pid) {
- print "Running with pid $pid.\n";
- } else {
- print "Not running.\n";
- }
- }
- sub run {
- if (!$pid) {
- print "Starting...";
- if ($daemonize) {
- # when Init happens, everything under it runs in the child process.
- # this is important when dealing with file handles, due to the fact
- # Proc::Daemon shuts down all open file handles when Init happens.
- # Keep this in mind when laying out your program, particularly if
- # you use filehandles.
- $daemon->Init;
- }
- setpriority(0,0,19);
- my $converter = Text::Iconv->new("cp866", "utf8");
- while (1) {
- eval {
- my %leases;
- # Create new database handle. If we can't connect, die()
- my $hdb = init_db();
- #parse log
- my $dhcp_log=File::Tail->new(name=>$log_file,maxinterval=>5,interval=>1,ignore_nonexistant=>1) || die "$log_file not found!";
- #truncate current log file
- truncate $log_file, 0;
- while (my $logline=$dhcp_log->read) {
- next if (!$logline);
- chomp($logline);
- log_verbose("GET CLIENT REQUEST: $logline");
- my ($type,$mac,$ip,$hostname,$timestamp,$tags,$sup_hostname,$old_hostname,$circuit_id,$remote_id,$client_id,$decoded_circuit_id,$decoded_remote_id) = split (/\;/, $logline);
- next if (!$type);
- next if ($type!~/(old|add|del)/i);
- #mute doubles
- if (exists $leases{$ip} and $leases{$ip}{'type'} eq $type and time()-$leases{$ip}{'last_time'} <= $mute_time) { next; }
- #update config variables every 1 minute
- if (time()-$last_refresh_config>=60) { init_option($hdb); }
- my $client_hostname='';
- if ($hostname and $hostname ne "undef") { $client_hostname=$hostname; } else {
- if ($sup_hostname) { $client_hostname=$sup_hostname; } else {
- if ($old_hostname) { $client_hostname=$old_hostname; }
- }
- }
- my $auth_network = $office_networks->match_string($ip);
- if (!$auth_network) {
- log_error("Unknown network in dhcp request! IP: $ip");
- next;
- }
- if (!$timestamp) { $timestamp=time(); }
- my $ip_aton=StrToIp($ip);
- $mac=mac_splitted(isc_mac_simplify($mac));
- my $dhcp_event_time = GetNowTime($timestamp);
- my $dhcp_record;
- $dhcp_record->{'mac'}=$mac;
- $dhcp_record->{'ip'}=$ip;
- $dhcp_record->{'ip_aton'}=$ip_aton;
- $dhcp_record->{'hostname'}=$client_hostname;
- $dhcp_record->{'tags'}=$tags;
- $dhcp_record->{'network'}=$auth_network;
- $dhcp_record->{'type'}=$type;
- $dhcp_record->{'hostname_utf8'}=$converter->convert($client_hostname);
- $dhcp_record->{'timestamp'} = $timestamp;
- $dhcp_record->{'last_time'} = time();
- $dhcp_record->{'circuit-id'} = $circuit_id;
- $dhcp_record->{'client-id'} = $client_id;
- $dhcp_record->{'remote-id'} = $remote_id;
- $dhcp_record->{'hotspot'}=is_hotspot($dbh,$dhcp_record->{ip});
- #save record for mute
- $leases{$ip}=$dhcp_record;
- #search actual record
- my $auth_record = get_record_sql($hdb,'SELECT * FROM User_auth WHERE ip="'.$dhcp_record->{ip}.'" and mac="'.$mac.'" and deleted=0 ORDER BY last_found DESC');
- #if record not found and type del => next event
- if (!$type) { next; }
- if (!$auth_record and $type eq 'del') {
- next;
- }
- #if record not found - create it
- if (!$auth_record and $type=~/(add|old)/i) {
- # db_log_warning($hdb,"Record for dhcp request type: ".$type." ip=".$dhcp_record->{ip}." and mac=".$mac." does not exists!");
- my $res_id = resurrection_auth($hdb,$dhcp_record);
- if (!$res_id) {
- db_log_error($hdb,"Error creating an ip address record for ip=".$dhcp_record->{ip}." and mac=".$mac."!");
- next;
- }
- $auth_record = get_record_sql($hdb,'SELECT * FROM User_auth WHERE id='.$res_id);
- db_log_info($hdb,"Check for new auth. Found id: $res_id",$res_id);
- }
- my $auth_id = $auth_record->{id};
- my $auth_ou_id = $auth_record->{ou_id};
- my $switch;
- my $switch_port;
- my $t_remote_id;
- my $t_circuit_id = $circuit_id;
- #detect connection
- if ($type =~/(add|old)/) {
- #detect switch by decoded remote-id
- if ($decoded_remote_id) {
- $t_remote_id = $decoded_remote_id;
- #fill '0' to remote-id for full mac lenght
- if (length($t_remote_id)<12) {
- for (my $i = length($decoded_remote_id); $i < 12; $i++) { $t_remote_id = $t_remote_id."0"; }
- }
- $t_remote_id=mac_splitted(isc_mac_simplify($t_remote_id));
- my $devSQL = "SELECT D.id, D.device_name, D.ip, A.mac FROM `devices` AS D,`User_auth` AS A WHERE D.user_id=A.User_id AND D.ip=A.ip AND A.deleted=0 AND A.mac='".$t_remote_id."'";
- log_debug($devSQL);
- $switch = get_record_sql($hdb,$devSQL);
- if ($switch) {
- $remote_id = $t_remote_id;
- $circuit_id = $decoded_circuit_id;
- $dhcp_record->{'circuit-id'} = $circuit_id;
- $dhcp_record->{'remote-id'} = $remote_id;
- }
- }
- #detect switch by original remote-id
- if (!$switch and $remote_id) {
- $t_remote_id = $remote_id;
- #fill '0' to remote-id for full mac lenght
- if (length($t_remote_id)<12) {
- for (my $i = length($decoded_remote_id); $i < 12; $i++) { $t_remote_id = $t_remote_id."0"; }
- }
- $t_remote_id=mac_splitted(isc_mac_simplify($t_remote_id));
- my $devSQL = "SELECT D.id, D.device_name, D.ip, A.mac FROM `devices` AS D,`User_auth` AS A WHERE D.user_id=A.User_id AND D.ip=A.ip AND A.deleted=0 AND A.mac='".$t_remote_id."'";
- log_debug($devSQL);
- $switch = get_record_sql($hdb,$devSQL);
- if ($switch) {
- $remote_id = $t_remote_id;
- $dhcp_record->{'circuit-id'} = $circuit_id;
- $dhcp_record->{'remote-id'} = $remote_id;
- }
- }
- #maybe remote-id is string name device?
- if (!$switch and $remote_id) {
- my @id_words = split(/ /,$remote_id);
- if ($id_words[0]) {
- my $devSQL = "SELECT D.id, D.device_name, D.ip, A.mac FROM `devices` AS D,`User_auth` AS A WHERE D.user_id=A.User_id AND D.ip=A.ip AND A.deleted=0 AND D.device_name like '".$id_words[0]."%'";
- log_debug($devSQL);
- $switch = get_record_sql($hdb,$devSQL);
- }
- }
- #maybe mikrotik?!
- if (!$switch and $circuit_id) {
- my @id_words = split(/ /,$circuit_id);
- if ($id_words[0]) {
- my $devSQL = "SELECT D.id, D.device_name, D.ip, A.mac FROM `devices` AS D,`User_auth` AS A WHERE D.user_id=A.User_id AND D.ip=A.ip AND A.deleted=0 AND D.device_name like '".$id_words[0]."%'";
- log_debug($devSQL);
- $switch = get_record_sql($hdb,$devSQL);
- #fucking mikrotik - swap variables
- if ($switch) {
- $circuit_id = $remote_id;
- $remote_id = $t_circuit_id;
- $dhcp_record->{'circuit-id'} = $circuit_id;
- $dhcp_record->{'remote-id'} = $remote_id;
- }
- }
- }
- if ($switch) {
- $t_circuit_id=~s/[\+\-\s]+/ /g;
- #detect port by name
- my @device_ports = get_records_sql($dbh,"SELECT * FROM device_ports WHERE device_id=".$switch->{id});
- my %device_ports_h;
- foreach my $port_data (@device_ports) {
- if (!$port_data->{snmp_index}) { $port_data->{snmp_index} = $port_data->{port}; }
- $device_ports_h{$port_data->{port}} = $port_data;
- if ($t_circuit_id=~/\s*$port_data->{'ifName'}$/i or $t_circuit_id=~/^$port_data->{'ifName'}\s+/i ) { $switch_port = $port_data; last; }
- }
- #detect hex - get last 2 byte
- if (!$switch_port) {
- my $hex_port = substr($decoded_circuit_id, -2);
- if ($hex_port) {
- my $t_port = hex($hex_port);
- #try find port by index
- if (exists $device_ports_h{$t_port}) { $switch_port =$device_ports_h{$t_port}; }
- }
- }
- if ($switch_port) {
- db_log_verbose($hdb,"Dhcp request type: ".$type." ip=".$ip." and mac=".$mac." from ".$switch->{'device_name'}." and port ".$switch_port->{'ifName'});
- #check connection
- my $connection=get_records_sql($dbh,"SELECT * FROM connections WHERE auth_id=".$auth_id);
- my $new_connection;
- if (!$connection) {
- $new_connection->{port_id} = $switch_port->{id};
- $new_connection->{device_id} = $switch->{id};
- $new_connection->{auth_id} = $auth_id;
- insert_record($hdb,'connections',$new_connection);
- }
- # else
- # {
- # $new_connection->{port_id} = $switch_port->{id};
- # $new_connection->{device_id} = $switch->{id};
- # update_record($hdb,'connections',$new_connection,"id=".$connection->{id});
- # }
- } else {
- db_log_verbose($hdb,"Dhcp request type: ".$type." ip=".$ip." and mac=".$mac." from ".$switch->{'device_name'}." from unknown port");
- }
- }
- }
- log_debug(uc($type).">>");
- log_debug("MAC: ".$dhcp_record->{'mac'});
- log_debug("IP: ".$dhcp_record->{'ip'});
- log_debug("TAGS: ".$dhcp_record->{'tags'});
- log_debug("CIRCUIT-ID: ".$dhcp_record->{'circuit-id'});
- log_debug("REMOTE-ID: ".$dhcp_record->{'remote-id'});
- log_debug("HOSTNAME: ".$dhcp_record->{'hostname'});
- log_debug("TYPE: ".$dhcp_record->{'type'});
- log_debug("TIME: ".$dhcp_event_time);
- log_debug("UTF8 NAME: ".$dhcp_record->{'hostname_utf8'});
- log_debug("SWITCH: ".$switch->{'device_name'}) if ($switch);
- log_debug("SWITCH PORT:".$switch_port->{'ifName'}) if ($switch_port);
- log_debug("END GET");
- update_dns_record_by_dhcp($hdb,$dhcp_record,$auth_record);
- if ($type=~/add/i and $dhcp_record->{hostname_utf8} and $dhcp_record->{hostname_utf8} !~/UNDEFINED/i) {
- my $auth_rec;
- $auth_rec->{dhcp_hostname} = $dhcp_record->{hostname_utf8};
- $auth_rec->{dhcp_time}=$dhcp_event_time;
- $auth_rec->{arp_found}=$dhcp_event_time;
- $auth_rec->{created_by}='dhcp';
- db_log_verbose($hdb,"Add lease by dhcp event for dynamic clients id: $auth_id ip: $dhcp_record->{ip}",$auth_id);
- update_record($hdb,'User_auth',$auth_rec,"id=$auth_id");
- }
- if ($type=~/old/i) {
- my $auth_rec;
- $auth_rec->{dhcp_action}=$type;
- $auth_rec->{dhcp_time}=$dhcp_event_time;
- $auth_rec->{created_by}='dhcp';
- $auth_rec->{arp_found}=$dhcp_event_time;
- db_log_verbose($hdb,"Update lease by dhcp event for dynamic clients id: $auth_id ip: $dhcp_record->{ip}",$auth_id);
- update_record($hdb,'User_auth',$auth_rec,"id=$auth_id");
- }
- if ($type=~/del/i and $auth_id) {
- if ($auth_record->{dhcp_time} =~ /([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})/) {
- my $d_time = mktime($6,$5,$4,$3,$2-1,$1-1900);
- if (time()-$d_time>60 and (is_dynamic_ou($hdb,$auth_ou_id) or is_default_ou($hdb,$auth_ou_id))) {
- db_log_info($hdb,"Remove user ip record by dhcp release event for dynamic clients id: $auth_id ip: $dhcp_record->{ip}",$auth_id);
- my $auth_rec;
- $auth_rec->{dhcp_action}=$type;
- $auth_rec->{dhcp_time}=$dhcp_event_time;
- update_record($hdb,'User_auth',$auth_rec,"id=$auth_id");
- #remove user auth record if it belongs to the default pool or it is dynamic
- if (is_default_ou($hdb,$auth_ou_id) or (is_dynamic_ou($hdb,$auth_ou_id) and $auth_record->{dynamic})) {
- delete_user_auth($hdb,$auth_id);
- my $u_count=get_count_records($hdb,'User_auth','deleted=0 and user_id='.$auth_record->{'user_id'});
- if (!$u_count) { delete_user($hdb,$auth_record->{'user_id'}); }
- }
- }
- }
- }
- if ($dhcp_record->{hotspot} and $ignore_hotspot_dhcp_log) { next; }
- if ($ignore_update_dhcp_event and $type=~/old/i) { next; }
- my $dhcp_log;
- if (!$auth_id) { $auth_id=0; }
- $dhcp_log->{'auth_id'} = $auth_id;
- $dhcp_log->{'ip'} = $dhcp_record->{'ip'};
- $dhcp_log->{'ip_int'} = $dhcp_record->{'ip_aton'};
- $dhcp_log->{'mac'} = $dhcp_record->{'mac'};
- $dhcp_log->{'action'} = $type;
- $dhcp_log->{'dhcp_hostname'} = $dhcp_record->{'hostname_utf8'};
- $dhcp_log->{'timestamp'} = $dhcp_event_time;
- $dhcp_log->{'circuit-id'} = $circuit_id;
- $dhcp_log->{'client-id'} = $client_id;
- $dhcp_log->{'remote-id'} = $remote_id;
- insert_record($hdb,'dhcp_log',$dhcp_log);
- }
- };
- if ($@) { log_error("Exception found: $@"); sleep(60); }
- }
- } else {
- print "Already Running with pid $pid\n";
- }
- }
- sub usage {
- print "usage: $MY_NAME (start|stop|status|restart)\n";
- exit(0);
- }
- sub reload {
- print "reload process not implemented.\n";
- }
- sub restart {
- stop;
- run;
- }
|