]> git.donarmstrong.com Git - debbugs.git/blob - scripts/service
Add cleanup_eval_fail method to clean up the eval output
[debbugs.git] / scripts / service
1 #!/usr/bin/perl
2 # $Id: service.in,v 1.118 2005/10/19 01:22:14 don Exp $
3 #
4 # Usage: service <code>.nn
5 # Temps:  incoming/P<code>.nn
6
7 use warnings;
8 use strict;
9
10
11 use Debbugs::Config qw(:globals :config);
12
13 use File::Copy;
14 use MIME::Parser;
15
16 use Params::Validate qw(:types validate_with);
17
18 use Debbugs::Common qw(:util :quit :misc :lock);
19
20 use Debbugs::Status qw(:read :status :write :versions :hook);
21
22 use Debbugs::MIME qw(decode_rfc1522 encode_rfc1522);
23 use Debbugs::Mail qw(send_mail_message);
24 use Debbugs::User;
25 use Debbugs::Recipients qw(:all);
26 use HTML::Entities qw(encode_entities);
27 use Debbugs::Versions::Dpkg;
28
29 use Debbugs::Status qw(splitpackages);
30
31 use Debbugs::CGI qw(html_escape);
32 use Debbugs::Control qw(:all);
33 use Debbugs::Log qw(:misc);
34 use Debbugs::Text qw(:templates);
35
36 use Scalar::Util qw(looks_like_number);
37
38 use List::Util qw(first);
39
40 use Mail::RFC822::Address;
41
42 chdir($config{spool_dir}) or
43      die "Unable to chdir to spool_dir '$config{spool_dir}': $!";
44
45 my $debug = 0;
46 umask(002);
47
48 my ($nn,$control) = $ARGV[0] =~ m/^(([RC])\.\d+)$/;
49 if (not defined $control or not defined $nn) {
50      die "Bad argument to service.in";
51 }
52 if (!rename("incoming/G$nn","incoming/P$nn")) {
53     defined $! and $! =~ m/no such file or directory/i and exit 0;
54     die "Failed to rename incoming/G$nn to incoming/P$nn: $!";
55 }
56
57 my $log_fh = IO::File->new("incoming/P$nn",'r') or
58      die "Unable to open incoming/P$nn for reading: $!";
59 my @log=<$log_fh>;
60 my @msg=@log;
61 close($log_fh);
62
63 chomp @msg;
64
65 print "###\n",join("##\n",@msg),"\n###\n" if $debug;
66
67 # Bug numbers to send e-mail to, hash so that we don't send to the
68 # same bug twice.
69 my (%bug_affected);
70
71 my (@headerlines,@bodylines);
72
73 my $parse_output = Debbugs::MIME::parse(join('',@log));
74 @headerlines = @{$parse_output->{header}};
75 @bodylines = @{$parse_output->{body}};
76
77 my %header;
78 for (@headerlines) {
79     $_ = decode_rfc1522($_);
80     s/\n\s/ /g;
81     print ">$_<\n" if $debug;
82     if (s/^(\S+):\s*//) {
83         my $v = lc $1;
84         print ">$v=$_<\n" if $debug;
85         $header{$v} = $_;
86     } else {
87         print "!>$_<\n" if $debug;
88     }
89 }
90 $header{'message-id'} ||= '';
91 $header{subject} ||= '';
92
93 grep(s/\s+$//,@bodylines);
94
95 print "***\n",join("\n",@bodylines),"\n***\n" if $debug;
96
97 if (defined $header{'resent-from'} && !defined $header{'from'}) {
98     $header{'from'} = $header{'resent-from'};
99 }
100
101 defined($header{'from'}) || die "no From header";
102
103 delete $header{'reply-to'} 
104         if ( defined($header{'reply-to'}) && $header{'reply-to'} =~ m/^\s*$/ );
105
106 my $replyto;
107 if ( defined($header{'reply-to'}) && $header{'reply-to'} ne "" ) {
108     $replyto = $header{'reply-to'};
109 } else {
110     $replyto = $header{'from'};
111 }
112
113 # This is an error counter which should be incremented every time there is an error.
114 my $errors = 0;
115 my $controlrequestaddr= ($control ? 'control' : 'request').'@'.$config{email_domain};
116 my $transcript_scalar = '';
117 my $transcript = IO::Scalar->new(\$transcript_scalar) or
118      die "Unable to create new IO::Scalar";
119 print {$transcript} "Processing commands for $controlrequestaddr:\n\n";
120
121
122 my $dl = 0;
123 my %affected_packages;
124 my %recipients;
125 # this is the hashref which is passed to all control calls
126 my %limit = ();
127
128
129 my @common_control_options =
130     (($dl > 0 ? (debug => $transcript):()),
131      transcript        => $transcript,
132      requester         => $header{from},
133      request_addr      => $controlrequestaddr,
134      request_msgid     => $header{'message-id'},
135      request_subject   => $header{subject},
136      request_nn        => $nn,
137      request_replyto   => $replyto,
138      message           => \@log,
139      affected_packages => \%affected_packages,
140      recipients        => \%recipients,
141      limit             => \%limit,
142     );
143
144 my $state= 'idle';
145 my $lowstate= 'idle';
146 my $mergelowstate= 'idle';
147 my $midix=0;
148
149 my $user = $replyto;
150 $user =~ s/,.*//;
151 $user =~ s/^.*<(.*)>.*$/$1/;
152 $user =~ s/[(].*[)]//;
153 $user =~ s/^\s*(\S+)\s+.*$/$1/;
154 $user = "" unless (Debbugs::User::is_valid_user($user));
155 my $indicated_user = 0;
156
157 my $quickabort = 0;
158
159
160 if (@gExcludeFromControl and grep {$replyto =~ m/\Q$_\E/} @gExcludeFromControl) {
161         print {$transcript} fill_template('mail/excluded_from_control');
162         $quickabort = 1;
163 }
164
165 my %limit_pkgs = ();
166 my %clonebugs = ();
167 my %bcc = ();
168
169
170 my @bcc;
171 sub addbcc {
172     push @bcc, $_[0] unless grep { $_ eq $_[0] } @bcc;
173 }
174
175 our $data;
176 our $message;
177 our $extramessage;
178 our $ref;
179
180 our $mismatch;
181 our $action;
182
183
184 my $ok = 0;
185 my $unknowns = 0;
186 my $procline=0;
187 for ($procline=0; $procline<=$#bodylines; $procline++) {
188     my $noriginator;
189     my $newsubmitter;
190     my $oldsubmitter;
191     my $newowner;
192     $state eq 'idle' || print "state: $state ?\n";
193     $lowstate eq 'idle' || print "lowstate: $lowstate ?\n";
194     $mergelowstate eq 'idle' || print "mergelowstate: $mergelowstate ?\n";
195     if ($quickabort) {
196          print {$transcript} "Stopping processing here.\n\n";
197          last;
198     }
199     $_= $bodylines[$procline]; s/\s+$//;
200     # Remove BOM markers from UTF-8 strings
201     # Fixes #488554
202     s/\xef\xbb\xbf//g;
203     next unless m/\S/;
204     print {$transcript} "> $_\n";
205     next if m/^\s*\#/;
206     $action= '';
207     if (m/^stop\s*$/i || m/^quit\s*$/i || m/^--\s*$/ || m/^thank(?:s|\s*you)?\s*$/i || m/^kthxbye\s*$/i) {
208         print {$transcript} "Stopping processing here.\n\n";
209         last;
210     } elsif (m/^debug\s+(\d+)$/i && $1 >= 0 && $1 <= 1000) {
211         $dl= $1+0;
212         print {$transcript} "Debug level $dl.\n\n";
213     } elsif (m/^(send|get)\s+\#?(\d{2,})$/i) {
214         $ref= $2+0;
215         &sendlynxdoc("bugreport.cgi?bug=$ref","logs for $gBug#$ref");
216     } elsif (m/^send-detail\s+\#?(\d{2,})$/i) {
217         $ref= $1+0;
218         &sendlynxdoc("bugreport.cgi?bug=$ref&boring=yes",
219                      "detailed logs for $gBug#$ref");
220     } elsif (m/^index(\s+full)?$/i) {
221         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
222         $errors++;
223         $ok++; # well, it's not really ok, but it fixes #81224 :)
224     } elsif (m/^index-summary\s+by-package$/i) {
225         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
226         $errors++;
227         $ok++; # well, it's not really ok, but it fixes #81224 :)
228     } elsif (m/^index-summary(\s+by-number)?$/i) {
229         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
230         $errors++;
231         $ok++; # well, it's not really ok, but it fixes #81224 :)
232     } elsif (m/^index(\s+|-)pack(age)?s?$/i) {
233         &sendlynxdoc("pkgindex.cgi?indexon=pkg",'index of packages');
234     } elsif (m/^index(\s+|-)maints?$/i) {
235         &sendlynxdoc("pkgindex.cgi?indexon=maint",'index of maintainers');
236     } elsif (m/^index(\s+|-)maint\s+(\S+)$/i) {
237         my $maint = $2;
238         &sendlynxdoc("pkgreport.cgi?maint=" . urlsanit($maint),
239                      "$gBug list for maintainer \`$maint'");
240         $ok++;
241     } elsif (m/^index(\s+|-)pack(age)?s?\s+(\S.*\S)$/i) {
242         my $package = $+;
243         &sendlynxdoc("pkgreport.cgi?pkg=" . urlsanit($package),
244                      "$gBug list for package $package");
245         $ok++;
246     } elsif (m/^send-unmatched(\s+this|\s+-?0)?$/i) {
247         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
248         $errors++;
249         $ok++; # well, it's not really ok, but it fixes #81224 :)
250     } elsif (m/^send-unmatched\s+(last|-1)$/i) {
251         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
252         $errors++;
253         $ok++; # well, it's not really ok, but it fixes #81224 :)
254     } elsif (m/^send-unmatched\s+(old|-2)$/i) {
255         print {$transcript} "This BTS function is currently disabled, sorry.\n\n";
256         $errors++;
257         $ok++; # well, it's not really ok, but it fixes #81224 :)
258     } elsif (m/^getinfo\s+([\w.-]+)$/i) {
259         # the following is basically a Debian-specific kludge, but who cares
260         my $req = $1;
261         if ($req =~ /^maintainers$/i && -f "$gConfigDir/Maintainers") {
262             &sendinfo("local", "$gConfigDir/Maintainers", "Maintainers file");
263         } elsif ($req =~ /^override\.(\w+)\.([\w.-]+)$/i) {
264             $req =~ s/.gz$//;
265             &sendinfo("ftp.d.o", "$req", "override file for $2 part of $1 distribution");
266         } elsif ($req =~ /^pseudo-packages\.(description|maintainers)$/i && -f "$gConfigDir/$req") {
267             &sendinfo("local", "$gConfigDir/$req", "$req file");
268         } else {
269             print {$transcript} "Info file $req does not exist.\n\n";
270         }
271     } elsif (m/^help/i) {
272         &sendhelp;
273         print {$transcript} "\n";
274         $ok++;
275     } elsif (m/^refcard/i) {
276         &sendtxthelp("bug-mailserver-refcard.txt","mail servers' reference card");
277     } elsif (m/^subscribe/i) {
278         print {$transcript} <<END;
279 There is no $gProject $gBug mailing list.  If you wish to review bug reports
280 please do so via http://$gWebDomain/ or ask this mail server
281 to send them to you.
282 soon: MAILINGLISTS_TEXT
283 END
284     } elsif (m/^unsubscribe/i) {
285         print {$transcript} <<END;
286 soon: UNSUBSCRIBE_TEXT
287 soon: MAILINGLISTS_TEXT
288 END
289     } elsif (m/^user\s+(\S+)\s*$/i) {
290         my $newuser = $1;
291         if (Debbugs::User::is_valid_user($newuser)) {
292             my $olduser = ($user ne "" ? " (was $user)" : "");
293             print {$transcript} "Setting user to $newuser$olduser.\n";
294             $user = $newuser;
295             $indicated_user = 1;
296         } else {
297             print {$transcript} "Selected user id ($newuser) invalid, sorry\n";
298             $errors++;
299             $user = "";
300             $indicated_user = 1;
301         }
302     } elsif (m/^usercategory\s+(\S+)(\s+\[hidden\])?\s*$/i) {
303         $ok++;
304         my $catname = $1;
305         my $hidden = (defined $2 and $2 ne "");
306
307         my $prefix = "";
308         my @cats;
309         my $bad = 0;
310         my $catsec = 0;
311         if ($user eq "") {
312             print {$transcript} "No valid user selected\n";
313             $errors++;
314             next;
315         }
316         if (not $indicated_user and defined $user) {
317              print {$transcript} "User is $user\n";
318              $indicated_user = 1;
319         }
320         my @ords = ();
321         while (++$procline <= $#bodylines) {
322             unless ($bodylines[$procline] =~ m/^\s*([*+])\s*(\S.*)$/) {
323                 $procline--;
324                 last;
325             }
326             print {$transcript} "> $bodylines[$procline]\n";
327             next if $bad;
328             my ($o, $txt) = ($1, $2);
329             if ($#cats == -1 && $o eq "+") {
330                 print {$transcript} "User defined category specification must start with a category name. Skipping.\n\n";
331                 $errors++;
332                 $bad = 1;
333                 next;
334             }
335             if ($o eq "+") {
336                 unless (ref($cats[-1]) eq "HASH") {
337                     $cats[-1] = { "nam" => $cats[-1], 
338                                   "pri" => [], "ttl" => [] };
339                 }
340                 $catsec++;
341                 my ($desc, $ord, $op);
342                 if ($txt =~ m/^(.*\S)\s*\[((\d+):\s*)?\]\s*$/) {
343                     $desc = $1; $ord = $3; $op = "";
344                 } elsif ($txt =~ m/^(.*\S)\s*\[((\d+):\s*)?(\S+)\]\s*$/) {
345                     $desc = $1; $ord = $3; $op = $4;
346                 } elsif ($txt =~ m/^([^[\s]+)\s*$/) {
347                     $desc = ""; $op = $1;
348                 } else {
349                     print {$transcript} "Unrecognised syntax for category section. Skipping.\n\n";
350                     $errors++;
351                     $bad = 1;
352                     next;
353                 }
354                 $ord = 999 unless defined $ord;
355
356                 if ($op) {
357                     push @{$cats[-1]->{"pri"}}, $prefix . $op;
358                     push @{$cats[-1]->{"ttl"}}, $desc;
359                     push @ords, "$ord $catsec";
360                 } else {
361                     $cats[-1]->{"def"} = $desc;
362                     push @ords, "$ord DEF";
363                     $catsec--;
364                 }
365                 @ords = sort {
366                     my ($a1, $a2, $b1, $b2) = split / /, "$a $b";
367                     ((looks_like_number($a1) and looks_like_number($a2))?$a1 <=> $b1:$a1 cmp $b1) ||
368                     ((looks_like_number($a2) and looks_like_number($b2))?$a2 <=> $b2:$a2 cmp $b2);
369                 } @ords;
370                 $cats[-1]->{"ord"} = [map { m/^.* (\S+)/; $1 eq "DEF" ? $catsec + 1 : $1 } @ords];
371             } elsif ($o eq "*") {
372                 $catsec = 0;
373                 my ($name);
374                 if ($txt =~ m/^(.*\S)(\s*\[(\S+)\])\s*$/) {
375                     $name = $1; $prefix = $3;
376                 } else {
377                     $name = $txt; $prefix = "";
378                 }
379                 push @cats, $name;
380             }
381         }
382         # XXX: got @cats, now do something with it
383         my $u = Debbugs::User::get_user($user);
384         if (@cats) {
385             print {$transcript} "Added usercategory $catname.\n\n";
386             $u->{"categories"}->{$catname} = [ @cats ];
387             if (not $hidden) {
388                  push @{$u->{visible_cats}},$catname;
389             }
390         } else {
391             print {$transcript} "Removed usercategory $catname.\n\n";
392             delete $u->{"categories"}->{$catname};
393             @{$u->{visible_cats}} = grep {$_ ne $catname} @{$u->{visible_cats}};
394         }
395         $u->write();
396     } elsif (m/^usertags?\s+\#?(-?\d+)\s+(([=+-])\s*)?(\S.*)?$/i) {
397         $ok++;
398         $ref = $1;
399         my $addsubcode = $3 || "+";
400         my $tags = $4;
401         if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
402              $ref = $clonebugs{$ref};
403         }
404         if ($user eq "") {
405             print {$transcript} "No valid user selected\n";
406             $errors++;
407             $indicated_user = 1;
408         } elsif (&setbug) {
409             if (not $indicated_user and defined $user) {
410                  print {$transcript} "User is $user\n";
411                  $indicated_user = 1;
412             }
413             &nochangebug;
414             my %ut;
415             Debbugs::User::read_usertags(\%ut, $user);
416             my @oldtags = (); my @newtags = (); my @badtags = ();
417             my %chtags;
418             if (defined $tags and length $tags) {
419                  for my $t (split /[,\s]+/, $tags) {
420                       if ($t =~ m/^[a-zA-Z0-9.+\@-]+$/) {
421                            $chtags{$t} = 1;
422                       } else {
423                            push @badtags, $t;
424                       }
425                  }
426             }
427             if (@badtags) {
428                 print {$transcript} "Ignoring illegal tag/s: ".join(', ', @badtags).".\nPlease use only alphanumerics, at, dot, plus and dash.\n";
429                 $errors++;
430             }
431             for my $t (keys %chtags) {
432                 $ut{$t} = [] unless defined $ut{$t};
433             }
434             for my $t (keys %ut) {
435                 my %res = map { ($_, 1) } @{$ut{$t}};
436                 push @oldtags, $t if defined $res{$ref};
437                 my $addop = ($addsubcode eq "+" or $addsubcode eq "=");
438                 my $del = (defined $chtags{$t} ? $addsubcode eq "-" 
439                                                : $addsubcode eq "=");
440                 $res{$ref} = 1 if ($addop && defined $chtags{$t});
441                 delete $res{$ref} if ($del);
442                 push @newtags, $t if defined $res{$ref};
443                 $ut{$t} = [ sort { $a <=> $b } (keys %res) ];
444             }
445             if (@oldtags == 0) {
446                 print {$transcript} "There were no usertags set.\n";
447             } else {
448                 print {$transcript} "Usertags were: " . join(" ", @oldtags) . ".\n";
449             }
450             print {$transcript} "Usertags are now: " . join(" ", @newtags) . ".\n";
451             Debbugs::User::write_usertags(\%ut, $user);
452         }
453     } elsif (!$control) {
454         print {$transcript} <<END;
455 Unknown command or malformed arguments to command.
456 (Use control\@$gEmailDomain to manipulate reports.)
457
458 END
459         $errors++;
460         if (++$unknowns >= 3) {
461             print {$transcript} "Too many unknown commands, stopping here.\n\n";
462             last;
463         }
464 #### "developer only" ones start here
465     } elsif (m/^close\s+\#?(-?\d+)(?:\s+(\d.*))?$/i) {
466         $ok++;
467         $ref= $1;
468         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
469         $bug_affected{$ref}=1;
470         my $version= $2;
471         if (&setbug) {
472             print {$transcript} "'close' is deprecated; see http://$gWebDomain/Developer$gHTMLSuffix#closing.\n";
473             if (length($data->{done}) and not defined($version)) {
474                 print {$transcript} "$gBug is already closed, cannot re-close.\n\n";
475                 &nochangebug;
476             } else {
477                 $action= "$gBug " .
478                     (defined($version) ?
479                         "marked as fixed in version $version" :
480                         "closed") .
481                     ", send any further explanations to $data->{originator}";
482                 do {
483                    $affected_packages{$data->{package}} = 1;
484                    add_recipients(data => $data,
485                                   recipients => \%recipients,
486                                   actions_taken => {done => 1},
487                                   transcript   => $transcript,
488                                   ($dl > 0 ? (debug => $transcript):()),
489                                  );
490                     $data->{done}= $replyto;
491                     my @keywords= split ' ', $data->{keywords};
492                     my $extramessage = '';
493                     if (grep $_ eq 'pending', @keywords) {
494                         $extramessage= "Removed pending tag.\n";
495                         $data->{keywords}= join ' ', grep $_ ne 'pending',
496                                                 @keywords;
497                     }
498                     addfixedversions($data, $data->{package}, $version, 'binary');
499
500                     my $message= <<END;
501 From: $gMaintainerEmail ($gProject $gBug Tracking System)
502 To: $data->{originator}
503 Subject: $gBug#$ref acknowledged by developer
504          ($header{'subject'})
505 References: $header{'message-id'} $data->{msgid}
506 In-Reply-To: $data->{msgid}
507 Message-ID: <handler.$ref.$nn.notifdonectrl.$midix\@$gEmailDomain>
508 Reply-To: $ref\@$gEmailDomain
509 X-$gProject-PR-Message: they-closed-control $ref
510
511 This is an automatic notification regarding your $gBug report
512 #$ref: $data->{subject},
513 which was filed against the $data->{package} package.
514
515 It has been marked as closed by one of the developers, namely
516 $replyto.
517
518 You should be hearing from them with a substantive response shortly,
519 in case you haven't already. If not, please contact them directly.
520
521 $gMaintainer
522 (administrator, $gProject $gBugs database)
523
524 END
525                     &sendmailmessage($message,$data->{originator});
526                 } while (&getnextbug);
527             }
528         }
529     } elsif (m/^reassign\s+\#?(-?\d+)\s+ # bug and command
530                (?:(?:((?:src:|source:)?$config{package_name_re}) # new package
531                (?:\s+((?:$config{package_name_re}\/)?
532                        $config{package_version_re}))?)| # optional version
533                ((?:src:|source:)?$config{package_name_re} # multiple package form
534                (?:\s*\,\s*(?:src:|source:)?$config{package_name_re})+))
535                \s*$/xi) {
536         $ok++;
537         $ref= $1;
538         my @new_packages;
539         if (not defined $2) {
540             push @new_packages, split /\s*\,\s*/,$4;
541         }
542         else {
543             push @new_packages, $2;
544         }
545         @new_packages = map {y/A-Z/a-z/; s/^(?:src|source):/src:/; $_;} @new_packages;
546         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
547         $bug_affected{$ref}=1;
548         my $version= $3;
549         eval {
550             set_package(@common_control_options,
551                         bug          => $ref,
552                         package      => \@new_packages,
553                        );
554             # if there is a version passed, we make an internal call
555             # to set_found
556             if (defined($version) && length $version) {
557                 set_found(@common_control_options,
558                           bug          => $ref,
559                           version      => $version,
560                          );
561             }
562         };
563         if ($@) {
564             $errors++;
565             print {$transcript} "Failed to clear fixed versions and reopen on $ref: ".cleanup_eval_fail($@,$debug)."\n";
566         }
567     } elsif (m/^reopen\s+\#?(-?\d+)(?:\s+([\=\!]|(?:\S.*\S)))?$/i) {
568         $ok++;
569         $ref= $1;
570         $bug_affected{$ref}=1; 
571         my $new_submitter = $2;
572         if (defined $new_submitter) {
573             if ($new_submitter eq '=') {
574                 undef $new_submitter;
575             }
576             elsif ($new_submitter eq '!') {
577                 $new_submitter = $replyto;
578             }
579         }
580         eval {
581             reopen(@common_control_options,
582                    bug          => $ref,
583                    submitter    => $new_submitter,
584                   );
585         };
586         if ($@) {
587             $errors++;
588             print {$transcript} "Failed to reopen $ref: ".cleanup_eval_fail($@,$debug)."\n";
589         }
590     } elsif (m{^(?:(?i)found)\s+\#?(-?\d+)
591                (?:\s+((?:$config{package_name_re}\/)?
592                     $config{package_version_re}
593                 # allow for multiple packages
594                 (?:\s*,\s*(?:$config{package_name_re}\/)?
595                     $config{package_version_re})*)
596             )?$}x) {
597         $ok++;
598         $ref= $1;
599         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
600         my @versions;
601         if (defined $2) {
602             @versions = split /\s*,\s*/,$2;
603             eval {
604                 set_found(@common_control_options,
605                           bug          => $ref,
606                           found        => \@versions,
607                           add          => 1,
608                          );
609             };
610             if ($@) {
611                 $errors++;
612                 print {$transcript} "Failed to add found on $ref: ".cleanup_eval_fail($@,$debug)."\n";
613             }
614         }
615         else {
616             eval {
617                 set_fixed(@common_control_options,
618                           bug          => $ref,
619                           fixed        => [],
620                           reopen       => 1,
621                          );
622             };
623             if ($@) {
624                 $errors++;
625                 print {$transcript} "Failed to clear fixed versions and reopen on $ref: ".cleanup_eval_fail($@,$debug)."\n";
626             }
627         }
628     }
629     elsif (m{^(?:(?i)notfound)\s+\#?(-?\d+)
630              \s+((?:$config{package_name_re}\/)?
631                  $config{package_version_re}
632                 # allow for multiple packages
633                 (?:\s*,\s*(?:$config{package_name_re}\/)?
634                     $config{package_version_re})*
635             )$}x) {
636         $ok++;
637         $ref= $1;
638         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
639         my @versions;
640         @versions = split /\s*,\s*/,$2;
641         eval {
642             set_found(@common_control_options,
643                       bug          => $ref,
644                       found        => \@versions,
645                       remove       => 1,
646                      );
647         };
648         if ($@) {
649             $errors++;
650             print {$transcript} "Failed to remove found on $ref: ".cleanup_eval_fail($@,$debug)."\n";
651         }
652     }
653     elsif (m{^(?:(?i)fixed)\s+\#?(-?\d+)
654              \s+((?:$config{package_name_re}\/)?
655                     $config{package_version_re}
656                 # allow for multiple packages
657                 (?:\s*,\s*(?:$config{package_name_re}\/)?
658                     $config{package_version_re})*)
659             \s*$}x) {
660         $ok++;
661         $ref= $1;
662         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
663         my @versions;
664         @versions = split /\s*,\s*/,$2;
665         eval {
666             set_fixed(@common_control_options,
667                       bug          => $ref,
668                       fixed        => \@versions,
669                       add          => 1,
670                      );
671         };
672         if ($@) {
673             $errors++;
674             print {$transcript} "Failed to add fixed on $ref: ".cleanup_eval_fail($@,$debug)."\n";
675         }
676     }
677     elsif (m{^(?:(?i)notfixed)\s+\#?(-?\d+)
678              \s+((?:$config{package_name_re}\/)?
679                     $config{package_version_re}
680                 # allow for multiple packages
681                 (?:\s*,\s*(?:$config{package_name_re}\/)?
682                     $config{package_version_re})*)
683             \s*$}x) {
684         $ok++;
685         $ref= $1;
686         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
687         my @versions;
688         @versions = split /\s*,\s*/,$2;
689         eval {
690             set_fixed(@common_control_options,
691                       bug          => $ref,
692                       fixed        => \@versions,
693                       remove       => 1,
694                      );
695         };
696         if ($@) {
697             $errors++;
698             print {$transcript} "Failed to remove fixed on $ref: ".cleanup_eval_fail($@,$debug)."\n";
699         }
700     }
701     elsif (m/^submitter\s+\#?(-?\d+)\s+(\!|\S.*\S)$/i) {
702         $ok++;
703         $ref= $1;
704         $bug_affected{$ref}=1;
705         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
706         my $newsubmitter = $2 eq '!' ? $replyto : $2;
707         if (not Mail::RFC822::Address::valid($newsubmitter)) {
708              print {$transcript} "$newsubmitter is not a valid e-mail address; not changing submitter\n";
709              $errors++;
710         }
711         else {
712             eval {
713                 set_submitter(@common_control_options,
714                               bug       => $ref,
715                               submitter => $newsubmitter,
716                              );
717             };
718             if ($@) {
719                 $errors++;
720                 print {$transcript} "Failed to set submitter on $ref: ".cleanup_eval_fail($@,$debug)."\n";
721             }
722         }
723     } elsif (m/^forwarded\s+\#?(-?\d+)\s+(\S.*\S)$/i) {
724         $ok++;
725         $ref= $1;
726         my $forward_to= $2;
727         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
728         $bug_affected{$ref} = 1;
729         eval {
730             set_forwarded(@common_control_options,
731                           bug          => $ref,
732                           forwarded    => $forward_to,
733                           );
734         };
735         if ($@) {
736             $errors++;
737             print {$transcript} "Failed to set the forwarded-to-address of $ref: ".cleanup_eval_fail($@,$debug)."\n";
738         }
739     } elsif (m/^notforwarded\s+\#?(-?\d+)$/i) {
740         $ok++;
741         $ref= $1;
742         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
743         $bug_affected{$ref} = 1;
744         eval {
745             set_forwarded(@common_control_options,
746                           bug          => $ref,
747                           forwarded    => undef,
748                           );
749         };
750         if ($@) {
751             $errors++;
752             print {$transcript} "Failed to clear the forwarded-to-address of $ref: ".cleanup_eval_fail($@,$debug)."\n";
753         }
754     } elsif (m/^(?:severity|priority)\s+\#?(-?\d+)\s+([-0-9a-z]+)$/i) {
755         $ok++;
756         $ref= $1;
757         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
758         $bug_affected{$ref}=1;
759         my $newseverity= $2;
760         if (exists $gObsoleteSeverities{$newseverity}) {
761             print {$transcript} "Severity level \`$newseverity' is obsolete. " .
762                  "Use $gObsoleteSeverities{$newseverity} instead.\n\n";
763                 $errors++;
764         } elsif (not defined first {$_ eq $newseverity}
765             (@gSeverityList, "$gDefaultSeverity")) {
766              print {$transcript} "Severity level \`$newseverity' is not known.\n".
767                   "Recognized are: $gShowSeverities.\n\n";
768             $errors++;
769         } else {
770             eval {
771                 set_severity(@common_control_options,
772                              bug => $ref,
773                              severity => $newseverity,
774                             );
775             };
776             if ($@) {
777                 $errors++;
778                 print {$transcript} "Failed to set severity of $config{bug} $ref to $newseverity: ".cleanup_eval_fail($@,$debug)."\n";
779             }
780         }
781     } elsif (m/^tags?\s+\#?(-?\d+)\s+(([=+-])\s*)?(\S.*)?$/i) {
782         ### TODO: [#505189] Consider altering this to accept tag #nnn + foo - bar - baz
783         $ok++;
784         $ref = $1;
785         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
786         $bug_affected{$ref}=1;
787         my $addsubcode = $3;
788         my @add_remove_option = ();
789         if (defined $addsubcode) {
790             if ($addsubcode eq '-') {
791                 push @add_remove_option,(remove => 1);
792             }
793             elsif ($addsubcode eq '+') {
794                 push @add_remove_option,(add => 1);
795             }
796         }
797         my $tags = $4;
798         my @tags = split /[\s,]+/, $tags;
799         my @badtags = ();
800         foreach my $tag (@tags) {
801             if (not defined first {$_ eq $tag} @{$config{tags}}) {
802                 push @badtags, $tag;
803             }
804         }
805         if (@badtags) {
806             print {$transcript} "Unknown tag/s: ".join(', ', @badtags).".\n".
807                  "Recognized are: ".join(' ', @gTags).".\n\n";
808             $errors++;
809         }
810         eval {
811             set_tags(@common_control_options,
812                      bug => $ref,
813                      tags => [@tags],
814                      warn_on_bad_tags => 0, # don't warn on bad tags,
815                                             # 'cause we do that above
816                      @add_remove_option,
817                     );
818         };
819         if ($@) {
820             # we intentionally have two errors here if there is a bad
821             # tag and the above fails for some reason
822             $errors++;
823             print {$transcript} "Failed to alter tags of $config{bug} $ref: ".cleanup_eval_fail($@,$debug)."\n";
824         }
825     } elsif (m/^(un)?block\s+\#?(-?\d+)\s+(?:by|with)\s+(\S.*)?$/i) {
826         $ok++;
827         $ref= $2;
828         my $add_remove = defined $1 && $1 eq 'un';
829         my @blockers = split /[\s,]+/, $3;
830         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
831         $bug_affected{$ref} = 1;
832         eval {
833              set_blocks(@common_control_options,
834                         bug          => $ref,
835                         block        => \@blockers,
836                         $add_remove ? (remove => 1):(add => 1),
837                        );
838         };
839         if ($@) {
840             $errors++;
841             print {$transcript} "Failed to set blocking bugs of $ref: ".cleanup_eval_fail($@,$debug)."\n";
842         }
843     } elsif (m/^retitle\s+\#?(-?\d+)\s+(\S.*\S)\s*$/i) {
844         $ok++;
845         $ref= $1; my $newtitle= $2;
846         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
847         $bug_affected{$ref} = 1;
848         eval {
849              set_title(@common_control_options,
850                        bug          => $ref,
851                        title        => $newtitle,
852                       );
853         };
854         if ($@) {
855             $errors++;
856             print {$transcript} "Failed to set the title of $ref: ".cleanup_eval_fail($@,$debug)."\n";
857         }
858     } elsif (m/^unmerge\s+\#?(-?\d+)$/i) {
859         $ok++;
860         $ref= $1;
861         $bug_affected{$ref} = 1;
862         if (&setbug) {
863             if (!length($data->{mergedwith})) {
864                 print {$transcript} "$gBug is not marked as being merged with any others.\n\n";
865                 &nochangebug;
866             } else {
867                 $mergelowstate eq 'locked' || die "$mergelowstate ?";
868                 $action= "Disconnected #$ref from all other report(s).";
869                 my @newmergelist= split(/ /,$data->{mergedwith});
870                 my $discref= $ref;
871                 @bug_affected{@newmergelist} = 1 x @newmergelist;
872                 do {
873                     $affected_packages{$data->{package}} = 1;
874                     add_recipients(data => $data,
875                                    recipients => \%recipients,
876                                    transcript   => $transcript,
877                                    ($dl > 0 ? (debug => $transcript):()),
878                                   );
879                     $data->{mergedwith}= ($ref == $discref) ? ''
880                         : join(' ',grep($_ ne $ref,@newmergelist));
881                 } while (&getnextbug);
882             }
883         }
884     } elsif (m/^merge\s+#?(-?\d+(\s+#?-?\d+)+)\s*$/i) {
885         $ok++;
886         my @tomerge= sort { $a <=> $b } split(/\s+#?/,$1);
887         my @newmergelist= ();
888         my %tags = ();
889         my %found = ();
890         my %fixed = ();
891         &getmerge;
892         while (defined($ref= shift(@tomerge))) {
893             print {$transcript} "D| checking merge $ref\n" if $dl;
894             $ref+= 0;
895             if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
896                 $ref = $clonebugs{$ref};
897             }
898             next if grep($_ == $ref,@newmergelist);
899             if (!&getbug) { &notfoundbug; @newmergelist=(); last }
900             if (!&checkpkglimit) { &cancelbug; @newmergelist=(); last; }
901             &foundbug;
902             print {$transcript} "D| adding $ref ($data->{mergedwith})\n" if $dl;
903             $mismatch= '';
904             &checkmatch('package','m_package',$data->{package},@newmergelist);
905             &checkmatch('forwarded addr','m_forwarded',$data->{forwarded},@newmergelist);
906             $data->{severity} = '$gDefaultSeverity' if $data->{severity} eq '';
907             &checkmatch('severity','m_severity',$data->{severity},@newmergelist);
908             &checkmatch('blocks','m_blocks',$data->{blocks},@newmergelist);
909             &checkmatch('blocked-by','m_blockedby',$data->{blockedby},@newmergelist);
910             &checkmatch('done mark','m_done',length($data->{done}) ? 'done' : 'open',@newmergelist);
911             &checkmatch('owner','m_owner',$data->{owner},@newmergelist);
912             &checkmatch('summary','m_summary',$data->{summary},@newmergelist);
913             &checkmatch('affects','m_affects',$data->{affects},@newmergelist);
914             foreach my $t (split /\s+/, $data->{keywords}) { $tags{$t} = 1; }
915             foreach my $f (@{$data->{found_versions}}) { $found{$f} = 1; }
916             foreach my $f (@{$data->{fixed_versions}}) { $fixed{$f} = 1; }
917             if (length($mismatch)) {
918                 print {$transcript} "Mismatch - only $gBugs in same state can be merged:\n".
919                      $mismatch."\n";
920                 $errors++;
921                 &cancelbug; @newmergelist=(); last;
922             }
923             push(@newmergelist,$ref);
924             push(@tomerge,split(/ /,$data->{mergedwith}));
925             &cancelbug;
926         }
927         if (@newmergelist) {
928             @newmergelist= sort { $a <=> $b } @newmergelist;
929             $action= "Merged @newmergelist.";
930             delete @fixed{keys %found};
931             for $ref (@newmergelist) {
932                 &getbug || die "huh ?  $gBug $ref disappeared during merge";
933                 $affected_packages{$data->{package}} = 1;
934                 add_recipients(data => $data,
935                                recipients => \%recipients,
936                                transcript   => $transcript,
937                                ($dl > 0 ? (debug => $transcript):()),
938                               );
939                 @bug_affected{@newmergelist} = 1 x @newmergelist;
940                 $data->{mergedwith}= join(' ',grep($_ != $ref,@newmergelist));
941                 $data->{keywords}= join(' ', keys %tags);
942                 $data->{found_versions}= [sort keys %found];
943                 $data->{fixed_versions}= [sort keys %fixed];
944                 &savebug;
945             }
946             print {$transcript} "$action\n\n";
947         }
948         &endmerge;
949     } elsif (m/^forcemerge\s+\#?(-?\d+(?:\s+\#?-?\d+)+)\s*$/i) {
950         $ok++;
951         my @temp = split /\s+\#?/,$1;
952         my $master_bug = shift @temp;
953         my $master_bug_data;
954         my @tomerge = sort { $a <=> $b } @temp;
955         unshift @tomerge,$master_bug;
956         print {$transcript} "D| force merging ".join(',',@tomerge)."\n" if $dl;
957         my @newmergelist= ();
958         my %tags = ();
959         my %found = ();
960         my %fixed = ();
961         # Here we try to do the right thing.
962         # First, if the bugs are in the same package, we merge all of the found, fixed, and tags.
963         # If not, we discard the found and fixed.
964         # Everything else we set to the values of the first bug.
965         &getmerge;
966         while (defined($ref= shift(@tomerge))) {
967             print {$transcript} "D| checking merge $ref\n" if $dl;
968             $ref+= 0;
969             if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
970                 $ref = $clonebugs{$ref};
971             }
972             next if grep($_ == $ref,@newmergelist);
973             if (!&getbug) { &notfoundbug; @newmergelist=(); last }
974             if (!&checkpkglimit) { &cancelbug; @newmergelist=(); last; }
975             &foundbug;
976             print {$transcript} "D| adding $ref ($data->{mergedwith})\n" if $dl;
977             $master_bug_data = $data if not defined $master_bug_data;
978             if ($data->{package} ne $master_bug_data->{package}) {
979                  print {$transcript} "Mismatch - only $gBugs in the same package can be forcibly merged:\n".
980                      "$gBug $ref is not in the same package as $master_bug\n";
981                 $errors++;
982                 &cancelbug; @newmergelist=(); last;
983             }
984             for my $t (split /\s+/,$data->{keywords}) {
985                  $tags{$t} = 1;
986             }
987             @found{@{$data->{found_versions}}} = (1) x @{$data->{found_versions}};
988             @fixed{@{$data->{fixed_versions}}} = (1) x @{$data->{fixed_versions}};
989             push(@newmergelist,$ref);
990             push(@tomerge,split(/ /,$data->{mergedwith}));
991             &cancelbug;
992         }
993         if (@newmergelist) {
994             @newmergelist= sort { $a <=> $b } @newmergelist;
995             $action= "Forcibly Merged @newmergelist.";
996             delete @fixed{keys %found};
997             for $ref (@newmergelist) {
998                 &getbug || die "huh ?  $gBug $ref disappeared during merge";
999                 $affected_packages{$data->{package}} = 1;
1000                 add_recipients(data => $data,
1001                                recipients => \%recipients,
1002                                transcript   => $transcript,
1003                                ($dl > 0 ? (debug => $transcript):()),
1004                               );
1005                 @bug_affected{@newmergelist} = 1 x @newmergelist;
1006                 $data->{mergedwith}= join(' ',grep($_ != $ref,@newmergelist));
1007                 $data->{keywords}= join(' ', keys %tags);
1008                 $data->{found_versions}= [sort keys %found];
1009                 $data->{fixed_versions}= [sort keys %fixed];
1010                 my @field_list = qw(forwarded package severity blocks blockedby owner done affects summary);
1011                 @{$data}{@field_list} = @{$master_bug_data}{@field_list};
1012                 &savebug;
1013             }
1014             print {$transcript} "$action\n\n";
1015         }
1016         &endmerge;
1017     } elsif (m/^clone\s+#?(\d+)\s+((-\d+\s+)*-\d+)\s*$/i) {
1018         $ok++;
1019
1020         my $origref = $1;
1021         my @newclonedids = split /\s+/, $2;
1022         my $newbugsneeded = scalar(@newclonedids);
1023
1024         $ref = $origref;
1025         $bug_affected{$ref} = 1;
1026         if (&setbug) {
1027             $affected_packages{$data->{package}} = 1;
1028             if (length($data->{mergedwith})) {
1029                 print {$transcript} "$gBug is marked as being merged with others. Use an existing clone.\n\n";
1030                 $errors++;
1031                 &nochangebug;
1032             } else {
1033                 &filelock("nextnumber.lock");
1034                 open(N,"nextnumber") || die "nextnumber: read: $!";
1035                 my $v=<N>; $v =~ s/\n$// || die "nextnumber bad format";
1036                 my $firstref= $v+0;  $v += $newbugsneeded;
1037                 open(NN,">nextnumber"); print NN "$v\n"; close(NN);
1038                 &unfilelock;
1039
1040                 my $lastref = $firstref + $newbugsneeded - 1;
1041
1042                 if ($newbugsneeded == 1) {
1043                     $action= "$gBug $origref cloned as bug $firstref.";
1044                 } else {
1045                     $action= "$gBug $origref cloned as bugs $firstref-$lastref.";
1046                 }
1047
1048                 my $blocks = $data->{blocks};
1049                 my $blockedby = $data->{blockedby};
1050                 
1051                 &getnextbug;
1052                 my $ohash = get_hashname($origref);
1053                 my $clone = $firstref;
1054                 @bug_affected{@newclonedids} = 1 x @newclonedids;
1055                 for my $newclonedid (@newclonedids) {
1056                     $clonebugs{$newclonedid} = $clone;
1057             
1058                     my $hash = get_hashname($clone);
1059                     copy("db-h/$ohash/$origref.log", "db-h/$hash/$clone.log");
1060                     copy("db-h/$ohash/$origref.status", "db-h/$hash/$clone.status");
1061                     copy("db-h/$ohash/$origref.summary", "db-h/$hash/$clone.summary");
1062                     copy("db-h/$ohash/$origref.report", "db-h/$hash/$clone.report");
1063                     &bughook('new', $clone, $data);
1064                 
1065                     # Update blocking info of bugs blocked by or blocking the
1066                     # cloned bug.
1067                     foreach $ref (split ' ', $blocks) {
1068                         &getbug;
1069                         $data->{blockedby} = manipset($data->{blockedby}, $clone, 1);
1070                         &savebug;
1071                     }
1072                     foreach $ref (split ' ', $blockedby) {
1073                         &getbug;
1074                         $data->{blocks} = manipset($data->{blocks}, $clone, 1);
1075                         &savebug;
1076                     }
1077
1078                     $clone++;
1079                 }
1080             }
1081         }
1082     } elsif (m/^package\:?\s+(\S.*\S)?\s*$/i) {
1083         $ok++;
1084         my @pkgs = split /\s+/, $1;
1085         if (scalar(@pkgs) > 0) {
1086                 %limit_pkgs = map { ($_, 1) } @pkgs;
1087                 $limit{package} = [@pkgs];
1088                 print {$transcript} "Ignoring bugs not assigned to: " .
1089                         join(" ", keys(%limit_pkgs)) . "\n\n";
1090         } else {
1091                 %limit_pkgs = ();
1092                 print {$transcript} "Not ignoring any bugs.\n\n";
1093         }
1094     } elsif (m/^limit\:?\s+(\S.*\S)\s*$/) {
1095         $ok++;
1096         my ($field,@options) = split /\s+/, $1;
1097         $field = lc($field);
1098         if ($field =~ /^(?:clear|unset|blank)$/) {
1099             %limit = ();
1100             print {$transcript} "Limit cleared.\n\n";
1101         }
1102         elsif (exists $Debbugs::Status::fields{$field} ) {
1103             # %limit can actually contain regexes, but because they're
1104             # not evaluated in Safe, DO NOT allow them through without
1105             # fixing this.
1106             $limit{$field} = [@options];
1107             print {$transcript} "Limiting to bugs with field '$field' containing at least one of ".join(', ',map {qq('$_')} @options)."\n";
1108             print {$transcript} "Limit currently set to ";
1109             for my $limit_field (keys %limit) {
1110                 print {$transcript} "  '$limit_field':".join(', ',map {qq('$_')} @options)."\n";
1111             }
1112             print {$transcript} "\n";
1113         }
1114         else {
1115             print {$transcript} "Limit key $field not understood. Stopping processing here.\n\n";
1116             $errors++;
1117             last;
1118         }
1119     } elsif (m/^affects?\s+\#?(-?\d+)(?:\s+((?:[=+-])?)\s*(\S.*)?)?\s*$/i) {
1120         $ok++;
1121         $ref = $1;
1122         my $add_remove = $2 || '';
1123         my $packages = $3 || '';
1124         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1125         $bug_affected{$ref} = 1;
1126         eval {
1127              affects(@common_control_options,
1128                      bug => $ref,
1129                      packages     => [splitpackages($3)],
1130                      ($add_remove eq '+'?(add => 1):()),
1131                      ($add_remove eq '-'?(remove => 1):()),
1132                     );
1133         };
1134         if ($@) {
1135             $errors++;
1136             print {$transcript} "Failed to mark $ref as affecting package(s): ".cleanup_eval_fail($@,$debug)."\n";
1137         }
1138
1139     } elsif (m/^summary\s+\#?(-?\d+)\s*(\d+|)\s*$/i) {
1140         $ok++;
1141         $ref = $1;
1142         my $summary_msg = length($2)?$2:undef;
1143         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1144         $bug_affected{$ref} = 1;
1145         eval {
1146             summary(@common_control_options,
1147                     bug          => $ref,
1148                     summary      => $summary_msg,
1149                    );
1150         };
1151         if ($@) {
1152             $errors++;
1153             print {$transcript} "Failed to give $ref a summary: ".cleanup_eval_fail($@,$debug)."\n";
1154         }
1155
1156     } elsif (m/^owner\s+\#?(-?\d+)\s+((?:\S.*\S)|\!)\s*$/i) {
1157         $ok++;
1158         $ref = $1;
1159         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1160         my $newowner = $2;
1161         if ($newowner eq '!') {
1162             $newowner = $replyto;
1163         }
1164         $bug_affected{$ref} = 1;
1165         eval {
1166             owner(@common_control_options,
1167                   bug          => $ref,
1168                   owner        => $newowner,
1169                  );
1170         };
1171         if ($@) {
1172             $errors++;
1173             print {$transcript} "Failed to mark $ref as having an owner: ".cleanup_eval_fail($@,$debug)."\n";
1174         }
1175     } elsif (m/^noowner\s+\#?(-?\d+)\s*$/i) {
1176         $ok++;
1177         $ref = $1;
1178         $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1179         $bug_affected{$ref} = 1;
1180         eval {
1181             owner(@common_control_options,
1182                   bug          => $ref,
1183                   owner        => undef,
1184                  );
1185         };
1186         if ($@) {
1187             $errors++;
1188             print {$transcript} "Failed to mark $ref as not having an owner: ".cleanup_eval_fail($@,$debug)."\n";
1189         }
1190     } elsif (m/^unarchive\s+#?(\d+)$/i) {
1191          $ok++;
1192          $ref = $1;
1193          $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1194          $bug_affected{$ref} = 1;
1195          eval {
1196               bug_unarchive(@common_control_options,
1197                             bug        => $ref,
1198                             recipients => \%recipients,
1199                            );
1200          };
1201          if ($@) {
1202               $errors++;
1203          }
1204     } elsif (m/^archive\s+#?(\d+)$/i) {
1205          $ok++;
1206          $ref = $1;
1207          $ref = $clonebugs{$ref} if exists $clonebugs{$ref};
1208          $bug_affected{$ref} = 1;
1209          eval {
1210               bug_archive(@common_control_options,
1211                           bug => $ref,
1212                           ignore_time => 1,
1213                           archive_unarchived => 0,
1214                          );
1215          };
1216          if ($@) {
1217               $errors++;
1218          }
1219     } else {
1220         print {$transcript} "Unknown command or malformed arguments to command.\n\n";
1221         $errors++;
1222         if (++$unknowns >= 5) {
1223             print {$transcript} "Too many unknown commands, stopping here.\n\n";
1224             last;
1225         }
1226     }
1227 }
1228 if ($procline>$#bodylines) {
1229     print {$transcript} ">\nEnd of message, stopping processing here.\n\n";
1230 }
1231 if (!$ok && !$quickabort) {
1232     $errors++;
1233     print {$transcript} "No commands successfully parsed; sending the help text(s).\n";
1234     &sendhelp;
1235     print {$transcript} "\n";
1236 }
1237
1238 my @maintccs = determine_recipients(recipients => \%recipients,
1239                                     address_only => 1,
1240                                     cc => 1,
1241                                    );
1242 my $maintccs = 'Cc: '.join(",\n    ",
1243                     determine_recipients(recipients => \%recipients,
1244                                          cc => 1,
1245                                         )
1246                    )."\n";
1247
1248 my $packagepr = '';
1249 $packagepr = "X-${gProject}-PR-Package: " . join(keys %affected_packages) . "\n" if keys %affected_packages;
1250
1251 # Add Bcc's to subscribed bugs
1252 # now handled by Debbugs::Recipients
1253 #push @bcc, map {"bugs=$_\@$gListDomain"} keys %bug_affected;
1254
1255 if (!defined $header{'subject'} || $header{'subject'} eq "") {
1256   $header{'subject'} = "your mail";
1257 }
1258
1259 # Error text here advertises how many errors there were
1260 my $error_text = $errors > 0 ? " (with $errors errors)":'';
1261
1262 my $reply= <<END;
1263 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1264 To: $replyto
1265 ${maintccs}Subject: Processed${error_text}: $header{'subject'}
1266 In-Reply-To: $header{'message-id'}
1267 END
1268 $reply .= <<END;
1269 References: $header{'message-id'}
1270 Message-ID: <handler.s.$nn.transcript\@$gEmailDomain>
1271 Precedence: bulk
1272 ${packagepr}X-$gProject-PR-Message: transcript
1273
1274 ${transcript_scalar}Please contact me if you need assistance.
1275
1276 $gMaintainer
1277 (administrator, $gProject $gBugs database)
1278 END
1279
1280 my $repliedshow= join(', ',$replyto,
1281                       determine_recipients(recipients => \%recipients,
1282                                            cc => 1,
1283                                            address_only => 1,
1284                                           )
1285                      );
1286 # -1 is the service.in log
1287 &filelock("lock/-1");
1288 open(AP,">>db-h/-1.log") || die "open db-h/-1.log: $!";
1289 print(AP
1290       "\2\n$repliedshow\n\5\n$reply\n\3\n".
1291       "\6\n".
1292       "<strong>Request received</strong> from <code>".
1293       html_escape($header{'from'})."</code>\n".
1294       "to <code>".html_escape($controlrequestaddr)."</code>\n".
1295       "\3\n".
1296       "\7\n",escape_log(@log),"\n\3\n") || die "writing db-h/-1.log: $!";
1297 close(AP) || die "open db-h/-1.log: $!";
1298 &unfilelock;
1299 utime(time,time,"db-h");
1300
1301 &sendmailmessage($reply,
1302                  exists $header{'x-debbugs-no-ack'}?():$replyto,
1303                  make_list(values %{{determine_recipients(recipients => \%recipients,
1304                                                           address_only => 1,
1305                                                          )}}
1306                           ),
1307                 );
1308
1309 unlink("incoming/P$nn") || die "unlinking incoming/P$nn: $!";
1310
1311 sub sendmailmessage {
1312     my ($message,@recips) = @_;
1313     $message = "X-Loop: $gMaintainerEmail\n" . $message;
1314     send_mail_message(message    => $message,
1315                       recipients => \@recips,
1316                      );
1317     $midix++;
1318 }
1319
1320 sub fill_template{
1321      my ($template,$extra_var) = @_;
1322      $extra_var ||={};
1323      my $variables = {config => \%config,
1324                       defined($ref)?(ref    => $ref):(),
1325                       defined($data)?(data  => $data):(),
1326                       %{$extra_var},
1327                      };
1328      my $hole_var = {'&bugurl' =>
1329                      sub{"$_[0]: ".
1330                               'http://'.$config{cgi_domain}.'/'.
1331                                    Debbugs::CGI::bug_url($_[0]);
1332                     }
1333                     };
1334      return fill_in_template(template => $template,
1335                              variables => $variables,
1336                              hole_var  => $hole_var,
1337                             );
1338 }
1339
1340 =head2 message_body_template
1341
1342      message_body_template('mail/ack',{ref=>'foo'});
1343
1344 Creates a message body using a template
1345
1346 =cut
1347
1348 sub message_body_template{
1349      my ($template,$extra_var) = @_;
1350      $extra_var ||={};
1351      my $body = fill_template($template,$extra_var);
1352      return fill_template('mail/message_body',
1353                           {%{$extra_var},
1354                            body => $body,
1355                           },
1356                          );
1357 }
1358
1359 sub sendhelp {
1360      if ($control) {
1361           &sendtxthelpraw("bug-maint-mailcontrol.txt","instructions for control\@$gEmailDomain")
1362      }
1363      else {
1364           &sendtxthelpraw("bug-log-mailserver.txt","instructions for request\@$gEmailDomain");
1365      }
1366 }
1367
1368 #sub unimplemented {
1369 #    print {$transcript} "Sorry, command $_[0] not yet implemented.\n\n";
1370 #}
1371 our %checkmatch_values;
1372 sub checkmatch {
1373     my ($string,$mvarname,$svarvalue,@newmergelist) = @_;
1374     my ($mvarvalue);
1375     if (@newmergelist) {
1376         $mvarvalue = $checkmatch_values{$mvarname};
1377         print {$transcript} "D| checkmatch \`$string' /$mvarname/$mvarvalue/$svarvalue/\n"
1378             if $dl;
1379         $mismatch .=
1380             "Values for \`$string' don't match:\n".
1381             " #$newmergelist[0] has \`$mvarvalue';\n".
1382             " #$ref has \`$svarvalue'\n"
1383             if $mvarvalue ne $svarvalue;
1384     } else {
1385          print {$transcript} "D| setupmatch \`$string' /$mvarname/$svarvalue/\n"
1386               if $dl;
1387          $checkmatch_values{$mvarname} = $svarvalue;
1388     }
1389 }
1390
1391 sub checkpkglimit {
1392     if (keys %limit_pkgs and not defined $limit_pkgs{$data->{package}}) {
1393         print {$transcript} "$gBug number $ref belongs to package $data->{package}, skipping.\n\n";
1394         $errors++;
1395         return 0;
1396     }
1397     return 1;
1398 }
1399
1400 sub manipset {
1401     my $list = shift;
1402     my $elt = shift;
1403     my $add = shift;
1404
1405     my %h = map { $_ => 1 } split ' ', $list;
1406     if ($add) {
1407         $h{$elt}=1;
1408     }
1409     else {
1410         delete $h{$elt};
1411     }
1412     return join ' ', sort keys %h;
1413 }
1414
1415 # High-level bug manipulation calls
1416 # Do announcements themselves
1417 #
1418 # Possible calling sequences:
1419 #    setbug (returns 0)
1420 #    
1421 #    setbug (returns 1)
1422 #    &transcript(something)
1423 #    nochangebug
1424 #
1425 #    setbug (returns 1)
1426 #    $action= (something)
1427 #    do {
1428 #      (modify s_* variables)
1429 #    } while (getnextbug);
1430
1431 our $manybugs;
1432
1433 sub nochangebug {
1434     &dlen("nochangebug");
1435     $state eq 'single' || $state eq 'multiple' || die "$state ?";
1436     &cancelbug;
1437     &endmerge if $manybugs;
1438     $state= 'idle';
1439     &dlex("nochangebug");
1440 }
1441
1442 our $sref;
1443 our @thisbugmergelist;
1444
1445 sub setbug {
1446     &dlen("setbug $ref");
1447     if ($ref =~ m/^-\d+/) {
1448         if (!defined $clonebugs{$ref}) {
1449             &notfoundbug;
1450             &dlex("setbug => noclone");
1451             return 0;
1452         }
1453         $ref = $clonebugs{$ref};
1454     }
1455     $state eq 'idle' || die "$state ?";
1456     if (!&getbug) {
1457         &notfoundbug;
1458         &dlex("setbug => 0s");
1459         return 0;
1460     }
1461
1462     if (!&checkpkglimit) {
1463         &cancelbug;
1464         return 0;
1465     }
1466
1467     @thisbugmergelist= split(/ /,$data->{mergedwith});
1468     if (!@thisbugmergelist) {
1469         &foundbug;
1470         $manybugs= 0;
1471         $state= 'single';
1472         $sref=$ref;
1473         &dlex("setbug => 1s");
1474         return 1;
1475     }
1476     &cancelbug;
1477     &getmerge;
1478     $manybugs= 1;
1479     if (!&getbug) {
1480         &notfoundbug;
1481         &endmerge;
1482         &dlex("setbug => 0mc");
1483         return 0;
1484     }
1485     &foundbug;
1486     $state= 'multiple'; $sref=$ref;
1487     &dlex("setbug => 1m");
1488     return 1;
1489 }
1490
1491 sub getnextbug {
1492     &dlen("getnextbug");
1493     $state eq 'single' || $state eq 'multiple' || die "$state ?";
1494     &savebug;
1495     if (!$manybugs || !@thisbugmergelist) {
1496         length($action) || die;
1497         print {$transcript} "$action\n$extramessage\n";
1498         &endmerge if $manybugs;
1499         $state= 'idle';
1500         &dlex("getnextbug => 0");
1501         return 0;
1502     }
1503     $ref= shift(@thisbugmergelist);
1504     &getbug || die "bug $ref disappeared";
1505     &foundbug;
1506     &dlex("getnextbug => 1");
1507     return 1;
1508 }
1509
1510 # Low-level bug-manipulation calls
1511 # Do no announcements
1512 #
1513 #    getbug (returns 0)
1514 #
1515 #    getbug (returns 1)
1516 #    cancelbug
1517 #
1518 #    getmerge
1519 #    $action= (something)
1520 #    getbug (returns 1)
1521 #    savebug/cancelbug
1522 #    getbug (returns 1)
1523 #    savebug/cancelbug
1524 #    [getbug (returns 0)]
1525 #    &transcript("$action\n\n")
1526 #    endmerge
1527
1528 sub notfoundbug { print {$transcript} "$gBug number $ref not found. (Is it archived?)\n\n"; }
1529 sub foundbug { print {$transcript} "$gBug#$ref: $data->{subject}\n"; }
1530
1531 sub getmerge {
1532     &dlen("getmerge");
1533     $mergelowstate eq 'idle' || die "$mergelowstate ?";
1534     &filelock('lock/merge');
1535     $mergelowstate='locked';
1536     &dlex("getmerge");
1537 }
1538
1539 sub endmerge {
1540     &dlen("endmerge");
1541     $mergelowstate eq 'locked' || die "$mergelowstate ?";
1542     &unfilelock;
1543     $mergelowstate='idle';
1544     &dlex("endmerge");
1545 }
1546
1547 sub getbug {
1548     &dlen("getbug $ref");
1549     $lowstate eq 'idle' || die "$state ?";
1550     # Only use unmerged bugs here
1551     if (($data = &lockreadbug($ref,'db-h'))) {
1552         $sref= $ref;
1553         $lowstate= "open";
1554         &dlex("getbug => 1");
1555         $extramessage='';
1556         return 1;
1557     }
1558     $lowstate= 'idle';
1559     &dlex("getbug => 0");
1560     return 0;
1561 }
1562
1563 sub cancelbug {
1564     &dlen("cancelbug");
1565     $lowstate eq 'open' || die "$state ?";
1566     &unfilelock;
1567     $lowstate= 'idle';
1568     &dlex("cancelbug");
1569 }
1570
1571 sub savebug {
1572     &dlen("savebug $ref");
1573     $lowstate eq 'open' || die "$lowstate ?";
1574     length($action) || die;
1575     $ref == $sref || die "read $sref but saving $ref ?";
1576     append_action_to_log(bug => $ref,
1577                          action => $action,
1578                          requester => $header{from},
1579                          request_addr => $controlrequestaddr,
1580                          message => \@log,
1581                          get_lock => 0,
1582                         );
1583     unlockwritebug($ref, $data);
1584     $lowstate= "idle";
1585     &dlex("savebug");
1586 }
1587
1588 sub dlen {
1589     return if !$dl;
1590     print {$transcript} "C> @_ ($state $lowstate $mergelowstate)\n";
1591 }
1592
1593 sub dlex {
1594     return if !$dl;
1595     print {$transcript} "R> @_ ($state $lowstate $mergelowstate)\n";
1596 }
1597
1598 sub urlsanit {
1599     my $url = shift;
1600     $url =~ s/%/%25/g;
1601     $url =~ s/\+/%2b/g;
1602     my %saniarray = ('<','lt', '>','gt', '&','amp', '"','quot');
1603     $url =~ s/([<>&"])/\&$saniarray{$1};/g;
1604     return $url;
1605 }
1606
1607 sub sendlynxdoc {
1608     &sendlynxdocraw;
1609     print {$transcript} "\n";
1610     $ok++;
1611 }
1612
1613 sub sendtxthelp {
1614     &sendtxthelpraw;
1615     print {$transcript} "\n";
1616     $ok++;
1617 }
1618
1619
1620 our $doc;
1621 sub sendtxthelpraw {
1622     my ($relpath,$description) = @_;
1623     $doc='';
1624     if (not -e "$gDocDir/$relpath") {
1625         print {$transcript} "Unfortunatly, the help text doesn't exist, so it wasn't sent.\n";
1626         warn "Help text $gDocDir/$relpath not found";
1627         return;
1628     }
1629     open(D,"$gDocDir/$relpath") || die "open doc file $relpath: $!";
1630     while(<D>) { $doc.=$_; }
1631     close(D);
1632     print {$transcript} "Sending $description in separate message.\n";
1633     &sendmailmessage(<<END.$doc,$replyto);
1634 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1635 To: $replyto
1636 Subject: $gProject $gBug help: $description
1637 References: $header{'message-id'}
1638 In-Reply-To: $header{'message-id'}
1639 Message-ID: <handler.s.$nn.help.$midix\@$gEmailDomain>
1640 Precedence: bulk
1641 X-$gProject-PR-Message: doc-text $relpath
1642
1643 END
1644     $ok++;
1645 }
1646
1647 sub sendlynxdocraw {
1648     my ($relpath,$description) = @_;
1649     $doc='';
1650     open(L,"lynx -nolist -dump http://$gCGIDomain/\Q$relpath\E 2>&1 |") || die "fork for lynx: $!";
1651     while(<L>) { $doc.=$_; }
1652     $!=0; close(L);
1653     if ($? == 255 && $doc =~ m/^\n*lynx: Can\'t access start file/) {
1654         print {$transcript} "Information ($description) is not available -\n".
1655              "perhaps the $gBug does not exist or is not on the WWW yet.\n";
1656          $ok++;
1657     } elsif ($?) {
1658         print {$transcript} "Error getting $description (code $? $!):\n$doc\n";
1659     } else {
1660         print {$transcript} "Sending $description.\n";
1661         &sendmailmessage(<<END.$doc,$replyto);
1662 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1663 To: $replyto
1664 Subject: $gProject $gBugs information: $description
1665 References: $header{'message-id'}
1666 In-Reply-To: $header{'message-id'}
1667 Message-ID: <handler.s.$nn.info.$midix\@$gEmailDomain>
1668 Precedence: bulk
1669 X-$gProject-PR-Message: doc-html $relpath
1670
1671 END
1672          $ok++;
1673     }
1674 }
1675
1676
1677 sub sendinfo {
1678     my ($wherefrom,$path,$description) = @_;
1679     if ($wherefrom eq "ftp.d.o") {
1680       $doc = `lynx -nolist -dump http://ftp.debian.org/debian/indices/$path.gz 2>&1 | gunzip -cf` or die "fork for lynx/gunzip: $!";
1681       $! = 0;
1682       if ($? == 255 && $doc =~ m/^\n*lynx: Can\'t access start file/) {
1683           print {$transcript} "$description is not available.\n";
1684           $ok++; return;
1685       } elsif ($?) {
1686           print {$transcript} "Error getting $description (code $? $!):\n$doc\n";
1687           return;
1688       }
1689     } elsif ($wherefrom eq "local") {
1690       open P, "$path";
1691       $doc = do { local $/; <P> };
1692       close P;
1693     } else {
1694       print {$transcript} "internal errror: info files location unknown.\n";
1695       $ok++; return;
1696     }
1697     print {$transcript} "Sending $description.\n";
1698     &sendmailmessage(<<END.$doc,$replyto);
1699 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1700 To: $replyto
1701 Subject: $gProject $gBugs information: $description
1702 References: $header{'message-id'}
1703 In-Reply-To: $header{'message-id'}
1704 Message-ID: <handler.s.$nn.info.$midix\@$gEmailDomain>
1705 Precedence: bulk
1706 X-$gProject-PR-Message: getinfo
1707
1708 $description follows:
1709
1710 END
1711     $ok++;
1712     print {$transcript} "\n";
1713 }