chromeos_startup.sh 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #!/bin/bash
  2. exec >/fakemurk_startup_log
  3. exec 2>/fakemurk_startup_err
  4. chmod 644 /fakemurk_startup_log /fakemurk_startup_err
  5. run_plugin() {
  6. bash "$1"
  7. }
  8. runjob() {
  9. clear
  10. trap 'kill -2 $! >/dev/null 2>&1' INT
  11. (
  12. # shellcheck disable=SC2068
  13. $@
  14. )
  15. trap '' INT
  16. clear
  17. }
  18. . /usr/share/misc/chromeos-common.sh
  19. DST=/dev/$(get_largest_nvme_namespace)
  20. if [ -z $DST ]; then
  21. DST=/dev/mmcblk0
  22. fi
  23. # we stage sshd and mkfs as a one time operation in startup instead of in the bootstrap script
  24. # this is because ssh-keygen was introduced somewhere around R80, where many shims are still stuck on R73
  25. # filesystem unfuck can only be done before stateful is mounted, which is perfectly fine in a shim but not if you run it while booted
  26. # because mkfs is mean and refuses to let us format
  27. # note that this will lead to confusing behaviour, since it will appear as if it crashed as a result of fakemurk
  28. # startup plugins are also launched here, for low-level control over
  29. if [ ! -f /sshd_staged ]; then
  30. # thanks rory! <3
  31. echo "Staging sshd..."
  32. mkdir -p /ssh/root
  33. chmod -R 777 /ssh/root
  34. echo "Generating ssh keypair..."
  35. ssh-keygen -f /ssh/root/key -N '' -t rsa >/dev/null
  36. cp /ssh/root/key /rootkey
  37. chmod 600 /ssh/root
  38. chmod 644 /rootkey
  39. echo "Creating config..."
  40. cat >/ssh/config <<-EOF
  41. AuthorizedKeysFile /ssh/%u/key.pub
  42. StrictModes no
  43. HostKey /ssh/root/key
  44. Port 1337
  45. EOF
  46. touch /sshd_staged
  47. echo "Staged sshd."
  48. fi
  49. if [ -f /population_required ]; then
  50. echo "Populating crossystem..."
  51. /sbin/crossystem_boot_populator.sh
  52. echo "Done. Setting check_enrollment..."
  53. vpd -i RW_VPD -s check_enrollment=1
  54. echo "Removing flag..."
  55. rm -f /population_required
  56. fi
  57. echo "Launching sshd..."
  58. /usr/sbin/sshd -f /ssh/config &
  59. if [ -f /logkeys/active ]; then
  60. echo "Found logkeys flag, launching..."
  61. /usr/bin/logkeys -s -m /logkeys/keymap.map -o /mnt/stateful_partition/keylog
  62. fi
  63. if [ ! -f /stateful_unfucked ]; then
  64. echo "Unfucking stateful..."
  65. yes | mkfs.ext4 "${DST}p1"
  66. touch /stateful_unfucked
  67. echo "Done, rebooting..."
  68. reboot
  69. else
  70. echo "Stateful already unfucked, doing temp stateful mount..."
  71. stateful_dev=${DST}p1
  72. first_mount_dir=$(mktemp -d)
  73. mount "$stateful_dev" "$first_mount_dir"
  74. echo "Mounted stateful on $first_mount_dir, looking for startup plugins..."
  75. plugin_dir="$first_mount_dir/murkmod/plugins"
  76. temp_dir=$(mktemp -d)
  77. cp -r "$plugin_dir"/* "$temp_dir"
  78. echo "Copied files to $temp_dir, unmounting and cleaning up..."
  79. umount "$stateful_dev"
  80. rmdir "$first_mount_dir"
  81. rm -rf "$temp_dir"
  82. echo "Finding startup plugins..."
  83. for file in "$temp_dir"/*.sh; do
  84. if grep -q "startup_plugin" "$file"; then
  85. echo "Starting plugin $file..."
  86. runjob run_plugin $file
  87. fi
  88. done
  89. echo "Plugins run. Handing over to real startup..."
  90. exec /sbin/chromeos_startup.sh.old
  91. fi