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
|
#!/usr/bin/perl -w
use strict;
use warnings;
{
package RspamdWebInterface;
use strict;
use Mail::Rspamd::Client;
use CGI qw/:standard -debug/;
use IO::Socket::INET;
use IO::String;
use Data::Dumper;
my %cfg = (
'hosts' => ['localhost:11333'],
);
sub new {
my ($class, $args) = @_;
$class = ref($class) || $class;
my $self = {
addr => 'localhost',
port => 8080,
standalone => 0,
server_name => 'localhost',
};
if ($args->{'standalone'}) {
$self->{'standalone'} = 1;
}
if ($args->{'port'}) {
$self->{'port'} = $args->{'port'};
}
if ($args->{'server_name'}) {
$self->{'server_name'} = $args->{'server_name'};
}
if ($args->{'addr'}) {
$self->{'addr'} = $args->{'addr'};
}
if ($args->{'config'}) {
eval($args->{'config'});
}
bless($self, $class);
$self;
}
sub _handle_ping {
my $self = shift;
my (@servers_alive, @servers_dead);
my $rspamd = Mail::Rspamd::Client->new({});
# Walk throught selection of servers
foreach (@{ $cfg{'hosts'} }) {
if ($rspamd->ping($_)) {
push(@servers_alive, $_);
}
else {
push(@servers_dead, $_);
}
}
print header;
print qq!<select multiple="multiple" id="id_servers" name="servers">!;
foreach (@servers_alive) {
print qq!<option value="$_" style="color:#8CC543">$_</option>!;
}
foreach (@servers_dead) {
print qq!<option value="$_" style="color:#C51111" disable="disable">$_</option>!;
}
print "</select>";
}
sub _show_html {
my $self = shift;
print header,
start_html(-title=>'Rspamd control', -script=>[{-type=>'JAVASCRIPT', -src=>'http://www.google.com/jsapi'},
{-type=>'JAVASCRIPT', -code=>'google.load("jquery", "1");'}]),
h1('Manage rspamd cluster'),
start_form(-method=>'POST', -enctype=>&CGI::MULTIPART),
"<label for=\"id_servers\">Servers:</label>",
"<div id=\"servers_div\">",
scrolling_list(-name => 'servers',
-multiple=>'true',
-values=>$cfg{'hosts'},
-id=>'id_servers',
),
"</div>",
button(-name=>'ping',
-value=>'Ping',
-onClick=>'$.ajax({
url: \'/ajax\',
success: function(data) {
$(\'#servers_div\').html(data);
}
});'),
br,
"<label for='id_command'>Command:</label>",
popup_menu (-name=>'command',
-values=>['symbols', 'check', 'stat', 'learn', 'fuzzy_add', 'fuzzy_del', 'weights', 'uptime'],
-labels=> {
'symbols'=>'Scan symbols for message',
'check'=>'Check if message is spam',
'stat'=>'Check statistics',
'learn'=>'Learn rspamd with message',
'fuzzy_add'=>'Add fuzzy hash',
'fuzzy_del'=>'Delete fuzzy hash',
'weights'=>'Check weights of message',
'uptime'=>'Get uptime',
},
-id=>'id_command',
),
br,
"<label for=\"id_statfile\">Statfile:</label>",
textfield(-name=>'statfile', -id=>'id_statfile'),
br,
"<label for=\"id_file\">File:</label>",
filefield(-name=>'upload_file', -id=>'id_file'),
br,
"<label for=\"id_message\">Message text:</label>",
textarea(-name=>'message', -id=>'id_message', -rows=>10, -columns=>80),
br,
"<label for=\"id_weight\">Weight of learn:</label>",
textfield(-name=>'weight', -id=>'id_weight'),
br,
submit,
end_form;
print end_html;
}
sub _get_file {
my $self = shift;
my $fh = shift;
my $output;
my $buffer;
if (! $fh) {
return undef;
}
my $io_handle = $fh->handle;
while (my $bytesread = $io_handle->read($buffer,1024)) {
$output .= $buffer;
}
return $output;
}
sub _make_rfc822_message {
my $self = shift;
my $msg = shift;
# Check whether first line is a header line
if ($msg =~ /^[^:]+:\s*\S+$/) {
# Assume that message has all headers
return $msg;
}
else {
my $output = <<EOT;
Received: from localhost (localhost [127.0.0.1])
by localhost (Postfix) with ESMTP id 5EC0D146;
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Date: Thu, 1 Jan 1970 00:00:00 +0000
From: auto\@non-existent.com
Message-Id: <auto\@non-existent.com>
$msg
EOT
return $output;
}
}
sub _get_message {
my $self = shift;
my $cgi = shift;
if ($cgi->param('upload_file')) {
return $self->_get_file($cgi->upload('upload_file'));
}
elsif (my $msg = $cgi->param('message')) {
return $self->_make_rfc822_message ($msg);
}
undef;
}
sub _show_rspamc_result {
my $self = shift;
my $host = shift;
my $res = shift;
if (defined($res->{error})) {
print "<p><strong>Error occured:</strong> $res->{error}</p>";
}
else {
while (my ($metric, $result) = each (%{ $res })) {
print "<p><strong>Metric:</strong> $metric</p>";
print "<p><strong>Summary:</strong> $result->{isspam}, [ $result->{score} / $result->{threshold} ]</p>";
print "<p><strong>Symbols:</strong> ";
print join("; ", @{ $result->{symbols} }) . "</p>";
print "<p><strong>Urls:</strong> " . join(", ", @{ $result->{urls} }) . "</p>";
foreach my $msg (@{ $result->{messages} }) {
print "<p><strong>Message:</strong> $msg</p>";
}
print br;
}
}
}
sub _show_error {
my $self = shift;
my $error = shift;
print header,
start_html(-title=>'Rspamd control', -script=>[{-type=>'JAVASCRIPT', -src=>'http://www.google.com/jsapi'},
{-type=>'JAVASCRIPT', -code=>'google.load("jquery", "1");'}]),
h1('Results for rspamd command'),
"<p><strong>Error occured:</strong> $error</p>",
'<a href="javascript:history.back()">Back to manage</a>',
end_html;
}
sub _show_control_result {
my $self = shift;
my $host = shift;
my $res = shift;
if ($res->{error_code} == 0) {
print "<p><pre>$res->{error}</pre></p>";
}
else {
print "<p><strong>Error occured:</strong> $res->{error}</p>";
}
}
sub _show_results {
my $self = shift;
my $rspamd = shift;
my $res = shift;
if (defined ($res->{error})) {
$self->_print_error($res->{error});
return;
}
print header,
start_html(-title=>'Rspamd control', -script=>[{-type=>'JAVASCRIPT', -src=>'http://www.google.com/jsapi'},
{-type=>'JAVASCRIPT', -code=>'google.load("jquery", "1");'}]),
h1('Results for rspamd command: ' . $rspamd->{command});
while (my ($host, $result) = each (%{ $res })) {
print h2('Results for host: ' . $host);
if ($rspamd->{control}) {
$self->_show_control_result ($host, $result);
}
else {
$self->_show_rspamc_result ($host, $result);
}
print hr;
}
print '<a href="javascript:history.back()">Back to manage</a>';
print end_html;
}
sub _handle_form {
my $self = shift;
my $cgi = shift;
my @servers = $cgi->param('servers');
if (!@servers || scalar(@servers) == 0) {
@servers = @{ $cfg{'hosts'} };
}
my $rspamd = Mail::Rspamd::Client->new({hosts => \@servers});
my $cmd = $cgi->param('command');
if (!$cmd) {
return undef;
}
my $results;
if($cmd eq 'symbols' || $cmd eq 'check') {
my $msg = $self->_get_message($cgi);
return undef unless $msg;
$results = $rspamd->$cmd($msg);
}
elsif ($cmd eq 'learn') {
my $statfile = $cgi->param('statfile');
return undef unless $statfile;
my $msg = $self->_get_message($cgi);
return undef unless $msg;
$rspamd->{'statfile'} = $statfile;
if (my $weight = $cgi->param('weight')) {
$rspamd->{'weight'} = int($weight);
}
$results = $rspamd->learn($msg);
}
elsif ($cmd eq 'fuzzy_add' || $cmd eq 'fuzzy_del') {
my $msg = $self->_get_message($cgi);
return undef unless $msg;
if (my $weight = $cgi->param('weight')) {
$rspamd->{'weight'} = int($weight);
}
$results = $rspamd->$cmd($msg);
}
elsif ($cmd eq 'stat' || $cmd eq 'uptime') {
$results = $rspamd->$cmd();
}
$self->_show_results($rspamd, $results);
}
sub _handle_request {
my $self = shift;
my $cgi = shift;
my $path = $cgi->path_info();
unless ($path) {
print "CGI environment missing\n";
return undef;
}
print "HTTP/1.0 200 OK\r\n";
if ($cgi->request_method() eq 'POST') {
if (!$self->_handle_form($cgi)) {
$self->_show_error("invalid command");
}
}
else {
if ($path =~ '^/ajax$') {
$self->_handle_ping();
}
else {
$self->_show_html();
}
}
}
sub _run_standalone {
my $self = shift;
my $listen = IO::Socket::INET->new(
Listen => 5,
LocalAddr => $self->{addr},
LocalPort => $self->{port},
Proto => 'tcp',
ReuseAddr => 1
);
unless ($listen) {
warn "unable to listen on port $self->{port}: $!\n";
return undef;
};
print STDERR "waiting for connection on port $self->{port}\n";
while (1) {
my $s = $listen->accept();
open(STDOUT, ">&=".fileno($s));
open(STDIN, "<&=".fileno($s));
my ($req, $content);
delete $ENV{CONTENT_LENGTH};
{
local ($/) = "\r\n";
while (<STDIN>) {
$req .= $_;
chomp;
last unless /\S/;
if (/^GET\s*(\S+)/) {
$ENV{REQUEST_METHOD} = 'GET';
my ($pi, $qs) = split /\?/, $1, 2;
$ENV{'PATH_INFO'} = $pi;
$ENV{'QUERY_STRING'} = $qs;
} elsif (/^POST\s*(\S+)/) {
$ENV{REQUEST_METHOD} = 'POST';
my ($pi, $qs) = split /\?/, $1, 2;
$ENV{'PATH_INFO'} = $pi;
$ENV{'QUERY_STRING'} = $qs;
} elsif (/^Content-Type:\s*(.*)/) {
$ENV{CONTENT_TYPE} = $1;
} elsif (/^Content-Length:\s*(.*)/) {
$ENV{CONTENT_LENGTH} = $1;
}
}
}
$ENV{SERVER_PORT} = $self->{port};
$ENV{SERVER_NAME} = $self->{server_name};
if (my $size = $ENV{CONTENT_LENGTH}) {
$content = '';
while (length($content) < $size) {
my $nr = read(STDIN, $content, $size-length($content),
length($content));
warn "read error" unless $nr;
}
}
close(STDIN); # n.b.: does not close socket
tie *STDIN, 'IO::String', $content;
undef @CGI::QUERY_PARAM;
my $q = new CGI();
$self->_handle_request($q);
untie *STDIN;
close(STDOUT);
close($s);
}
}
sub run {
my $self = shift;
if ($self->{'standalone'} != 0) {
$self->_run_standalone();
}
else {
my $q = new CGI();
$self->_handle_request($q);
}
}
}
# Parse arguments
my ($port, $standalone, $cfg, $host);
while (my $arg = shift @ARGV) {
if ($arg =~ /^-port$/i) {
$port = shift @ARGV;
}
elsif ($arg =~ /^-standalone$/i) {
$standalone = 1;
}
elsif ($arg =~ /^-cfg$/i) {
$cfg = shift @ARGV;
}
elsif ($arg =~ /^-host$/i) {
$host = shift @ARGV;
}
else {
print STDERR <<EOT;
Rspamd.cgi is a simple web intraface for managing rspamd cluster.
Usage: rspamd.cgi [-standalone] [-host hostname] [-port number] [-cfg config_file]
Options allowed:
-standalone Start rspamd.cgi as standalone http server (for testing)
-port Port to run standalone server
-host Host to run standalone server
-cfg Config file (in perl) that redefines defaults
EOT
exit;
}
}
$port = 8080 unless int($port);
$host = 'localhost' unless $host;
RspamdWebInterface->new({port=>$port, standalone=>$standalone, config=>$cfg, addr=>$host})->run();
|