core-agent.spec.in 31 KB

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