core-agent.spec.in 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  1. #
  2. # The Qubes OS Project, http://www.qubes-os.org
  3. #
  4. # Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
  5. # Copyright (C) 2010 Rafal Wojtczuk <rafal@invisiblethingslab.com>
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. #
  21. #
  22. %global with_sysvinit 0
  23. %define qubes_services qubes-core qubes-core-netvm qubes-core-early qubes-firewall qubes-iptables qubes-updates-proxy qubes-updates-proxy-forwarder
  24. %define qubes_preset_file 75-qubes-vm.preset
  25. %define scriptletfuns is_static() { \
  26. [ -f "%{_unitdir}/$1" ] && ! grep -q '^[[].nstall]' "%{_unitdir}/$1" \
  27. } \
  28. \
  29. is_masked() { \
  30. if [ ! -L %{_sysconfdir}/systemd/system/"$1" ] \
  31. then \
  32. return 1 \
  33. fi \
  34. target=`readlink %{_sysconfdir}/systemd/system/"$1" 2>/dev/null` || : \
  35. if [ "$target" = "/dev/null" ] \
  36. then \
  37. return 0 \
  38. fi \
  39. return 1 \
  40. } \
  41. \
  42. mask() { \
  43. ln -sf /dev/null %{_sysconfdir}/systemd/system/"$1" \
  44. } \
  45. \
  46. unmask() { \
  47. if ! is_masked "$1" \
  48. then \
  49. return 0 \
  50. fi \
  51. rm -f %{_sysconfdir}/systemd/system/"$1" \
  52. } \
  53. \
  54. preset_units() { \
  55. local represet= \
  56. cat "$1" | while read action unit_name \
  57. do \
  58. if [ "$action" = "#" -a "$unit_name" = "Units below this line will be re-preset on package upgrade" ] \
  59. then \
  60. represet=1 \
  61. continue \
  62. fi \
  63. echo "$action $unit_name" | grep -q '^[[:space:]]*[^#;]' || continue \
  64. [ -n "$action" -a -n "$unit_name" ] || continue \
  65. if [ "$2" = "initial" -o "$represet" = "1" ] \
  66. then \
  67. if [ "$action" = "disable" ] && is_static "$unit_name" \
  68. then \
  69. if ! is_masked "$unit_name" \
  70. then \
  71. # We must effectively mask these units, even if they are static. \
  72. mask "$unit_name" \
  73. fi \
  74. elif [ "$action" = "enable" ] && is_static "$unit_name" \
  75. then \
  76. if is_masked "$unit_name" \
  77. then \
  78. # We masked this static unit before, now we unmask it. \
  79. unmask "$unit_name" \
  80. fi \
  81. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  82. else \
  83. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  84. fi \
  85. fi \
  86. done \
  87. } \
  88. \
  89. restore_units() { \
  90. grep '^[[:space:]]*[^#;]' "$1" | while read action unit_name \
  91. do \
  92. if is_static "$unit_name" && is_masked "$unit_name" \
  93. then \
  94. # If the unit had been masked by us, we must unmask it here. \
  95. # Otherwise systemctl preset will fail badly. \
  96. unmask "$unit_name" \
  97. fi \
  98. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  99. done \
  100. } \
  101. Name: qubes-core-agent
  102. Version: @VERSION@
  103. Release: 1%{dist}
  104. Summary: The Qubes core files for VM
  105. Group: Qubes
  106. Vendor: Invisible Things Lab
  107. License: GPL
  108. URL: http://www.qubes-os.org
  109. Conflicts: firewalld
  110. Requires: xdg-utils
  111. Requires: qubes-utils >= 3.1.3
  112. Requires: qubes-utils-libs >= 4.0.16
  113. Requires: initscripts
  114. Requires: gawk
  115. Requires: sed
  116. Requires: util-linux
  117. Requires: e2fsprogs
  118. Requires: hostname
  119. # for Qubes Manager VM updater
  120. Requires: xterm
  121. # for qubes-desktop-run
  122. Requires: python%{python3_pkgversion}-gobject-base
  123. Requires: python%{python3_pkgversion}-dbus
  124. # for qubes-session-autostart, xdg-icon
  125. Requires: python%{python3_pkgversion}-pyxdg
  126. Requires: python%{python3_pkgversion}-daemon
  127. # for qvm-feature-request
  128. Requires: python%{python3_pkgversion}-qubesdb
  129. Requires: ImageMagick
  130. Requires: librsvg2-tools
  131. Requires: zenity
  132. Requires: dconf
  133. Requires: qubes-core-qrexec-vm
  134. Requires: qubes-libvchan
  135. Requires: qubes-db-vm
  136. Requires: python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  137. Requires: python%{python3_pkgversion}-setuptools
  138. # for qubes.ResizeDisk
  139. Requires: parted
  140. Obsoletes: qubes-core-vm-kernel-placeholder <= 1.0
  141. Obsoletes: qubes-upgrade-vm < 3.2
  142. Provides: qubes-core-vm = %{version}-%{release}
  143. Obsoletes: qubes-core-vm < 4.0.0
  144. Provides: qubes-core-vm-doc = %{version}-%{release}
  145. Obsoletes: qubes-core-vm-doc < 4.0.0
  146. Conflicts: qubes-gui-agent < 4.1.6
  147. BuildRequires: gcc
  148. BuildRequires: pandoc
  149. BuildRequires: xen-devel
  150. BuildRequires: libX11-devel
  151. BuildRequires: qubes-utils-devel >= 3.1.3
  152. BuildRequires: qubes-libvchan-@BACKEND_VMM@-devel
  153. BuildRequires: pam-devel
  154. BuildRequires: python%{python3_pkgversion}-setuptools
  155. BuildRequires: systemd
  156. Source0: %{name}-%{version}.tar.gz
  157. %description
  158. The Qubes core files for installation inside a Qubes VM.
  159. %package -n python2-dnf-plugins-qubes-hooks
  160. Summary: DNF plugin for Qubes specific post-installation actions
  161. BuildRequires: python2-devel
  162. %{?python_provide:%python_provide python2-dnf-plugins-qubes-hooks}
  163. %description -n python2-dnf-plugins-qubes-hooks
  164. DNF plugin for Qubes specific post-installation actions:
  165. * notify dom0 that updates were installed
  166. * refresh applications shortcut list
  167. %package -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  168. Summary: DNF plugin for Qubes specific post-installation actions
  169. BuildRequires: python%{python3_pkgversion}-devel
  170. %{?python_provide:%python_provide python%{python3_pkgversion}-dnf-plugins-qubes-hooks}
  171. %description -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  172. DNF plugin for Qubes specific post-installation actions:
  173. * notify dom0 that updates were installed
  174. * refresh applications shortcut list
  175. %package nautilus
  176. Summary: Qubes integration for Nautilus
  177. Requires: qubes-core-agent = %{version}
  178. Requires: nautilus-python
  179. Conflicts: qubes-core-vm < 4.0.0
  180. %description nautilus
  181. Nautilus addons for inter-VM file copy/move/open.
  182. %package dom0-updates
  183. Summary: Scripts required to handle dom0 updates
  184. Requires: qubes-core-agent = %{version}
  185. Requires: fakeroot
  186. Conflicts: qubes-core-vm < 4.0.0
  187. Requires: tar
  188. %description dom0-updates
  189. Scripts required to handle dom0 updates.
  190. %package networking
  191. Summary: Networking support for Qubes VM
  192. Requires: ethtool
  193. Requires: iptables
  194. Requires: net-tools
  195. Requires: iproute
  196. Requires: nftables
  197. Requires: socat
  198. Requires: qubes-core-agent = %{version}
  199. Requires: tinyproxy
  200. Conflicts: qubes-core-vm < 4.0.0
  201. %description networking
  202. This package provides:
  203. * basic network functionality (setting IP address, DNS, default gateway)
  204. * proxy service used by TemplateVMs to download updates
  205. * qubes-firewall service (FirewallVM)
  206. Note: if you want to use NetworkManager (you do want it in NetVM), install also
  207. qubes-core-agent-network-manager.
  208. %package network-manager
  209. Summary: NetworkManager integration for Qubes VM
  210. # to show/hide nm-applet
  211. Requires: NetworkManager >= 0.8.1-1
  212. Requires: glib2
  213. Requires: polkit
  214. Requires: qubes-core-agent-networking = %{version}
  215. Conflicts: qubes-core-vm < 4.0.0
  216. %description network-manager
  217. Integration of NetworkManager for Qubes VM:
  218. * make connections config persistent
  219. * adjust DNS redirections when needed
  220. * show/hide NetworkManager applet icon
  221. %package passwordless-root
  222. Summary: Passwordless root access from normal user
  223. Conflicts: qubes-core-vm < 4.0.0
  224. %description passwordless-root
  225. Configure sudo, PolicyKit and similar tool to not ask for any password when
  226. switching from user to root. Since all the user data in a VM is accessible
  227. already from normal user account, there is not much more to guard there. Qubes
  228. VM is a single user system.
  229. %package thunar
  230. Summary: Thunar support for Qubes VM tools
  231. Requires: Thunar
  232. %description thunar
  233. Thunar support for Qubes VM tools
  234. %define kde_service_dir /usr/share/kde4/services
  235. %define kde5_service_dir /usr/share/kservices5/ServiceMenus
  236. %prep
  237. %setup -q
  238. %build
  239. %{?set_build_flags}
  240. for dir in qubes-rpc misc; do
  241. make -C $dir BACKEND_VMM=@BACKEND_VMM@
  242. done
  243. make -C doc manpages
  244. %pre
  245. # Make sure there is a qubes group
  246. groupadd --force --system --gid 98 qubes
  247. id -u 'user' >/dev/null 2>&1 || {
  248. useradd --user-group --create-home --shell /bin/bash user
  249. }
  250. usermod -a --groups qubes user
  251. if [ "$1" != 1 ] ; then
  252. # do this whole %%pre thing only when updating for the first time...
  253. exit 0
  254. fi
  255. mkdir -p /var/lib/qubes
  256. if [ -e /etc/fstab ] ; then
  257. mv /etc/fstab /var/lib/qubes/fstab.orig
  258. fi
  259. usermod -L user
  260. %pre passwordless-root
  261. usermod -L root
  262. %install
  263. make install-vm DESTDIR=$RPM_BUILD_ROOT
  264. make -C app-menu DESTDIR=$RPM_BUILD_ROOT install
  265. make -C boot/redhat DESTDIR=$RPM_BUILD_ROOT install
  266. make -C config-overrides DESTDIR=$RPM_BUILD_ROOT install
  267. make -C filesystem DESTDIR=$RPM_BUILD_ROOT install
  268. make -C misc DESTDIR=$RPM_BUILD_ROOT install
  269. make -C network DESTDIR=$RPM_BUILD_ROOT install
  270. make -C passwordless-root DESTDIR=$RPM_BUILD_ROOT install install-rh
  271. make -C qubes-rpc DESTDIR=$RPM_BUILD_ROOT install
  272. make -C qubes-rpc/kde DESTDIR=$RPM_BUILD_ROOT install
  273. make -C qubes-rpc/nautilus DESTDIR=$RPM_BUILD_ROOT install
  274. make -C qubes-rpc/thunar DESTDIR=$RPM_BUILD_ROOT install
  275. %if %with_sysvinit
  276. install DESTDIR=$RPM_BUILD_ROOT install-sysvinit
  277. %endif
  278. make -C package-managers DESTDIR=$RPM_BUILD_ROOT install install-dnf
  279. %if 0%{?rhel} == 7
  280. make -C package-managers DESTDIR=$RPM_BUILD_ROOT install-yum
  281. %endif
  282. %if 0%{?rhel} >= 7
  283. sed -i \
  284. -e 's:-primary:-centos:' \
  285. -e 's:/fc:/centos:' \
  286. $RPM_BUILD_ROOT/etc/yum.repos.d/qubes-*.repo
  287. %endif
  288. install -D -m 0644 boot/dracut-qubes.conf $RPM_BUILD_ROOT/usr/lib/dracut/dracut.conf.d/30-qubes.conf
  289. install -D -m 0644 boot/grub.qubes $RPM_BUILD_ROOT/etc/default/grub.qubes
  290. %triggerin -- initscripts
  291. if [ -e /etc/init/serial.conf ]; then
  292. cp /usr/share/qubes/serial.conf /etc/init/serial.conf
  293. fi
  294. %triggerin -- grub2-tools
  295. if ! grep -q /etc/default/grub.qubes /etc/default/grub 2>/dev/null; then
  296. # do not keep Qubes-related settings directly in user-controlled config,
  297. # include another file
  298. echo '. /etc/default/grub.qubes' >> /etc/default/grub
  299. fi
  300. %triggerin passwordless-root -- util-linux
  301. qubesfile=/etc/pam.d/su.qubes
  302. origfile=${qubesfile%.qubes}
  303. backupfile=${origfile}.qubes-orig
  304. if [ -r "$origfile" -a ! -r "$backupfile" ]; then
  305. mv -f "$origfile" "$backupfile"
  306. fi
  307. ln -sf "$qubesfile" "$origfile"
  308. %post
  309. # disable some Upstart services
  310. for F in plymouth-shutdown prefdm splash-manager start-ttys tty ; do
  311. if [ -e /etc/init/$F.conf ]; then
  312. mv -f /etc/init/$F.conf /etc/init/$F.conf.disabled
  313. fi
  314. done
  315. chgrp user /var/lib/qubes/dom0-updates
  316. # Remove old firmware updates link
  317. if [ -L /lib/firmware/updates ]; then
  318. rm -f /lib/firmware/updates
  319. fi
  320. # convert /usr/local symlink to a mount point
  321. if [ -L /usr/local ]; then
  322. rm -f /usr/local
  323. mkdir /usr/local
  324. mount /usr/local || :
  325. fi
  326. # workaround for Fedora's systemd package bug
  327. # https://bugzilla.redhat.com/1559286
  328. if [ -d /var/lib/private ]; then
  329. chmod 700 /var/lib/private
  330. fi
  331. if test -f /etc/yum.conf && ! grep -q '/etc/yum\.conf\.d/qubes-proxy\.conf' /etc/yum.conf; then
  332. echo >> /etc/yum.conf
  333. echo '# Yum does not support inclusion of config dir...' >> /etc/yum.conf
  334. echo 'include=file:///etc/yum.conf.d/qubes-proxy.conf' >> /etc/yum.conf
  335. fi
  336. if ! [ -r /etc/dconf/profile/user ]; then
  337. mkdir -p /etc/dconf/profile
  338. echo "user-db:user" >> /etc/dconf/profile/user
  339. echo "system-db:local" >> /etc/dconf/profile/user
  340. fi
  341. dconf update &> /dev/null || :
  342. # And actually setup the proxy usage in package managers
  343. /usr/lib/qubes/update-proxy-configs
  344. # Location of files which contains list of protected files
  345. mkdir -p /etc/qubes/protected-files.d
  346. . /usr/lib/qubes/init/functions
  347. # qubes-core-vm has been broken for some time - it overrides /etc/hosts; restore original content
  348. if ! is_protected_file /etc/hosts ; then
  349. if ! grep -q localhost /etc/hosts; then
  350. cat <<EOF > /etc/hosts
  351. 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 `hostname`
  352. ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
  353. EOF
  354. fi
  355. fi
  356. # ensure that hostname resolves to 127.0.0.1 resp. ::1 and that /etc/hosts is
  357. # in the form expected by qubes-sysinit.sh
  358. if ! is_protected_file /etc/hostname ; then
  359. for ip in '127\.0\.0\.1' '::1'; do
  360. if grep -q "^${ip}\(\s\|$\)" /etc/hosts; then
  361. sed -i "/^${ip}\s/,+0s/\(\s`hostname`\)\+\(\s\|$\)/\2/g" /etc/hosts
  362. sed -i "s/^${ip}\(\s\|$\).*$/\0 `hostname`/" /etc/hosts
  363. else
  364. echo "${ip} `hostname`" >> /etc/hosts
  365. fi
  366. done
  367. fi
  368. if [ "$1" != 1 ] ; then
  369. # do the rest of %%post thing only when updating for the first time...
  370. exit 0
  371. fi
  372. if [ -e /etc/init/serial.conf ] && ! [ -f /var/lib/qubes/serial.orig ] ; then
  373. cp /etc/init/serial.conf /var/lib/qubes/serial.orig
  374. fi
  375. # Remove most of the udev scripts to speed up the VM boot time
  376. # Just leave the xen* scripts, that are needed if this VM was
  377. # ever used as a net backend (e.g. as a VPN domain in the future)
  378. #echo "--> Removing unnecessary udev scripts..."
  379. mkdir -p /var/lib/qubes/removed-udev-scripts
  380. for f in /etc/udev/rules.d/*
  381. do
  382. if [ $(basename $f) == "xen-backend.rules" ] ; then
  383. continue
  384. fi
  385. if echo $f | grep -q qubes; then
  386. continue
  387. fi
  388. mv $f /var/lib/qubes/removed-udev-scripts/
  389. done
  390. mkdir -p /rw
  391. #rm -f /etc/mtab
  392. #echo "--> Removing HWADDR setting from /etc/sysconfig/network-scripts/ifcfg-eth0"
  393. #mv /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0.orig
  394. #grep -v HWADDR /etc/sysconfig/network-scripts/ifcfg-eth0.orig > /etc/sysconfig/network-scripts/ifcfg-eth0
  395. %triggerin -- notification-daemon
  396. # Enable autostart of notification-daemon when installed
  397. if [ ! -e /etc/xdg/autostart/notification-daemon.desktop ]; then
  398. ln -s /usr/share/applications/notification-daemon.desktop /etc/xdg/autostart/
  399. fi
  400. exit 0
  401. %triggerin -- selinux-policy
  402. #echo "--> Disabling SELinux..."
  403. sed -e s/^SELINUX=.*$/SELINUX=disabled/ </etc/selinux/config >/etc/selinux/config.processed
  404. mv /etc/selinux/config.processed /etc/selinux/config
  405. setenforce 0 2>/dev/null
  406. exit 0
  407. %post network-manager
  408. # Create NetworkManager configuration if we do not have it
  409. if ! [ -e /etc/NetworkManager/NetworkManager.conf ]; then
  410. echo '[main]' > /etc/NetworkManager/NetworkManager.conf
  411. echo 'plugins = keyfile' >> /etc/NetworkManager/NetworkManager.conf
  412. echo '[keyfile]' >> /etc/NetworkManager/NetworkManager.conf
  413. fi
  414. # Remove ip_forward setting from sysctl, so NM will not reset it
  415. sed 's/^net.ipv4.ip_forward.*/#\0/' -i /etc/sysctl.conf
  416. /usr/lib/qubes/qubes-fix-nm-conf.sh
  417. %post networking
  418. %systemd_post qubes-firewall.service
  419. %systemd_post qubes-iptables.service
  420. %systemd_post qubes-network.service
  421. %systemd_post qubes-updates-proxy.service
  422. %post thunar
  423. if [ "$1" = 1 ]; then
  424. # There is no system-wide Thunar custom actions. There is only a default
  425. # file and a user file created from the default one. Qubes actions need
  426. # to be placed after all already defined actions and before </actions>
  427. # the end of file.
  428. if [ -f /etc/xdg/Thunar/uca.xml ] ; then
  429. cp -p /etc/xdg/Thunar/uca.xml{,.bak}
  430. sed -i '$e cat /usr/lib/qubes/uca_qubes.xml' /etc/xdg/Thunar/uca.xml
  431. fi
  432. if [ -f /home/user/.config/Thunar/uca.xml ] ; then
  433. cp -p /home/user/.config/Thunar/uca.xml{,.bak}
  434. sed -i '$e cat /usr/lib/qubes/uca_qubes.xml' /home/user/.config/Thunar/uca.xml
  435. fi
  436. fi
  437. %preun
  438. if [ "$1" = 0 ] ; then
  439. # no more packages left
  440. if [ -e /var/lib/qubes/fstab.orig ] ; then
  441. mv /var/lib/qubes/fstab.orig /etc/fstab
  442. fi
  443. mv /var/lib/qubes/removed-udev-scripts/* /etc/udev/rules.d/
  444. if [ -e /var/lib/qubes/serial.orig ] ; then
  445. mv /var/lib/qubes/serial.orig /etc/init/serial.conf
  446. fi
  447. fi
  448. %preun networking
  449. %systemd_preun qubes-firewall.service
  450. %systemd_preun qubes-iptables.service
  451. %systemd_preun qubes-network.service
  452. %systemd_preun qubes-updates-proxy.service
  453. %postun thunar
  454. if [ "$1" = 0 ]; then
  455. if [ -f /etc/xdg/Thunar/uca.xml ] ; then
  456. mv /etc/xdg/Thunar/uca.xml{,.uninstall}
  457. mv /etc/xdg/Thunar/uca.xml{.bak,}
  458. fi
  459. if [ -f /home/user/.config/Thunar/uca.xml ] ; then
  460. mv /home/user/.config/Thunar/uca.xml{,.uninstall}
  461. mv /home/user/.config/Thunar/uca.xml{.bak,}
  462. fi
  463. fi
  464. %postun
  465. if [ $1 -eq 0 ] ; then
  466. /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  467. if [ -L /lib/firmware/updates ]; then
  468. rm /lib/firmware/updates
  469. fi
  470. rm -rf /var/lib/qubes/xdg
  471. fi
  472. %postun passwordless-root
  473. if [ $1 -eq 0 ]; then
  474. usermod -p '*' root
  475. fi
  476. qubesfile=/etc/pam.d/su.qubes
  477. origfile=${qubesfile%.qubes}
  478. backupfile=${origfile}.qubes-orig
  479. if [ -f "$backupfile" ]; then
  480. mv -f "$backupfile" "$origfile"
  481. fi
  482. %posttrans
  483. /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  484. %clean
  485. rm -rf $RPM_BUILD_ROOT
  486. rm -f %{name}-%{version}
  487. %files
  488. %defattr(-,root,root,-)
  489. %dir /var/lib/qubes
  490. %{kde_service_dir}/qvm-copy.desktop
  491. %{kde_service_dir}/qvm-move.desktop
  492. %{kde_service_dir}/qvm-dvm.desktop
  493. %{kde5_service_dir}/qvm-copy.desktop
  494. %{kde5_service_dir}/qvm-move.desktop
  495. %{kde5_service_dir}/qvm-dvm.desktop
  496. /etc/fstab
  497. /etc/pki/rpm-gpg/RPM-GPG-KEY-qubes*
  498. %dir /etc/qubes-rpc
  499. %config(noreplace) /etc/qubes-rpc/qubes.ShowInTerminal
  500. %config(noreplace) /etc/qubes-rpc/qubes.Filecopy
  501. %config(noreplace) /etc/qubes-rpc/qubes.OpenInVM
  502. %config(noreplace) /etc/qubes-rpc/qubes.OpenURL
  503. %config(noreplace) /etc/qubes-rpc/qubes.GetAppmenus
  504. %config(noreplace) /etc/qubes-rpc/qubes.ConnectTCP
  505. %config(noreplace) /etc/qubes-rpc/qubes.VMShell
  506. %config(noreplace) /etc/qubes-rpc/qubes.VMExec
  507. %config(noreplace) /etc/qubes-rpc/qubes.VMExecGUI
  508. %config(noreplace) /etc/qubes-rpc/qubes.VMRootShell
  509. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPre
  510. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPreAll
  511. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPost
  512. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPostAll
  513. %config(noreplace) /etc/qubes-rpc/qubes.WaitForSession
  514. %config(noreplace) /etc/qubes-rpc/qubes.DetachPciDevice
  515. %config(noreplace) /etc/qubes-rpc/qubes.Backup
  516. %config(noreplace) /etc/qubes-rpc/qubes.Restore
  517. %config(noreplace) /etc/qubes-rpc/qubes.RegisterBackupLocation
  518. %config(noreplace) /etc/qubes-rpc/qubes.RestoreById
  519. %config(noreplace) /etc/qubes-rpc/qubes.SelectFile
  520. %config(noreplace) /etc/qubes-rpc/qubes.SelectDirectory
  521. %config(noreplace) /etc/qubes-rpc/qubes.GetImageRGBA
  522. %config(noreplace) /etc/qubes-rpc/qubes.SetDateTime
  523. %config(noreplace) /etc/qubes-rpc/qubes.InstallUpdatesGUI
  524. %config(noreplace) /etc/qubes-rpc/qubes.ResizeDisk
  525. %config(noreplace) /etc/qubes-rpc/qubes.StartApp
  526. %config(noreplace) /etc/qubes-rpc/qubes.PostInstall
  527. %config(noreplace) /etc/qubes-rpc/qubes.GetDate
  528. %config(noreplace) /etc/qubes/rpc-config/qubes.OpenInVM
  529. %config(noreplace) /etc/qubes/rpc-config/qubes.OpenURL
  530. %config(noreplace) /etc/qubes/rpc-config/qubes.SelectFile
  531. %config(noreplace) /etc/qubes/rpc-config/qubes.SelectDirectory
  532. %config(noreplace) /etc/qubes/rpc-config/qubes.ShowInTerminal
  533. %config(noreplace) /etc/qubes/rpc-config/qubes.StartApp
  534. %config(noreplace) /etc/qubes/rpc-config/qubes.InstallUpdatesGUI
  535. %config(noreplace) /etc/qubes/rpc-config/qubes.VMShell+WaitForSession
  536. %config(noreplace) /etc/qubes/rpc-config/qubes.VMExecGUI
  537. %config(noreplace) /etc/default/grub.qubes
  538. %dir /etc/qubes/autostart
  539. /etc/qubes/autostart/README.txt
  540. %config /etc/qubes/autostart/*.desktop.d/30_qubes.conf
  541. %dir /etc/qubes/applications
  542. /etc/qubes/applications/README.txt
  543. %config /etc/qubes/applications/*.desktop.d/30_qubes.conf
  544. %dir /etc/qubes/suspend-pre.d
  545. /etc/qubes/suspend-pre.d/README
  546. %dir /etc/qubes/suspend-post.d
  547. /etc/qubes/suspend-post.d/README
  548. /etc/qubes/suspend-post.d/qvm-sync-clock.sh
  549. %dir /etc/qubes/post-install.d
  550. /etc/qubes/post-install.d/README
  551. /etc/qubes/post-install.d/*.sh
  552. %config(noreplace) /etc/profile.d/qt_x11_no_mitshm.sh
  553. %config(noreplace) /etc/sudoers.d/qt_x11_no_mitshm
  554. %config(noreplace) /etc/sudoers.d/umask
  555. %config(noreplace) /etc/sysctl.d/20_tcp_timestamps.conf
  556. %config(noreplace) /etc/qubes-suspend-module-blacklist
  557. %config(noreplace) /etc/yum.conf.d/qubes-proxy.conf
  558. %config(noreplace) /etc/yum.repos.d/qubes-r4.repo
  559. %if 0%{?rhel} == 7
  560. /etc/yum/pluginconf.d/yum-qubes-hooks.conf
  561. /usr/lib/yum-plugins/yum-qubes-hooks.py*
  562. %endif
  563. %config(noreplace) /etc/dnf/plugins/qubes-hooks.conf
  564. %config(noreplace) /etc/dconf/db/local.d/dpi
  565. /lib/udev/rules.d/50-qubes-mem-hotplug.rules
  566. /usr/lib/systemd/system/user@.service.d/90-session-stop-timeout.conf
  567. /usr/sbin/qubes-serial-login
  568. /usr/bin/qvm-copy-to-vm
  569. /usr/bin/qvm-move-to-vm
  570. /usr/bin/qvm-copy
  571. /usr/bin/qvm-move
  572. /usr/bin/qvm-open-in-dvm
  573. /usr/bin/qvm-open-in-vm
  574. /usr/bin/qvm-run-vm
  575. /usr/bin/qvm-features-request
  576. /usr/bin/qvm-sync-clock
  577. /usr/bin/qubes-desktop-run
  578. /usr/bin/qubes-run-terminal
  579. /usr/bin/qubes-run-gnome-terminal
  580. /usr/bin/qubes-open
  581. /usr/bin/qubes-session-autostart
  582. /usr/bin/qvm-connect-tcp
  583. /usr/bin/qubes-vmexec
  584. %dir /usr/lib/qubes
  585. /usr/lib/qubes/prepare-suspend
  586. /usr/lib/qubes/qfile-agent
  587. %attr(4755,root,root) /usr/lib/qubes/qfile-unpacker
  588. /usr/lib/qubes/qopen-in-vm
  589. /usr/lib/qubes/qrun-in-vm
  590. /usr/lib/qubes/qubes-trigger-sync-appmenus.sh
  591. /usr/lib/qubes/qvm-copy-to-vm.kde
  592. /usr/lib/qubes/qvm-move-to-vm.kde
  593. /usr/lib/qubes/tar2qfile
  594. /usr/lib/qubes/vm-file-editor
  595. /usr/lib/qubes/xdg-icon
  596. /usr/lib/qubes/update-proxy-configs
  597. /usr/lib/qubes/upgrades-installed-check
  598. /usr/lib/qubes/upgrades-status-notify
  599. /usr/lib/qubes/qubes-sync-clock
  600. /usr/lib/qubes/resize-rootfs
  601. /usr/lib/qubes/tinyproxy-wrapper
  602. /usr/lib/dracut/dracut.conf.d/30-qubes.conf
  603. %dir /usr/lib/qubes/init
  604. /usr/lib/qubes/init/bind-dirs.sh
  605. /usr/lib/qubes/init/control-printer-icon.sh
  606. /usr/lib/qubes/init/functions
  607. /usr/lib/qubes/init/misc-post-stop.sh
  608. /usr/lib/qubes/init/misc-post.sh
  609. /usr/lib/qubes/init/mount-dirs.sh
  610. /usr/lib/qubes/init/qubes-early-vm-config.sh
  611. /usr/lib/qubes/init/qubes-random-seed.sh
  612. /usr/lib/qubes/init/qubes-sysinit.sh
  613. /usr/lib/qubes/init/resize-rootfs-if-needed.sh
  614. /usr/lib/qubes/init/setup-rw.sh
  615. /usr/lib/qubes/init/setup-rwdev.sh
  616. %dir /usr/lib/qubes-bind-dirs.d
  617. /usr/lib/qubes-bind-dirs.d/30_cron.conf
  618. /usr/share/applications/qubes-run-terminal.desktop
  619. /usr/share/applications/qubes-open-file-manager.desktop
  620. /usr/share/qubes/serial.conf
  621. /usr/share/qubes/marker-vm
  622. /usr/share/glib-2.0/schemas/20_org.gnome.settings-daemon.plugins.updates.qubes.gschema.override
  623. /usr/share/glib-2.0/schemas/20_org.gnome.nautilus.qubes.gschema.override
  624. /usr/share/glib-2.0/schemas/20_org.mate.NotificationDaemon.qubes.gschema.override
  625. /usr/share/glib-2.0/schemas/20_org.gnome.desktop.wm.preferences.qubes.gschema.override
  626. %{_mandir}/man1/qvm-*.1*
  627. %dir %{python3_sitelib}/qubesagent-*-py*.egg-info
  628. %{python3_sitelib}/qubesagent-*-py*.egg-info/*
  629. %{python3_sitelib}/qubesagent/__pycache__
  630. %dir %{python3_sitelib}/qubesagent
  631. %{python3_sitelib}/qubesagent/__init__.py*
  632. %{python3_sitelib}/qubesagent/firewall.py*
  633. %{python3_sitelib}/qubesagent/test_firewall.py*
  634. %{python3_sitelib}/qubesagent/vmexec.py*
  635. %{python3_sitelib}/qubesagent/test_vmexec.py*
  636. %{python3_sitelib}/qubesagent/xdg.py*
  637. %{python3_sitelib}/qubesagent/test_xdg.py*
  638. /usr/share/qubes/mime-override/globs
  639. /usr/share/qubes/qubes-master-key.asc
  640. %dir /mnt/removable
  641. %dir /rw
  642. %files -n python2-dnf-plugins-qubes-hooks
  643. %{python2_sitelib}/dnf-plugins/*
  644. %files -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  645. %{python3_sitelib}/dnf-plugins/*
  646. %files nautilus
  647. /usr/lib/qubes/qvm-copy-to-vm.gnome
  648. /usr/lib/qubes/qvm-move-to-vm.gnome
  649. /usr/share/nautilus-python/extensions/qvm_copy_nautilus.py*
  650. /usr/share/nautilus-python/extensions/qvm_move_nautilus.py*
  651. /usr/share/nautilus-python/extensions/qvm_dvm_nautilus.py*
  652. /usr/lib/qubes/qvm_nautilus_bookmark.sh
  653. %files thunar
  654. /usr/lib/qubes/qvm-actions.sh
  655. /usr/lib/qubes/uca_qubes.xml
  656. /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
  657. %files dom0-updates
  658. %dir %attr(0775,user,user) /var/lib/qubes/dom0-updates
  659. /usr/lib/qubes/qubes-download-dom0-updates.sh
  660. %files networking
  661. %config(noreplace) /etc/qubes-rpc/qubes.UpdatesProxy
  662. %config(noreplace) /etc/qubes/ip6tables.rules
  663. %config(noreplace) /etc/qubes/ip6tables-enabled.rules
  664. %config(noreplace) /etc/qubes/iptables.rules
  665. %config(noreplace) /etc/tinyproxy/tinyproxy-updates.conf
  666. %config(noreplace) /etc/tinyproxy/updates-blacklist
  667. %config(noreplace) /etc/udev/rules.d/99-qubes-network.rules
  668. /etc/dhclient.d/qubes-setup-dnat-to-ns.sh
  669. /etc/xen/scripts/vif-qubes-nat.sh
  670. /etc/xen/scripts/vif-route-qubes
  671. /lib/systemd/system/qubes-firewall.service
  672. /lib/systemd/system/qubes-iptables.service
  673. /lib/systemd/system/qubes-network.service
  674. /lib/systemd/system/qubes-updates-proxy.service
  675. /usr/lib/qubes/init/network-proxy-setup.sh
  676. /usr/lib/qubes/init/qubes-iptables
  677. /usr/lib/qubes/iptables-updates-proxy
  678. /usr/lib/qubes/qubes-setup-dnat-to-ns
  679. /usr/lib/qubes/setup-ip
  680. /usr/lib/tmpfiles.d/qubes-core-agent-linux.conf
  681. /usr/bin/qubes-firewall
  682. %files network-manager
  683. /etc/NetworkManager/dispatcher.d/30-qubes-external-ip
  684. /etc/NetworkManager/dispatcher.d/qubes-nmhook
  685. /etc/xdg/autostart/00-qubes-show-hide-nm-applet.desktop
  686. /usr/lib/NetworkManager/conf.d/30-qubes.conf
  687. /usr/lib/qubes/network-manager-prepare-conf-dir
  688. /usr/lib/qubes/qubes-fix-nm-conf.sh
  689. /usr/lib/qubes/show-hide-nm-applet.sh
  690. %files passwordless-root
  691. %config(noreplace) /etc/polkit-1/localauthority/50-local.d/qubes-allow-all.pkla
  692. %config(noreplace) /etc/polkit-1/rules.d/00-qubes-allow-all.rules
  693. %config(noreplace) /etc/sudoers.d/qubes
  694. %config(noreplace) /etc/pam.d/su.qubes
  695. %if %with_sysvinit
  696. %package sysvinit
  697. Summary: Qubes unit files for SysV init style or upstart
  698. License: GPL v2 only
  699. Group: Qubes
  700. Requires: upstart
  701. Requires: qubes-core-agent = %{version}
  702. Requires: qubes-core-qrexec-vm
  703. Requires: qubes-core-agent-networking = %{version}
  704. Provides: qubes-core-agent-init-scripts
  705. Conflicts: qubes-core-agent-systemd
  706. Provides: qubes-core-vm-sysvinit = %{version}-%{release}
  707. Obsoletes: qubes-core-vm-sysvinit < 4.0.0
  708. %description sysvinit
  709. The Qubes core startup configuration for SysV init (or upstart).
  710. %files sysvinit
  711. /etc/init.d/qubes-sysinit
  712. /etc/init.d/qubes-core-early
  713. /etc/init.d/qubes-core
  714. /etc/init.d/qubes-core-netvm
  715. /etc/init.d/qubes-firewall
  716. /etc/init.d/qubes-iptables
  717. /etc/init.d/qubes-updates-proxy
  718. /etc/init.d/qubes-updates-proxy-forwarder
  719. /etc/sysconfig/modules/qubes-core.modules
  720. %post sysvinit
  721. #echo "--> Turning off unnecessary services..."
  722. # FIXME: perhaps there is more elegant way to do this?
  723. for f in /etc/init.d/*
  724. do
  725. srv=`basename $f`
  726. [ $srv = 'functions' ] && continue
  727. [ $srv = 'killall' ] && continue
  728. [ $srv = 'halt' ] && continue
  729. [ $srv = 'single' ] && continue
  730. [ $srv = 'reboot' ] && continue
  731. [ $srv = 'qubes-gui' ] && continue
  732. chkconfig $srv off
  733. done
  734. #echo "--> Enabling essential services..."
  735. chkconfig rsyslog on
  736. chkconfig haldaemon on
  737. chkconfig messagebus on
  738. for svc in %qubes_services ; do
  739. if [ "$1" = 1 ] ; then
  740. chkconfig --add $svc || echo "WARNING: Cannot add service $svc!"
  741. else
  742. chkconfig $svc resetpriorities || echo "WARNING: Cannot reset priorities of service $svc!"
  743. fi
  744. done
  745. # TODO: make this not display the silly message about security context...
  746. sed -i s/^id:.:initdefault:/id:3:initdefault:/ /etc/inittab
  747. %preun sysvinit
  748. if [ "$1" = 0 ] ; then
  749. # no more packages left
  750. for svc in %qubes_services ; do
  751. chkconfig --del $svc
  752. done
  753. fi
  754. %endif
  755. %package systemd
  756. Summary: Qubes unit files for SystemD init style
  757. License: GPL v2 only
  758. Group: Qubes
  759. Requires: systemd
  760. Requires(post): systemd-units
  761. Requires(preun): systemd-units
  762. Requires(postun): systemd-units
  763. Requires: qubes-core-agent = %{version}
  764. Provides: qubes-core-agent-init-scripts
  765. Conflicts: qubes-core-agent-sysvinit
  766. Provides: qubes-core-vm-systemd = %{version}-%{release}
  767. Obsoletes: qubes-core-vm-systemd < 4.0.0
  768. Conflicts: qubes-gui-agent < 4.1.0
  769. %description systemd
  770. The Qubes core startup configuration for SystemD init.
  771. %files systemd
  772. %defattr(-,root,root,-)
  773. /etc/systemd/system/xendriverdomain.service
  774. /lib/systemd/system/qubes-misc-post.service
  775. /lib/systemd/system/qubes-mount-dirs.service
  776. /lib/systemd/system/qubes-rootfs-resize.service
  777. /lib/systemd/system/qubes-sysinit.service
  778. /lib/systemd/system/qubes-early-vm-config.service
  779. /lib/systemd/system/qubes-update-check.service
  780. /lib/systemd/system/qubes-update-check.timer
  781. /lib/systemd/system/qubes-sync-time.service
  782. /lib/systemd/system/qubes-sync-time.timer
  783. /lib/systemd/system/qubes-updates-proxy-forwarder@.service
  784. /lib/systemd/system/qubes-updates-proxy-forwarder.socket
  785. /lib/systemd/system-preset/%qubes_preset_file
  786. /lib/modules-load.d/qubes-core.conf
  787. /lib/systemd/system/boot.automount.d/30_qubes.conf
  788. /lib/systemd/system/chronyd.service.d/30_qubes.conf
  789. /lib/systemd/system/crond.service.d/30_qubes.conf
  790. /lib/systemd/system/cups.service.d/30_qubes.conf
  791. /lib/systemd/system/cups.socket.d/30_qubes.conf
  792. /lib/systemd/system/cups.path.d/30_qubes.conf
  793. /lib/systemd/system/cups-browsed.service.d/30_qubes.conf
  794. /lib/systemd/system/org.cups.cupsd.service.d/30_qubes.conf
  795. /lib/systemd/system/org.cups.cupsd.socket.d/30_qubes.conf
  796. /lib/systemd/system/org.cups.cupsd.path.d/30_qubes.conf
  797. /lib/systemd/system/getty@tty.service.d/30_qubes.conf
  798. /lib/systemd/system/ModemManager.service.d/30_qubes.conf
  799. /lib/systemd/system/NetworkManager.service.d/30_qubes.conf
  800. /lib/systemd/system/NetworkManager-wait-online.service.d/30_qubes.conf
  801. /lib/systemd/system/serial-getty@.service.d/30_qubes.conf
  802. /lib/systemd/system/systemd-random-seed.service.d/30_qubes.conf
  803. /lib/systemd/system/systemd-timesyncd.service.d/30_qubes.conf
  804. /lib/systemd/system/tinyproxy.service.d/30_not_needed_in_qubes_by_default.conf
  805. /lib/systemd/system/tor.service.d/30_qubes.conf
  806. /lib/systemd/system/tor@default.service.d/30_qubes.conf
  807. /lib/systemd/system/tmp.mount.d/30_qubes.conf
  808. /usr/lib/systemd/user/pulseaudio.service.d/30_qubes.conf
  809. /usr/lib/systemd/user/pulseaudio.socket.d/30_qubes.conf
  810. %post systemd
  811. changed=
  812. %scriptletfuns
  813. if [ $1 -eq 1 ]
  814. then
  815. preset_units %{_presetdir}/%qubes_preset_file initial
  816. changed=true
  817. else
  818. preset_units %{_presetdir}/%qubes_preset_file upgrade
  819. changed=true
  820. # Upgrade path - now qubes-iptables is used instead
  821. for svc in iptables ip6tables
  822. do
  823. if [ -f "$svc".service ]
  824. then
  825. systemctl --no-reload preset "$svc".service
  826. changed=true
  827. fi
  828. done
  829. fi
  830. if [ $1 -eq 1 ]
  831. then
  832. # First install.
  833. # Set default "runlevel".
  834. # FIXME: this ought to be done via kernel command line.
  835. # The fewer deviations of the template from the seed
  836. # image, the better.
  837. rm -f %{_sysconfdir}/systemd/system/default.target
  838. ln -s %{_unitdir}/multi-user.target %{_sysconfdir}/systemd/system/default.target
  839. changed=true
  840. fi
  841. # remove old symlinks
  842. if [ -L %{_sysconfdir}/systemd/system/sysinit.target.wants/qubes-random-seed.service ]
  843. then
  844. rm -f %{_sysconfdir}/systemd/system/sysinit.target.wants/qubes-random-seed.service
  845. changed=true
  846. fi
  847. if [ -L %{_sysconfdir}/systemd/system/multi-user.target.wants/qubes-mount-home.service ]
  848. then
  849. rm -f %{_sysconfdir}/systemd/system/multi-user.target.wants/qubes-mount-home.service
  850. changed=true
  851. fi
  852. if [ "x$changed" != "x" ]
  853. then
  854. systemctl daemon-reload
  855. fi
  856. %preun systemd
  857. if [ $1 -eq 0 ] ; then
  858. # Run this only during uninstall.
  859. # Save the preset file to later use it to re-preset services there
  860. # once the Qubes OS preset file is removed.
  861. mkdir -p %{_rundir}/qubes-uninstall
  862. cp -f %{_presetdir}/%qubes_preset_file %{_rundir}/qubes-uninstall/
  863. fi
  864. %postun systemd
  865. changed=
  866. %scriptletfuns
  867. if [ -d %{_rundir}/qubes-uninstall ]
  868. then
  869. # We have a saved preset file (or more).
  870. # Re-preset the units mentioned there.
  871. restore_units %{_rundir}/qubes-uninstall/%qubes_preset_file
  872. rm -rf %{_rundir}/qubes-uninstall
  873. changed=true
  874. fi
  875. if [ "x$changed" != "x" ]
  876. then
  877. systemctl daemon-reload
  878. fi
  879. %changelog
  880. @CHANGELOG@