5 use vars qw($dbhost $dbname $dbuser $dbpass $dbport
6 $all_stat $fail_stat $change_stat $green_stat
8 $min_script_version $min_web_script_version
12 # force this before we do anything - even load modules
13 BEGIN { $server_time = time; }
16 use Digest::SHA1 qw(sha1_hex);
25 require "$ENV{BFConfDir}/BuildFarmWeb.pl";
27 die "no dbname" unless $dbname;
28 die "no dbuser" unless $dbuser;
30 my $dsn="dbi:Pg:dbname=$dbname";
31 $dsn .= ";host=$dbhost" if $dbhost;
32 $dsn .= ";port=$dbport" if $dbport;
36 my $sig = $query->path_info;
39 my $stage = $query->param('stage');
40 my $ts = $query->param('ts');
41 my $animal = $query->param('animal');
42 my $log = $query->param('log');
43 my $res = $query->param('res');
44 my $conf = $query->param('conf');
45 my $branch = $query->param('branch');
46 my $changed_since_success = $query->param('changed_since_success');
47 my $changed_this_run = $query->param('changed_files');
48 my $log_archive = $query->param('logtar');
51 "branch=$branch&res=$res&stage=$stage&animal=$animal&".
52 "ts=$ts&log=$log&conf=$conf";
55 "changed_files=$changed_this_run&".
56 "changed_since_success=$changed_since_success&";
58 unless ($animal && $ts && $stage && $sig)
61 "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
62 "bad parameters for request\n";
67 unless ($branch =~ /^(HEAD|REL\d+_\d+_STABLE)$/)
70 "Status: 492 bad branch parameter $branch\nContent-Type: text/plain\n\n",
71 "bad branch parameter $branch\n";
77 my $db = DBI->connect($dsn,$dbuser,$dbpass);
79 die $DBI::errstr unless $db;
82 "select secret from buildsystems where name = ? and status = 'approved'";
83 my $sth = $db->prepare($gethost);
84 $sth->execute($animal);
85 my ($secret)=$sth->fetchrow_array();
88 my $tsdiff = time - $ts;
90 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($ts);
91 $year += 1900; $mon +=1;
93 sprintf("%d-%.2d-%.2d_%.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
95 if ($ENV{BF_DEBUG} || ($ts > time) || ($ts + 86400 < time ) || (! $secret) )
97 open(TX,">../buildlogs/$animal.$date");
98 print TX "sig=$sig\nlogtar-len=" , length($log_archive),
99 "\nstatus=$res\nstage=$stage\nconf:\n$conf\n",
101 "changed_this_run:\n$changed_this_run\n",
102 "changed_since_success:\n$changed_since_success\n",
104 # $query->save(\*TX);
108 unless ($ts < time + 120)
110 my $gmt = gmtime($ts);
111 print "Status: 491 bad ts parameter - $ts ($gmt GMT) is in the future.\n",
112 "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is in the future\n";
117 unless ($ts + 86400 > time)
119 my $gmt = gmtime($ts);
120 print "Status: 491 bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n",
121 "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n";
129 "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
130 "System $animal is unknown\n";
139 my $calc_sig = sha1_hex($content,$secret);
140 my $calc_sig2 = sha1_hex($extra_content,$content,$secret);
142 if ($calc_sig ne $sig && $calc_sig2 ne $sig)
145 print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
146 print "$sig mismatches $calc_sig($calc_sig2) on content:\n$content";
151 # undo escape-proofing of base64 data and decode it
152 map {tr/$@/+=/; $_ = decode_base64($_); }
153 ($log, $conf,$changed_this_run,$changed_since_success,$log_archive);
156 if ($log =~/Last file mtime in snapshot: (.*)/)
158 my $snaptime = parsedate($1);
159 if ($snaptime < (time - (10 * 86400)))
161 print "Status: 493 snapshot too old: $1\nContent-Type: text/plain\n\n";
162 print "snapshot to old: $1\n";
168 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($ts);
169 $year += 1900; $mon +=1;
171 sprintf("%d-%.2d-%.2d %.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
175 my $dirname = "../buildlogs/tmp.$$.unpacklogs";
180 my $archname = "../buildlogs/tmp.$$.tgz";
181 open($log_handle,">$archname");
183 print $log_handle $log_archive;
186 @log_file_names = `tar -z -C $dirname -xvf $archname 2>/dev/null`;
187 map {s/\s+//g; } @log_file_names;
188 my @qnames = @log_file_names;
189 map { $_ = qq("$_"); } @qnames;
190 $log_file_names = '{' . join(',',@qnames) . '}';
195 my $container = new Safe;
197 unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
199 $sconf = '$Script_Config={};';
201 my $client_conf = $container->reval("$sconf;");
203 if ($min_script_version)
205 $client_conf->{script_version} ||= '0.0';
206 my ($minmajor,$minminor) = split(/\./,$min_script_version);
207 my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
208 if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
210 print "Status: 460 script version too low\nContent-Type: text/plain\n\n";
212 "Script version is below minimum required\n",
213 "Reported version: $client_conf->{script_version},",
214 "Minumum version required: $min_script_version\n";
220 if ($min_web_script_version)
222 $client_conf->{web_script_version} ||= '0.0';
223 my ($minmajor,$minminor) = split(/\./,$min_script_version);
224 my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
225 if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
227 print "Status: 461 web script version too low\nContent-Type: text/plain\n\n";
229 "Web Script version is below minimum required\n",
230 "Reported version: $client_conf->{web_script_version},",
231 "Minumum version required: $min_web_script_version\n";
238 if (not exists $client_conf->{config_opts} )
242 elsif (ref $client_conf->{config_opts} eq 'HASH')
244 # leave out keys with false values
245 @config_flags = grep { $client_conf->{config_opts}->{$_} }
246 keys %{$client_conf->{config_opts}};
248 elsif (ref $client_conf->{config_opts} eq 'ARRAY' )
250 @config_flags = @{$client_conf->{config_opts}};
255 @config_flags = grep {! m/=/ } @config_flags;
256 map {s/\s+//g; $_=qq("$_"); } @config_flags;
257 push @config_flags,'git' if $client_conf->{scm} eq 'git';
258 $config_flags = '{' . join(',',@config_flags) . '}' ;
261 my $scm = $client_conf->{scm} || 'cvs';
262 my $scmurl = $client_conf->{scm_url};
265 insert into build_status
266 (sysname, snapshot,status, stage, log,conf_sum, branch,
267 changed_this_run, changed_since_success,
268 log_archive_filenames , log_archive, build_flags, scm, scmurl)
269 values(?,?,?,?,?,?,?,?,?,?,?,?,?,?)
272 $sth=$db->prepare($logst);
274 $sth->bind_param(1,$animal);
275 $sth->bind_param(2,$dbdate);
276 $sth->bind_param(3,$res);
277 $sth->bind_param(4,$stage);
278 $sth->bind_param(5,$log);
279 $sth->bind_param(6,$conf);
280 $sth->bind_param(7,$branch);
281 $sth->bind_param(8,$changed_this_run);
282 $sth->bind_param(9,$changed_since_success);
283 $sth->bind_param(10,$log_file_names);
284 #$sth->bind_param(11,$log_archive,{ pg_type => DBD::Pg::PG_BYTEA });
285 $sth->bind_param(11,undef,{ pg_type => DBD::Pg::PG_BYTEA });
286 $sth->bind_param(12,$config_flags);
287 $sth->bind_param(13,$scm);
288 $sth->bind_param(14,$scmurl);
293 my $logst2 = <<EOSQL;
295 insert into build_status_log
296 (sysname, snapshot, branch, log_stage, log_text, stage_duration)
297 values (?, ?, ?, ?, ?, ?)
302 $sth = $db->prepare($logst2);
306 my $stage_start = $ts;
308 foreach my $log_file( @log_file_names )
311 open($handle,"$dirname/$log_file");
312 my $mtime = (stat $handle)[9];
313 my $stage_interval = $mtime - $stage_start;
314 $stage_start = $mtime;
315 my $ltext = <$handle>;
317 $ltext =~ s/\x00/\\0/g;
318 $sth->execute($animal,$dbdate,$branch,$log_file,$ltext,
319 "$stage_interval seconds");
325 my $prevst = <<EOSQL;
327 select coalesce((select distinct on (snapshot) stage
329 where sysname = ? and branch = ? and snapshot < ?
330 order by snapshot desc
331 limit 1), 'NEW') as prev_status
335 $sth=$db->prepare($prevst);
336 $sth->execute($animal,$branch,$dbdate);
337 my $row=$sth->fetchrow_arrayref;
338 my $prev_stat=$row->[0];
343 select operating_system|| ' / ' || os_version as os ,
344 compiler || ' / ' || compiler_version as compiler,
347 where status = 'approved'
352 $sth=$db->prepare($det_st);
353 $sth->execute($animal);
354 $row=$sth->fetchrow_arrayref;
355 my ($os, $compiler,$arch) = @$row;
359 $db->do("delete from dashboard_mat");
360 $db->do("insert into dashboard_mat select * from dashboard_mat_data");
365 print "Content-Type: text/plain\n\n";
366 print "request was on:\n";
367 print "res=$res&stage=$stage&animal=$animal&ts=$ts";
369 my $client_events = $client_conf->{mail_events};
373 my $client_time = $client_conf->{current_ts};
374 open(TX,">>../buildlogs/$animal.$date");
375 print TX "\n",Dumper(\$client_conf),"\n";
376 print TX "server time: $server_time, client time: $client_time\n" if $client_time;
382 if (ref $client_events)
384 my $cbcc = $client_events->{all};
387 push @$bcc_stat, @$cbcc;
389 elsif (defined $cbcc)
391 push @$bcc_stat, $cbcc;
395 $cbcc = $client_events->{all};
398 push @$bcc_stat, @$cbcc;
400 elsif (defined $cbcc)
402 push @$bcc_stat, $cbcc;
405 $cbcc = $client_events->{change};
408 push @$bcc_chg, @$cbcc;
410 elsif (defined $cbcc)
412 push @$bcc_chg, $cbcc;
414 if ($stage eq 'OK' || $prev_stat eq 'OK')
416 $cbcc = $client_events->{green};
419 push @$bcc_chg, @$cbcc;
421 elsif (defined $cbcc)
423 push @$bcc_chg, $cbcc;
429 my $url = $query->url(-base => 1);
432 my $stat_type = $stage eq 'OK' ? 'Status' : 'Failed at Stage';
434 my $mailto = [@$all_stat];
435 push(@$mailto,@$fail_stat) if $stage ne 'OK';
437 my $me = `id -un`; chomp($me);
439 my $host = `hostname`; chomp ($host);
440 $host = $default_host unless ($host =~ m/[.]/ || !defined($default_host));
442 my $from_addr = "PG Build Farm <$me\@$host>";
443 $from_addr =~ tr /\r\n//d;
445 my $msg = new Mail::Send;
449 $msg->bcc(@$bcc_stat) if (@$bcc_stat);
450 $msg->subject("PGBuildfarm member $animal Branch $branch $stat_type $stage");
451 $msg->set('From',$from_addr);
456 The PGBuildfarm member $animal had the following event on branch $branch:
460 The snapshot timestamp for the build that triggered this notification is: $dbdate
462 The specs of this machine are:
467 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
473 exit if ($stage eq $prev_stat);
475 $mailto = [@$change_stat];
476 push(@$mailto,@$green_stat) if ($stage eq 'OK' || $prev_stat eq 'OK');
478 $msg = new Mail::Send;
482 $msg->bcc(@$bcc_chg) if (@$bcc_chg);
484 $stat_type = $prev_stat ne 'OK' ? "changed from $prev_stat failure to $stage" :
485 "changed from OK to $stage";
486 $stat_type = "New member: $stage" if $prev_stat eq 'NEW';
487 $stat_type .= " failure" if $stage ne 'OK';
489 $msg->subject("PGBuildfarm member $animal Branch $branch Status $stat_type");
490 $msg->set('From',$from_addr);
494 The PGBuildfarm member $animal had the following event on branch $branch:
498 The snapshot timestamp for the build that triggered this notification is: $dbdate
500 The specs of this machine are:
505 For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch