asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 1 | #!/usr/bin/python2.6 |
| 2 | # |
| 3 | # Copyright 2010 Google Inc. All Rights Reserved. |
| 4 | |
| 5 | """Script to enter the ChromeOS chroot with mounted sources. |
| 6 | |
| 7 | This script enters the chroot with mounted sources. |
| 8 | """ |
| 9 | |
| 10 | __author__ = "asharif@google.com (Ahmad Sharif)" |
| 11 | |
| 12 | import getpass |
| 13 | import optparse |
| 14 | import os |
asharif | 556f4ff | 2013-02-15 04:50:35 +0000 | [diff] [blame] | 15 | import pwd |
asharif | c0f7193 | 2013-02-15 04:56:18 +0000 | [diff] [blame] | 16 | import stat |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 17 | import sys |
raymes | 01959ae | 2013-02-15 04:50:07 +0000 | [diff] [blame] | 18 | from utils import command_executer |
| 19 | from utils import logger |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 20 | from utils import utils |
| 21 | |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 22 | class MountPoint: |
| 23 | def __init__(self, external_dir, mount_dir, owner, options=None): |
asharif | 6c61913 | 2013-02-15 21:55:28 +0000 | [diff] [blame] | 24 | self.external_dir = os.path.realpath(external_dir) |
| 25 | self.mount_dir = os.path.realpath(mount_dir) |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 26 | self.owner = owner |
| 27 | self.options = options |
| 28 | |
| 29 | |
asharif | 556f4ff | 2013-02-15 04:50:35 +0000 | [diff] [blame] | 30 | def CreateAndOwnDir(self, dir_name): |
| 31 | retval = 0 |
| 32 | if not os.path.exists(dir_name): |
| 33 | command = "mkdir -p " + dir_name |
| 34 | command += " || sudo mkdir -p " + dir_name |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 35 | retval = command_executer.GetCommandExecuter().RunCommand(command) |
asharif | 556f4ff | 2013-02-15 04:50:35 +0000 | [diff] [blame] | 36 | if retval != 0: |
| 37 | return retval |
| 38 | pw = pwd.getpwnam(self.owner) |
| 39 | if os.stat(dir_name).st_uid != pw.pw_uid: |
| 40 | command = "sudo chown -f " + self.owner + " " + dir_name |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 41 | retval = command_executer.GetCommandExecuter().RunCommand(command) |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 42 | return retval |
| 43 | |
| 44 | |
| 45 | def DoMount(self): |
asharif | 6c61913 | 2013-02-15 21:55:28 +0000 | [diff] [blame] | 46 | ce = command_executer.GetCommandExecuter() |
| 47 | mount_signature = "%s on %s" % (self.external_dir, self.mount_dir) |
| 48 | command = "mount" |
| 49 | retval, out, err = ce.RunCommand(command, return_output=True) |
| 50 | if mount_signature not in out: |
| 51 | retval = self.CreateAndOwnDir(self.mount_dir) |
| 52 | logger.GetLogger().LogFatalIf(retval, "Cannot create mount_dir!") |
| 53 | retval = self.CreateAndOwnDir(self.external_dir) |
| 54 | logger.GetLogger().LogFatalIf(retval, "Cannot create external_dir!") |
| 55 | retval = self.MountDir() |
| 56 | logger.GetLogger().LogFatalIf(retval, "Cannot mount!") |
| 57 | return retval |
| 58 | else: |
| 59 | return 0 |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 60 | |
| 61 | |
asharif | c97199a | 2013-02-15 22:48:45 +0000 | [diff] [blame] | 62 | def UnMount(self): |
| 63 | ce = command_executer.GetCommandExecuter() |
cmtice | 0186f57 | 2013-02-15 23:44:51 +0000 | [diff] [blame^] | 64 | return ce.RunCommand("sudo umount %s" % self.mount_dir) |
asharif | c97199a | 2013-02-15 22:48:45 +0000 | [diff] [blame] | 65 | |
| 66 | |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 67 | def MountDir(self): |
| 68 | command = "sudo mount --bind " + self.external_dir + " " + self.mount_dir |
| 69 | if self.options == "ro": |
| 70 | command += " && sudo mount --bind -oremount,ro " + self.mount_dir |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 71 | retval = command_executer.GetCommandExecuter().RunCommand(command) |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 72 | return retval |
| 73 | |
| 74 | |
| 75 | def __str__(self): |
| 76 | ret = "" |
| 77 | ret += self.external_dir + "\n" |
| 78 | ret += self.mount_dir + "\n" |
| 79 | if self.owner: |
| 80 | ret += self.owner + "\n" |
| 81 | if self.options: |
| 82 | ret += self.options + "\n" |
| 83 | return ret |
| 84 | |
| 85 | |
| 86 | def Main(argv, return_output=False): |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 87 | """The main function.""" |
| 88 | parser = optparse.OptionParser() |
| 89 | parser.add_option("-c", "--chromeos_root", dest="chromeos_root", |
asharif | 0b2f040 | 2013-02-15 04:50:25 +0000 | [diff] [blame] | 90 | default="../..", |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 91 | help="ChromeOS root checkout directory.") |
| 92 | parser.add_option("-t", "--toolchain_root", dest="toolchain_root", |
| 93 | help="Toolchain root directory.") |
asharif | 541b639 | 2013-02-15 04:50:38 +0000 | [diff] [blame] | 94 | parser.add_option("-o", "--output", dest="output", |
| 95 | help="Toolchain output directory") |
asharif | 52284c6 | 2013-02-15 19:59:08 +0000 | [diff] [blame] | 96 | parser.add_option("--sudo", dest="sudo", |
| 97 | action="store_true", |
| 98 | default=False, |
| 99 | help="Run the command with sudo.") |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 100 | parser.add_option("-r", "--third_party", dest="third_party", |
| 101 | help="The third_party directory to mount.") |
asharif | 541b639 | 2013-02-15 04:50:38 +0000 | [diff] [blame] | 102 | parser.add_option("-m", "--other_mounts", dest="other_mounts", |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 103 | help="Other mount points in the form: " + |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 104 | "dir:mounted_dir:options") |
asharif | 1755b43 | 2013-02-15 04:55:29 +0000 | [diff] [blame] | 105 | parser.add_option("-s", "--mount-scripts-only", |
| 106 | dest="mount_scripts_only", |
| 107 | action="store_true", |
| 108 | default=False, |
| 109 | help="Mount only the scripts dir, and not the sources.") |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 110 | |
raymes | 01959ae | 2013-02-15 04:50:07 +0000 | [diff] [blame] | 111 | passthrough_argv = [] |
asharif | 1755b43 | 2013-02-15 04:55:29 +0000 | [diff] [blame] | 112 | (options, passthrough_argv) = parser.parse_args(argv) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 113 | |
asharif | 0b2f040 | 2013-02-15 04:50:25 +0000 | [diff] [blame] | 114 | chromeos_root = options.chromeos_root |
asharif | 1762130 | 2013-02-15 04:46:35 +0000 | [diff] [blame] | 115 | |
| 116 | chromeos_root = os.path.expanduser(chromeos_root) |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 117 | if options.toolchain_root: |
| 118 | options.toolchain_root = os.path.expanduser(options.toolchain_root) |
asharif | 1762130 | 2013-02-15 04:46:35 +0000 | [diff] [blame] | 119 | |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 120 | chromeos_root = os.path.abspath(chromeos_root) |
| 121 | |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 122 | tc_dirs = [] |
asharif | 642509c | 2013-02-15 09:19:32 +0000 | [diff] [blame] | 123 | if options.toolchain_root is None or options.mount_scripts_only: |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 124 | m = "toolchain_root not specified. Will not mount toolchain dirs." |
| 125 | logger.GetLogger().LogWarning(m) |
| 126 | else: |
| 127 | tc_dirs = [options.toolchain_root + "/google_vendor_src_branch/gcc", |
| 128 | options.toolchain_root + "/google_vendor_src_branch/binutils"] |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 129 | |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 130 | for tc_dir in tc_dirs: |
| 131 | if not os.path.exists(tc_dir): |
| 132 | logger.GetLogger().LogError("toolchain path " + |
| 133 | tc_dir + " does not exist!") |
| 134 | parser.print_help() |
| 135 | sys.exit(1) |
asharif | 0b2f040 | 2013-02-15 04:50:25 +0000 | [diff] [blame] | 136 | |
| 137 | if not os.path.exists(chromeos_root): |
| 138 | logger.GetLogger().LogError("chromeos_root " + options.chromeos_root + |
| 139 | " does not exist!") |
| 140 | parser.print_help() |
| 141 | sys.exit(1) |
| 142 | |
asharif | c8e8e12 | 2013-02-15 21:19:59 +0000 | [diff] [blame] | 143 | if not os.path.exists(chromeos_root + "/src/scripts/build_packages"): |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 144 | logger.GetLogger().LogError(options.chromeos_root + |
asharif | c8e8e12 | 2013-02-15 21:19:59 +0000 | [diff] [blame] | 145 | "/src/scripts/build_packages" |
asharif | 0b2f040 | 2013-02-15 04:50:25 +0000 | [diff] [blame] | 146 | " not found!") |
| 147 | parser.print_help() |
| 148 | sys.exit(1) |
| 149 | |
asharif | b225e79 | 2013-02-15 21:20:11 +0000 | [diff] [blame] | 150 | version_dir = os.path.realpath(os.path.expanduser(os.path.dirname(__file__))) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 151 | |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 152 | mounted_tc_root = "/usr/local/toolchain_root" |
| 153 | full_mounted_tc_root = chromeos_root + "/chroot/" + mounted_tc_root |
| 154 | full_mounted_tc_root = os.path.abspath(full_mounted_tc_root) |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 155 | |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 156 | mount_points = [] |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 157 | for tc_dir in tc_dirs: |
| 158 | last_dir = utils.GetRoot(tc_dir)[1] |
| 159 | mount_point = MountPoint(tc_dir, full_mounted_tc_root + "/" + last_dir, |
| 160 | getpass.getuser(), "ro") |
| 161 | mount_points.append(mount_point) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 162 | |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 163 | # Add the third_party mount point if it exists |
| 164 | if options.third_party: |
| 165 | third_party_dir = options.third_party |
kbaclawski | 6999ada | 2013-02-15 19:57:09 +0000 | [diff] [blame] | 166 | logger.GetLogger().LogFatalIf(not os.path.isdir(third_party_dir), |
| 167 | "--third_party option is not a valid dir.") |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 168 | else: |
| 169 | third_party_dir = os.path.abspath("%s/../../../third_party" % |
| 170 | os.path.dirname(__file__)) |
| 171 | |
| 172 | if os.path.isdir(third_party_dir): |
| 173 | mount_point = MountPoint(third_party_dir, |
| 174 | ("%s/%s" % |
| 175 | (full_mounted_tc_root, |
| 176 | os.path.basename(third_party_dir))), |
| 177 | getpass.getuser()) |
| 178 | mount_points.append(mount_point) |
kbaclawski | 6999ada | 2013-02-15 19:57:09 +0000 | [diff] [blame] | 179 | |
asharif | 541b639 | 2013-02-15 04:50:38 +0000 | [diff] [blame] | 180 | output = options.output |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 181 | if output is None and options.toolchain_root: |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 182 | # Mount the output directory at /usr/local/toolchain_root/output |
asharif | 01410cc | 2013-02-15 09:19:31 +0000 | [diff] [blame] | 183 | output = options.toolchain_root + "/output" |
| 184 | |
| 185 | if output: |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 186 | mount_points.append(MountPoint(output, full_mounted_tc_root + "/output", |
| 187 | getpass.getuser())) |
| 188 | |
| 189 | # Mount the other mount points |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 190 | mount_points += CreateMountPointsFromString(options.other_mounts, |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 191 | chromeos_root + "/chroot/") |
| 192 | |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 193 | last_dir = utils.GetRoot(version_dir)[1] |
asharif | 8697d4e | 2013-02-15 09:18:09 +0000 | [diff] [blame] | 194 | |
| 195 | # Mount the version dir (v14) at /usr/local/toolchain_root/v14 |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 196 | mount_point = MountPoint(version_dir, full_mounted_tc_root + "/" + last_dir, |
| 197 | getpass.getuser()) |
| 198 | mount_points.append(mount_point) |
| 199 | |
| 200 | for mount_point in mount_points: |
asharif | 556f4ff | 2013-02-15 04:50:35 +0000 | [diff] [blame] | 201 | retval = mount_point.DoMount() |
| 202 | if retval != 0: |
| 203 | return retval |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 204 | |
| 205 | # Finally, create the symlink to build-gcc. |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 206 | command = "sudo chown " + getpass.getuser() + " " + full_mounted_tc_root |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 207 | retval = command_executer.GetCommandExecuter().RunCommand(command) |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 208 | |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 209 | try: |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 210 | CreateSymlink(last_dir + "/build-gcc", full_mounted_tc_root + "/build-gcc") |
| 211 | CreateSymlink(last_dir + "/build-binutils", full_mounted_tc_root + "/build-binutils") |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 212 | except Exception as e: |
asharif | 0b2f040 | 2013-02-15 04:50:25 +0000 | [diff] [blame] | 213 | logger.GetLogger().LogError(str(e)) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 214 | |
asharif | 3666653 | 2013-02-15 21:08:14 +0000 | [diff] [blame] | 215 | # Now call cros_sdk --enter with the rest of the arguments. |
| 216 | command = "cd %s/src/scripts && cros_sdk --enter" % chromeos_root |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 217 | |
asharif | 0269d46 | 2013-02-15 04:46:31 +0000 | [diff] [blame] | 218 | if len(passthrough_argv) > 1: |
asharif | 51516da | 2013-02-15 04:56:12 +0000 | [diff] [blame] | 219 | inner_command = " ".join(passthrough_argv[1:]) |
| 220 | inner_command = inner_command.strip() |
| 221 | if inner_command.startswith("-- "): |
| 222 | inner_command = inner_command[3:] |
asharif | c0f7193 | 2013-02-15 04:56:18 +0000 | [diff] [blame] | 223 | command_file = "tc_enter_chroot.cmd" |
| 224 | command_file_path = chromeos_root + "/src/scripts/" + command_file |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 225 | retval = command_executer.GetCommandExecuter().RunCommand("sudo rm -f " + command_file_path) |
asharif | c0f7193 | 2013-02-15 04:56:18 +0000 | [diff] [blame] | 226 | if retval != 0: |
| 227 | return retval |
| 228 | f = open(command_file_path, "w") |
| 229 | f.write(inner_command) |
| 230 | f.close() |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 231 | logger.GetLogger().LogCmd(inner_command) |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 232 | retval = command_executer.GetCommandExecuter().RunCommand("chmod +x " + command_file_path) |
asharif | c0f7193 | 2013-02-15 04:56:18 +0000 | [diff] [blame] | 233 | if retval != 0: |
| 234 | return retval |
asharif | 52284c6 | 2013-02-15 19:59:08 +0000 | [diff] [blame] | 235 | |
| 236 | if options.sudo: |
| 237 | command += " sudo ./" + command_file |
| 238 | else: |
| 239 | command += " ./" + command_file |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 240 | retval = command_executer.GetCommandExecuter().RunCommand(command, return_output) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 241 | return retval |
| 242 | else: |
asharif | 3666653 | 2013-02-15 21:08:14 +0000 | [diff] [blame] | 243 | os.chdir("%s/src/scripts" % chromeos_root) |
| 244 | ce = command_executer.GetCommandExecuter() |
| 245 | [ret, out, err] = ce.RunCommand("which cros_sdk", return_output=True) |
| 246 | cros_sdk_binary = out.split()[0] |
| 247 | return os.execv(cros_sdk_binary, ["", "--enter"]) |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 248 | |
| 249 | |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 250 | def CreateMountPointsFromString(mount_strings, chroot_dir): |
| 251 | # String has options in the form dir:mount:options |
| 252 | mount_points = [] |
| 253 | if not mount_strings: |
| 254 | return mount_points |
| 255 | mount_list = mount_strings.split() |
| 256 | for mount_string in mount_list: |
| 257 | mount_values = mount_string.split(":") |
| 258 | external_dir = mount_values[0] |
| 259 | mount_dir = mount_values[1] |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 260 | if len(mount_values) > 2: |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 261 | options = mount_values[2] |
| 262 | else: |
| 263 | options = None |
raymes | a7d219c | 2013-02-15 04:56:23 +0000 | [diff] [blame] | 264 | mount_point = MountPoint(external_dir, chroot_dir + "/" + mount_dir, |
asharif | da9ac65 | 2013-02-15 04:50:09 +0000 | [diff] [blame] | 265 | getpass.getuser(), options) |
| 266 | mount_points.append(mount_point) |
| 267 | return mount_points |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 268 | |
| 269 | |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 270 | def CreateSymlink(target, link_name): |
kbaclawski | 6999ada | 2013-02-15 19:57:09 +0000 | [diff] [blame] | 271 | logger.GetLogger().LogFatalIf(target.startswith("/"), |
| 272 | "Can't create symlink to absolute path!") |
asharif | 8a87387 | 2013-02-15 04:56:52 +0000 | [diff] [blame] | 273 | real_from_file = utils.GetRoot(link_name)[0] + "/" + target |
| 274 | if os.path.realpath(real_from_file) != os.path.realpath(link_name): |
| 275 | if os.path.exists(link_name): |
| 276 | command = "rm -rf " + link_name |
| 277 | command_executer.GetCommandExecuter().RunCommand(command) |
| 278 | os.symlink(target, link_name) |
| 279 | |
| 280 | |
asharif | 252df0f | 2013-02-15 04:46:28 +0000 | [diff] [blame] | 281 | if __name__ == "__main__": |
asharif | 2198c51 | 2013-02-15 09:21:35 +0000 | [diff] [blame] | 282 | retval = Main(sys.argv) |
| 283 | sys.exit(retval) |