parse_flow.pl 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. #!/usr/bin/perl
  2. #
  3. # Copyright (C) Roman Dmitiriev, rnd@rajven.ru
  4. #
  5. use utf8;
  6. use open ":encoding(utf8)";
  7. use English;
  8. use base;
  9. use FindBin '$Bin';
  10. use lib "/opt/Eye/scripts";
  11. use strict;
  12. use DBI;
  13. use Time::Local;
  14. use Net::Patricia;
  15. use Data::Dumper;
  16. use Date::Parse;
  17. use Socket;
  18. use eyelib::config;
  19. use eyelib::main;
  20. use eyelib::net_utils;
  21. use eyelib::database;
  22. use Parallel::ForkManager;
  23. if (!$ARGV[0]) { exit 110; }
  24. my $router_id=$ARGV[0];
  25. my $fork_count = $cpu_count*10;
  26. my $timeshift = get_option($dbh,55)*60;
  27. db_log_debug($dbh,"Import traffic from router id: $router_id start. Timestep $timeshift sec.") if ($debug);
  28. my %stats;
  29. $stats{pkt}{all}=0;
  30. $stats{pkt}{user_in}=0;
  31. $stats{pkt}{user_out}=0;
  32. $stats{pkt}{free}=0;
  33. $stats{pkt}{unknown}=0;
  34. $stats{line}{all}=0;
  35. $stats{line}{user}=0;
  36. $stats{line}{free}=0;
  37. $stats{line}{unknown}=0;
  38. # net objects
  39. my $users = new Net::Patricia;
  40. InitSubnets();
  41. #get userid list
  42. my @auth_list_ref = get_records_sql($dbh,"SELECT id,ip,user_id,save_traf FROM User_auth where deleted=0 ORDER by user_id");
  43. my %user_stats;
  44. foreach my $row (@auth_list_ref) {
  45. $users->add_string($row->{ip},$row->{id});
  46. $user_stats{$row->{ip}}{net}=$row->{ip};
  47. $user_stats{$row->{ip}}{auth_id}=$row->{id};
  48. $user_stats{$row->{ip}}{user_id}=$row->{user_id};
  49. $user_stats{$row->{ip}}{save_traf}=$row->{save_traf};
  50. $user_stats{$row->{ip}}{in}=0;
  51. $user_stats{$row->{ip}}{out}=0;
  52. $user_stats{$row->{ip}}{pkt_in}=0;
  53. $user_stats{$row->{ip}}{pkt_out}=0;
  54. }
  55. my $last_time = localtime();
  56. my $hour_date;
  57. my $minute_date;
  58. my @batch_sql_traf=();
  59. my $pm = Parallel::ForkManager->new($fork_count);
  60. $pm->run_on_finish(
  61. sub {
  62. my ($pid, $exit, $ident, $signal, $core, $data) = @_;
  63. if ($data) {
  64. my $dataref = ${$data};
  65. my $f_dbh=init_db();
  66. db_log_debug($f_dbh,"Run get data from child") if ($debug);
  67. foreach my $user_ip (keys %{$dataref->{stats}}) {
  68. $user_stats{$user_ip}{in} += $dataref->{stats}{$user_ip}{in};
  69. $user_stats{$user_ip}{pkt_in} +=$dataref->{stats}{$user_ip}{pkt_in};
  70. $user_stats{$user_ip}{out} += $dataref->{stats}{$user_ip}{out};
  71. $user_stats{$user_ip}{pkt_out} +=$dataref->{stats}{$user_ip}{pkt_out};
  72. }
  73. $stats{pkt}{all}+=$dataref->{pkt}{all};
  74. $stats{pkt}{user_in}+=$dataref->{pkt}{user_in};
  75. $stats{pkt}{user_out}+=$dataref->{pkt}{user_out};
  76. $stats{pkt}{free}+=$dataref->{pkt}{free};
  77. $stats{pkt}{unknown}+=$dataref->{pkt}{unknown};
  78. $stats{line}{all}+=$dataref->{line}{all};
  79. $stats{line}{user}+=$dataref->{line}{user};
  80. $stats{line}{free}+=$dataref->{line}{free};
  81. $stats{line}{unknown}+=$dataref->{line}{unknown};
  82. $last_time = $dataref->{last_time};
  83. db_log_debug($f_dbh,"Get data from child stopped") if ($debug);
  84. $f_dbh->disconnect;
  85. }
  86. }
  87. );
  88. $dbh->disconnect;
  89. my @input_buf=();
  90. my $line_count = 0;
  91. my $child_count = 0;
  92. while (my $raw_line = <STDIN>) {
  93. chomp($raw_line);
  94. $raw_line=~s/\s+//g;
  95. $line_count++;
  96. push(@input_buf,$raw_line);
  97. if ($line_count < 50000 and $raw_line =~ /\S/) { next; }
  98. $line_count = 0;
  99. $child_count ++;
  100. my @tmp = ();
  101. push (@tmp,@input_buf);
  102. undef @input_buf;
  103. $pm->start and next;
  104. my $ret = calc_stats(\@tmp);
  105. $pm->finish(0, \$ret);
  106. }
  107. if (scalar(@input_buf)) {
  108. $child_count ++;
  109. $pm->start;
  110. my $ret = calc_stats(\@input_buf);
  111. $pm->finish(0, \$ret);
  112. }
  113. $pm->wait_all_children;
  114. undef(@input_buf);
  115. sub calc_stats {
  116. my $lines = shift;
  117. return if (!$lines or !scalar @$lines);
  118. my $f_dbh = init_db();
  119. db_log_debug($f_dbh,"Started child $child_count for ".scalar @$lines." lines count") if ($debug);
  120. my $lines_stats;
  121. $lines_stats->{pkt}{all}=0;
  122. $lines_stats->{pkt}{user_in}=0;
  123. $lines_stats->{pkt}{user_out}=0;
  124. $lines_stats->{pkt}{free}=0;
  125. $lines_stats->{pkt}{unknown}=0;
  126. $lines_stats->{line}{all}=0;
  127. $lines_stats->{line}{user}=0;
  128. $lines_stats->{line}{free}=0;
  129. $lines_stats->{line}{unknown}=0;
  130. my @detail_traffic=();
  131. foreach my $line (@$lines) {
  132. next if (!$line);
  133. my ($l_time,$l_proto,$l_src_ip,$l_dst_ip,$l_src_port,$l_dst_port,$l_packets,$l_bytes,$l_in_dev,$l_out_dev) = split(/;/,$line);
  134. next if (!$l_time or !$l_src_ip or !$l_dst_ip);
  135. $lines_stats->{pkt}{all}+=$l_packets;
  136. $lines_stats->{line}{all}++;
  137. $lines_stats->{last_time} = $l_time;
  138. if (!$l_time) { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  139. if ($l_src_ip eq '0.0.0.0') { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  140. if ($l_dst_ip eq '0.0.0.0') { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  141. if ($l_src_ip eq '255.255.255.255') { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  142. if ($l_dst_ip eq '255.255.255.255') { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  143. #special networks
  144. if ($Special_Nets and $Special_Nets->match_string($l_src_ip) or $Special_Nets->match_string($l_dst_ip)) { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  145. #unknown networks
  146. if ($office_networks and (!$office_networks->match_string($l_src_ip) and !$office_networks->match_string($l_dst_ip))) { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  147. #local forward
  148. if ($office_networks and ($office_networks->match_string($l_src_ip) and $office_networks->match_string($l_dst_ip))) { $lines_stats->{line}{free}++; $lines_stats->{line}{free}+=$l_packets; next; }
  149. #free forward
  150. if ($office_networks and ($office_networks->match_string($l_src_ip) and $free_networks->match_string($l_dst_ip))) { $lines_stats->{line}{free}++; $lines_stats->{line}{free}+=$l_packets; next; }
  151. if ($free_networks and ($free_networks->match_string($l_src_ip) and $office_networks->match_string($l_dst_ip))) { $lines_stats->{line}{free}++; $lines_stats->{line}{free}+=$l_packets; next; }
  152. my $l_src_ip_aton=StrToIp($l_src_ip);
  153. my $l_dst_ip_aton=StrToIp($l_dst_ip);
  154. my ($sec,$min,$hour,$day,$month,$year,$zone) = (localtime($l_time))[0,1,2,3,4,5];
  155. $month++;
  156. $year += 1900;
  157. #my $full_time = $f_dbh->quote(sprintf "%04d-%02d-%02d %02d:%02d:%02d",$year,$month,$day,$hour,$min,$sec);
  158. my $full_time = sprintf "%04d-%02d-%02d %02d:%02d:%02d",$year,$month,$day,$hour,$min,$sec;
  159. my $user_ip;
  160. my $auth_id;
  161. # find user
  162. if ($users->match_string($l_src_ip)) {
  163. $user_ip = $l_src_ip;
  164. $lines_stats->{stats}{$user_ip}{ip}=$user_ip;
  165. if (!$lines_stats->{stats}{$user_ip}{out}) { $lines_stats->{stats}{$user_ip}{out}=0; }
  166. if (!$lines_stats->{stats}{$user_ip}{pkt_out}) { $lines_stats->{stats}{$user_ip}{pkt_out}=0; }
  167. $lines_stats->{stats}{$user_ip}{out} += $l_bytes;
  168. $lines_stats->{stats}{$user_ip}{pkt_out} +=$l_packets;
  169. $lines_stats->{line}{user}++;
  170. $lines_stats->{pkt}{user_out}+=$l_packets;
  171. }
  172. if ($users->match_string($l_dst_ip)) {
  173. $user_ip = $l_dst_ip;
  174. $lines_stats->{stats}{$user_ip}{ip}=$l_dst_ip;
  175. if (!$lines_stats->{stats}{$user_ip}{in}) { $lines_stats->{stats}{$user_ip}{in}=0; }
  176. if (!$lines_stats->{stats}{$user_ip}{pkt_in}) { $lines_stats->{stats}{$user_ip}{pkt_in}=0; }
  177. $lines_stats->{stats}{$user_ip}{in} += $l_bytes;
  178. $lines_stats->{stats}{$user_ip}{pkt_in} +=$l_packets;
  179. $lines_stats->{line}{user}++;
  180. $lines_stats->{pkt}{user_in}+=$l_packets;
  181. }
  182. my $auth_id;
  183. if ($user_ip) { $auth_id = $users->match_string($user_ip); } else { $auth_id = 0; }
  184. #save full packet
  185. if ($config_ref{save_detail}) {
  186. my @detail_array = ($auth_id,$router_id,$full_time,$l_proto,$l_src_ip_aton,$l_dst_ip_aton,$l_src_port,$l_dst_port,$l_bytes,$l_packets);
  187. if ($auth_id and $user_stats{$user_ip}{save_traf}) { push(@detail_traffic,\@detail_array); }
  188. if (!$auth_id and $config_ref{add_unknown_user}) { push(@detail_traffic,\@detail_array); }
  189. }
  190. if ($auth_id) { next; }
  191. if (!$config_ref{add_unknown_user}) { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  192. #add user by src ip only if dst not office network!!!!
  193. #ignore dst traffic for create user
  194. if (!$office_networks->match_string($l_dst_ip) and $office_networks->match_string($l_src_ip)) {
  195. $user_ip = $l_src_ip;
  196. $users->add_string($user_ip,0);
  197. }
  198. if (!$user_ip) { $lines_stats->{line}{illegal}++; $lines_stats->{pkt}{illegal}+=$l_packets; next; }
  199. if ($user_ip eq $l_src_ip) {
  200. $lines_stats->{stats}{$user_ip}{ip}=$user_ip;
  201. $lines_stats->{stats}{$user_ip}{auth_id}= 0;
  202. if (!$lines_stats->{stats}{$user_ip}{out}) { $lines_stats->{stats}{$user_ip}{out}=0; }
  203. if (!$lines_stats->{stats}{$user_ip}{pkt_out}) { $lines_stats->{stats}{$user_ip}{pkt_out}=0; }
  204. $lines_stats->{stats}{$user_ip}{out} += $l_bytes;
  205. $lines_stats->{stats}{$user_ip}{pkt_out} +=$l_packets;
  206. $lines_stats->{line}{user}++;
  207. $lines_stats->{pkt}{user_out}+=$l_packets;
  208. }
  209. }
  210. db_log_debug($f_dbh,"Stopped child $child_count analyze data") if ($debug);
  211. if (scalar(@detail_traffic)) {
  212. db_log_debug($f_dbh,"Start write traffic detail to DB. ".scalar @detail_traffic." lines count") if ($debug);
  213. batch_db_sql_cached("INSERT INTO Traffic_detail (auth_id,router_id,timestamp,proto,src_ip,dst_ip,src_port,dst_port,bytes,pkt) VALUES(?,?,?,?,?,?,?,?,?,?)",\@detail_traffic);
  214. db_log_debug($f_dbh,"Write traffic detail to DB stopped") if ($debug);
  215. }
  216. $f_dbh->disconnect;
  217. return $lines_stats;
  218. }
  219. my $m_dbh=init_db();
  220. ####################################################################################################
  221. if (!$last_time) { $last_time = localtime(); }
  222. #start hour
  223. my ($min,$hour,$day,$month,$year) = (localtime($last_time))[1,2,3,4,5];
  224. #flow time
  225. my $flow_date = $m_dbh->quote(sprintf "%04d-%02d-%02d %02d:%02d:00",$year+1900,$month+1,$day,$hour,$min);
  226. #start stat time
  227. my $hour_date1 = $m_dbh->quote(sprintf "%04d-%02d-%02d %02d:00:00",$year+1900,$month+1,$day,$hour);
  228. #end hour
  229. ($hour,$day,$month,$year) = (localtime($last_time+3600))[2,3,4,5];
  230. my $hour_date2 = $m_dbh->quote(sprintf "%04d-%02d-%02d %02d:00:00",$year+1900,$month+1,$day,$hour);
  231. # update database
  232. foreach my $user_ip (keys %user_stats) {
  233. my $user_ip_aton=StrToIp($user_ip);
  234. my $auth_id = $user_stats{$user_ip}{auth_id};
  235. if (!$auth_id) {
  236. $auth_id=new_auth($m_dbh,$user_ip);
  237. $user_stats{$user_ip}{auth_id}=$auth_id;
  238. #fix traffic detail for new users
  239. push(@batch_sql_traf,"UPDATE Traffic_detail set auth_id=$auth_id WHERE auth_id=0 AND `timestamp`>=$hour_date1 AND `timestamp`<$hour_date2 AND (src_ip=$user_ip_aton OR dst_ip=$user_ip_aton)");
  240. }
  241. #skip empty stats
  242. if ($user_stats{$user_ip}{in} + $user_stats{$user_ip}{out} ==0) { next; }
  243. #current stats
  244. my $tSQL="INSERT INTO User_stats_full (timestamp,auth_id,router_id,byte_in,byte_out,pkt_in,pkt_out,step) VALUES($flow_date,'$auth_id','$router_id','$user_stats{$user_ip}{in}','$user_stats{$user_ip}{out}','$user_stats{$user_ip}{pkt_in}','$user_stats{$user_ip}{pkt_out}','$timeshift')";
  245. push (@batch_sql_traf,$tSQL);
  246. #last found timestamp
  247. $tSQL="UPDATE User_auth SET `last_found`=$flow_date WHERE id='$auth_id'";
  248. push (@batch_sql_traf,$tSQL);
  249. #hour stats
  250. # get current stats
  251. my $sql = "SELECT id, byte_in, byte_out FROM User_stats WHERE `timestamp`>=$hour_date1 AND `timestamp`<$hour_date2 AND router_id=$router_id AND auth_id=$auth_id";
  252. my $hour_stat = get_record_sql($m_dbh,$sql);
  253. if (!$hour_stat) {
  254. my $dSQL="INSERT INTO User_stats (timestamp,auth_id,router_id,byte_in,byte_out) VALUES($flow_date,'$auth_id','$router_id','$user_stats{$user_ip}{in}','$user_stats{$user_ip}{out}')";
  255. push (@batch_sql_traf,$dSQL);
  256. next;
  257. }
  258. if (!$hour_stat->{byte_in}) { $hour_stat->{byte_in}=0; }
  259. if (!$hour_stat->{byte_out}) { $hour_stat->{byte_out}=0; }
  260. $hour_stat->{byte_in} += $user_stats{$user_ip}{in};
  261. $hour_stat->{byte_out} += $user_stats{$user_ip}{out};
  262. $tSQL="UPDATE User_stats SET byte_in='".$hour_stat->{byte_in}."', byte_out='".$hour_stat->{byte_out}."' WHERE id='".$auth_id."' AND router_id='".$router_id."'";
  263. push (@batch_sql_traf,$tSQL);
  264. }
  265. batch_db_sql($m_dbh,\@batch_sql_traf);
  266. db_log_debug($m_dbh,"Import traffic from router id: $router_id stop") if ($debug);
  267. db_log_verbose($m_dbh,"Recalc quotes started");
  268. recalc_quotes($m_dbh,$router_id);
  269. db_log_verbose($m_dbh,"Recalc quotes stopped");
  270. db_log_verbose($m_dbh,"router id: $router_id stop Traffic statistics, lines: all => $stats{line}{all}, user=> $stats{line}{user}, free => $stats{line}{free}, illegal=> $stats{line}{illegal}");
  271. db_log_verbose($m_dbh,sprintf("router id: %d stop Traffic speed, line/s: all => %.2f, user=> %.2f, free => %.2f, unknown=> %.2f", $router_id, $stats{line}{all}/$timeshift, $stats{line}{user}/$timeshift, $stats{line}{free}/$timeshift, $stats{line}{illegal}/$timeshift));
  272. db_log_verbose($m_dbh,"router id: $router_id stop Traffic statistics, pkt: all => $stats{pkt}{all}, user_in=> $stats{pkt}{user_in}, user_in=> $stats{pkt}{user_out}, free => $stats{pkt}{free}, illegal=> $stats{pkt}{illegal}");
  273. db_log_verbose($m_dbh,sprintf("router id: %d stop Traffic speed, pkt/s: all => %.2f, user_in=> %.2f, user_out=> %.2f, free => %.2f, unknown=> %.2f", $router_id, $stats{pkt}{all}/$timeshift, $stats{pkt}{user_in}/$timeshift, $stats{pkt}{user_out}/$timeshift, $stats{pkt}{free}/$timeshift, $stats{pkt}{illegal}/$timeshift));
  274. $m_dbh->disconnect;
  275. exit 0;