9f68757451e8cfe5f57190243e0fb348171b5664
[buildfarm-server.git] / cgi-bin / eximstatus.pl
1 #!/usr/bin/perl
2
3 =comment
4
5 Copyright (c) 2003-2010, Andrew Dunstan
6
7 See accompanying License file for license details
8
9 =cut 
10
11 use strict;
12
13 use vars qw($dbhost $dbname $dbuser $dbpass $dbport
14        $all_stat $fail_stat $change_stat $green_stat
15        $server_time
16            $min_script_version $min_web_script_version
17        $default_host $local_git_clone
18 );
19
20 # force this before we do anything - even load modules
21 BEGIN { $server_time = time; }
22
23 use CGI;
24 use Digest::SHA1  qw(sha1_hex);
25 use MIME::Base64;
26 use DBI;
27 use DBD::Pg;
28 use Data::Dumper;
29 use Mail::Send;
30 use Time::ParseDate;
31 use Storable qw(thaw);
32
33 require "$ENV{BFConfDir}/BuildFarmWeb.pl";
34 my $buildlogs = "$ENV{BFConfDir}/buildlogs";
35
36 die "no dbname" unless $dbname;
37 die "no dbuser" unless $dbuser;
38
39 my $dsn="dbi:Pg:dbname=$dbname";
40 $dsn .= ";host=$dbhost" if $dbhost;
41 $dsn .= ";port=$dbport" if $dbport;
42
43 my $query = new CGI;
44
45 my $sig = $query->path_info;
46 $sig =~ s!^/!!;
47
48 my $stage = $query->param('stage');
49 my $ts = $query->param('ts');
50 my $animal = $query->param('animal');
51 my $log = $query->param('log');
52 my $res = $query->param('res');
53 my $conf = $query->param('conf');
54 my $branch = $query->param('branch');
55 my $changed_since_success = $query->param('changed_since_success');
56 my $changed_this_run = $query->param('changed_files');
57 my $log_archive = $query->param('logtar');
58 my $frozen_sconf = $query->param('frozen_sconf') || '';
59
60 my $brhandle;
61 if (open($brhandle,"../htdocs/branches_of_interest.txt"))
62 {
63     my @branches_of_interest = <$brhandle>;
64     close($brhandle);
65     chomp(@branches_of_interest);
66     unless (grep {$_ eq $branch} @branches_of_interest)
67     {
68         print
69             "Status: 492 bad branch parameter $branch\nContent-Type: text/plain\n\n",
70             "bad branch parameter $branch\n";
71         exit;   
72     }
73 }
74
75
76 my $content = 
77         "branch=$branch&res=$res&stage=$stage&animal=$animal&".
78         "ts=$ts&log=$log&conf=$conf";
79
80 my $extra_content = 
81         "changed_files=$changed_this_run&".
82         "changed_since_success=$changed_since_success&";
83
84 unless ($animal && $ts && $stage && $sig)
85 {
86         print 
87             "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
88             "bad parameters for request\n";
89         exit;
90         
91 }
92
93 # Want to allow all kinds of named branches
94 #unless ($branch =~ /^(HEAD|REL\d+_\d+_STABLE)$/)
95 #{
96 #        print
97 #            "Status: 492 bad branch parameter $branch\nContent-Type: text/plain\n\n",
98 #            "bad branch parameter $branch\n";
99 #        exit;
100 #
101 #}
102
103
104 my $db = DBI->connect($dsn,$dbuser,$dbpass);
105
106 die $DBI::errstr unless $db;
107
108 my $gethost=
109     "select secret from buildsystems where name = ? and status = 'approved'";
110 my $sth = $db->prepare($gethost);
111 $sth->execute($animal);
112 my ($secret)=$sth->fetchrow_array();
113 $sth->finish;
114
115 my $tsdiff = time - $ts;
116
117 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($ts);
118 $year += 1900; $mon +=1;
119 my $date=
120     sprintf("%d-%.2d-%.2d_%.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
121
122 if ($ENV{BF_DEBUG} || ($ts > time) || ($ts + 86400 < time ) || (! $secret) )
123 {
124     open(TX,">$buildlogs/$animal.$date");
125     print TX "sig=$sig\nlogtar-len=" , length($log_archive),
126         "\nstatus=$res\nstage=$stage\nconf:\n$conf\n",
127         "tsdiff:$tsdiff\n",
128         "changed_this_run:\n$changed_this_run\n",
129         "changed_since_success:\n$changed_since_success\n",
130         "frozen_sconf:$frozen_sconf\n",
131         "log:\n",$log;
132 #    $query->save(\*TX);
133     close(TX);
134 }
135
136 unless ($ts < time + 120)
137 {
138     my $gmt = gmtime($ts);
139     print "Status: 491 bad ts parameter - $ts ($gmt GMT) is in the future.\n",
140     "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is in the future\n";
141         $db->disconnect;
142     exit;
143 }
144
145 unless ($ts + 86400 > time)
146 {
147     my $gmt = gmtime($ts);
148     print "Status: 491 bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n",
149      "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n";
150     $db->disconnect;
151     exit;
152 }
153
154 unless ($secret)
155 {
156         print 
157             "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
158             "System $animal is unknown\n";
159         $db->disconnect;
160         exit;
161         
162 }
163
164
165
166
167 my $calc_sig = sha1_hex($content,$secret);
168 my $calc_sig2 = sha1_hex($extra_content,$content,$secret);
169
170 if ($calc_sig ne $sig && $calc_sig2 ne $sig)
171 {
172
173         print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
174         print "$sig mismatches $calc_sig($calc_sig2) on content:\n$content";
175         $db->disconnect;
176         exit;
177 }
178
179 # undo escape-proofing of base64 data and decode it
180 map {tr/$@/+=/; $_ = decode_base64($_); } 
181     ($log, $conf,$changed_this_run,$changed_since_success,$log_archive, $frozen_sconf);
182
183 if ($log =~/Last file mtime in snapshot: (.*)/)
184 {
185     my $snaptime = parsedate($1);
186     my $brch = $branch eq 'HEAD' ? 'master' : $branch;
187     my $last_branch_time = time - (30 * 86400);
188     $last_branch_time = `TZ=UTC GIT_DIR=$local_git_clone git log -1 --pretty=format:\%ct  $brch`;
189     if ($snaptime < ($last_branch_time - 86400))
190     {
191         print "Status: 493 snapshot too old: $1\nContent-Type: text/plain\n\n";
192         print "snapshot to old: $1\n";
193         $db->disconnect;
194         exit;   
195     }
196 }
197
198 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($ts);
199 $year += 1900; $mon +=1;
200 my $dbdate=
201     sprintf("%d-%.2d-%.2d %.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
202
203 my $log_file_names;
204 my @log_file_names;
205 my $dirname = "$buildlogs/tmp.$$.unpacklogs";
206
207 my $githeadref;
208
209 if ($log_archive)
210 {
211     my $log_handle;
212     my $archname = "$buildlogs/tmp.$$.tgz";
213     open($log_handle,">$archname");
214     binmode $log_handle;
215     print $log_handle $log_archive;
216     close $log_handle;
217     mkdir $dirname;
218     @log_file_names = `tar -z -C $dirname -xvf $archname 2>/dev/null`;
219     map {s/\s+//g; } @log_file_names;
220     my @qnames = grep { $_ ne 'githead.log' } @log_file_names;
221     map { $_ = qq("$_"); } @qnames;
222     $log_file_names = '{' . join(',',@qnames) . '}';
223     if (-e "$dirname/githead.log" )
224     {
225         open(my $githead,"$dirname/githead.log");
226         $githeadref = <$githead>;
227         chomp $githeadref;
228         close $githead;
229     }
230     unlink $archname;
231 }
232
233 my $config_flags;
234 my $client_conf;
235 if ($frozen_sconf)
236 {
237     $client_conf = thaw $frozen_sconf;
238 }
239
240 if ($min_script_version)
241 {
242         $client_conf->{script_version} ||= '0.0';
243         my $cli_ver = $client_conf->{script_version} ;
244         $cli_ver =~ s/^REL_//;
245         my ($minmajor,$minminor) = split(/\./,$min_script_version);
246         my ($smajor,$sminor) = split(/\./,$cli_ver);
247         if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
248         {
249                 print "Status: 460 script version too low\nContent-Type: text/plain\n\n";
250                 print 
251                         "Script version is below minimum required\n",
252                         "Reported version: $client_conf->{script_version},",
253                         "Minumum version required: $min_script_version\n";
254                 $db->disconnect;
255                 exit;
256         }
257 }
258
259 if ($min_web_script_version)
260 {
261         $client_conf->{web_script_version} ||= '0.0';
262         my $cli_ver = $client_conf->{web_script_version} ;
263         $cli_ver =~ s/^REL_//;
264         my ($minmajor,$minminor) = split(/\./,$min_web_script_version);
265         my ($smajor,$sminor) = split(/\./,$cli_ver);
266         if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
267         {
268                 print "Status: 461 web script version too low\nContent-Type: text/plain\n\n";
269                 print 
270                         "Web Script version is below minimum required\n",
271                         "Reported version: $client_conf->{web_script_version}, ",
272                         "Minumum version required: $min_web_script_version\n"
273                         ;
274                 $db->disconnect;
275                 exit;
276         }
277 }
278
279 my @config_flags;
280 if (not exists $client_conf->{config_opts} )
281 {
282         @config_flags = ();
283 }
284 elsif (ref $client_conf->{config_opts} eq 'HASH')
285 {
286         # leave out keys with false values
287         @config_flags = grep { $client_conf->{config_opts}->{$_} } 
288             keys %{$client_conf->{config_opts}};
289 }
290 elsif (ref $client_conf->{config_opts} eq 'ARRAY' )
291 {
292         @config_flags = @{$client_conf->{config_opts}};
293 }
294
295 if (@config_flags)
296 {
297     @config_flags = grep {! m/=/ } @config_flags;
298     map {s/\s+//g; $_=qq("$_"); } @config_flags;
299     push @config_flags,'git' if $client_conf->{scm} eq 'git';
300     push(@config_flags, 'doc')
301       if (defined $client_conf->{'optional_steps'}->{'make-doc'});
302     push(@config_flags, 'test')
303       if (defined $client_conf->{'optional_steps'}->{'test'});
304     $config_flags = '{' . join(',',@config_flags) . '}' ;
305 }
306
307 my $scm = $client_conf->{scm} || 'cvs';
308 my $scmurl = $client_conf->{scm_url};
309
310 my $logst = <<EOSQL;
311     insert into build_status 
312       (sysname, snapshot,status, stage, log,conf_sum, branch,
313        changed_this_run, changed_since_success, 
314        log_archive_filenames , log_archive, build_flags, scm, scmurl, 
315        git_head_ref,frozen_conf)
316     values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
317 EOSQL
318 ;
319
320
321 # this transaction lets us set log_error_verbosity to terse
322 # just for the duration of the transaction. That turns off logging the
323 # bind params, so all the logs don't get stuffed on the postgres logs
324
325
326 my $sqlres;
327 $db->begin_work;
328 #$db->do("select set_local_error_terse()");
329
330
331 $sth=$db->prepare($logst);
332
333 $sth->bind_param(1,$animal);
334 $sth->bind_param(2,$dbdate);
335 $sth->bind_param(3,$res & 0x8fffffff); # in case we get a 64 bit int status!
336 $sth->bind_param(4,$stage);
337 $sth->bind_param(5,$log);
338 $sth->bind_param(6,$conf);
339 $sth->bind_param(7,$branch);
340 $sth->bind_param(8,$changed_this_run);
341 $sth->bind_param(9,$changed_since_success);
342 $sth->bind_param(10,$log_file_names);
343 #$sth->bind_param(11,$log_archive,{ pg_type => DBD::Pg::PG_BYTEA });
344 $sth->bind_param(11,undef,{ pg_type => DBD::Pg::PG_BYTEA });
345 $sth->bind_param(12,$config_flags);
346 $sth->bind_param(13,$scm);
347 $sth->bind_param(14,$scmurl);
348 $sth->bind_param(15,$githeadref);
349 $sth->bind_param(16,$frozen_sconf,{ pg_type => DBD::Pg::PG_BYTEA });
350
351 $sqlres = $sth->execute;
352
353 if ($sqlres)
354 {
355
356         $sth->finish;
357
358         my $logst2 = q{
359
360           insert into build_status_log 
361                 (sysname, snapshot, branch, log_stage, log_text, stage_duration)
362                 values (?, ?, ?, ?, ?, ?)
363
364     };
365
366         $sth = $db->prepare($logst2);
367
368         $/=undef;
369
370         my $stage_start = $ts;
371
372         foreach my $log_file( @log_file_names )
373         {
374                 next if $log_file =~ /^githead/;
375                 my $handle;
376                 open($handle,"$dirname/$log_file");
377                 my $mtime = (stat $handle)[9];
378                 my $stage_interval = $mtime - $stage_start;
379                 $stage_start = $mtime;
380                 my $ltext = <$handle>;
381                 close($handle);
382                 $ltext =~ s/\x00/\\0/g;
383                 $sqlres = $sth->execute($animal,$dbdate,$branch,$log_file,$ltext, 
384                           "$stage_interval seconds");
385                 last unless $sqlres;
386         }
387
388         $sth->finish unless $sqlres;
389
390 }
391
392 if (! $sqlres)
393 {
394
395         print "Status: 462 database failure\nContent-Type: text/plain\n\n";
396         print "Your report generated a database failure:\n", 
397                $db->errstr, 
398                          "\n";
399         $db->rollback;
400         $db->disconnect;
401         exit;
402 }
403
404
405 $db->commit;
406
407 my $prevst = <<EOSQL;
408
409   select coalesce((select distinct on (snapshot) stage
410                   from build_status
411                   where sysname = ? and branch = ? and snapshot < ?
412                   order by snapshot desc
413                   limit 1), 'NEW') as prev_status
414   
415 EOSQL
416
417 $sth=$db->prepare($prevst);
418 $sth->execute($animal,$branch,$dbdate);
419 my $row=$sth->fetchrow_arrayref;
420 my $prev_stat=$row->[0];
421 $sth->finish;
422
423 my $det_st = <<EOS;
424
425           select operating_system|| ' / ' || os_version as os , 
426                  compiler || ' / ' || compiler_version as compiler, 
427                  architecture as arch
428           from buildsystems 
429           where status = 'approved'
430                 and name = ?
431
432 EOS
433 ;
434 $sth=$db->prepare($det_st);
435 $sth->execute($animal);
436 $row=$sth->fetchrow_arrayref;
437 my ($os, $compiler,$arch) = @$row;
438 $sth->finish;
439
440 $db->begin_work;
441 # prevent occasional duplication by forcing serialization of this operation
442 $db->do("lock table dashboard_mat in share row exclusive mode");
443 $db->do("delete from dashboard_mat");
444 $db->do("insert into dashboard_mat select * from dashboard_mat_data");
445 $db->commit;
446
447 if ($stage ne 'OK')
448 {
449         $db->begin_work;
450         # prevent occasional duplication by forcing serialization of this operation
451         $db->do("lock table nrecent_failures in share row exclusive mode");
452         $db->do("delete from nrecent_failures");
453         $db->do("insert into nrecent_failures select bs.sysname, bs.snapshot, bs.branch from build_status bs where bs.stage <> 'OK' and bs.snapshot > now() - interval '90 days'");
454         $db->commit;
455 }
456
457 $db->disconnect;
458
459 print "Content-Type: text/plain\n\n";
460 print "request was on:\n";
461 print "res=$res&stage=$stage&animal=$animal&ts=$ts";
462
463 my $client_events = $client_conf->{mail_events};
464
465 if ($ENV{BF_DEBUG})
466 {
467         my $client_time = $client_conf->{current_ts};
468     open(TX,">>$buildlogs/$animal.$date");
469     print TX "\n",Dumper(\$client_conf),"\n";
470         print TX "server time: $server_time, client time: $client_time\n" if $client_time;
471     close(TX);
472 }
473
474 my $bcc_stat = [];
475 my $bcc_chg=[];
476 if (ref $client_events)
477 {
478     my $cbcc = $client_events->{all};
479     if (ref $cbcc)
480     {
481         push @$bcc_stat, @$cbcc;
482     }
483     elsif (defined $cbcc)
484     {
485         push @$bcc_stat, $cbcc;
486     }
487     if ($stage ne 'OK')
488     {
489         $cbcc = $client_events->{all};
490         if (ref $cbcc)
491         {
492             push @$bcc_stat, @$cbcc;
493         }
494         elsif (defined $cbcc)
495         {
496             push @$bcc_stat, $cbcc;
497         }
498     }
499     $cbcc = $client_events->{change};
500     if (ref $cbcc)
501     {
502         push @$bcc_chg, @$cbcc;
503     }
504     elsif (defined $cbcc)
505     {
506         push @$bcc_chg, $cbcc;
507     }
508     if ($stage eq 'OK' || $prev_stat eq 'OK')
509     {
510         $cbcc = $client_events->{green};
511         if (ref $cbcc)
512         {
513             push @$bcc_chg, @$cbcc;
514         }
515         elsif (defined $cbcc)
516         {
517             push @$bcc_chg, $cbcc;
518         }
519     }
520 }
521
522
523 my $url = $query->url(-base => 1);
524
525
526 my $stat_type = $stage eq 'OK' ? 'Status' : 'Failed at Stage';
527
528 my $mailto = [@$all_stat];
529 push(@$mailto,@$fail_stat) if $stage ne 'OK';
530
531 my $me = `id -un`; chomp($me);
532
533 my $host = `hostname`; chomp ($host);
534 $host = $default_host unless ($host =~ m/[.]/ || !defined($default_host));
535
536 my $from_addr = "Exim Build Farm <$me\@$host>";
537 $from_addr =~ tr /\r\n//d;
538
539 my $msg = new Mail::Send;
540
541
542 $msg->to(@$mailto);
543 $msg->bcc(@$bcc_stat) if (@$bcc_stat);
544 $msg->subject("Exim BuildFarm member $animal Branch $branch $stat_type $stage");
545 $msg->set('From',$from_addr);
546 my $fh = $msg->open;
547 print $fh <<EOMAIL; 
548
549
550 The Exim BuildFarm member $animal had the following event on branch $branch:
551
552 $stat_type: $stage
553
554 The snapshot timestamp for the build that triggered this notification is: $dbdate
555
556 The specs of this machine are:
557 OS:  $os
558 Arch: $arch
559 Comp: $compiler
560
561 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
562
563 EOMAIL
564
565 $fh->close;
566
567 exit if ($stage eq $prev_stat);
568
569 $mailto = [@$change_stat];
570 push(@$mailto,@$green_stat) if ($stage eq 'OK' || $prev_stat eq 'OK');
571
572 $msg = new Mail::Send;
573
574
575 $msg->to(@$mailto);
576 $msg->bcc(@$bcc_chg) if (@$bcc_chg);
577
578 $stat_type = $prev_stat ne 'OK' ? "changed from $prev_stat failure to $stage" :
579     "changed from OK to $stage";
580 $stat_type = "New member: $stage" if $prev_stat eq 'NEW';
581 $stat_type .= " failure" if $stage ne 'OK';
582
583 $msg->subject("Exim BuildFarm member $animal Branch $branch Status $stat_type");
584 $msg->set('From',$from_addr);
585 $fh = $msg->open;
586 print $fh <<EOMAIL;
587
588 The Exim BuildFarm member $animal had the following event on branch $branch:
589
590 Status $stat_type
591
592 The snapshot timestamp for the build that triggered this notification is: $dbdate
593
594 The specs of this machine are:
595 OS:  $os
596 Arch: $arch
597 Comp: $compiler
598
599 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
600
601 EOMAIL
602
603 $fh->close;