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