/usr/lib/obs/server/BSDispatch.pm is in obs-server 2.7.1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | #
# Copyright (c) 2006, 2007 Michael Schroeder, Novell Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see the file COPYING); if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#
################################################################
#
# request dispatcher
#
# parses the cgi data and calls the matching function from the
# dispatch table
#
package BSDispatch;
sub parse_cgi {
# $req:
# the request data
# $multis:
# hash of cgi names
# * key does not exist - multiple cgi values are not allowed
# * value is undef - multiple cgi values are put into array
# * value is a string - used as separator to join multiple cgi values
# $singles:
# hash of cgi names
# * key exists and multis->key does not exist - multiple cgi values are not allowed
my ($req, $multis, $singles) = @_;
$multis ||= {};
$singles ||= {'*' => undef};
my %cgi;
my %unknown;
my @query_string = split('&', $req->{'query'});
while (@query_string) {
my ($name, $value) = split('=', shift(@query_string), 2);
next unless defined $name && $name ne '';
# convert from URI format
$name =~ tr/+/ /;
$name =~ s/%([a-fA-F0-9]{2})/chr(hex($1))/ge;
if (defined($value)) {
# convert from URI format
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9]{2})/chr(hex($1))/ge;
} else {
$value = 1; # assume boolean
}
if (exists($multis->{$name})) {
if (defined($multis->{$name})) {
$cgi{$name} = exists($cgi{$name}) ? "$cgi{$name}$multis->{$name}$value" : $value;
} else {
push @{$cgi{$name}}, $value;
}
} elsif (exists($singles->{$name})) {
die("parameter '$name' set multiple times\n") if exists $cgi{$name};
$cgi{$name} = $value;
} elsif (exists($multis->{'*'})) {
if (defined($multis->{'*'})) {
$cgi{$name} = exists($cgi{$name}) ? "$cgi{$name}$multis->{'*'}$value" : $value;
} else {
push @{$cgi{$name}}, $value;
}
} elsif (exists($singles->{'*'})) {
die("parameter '$name' set multiple times\n") if exists $cgi{$name};
$cgi{$name} = $value;
} else {
$unknown{$name} = 1;
}
}
die("unknown parameter '".join("', '", sort keys %unknown)."'\n") if %unknown;
return \%cgi;
}
# return only the singles from a query
sub parse_cgi_singles {
my ($req) = @_;
my %cgi;
for my $qu (split('&', $req->{'query'})) {
my ($name, $value) = split('=', $qu, 2);
$name =~ tr/+/ /;
$name =~ s/%([a-fA-F0-9]{2})/chr(hex($1))/ge;
if (exists $cgi{$name}) {
$cgi{$name} = undef;
next;
}
$value = 1 unless defined $value;
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9]{2})/chr(hex($1))/ge;
$cgi{$name} = $value;
}
delete $cgi{$_} for grep {!defined($cgi{$_})} keys %cgi;
return \%cgi;
}
sub compile {
my ($conf) = @_;
die("no dispatches configured\n") unless $conf->{'dispatches'};
my @disps = @{$conf->{'dispatches'}};
my $verifiers = $conf->{'verifiers'} || {};
my $callfunction = $conf->{'dispatches_call'};
my @out;
while (@disps) {
my ($p, $f) = splice(@disps, 0, 2);
# split authorization part from path
my $needsauth;
if ($p =~ /^!([^\/\s]*)\s*(.*?)$/) {
$needsauth = $1 || 'auth';
$p = $2;
}
# split cgis from path
my @cgis = split(' ', $p);
s/%([a-fA-F0-9]{2})/chr(hex($1))/ge for @cgis;
$p = shift @cgis;
# create the path regexp
my $code = '';
my $code2 = '';
my $num = 1;
my @args;
my @p = split('/', $p, -1);
for my $pp (@p) {
if ($pp =~ /^\$(.*)$/) {
my $var = $1;
my $vartype = $var;
($var, $vartype) = ($1, $2) if $var =~ /^(.*):(.*)/;
die("no verifier for $vartype\n") unless $vartype eq '' || $verifiers->{$vartype};
$pp = '([^\/]*)';
$code .= "\$cgi->{'$var'} = \$$num;\n";
$code2 .= "\$verifiers->{'$vartype'}->(\$cgi->{'$var'});\n" if $vartype ne '';
push @args, $var;
$num++;
} else {
$pp = "\Q$pp\E";
}
}
# fixup method matching
$p[0] .= ".*" if @p == 1 && $p[0] =~ /^(.*?)\\:$/s; # just the method, no path
if ($p[0] =~ /^(.*?)\\:/s) {
my $m = $1;
$p[0] =~ s/^.*?\\:/(?:$m):/s if $m =~ s/\\\|/|/g;
$p[0] = "[^:]*$p[0]" if $m eq ''; # any method
} else {
$p[0] = "(?:GET|HEAD|POST):$p[0]"; # our default
}
# implement ... and $... hack
$p[-1] = '.*' if $p[-1] eq '\.\.\.';
$p[-1] = '(.*)' if $p[-1] eq '([^\/]*)' && $args[-1] eq '...';
my $pathre = '^'.join('/', @p).'$'; # anchor
my $multis = '';
my $singles = '';
my $cgisingles;
for my $var (@cgis) {
my ($arg, $quant) = (0, '');
$arg = 1 if $var =~ s/^\$//;
$quant = $1 if $var =~ s/([+*?])$//;
if ($var =~ /^(.*)=(.*)$/) {
$cgisingles ||= {};
$cgisingles->{$1} = $2;
die("fixed parameter '$1' must not have a quantifier\n") if $quant;
($var, $quant) = ("$1:", '?');
}
my $vartype = $var;
($var, $vartype) = ($1, $2) if $var =~ /^(.*):(.*)/;
die("no verifier for $vartype\n") unless $vartype eq '' || $verifiers->{$vartype};
$code2 .= "die(\"parameter '$var' is missing\\n\") unless exists \$cgi->{'$var'};\n" if $quant ne '*' && $quant ne '?';
if ($quant eq '+' || $quant eq '*') {
$multis .= ", '$var' => undef";
$code2 .= "\$verifiers->{'$vartype'}->(\$_) for \@{\$cgi->{'$var'} || []};\n" if $vartype ne '';
} else {
$singles .= ", '$var' => undef";
$code2 .= "\$verifiers->{'$vartype'}->(\$cgi->{'$var'}) if exists \$cgi->{'$var'};\n" if $vartype ne '';
}
push @args, $var if $arg;
}
$multis = substr($multis, 2) if $multis;
$singles = substr($singles, 2) if $singles;
$code = "my \$cgi = parse_cgi(\$req, {$multis}, {$singles});\n$code";
$code2 .= "my \@args;\n";
$code2 .= "push \@args, \$cgi->{'$_'};\n" for @args;
if ($callfunction) {
$code .= "$code2\$callfunction->(\$f, \$cgi, \@args);\n";
} else {
$code .= "$code2\$f->(\$cgi, \@args);\n";
}
my $cpld = [ qr/$pathre/ ];
if ($f) {
eval "\$cpld->[1] = sub {my (\$conf, \$req) = \@_;\n$code};";
die("compile_dispatches: $@\n") if $@;
}
$cpld->[2] = $cgisingles if $cgisingles;
$cpld->[3] = $needsauth eq '-' ? undef : $needsauth if $needsauth;
push @out, $cpld;
}
$conf->{'compiled_dispatches'} = \@out;
}
sub dispatch {
my ($conf, $req) = @_;
my $disps = $conf->{'compiled_dispatches'};
if (!$disps) {
die("500 no dispatches configured\n") unless $conf->{'dispatches'};
die("500 dispatches are not compiled\n");
}
my @disps = @$disps;
my $path = "$req->{'action'}:$req->{'path'}";
if (1) {
# path is already urldecoded
die("400 path is not utf-8\n") unless BSUtil::checkutf8($path);
my $q = $req->{'query'};
$q =~ s/%([a-fA-F0-9]{2})/chr(hex($1))/ge if defined($q) && $q =~ /\%/s;
die("400 query string is not utf-8\n") unless BSUtil::checkutf8($q);
}
my $ppath = $path;
# strip trailing slash
$ppath =~ s/\/+$// if substr($ppath, -1, 1) eq '/' && $ppath !~ /^[A-Z]*:\/$/s;
my $auth;
my $cgisingles;
for my $p (@disps) {
next unless $ppath =~ /$p->[0]/;
if ($p->[2]) {
$cgisingles ||= parse_cgi_singles($req);
next if grep {($cgisingles->{$_} || '') ne $p->[2]->{$_}} keys %{$p->[2]};
}
$auth = $p->[3] if @$p > 3;
next unless $p->[1];
if ($auth) {
die("500 authorize method is not defined\n") unless $conf->{'authorize'};
my @r = $conf->{'authorize'}->($conf, $req, $auth);
return @r if @r;
}
return $p->[1]->($conf, $req);
}
die("400 unknown request: $path\n");
}
1;
|