core-agent.spec 30 KB

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