core-agent.spec.in 30 KB

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