Error.pm 7.43 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# 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.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Bradley Baetz <bbaetz@acm.org>
21
#                 Marc Schumann <wurblzap@gmail.com>
22
#                 Frédéric Buclin <LpSolit@gmail.com>
23 24 25

package Bugzilla::Error;

26
use strict;
27 28
use base qw(Exporter);

29
@Bugzilla::Error::EXPORT = qw(ThrowCodeError ThrowTemplateError ThrowUserError);
30

31
use Bugzilla::Constants;
32
use Bugzilla::WebService::Constants;
33
use Bugzilla::Util;
34
use Date::Format;
35

36 37 38 39 40 41 42 43 44 45 46
# We cannot use $^S to detect if we are in an eval(), because mod_perl
# already eval'uates everything, so $^S = 1 in all cases under mod_perl!
sub _in_eval {
    my $in_eval = 0;
    for (my $stack = 1; my $sub = (caller($stack))[3]; $stack++) {
        last if $sub =~ /^ModPerl/;
        $in_eval = 1 if $sub =~ /^\(eval\)/;
    }
    return $in_eval;
}

47
sub _throw_error {
48
    my ($name, $error, $vars) = @_;
49
    my $dbh = Bugzilla->dbh;
50 51 52 53
    $vars ||= {};

    $vars->{error} = $error;

54 55
    # Make sure any transaction is rolled back (if supported).
    # If we are within an eval(), do not roll back transactions as we are
56
    # eval'uating some test on purpose.
57
    $dbh->bz_rollback_transaction() if ($dbh->bz_in_transaction() && !_in_eval());
58

59
    my $datadir = bz_locations()->{'datadir'};
60 61
    # If a writable $datadir/errorlog exists, log error details there.
    if (-w "$datadir/errorlog") {
62 63 64 65 66 67
        require Data::Dumper;
        my $mesg = "";
        for (1..75) { $mesg .= "-"; };
        $mesg .= "\n[$$] " . time2str("%D %H:%M:%S ", time());
        $mesg .= "$name $error ";
        $mesg .= "$ENV{REMOTE_ADDR} " if $ENV{REMOTE_ADDR};
68
        $mesg .= Bugzilla->user->login;
69
        $mesg .= (' actually ' . Bugzilla->sudoer->login) if Bugzilla->sudoer;
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        $mesg .= "\n";
        my %params = Bugzilla->cgi->Vars;
        $Data::Dumper::Useqq = 1;
        for my $param (sort keys %params) {
            my $val = $params{$param};
            # obscure passwords
            $val = "*****" if $param =~ /password/i;
            # limit line length
            $val =~ s/^(.{512}).*$/$1\[CHOP\]/;
            $mesg .= "[$$] " . Data::Dumper->Dump([$val],["param($param)"]);
        }
        for my $var (sort keys %ENV) {
            my $val = $ENV{$var};
            $val = "*****" if $val =~ /password|http_pass/i;
            $mesg .= "[$$] " . Data::Dumper->Dump([$val],["env($var)"]);
        }
86
        open(ERRORLOGFID, ">>$datadir/errorlog");
87 88 89 90
        print ERRORLOGFID "$mesg\n";
        close ERRORLOGFID;
    }

91
    my $template = Bugzilla->template;
92 93 94 95 96
    if (Bugzilla->error_mode == ERROR_MODE_WEBPAGE) {
        print Bugzilla->cgi->header();
        $template->process($name, $vars)
          || ThrowTemplateError($template->error());
    }
97
    else {
98 99 100
        my $message;
        $template->process($name, $vars, \$message)
          || ThrowTemplateError($template->error());
101 102 103 104 105 106 107 108 109 110 111
        if (Bugzilla->error_mode == ERROR_MODE_DIE) {
            die("$message\n");
        }
        elsif (Bugzilla->error_mode == ERROR_MODE_DIE_SOAP_FAULT) {
            my $code = WS_ERROR_CODE->{$error};
            if (!$code) {
                $code = ERROR_UNKNOWN_FATAL if $name =~ /code/i;
                $code = ERROR_UNKNOWN_TRANSIENT if $name =~ /user/i;
            }
            die SOAP::Fault->faultcode($code)->faultstring($message);
        }
112
    }
113 114 115
    exit;
}

116 117 118 119 120 121 122 123 124 125
sub ThrowUserError {
    _throw_error("global/user-error.html.tmpl", @_);
}

sub ThrowCodeError {
    _throw_error("global/code-error.html.tmpl", @_);
}

sub ThrowTemplateError {
    my ($template_err) = @_;
126
    my $dbh = Bugzilla->dbh;
127

128 129
    # Make sure the transaction is rolled back (if supported).
    $dbh->bz_rollback_transaction() if $dbh->bz_in_transaction();
130

131
    my $vars = {};
132
    if (Bugzilla->error_mode == ERROR_MODE_DIE) {
133 134
        die("error: template error: $template_err");
    }
135 136 137 138 139 140 141 142 143

    $vars->{'template_error_msg'} = $template_err;
    $vars->{'error'} = "template_error";

    my $template = Bugzilla->template;

    # Try a template first; but if this one fails too, fall back
    # on plain old print statements.
    if (!$template->process("global/code-error.html.tmpl", $vars)) {
144 145 146
        my $maintainer = Bugzilla->params->{'maintainer'};
        my $error = html_quote($vars->{'template_error_msg'});
        my $error2 = html_quote($template->error());
147 148 149 150 151 152 153 154
        print <<END;
        <tt>
          <p>
            Bugzilla has suffered an internal error. Please save this page and 
            send it to $maintainer with details of what you were doing at the 
            time this message appeared.
          </p>
          <script type="text/javascript"> <!--
155 156 157 158
          document.write("<p>URL: " + 
                          document.location.href.replace(/&/g,"&amp;")
                                                .replace(/</g,"&lt;")
                                                .replace(/>/g,"&gt;") + "</p>");
159 160 161 162 163 164 165 166 167 168 169
          // -->
          </script>
          <p>Template->process() failed twice.<br>
          First error: $error<br>
          Second error: $error2</p>
        </tt>
END
    }
    exit;
}

170 171 172 173 174 175 176 177 178 179 180 181 182 183
1;

__END__

=head1 NAME

Bugzilla::Error - Error handling utilities for Bugzilla

=head1 SYNOPSIS

  use Bugzilla::Error;

  ThrowUserError("error_tag",
                 { foo => 'bar' });
184

185 186 187 188
=head1 DESCRIPTION

Various places throughout the Bugzilla codebase need to report errors to the
user. The C<Throw*Error> family of functions allow this to be done in a
189
generic and localizable manner.
190

191 192 193 194
These functions automatically unlock the database tables, if there were any
locked. They will also roll back the transaction, if it is supported by
the underlying DB.

195 196 197 198 199 200 201 202 203 204 205
=head1 FUNCTIONS

=over 4

=item C<ThrowUserError>

This function takes an error tag as the first argument, and an optional hashref
of variables as a second argument. These are used by the
I<global/user-error.html.tmpl> template to format the error, using the passed
in variables as required.

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
=item C<ThrowCodeError>

This function is used when an internal check detects an error of some sort.
This usually indicates a bug in Bugzilla, although it can occur if the user
manually constructs urls without correct parameters.

This function's behaviour is similar to C<ThrowUserError>, except that the
template used to display errors is I<global/code-error.html.tmpl>. In addition
if the hashref used as the optional second argument contains a key I<variables>
then the contents of the hashref (which is expected to be another hashref) will
be displayed after the error message, as a debugging aid.

=item C<ThrowTemplateError>

This function should only be called if a C<template-<gt>process()> fails.
It tries another template first, because often one template being
broken or missing doesn't mean that they all are. But it falls back to
a print statement as a last-ditch error.

225 226 227 228 229
=back

=head1 SEE ALSO

L<Bugzilla|Bugzilla>