41d5c331d4408b12f4746a47a6472f54afa47046
[buildfarm-server.git] / cgi-bin / pgstatus.pl
1 #!/usr/bin/perl
2
3 use strict;
4
5 use vars qw($dbhost $dbname $dbuser $dbpass $dbport
6        $all_stat $fail_stat $change_stat $green_stat
7        $server_time
8            $min_script_version $min_web_script_version
9 );
10
11 # force this before we do anything - even load modules
12 BEGIN { $server_time = time; }
13
14 use CGI;
15 use Digest::SHA1  qw(sha1_hex);
16 use MIME::Base64;
17 use DBI;
18 use DBD::Pg;
19 use Data::Dumper;
20 use Mail::Send;
21 use Safe;
22
23 require "$ENV{BFConfDir}/BuildFarmWeb.pl";
24
25 die "no dbname" unless $dbname;
26 die "no dbuser" unless $dbuser;
27
28 my $dsn="dbi:Pg:dbname=$dbname";
29 $dsn .= ";host=$dbhost" if $dbhost;
30 $dsn .= ";port=$dbport" if $dbport;
31
32 my $query = new CGI;
33
34 my $sig = $query->path_info;
35 $sig =~ s!^/!!;
36
37 my $stage = $query->param('stage');
38 my $ts = $query->param('ts');
39 my $animal = $query->param('animal');
40 my $log = $query->param('log');
41 my $res = $query->param('res');
42 my $conf = $query->param('conf');
43 my $branch = $query->param('branch');
44 my $changed_since_success = $query->param('changed_since_success');
45 my $changed_this_run = $query->param('changed_files');
46 my $log_archive = $query->param('logtar');
47
48 my $content = 
49         "branch=$branch&res=$res&stage=$stage&animal=$animal&".
50         "ts=$ts&log=$log&conf=$conf";
51
52 my $extra_content = 
53         "changed_files=$changed_this_run&".
54         "changed_since_success=$changed_since_success&";
55
56 unless ($animal && $ts && $stage && $sig)
57 {
58         print 
59             "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
60             "bad parameters for request\n";
61         exit;
62         
63 }
64
65
66 my $db = DBI->connect($dsn,$dbuser,$dbpass);
67
68 die $DBI::errstr unless $db;
69
70 my $gethost=
71     "select secret from buildsystems where name = ? and status = 'approved'";
72 my $sth = $db->prepare($gethost);
73 $sth->execute($animal);
74 my ($secret)=$sth->fetchrow_array();
75 $sth->finish;
76
77 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($ts);
78 $year += 1900; $mon +=1;
79 my $date=
80     sprintf("%d-%.2d-%.2d_%.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
81
82 if ($ENV{BF_DEBUG} || ($ts > time) || ($ts + 86400 < time ) || (! $secret) )
83 {
84     open(TX,">../buildlogs/$animal.$date");
85     print TX "sig=$sig\nlogtar-len=" , length($log_archive),
86         "\nstatus=$res\nstage=$stage\nconf:\n$conf\n",
87         "changed_this_run:\n$changed_this_run\n",
88         "changed_since_success:\n$changed_since_success\n",
89         "log:\n",$log;
90 #    $query->save(\*TX);
91     close(TX);
92 }
93
94 unless ($ts < time)
95 {
96     my $gmt = gmtime($ts);
97     print "Status: 491 bad ts parameter - $ts ($gmt GMT) is in the future.\n",
98     "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is in the future\n";
99         $db->disconnect;
100     exit;
101 }
102
103 unless ($ts + 86400 > time)
104 {
105     my $gmt = gmtime($ts);
106     print "Status: 491 bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n",
107      "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n";
108     $db->disconnect;
109     exit;
110 }
111
112 unless ($secret)
113 {
114         print 
115             "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
116             "System $animal is unknown\n";
117         $db->disconnect;
118         exit;
119         
120 }
121
122
123
124
125 my $calc_sig = sha1_hex($content,$secret);
126 my $calc_sig2 = sha1_hex($extra_content,$content,$secret);
127
128 if ($calc_sig ne $sig && $calc_sig2 ne $sig)
129 {
130
131         print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
132         print "$sig mismatches $calc_sig($calc_sig2) on content:\n$content";
133         $db->disconnect;
134         exit;
135 }
136
137 # undo escape-proofing of base64 data and decode it
138 map {tr/$@/+=/; $_ = decode_base64($_); } 
139     ($log, $conf,$changed_this_run,$changed_since_success,$log_archive);
140
141 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($ts);
142 $year += 1900; $mon +=1;
143 my $dbdate=
144     sprintf("%d-%.2d-%.2d %.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
145
146 my $log_file_names;
147 my @log_file_names;
148 my $dirname = "../buildlogs/tmp.$$.unpacklogs";
149
150 if ($log_archive)
151 {
152     my $log_handle;
153     my $archname = "../buildlogs/tmp.$$.tgz";
154     open($log_handle,">$archname");
155     binmode $log_handle;
156     print $log_handle $log_archive;
157     close $log_handle;
158     mkdir $dirname;
159     @log_file_names = `tar -z -C $dirname -xvf $archname 2>/dev/null`;
160     map {s/\s+//g; } @log_file_names;
161     my @qnames = @log_file_names;
162     map { $_ = qq("$_"); } @qnames;
163     $log_file_names = '{' . join(',',@qnames) . '}';
164     # unlink $archname;
165 }
166
167 my $config_flags;
168 my $container = new Safe;
169 my $sconf = $conf; 
170 unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
171 {
172     $sconf = '$Script_Config={};';
173 }
174 my $client_conf = $container->reval("$sconf;");
175
176 if ($min_script_version)
177 {
178         $client_conf->{script_version} ||= '0.0';
179         my ($minmajor,$minminor) = split(/\./,$min_script_version);
180         my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
181         if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
182         {
183                 print "Status: 460 script version too low\nContent-Type: text/plain\n\n";
184                 print 
185                         "Script version is below minimum required\n",
186                         "Reported version: $client_conf->{script_version},",
187                         "Minumum version required: $min_script_version\n";
188                 $db->disconnect;
189                 exit;
190         }
191 }
192
193 if ($min_web_script_version)
194 {
195         $client_conf->{web_script_version} ||= '0.0';
196         my ($minmajor,$minminor) = split(/\./,$min_script_version);
197         my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
198         if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
199         {
200                 print "Status: 461 web script version too low\nContent-Type: text/plain\n\n";
201                 print 
202                         "Web Script version is below minimum required\n",
203                         "Reported version: $client_conf->{web_script_version},",
204                         "Minumum version required: $min_web_script_version\n";
205                 $db->disconnect;
206                 exit;
207         }
208 }
209
210 my @config_flags;
211 if (not exists $client_conf->{config_opts} )
212 {
213         @config_flags = ();
214 }
215 elsif (ref $client_conf->{config_opts} eq 'HASH')
216 {
217         # leave out keys with false values
218         @config_flags = grep { $client_conf->{config_opts}->{$_} } 
219             keys %{$client_conf->{config_opts}};
220 }
221 elsif (ref $client_conf->{config_opts} eq 'ARRAY' )
222 {
223         @config_flags = @{$client_conf->{config_opts}};
224 }
225
226 if (@config_flags)
227 {
228     @config_flags = grep {! m/=/ } @config_flags;
229     map {s/\s+//g; $_=qq("$_"); } @config_flags;
230     $config_flags = '{' . join(',',@config_flags) . '}' ;
231 }
232
233 my $scm = $client_conf->{scm} || 'cvs';
234
235 my $logst = <<EOSQL;
236     insert into build_status 
237       (sysname, snapshot,status, stage, log,conf_sum, branch,
238        changed_this_run, changed_since_success, 
239        log_archive_filenames , log_archive, build_flags, scm)
240     values(?,?,?,?,?,?,?,?,?,?,?,?,?)
241 EOSQL
242 ;
243 $sth=$db->prepare($logst);
244
245 $sth->bind_param(1,$animal);
246 $sth->bind_param(2,$dbdate);
247 $sth->bind_param(3,$res);
248 $sth->bind_param(4,$stage);
249 $sth->bind_param(5,$log);
250 $sth->bind_param(6,$conf);
251 $sth->bind_param(7,$branch);
252 $sth->bind_param(8,$changed_this_run);
253 $sth->bind_param(9,$changed_since_success);
254 $sth->bind_param(10,$log_file_names);
255 #$sth->bind_param(11,$log_archive,{ pg_type => DBD::Pg::PG_BYTEA });
256 $sth->bind_param(11,undef,{ pg_type => DBD::Pg::PG_BYTEA });
257 $sth->bind_param(12,$config_flags);
258 $sth->bind_param(13,$scm);
259
260 $sth->execute;
261 $sth->finish;
262
263 my $logst2 = <<EOSQL;
264
265   insert into build_status_log 
266     (sysname, snapshot, branch, log_stage, log_text, stage_duration)
267     values (?, ?, ?, ?, ?, ?)
268
269 EOSQL
270     ;
271
272 $sth = $db->prepare($logst2);
273
274 $/=undef;
275
276 my $stage_start = $ts;
277
278 foreach my $log_file( @log_file_names )
279 {
280   my $handle;
281   open($handle,"$dirname/$log_file");
282   my $mtime = (stat $handle)[9];
283   my $stage_interval = $mtime - $stage_start;
284   $stage_start = $mtime;
285   my $ltext = <$handle>;
286   close($handle);
287   $ltext =~ s/\x00/\\0/g;
288   $sth->execute($animal,$dbdate,$branch,$log_file,$ltext, 
289                 "$stage_interval seconds");
290 }
291
292
293 $sth->finish;
294
295 my $prevst = <<EOSQL;
296
297   select coalesce((select distinct on (snapshot) stage
298                   from build_status
299                   where sysname = ? and branch = ? and snapshot < ?
300                   order by snapshot desc
301                   limit 1), 'NEW') as prev_status
302   
303 EOSQL
304
305 $sth=$db->prepare($prevst);
306 $sth->execute($animal,$branch,$dbdate);
307 my $row=$sth->fetchrow_arrayref;
308 my $prev_stat=$row->[0];
309 $sth->finish;
310
311 my $det_st = <<EOS;
312
313           select operating_system|| ' / ' || os_version as os , 
314                  compiler || ' / ' || compiler_version as compiler, 
315                  architecture as arch
316           from buildsystems 
317           where status = 'approved'
318                 and name = ?
319
320 EOS
321 ;
322 $sth=$db->prepare($det_st);
323 $sth->execute($animal);
324 $row=$sth->fetchrow_arrayref;
325 my ($os, $compiler,$arch) = @$row;
326 $sth->finish;
327
328
329 $db->begin_work;
330 $db->do("truncate dashboard_mat");
331 $db->do("insert into dashboard_mat select * from dashboard_mat_data");
332 $db->commit;
333
334 $db->disconnect;
335
336 print "Content-Type: text/plain\n\n";
337 print "request was on:\n";
338 print "res=$res&stage=$stage&animal=$animal&ts=$ts";
339
340 my $client_events = $client_conf->{mail_events};
341
342 if ($ENV{BF_DEBUG})
343 {
344         my $client_time = $client_conf->{current_ts};
345     open(TX,">>../buildlogs/$animal.$date");
346     print TX "\n",Dumper(\$client_conf),"\n";
347         print TX "server time: $server_time, client time: $client_time\n" if $client_time;
348     close(TX);
349 }
350
351 my $bcc_stat = [];
352 my $bcc_chg=[];
353 if (ref $client_events)
354 {
355     my $cbcc = $client_events->{all};
356     if (ref $cbcc)
357     {
358         push @$bcc_stat, @$cbcc;
359     }
360     elsif (defined $cbcc)
361     {
362         push @$bcc_stat, $cbcc;
363     }
364     if ($stage ne 'OK')
365     {
366         $cbcc = $client_events->{all};
367         if (ref $cbcc)
368         {
369             push @$bcc_stat, @$cbcc;
370         }
371         elsif (defined $cbcc)
372         {
373             push @$bcc_stat, $cbcc;
374         }
375     }
376     $cbcc = $client_events->{change};
377     if (ref $cbcc)
378     {
379         push @$bcc_chg, @$cbcc;
380     }
381     elsif (defined $cbcc)
382     {
383         push @$bcc_chg, $cbcc;
384     }
385     if ($stage eq 'OK' || $prev_stat eq 'OK')
386     {
387         $cbcc = $client_events->{green};
388         if (ref $cbcc)
389         {
390             push @$bcc_chg, @$cbcc;
391         }
392         elsif (defined $cbcc)
393         {
394             push @$bcc_chg, $cbcc;
395         }
396     }
397 }
398
399
400 my $url = $query->url(-base => 1);
401
402
403 my $stat_type = $stage eq 'OK' ? 'Status' : 'Failed at Stage';
404
405 my $mailto = [@$all_stat];
406 push(@$mailto,@$fail_stat) if $stage ne 'OK';
407
408 my $me = `id -un`; chomp $me;
409
410 my $host = `hostname`; chomp $host;
411
412 my $msg = new Mail::Send;
413
414 $msg->set('From',"PG Build Farm <$me\@$host>");
415
416 $msg->to(@$mailto);
417 $msg->bcc(@$bcc_stat) if (@$bcc_stat);
418 $msg->subject("PGBuildfarm member $animal Branch $branch $stat_type $stage");
419 my $fh = $msg->open;
420 print $fh <<EOMAIL; 
421
422
423 The PGBuildfarm member $animal had the following event on branch $branch:
424
425 $stat_type: $stage
426
427 The snapshot timestamp for the build that triggered this notification is: $dbdate
428
429 The specs of this machine are:
430 OS:  $os
431 Arch: $arch
432 Comp: $compiler
433
434 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
435
436 EOMAIL
437
438 $fh->close;
439
440 exit if ($stage eq $prev_stat);
441
442 $mailto = [@$change_stat];
443 push(@$mailto,@$green_stat) if ($stage eq 'OK' || $prev_stat eq 'OK');
444
445 $msg = new Mail::Send;
446
447 $msg->set('From',"PG Build Farm <$me\@$host>");
448
449 $msg->to(@$mailto);
450 $msg->bcc(@$bcc_chg) if (@$bcc_chg);
451
452 $stat_type = $prev_stat ne 'OK' ? "changed from $prev_stat failure to $stage" :
453     "changed from OK to $stage";
454 $stat_type = "New member: $stage" if $prev_stat eq 'NEW';
455 $stat_type .= " failure" if $stage ne 'OK';
456
457 $msg->subject("PGBuildfarm member $animal Branch $branch Status $stat_type");
458 $fh = $msg->open;
459 print $fh <<EOMAIL;
460
461 The PGBuildfarm member $animal had the following event on branch $branch:
462
463 Status $stat_type
464
465 The snapshot timestamp for the build that triggered this notification is: $dbdate
466
467 The specs of this machine are:
468 OS:  $os
469 Arch: $arch
470 Comp: $compiler
471
472 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
473
474 EOMAIL
475
476 $fh->close;