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
|
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2015 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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; if not, see <http://www.gnu.org/licenses/>.
package commands;
use strict;
use warnings;
require IPC::System::Simple;
use Try::Tiny;
use Socket;
use POSIX qw(_exit);
use autodie qw(:all);
use myjsonrpc;
BEGIN {
# https://github.com/os-autoinst/openQA/issues/450
$ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}
# Automatically enables "strict", "warnings", "utf8" and Perl 5.10 features
use Mojolicious::Lite;
use Mojo::IOLoop;
use Mojo::Server::Daemon;
use File::Basename;
# a socket opened to isotovideo
my $isotovideo;
# borrowed from obs with permission from mls@suse.de to license as
# GPLv2+
sub _makecpiohead {
my ($name, $s) = @_;
return "07070100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000b00000000TRAILER!!!\0\0\0\0" if !$s;
# magic ino
my $h = "07070100000000";
# mode S_IFREG
$h .= sprintf("%08x", oct(100000) | $s->[2] & oct(777));
# uid gid nlink
$h .= "000000000000000000000001";
$h .= sprintf("%08x%08x", $s->[9], $s->[7]);
$h .= "00000000000000000000000000000000";
$h .= sprintf("%08x", length($name) + 1);
$h .= "00000000$name\0";
$h .= substr("\0\0\0\0", (length($h) & 3)) if length($h) & 3;
my $pad = '';
$pad = substr("\0\0\0\0", ($s->[7] & 3)) if $s->[7] & 3;
return ($h, $pad);
}
# send test data as cpio archive
sub _test_data_dir {
my ($self, $base) = @_;
$base .= '/' if $base !~ /\/$/;
$self->app->log->debug("Request for directory $base.");
return $self->reply->not_found unless -d $base;
$self->res->headers->content_type('application/x-cpio');
my $data = '';
for my $file (glob $base . '*') {
next unless -f $file;
my @s = stat _;
unless (@s) {
$self->app->log->error("error stating $file: $!");
next;
}
my $fn = 'data/' . substr($file, length($base));
local $/; # enable localized slurp mode
my $fd;
eval { (open($fd, '<:raw', $file)) };
if (my $E = $@) {
$self->app->log->error("error reading $file: $!");
next;
}
my ($header, $pad) = _makecpiohead($fn, \@s);
$data .= $header;
$data .= <$fd>;
close $fd;
$data .= $pad if $pad;
}
$data .= _makecpiohead();
return $self->render(data => $data);
}
# serve a file from within data directory
sub _test_data_file {
my ($self, $file) = @_;
$self->app->log->debug("Request for file $file.");
my $filetype;
if ($file =~ m/\.([^\.]+)$/) {
my $ext = $1;
$filetype = $self->app->types->type($ext);
}
$filetype ||= "application/octet-stream";
$self->res->headers->content_type($filetype);
return $self->reply->asset(Mojo::Asset::File->new(path => $file));
}
sub test_data {
my ($self) = @_;
my $path = $bmwqemu::vars{CASEDIR} . "/data/";
my $relpath = $self->param('relpath');
if (defined $relpath) {
# do not allow .. in path
return $self->reply->not_found if $relpath =~ /^(.*\/)*\.\.(\/.*)*$/;
$path .= $relpath;
}
return _test_data_dir($self, $path) if -d $path;
return _test_data_file($self, $path) if -f $path;
return $self->reply->not_found;
}
sub get_asset {
my ($self) = @_;
my $path = join '/', $bmwqemu::vars{ASSETDIR}, $self->param('assettype'), $self->param('assetname');
my $relpath = $self->param('relpath');
if (defined $relpath) {
# do not allow .. in path
return $self->reply->not_found if $relpath =~ /^(.*\/)*\.\.(\/.*)*$/;
$path .= '/' . $relpath;
}
return _test_data_file($self, $path) if -f $path;
return $self->reply->not_found;
}
# store the file in $pooldir/$target
sub upload_file {
my ($self) = @_;
if ($self->req->is_limit_exceeded) {
return $self->render(
message => 'File is too big.',
status => 400
);
}
my $upload = $self->req->upload('upload');
if (!$upload) {
return $self->render(message => 'upload file content missing', status => 400);
}
my $target = $self->param('target');
# global assumption cwd == pooldir
if (!-d $target) {
mkdir($target) or die "$!";
}
my $upname = $self->param('upname');
my $filename = basename($self->param('filename'));
# Only renaming the file if upname parameter has posted ie. from upload_logs()
# With this it won't renamed the file in case upload_assert and autoyast profile
# as those are not called from upload_logs.
if ($upname) {
$filename = basename($upname);
}
$upload->move_to("$target/$filename");
return $self->render(text => "OK: $filename\n");
}
sub current_script {
my ($self) = @_;
return $self->reply->asset(Mojo::Asset::File->new(path => 'current_script'));
}
sub isotovideo_command {
# $c is the lite controller - not the package
my ($c, $commands) = @_;
my $cmd = $c->param('command');
return $c->reply->not_found unless grep { $cmd eq $_ } @$commands;
myjsonrpc::send_json($isotovideo, {cmd => $cmd, params => $c->req->query_params->to_hash});
$c->render(json => myjsonrpc::read_json($isotovideo));
return;
}
sub isotovideo_get {
my ($c) = @_;
return isotovideo_command($c, [qw/status version/]);
}
sub isotovideo_post {
my ($c) = @_;
return isotovideo_command($c, [qw/interactive stop_waitforneedle continue_waitforneedle reload_needles/]);
}
sub run_daemon {
my ($port) = @_;
# allow up to 20GB - hdd images
$ENV{MOJO_MAX_MESSAGE_SIZE} = 1024 * 1024 * 1024 * 20;
$ENV{MOJO_INACTIVITY_TIMEOUT} = 300;
# avoid leaking token
app->mode('production');
app->log->level('info');
my $r = app->routes;
my $token_auth = $r->route("/$bmwqemu::vars{JOBTOKEN}");
# for access all data as CPIO archive
$token_auth->get('/data' => \&test_data);
# to access a single file or a subdirectory
$token_auth->get('/data/*relpath' => \&test_data);
# uploading log files from tests
$token_auth->post('/uploadlog/#filename' => {target => 'ulogs'} => [target => [qw(ulogs)]] => \&upload_file);
# uploading assets
$token_auth->post('/upload_asset/#filename' => {target => 'assets_private'} => [target => [qw(assets_private assets_public)]] => \&upload_file);
# to get the current bash script out of the test
$token_auth->get('/current_script' => \¤t_script);
# get asset
$token_auth->get('/assets/#assettype/#assetname' => \&get_asset);
$token_auth->get('/assets/#assettype/#assetname/*relpath' => \&get_asset);
$token_auth->get('/isotovideo/#command' => \&isotovideo_get);
$token_auth->post('/isotovideo/#command' => \&isotovideo_post);
# not known by default mojolicious
app->types->type(oga => 'audio/ogg');
# it's unlikely that we will ever use cookies, but we need a secret to shut up mojo
app->secrets([$bmwqemu::vars{JOBTOKEN}]);
# listen to all IPv4 and IPv6 interfaces
my $daemon = Mojo::Server::Daemon->new(app => app, listen => ["http://[::]:$port"]);
$daemon->silent;
app->log->info("Daemon reachable under http://*:$port/$bmwqemu::vars{JOBTOKEN}/");
try {
$daemon->run;
}
catch {
print "failed to run daemon $_\n";
_exit(1);
};
}
sub start_server {
my ($port) = @_;
my $child;
socketpair($child, $isotovideo, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "socketpair: $!";
$child->autoflush(1);
$isotovideo->autoflush(1);
my $pid = fork();
die "fork failed" unless defined $pid;
if ($pid == 0) {
$SIG{TERM} = 'DEFAULT';
$SIG{INT} = 'DEFAULT';
$SIG{HUP} = 'DEFAULT';
$SIG{CHLD} = 'DEFAULT';
close($child);
$0 = "$0: commands";
run_daemon($port);
_exit(0);
}
close($isotovideo);
return ($pid, $child);
}
1;
# vim: set sw=4 et:
|