Allow an external kernel to be used to boot guests.
[mclu.git] / mclu_boot.ml
1 (* mclu: Mini Cloud
2  * Copyright (C) 2014-2015 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 (* Implement 'mclu boot'. *)
20
21 module C = Libvirt.Connect
22 module D = Libvirt.Domain
23 module MS = Mclu_status
24
25 open Printf
26
27 open Utils
28
29 let memory = ref 0L                     (* 0 = choose for me *)
30 let set_memory s =
31   try memory := bytes_of_human_size s
32   with Not_found ->
33     eprintf "mclu: don't understand --memory parameter '%s'
34 Try something like --memory 1G\n" s;
35     exit 1
36 let size = ref 0L                       (* 0 = default *)
37 let set_size s =
38   try size := bytes_of_human_size s
39   with Not_found ->
40     eprintf "mclu: don't understand --size parameter '%s'
41 Try something like --size 20G\n" s;
42     exit 1
43 let timezone = ref ""                   (* "" = no timezone set *)
44 let vcpus = ref 0                       (* 0 = choose for me *)
45
46 let open_console = ref false
47 let open_viewer = ref false
48
49 let get_arg_speclist () = Arg.align [
50   "--console",  Arg.Set open_console, " Open the serial console";
51   "--cpus",     Arg.Set_int vcpus, "n Number of virtual CPUs";
52   "--memory",   Arg.String set_memory, "nnG Amount of RAM to give guest";
53   "--ram",      Arg.String set_memory, "nnG Amount of RAM to give guest";
54   "--size",     Arg.String set_size, "nnG Size of disk to give guest";
55   "--timezone", Arg.Set_string timezone, "TZ Set timezone of guest";
56   "--vcpus",    Arg.Set_int vcpus, "n Number of virtual CPUs";
57   "--viewer",   Arg.Set open_viewer, " Open the graphical console";
58 ]
59
60 let boot ~verbose template name =
61   let templates = Template.templates () in
62
63   (* Does the template exist? *)
64   let template_filename =
65     try List.assoc template templates
66     with Not_found ->
67       eprintf "mclu: template %s not found
68 Try `mclu list --templates' to list all known templates.\n" template;
69       exit 1 in
70
71   (* Probe the template for various features. *)
72   let template_info = Template.probe ~verbose template_filename in
73
74   (* Check --size is not too small. *)
75   let size =
76     match !size, template_info.Template.minimum_size with
77     | 0L, None -> 0L               (* virt-builder default *)
78     | 0L, Some min_size ->         (* go with template minimum size *)
79       min_size
80     | size, Some min_size when size < min_size ->
81       eprintf "mclu: --size parameter is smaller than the minimum specified by the template (%s).\n"
82         (human_size min_size);
83       exit 1
84     | size, _ -> size in           (* go with user-specified size *)
85
86   (* Decide how much RAM we will give the guest.  This affects our
87    * choice of node, so do it early.
88    *)
89   let memory = !memory in
90   let memory =
91     if memory > 0L then (
92       (* User requested, just check it's above the minimum. *)
93       match template_info.Template.minimum_memory with
94       | None -> memory
95       | Some min when min > memory ->
96         eprintf "mclu: minimum memory for this template is %s\n"
97           (human_size min);
98         exit 1
99       | Some _ -> memory
100     ) else (
101       (* User didn't request any memory setting, use the recommended. *)
102       match template_info.Template.recommended_memory with
103       | Some memory -> memory
104       | None -> 4L *^ 1024L *^ 1024L *^ 1024L (* 4 GB *)
105     ) in
106
107   (* Check what's running. *)
108   let summary = MS.node_guest_summary ~verbose () in
109
110   (* Did the user request a specific host?  If not, choose one. *)
111   let hostname, name =
112     match name_parse name with
113     | Some hostname, name -> hostname, name
114     | None, name ->
115       (* Choose the first host with enough free memory. *)
116       let nodes = List.filter (
117         fun { MS.free_memory = free_memory } -> free_memory >= memory
118       ) summary in
119       match nodes with
120       | [] ->
121         eprintf "mclu: no node with enough free memory found
122 Try: `mclu status' and `mclu on <node>'\n";
123         exit 1
124       | node :: _ ->
125         let hostname =
126           node.MS.node_status.MS.node.Mclu_conf.hostname in
127         hostname, name in
128
129   (* Check there isn't a guest with this name running anywhere
130    * in the cluster already.
131    *)
132   List.iter (
133     fun ({ MS.active_guests = guests } as node) ->
134       List.iter (
135         fun { Mclu_list.dom_name = n } ->
136           if name = n then (
137             let hostname =
138               node.MS.node_status.MS.node.Mclu_conf.hostname
139             in
140             eprintf "mclu: there is already a guest called '%s' (running on %s)\n"
141               name hostname;
142             exit 1
143           )
144       ) guests
145   ) summary;
146
147   (* Convert hostname to a specific node, and check it is up. *)
148   let node =
149     try List.find (
150       fun node ->
151         node.MS.node_status.MS.node.Mclu_conf.hostname = hostname
152     ) summary
153     with Not_found ->
154       eprintf "mclu: no node is called '%s'\n" hostname;
155       exit 1 in
156   if not node.MS.node_status.MS.node_on then (
157     eprintf "mclu: node '%s' is switched off
158 Try: `mclu on %s'\n" hostname hostname;
159     exit 1
160   );
161
162   (* Where we upload the template and image on remote. *)
163   let format, extension = "qcow2", "qcow2" in
164   let remote_template = sprintf "/tmp/mclu%s.sh" (string_random8 ()) in
165   let remote_template_wrapper = sprintf "/tmp/mclu%s.sh" (string_random8 ()) in
166   let xml_template_wrapper = sprintf "/tmp/mclu%s.sh" (string_random8 ()) in
167   let remote_image = sprintf "/var/tmp/%s.%s" name extension in
168   let remote_external_kernel_dir = sprintf "/var/tmp/%s.boot" name in
169   let remote_external_kernel = sprintf "/var/tmp/%s.boot/kernel" name in
170   let remote_external_initrd = sprintf "/var/tmp/%s.boot/initrd" name in
171
172   (* Get ready to generate the guest XML. *)
173   let vcpus = !vcpus in
174   let vcpus =
175     if vcpus > 0 then vcpus
176     else min 4 node.MS.node_status.MS.node_info.C.cpus in
177   let mac_addr =
178     sprintf "52:54:00:%02x:%02x:%02x"
179       (Random.int 256) (Random.int 256) (Random.int 256) in
180
181   (* Generate the guest XML. *)
182   let generate_standard_xml () =
183     (* XXX Better quoting. *)
184     let xml = sprintf "\
185 <domain type='kvm'>
186   <name>%s</name>
187   <memory unit='KiB'>%Ld</memory>
188   <currentMemory unit='KiB'>%Ld</currentMemory>
189   <vcpu>%d</vcpu>
190 " name (memory /^ 1024L) (memory /^ 1024L) vcpus in
191
192     let xml = xml ^ "\
193   <os>
194     <type>hvm</type>
195     <boot dev='hd'/>
196 " in
197
198     let xml = xml ^
199       if template_info.Template.needs_external_kernel then
200         sprintf "\
201     <kernel>%s</kernel>
202     <initrd>%s</initrd>
203 " remote_external_kernel remote_external_initrd
204       else "" in
205
206     let xml = xml ^ "\
207   </os>
208   <features>
209     <acpi/>
210     <apic/>
211     <pae/>
212   </features>
213   <cpu mode='host-model' fallback='allow' />
214   <clock offset='utc'>
215     <timer name='rtc' tickpolicy='catchup'/>
216     <timer name='pit' tickpolicy='delay'/>
217     <timer name='hpet' present='no'/>
218   </clock>
219   <on_poweroff>destroy</on_poweroff>
220   <on_reboot>restart</on_reboot>
221   <on_crash>restart</on_crash>
222   <devices>
223 " in
224
225     let xml = xml ^ sprintf "\
226   <disk type='file' device='disk'>
227     <driver name='qemu' type='%s' cache='none' io='native'/>
228     <source file='%s'/>
229 " format remote_image in
230     let xml = xml ^
231     match template_info.Template.disk_bus with
232     | Some "ide" ->
233       "      <target dev='sda' bus='ide'/>\n"
234     | Some "virtio-scsi" | None ->
235       "      <target dev='sda' bus='scsi'/>\n"
236     | Some bus ->
237       eprintf "mclu: unknown disk-bus: %s\n" bus;
238       exit 1 in
239     let xml = xml ^ "\
240     </disk>
241 " in
242
243     let xml =
244       xml ^
245         if template_info.Template.disk_bus = Some "virtio-scsi" then
246           "  <controller type='scsi' index='0' model='virtio-scsi'/>\n"
247         else
248           "" in
249
250     (* XXX Don't hard-code bridge name here. *)
251     let network_model =
252       match template_info with
253       | { Template.network_model = None } -> "virtio"
254       | { Template.network_model = Some d } -> d in
255     let xml = xml ^ sprintf "\
256     <interface type='bridge'>
257       <mac address='%s'/>
258       <source bridge='br0'/>
259       <model type='%s'/>
260     </interface>
261 " mac_addr network_model in
262
263     let xml = xml ^ "\
264     <serial type='pty'>
265       <target port='0'/>
266     </serial>
267     <console type='pty'>
268       <target type='serial' port='0'/>
269     </console>
270     <input type='tablet' bus='usb'/>
271     <input type='mouse' bus='ps2'/>
272     <input type='keyboard' bus='ps2'/>
273     <graphics type='vnc' autoport='yes'/>
274     <video>
275       <model type='cirrus' vram='9216' heads='1'/>
276     </video>
277   </devices>
278 </domain>" in
279     xml
280
281   and generate_custom_xml () =
282     (* Generate a wrapper script to make passing the variables
283      * to the template easier.
284      *)
285     let () =
286       let chan = open_out xml_template_wrapper in
287       let fpf fs = fprintf chan fs in
288       fpf "#!/bin/sh\n";
289       fpf "export format=%s\n" (quote format);
290       fpf "export initrd=%s\n" (quote remote_external_initrd);
291       fpf "export kernel=%s\n" (quote remote_external_kernel);
292       fpf "export mac_addr=%s\n" (quote mac_addr);
293       fpf "export memory_kb=%Ld\n" (memory /^ 1024L);
294       fpf "export name=%s\n" (quote name);
295       fpf "export output=%s\n" (quote remote_image);
296       fpf "export vcpus=%d\n" vcpus;
297       fpf "%s xml\n" template_filename;
298       close_out chan;
299       Unix.chmod xml_template_wrapper 0o755 in
300
301     if verbose then printf "%s\n%!" xml_template_wrapper;
302     let chan = Unix.open_process_in xml_template_wrapper in
303     let lines = ref [] in
304     (try while true do lines := input_line chan :: !lines done
305      with End_of_file -> ());
306     let stat = Unix.close_process_in chan in
307     (match stat with
308      | Unix.WEXITED 0 -> ()
309      | Unix.WEXITED i ->
310         eprintf "mclu: template '%s' subcmd xml exited with error %d\n"
311                 template_filename i;
312         exit 1
313      | Unix.WSIGNALED i ->
314         eprintf "mclu: template '%s' subcmd xml killed by signal %d\n"
315                 template_filename i;
316         exit 1
317      | Unix.WSTOPPED i ->
318         eprintf "mclu: template '%s' subcmd xml stopped by signal %d\n"
319                 template_filename i;
320         exit 1
321     );
322     let xml = String.concat "\n" (List.rev !lines) in
323     xml
324   in
325
326   let xml =
327     if not template_info.Template.has_xml_target then
328       generate_standard_xml ()
329     else
330       generate_custom_xml () in
331
332   (* Copy the template to remote. *)
333   let cmd =
334     sprintf "scp %s root@%s:%s"
335       (quote template_filename) (quote hostname) remote_template in
336   if verbose then printf "%s\n%!" cmd;
337   if Sys.command cmd <> 0 then (
338     eprintf "mclu: scp template to remote failed\n";
339     exit 1
340   );
341
342   (* Create a wrapper script that sets the variables and runs the
343    * template.  This just avoids complex quoting.
344    *)
345   let () =
346     let chan = open_out remote_template_wrapper in
347     let fpf fs = fprintf chan fs in
348     fpf "#!/bin/bash\n";
349     fpf "set -e\n";
350     (* XXX Don't hard-code network_bridge here. *)
351     fpf "export LIBGUESTFS_BACKEND_SETTINGS=network_bridge=br0\n";
352     fpf "export base_image=%s\n" (quote template_info.Template.base_image);
353     fpf "export format=%s\n" (quote format);
354     fpf "export name=%s\n" (quote name);
355     fpf "export output=%s\n" (quote remote_image);
356     (match size with
357     | 0L -> ()
358     | size -> fpf "export size=%s\n" (quote (sprintf "--size %Ldb" size))
359     );
360     (match !timezone with
361     | "" -> ()
362     | tz -> fpf "export timezone=%s\n" (quote (sprintf "--timezone %s" tz))
363     );
364     fpf "%s build\n" remote_template;
365     if template_info.Template.needs_external_kernel then (
366       fpf "rm -rf %s\n" (quote remote_external_kernel_dir);
367       fpf "mkdir %s\n" (quote remote_external_kernel_dir);
368       fpf "pushd %s\n" (quote remote_external_kernel_dir);
369       fpf "virt-builder --get-kernel %s\n" (quote remote_image);
370       fpf "ln vmlinuz-* kernel\n";
371       fpf "ln init* initrd\n";
372       fpf "popd\n";
373     );
374     close_out chan;
375     Unix.chmod remote_template_wrapper 0o755 in
376
377   let cmd =
378     sprintf "scp %s root@%s:%s"
379       (quote remote_template_wrapper) (quote hostname)
380       (quote remote_template_wrapper) in
381   if verbose then printf "%s\n%!" cmd;
382   if Sys.command cmd <> 0 then (
383     eprintf "mclu: scp template wrapper to remote failed\n";
384     exit 1
385   );
386
387   let cmd =
388     sprintf "ssh root@%s %s" (quote hostname) (quote remote_template_wrapper) in
389   if verbose then printf "%s\n%!" cmd;
390   if Sys.command cmd <> 0 then (
391     eprintf "mclu: remote build failed\n";
392     exit 1
393   );
394
395   (* Start the guest. *)
396   let dom =
397     try
398       let conn =
399         let name = node.MS.node_status.MS.node.Mclu_conf.libvirt_uri in
400         C.connect ~name () in
401       let dom = D.create_xml conn xml [] in
402       printf "mclu: %s:%s started\n" hostname (D.get_name dom);
403       dom
404     with Libvirt.Virterror msg ->
405       eprintf "mclu: %s: %s\n" hostname (Libvirt.Virterror.to_string msg);
406       exit 1 in
407
408   (* Graphical console? *)
409   if !open_viewer then
410     Mclu_viewer.viewer ~verbose ~host:hostname (D.get_name dom);
411
412   (* Serial console?  (Interactive, so run it last) *)
413   if !open_console then
414     Mclu_console.console ~verbose ~host:hostname (D.get_name dom)
415
416 let run ~verbose = function
417   | [ template; name ] ->
418     boot ~verbose template name
419   | _ ->
420     eprintf "Usage: mclu boot <template> <[host:]name>\n";
421     exit 1