forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.pm
371 lines (297 loc) · 11.5 KB
/
commands.pm
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
360
361
362
363
364
365
366
367
368
369
370
371
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2019 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;
use autodie ':all';
require IPC::System::Simple;
use Try::Tiny;
use Socket;
use POSIX '_exit', 'strftime';
use myjsonrpc;
use bmwqemu 'diag';
use Mojo::JSON 'to_json';
BEGIN {
$ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}
# Automatically enables "strict", "warnings", "utf8" and Perl 5.10 features
use Mojolicious::Lite;
use Mojo::IOLoop;
use Mojo::IOLoop::ReadWriteProcess 'process';
use Mojo::IOLoop::ReadWriteProcess::Session 'session';
use Mojo::Server::Daemon;
use File::Basename;
use Time::HiRes 'gettimeofday';
# borrowed from obs with permission from [email protected] 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);
}
# choose 'target' field from curl form, otherwise default 'assets_private'
my $target = $self->param('target') || 'assets_private';
# 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 get_vars {
my ($self) = @_;
bmwqemu::load_vars();
return $self->render(json => {vars => \%bmwqemu::vars});
}
sub current_script {
my ($self) = @_;
return $self->reply->asset(Mojo::Asset::File->new(path => 'current_script'));
}
sub isotovideo_command {
my ($mojo_lite_controller, $commands) = @_;
my $cmd = $mojo_lite_controller->param('command');
return $mojo_lite_controller->reply->not_found unless grep { $cmd eq $_ } @$commands;
my $app = $mojo_lite_controller->app;
return unless my $isotovideo = $app->defaults('isotovideo');
# send command to isotovideo and block until a response arrives
myjsonrpc::send_json($isotovideo, {cmd => $cmd, params => $mojo_lite_controller->req->query_params->to_hash});
my $response = myjsonrpc::read_json($isotovideo);
if ($response->{stop_processing_isotovideo_commands}) {
# stop processing isotovideo commands if isotovideo says so
$app->log->debug('cmdsrv: stop processing isotovideo commands');
$app->defaults('isotovideo', undef);
return;
}
return $mojo_lite_controller->render(json => $response);
}
sub isotovideo_get {
my ($c) = @_;
return isotovideo_command($c, [qw(status version)]);
}
sub isotovideo_post {
my ($c) = @_;
return isotovideo_command($c, []);
}
sub get_temp_file {
my ($self) = @_;
my $relpath = $self->param('relpath');
my $path = testapi::hashed_string($relpath);
return _test_data_file($self, $path) if -f $path;
return $self->reply->not_found;
}
sub run_daemon {
my ($port, $isotovideo) = @_;
# 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');
app->log->debug('cmdsrv: run daemon ' . $isotovideo);
# abuse the defaults to store singletons for the server
app->defaults(isotovideo => $isotovideo);
app->defaults(clients => {});
my $r = app->routes;
$r->namespaces(['OpenQA']);
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 => [qw(assets_private assets_public)]] => \&upload_file);
# to get the current bash script out of the test
$token_auth->get('/current_script' => \¤t_script);
# to get temporary files from the current worker
$token_auth->get('/files/*relpath' => \&get_temp_file);
# get asset
$token_auth->get('/assets/#assettype/#assetname' => \&get_asset);
$token_auth->get('/assets/#assettype/#assetname/*relpath' => \&get_asset);
# get vars
$token_auth->get('/vars' => \&get_vars);
$token_auth->get('/isotovideo/#command' => \&isotovideo_get);
$token_auth->post('/isotovideo/#command' => \&isotovideo_post);
# websocket related routes
$token_auth->websocket('/ws')->name('ws')->to('commands#start_ws');
$token_auth->post('/broadcast')->name('broadcast')->to('commands#broadcast_message_to_websocket_clients');
# 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 (if ipv6 is supported)
my $address = '[::]';
if (!IO::Socket::IP->new(Listen => 5, LocalAddr => $address)) {
$address = '0.0.0.0';
}
my $daemon = Mojo::Server::Daemon->new(app => app, listen => ["http://$address:$port"]);
$daemon->silent;
# We need to override the default logging format
app->log->format(
sub {
my ($time, $level, @lines) = @_;
# Unfortunately $time doesn't have the precision we want. So we need to use Time::HiRes
$time = gettimeofday;
return sprintf(strftime("[%FT%T.%%03d %Z] [$level] ", localtime($time)), 1000 * ($time - int($time))) . join("\n", @lines, '');
});
# process json messages from isotovideo
Mojo::IOLoop->singleton->reactor->io($isotovideo => sub {
my ($reactor, $writable) = @_;
my $isotovideo_response = myjsonrpc::read_json($isotovideo);
my $clients = app->defaults('clients');
delete $isotovideo_response->{json_cmd_token};
app->log->debug('cmdsrv: broadcasting message from os-autoinst to all ws clients: ' . to_json($isotovideo_response));
for (keys %$clients) {
$clients->{$_}->send({json => $isotovideo_response});
}
})->watch($isotovideo, 1, 0); # watch only readable (and not writable)
app->log->info("cmdsrv: daemon reachable under http://*:$port/$bmwqemu::vars{JOBTOKEN}/");
try {
$daemon->run;
}
catch {
print "cmdsrv: failed to run daemon $_\n";
_exit(1);
};
}
sub start_server {
my ($port) = @_;
my ($child, $isotovideo);
socketpair($child, $isotovideo, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "cmdsrv: socketpair: $!";
$child->autoflush(1);
$isotovideo->autoflush(1);
my $process = process(sub {
$SIG{TERM} = 'DEFAULT';
$SIG{INT} = 'DEFAULT';
$SIG{HUP} = 'DEFAULT';
$SIG{CHLD} = 'DEFAULT';
close($child);
$0 = "$0: commands";
run_daemon($port, $isotovideo);
Devel::Cover::report() if Devel::Cover->can('report');
_exit(0);
})->blocking_stop(1)->internal_pipes(0)->set_pipes(0)->start;
close($isotovideo);
$process->on(collected => sub { diag("commands process exited: " . shift->exit_status); });
return ($process, $child);
}
1;