core-agent.spec.in 32 KB

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