blob: fa3666eff7eaa2148b944459b628425452062c9a [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Adam Gandelman0f73ff22014-03-13 14:20:43 -07003# lib/nova_plugins/functions-libvirt
4# Common libvirt configuration functions
5
6# Dependencies:
7# ``functions`` file
8# ``STACK_USER`` has to be defined
9
10# Save trace setting
11LV_XTRACE=$(set +o | grep xtrace)
12set +o xtrace
13
14# Defaults
Dean Troyer3324f192014-09-18 09:26:39 -050015# --------
Adam Gandelman0f73ff22014-03-13 14:20:43 -070016
Kashyap Chamarthyd3cfb822015-04-01 11:30:57 +020017# Turn on selective debug log filters for libvirt.
18# (NOTE: Enabling this by default, because the log filters enabled in
19# 'configure_libvirt' function further below are _selective_ and not
20# extremely verbose.)
21DEBUG_LIBVIRT=$(trueorfalse True DEBUG_LIBVIRT)
Adam Gandelman0f73ff22014-03-13 14:20:43 -070022
23# Installs required distro-specific libvirt packages.
24function install_libvirt {
25 if is_ubuntu; then
Adam Gandelmanb0f8beb2014-03-27 00:14:24 -070026 install_package qemu-kvm
Dean Troyer4533eee2015-02-17 16:25:38 -060027 install_package libvirt-bin libvirt-dev
28 pip_install libvirt-python
29 install_package libguestfs0
Sean Dague206c5962015-03-30 13:56:11 -040030 install_package python-guestfs
Dean Troyer4533eee2015-02-17 16:25:38 -060031 #pip_install <there-si-no-guestfs-in-pypi>
Adam Gandelman0f73ff22014-03-13 14:20:43 -070032 elif is_fedora || is_suse; then
33 install_package kvm
Dean Troyer4533eee2015-02-17 16:25:38 -060034 install_package libvirt libvirt-devel
35 pip_install libvirt-python
Sean Dague206c5962015-03-30 13:56:11 -040036 install_package python-libguestfs
Adam Gandelman0f73ff22014-03-13 14:20:43 -070037 fi
Ian Wienand3ca91b22014-05-16 14:00:01 +100038
Ian Wienand83afcfe2014-06-12 08:47:50 +100039 # Restart firewalld after install of libvirt to avoid a problem
40 # with polkit, which libvirtd brings in. See
Ian Wienande6d99a92014-05-27 13:58:12 +100041 # https://bugzilla.redhat.com/show_bug.cgi?id=1099031
Ian Wienand83afcfe2014-06-12 08:47:50 +100042
43 # Note there is a difference between F20 rackspace cloud images
44 # and HP images used in the gate; rackspace has firewalld but hp
Attila Fazekas1f316be2015-01-26 16:39:57 +010045 # cloud doesn't.
Dean Troyer85ebb3a2014-08-19 10:54:59 -050046 if is_fedora && is_package_installed firewalld; then
Ian Wienand83afcfe2014-06-12 08:47:50 +100047 sudo service firewalld restart || true
Ian Wienand3ca91b22014-05-16 14:00:01 +100048 fi
Adam Gandelman0f73ff22014-03-13 14:20:43 -070049}
50
51# Configures the installed libvirt system so that is accessible by
52# STACK_USER via qemu:///system with management capabilities.
53function configure_libvirt {
54 if is_service_enabled neutron && is_neutron_ovs_base_plugin && ! sudo grep -q '^cgroup_device_acl' $QEMU_CONF; then
55 # Add /dev/net/tun to cgroup_device_acls, needed for type=ethernet interfaces
56 cat <<EOF | sudo tee -a $QEMU_CONF
57cgroup_device_acl = [
58 "/dev/null", "/dev/full", "/dev/zero",
59 "/dev/random", "/dev/urandom",
60 "/dev/ptmx", "/dev/kvm", "/dev/kqemu",
61 "/dev/rtc", "/dev/hpet","/dev/net/tun",
62]
63EOF
64 fi
65
Gonéri Le Boudera2143632014-09-17 11:55:31 +020066 # Since the release of Debian Wheezy the libvirt init script is libvirtd
67 # and not libvirtd-bin anymore.
68 if is_ubuntu && [ ! -f /etc/init.d/libvirtd ]; then
Adam Gandelman0f73ff22014-03-13 14:20:43 -070069 LIBVIRT_DAEMON=libvirt-bin
70 else
71 LIBVIRT_DAEMON=libvirtd
72 fi
73
74 if is_fedora || is_suse; then
Attila Fazekas1f316be2015-01-26 16:39:57 +010075 # Starting with fedora 18 and opensuse-12.3 enable stack-user to
76 # virsh -c qemu:///system by creating a policy-kit rule for
77 # stack-user using the new Javascript syntax
78 rules_dir=/etc/polkit-1/rules.d
79 sudo mkdir -p $rules_dir
80 cat <<EOF | sudo tee $rules_dir/50-libvirt-$STACK_USER.rules
Adam Gandelman0f73ff22014-03-13 14:20:43 -070081polkit.addRule(function(action, subject) {
82 if (action.id == 'org.libvirt.unix.manage' &&
83 subject.user == '$STACK_USER') {
84 return polkit.Result.YES;
85 }
86});
87EOF
Attila Fazekas1f316be2015-01-26 16:39:57 +010088 unset rules_dir
Adam Gandelman0f73ff22014-03-13 14:20:43 -070089 fi
90
91 # The user that nova runs as needs to be member of **libvirtd** group otherwise
92 # nova-compute will be unable to use libvirt.
93 if ! getent group $LIBVIRT_GROUP >/dev/null; then
94 sudo groupadd $LIBVIRT_GROUP
95 fi
96 add_user_to_group $STACK_USER $LIBVIRT_GROUP
97
98 # Enable server side traces for libvirtd
99 if [[ "$DEBUG_LIBVIRT" = "True" ]] ; then
Daniel P. Berrangea12f9962014-07-01 13:21:34 +0100100 if is_ubuntu; then
101 # Unexpectedly binary package builds in ubuntu get fully qualified
102 # source file paths, not relative paths. This screws with the matching
103 # of '1:libvirt' making everything turn on. So use libvirt.c for now.
104 # This will have to be re-visited when Ubuntu ships libvirt >= 1.2.3
Kashyap Chamarthyae7b4f92015-03-31 20:49:15 +0200105 local log_filters="1:libvirt.c 1:qemu 1:conf 1:security 3:object 3:event 3:json 3:file 1:util 1:qemu_monitor"
Daniel P. Berrangea12f9962014-07-01 13:21:34 +0100106 else
Kashyap Chamarthyae7b4f92015-03-31 20:49:15 +0200107 local log_filters="1:libvirt 1:qemu 1:conf 1:security 3:object 3:event 3:json 3:file 1:util 1:qemu_monitor"
Daniel P. Berrangea12f9962014-07-01 13:21:34 +0100108 fi
Adam Gandelman0f73ff22014-03-13 14:20:43 -0700109 local log_outputs="1:file:/var/log/libvirt/libvirtd.log"
110 if ! grep -q "log_filters=\"$log_filters\"" /etc/libvirt/libvirtd.conf; then
111 echo "log_filters=\"$log_filters\"" | sudo tee -a /etc/libvirt/libvirtd.conf
112 fi
113 if ! grep -q "log_outputs=\"$log_outputs\"" /etc/libvirt/libvirtd.conf; then
114 echo "log_outputs=\"$log_outputs\"" | sudo tee -a /etc/libvirt/libvirtd.conf
115 fi
116 fi
117
Clark Boylanedd60482015-03-27 09:19:57 -0700118 # Update the libvirt cpu map with a gate64 cpu model. This enables nova
119 # live migration for 64bit guest OSes on heterogenous cloud "hardware".
120 if [[ -f /usr/share/libvirt/cpu_map.xml ]] ; then
121 sudo $TOP_DIR/tools/cpu_map_update.py /usr/share/libvirt/cpu_map.xml
122 fi
123
Adam Gandelman0f73ff22014-03-13 14:20:43 -0700124 # libvirt detects various settings on startup, as we potentially changed
125 # the system configuration (modules, filesystems), we need to restart
Clark Boylanedd60482015-03-27 09:19:57 -0700126 # libvirt to detect those changes. Use a stop start as otherwise the new
127 # cpu_map is not loaded properly on some systems (Ubuntu).
128 stop_service $LIBVIRT_DAEMON
129 start_service $LIBVIRT_DAEMON
Adam Gandelman0f73ff22014-03-13 14:20:43 -0700130}
131
132
133# Restore xtrace
134$LV_XTRACE
135
136# Local variables:
137# mode: shell-script
138# End: