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