]> git.proxmox.com Git - qemu-server.git/blob - qm
do not use clusvcadm if we start using 'starturi' parameter
[qemu-server.git] / qm
1 #!/usr/bin/perl -w
2
3 use strict;
4 use Getopt::Long;
5 use Fcntl ':flock';
6 use File::Path;
7 use IO::Socket::UNIX;
8 use IO::Select;
9
10 use PVE::Tools qw(extract_param);
11 use PVE::Cluster;
12 use PVE::SafeSyslog;
13 use PVE::INotify;
14 use PVE::RPCEnvironment;
15 use PVE::QemuServer;
16 use PVE::API2::Qemu;
17 use PVE::JSONSchema qw(get_standard_option);
18 use Term::ReadLine;
19
20 use PVE::CLIHandler;
21
22 use base qw(PVE::CLIHandler);
23
24 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
25
26 initlog('qm');
27
28 die "please run as root\n" if $> != 0;
29
30 PVE::INotify::inotify_init();
31
32 my $rpcenv = PVE::RPCEnvironment->init('cli');
33
34 $rpcenv->init_request();
35 $rpcenv->set_language($ENV{LANG});
36 $rpcenv->set_user('root@pam');
37
38 my $upid_exit = sub {
39 my $upid = shift;
40 my $status = PVE::Tools::upid_read_status($upid);
41 exit($status eq 'OK' ? 0 : -1);
42 };
43
44 my $nodename = PVE::INotify::nodename();
45
46 sub run_vnc_proxy {
47 my ($vmid) = @_;
48
49 my $path = PVE::QemuServer::vnc_socket($vmid);
50
51 my $s = IO::Socket::UNIX->new(Peer => $path, Timeout => 120);
52
53 die "unable to connect to socket '$path' - $!" if !$s;
54
55 my $select = new IO::Select;
56
57 $select->add(\*STDIN);
58 $select->add($s);
59
60 my $timeout = 60*15; # 15 minutes
61
62 my @handles;
63 while ($select->count &&
64 scalar(@handles = $select->can_read ($timeout))) {
65 foreach my $h (@handles) {
66 my $buf;
67 my $n = $h->sysread($buf, 4096);
68
69 if ($h == \*STDIN) {
70 if ($n) {
71 syswrite($s, $buf);
72 } else {
73 exit(0);
74 }
75 } elsif ($h == $s) {
76 if ($n) {
77 syswrite(\*STDOUT, $buf);
78 } else {
79 exit(0);
80 }
81 }
82 }
83 }
84 exit(0);
85 }
86
87 __PACKAGE__->register_method ({
88 name => 'showcmd',
89 path => 'showcmd',
90 method => 'GET',
91 description => "Show command line which is used to start the VM (debug info).",
92 parameters => {
93 additionalProperties => 0,
94 properties => {
95 vmid => get_standard_option('pve-vmid'),
96 },
97 },
98 returns => { type => 'null'},
99 code => sub {
100 my ($param) = @_;
101
102 my $storecfg = PVE::Storage::config();
103 print PVE::QemuServer::vm_commandline($storecfg, $param->{vmid}) . "\n";
104
105 return undef;
106 }});
107
108 __PACKAGE__->register_method ({
109 name => 'status',
110 path => 'status',
111 method => 'GET',
112 description => "Show VM status.",
113 parameters => {
114 additionalProperties => 0,
115 properties => {
116 vmid => get_standard_option('pve-vmid'),
117 verbose => {
118 description => "Verbose output format",
119 type => 'boolean',
120 optional => 1,
121 }
122 },
123 },
124 returns => { type => 'null'},
125 code => sub {
126 my ($param) = @_;
127
128 # test if VM exists
129 my $conf = PVE::QemuServer::load_config ($param->{vmid});
130
131 my $vmstatus = PVE::QemuServer::vmstatus($param->{vmid});
132 my $stat = $vmstatus->{$param->{vmid}};
133 if ($param->{verbose}) {
134 foreach my $k (sort (keys %$stat)) {
135 next if $k eq 'cpu' || $k eq 'relcpu'; # always 0
136 my $v = $stat->{$k};
137 next if !defined($v);
138 print "$k: $v\n";
139 }
140 } else {
141 my $status = $stat->{status} || 'unknown';
142 print "status: $status\n";
143 }
144
145 return undef;
146 }});
147
148 __PACKAGE__->register_method ({
149 name => 'vncproxy',
150 path => 'vncproxy',
151 method => 'PUT',
152 description => "Proxy VM VNC traffic to stdin/stdout",
153 parameters => {
154 additionalProperties => 0,
155 properties => {
156 vmid => get_standard_option('pve-vmid'),
157 },
158 },
159 returns => { type => 'null'},
160 code => sub {
161 my ($param) = @_;
162
163 my $vmid = $param->{vmid};
164
165 run_vnc_proxy ($vmid);
166
167 return undef;
168 }});
169
170 __PACKAGE__->register_method ({
171 name => 'unlock',
172 path => 'unlock',
173 method => 'PUT',
174 description => "Unlock the VM.",
175 parameters => {
176 additionalProperties => 0,
177 properties => {
178 vmid => get_standard_option('pve-vmid'),
179 },
180 },
181 returns => { type => 'null'},
182 code => sub {
183 my ($param) = @_;
184
185 my $vmid = $param->{vmid};
186
187 PVE::QemuServer::lock_config ($vmid, sub {
188 my $conf = PVE::QemuServer::load_config($vmid);
189 delete $conf->{lock};
190 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
191 });
192
193 return undef;
194 }});
195
196 __PACKAGE__->register_method ({
197 name => 'mtunnel',
198 path => 'mtunnel',
199 method => 'POST',
200 description => "Used by qmigrate - do not use manually.",
201 parameters => {
202 additionalProperties => 0,
203 properties => {},
204 },
205 returns => { type => 'null'},
206 code => sub {
207 my ($param) = @_;
208
209 if (!PVE::Cluster::check_cfs_quorum(1)) {
210 print "no quorum\n";
211 return undef;
212 }
213
214 print "tunnel online\n";
215 *STDOUT->flush();
216
217 while (my $line = <>) {
218 chomp $line;
219 last if $line =~ m/^quit$/;
220 }
221
222 return undef;
223 }});
224
225 __PACKAGE__->register_method ({
226 name => 'startall',
227 path => 'startall',
228 method => 'POST',
229 description => "Start all virtual machines (when onboot=1).",
230 parameters => {
231 additionalProperties => 0,
232 properties => {},
233 },
234 returns => { type => 'null'},
235 code => sub {
236 my ($param) = @_;
237
238 # wait up to 10 seconds for quorum
239 for (my $i = 10; $i >= 0; $i--) {
240 last if PVE::Cluster::check_cfs_quorum($i != 0 ? 1 : 0);
241 sleep(1);
242 }
243
244 my $vzlist = PVE::QemuServer::vzlist();
245 my $storecfg = PVE::Storage::config();
246
247 my $cc = PVE::Cluster::cfs_read_file('cluster.conf');
248
249 my $count = 0;
250 foreach my $vmid (keys %$vzlist) {
251 next if $vzlist->{$vmid}->{pid}; # already running
252
253 my $conf;
254 eval { $conf = PVE::QemuServer::load_config($vmid); };
255 if (my $err = $@) {
256 warn $err;
257 next;
258 }
259
260 next if !($conf && $conf->{onboot});
261
262 # skip ha managed VMs (started by rgmanager)
263 next if PVE::Cluster::cluster_conf_lookup_pvevm($cc, 0, $vmid, 1);
264
265 sleep(2) if $count != 0; # reduce load
266 $count++;
267
268 PVE::Cluster::check_cfs_quorum(); # abort when we loose quorum
269
270 eval {
271 print STDERR "Starting Qemu VM $vmid\n";
272 PVE::QemuServer::vm_start($storecfg, $vmid);
273 };
274 warn $@ if $@;
275 }
276
277 return undef;
278 }});
279
280 __PACKAGE__->register_method ({
281 name => 'stopall',
282 path => 'stopall',
283 method => 'POST',
284 description => "Stop all virtual machines.",
285 parameters => {
286 additionalProperties => 0,
287 properties => {
288 timeout => {
289 description => "Timeout in seconds. Default is to wait 3 minutes.",
290 type => 'integer',
291 minimum => 1,
292 optional => 1,
293 }
294 },
295 },
296 returns => { type => 'null'},
297 code => sub {
298 my ($param) = @_;
299
300 my $timeout = $param->{timeout};
301
302 my $storecfg = PVE::Storage::config();
303
304 PVE::QemuServer::vm_stopall($storecfg, $timeout);
305
306 return undef;
307 }});
308
309 __PACKAGE__->register_method ({
310 name => 'wait',
311 path => 'wait',
312 method => 'GET',
313 description => "Wait until the VM is stopped.",
314 parameters => {
315 additionalProperties => 0,
316 properties => {
317 vmid => get_standard_option('pve-vmid'),
318 timeout => {
319 description => "Timeout in seconds. Default is to wait forever.",
320 type => 'integer',
321 minimum => 1,
322 optional => 1,
323 }
324 },
325 },
326 returns => { type => 'null'},
327 code => sub {
328 my ($param) = @_;
329
330 my $vmid = $param->{vmid};
331 my $timeout = $param->{timeout};
332
333 my $pid = PVE::QemuServer::check_running ($vmid);
334 return if !$pid;
335
336 print "waiting until VM $vmid stopps (PID $pid)\n";
337
338 my $count = 0;
339 while ((!$timeout || ($count < $timeout)) && PVE::QemuServer::check_running ($vmid)) {
340 $count++;
341 sleep 1;
342 }
343
344 die "wait failed - got timeout\n" if PVE::QemuServer::check_running ($vmid);
345
346 return undef;
347 }});
348
349 __PACKAGE__->register_method ({
350 name => 'monitor',
351 path => 'monitor',
352 method => 'POST',
353 description => "Enter Qemu Monitor interface.",
354 parameters => {
355 additionalProperties => 0,
356 properties => {
357 vmid => get_standard_option('pve-vmid'),
358 },
359 },
360 returns => { type => 'null'},
361 code => sub {
362 my ($param) = @_;
363
364 my $vmid = $param->{vmid};
365
366 my $conf = PVE::QemuServer::load_config ($vmid); # check if VM exists
367
368 print "Entering Qemu Monitor for VM $vmid - type 'help' for help\n";
369
370 my $term = new Term::ReadLine ('qm');
371
372 my $input;
373 while (defined ($input = $term->readline('qm> '))) {
374 chomp $input;
375
376 next if $input =~ m/^\s*$/;
377
378 last if $input =~ m/^\s*q(uit)?\s*$/;
379
380 eval {
381 print PVE::QemuServer::vm_monitor_command ($vmid, $input);
382 };
383 print "ERROR: $@" if $@;
384 }
385
386 return undef;
387
388 }});
389
390 my $cmddef = {
391 list => [ "PVE::API2::Qemu", 'vmlist', [],
392 { node => $nodename }, sub {
393 my $vmlist = shift;
394
395 exit 0 if (!scalar(@$vmlist));
396
397 printf "%10s %-20s %-10s %-10s %12s %-10s\n",
398 qw(VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID);
399
400 foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) {
401 printf "%10s %-20s %-10s %-10s %12.2f %-10s\n", $rec->{vmid}, $rec->{name},
402 $rec->{status},
403 ($rec->{maxmem} || 0)/(1024*1024),
404 ($rec->{maxdisk} || 0)/(1024*1024*1024),
405 $rec->{pid}||0;
406 }
407
408
409 } ],
410
411 create => [ "PVE::API2::Qemu", 'create_vm', ['vmid'], { node => $nodename }, $upid_exit ],
412
413 destroy => [ "PVE::API2::Qemu", 'destroy_vm', ['vmid'], { node => $nodename }, $upid_exit ],
414
415 migrate => [ "PVE::API2::Qemu", 'migrate_vm', ['vmid', 'target'], { node => $nodename }, $upid_exit ],
416
417 set => [ "PVE::API2::Qemu", 'update_vm', ['vmid'], { node => $nodename } ],
418
419 unlink => [ "PVE::API2::Qemu", 'unlink', ['vmid', 'idlist'], { node => $nodename } ],
420
421 config => [ "PVE::API2::Qemu", 'vm_config', ['vmid'],
422 { node => $nodename }, sub {
423 my $config = shift;
424 foreach my $k (sort (keys %$config)) {
425 next if $k eq 'digest';
426 my $v = $config->{$k};
427 if ($k eq 'description') {
428 $v = PVE::Tools::encode_text($v);
429 }
430 print "$k: $v\n";
431 }
432 }],
433
434 showcmd => [ __PACKAGE__, 'showcmd', ['vmid']],
435
436 status => [ __PACKAGE__, 'status', ['vmid']],
437
438 start => [ "PVE::API2::Qemu", 'vm_start', ['vmid'], { node => $nodename } , $upid_exit ],
439
440 stop => [ "PVE::API2::Qemu", 'vm_stop', ['vmid'], { node => $nodename }, $upid_exit ],
441
442 reset => [ "PVE::API2::Qemu", 'vm_reset', ['vmid'], { node => $nodename }, $upid_exit ],
443
444 shutdown => [ "PVE::API2::Qemu", 'vm_shutdown', ['vmid'], { node => $nodename }, $upid_exit ],
445
446 suspend => [ "PVE::API2::Qemu", 'vm_suspend', ['vmid'], { node => $nodename }, $upid_exit ],
447
448 resume => [ "PVE::API2::Qemu", 'vm_resume', ['vmid'], { node => $nodename }, $upid_exit ],
449
450 sendkey => [ "PVE::API2::Qemu", 'vm_sendkey', ['vmid', 'key'], { node => $nodename } ],
451
452 vncproxy => [ __PACKAGE__, 'vncproxy', ['vmid']],
453
454 wait => [ __PACKAGE__, 'wait', ['vmid']],
455
456 unlock => [ __PACKAGE__, 'unlock', ['vmid']],
457
458 monitor => [ __PACKAGE__, 'monitor', ['vmid']],
459
460 startall => [ __PACKAGE__, 'startall', []],
461
462 stopall => [ __PACKAGE__, 'stopall', []],
463
464 mtunnel => [ __PACKAGE__, 'mtunnel', []],
465 };
466
467 my $cmd = shift;
468
469 PVE::CLIHandler::handle_cmd($cmddef, "qm", $cmd, \@ARGV, undef, $0);
470
471 exit 0;
472
473 __END__
474
475 =head1 NAME
476
477 qm - qemu/kvm virtual machine manager
478
479 =head1 SYNOPSIS
480
481 =include synopsis
482
483 =head1 DESCRIPTION
484
485 qm is a script to manage virtual machines with qemu/kvm. You can
486 create and destroy virtual machines, and control execution
487 (start/stop/suspend/resume). Besides that, you can use qm to set
488 parameters in the associated config file. It is also possible to
489 create and delete virtual disks.
490
491 =head1 CONFIGURATION
492
493 All configuration files consists of lines in the form
494
495 PARAMETER: value
496
497 See L<vm.conf|vm.conf> for a complete list of options.
498
499 Configuration files are stored inside the Proxmox configuration file system, and can be access at F</etc/pve/qemu-server/C<VMID>.conf>.
500
501 The default for option 'keyboard' is read from
502 F</etc/pve/datacenter.conf>.
503
504 =head1 Locks
505
506 Online migration and backups (vzdump) set a lock to prevent
507 unintentional action on such VMs. Sometimes you need remove such lock
508 manually (power failure).
509
510 qm unlock <vmid>
511
512 =head1 EXAMPLES
513
514 # create a new VM with 4 GB ide disk
515 qm create 300 -ide0 4 -net0 e1000 -cdrom proxmox-mailgateway_2.1.iso
516
517 # start the new VM
518 qm start 300
519
520 # send shutdown, then wait until VM is stopped
521 qm shutdown 300 && qm wait 300
522
523 # same as above, but only wait for 40 seconds
524 qm shutdown 300 && qm wait 300 -timeout 40
525
526
527 =include pve_copyright