/usr/lib/obs/server/bs_getbinariesproxy is in obs-server 2.7.4-2.
This file is owned by root:root, with mode 0o755.
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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | #!/usr/bin/perl -w
#
# Copyright (c) 2013 OBS Team
#
# 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
#
################################################################
#
# A little binary proxy to reduce reposerver load
#
BEGIN {
my ($wd) = $0 =~ m-(.*)/- ;
$wd ||= '.';
chdir($wd);
unshift @INC, "$wd/build";
unshift @INC, "$wd";
}
use XML::Structured ':bytes';
use POSIX;
use Digest::MD5 ();
use Data::Dumper;
use Storable ();
use Symbol;
use BSConfiguration;
use BSRPC ':https';
use BSServer;
use BSStdServer;
use BSUtil;
use Build;
use strict;
my @binsufs = qw{rpm deb pkg.tar.gz pkg.tar.xz};
my $binsufsre = join('|', map {"\Q$_\E"} @binsufs);
my $gettimeout = 3600;
my $port = 5254;
$port = $1 if $BSConfig::getbinariesproxyserver && $BSConfig::getbinariesproxyserver =~ /:(\d+)$/;
my $cachedir = "$BSConfig::bsdir/getbinariesproxycache";
my $cachesize = 1024 * 1024 * 1024; # default: 1G
$cachesize = $BSConfig::getbinariesproxyserver_cachesize * 1024 * 1024 if $BSConfig::getbinariesproxyserver_cachesize;
my $cachetmpdir = "$cachedir/tmp";
my $maxopen; # max number of fds we can open
sub set_maxopen() {
my $fd = POSIX::open('/dev/null', O_RDONLY);
die("cannot open /dev/null: $!\n") unless defined $fd;
my @fd = ($fd);
while (1) {
my $fd = POSIX::dup($fd[0]);
last unless defined $fd;
push @fd, $fd;
last if @fd >= 65536;
}
POSIX::close($_) for @fd;
$maxopen = @fd;
print "could open $maxopen file descriptors\n";
}
sub manage_cache {
my ($prunesize, $cacheold, $cachenew) = @_;
# get the lock
local *F;
BSUtil::lockopen(\*F, '+>>', "$cachedir/content", 1) || return;
my $content;
if (-s F) {
seek(F, 0, 0);
$content = Storable::fd_retrieve(\*F);
}
$content ||= [];
my %content = map {$_->[0] => $_->[1]} @$content;
# put cacheold, cachenew at the top
if ($cacheold && @$cacheold) {
splice(@$content, 0, 0, @$cacheold);
$content{$_->[0]} = $_->[1] for @$cacheold;
}
if ($cachenew) {
for my $c (reverse @$cachenew) {
my $path = pop(@$c);
my $cacheid = $c->[0];
my $cachefile = "$cachedir/".substr($cacheid, 0, 2)."/$cacheid";
mkdir_p("$cachedir/".substr($cacheid, 0, 2));
unlink("$cachefile.$$");
next unless link($path, "$cachefile.$$");
rename("$cachefile.$$", $cachefile) || die("rename $cachefile.$$ $cachefile: $!\n");
my $mpath = "$path.meta";
$mpath = "$1.meta" if $path =~ /^(.*)\.(?:$binsufsre)$/;
if (-s $mpath) {
unlink("$cachefile.meta.$$");
if (link($mpath, "$cachefile.meta.$$")) {
rename("$cachefile.meta.$$", "$cachefile.meta") || die("rename $cachefile.meta.$$ $cachefile.meta: $!\n");
} else {
unlink("$cachefile.meta");
}
} else {
unlink("$cachefile.meta");
}
unshift @$content, $c;
$content{$c->[0]} = $c->[1];
}
}
# prune cache
for my $c (@$content) {
if (!defined delete $content{$c->[0]}) {
$c = undef;
next;
}
$prunesize -= $c->[1];
if ($prunesize < 0) {
my $cacheid = $c->[0];
my $cachefile = "$cachedir/".substr($cacheid, 0, 2)."/$cacheid";
unlink($cachefile);
unlink("$cachefile.meta");
$c = undef;
next;
}
}
@$content = grep {defined $_} @$content;
Storable::nstore($content, "$cachedir/content.new");
rename("$cachedir/content.new", "$cachedir/content") || die("rename $cachedir/content.new $cachedir/content");
close F;
}
sub getbinaries {
my ($cgi, $projid, $repoid, $arch) = @_;
my $server = $cgi->{'server'};
my $nometa = $cgi->{'nometa'};
my $metaonly = $cgi->{'metaonly'};
die("nometa and metaonly?\n") if $nometa && $metaonly;
mkdir_p($cachedir);
mkdir_p($cachetmpdir);
set_maxopen() unless defined $maxopen;
my @binaries = split(',', $cgi->{'binaries'});
my %bv;
my @missingbvs;
for my $bin (@binaries) {
die("bad binary specification\n") unless $bin =~ /^(?:([0-9a-f]{32})([0-9a-f]{32})?:(\d*):(\S+))?\@(.+)/s;
$bin = $5;
if (!$1) {
push @missingbvs, $bin;
next;
}
$bv{$bin}->{'hdrmd5'} = $1;
$bv{$bin}->{'metamd5'} = $2 if $2;
$bv{$bin}->{'sizek'} = $3 || 0;
$bv{$bin}->{'name'} = "$bin.$4";
}
# get missing bvs from server
if (@missingbvs) {
print "missingbvs: @missingbvs\n";
my @args;
push @args, "project=$projid";
push @args, "repository=$repoid";
push @args, "arch=$arch";
push @args, "nometa" if $nometa;
push @args, "binaries=".join(',', @missingbvs);
my $bvl;
eval {
$bvl = BSRPC::rpc({
'uri' => "$server/getbinaryversions",
'timeout' => $gettimeout,
}, $BSXML::binaryversionlist, @args);
};
warn($@) if $@;
for (@{$bvl->{'binary'} || []}) {
if ($_->{'error'}) {
$bv{$_->{'name'}} = $_;
} else {
next unless $_->{'name'} =~ /(.*)\.(?:$binsufsre)$/;
$bv{$1} = $_;
}
}
}
my @cpio;
# check the cache
my $downloadsizek = 0;
my @cacheold;
my @cachenew;
my @downloadbins;
my $openfds = 0;
my $tmpprefix = $$.'_';
for my $bin (@binaries) {
my $bv = $bv{$bin};
if (!$bv) {
push @downloadbins, $bin;
next;
}
if ($bv->{'error'}) {
push @cpio, {'name' => $bin, 'error' => $bv->{'error'}};
next;
}
my $cacheid = Digest::MD5::md5_hex("$projid/$repoid/$arch/$bv->{'hdrmd5'}");
my $cachefile = "$cachedir/".substr($cacheid, 0, 2)."/$cacheid";
my $usecache;
my @s;
my $binfd;
my $metafd;
if ($metaonly) {
$usecache = 1;
} else {
my $fd = gensym;
my $tmpname = "$cachetmpdir/$tmpprefix$bv->{'name'}";
if (link($cachefile, $tmpname)) {
# check hdrmd5 to be sure we got the right bin
my $id;
eval {
$id = Build::queryhdrmd5($tmpname);
};
if ($id && $id eq $bv->{'hdrmd5'} && open($fd, '<', $tmpname)) {
$binfd = $fd;
$usecache = 1;
unlink($tmpname);
@s = stat($fd);
die unless @s;
} else {
unlink($tmpname);
}
}
}
if ($usecache && !$nometa && $bv->{'metamd5'}) {
my $fd = gensym;
if (open($fd, '<', "$cachefile.meta")) {
my $ctx = Digest::MD5->new;
$ctx->addfile($fd);
seek($fd, 0, 0) || die;
if ($ctx->hexdigest() ne $bv->{'metamd5'}) {
$usecache = undef;
close $fd;
close $binfd unless $metaonly;
} else {
$metafd = $fd;
}
} else {
close $binfd unless $metaonly;
$usecache = undef;
}
}
@s = stat($cachefile) if !@s && $usecache;
push @cacheold, [$cacheid, $s[7]] if @s && $usecache;
if (!$usecache) {
push @downloadbins, $bin;
$downloadsizek += $bv->{'sizek'};
} else {
push @cpio, {'name' => $bv->{'name'}, 'filename' => $binfd} if $binfd;
push @cpio, {'name' => "$bin.meta", 'filename' => $metafd} if $metafd;
$openfds++ if $binfd;
$openfds++ if $metafd;
}
die("too many files to send\n") if $openfds + 16 > $maxopen; # sorry
}
# get files not in cache
if (@downloadbins) {
print "downloading: @downloadbins\n";
my $toomany;
my %downloadbins = map {$_ => 1} @downloadbins;
if ($downloadsizek * 1024 * 100 > $cachesize) {
manage_cache($cachesize - $downloadsizek * 1024);
}
my @args;
push @args, "project=$projid";
push @args, "repository=$repoid";
push @args, "arch=$arch";
my $res = BSRPC::rpc({
'uri' => "$server/getbinaries",
'directory' => $cachetmpdir,
'map' => $tmpprefix,
'timeout' => $gettimeout,
'receiver' => \&BSHTTP::cpio_receiver,
}, undef, @args, 'binaries='.join(',', @downloadbins));
my %havemeta;
for my $r (@$res) {
if ($r->{'name'} =~ /^\Q$tmpprefix\E(.*)\.($binsufsre)$/) {
my $n = $1;
my $suf = $2;
next unless $downloadbins{$n};
my @s = stat("$cachetmpdir/$r->{'name'}");
die unless @s;
my $id = Build::queryhdrmd5("$cachetmpdir/$r->{'name'}");
$r->{'hdrmd5'} = $id;
if (!$metaonly && !$toomany) {
my $fd = gensym;
open($fd, '<', "$cachetmpdir/$r->{'name'}") || die;
push @cpio, {'name' => "$n.$suf", 'filename' => $fd};
$openfds++;
}
my $cacheid = Digest::MD5::md5_hex("$projid/$repoid/$arch/$id");
push @cachenew, [$cacheid, $s[7], "$cachetmpdir/$r->{'name'}"];
} elsif ($r->{'name'} =~ /^\Q$tmpprefix\E(.*)\.meta$/) {
my $n = $1;
next unless $downloadbins{$n};
if (!$nometa && !$toomany) {
my $fd = gensym;
open($fd, '<', "$cachetmpdir/$r->{'name'}") || die;
push @cpio, {'name' => "$n.meta", 'filename' => $fd};
$openfds++;
}
}
$toomany = 1 if $openfds + 16 > $maxopen; # sorry
}
manage_cache($cachesize, \@cacheold, \@cachenew);
# clean up
for my $r (@$res) {
unlink("$cachetmpdir/$r->{'name'}");
}
die("too many files to send\n") if $toomany;
}
BSServer::reply_cpio(\@cpio);
return undef;
}
sub hello {
my ($cgi) = @_;
return "<hello name=\"Getbinaries Proxy Server\" />\n";
}
my $dispatches = [
'/' => \&hello,
'/getbinaries $project $repository $arch binaries: nometa:bool? metaonly:bool? server:' => \&getbinaries,
];
my $conf = {
'port' => $port,
'dispatches' => $dispatches,
'setkeepalive' => 1,
'maxchild' => 40,
};
set_maxopen() unless @ARGV && ($ARGV[0] eq '--test' || $ARGV[0] eq '--stop' || $ARGV[0] eq '--exit');
BSStdServer::server('bs_getbinariesproxy', \@ARGV, $conf);
|