freedombone-utils-setup 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Setup functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. if [ ! $PROJECT_NAME ]; then
  31. PROJECT_NAME='freedombone'
  32. fi
  33. DEFAULT_DOMAIN_NAME=
  34. DEFAULT_DOMAIN_CODE=
  35. MY_USERNAME=
  36. if [ ! $SYSTEM_TYPE ]; then
  37. SYSTEM_TYPE="full"
  38. fi
  39. # An optional configuration file which overrides some of these variables
  40. if [ ! $CONFIGURATION_FILE ]; then
  41. CONFIGURATION_FILE="$HOME/${PROJECT_NAME}.cfg"
  42. fi
  43. # Directory where source code is downloaded and compiled
  44. INSTALL_DIR=$HOME/build
  45. # device name for an attached usb drive
  46. USB_DRIVE=/dev/sda1
  47. # Location where the USB drive is mounted to
  48. USB_MOUNT=/mnt/usb
  49. # Number of days to keep backups for
  50. BACKUP_MAX_DAYS=30
  51. # file containing a list of remote locations to backup to
  52. # Format: [username@friendsdomain//home/username] [ssh_password]
  53. # With the only space character being between the server and the password
  54. FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
  55. export DEBIAN_FRONTEND=noninteractive
  56. # used to limit CPU usage
  57. CPULIMIT='/usr/bin/cpulimit -l 20 -e'
  58. # command to create a git repository
  59. CREATE_GIT_PROJECT_COMMAND='create-project'
  60. # File which keeps track of what has already been installed
  61. COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
  62. # log file where details of remote backups are stored
  63. REMOTE_BACKUPS_LOG=/var/log/remotebackups.log
  64. # message if something fails to install
  65. CHECK_MESSAGE="Check your internet connection, /etc/network/interfaces and /etc/resolv.conf, then delete $COMPLETION_FILE, run 'rm -fR /var/lib/apt/lists/* && apt-get update --fix-missing' and run this script again. If hash sum mismatches persist then try setting $DEBIAN_REPO to a different mirror and also change /etc/apt/sources.list."
  66. # Default diffie-hellman key length in bits
  67. DH_KEYLENGTH=2048
  68. function detect_usb_drive {
  69. # sets to the highest available drive letter
  70. # which is likely to be the last drive connected
  71. read_config_param USB_DRIVE
  72. partition_number='1'
  73. if [[ "$1" == "nopath" ]]; then
  74. partition_number=''
  75. fi
  76. if [ -b /dev/sdb${partition_number} ]; then
  77. USB_DRIVE=/dev/sdb${partition_number}
  78. fi
  79. if [ -b /dev/sdc${partition_number} ]; then
  80. USB_DRIVE=/dev/sdc${partition_number}
  81. fi
  82. if [ -b /dev/sdd${partition_number} ]; then
  83. USB_DRIVE=/dev/sdd${partition_number}
  84. fi
  85. if [ -b /dev/sde${partition_number} ]; then
  86. USB_DRIVE=/dev/sde${partition_number}
  87. fi
  88. if [ -b /dev/sdf${partition_number} ]; then
  89. USB_DRIVE=/dev/sdf${partition_number}
  90. fi
  91. if [ -b /dev/sdg${partition_number} ]; then
  92. USB_DRIVE=/dev/sdg${partition_number}
  93. fi
  94. if [ -b /dev/sdh${partition_number} ]; then
  95. USB_DRIVE=/dev/sdh${partition_number}
  96. fi
  97. write_config_param USB_DRIVE "$USB_DRIVE"
  98. }
  99. function separate_tmp_filesystem {
  100. tmp_filesystem_size_mb=$1
  101. if [ ! -d /tmp ]; then
  102. mkdir -p /tmp
  103. fi
  104. if ! grep -q '/tmp' /etc/fstab; then
  105. mount -t tmpfs -o size=${tmp_filesystem_size_mb}m tmpfs /tmp
  106. echo "tmpfs /tmp tmpfs nodev,nosuid,noexec,nodiratime,size=${tmp_filesystem_size_mb}M 0 0" >> /etc/fstab
  107. fi
  108. }
  109. function remove_bluetooth {
  110. rmmod -f bnep
  111. rmmod -f bluetooth
  112. if [ -f /etc/default/bluetooth ]; then
  113. if grep "BLUETOOTH_ENABLED=" /etc/default/bluetooth; then
  114. sed -i 's|BLUETOOTH_ENABLED=.*|BLUETOOTH_ENABLED=0|g' /etc/default/bluetooth
  115. else
  116. echo "BLUETOOTH_ENABLED=0" >> /etc/default/bluetooth
  117. fi
  118. fi
  119. if ! grep 'blacklist bnep' /etc/modprobe.d/bluetooth.conf; then
  120. echo 'blacklist bnep' >> /etc/modprobe.d/bluetooth.conf
  121. fi
  122. if ! grep 'blacklist btusb' /etc/modprobe.d/bluetooth.conf; then
  123. echo 'blacklist btusb' >> /etc/modprobe.d/bluetooth.conf
  124. fi
  125. if ! grep 'blacklist bluetooth' /etc/modprobe.d/bluetooth.conf; then
  126. echo 'blacklist bluetooth' >> /etc/modprobe.d/bluetooth.conf
  127. fi
  128. update-initramfs -u -k `uname -r` -v
  129. update-rc.d bluetooth remove
  130. }
  131. function running_as_root {
  132. if [[ $EUID != 0 ]] ; then
  133. echo "0"
  134. else
  135. echo "1"
  136. fi
  137. }
  138. function reset_usb_devices {
  139. for xhci in /sys/bus/pci/drivers/?hci-pci ; do
  140. if ! cd $xhci ; then
  141. return
  142. fi
  143. echo "Resetting devices from $xhci..."
  144. for i in ????:??:??.? ; do
  145. echo -n "$i" > unbind
  146. echo -n "$i" > bind
  147. done
  148. done
  149. udevadm control --reload-rules
  150. }
  151. function install_backports_kernel {
  152. # install backports kernel if possible
  153. architecture_type=$(uname -a)
  154. if [[ "$architecture_type" == *"amd64"* ]]; then
  155. apt-get -yq install linux-image-amd64 -t jessie-backports
  156. fi
  157. }
  158. function turn_off_rsys_logging {
  159. sed -i 's|mail,news.none.*|mail,news.none /dev/null|g' /etc/rsyslog.conf
  160. sed -i 's|auth,authpriv.\*.*|auth,authpriv.\* /dev/null|g' /etc/rsyslog.conf
  161. sed -i 's|mail.info.*|mail.info /dev/null|g' /etc/rsyslog.conf
  162. sed -i 's|mail.warn.*|mail.warn /dev/null|g' /etc/rsyslog.conf
  163. sed -i 's|mail.err.*|mail.err /dev/null|g' /etc/rsyslog.conf
  164. sed -i 's|daemon.\*.*|daemon.\* /dev/null|g' /etc/rsyslog.conf
  165. sed -i 's|mail.\*.*|mail.\* /dev/null|g' /etc/rsyslog.conf
  166. sed -i 's|user.\*.*|user.\* /dev/null|g' /etc/rsyslog.conf
  167. sed -i 's|news.none;mail.none.*|news.none;mail.none /dev/null|g' /etc/rsyslog.conf
  168. sed -i 's|\*.\*;auth,authpriv.none.*|\*.\*;auth,authpriv.none /dev/null|g' /etc/rsyslog.conf
  169. sed -i 's|#cron.\*|cron.\*|g' /etc/rsyslog.conf
  170. sed -i 's|cron.\*.*|cron.\* /dev/null|g' /etc/rsyslog.conf
  171. shred -zu /var/log/wtmp*
  172. shred -zu /var/log/debug*
  173. shred -zu /var/log/cron.*
  174. shred -zu /var/log/auth.*
  175. shred -zu /var/log/mail.*
  176. shred -zu /var/log/daemon.*
  177. shred -zu /var/log/user.*
  178. shred -zu /var/log/messages*
  179. }
  180. function initial_setup {
  181. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  182. return
  183. fi
  184. apt-get -yq remove --purge apache*
  185. apt-get -yq dist-upgrade
  186. apt-get -yq install ca-certificates
  187. apt-get -yq install apt-utils
  188. apt-get -yq install cryptsetup libgfshare-bin obnam sshpass wget avahi-daemon
  189. apt-get -yq install avahi-utils avahi-discover connect-proxy openssh-server
  190. apt-get -yq install sudo git dialog build-essential avahi-daemon avahi-utils
  191. apt-get -yq install avahi-discover avahi-autoipd iptables dnsutils net-tools
  192. apt-get -yq install network-manager iputils-ping libnss-mdns libnss-myhostname
  193. apt-get -yq install libnss-gw-name nano man ntp locales locales-all debconf
  194. apt-get -yq install wireless-tools wpasupplicant usbutils cryptsetup zsh
  195. apt-get -yq install pinentry-curses eatmydata iotop bc grub2 hostapd haveged
  196. apt-get -yq install cpulimit screen
  197. if [ ! -d $INSTALL_DIR ]; then
  198. mkdir -p $INSTALL_DIR
  199. fi
  200. mark_completed $FUNCNAME
  201. }
  202. function admin_user_sudo {
  203. if ! grep -q "$MY_USERNAME ALL=(ALL) ALL" $rootdir/etc/sudoers; then
  204. echo "$MY_USERNAME ALL=(ALL) ALL" >> $rootdir/etc/sudoers
  205. fi
  206. }
  207. function search_for_attached_usb_drive {
  208. # If a USB drive is attached then search for email,
  209. # gpg, ssh keys and emacs configuration
  210. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  211. return
  212. fi
  213. detect_usb_drive
  214. if [ -b $USB_DRIVE ]; then
  215. if [ ! -d $USB_MOUNT ]; then
  216. echo $'Mounting USB drive'
  217. mkdir $USB_MOUNT
  218. mount $USB_DRIVE $USB_MOUNT
  219. fi
  220. if [ -d $USB_MOUNT/.gnupg ]; then
  221. echo $'Importing GPG keyring'
  222. cp -r $USB_MOUNT/.gnupg /home/$MY_USERNAME
  223. chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.gnupg
  224. GPG_KEYS_IMPORTED="yes"
  225. if [ ! -f /home/$MY_USERNAME/.gnupg/secring.gpg ]; then
  226. echo $'GPG files did not copy'
  227. exit 73529
  228. fi
  229. fi
  230. if [ -f $USB_MOUNT/private_key.gpg ]; then
  231. echo $'GPG private key found on USB drive'
  232. MY_GPG_PRIVATE_KEY=$USB_MOUNT/private_key.gpg
  233. fi
  234. if [ -f $USB_MOUNT/public_key.gpg ]; then
  235. echo $'GPG public key found on USB drive'
  236. MY_GPG_PUBLIC_KEY=$USB_MOUNT/public_key.gpg
  237. fi
  238. if [ -f $USB_MOUNT/letsencrypt ]; then
  239. echo $'Copying letsencrypt keys"'
  240. cp -r $USB_MOUNT/letsencrypt /etc
  241. fi
  242. if [ -d $USB_MOUNT/.ssh ]; then
  243. echo $'Importing ssh keys'
  244. cp -r $USB_MOUNT/.ssh /home/$MY_USERNAME
  245. chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.ssh
  246. # for security delete the ssh keys from the usb drive
  247. if [ ! -f /home/$MY_USERNAME/.ssh/id_rsa ]; then
  248. echo $'ssh files did not copy'
  249. exit 8
  250. fi
  251. fi
  252. if [ -f $USB_MOUNT/.emacs ]; then
  253. echo $'Importing .emacs file'
  254. cp -f $USB_MOUNT/.emacs /home/$MY_USERNAME/.emacs
  255. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.emacs
  256. fi
  257. if [ -d $USB_MOUNT/.emacs.d ]; then
  258. echo $'Importing .emacs.d directory'
  259. cp -r $USB_MOUNT/.emacs.d /home/$MY_USERNAME
  260. chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.emacs.d
  261. fi
  262. if [ -d $USB_MOUNT/ssl ]; then
  263. echo $'Importing SSL certificates'
  264. cp -r $USB_MOUNT/ssl/* /etc/ssl
  265. chmod 640 /etc/ssl/certs/*
  266. chmod 400 /etc/ssl/private/*
  267. # change ownership of some certificates
  268. if [ -d /etc/prosody ]; then
  269. chown prosody:prosody /etc/ssl/private/xmpp.*
  270. chown prosody:prosody /etc/ssl/certs/xmpp.*
  271. fi
  272. if [ -d /etc/dovecot ]; then
  273. chown root:dovecot /etc/ssl/certs/dovecot.*
  274. chown root:dovecot /etc/ssl/private/dovecot.*
  275. fi
  276. if [ -f /etc/ssl/private/exim.key ]; then
  277. cp /etc/ssl/private/exim.key /etc/exim4
  278. cp /etc/ssl/certs/exim.crt /etc/exim4
  279. cp /etc/ssl/certs/exim.dhparam /etc/exim4
  280. chown root:Debian-exim /etc/exim4/exim.key /etc/exim4/exim.crt /etc/exim4/exim.dhparam
  281. chmod 640 /etc/exim4/exim.key /etc/exim4/exim.crt /etc/exim4/exim.dhparam
  282. fi
  283. fi
  284. if [ -d $USB_MOUNT/personal ]; then
  285. echo $'Importing personal directory'
  286. cp -r $USB_MOUNT/personal /home/$MY_USERNAME
  287. chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/personal
  288. fi
  289. else
  290. if [ -d $USB_MOUNT ]; then
  291. umount $USB_MOUNT
  292. rm -rf $USB_MOUNT
  293. fi
  294. echo $'No USB drive attached'
  295. fi
  296. mark_completed $FUNCNAME
  297. }
  298. function mark_admin_user_account {
  299. set_completion_param "Admin user" "$MY_USERNAME"
  300. }
  301. function remove_instructions_from_motd {
  302. sed -i '/## /d' /etc/motd
  303. }
  304. function remove_default_user {
  305. # make sure you don't use the default user account
  306. if [[ $MY_USERNAME == "debian" ]]; then
  307. echo 'Do not use the default debian user account. Create a different user with: adduser [username]'
  308. exit 68
  309. fi
  310. # remove the default debian user to prevent it from becoming an attack vector
  311. if [ -d /home/debian ]; then
  312. userdel -r debian
  313. echo 'Default debian user account removed'
  314. fi
  315. }
  316. function create_completion_file {
  317. if [ ! -f $COMPLETION_FILE ]; then
  318. touch $COMPLETION_FILE
  319. fi
  320. }
  321. function upgrade_installation {
  322. # TODO
  323. echo ''
  324. }
  325. function disable_nfs_insecure_locks {
  326. apt-get -yq install nfs-kernel-server
  327. if grep 'insecure_locks' /etc/exports; then
  328. sed -i 's|,insecure_locks||g' /etc/exports
  329. sed -i 's|insecure_locks,||g' /etc/exports
  330. exportfs -a
  331. fi
  332. }
  333. function set_login_umask {
  334. sed -i 's|UMASK\t.*|UMASK\t\t077|g' /etc/login.defs
  335. }
  336. function disable_deferred_execution {
  337. systemctl stop atd
  338. systemctl disable atd
  339. }
  340. function set_shadow_permissions {
  341. chown root:root /etc/shadow
  342. chmod 0000 /etc/shadow
  343. chown root:root /etc/gshadow
  344. chmod 0000 /etc/gshadow
  345. }
  346. function set_max_login_tries {
  347. max_tries=$1
  348. if ! grep ' deny=' /etc/pam.d/common-auth; then
  349. sed -i "/pam_deny.so/a auth required\t\t\tpam_tally.so onerr=fail no_lock_time per_user deny=$max_tries" /etc/pam.d/common-auth
  350. else
  351. sed -i "s| deny=.*| deny=$max_tries|g" /etc/pam.d/common-auth
  352. fi
  353. if ! grep ' deny=' /etc/pam.d/common-account; then
  354. sed -i '/pam_deny.so/a account required\t\t\tpam_tally.so' /etc/pam.d/common-account
  355. else
  356. sed -i "s| deny=.*| deny=$max_tries|g" /etc/pam.d/common-account
  357. fi
  358. }
  359. function limit_user_logins {
  360. # overall max logins
  361. if ! grep '* hard maxsyslogins' /etc/security/limits.conf; then
  362. echo '* hard maxsyslogins 10' >> /etc/security/limits.conf
  363. else
  364. sed -i 's|hard maxsyslogins.*|hard maxsyslogins 10|g' /etc/security/limits.conf
  365. fi
  366. # Max logins for each user
  367. if ! grep '* hard maxlogins' /etc/security/limits.conf; then
  368. echo '* hard maxlogins 2' >> /etc/security/limits.conf
  369. else
  370. sed -i 's|hard maxlogins.*|hard maxlogins 2|g' /etc/security/limits.conf
  371. fi
  372. }
  373. function remove_serial_logins {
  374. if grep 'ttyS' /etc/securetty; then
  375. cp /etc/securetty /etc/securetty_old
  376. sed -i '/ttyS/d' /etc/securetty
  377. fi
  378. }
  379. function set_sticky_bits {
  380. world_writable=$(find / -xdev -type d -perm -002 \! -perm -1000)
  381. for w in $world_writable; do
  382. echo "Setting sticky bit on $w"
  383. chmod +t $w
  384. done
  385. }
  386. function disable_ctrl_alt_del {
  387. ln -sf /dev/null /etc/systemd/system/ctrl-alt-del.target
  388. }
  389. function lockdown_permissions {
  390. # All commands owned by root
  391. if [ -d /bin ]; then
  392. chown root:root /bin/*
  393. fi
  394. if [ -d /usr/bin ]; then
  395. chown root:root /usr/bin/*
  396. fi
  397. if [ -d /usr/local/bin ]; then
  398. chown root:root /usr/local/bin/*
  399. fi
  400. if [ -d /sbin ]; then
  401. chown root:root /sbin/*
  402. fi
  403. if [ -d /usr/sbin ]; then
  404. chown root:root /usr/sbin/*
  405. fi
  406. if [ -d /usr/local/sbin ]; then
  407. chown root:root /usr/local/sbin/*
  408. fi
  409. if [ -d /usr/share/${PROJECT_NAME} ]; then
  410. chown -R root:root /usr/share/${PROJECT_NAME}
  411. chmod -R +r /usr/share/${PROJECT_NAME}
  412. fi
  413. # All libraries owned by root
  414. if [ -d /lib ]; then
  415. chown -R root:root /lib/*
  416. fi
  417. if [ -d /lib64 ]; then
  418. chown -R root:root /lib64/*
  419. fi
  420. if [ -d /usr/lib ]; then
  421. chown -R root:root /usr/lib/*
  422. fi
  423. if [ -d /usr/lib64 ]; then
  424. chown -R root:root /usr/lib64/*
  425. fi
  426. # sudo permissions
  427. chmod 4755 /usr/bin/sudo
  428. chmod 4755 /usr/lib/sudo/sudoers.so
  429. chown root:root /etc/sudoers
  430. # permissions on email commands
  431. if [ -f /usr/bin/procmail ]; then
  432. chmod 6755 /usr/bin/procmail
  433. fi
  434. if [ -f /usr/sbin/exim ]; then
  435. chmod u+s /usr/sbin/exim
  436. fi
  437. if [ -f /usr/sbin/exim4 ]; then
  438. chmod u+s /usr/sbin/exim4
  439. fi
  440. set_sticky_bits
  441. # Create some directories to correspond with users in passwords file
  442. if [ ! -d /var/spool/lpd ]; then
  443. mkdir /var/spool/lpd
  444. fi
  445. if [ ! -d /var/spool/news ]; then
  446. mkdir /var/spool/news
  447. fi
  448. if [ ! -d /var/spool/uucp ]; then
  449. mkdir /var/spool/uucp
  450. fi
  451. if [ ! -d /var/list ]; then
  452. mkdir /var/list
  453. fi
  454. if [ ! -d /var/lib/gnats ]; then
  455. mkdir /var/lib/gnats
  456. fi
  457. if [ ! -d /var/lib/saned ]; then
  458. mkdir /var/lib/saned
  459. fi
  460. }
  461. function disable_core_dumps {
  462. if ! grep '* hard core 0' /etc/security/limits.conf; then
  463. echo '* hard core 0' >> /etc/security/limits.conf
  464. else
  465. sed -i 's|hard core.*|hard core 0|g' /etc/security/limits.conf
  466. fi
  467. }
  468. function dummy_nologin_command {
  469. if [ ! -f /sbin/nologin ]; then
  470. echo '#!/bin/bash' > /sbin/nologin
  471. chmod +x /sbin/nologin
  472. fi
  473. }
  474. function disable_null_passwords {
  475. sed -i 's| nullok_secure||g' /etc/pam.d/common-auth
  476. }
  477. function setup_firewall {
  478. function_check create_completion_file
  479. create_completion_file
  480. function_check configure_firewall
  481. configure_firewall
  482. function_check configure_firewall_ping
  483. configure_firewall_ping
  484. function_check configure_firewall_for_dns
  485. configure_firewall_for_dns
  486. function_check configure_firewall_for_avahi
  487. configure_firewall_for_avahi
  488. function_check global_rate_limit
  489. global_rate_limit
  490. }
  491. function setup_utils {
  492. read_config_param "PROJECT_REPO"
  493. write_config_param "PROJECT_REPO" "$PROJECT_REPO"
  494. function_check separate_tmp_filesystem
  495. separate_tmp_filesystem 100
  496. function_check disable_null_passwords
  497. disable_null_passwords
  498. function_check disable_ctrl_alt_del
  499. disable_ctrl_alt_del
  500. function_check dummy_nologin_command
  501. dummy_nologin_command
  502. function_check disable_core_dumps
  503. disable_core_dumps
  504. function_check remove_serial_logins
  505. remove_serial_logins
  506. function_check set_max_login_tries
  507. set_max_login_tries 10
  508. function_check set_shadow_permissions
  509. set_shadow_permissions
  510. function_check remove_bluetooth
  511. remove_bluetooth
  512. function_check disable_nfs_insecure_locks
  513. disable_nfs_insecure_locks
  514. function_check set_login_umask
  515. set_login_umask
  516. function_check disable_deferred_execution
  517. disable_deferred_execution
  518. function_check turn_off_rsys_logging
  519. turn_off_rsys_logging
  520. function_check install_backports_kernel
  521. install_backports_kernel
  522. function_check create_completion_file
  523. create_completion_file
  524. function_check read_configuration
  525. read_configuration
  526. function_check check_system_type
  527. check_system_type
  528. function_check upgrade_installation
  529. upgrade_installation
  530. function_check set_default_onion_domains
  531. set_default_onion_domains
  532. function_check locale_setup
  533. locale_setup
  534. function_check parse_args
  535. parse_args
  536. function_check check_domains
  537. check_domains
  538. function_check install_static_network
  539. install_static_network
  540. function_check remove_default_user
  541. remove_default_user
  542. function_check setup_firewall
  543. setup_firewall
  544. function_check create_repo_sources
  545. create_repo_sources
  546. function_check configure_dns
  547. configure_dns
  548. function_check initial_setup
  549. initial_setup
  550. function_check install_tor
  551. install_tor
  552. #function_check resolve_dns_via_tor
  553. #resolve_dns_via_tor
  554. function_check install_command_line_browser
  555. install_command_line_browser
  556. function_check enable_ssh_via_onion
  557. enable_ssh_via_onion
  558. function_check check_date
  559. check_date
  560. function_check install_dynamicdns
  561. install_dynamicdns
  562. function_check randomize_cron
  563. randomize_cron
  564. function_check create_freedns_updater
  565. create_freedns_updater
  566. function_check mark_admin_user_account
  567. mark_admin_user_account
  568. function_check enforce_good_passwords
  569. enforce_good_passwords
  570. function_check change_login_message
  571. change_login_message
  572. function_check enable_zram
  573. enable_zram
  574. function_check random_number_generator
  575. random_number_generator
  576. function_check set_your_domain_name
  577. set_your_domain_name
  578. function_check configure_internet_protocol
  579. configure_internet_protocol
  580. function_check create_git_project
  581. create_git_project
  582. function_check setup_wifi
  583. setup_wifi
  584. function_check configure_ssh
  585. configure_ssh
  586. function_check configure_ssh_onion
  587. configure_ssh_onion
  588. function_check allow_ssh_to_onion_address
  589. allow_ssh_to_onion_address
  590. function_check remove_instructions_from_motd
  591. remove_instructions_from_motd
  592. function_check check_hwrng
  593. check_hwrng
  594. function_check search_for_attached_usb_drive
  595. search_for_attached_usb_drive
  596. function_check regenerate_ssh_keys
  597. regenerate_ssh_keys
  598. function_check create_mirrors
  599. create_mirrors
  600. function_check create_upgrade_script
  601. create_upgrade_script
  602. function_check letsencrypt_renewals
  603. letsencrypt_renewals
  604. function_check install_watchdog_script
  605. install_watchdog_script
  606. function_check install_avahi
  607. install_avahi
  608. function_check create_avahi_onion_domains
  609. create_avahi_onion_domains
  610. #function_check install_atheros_wifi
  611. #install_atheros_wifi
  612. function_check route_outgoing_traffic_through_tor
  613. route_outgoing_traffic_through_tor
  614. function_check upgrade_golang
  615. upgrade_golang
  616. function_check install_tomb
  617. install_tomb
  618. function_check admin_user_sudo
  619. admin_user_sudo
  620. function_check limit_user_logins
  621. limit_user_logins
  622. function_check schedule_stig_tests
  623. schedule_stig_tests
  624. }
  625. function setup_email {
  626. function_check create_completion_file
  627. create_completion_file
  628. function_check install_email
  629. install_email
  630. function_check create_procmail
  631. create_procmail
  632. function_check handle_admin_emails
  633. handle_admin_emails
  634. function_check spam_filtering
  635. spam_filtering
  636. function_check configure_imap
  637. configure_imap
  638. #function_check configure_imap_client_certs
  639. #configure_imap_client_certs
  640. function_check configure_gpg
  641. configure_gpg
  642. function_check refresh_gpg_keys
  643. refresh_gpg_keys
  644. function_check configure_backup_key
  645. configure_backup_key
  646. function_check install_monkeysphere
  647. install_monkeysphere
  648. function_check encrypt_incoming_email
  649. encrypt_incoming_email
  650. function_check encrypt_outgoing_email
  651. encrypt_outgoing_email
  652. function_check email_client
  653. email_client
  654. function_check email_archiving
  655. email_archiving
  656. function_check email_from_address
  657. email_from_address
  658. function_check create_public_mailing_list
  659. create_public_mailing_list
  660. #function check create_private_mailing_list
  661. #create_private_mailing_list
  662. function_check encrypt_all_email
  663. encrypt_all_email
  664. function_check import_email
  665. import_email
  666. }
  667. function setup_web {
  668. function_check create_completion_file
  669. create_completion_file
  670. function_check install_web_server
  671. install_web_server
  672. function_check install_web_server_access_control
  673. install_web_server_access_control
  674. }
  675. function upgrade_apps {
  676. function_check create_completion_file
  677. create_completion_file
  678. APPS_COMPLETED=()
  679. FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
  680. # for all the app scripts
  681. for filename in $FILES
  682. do
  683. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  684. item_in_array "${app_name}" "${APPS_COMPLETED[@]}"
  685. if [[ $? != 0 ]]; then
  686. function_check app_is_installed
  687. if [[ "$(app_is_installed $a)" == "1" ]]; then
  688. app_load_variables ${app_name}
  689. APPS_COMPLETED+=("${app_name}")
  690. function_check upgrade_${app_name}
  691. upgrade_${app_name}
  692. fi
  693. fi
  694. done
  695. }
  696. function setup_apps {
  697. is_interactive=$1
  698. function_check create_completion_file
  699. create_completion_file
  700. function_check detect_installable_apps
  701. detect_installable_apps
  702. function_check choose_apps_for_variant
  703. choose_apps_for_variant "$SYSTEM_TYPE"
  704. echo $"System variant: $SYSTEM_TYPE"
  705. echo $'The following apps have been selected'
  706. echo ''
  707. function_check list_chosen_apps
  708. list_chosen_apps
  709. echo ''
  710. function_check upgrade_apps
  711. upgrade_apps
  712. if [[ $is_interactive == "noninteractive" || $is_interactive == "headless" ]]; then
  713. function_check install_apps
  714. install_apps
  715. if [ ! $APP_INSTALLED_SUCCESS ]; then
  716. echo $'One or more apps failed to install'
  717. fi
  718. fi
  719. }
  720. function combine_all_scripts {
  721. combined_filename=$1
  722. # initial variables
  723. cp $PROJECT_INSTALL_DIR/${PROJECT_NAME}-vars $combined_filename
  724. # utilities
  725. UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
  726. for f in $UTILS_FILES
  727. do
  728. # this removes the first line, which is #!/bin/bash
  729. tail -n +2 "$f" >> $combined_filename
  730. done
  731. # base system
  732. BASE_SYSTEM_FILES=/usr/share/${PROJECT_NAME}/base/${PROJECT_NAME}-base-*
  733. for f in $BASE_SYSTEM_FILES
  734. do
  735. tail -n +2 "$f" >> $combined_filename
  736. done
  737. # apps
  738. APP_FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
  739. for f in $APP_FILES
  740. do
  741. tail -n +2 "$f" >> $combined_filename
  742. done
  743. }
  744. # NOTE: deliberately no exit 0