core-agent.spec.in 31 KB

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