2002-01-20 01:44:52 +00:00
|
|
|
#!/usr/bonsaitools/bin/perl -wT
|
1998-09-15 21:49:26 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-09-01 01:20:36 +00:00
|
|
|
#
|
1999-11-01 23:33:56 +00:00
|
|
|
# The contents of this file are subject to the Mozilla Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
1998-09-01 01:20:36 +00:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-01 23:33:56 +00:00
|
|
|
#
|
1998-09-01 01:20:36 +00:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-01 23:33:56 +00:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1998-09-01 01:20:36 +00:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2001-09-03 01:08:05 +00:00
|
|
|
# Matthew Tuck <matty@chariot.net.au>
|
1998-09-01 01:20:36 +00:00
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
use strict;
|
1998-09-01 01:20:36 +00:00
|
|
|
|
2002-01-20 01:44:52 +00:00
|
|
|
use lib qw(.);
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
require "CGI.pl";
|
1998-09-01 01:20:36 +00:00
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
use vars %::FORM;
|
|
|
|
|
2001-06-02 14:24:45 +00:00
|
|
|
ConnectToDatabase();
|
|
|
|
|
|
|
|
confirm_login();
|
|
|
|
|
|
|
|
# Make sure the user is authorized to access sanitycheck.cgi. Access
|
|
|
|
# is restricted to logged-in users who have "editbugs" privileges,
|
|
|
|
# which is a reasonable compromise between allowing all users to access
|
|
|
|
# the script (creating the potential for denial of service attacks)
|
|
|
|
# and restricting access to this installation's administrators (which
|
|
|
|
# prevents users with a legitimate interest in Bugzilla integrity
|
|
|
|
# from accessing the script).
|
|
|
|
UserInGroup("editbugs")
|
|
|
|
|| DisplayError("You are not authorized to access this script,
|
|
|
|
which is reserved for users with the ability to edit bugs.")
|
|
|
|
&& exit;
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
print "Content-type: text/html\n";
|
|
|
|
print "\n";
|
1998-09-01 01:20:36 +00:00
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
my $offervotecacherebuild = 0;
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
sub Status {
|
|
|
|
my ($str) = (@_);
|
2002-06-28 00:18:32 +00:00
|
|
|
print "$str <p>\n";
|
1998-09-01 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
sub Alert {
|
|
|
|
my ($str) = (@_);
|
2002-06-28 00:18:32 +00:00
|
|
|
Status("<font color=\"red\">$str</font>");
|
1998-09-01 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
sub BugLink {
|
|
|
|
my ($id) = (@_);
|
2002-06-28 00:18:32 +00:00
|
|
|
return "<a href=\"show_bug.cgi?id=$id\">$id</a>";
|
1998-09-01 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
sub AlertBadVoteCache {
|
|
|
|
my ($id) = (@_);
|
|
|
|
Alert("Bad vote cache for bug " . BugLink($id));
|
|
|
|
$offervotecacherebuild = 1;
|
|
|
|
}
|
1998-09-01 01:20:36 +00:00
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
sub CrossCheck {
|
|
|
|
my $table = shift @_;
|
|
|
|
my $field = shift @_;
|
|
|
|
Status("Checking references to $table.$field");
|
|
|
|
SendSQL("SELECT DISTINCT $field FROM $table");
|
|
|
|
my %valid;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
$valid{FetchOneColumn()} = 1;
|
|
|
|
}
|
|
|
|
while (@_) {
|
|
|
|
my $ref = shift @_;
|
2000-07-25 18:58:54 +00:00
|
|
|
my ($t2, $f2, $key2, $exceptions) = @$ref;
|
|
|
|
|
|
|
|
$exceptions ||= [];
|
|
|
|
my %exceptions = map { $_ => 1 } @$exceptions;
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
Status("... from $t2.$f2");
|
2000-07-25 18:58:54 +00:00
|
|
|
|
2001-09-10 15:20:11 +00:00
|
|
|
SendSQL("SELECT DISTINCT $f2" . ($key2 ? ", $key2" : '') ." FROM $t2 "
|
|
|
|
. "WHERE $f2 IS NOT NULL");
|
2000-01-23 04:37:40 +00:00
|
|
|
while (MoreSQLData()) {
|
2000-07-25 18:58:54 +00:00
|
|
|
my ($value, $key) = FetchSQLData();
|
2000-01-23 04:37:40 +00:00
|
|
|
if (!$valid{$value} && !$exceptions{$value}) {
|
2000-07-25 18:58:54 +00:00
|
|
|
my $alert = "Bad value $value found in $t2.$f2";
|
|
|
|
if ($key2) {
|
|
|
|
if ($key2 eq 'bug_id') {
|
|
|
|
$alert .= qq{ (<a href="show_bug.cgi?id=$key">bug $key</a>)};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$alert .= " ($key2 == '$key')";
|
|
|
|
}
|
|
|
|
}
|
2000-09-19 15:42:53 +00:00
|
|
|
Alert($alert);
|
2000-01-23 04:37:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
sub DateCheck {
|
|
|
|
my $table = shift @_;
|
|
|
|
my $field = shift @_;
|
|
|
|
Status("Checking dates in $table.$field");
|
|
|
|
SendSQL("SELECT COUNT( $field ) FROM $table WHERE $field > NOW()");
|
|
|
|
my $c = FetchOneColumn();
|
|
|
|
if ($c) {
|
|
|
|
Alert("Found $c dates in future");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
|
2001-09-03 01:08:05 +00:00
|
|
|
my @badbugs;
|
2000-01-23 04:37:40 +00:00
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
|
1999-03-03 22:55:36 +00:00
|
|
|
my @row;
|
1999-03-05 17:55:45 +00:00
|
|
|
my @checklist;
|
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
PutHeader("Bugzilla Sanity Check");
|
|
|
|
|
2002-05-22 09:21:35 +00:00
|
|
|
###########################################################################
|
|
|
|
# Fix vote cache
|
|
|
|
###########################################################################
|
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
if (exists $::FORM{'rebuildvotecache'}) {
|
|
|
|
Status("OK, now rebuilding vote cache.");
|
|
|
|
SendSQL("lock tables bugs write, votes read");
|
1999-10-12 11:18:29 +00:00
|
|
|
SendSQL("update bugs set votes = 0, delta_ts=delta_ts");
|
1999-10-11 17:14:32 +00:00
|
|
|
SendSQL("select bug_id, sum(count) from votes group by bug_id");
|
|
|
|
my %votes;
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id, $v) = (@row);
|
|
|
|
$votes{$id} = $v;
|
|
|
|
}
|
|
|
|
foreach my $id (keys %votes) {
|
1999-10-12 11:18:29 +00:00
|
|
|
SendSQL("update bugs set votes = $votes{$id}, delta_ts=delta_ts where bug_id = $id");
|
1999-10-11 17:14:32 +00:00
|
|
|
}
|
|
|
|
SendSQL("unlock tables");
|
1999-10-12 11:18:29 +00:00
|
|
|
Status("Vote cache has been rebuilt.");
|
1999-10-11 17:14:32 +00:00
|
|
|
}
|
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
if (exists $::FORM{'rederivegroups'}) {
|
|
|
|
Status("OK, All users' inherited permissions will be rechecked when " .
|
|
|
|
"they next access Bugzilla.");
|
|
|
|
SendSQL("UPDATE groups SET last_changed = NOW() LIMIT 1");
|
|
|
|
}
|
|
|
|
|
|
|
|
# rederivegroupsnow is REALLY only for testing.
|
|
|
|
if (exists $::FORM{'rederivegroupsnow'}) {
|
|
|
|
Status("OK, now rederiving groups.");
|
|
|
|
SendSQL("SELECT userid FROM profiles");
|
|
|
|
while ((my $id) = FetchSQLData()) {
|
|
|
|
DeriveGroup($id);
|
|
|
|
Status("Group $id");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $::FORM{'cleangroupsnow'}) {
|
|
|
|
Status("OK, now cleaning stale groups.");
|
|
|
|
# Only users that were out of date already long ago should be cleaned
|
|
|
|
# and the cleaning is done with tables locked. This is require in order
|
|
|
|
# to keep another session from proceeding with permission checks
|
|
|
|
# after the groups have been cleaned unless it first had an opportunity
|
|
|
|
# to get the groups up to date.
|
|
|
|
# If any page starts taking longer than one hour to load, this interval
|
|
|
|
# should be revised.
|
|
|
|
SendSQL("SELECT MAX(last_changed) FROM groups WHERE last_changed < NOW() - INTERVAL 1 HOUR");
|
|
|
|
(my $cutoff) = FetchSQLData();
|
|
|
|
Status("Cutoff is $cutoff");
|
|
|
|
SendSQL("SELECT COUNT(*) FROM user_group_map");
|
|
|
|
(my $before) = FetchSQLData();
|
|
|
|
SendSQL("LOCK TABLES user_group_map WRITE, profiles WRITE");
|
|
|
|
SendSQL("SELECT userid FROM profiles " .
|
|
|
|
"WHERE refreshed_when > 0 " .
|
|
|
|
"AND refreshed_when < " . SqlQuote($cutoff) .
|
|
|
|
" LIMIT 1000");
|
|
|
|
my $count = 0;
|
|
|
|
while ((my $id) = FetchSQLData()) {
|
|
|
|
$count++;
|
|
|
|
PushGlobalSQLState();
|
|
|
|
SendSQL("DELETE FROM user_group_map WHERE " .
|
|
|
|
"user_id = $id AND isderived = 1 AND isbless = 0");
|
|
|
|
SendSQL("UPDATE profiles SET refreshed_when = 0 WHERE userid = $id");
|
|
|
|
PopGlobalSQLState();
|
|
|
|
}
|
|
|
|
SendSQL("UNLOCK TABLES");
|
|
|
|
SendSQL("SELECT COUNT(*) FROM user_group_map");
|
|
|
|
(my $after) = FetchSQLData();
|
|
|
|
Status("Cleaned table for $count users " .
|
|
|
|
"- reduced from $before records to $after records");
|
|
|
|
}
|
|
|
|
|
2002-06-28 00:18:32 +00:00
|
|
|
print "OK, now running sanity checks.<p>\n";
|
1999-10-11 17:14:32 +00:00
|
|
|
|
2002-04-04 04:19:58 +00:00
|
|
|
# This one goes first, because if this is wrong, then the below tests
|
|
|
|
# will probably fail too
|
|
|
|
|
|
|
|
# This isn't extensible. Thats OK; we're not adding any more enum fields
|
|
|
|
Status("Checking for invalid enumeration values");
|
|
|
|
foreach my $field (("bug_severity", "bug_status", "op_sys",
|
|
|
|
"priority", "rep_platform", "resolution")) {
|
|
|
|
# undefined enum values in mysql are an empty string which equals 0
|
|
|
|
SendSQL("SELECT bug_id FROM bugs WHERE $field=0 ORDER BY bug_id");
|
|
|
|
my @invalid;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
push (@invalid, FetchOneColumn());
|
|
|
|
}
|
|
|
|
if (@invalid) {
|
|
|
|
Alert("Bug(s) found with invalid $field value: ".join(', ',@invalid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-22 09:21:35 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform referential (cross) checks
|
|
|
|
###########################################################################
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
CrossCheck("keyworddefs", "id",
|
|
|
|
["keywords", "keywordid"]);
|
|
|
|
|
|
|
|
CrossCheck("fielddefs", "fieldid",
|
|
|
|
["bugs_activity", "fieldid"]);
|
2001-09-10 15:20:11 +00:00
|
|
|
|
|
|
|
CrossCheck("attachments", "attach_id",
|
2002-09-28 18:42:54 +00:00
|
|
|
["flags", "attach_id"],
|
2001-09-10 15:20:11 +00:00
|
|
|
["bugs_activity", "attach_id"]);
|
|
|
|
|
2002-09-28 18:42:54 +00:00
|
|
|
CrossCheck("flagtypes", "id",
|
|
|
|
["flags", "type_id"]);
|
2000-01-23 04:37:40 +00:00
|
|
|
|
|
|
|
CrossCheck("bugs", "bug_id",
|
|
|
|
["bugs_activity", "bug_id"],
|
2002-09-22 17:15:13 +00:00
|
|
|
["bug_group_map", "bug_id"],
|
2000-01-23 04:37:40 +00:00
|
|
|
["attachments", "bug_id"],
|
|
|
|
["cc", "bug_id"],
|
|
|
|
["longdescs", "bug_id"],
|
|
|
|
["dependencies", "blocked"],
|
|
|
|
["dependencies", "dependson"],
|
|
|
|
["votes", "bug_id"],
|
2001-09-10 15:20:11 +00:00
|
|
|
["keywords", "bug_id"],
|
|
|
|
["duplicates", "dupe_of", "dupe"],
|
|
|
|
["duplicates", "dupe", "dupe_of"]);
|
2000-01-23 04:37:40 +00:00
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
CrossCheck("groups", "id",
|
|
|
|
["bug_group_map", "group_id"],
|
|
|
|
["group_group_map", "grantor_id"],
|
|
|
|
["group_group_map", "member_id"],
|
|
|
|
["user_group_map", "group_id"]);
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
CrossCheck("profiles", "userid",
|
2000-07-25 18:58:54 +00:00
|
|
|
["bugs", "reporter", "bug_id"],
|
|
|
|
["bugs", "assigned_to", "bug_id"],
|
|
|
|
["bugs", "qa_contact", "bug_id", ["0"]],
|
|
|
|
["attachments", "submitter_id", "bug_id"],
|
|
|
|
["bugs_activity", "who", "bug_id"],
|
|
|
|
["cc", "who", "bug_id"],
|
|
|
|
["votes", "who", "bug_id"],
|
|
|
|
["longdescs", "who", "bug_id"],
|
2001-09-10 15:20:11 +00:00
|
|
|
["logincookies", "userid"],
|
2001-02-22 18:11:29 +00:00
|
|
|
["namedqueries", "userid"],
|
2001-09-10 15:20:11 +00:00
|
|
|
["watch", "watcher"],
|
|
|
|
["watch", "watched"],
|
|
|
|
["tokens", "userid"],
|
2002-08-12 05:43:05 +00:00
|
|
|
["components", "initialowner", "name"],
|
2002-09-22 17:15:13 +00:00
|
|
|
["user_group_map", "user_id"],
|
2002-08-12 05:43:05 +00:00
|
|
|
["components", "initialqacontact", "name", ["0"]]);
|
2000-01-23 04:37:40 +00:00
|
|
|
|
2002-08-12 05:43:05 +00:00
|
|
|
CrossCheck("products", "id",
|
|
|
|
["bugs", "product_id", "bug_id"],
|
|
|
|
["components", "product_id", "name"],
|
|
|
|
["milestones", "product_id", "value"],
|
|
|
|
["versions", "product_id", "value"],
|
2002-09-28 18:42:54 +00:00
|
|
|
["flagtypes", "product_id", "name"]);
|
2001-09-10 15:20:11 +00:00
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
DateCheck("groups", "last_changed");
|
|
|
|
DateCheck("profiles", "refreshed_when");
|
2000-01-18 14:26:16 +00:00
|
|
|
|
1999-03-11 16:30:54 +00:00
|
|
|
|
2002-05-22 09:21:35 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform product specific field checks
|
|
|
|
###########################################################################
|
1999-03-11 16:30:54 +00:00
|
|
|
|
1999-03-05 17:55:45 +00:00
|
|
|
Status("Checking version/products");
|
|
|
|
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("select distinct product_id, version from bugs");
|
1999-03-05 17:55:45 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my @copy = @row;
|
|
|
|
push(@checklist, \@copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $ref (@checklist) {
|
2002-08-12 05:43:05 +00:00
|
|
|
my ($product_id, $version) = (@$ref);
|
|
|
|
SendSQL("select count(*) from versions where product_id = $product_id and value = " . SqlQuote($version));
|
1999-03-05 17:55:45 +00:00
|
|
|
if (FetchOneColumn() != 1) {
|
2002-08-12 05:43:05 +00:00
|
|
|
Alert("Bug(s) found with invalid product ID/version: $product_id/$version");
|
1999-03-05 17:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-21 16:47:06 +00:00
|
|
|
# Adding check for Target Milestones / products - matthew@zeroknowledge.com
|
|
|
|
Status("Checking milestone/products");
|
|
|
|
|
|
|
|
@checklist = ();
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("select distinct product_id, target_milestone from bugs");
|
2000-03-21 16:47:06 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my @copy = @row;
|
|
|
|
push(@checklist, \@copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $ref (@checklist) {
|
2002-08-12 05:43:05 +00:00
|
|
|
my ($product_id, $milestone) = (@$ref);
|
|
|
|
SendSQL("SELECT count(*) FROM milestones WHERE product_id = $product_id AND value = " . SqlQuote($milestone));
|
2000-03-21 16:47:06 +00:00
|
|
|
if(FetchOneColumn() != 1) {
|
2002-08-12 05:43:05 +00:00
|
|
|
Alert("Bug(s) found with invalid product ID/milestone: $product_id/$milestone");
|
2000-03-21 16:47:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-10 15:20:11 +00:00
|
|
|
Status("Checking default milestone/products");
|
|
|
|
|
|
|
|
@checklist = ();
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("select id, defaultmilestone from products");
|
2001-09-10 15:20:11 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my @copy = @row;
|
|
|
|
push(@checklist, \@copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $ref (@checklist) {
|
2002-08-12 05:43:05 +00:00
|
|
|
my ($product_id, $milestone) = (@$ref);
|
|
|
|
SendSQL("SELECT count(*) FROM milestones WHERE product_id = $product_id AND value = " . SqlQuote($milestone));
|
2001-09-10 15:20:11 +00:00
|
|
|
if(FetchOneColumn() != 1) {
|
2002-08-12 05:43:05 +00:00
|
|
|
Alert("Product(s) found with invalid default milestone: $product_id/$milestone");
|
2001-09-10 15:20:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-03 22:55:36 +00:00
|
|
|
|
|
|
|
Status("Checking components/products");
|
|
|
|
|
1999-03-05 17:55:45 +00:00
|
|
|
@checklist = ();
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("select distinct product_id, component_id from bugs");
|
1999-03-03 22:55:36 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my @copy = @row;
|
|
|
|
push(@checklist, \@copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $ref (@checklist) {
|
2002-08-12 05:43:05 +00:00
|
|
|
my ($product_id, $component_id) = (@$ref);
|
|
|
|
SendSQL("select count(*) from components where product_id = $product_id and id = $component_id");
|
1999-03-03 22:55:36 +00:00
|
|
|
if (FetchOneColumn() != 1) {
|
2002-08-12 05:43:05 +00:00
|
|
|
Alert(qq{Bug(s) found with invalid product/component ID: $product_id/$component_id});
|
1999-03-03 22:55:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-22 09:21:35 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform login checks
|
|
|
|
###########################################################################
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
Status("Checking profile logins");
|
1998-09-01 01:20:36 +00:00
|
|
|
|
2000-01-22 22:19:05 +00:00
|
|
|
my $emailregexp = Param("emailregexp");
|
2000-07-25 18:58:54 +00:00
|
|
|
$emailregexp =~ s/'/\\'/g;
|
2000-01-23 04:37:40 +00:00
|
|
|
SendSQL("SELECT userid, login_name FROM profiles " .
|
2000-07-25 18:58:54 +00:00
|
|
|
"WHERE login_name NOT REGEXP '" . $emailregexp . "'");
|
1998-09-01 01:20:36 +00:00
|
|
|
|
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
while (my ($id,$email) = (FetchSQLData())) {
|
|
|
|
Alert "Bad profile email address, id=$id, <$email>."
|
|
|
|
}
|
1998-09-01 01:20:36 +00:00
|
|
|
|
2002-05-22 09:21:35 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform vote/keyword cache checks
|
|
|
|
###########################################################################
|
1998-09-01 01:20:36 +00:00
|
|
|
|
2000-01-23 04:37:40 +00:00
|
|
|
SendSQL("SELECT bug_id,votes,keywords FROM bugs " .
|
|
|
|
"WHERE votes != 0 OR keywords != ''");
|
1998-09-01 01:20:36 +00:00
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
my %votes;
|
1998-09-15 21:49:26 +00:00
|
|
|
my %bugid;
|
2000-01-17 11:38:41 +00:00
|
|
|
my %keyword;
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
2000-01-23 04:37:40 +00:00
|
|
|
my($id, $v, $k) = (@row);
|
1999-10-11 17:14:32 +00:00
|
|
|
if ($v != 0) {
|
|
|
|
$votes{$id} = $v;
|
|
|
|
}
|
2000-01-17 11:38:41 +00:00
|
|
|
if ($k) {
|
|
|
|
$keyword{$id} = $k;
|
|
|
|
}
|
1999-10-11 17:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Status("Checking cached vote counts");
|
|
|
|
SendSQL("select bug_id, sum(count) from votes group by bug_id");
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id, $v) = (@row);
|
|
|
|
if ($v <= 0) {
|
|
|
|
Alert("Bad vote sum for bug $id");
|
|
|
|
} else {
|
|
|
|
if (!defined $votes{$id} || $votes{$id} != $v) {
|
|
|
|
AlertBadVoteCache($id);
|
|
|
|
}
|
|
|
|
delete $votes{$id};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach my $id (keys %votes) {
|
|
|
|
AlertBadVoteCache($id);
|
1998-09-01 01:20:36 +00:00
|
|
|
}
|
|
|
|
|
1999-10-11 17:14:32 +00:00
|
|
|
if ($offervotecacherebuild) {
|
|
|
|
print qq{<a href="sanitycheck.cgi?rebuildvotecache=1">Click here to rebuild the vote cache</a><p>\n};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-17 11:38:41 +00:00
|
|
|
Status("Checking keywords table");
|
|
|
|
|
|
|
|
my %keywordids;
|
|
|
|
SendSQL("SELECT id, name FROM keyworddefs");
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id, $name) = (@row);
|
|
|
|
if ($keywordids{$id}) {
|
|
|
|
Alert("Duplicate entry in keyworddefs for id $id");
|
|
|
|
}
|
|
|
|
$keywordids{$id} = 1;
|
2000-01-19 19:26:37 +00:00
|
|
|
if ($name =~ /[\s,]/) {
|
2000-01-17 11:38:41 +00:00
|
|
|
Alert("Bogus name in keyworddefs for id $id");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id, keywordid FROM keywords ORDER BY bug_id, keywordid");
|
|
|
|
my $lastid;
|
|
|
|
my $lastk;
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id, $k) = (@row);
|
|
|
|
if (!$keywordids{$k}) {
|
|
|
|
Alert("Bogus keywordids $k found in keywords table");
|
|
|
|
}
|
|
|
|
if (defined $lastid && $id eq $lastid && $k eq $lastk) {
|
|
|
|
Alert("Duplicate keyword ids found in bug " . BugLink($id));
|
|
|
|
}
|
|
|
|
$lastid = $id;
|
|
|
|
$lastk = $k;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status("Checking cached keywords");
|
|
|
|
|
|
|
|
my %realk;
|
|
|
|
|
|
|
|
if (exists $::FORM{'rebuildkeywordcache'}) {
|
|
|
|
SendSQL("LOCK TABLES bugs write, keywords read, keyworddefs read");
|
|
|
|
}
|
|
|
|
|
|
|
|
SendSQL("SELECT keywords.bug_id, keyworddefs.name " .
|
2001-09-10 14:12:10 +00:00
|
|
|
"FROM keywords, keyworddefs, bugs " .
|
2000-01-17 11:38:41 +00:00
|
|
|
"WHERE keyworddefs.id = keywords.keywordid " .
|
2001-09-10 14:12:10 +00:00
|
|
|
" AND keywords.bug_id = bugs.bug_id " .
|
2000-01-17 11:38:41 +00:00
|
|
|
"ORDER BY keywords.bug_id, keyworddefs.name");
|
|
|
|
|
|
|
|
my $lastb;
|
|
|
|
my @list;
|
|
|
|
while (1) {
|
|
|
|
my ($b, $k) = (FetchSQLData());
|
|
|
|
if (!defined $b || $b ne $lastb) {
|
|
|
|
if (@list) {
|
|
|
|
$realk{$lastb} = join(', ', @list);
|
|
|
|
}
|
|
|
|
if (!$b) {
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
$lastb = $b;
|
|
|
|
@list = ();
|
|
|
|
}
|
|
|
|
push(@list, $k);
|
|
|
|
}
|
|
|
|
|
2001-09-03 01:08:05 +00:00
|
|
|
@badbugs = ();
|
|
|
|
|
2000-01-17 11:38:41 +00:00
|
|
|
foreach my $b (keys(%keyword)) {
|
|
|
|
if (!exists $realk{$b} || $realk{$b} ne $keyword{$b}) {
|
2001-09-03 01:08:05 +00:00
|
|
|
push(@badbugs, $b);
|
2000-01-17 11:38:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach my $b (keys(%realk)) {
|
|
|
|
if (!exists $keyword{$b}) {
|
2001-09-03 01:08:05 +00:00
|
|
|
push(@badbugs, $b);
|
2000-01-17 11:38:41 +00:00
|
|
|
}
|
|
|
|
}
|
2001-09-03 01:08:05 +00:00
|
|
|
if (@badbugs) {
|
|
|
|
@badbugs = sort {$a <=> $b} @badbugs;
|
2000-01-17 11:38:41 +00:00
|
|
|
Alert("Bug(s) found with incorrect keyword cache: " .
|
2001-09-03 01:08:05 +00:00
|
|
|
join(', ', @badbugs));
|
2000-01-17 11:38:41 +00:00
|
|
|
if (exists $::FORM{'rebuildkeywordcache'}) {
|
|
|
|
Status("OK, now fixing keyword cache.");
|
2001-09-03 01:08:05 +00:00
|
|
|
foreach my $b (@badbugs) {
|
2000-01-17 11:38:41 +00:00
|
|
|
my $k = '';
|
|
|
|
if (exists($realk{$b})) {
|
|
|
|
$k = $realk{$b};
|
|
|
|
}
|
|
|
|
SendSQL("UPDATE bugs SET delta_ts = delta_ts, keywords = " .
|
|
|
|
SqlQuote($k) .
|
|
|
|
" WHERE bug_id = $b");
|
|
|
|
}
|
|
|
|
Status("Keyword cache fixed.");
|
|
|
|
} else {
|
|
|
|
print qq{<a href="sanitycheck.cgi?rebuildkeywordcache=1">Click here to rebuild the keyword cache</a><p>\n};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-05 15:18:12 +00:00
|
|
|
if (exists $::FORM{'rebuildkeywordcache'}) {
|
|
|
|
SendSQL("UNLOCK TABLES");
|
|
|
|
}
|
2000-01-17 11:38:41 +00:00
|
|
|
|
2001-09-03 01:08:05 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform duplicates table checks
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
Status("Checking duplicates table");
|
|
|
|
|
|
|
|
SendSQL("SELECT bugs.bug_id " .
|
2001-09-07 01:32:13 +00:00
|
|
|
"FROM bugs, duplicates " .
|
2001-09-03 01:08:05 +00:00
|
|
|
"WHERE bugs.resolution != 'DUPLICATE' " .
|
2001-09-07 01:32:13 +00:00
|
|
|
" AND bugs.bug_id = duplicates.dupe " .
|
2001-09-03 01:08:05 +00:00
|
|
|
"ORDER BY bugs.bug_id");
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push (@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs) {
|
|
|
|
Alert("Bug(s) found on duplicates table that are not marked duplicate: " .
|
|
|
|
join(', ', @badbugs));
|
|
|
|
}
|
|
|
|
|
|
|
|
SendSQL("SELECT bugs.bug_id " .
|
|
|
|
"FROM bugs LEFT JOIN duplicates ON bugs.bug_id = duplicates.dupe " .
|
|
|
|
"WHERE bugs.resolution = 'DUPLICATE' AND duplicates.dupe IS NULL " .
|
|
|
|
"ORDER BY bugs.bug_id");
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push (@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs) {
|
|
|
|
Alert("Bug(s) found marked resolved duplicate and not on duplicates " .
|
|
|
|
"table: " . join(', ', @badbugs));
|
|
|
|
}
|
|
|
|
|
2001-09-19 15:06:43 +00:00
|
|
|
###########################################################################
|
|
|
|
# Perform status/resolution checks
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
Status("Checking statuses/resolutions");
|
|
|
|
|
|
|
|
my @open_states = map(SqlQuote($_), OpenStates());
|
|
|
|
my $open_states = join(', ', @open_states);
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id FROM bugs " .
|
|
|
|
"WHERE bug_status IN ($open_states) " .
|
|
|
|
"AND resolution != '' " .
|
|
|
|
"ORDER BY bug_id");
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs with open status and a resolution: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
}
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id FROM bugs " .
|
|
|
|
"WHERE bug_status NOT IN ($open_states) " .
|
|
|
|
"AND resolution = '' " .
|
|
|
|
"ORDER BY bug_id");
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs with non-open status and no resolution: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
}
|
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# Perform status/everconfirmed checks
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
Status("Checking statuses/everconfirmed");
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id FROM bugs " .
|
|
|
|
"WHERE bug_status = " . SqlQuote($::unconfirmedstate) . ' ' .
|
|
|
|
"AND everconfirmed = 1 " .
|
|
|
|
"ORDER BY bug_id");
|
2001-09-03 01:08:05 +00:00
|
|
|
|
2001-09-19 15:06:43 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs that are UNCONFIRMED but have everconfirmed set: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
}
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id FROM bugs " .
|
|
|
|
"WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') " .
|
|
|
|
"AND everconfirmed = 0 " .
|
|
|
|
"ORDER BY bug_id");
|
2000-01-17 11:38:41 +00:00
|
|
|
|
2001-09-19 15:06:43 +00:00
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs with confirmed status but don't have everconfirmed set: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
}
|
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# Perform vote/everconfirmed checks
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
Status("Checking votes/everconfirmed");
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id FROM bugs, products " .
|
2002-08-12 05:43:05 +00:00
|
|
|
"WHERE bugs.product_id = products.id " .
|
2001-09-19 15:06:43 +00:00
|
|
|
"AND bug_status = " . SqlQuote($::unconfirmedstate) . ' ' .
|
|
|
|
"AND votestoconfirm <= votes " .
|
|
|
|
"ORDER BY bug_id");
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs that have enough votes to be confirmed but haven't been: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
}
|
|
|
|
|
2002-03-03 22:06:20 +00:00
|
|
|
###########################################################################
|
|
|
|
# Unsent mail
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
Status("Checking for unsent mail");
|
|
|
|
|
|
|
|
@badbugs = ();
|
|
|
|
|
|
|
|
SendSQL("SELECT bug_id " .
|
|
|
|
"FROM bugs WHERE lastdiffed < delta_ts AND ".
|
|
|
|
"delta_ts < date_sub(now(), INTERVAL 30 minute) ".
|
|
|
|
"ORDER BY bug_id");
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
|
|
|
my ($id) = (@row);
|
|
|
|
push(@badbugs, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@badbugs > 0) {
|
|
|
|
Alert("Bugs that have changes but no mail sent for at least half an hour: " .
|
|
|
|
join (", ", @badbugs));
|
|
|
|
print("Run <code>processmail rescanall</code> to fix this<p>\n");
|
|
|
|
}
|
|
|
|
|
2001-09-19 15:06:43 +00:00
|
|
|
###########################################################################
|
|
|
|
# End
|
|
|
|
###########################################################################
|
1999-06-01 20:52:15 +00:00
|
|
|
|
|
|
|
Status("Sanity check completed.");
|
2000-01-14 22:35:49 +00:00
|
|
|
PutFooter();
|