]> git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/logs.cgi/ovpnclients.dat
2009990ec844f0535e858ae5fd5500c6f2251025
[ipfire-2.x.git] / html / cgi-bin / logs.cgi / ovpnclients.dat
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2020 IPFire Team <info@ipfire.org> #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23 use POSIX();
24 use DBI;
25
26 # enable only the following on debugging purpose
27 #use warnings;
28 #use CGI::Carp 'fatalsToBrowser';
29
30 require '/var/ipfire/general-functions.pl';
31 require "${General::swroot}/lang.pl";
32 require "${General::swroot}/header.pl";
33
34 my %color = ();
35 my %mainsettings = ();
36 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
37 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
38
39 # Path and file of the OVPN connections database.
40 my $database = "/var/ipfire/ovpn/clients.db";
41
42 my %cgiparams=();
43 my %logsettings=();
44 my %ovpnsettings=();
45
46 my $errormessage='';
47
48 # Hash wich contains the month numbers and the translated names for easy access.
49 my %monthhash = (
50 "1" => "$Lang::tr{'january'}",
51 "2" => "$Lang::tr{'february'}",
52 "3" => "$Lang::tr{'march'}",
53 "4" => "$Lang::tr{'april'}",
54 "5" => "$Lang::tr{'may'}",
55 "6" => "$Lang::tr{'june'}",
56 "7" => "$Lang::tr{'july'}",
57 "8" => "$Lang::tr{'august'}",
58 "9" => "$Lang::tr{'september'}",
59 "10" => "$Lang::tr{'october'}",
60 "11" => "$Lang::tr{'november'}",
61 "12" => "$Lang::tr{'december'}"
62 );
63
64 # Get current time.
65 my ($sec,$min,$hour,$mday,$month,$year,$wday,$yday,$isdst) = localtime(time);
66
67 # Adjust month, because Jan starts as month "0".
68 $month = $month+1;
69
70 # Adjust year number.
71 $year = $year+1900;
72
73 # Assign default vaules.
74 $cgiparams{'FROM_DAY'} = $mday;
75 $cgiparams{'FROM_MONTH'} = $month;
76 $cgiparams{'FROM_YEAR'} = $year;
77 $cgiparams{'TO_DAY'} = $mday;
78 $cgiparams{'TO_MONTH'} = $month;
79 $cgiparams{'TO_YEAR'} = $year;
80
81 &Header::getcgihash(\%cgiparams);
82
83 # Read-in OpenVPN settings and connections.
84 &General::readhasharray("${General::swroot}/ovpn/ovpnconfig", \%ovpnsettings);
85
86 # Init DB Module and connect to the database.
87 my $database_handle = DBI->connect("DBI:SQLite:dbname=$database", "", "", { RaiseError => 1 });
88
89 # Generate datestrings for SQL queries.
90 my $from_datestring = sprintf '%04d-%02d-%02d', ($cgiparams{"FROM_YEAR"}, $cgiparams{"FROM_MONTH"}, $cgiparams{"FROM_DAY"});
91 my $to_datestring = sprintf '%04d-%02d-%02d', ($cgiparams{"TO_YEAR"}, $cgiparams{"TO_MONTH"}, $cgiparams{"TO_DAY"});
92
93 # Check if the to datestring is later than the from datestring.
94 unless ($to_datestring ge $from_datestring) {
95 $errormessage = "$Lang::tr{'error the to date has to be later than the from date'}";
96 }
97
98 my $database_query = qq(
99 SELECT
100 common_name, SUM(
101 STRFTIME('%s', (
102 CASE
103 WHEN DATETIME(COALESCE(disconnected_at, CURRENT_TIMESTAMP), 'localtime') < DATETIME('$to_datestring', 'localtime', 'start of day', '+86399 seconds')
104 THEN DATETIME(COALESCE(disconnected_at, CURRENT_TIMESTAMP), 'localtime')
105 ELSE DATETIME('$to_datestring', 'localtime', 'start of day', '+86399 seconds')
106 END
107 ), 'utc') -
108 STRFTIME('%s', (
109 CASE
110 WHEN DATETIME(connected_at, 'localtime') > DATETIME('$from_datestring', 'localtime', 'start of day')
111 THEN DATETIME(connected_at, 'localtime')
112 ELSE DATETIME('$from_datestring', 'localtime', 'start of day')
113 END
114 ), 'utc')
115 ) AS duration
116 FROM sessions
117 WHERE
118 (
119 disconnected_at IS NULL
120 OR
121 DATETIME(disconnected_at, 'localtime') > DATETIME('$from_datestring', 'localtime', 'start of day')
122 )
123 AND
124 DATETIME(connected_at, 'localtime') < DATETIME('$to_datestring', 'localtime', 'start of day', '+86399 seconds')
125 GROUP BY common_name
126 ORDER BY common_name, duration DESC;
127 );
128
129 if ($cgiparams{'CONNECTION_NAME'}) {
130 $database_query = qq(
131 SELECT common_name, DATETIME(connected_at, 'localtime'), DATETIME(disconnected_at, 'localtime'), bytes_received, bytes_sent,
132 STRFTIME('%s', DATETIME(disconnected_at)) - STRFTIME('%s', DATETIME(connected_at)) AS duration FROM sessions
133 WHERE
134 common_name = '$cgiparams{"CONNECTION_NAME"}'
135 AND (
136 DATETIME(disconnected_at, 'localtime') > DATETIME('$from_datestring', 'localtime', 'start of day')
137 AND
138 DATETIME(connected_at, 'localtime') < DATETIME('$to_datestring', 'localtime', 'start of day', '+86399 seconds')
139 )
140 ORDER BY connected_at;
141 );
142 }
143
144 my $statement_handle;
145 my $database_return_value;
146
147 # Only process SQL actions if there is no error message.
148 unless ($errormessage) {
149 # Prepare SQL statement.
150 $statement_handle = $database_handle->prepare($database_query);
151
152 # Execute SQL statement and get retun value if any error happened.
153 $database_return_value = $statement_handle->execute();
154 }
155
156 # If an error has been returned, assign it to the errorstring value for displaying.
157 if($database_return_value < 0) {
158 $errormessage = "$DBI::errstr";
159 }
160
161 &Header::showhttpheaders();
162
163 &Header::openpage($Lang::tr{'ovpn rw connection log'}, 1, '');
164
165 &Header::openbigbox('100%', 'left', '', $errormessage);
166
167 if ($errormessage) {
168 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
169 print "<font class='base'>$errormessage&nbsp;</font>\n";
170 &Header::closebox();
171 }
172
173 &Header::openbox('100%', 'left', "$Lang::tr{'settings'}:");
174
175 print "<form method='post' action=\"$ENV{'SCRIPT_NAME'}\">\n";
176 print "<table width='100%'>\n";
177 print "<tr>\n";
178 print "<td class='base' colspan='2'><b>$Lang::tr{'from'}:</b></td>\n";
179 print "</tr>\n";
180
181 print "<tr>\n";
182 print "<td class='base'>$Lang::tr{'day'}:&nbsp\;\n";
183 &generate_select("FROM_DAY", "days");
184 print "</td>\n";
185
186 print "<td class='base'>$Lang::tr{'month'}:&nbsp\;\n";
187 &generate_select("FROM_MONTH", "months");
188 print "</td>\n";
189
190 print "<td class='base'>$Lang::tr{'year'}:&nbsp\;\n";
191 &generate_select("FROM_YEAR", "years");
192 print "</td>\n";
193 print "</tr>\n";
194
195 print "<tr><td><br></td></tr>\n";
196
197 print "<tr>\n";
198 print "<td class='base' colspan='2'><b>$Lang::tr{'to'}:</b></td>\n";
199 print "</tr>\n";
200
201 print "<tr>\n";
202 print "<td class='base'>$Lang::tr{'day'}:&nbsp\;\n";
203 &generate_select("TO_DAY", "days");
204 print "</td>\n";
205
206 print "<td class='base'>$Lang::tr{'month'}:&nbsp\;\n";
207 &generate_select("TO_MONTH", "months");
208 print "</td>\n";
209
210 print "<td class='base'>$Lang::tr{'year'}:&nbsp\;\n";
211 &generate_select("TO_YEAR", "years");
212 print "</td>\n";
213 print "</tr>\n";
214
215 print "<tr><td><br></td></tr>\n";
216
217 print "<tr>\n";
218 print "<td class='base'>$Lang::tr{'ovpn connection name'}:</td>\n";
219 print "<td class='base' colspan='2'>\n";
220
221 print "<select name='CONNECTION_NAME' size='1'>\n";
222 print "<option value=''>$Lang::tr{'all'}</option>\n";
223
224 # Loop through all configured OpenVPN connections and sort them by name.
225 foreach my $key (sort { $ovpnsettings{$a}[2] cmp $ovpnsettings{$b}[2] } keys %ovpnsettings) {
226 my $connection_name = $ovpnsettings{$key}[2];
227 my $selected;
228
229 # Skip all non roadwarrior connections.
230 next unless ($ovpnsettings{"$key"}[3] eq "host");
231
232 # Check and mark the selected one.
233 if ($connection_name eq "$cgiparams{'CONNECTION_NAME'}") {
234 $selected = "selected";
235 }
236
237 print "<option value='$connection_name' $selected>$connection_name</option>\n";
238 }
239
240 print "</select>\n";
241 print "</td>\n";
242 print "</tr>\n";
243
244 print "<tr>\n";
245 print "<td width='100%' align='right' colspan='3'><input type='submit' name='ACTION' value='$Lang::tr{'update'}'></td>\n";
246 print "</tr>\n";
247 print "</table>\n";
248 print "</form>\n";
249
250 &Header::closebox();
251
252 &Header::openbox('100%', 'left', $Lang::tr{'log'});
253
254 my $lines = 0;
255
256 print "<table width='100%' class='tbl'>";
257
258 my $col = "bgcolor='$color{'color20'}'";
259
260 print "<tr>\n";
261 print "<td width='40%' $col><b>$Lang::tr{'ovpn connection name'}</b></td>\n";
262
263 if ($cgiparams{'CONNECTION_NAME'}) {
264 print "<td width='15%' $col><b>$Lang::tr{'connected'}</b></td>\n";
265 print "<td width='15%' $col><b>$Lang::tr{'disconnected'}</b></td>\n";
266 print "<td width='10%' align='right' $col><b>$Lang::tr{'duration'}</b></td>\n";
267 print "<td width='10%' align='right' $col><b>$Lang::tr{'received'}</b></td>\n";
268 print "<td width='10%' align='right' $col><b>$Lang::tr{'sent'}</b></td>\n";
269 } else {
270 print "<td $col><b>$Lang::tr{'total connection time'}</b>\n";
271 }
272
273 print "</tr>\n";
274
275 # Only try to fetch the DB items if there is no error message.
276 unless ($errormessage) {
277 while(my @row = $statement_handle->fetchrow_array()) {
278 # Assign some nice to read variable names for the DB fields.
279 my $connection_name = $row[0];
280 my $connection_open_time = $row[1];
281 my $connection_close_time = $row[2];
282 my $connection_bytes_recieved = &General::formatBytes($row[3]);
283 my $connection_bytes_sent = &General::formatBytes($row[4]);
284 my $duration = &General::format_time($row[5]);
285
286 # Colorize columns.
287 if ($lines % 2) {
288 $col="bgcolor='$color{'color20'}'";
289 } else {
290 $col="bgcolor='$color{'color22'}'";
291 }
292
293 print "<tr>\n";
294 print "<td width='40%' $col>$connection_name</td>\n";
295
296 if ($cgiparams{'CONNECTION_NAME'}) {
297 print "<td width='15%' $col>$connection_open_time</td>\n";
298 print "<td width='15%' $col>$connection_close_time</td>\n";
299 print "<td width='10%' align='right' $col>$duration</td>\n";
300 print "<td width='10%' align='right' $col>$connection_bytes_recieved</td>\n";
301 print "<td width='10%' align='right' $col>$connection_bytes_sent</td>\n";
302 } else {
303 # Convert total connection time into human-readable format.
304 my $total_time = &General::format_time($row[1]);
305
306 print "<td $col>$total_time</td>\n";
307 }
308
309 print "</tr>\n";
310
311 # Increase lines count.
312 $lines++;
313 }
314 }
315
316 # If nothing has been fetched, the amount of lines is still zero.
317 # In this case display a hint about no data.
318 unless ($lines) {
319 print "<tr><td bgcolor='$color{'color22'}' colspan='6' align='center'>$Lang::tr{'no entries'}</td></tr>\n";
320 }
321
322 print "</table><br>\n";
323
324 &Header::closebox();
325
326 # Close database connection.
327 $database_handle->disconnect();
328
329 &Header::closebigbox();
330
331 &Header::closepage();
332
333 #
334 ## Function for easy select generation.
335 #
336 sub generate_select($$) {
337 my ($name, $type) = @_;
338
339 my $start = 1;
340 my $stop;
341
342 # Adjust start and stop by the given type.
343 if ($type eq "days") {
344 $stop = 31;
345 } elsif ($type eq "months") {
346 $stop = 12;
347 } elsif ($type = "years") {
348 $stop = $year;
349 $start = $stop - 10;
350 }
351
352 # Print select HTML tag.
353 print "<select name='$name' size='1'>\n";
354
355 # Loop through the range.
356 for ( my $i = $start; $i <= $stop; $i++) {
357 print "\t<option ";
358
359 # Check and select the current processed item.
360 if ($i == $cgiparams{$name}) {
361 print 'selected="selected" ';
362 }
363
364 # Check if months are processed and display the corresponding names.
365 if ($type eq "months") {
366 print "value='$i'>$monthhash{$i}</option>\n";
367 } else {
368 print "value='$i'>$i</option>\n";
369 }
370 }
371
372 # Close select HTML tag.
373 print "</select>\n\n";
374 }