core-agent.spec.in 30 KB

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