blob: ca84b76998b04d7ec1891f43f551b89e43ec564a [file] [log] [blame]
asharif252df0f2013-02-15 04:46:28 +00001#!/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
7This script enters the chroot with mounted sources.
8"""
9
10__author__ = "asharif@google.com (Ahmad Sharif)"
11
12import getpass
13import optparse
14import os
asharif556f4ff2013-02-15 04:50:35 +000015import pwd
asharifc0f71932013-02-15 04:56:18 +000016import stat
asharif252df0f2013-02-15 04:46:28 +000017import sys
raymes01959ae2013-02-15 04:50:07 +000018from utils import command_executer
19from utils import logger
asharif252df0f2013-02-15 04:46:28 +000020from utils import utils
21
asharifda9ac652013-02-15 04:50:09 +000022class MountPoint:
23 def __init__(self, external_dir, mount_dir, owner, options=None):
24 self.external_dir = external_dir
25 self.mount_dir = mount_dir
26 self.owner = owner
27 self.options = options
28
29
asharif556f4ff2013-02-15 04:50:35 +000030 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
asharif8a873872013-02-15 04:56:52 +000035 retval = command_executer.GetCommandExecuter().RunCommand(command)
asharif556f4ff2013-02-15 04:50:35 +000036 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
asharif8a873872013-02-15 04:56:52 +000041 retval = command_executer.GetCommandExecuter().RunCommand(command)
asharifda9ac652013-02-15 04:50:09 +000042 return retval
43
44
45 def DoMount(self):
asharif556f4ff2013-02-15 04:50:35 +000046 retval = self.CreateAndOwnDir(self.mount_dir)
kbaclawski6999ada2013-02-15 19:57:09 +000047 logger.GetLogger().LogFatalIf(retval, "Cannot create mount_dir!")
asharif556f4ff2013-02-15 04:50:35 +000048 retval = self.CreateAndOwnDir(self.external_dir)
kbaclawski6999ada2013-02-15 19:57:09 +000049 logger.GetLogger().LogFatalIf(retval, "Cannot create external_dir!")
asharif556f4ff2013-02-15 04:50:35 +000050 retval = self.MountDir()
kbaclawski6999ada2013-02-15 19:57:09 +000051 logger.GetLogger().LogFatalIf(retval, "Cannot mount!")
asharif556f4ff2013-02-15 04:50:35 +000052 return retval
asharifda9ac652013-02-15 04:50:09 +000053
54
55 def MountDir(self):
56 command = "sudo mount --bind " + self.external_dir + " " + self.mount_dir
57 if self.options == "ro":
58 command += " && sudo mount --bind -oremount,ro " + self.mount_dir
asharif8a873872013-02-15 04:56:52 +000059 retval = command_executer.GetCommandExecuter().RunCommand(command)
asharifda9ac652013-02-15 04:50:09 +000060 return retval
61
62
63 def __str__(self):
64 ret = ""
65 ret += self.external_dir + "\n"
66 ret += self.mount_dir + "\n"
67 if self.owner:
68 ret += self.owner + "\n"
69 if self.options:
70 ret += self.options + "\n"
71 return ret
72
73
74def Main(argv, return_output=False):
asharif252df0f2013-02-15 04:46:28 +000075 """The main function."""
76 parser = optparse.OptionParser()
77 parser.add_option("-c", "--chromeos_root", dest="chromeos_root",
asharif0b2f0402013-02-15 04:50:25 +000078 default="../..",
asharif252df0f2013-02-15 04:46:28 +000079 help="ChromeOS root checkout directory.")
80 parser.add_option("-t", "--toolchain_root", dest="toolchain_root",
81 help="Toolchain root directory.")
asharif541b6392013-02-15 04:50:38 +000082 parser.add_option("-o", "--output", dest="output",
83 help="Toolchain output directory")
asharif52284c62013-02-15 19:59:08 +000084 parser.add_option("--sudo", dest="sudo",
85 action="store_true",
86 default=False,
87 help="Run the command with sudo.")
asharif8697d4e2013-02-15 09:18:09 +000088 parser.add_option("-r", "--third_party", dest="third_party",
89 help="The third_party directory to mount.")
asharif541b6392013-02-15 04:50:38 +000090 parser.add_option("-m", "--other_mounts", dest="other_mounts",
raymesa7d219c2013-02-15 04:56:23 +000091 help="Other mount points in the form: " +
asharifda9ac652013-02-15 04:50:09 +000092 "dir:mounted_dir:options")
asharif1755b432013-02-15 04:55:29 +000093 parser.add_option("-s", "--mount-scripts-only",
94 dest="mount_scripts_only",
95 action="store_true",
96 default=False,
97 help="Mount only the scripts dir, and not the sources.")
asharif252df0f2013-02-15 04:46:28 +000098
raymes01959ae2013-02-15 04:50:07 +000099 passthrough_argv = []
asharif1755b432013-02-15 04:55:29 +0000100 (options, passthrough_argv) = parser.parse_args(argv)
asharif252df0f2013-02-15 04:46:28 +0000101
asharif0b2f0402013-02-15 04:50:25 +0000102 chromeos_root = options.chromeos_root
asharif17621302013-02-15 04:46:35 +0000103
104 chromeos_root = os.path.expanduser(chromeos_root)
asharifda9ac652013-02-15 04:50:09 +0000105 if options.toolchain_root:
106 options.toolchain_root = os.path.expanduser(options.toolchain_root)
asharif17621302013-02-15 04:46:35 +0000107
asharif252df0f2013-02-15 04:46:28 +0000108 chromeos_root = os.path.abspath(chromeos_root)
109
asharif8697d4e2013-02-15 09:18:09 +0000110 tc_dirs = []
asharif642509c2013-02-15 09:19:32 +0000111 if options.toolchain_root is None or options.mount_scripts_only:
asharif8697d4e2013-02-15 09:18:09 +0000112 m = "toolchain_root not specified. Will not mount toolchain dirs."
113 logger.GetLogger().LogWarning(m)
114 else:
115 tc_dirs = [options.toolchain_root + "/google_vendor_src_branch/gcc",
116 options.toolchain_root + "/google_vendor_src_branch/binutils"]
asharif252df0f2013-02-15 04:46:28 +0000117
asharif8697d4e2013-02-15 09:18:09 +0000118 for tc_dir in tc_dirs:
119 if not os.path.exists(tc_dir):
120 logger.GetLogger().LogError("toolchain path " +
121 tc_dir + " does not exist!")
122 parser.print_help()
123 sys.exit(1)
asharif0b2f0402013-02-15 04:50:25 +0000124
125 if not os.path.exists(chromeos_root):
126 logger.GetLogger().LogError("chromeos_root " + options.chromeos_root +
127 " does not exist!")
128 parser.print_help()
129 sys.exit(1)
130
asharifc8e8e122013-02-15 21:19:59 +0000131 if not os.path.exists(chromeos_root + "/src/scripts/build_packages"):
raymesa7d219c2013-02-15 04:56:23 +0000132 logger.GetLogger().LogError(options.chromeos_root +
asharifc8e8e122013-02-15 21:19:59 +0000133 "/src/scripts/build_packages"
asharif0b2f0402013-02-15 04:50:25 +0000134 " not found!")
135 parser.print_help()
136 sys.exit(1)
137
asharif8697d4e2013-02-15 09:18:09 +0000138 rootdir = utils.GetRoot(__file__)[0]
asharif252df0f2013-02-15 04:46:28 +0000139 version_dir = rootdir
140
asharif252df0f2013-02-15 04:46:28 +0000141 mounted_tc_root = "/usr/local/toolchain_root"
142 full_mounted_tc_root = chromeos_root + "/chroot/" + mounted_tc_root
143 full_mounted_tc_root = os.path.abspath(full_mounted_tc_root)
raymesa7d219c2013-02-15 04:56:23 +0000144
asharifda9ac652013-02-15 04:50:09 +0000145 mount_points = []
asharif8697d4e2013-02-15 09:18:09 +0000146 for tc_dir in tc_dirs:
147 last_dir = utils.GetRoot(tc_dir)[1]
148 mount_point = MountPoint(tc_dir, full_mounted_tc_root + "/" + last_dir,
149 getpass.getuser(), "ro")
150 mount_points.append(mount_point)
asharif252df0f2013-02-15 04:46:28 +0000151
asharif8697d4e2013-02-15 09:18:09 +0000152 # Add the third_party mount point if it exists
153 if options.third_party:
154 third_party_dir = options.third_party
kbaclawski6999ada2013-02-15 19:57:09 +0000155 logger.GetLogger().LogFatalIf(not os.path.isdir(third_party_dir),
156 "--third_party option is not a valid dir.")
asharif8697d4e2013-02-15 09:18:09 +0000157 else:
158 third_party_dir = os.path.abspath("%s/../../../third_party" %
159 os.path.dirname(__file__))
160
161 if os.path.isdir(third_party_dir):
162 mount_point = MountPoint(third_party_dir,
163 ("%s/%s" %
164 (full_mounted_tc_root,
165 os.path.basename(third_party_dir))),
166 getpass.getuser())
167 mount_points.append(mount_point)
kbaclawski6999ada2013-02-15 19:57:09 +0000168
asharif541b6392013-02-15 04:50:38 +0000169 output = options.output
asharif8697d4e2013-02-15 09:18:09 +0000170 if output is None and options.toolchain_root:
asharif8697d4e2013-02-15 09:18:09 +0000171 # Mount the output directory at /usr/local/toolchain_root/output
asharif01410cc2013-02-15 09:19:31 +0000172 output = options.toolchain_root + "/output"
173
174 if output:
asharif8697d4e2013-02-15 09:18:09 +0000175 mount_points.append(MountPoint(output, full_mounted_tc_root + "/output",
176 getpass.getuser()))
177
178 # Mount the other mount points
raymesa7d219c2013-02-15 04:56:23 +0000179 mount_points += CreateMountPointsFromString(options.other_mounts,
asharifda9ac652013-02-15 04:50:09 +0000180 chromeos_root + "/chroot/")
181
asharif252df0f2013-02-15 04:46:28 +0000182 last_dir = utils.GetRoot(version_dir)[1]
asharif8697d4e2013-02-15 09:18:09 +0000183
184 # Mount the version dir (v14) at /usr/local/toolchain_root/v14
asharifda9ac652013-02-15 04:50:09 +0000185 mount_point = MountPoint(version_dir, full_mounted_tc_root + "/" + last_dir,
186 getpass.getuser())
187 mount_points.append(mount_point)
188
189 for mount_point in mount_points:
asharif556f4ff2013-02-15 04:50:35 +0000190 retval = mount_point.DoMount()
191 if retval != 0:
192 return retval
asharif252df0f2013-02-15 04:46:28 +0000193
194 # Finally, create the symlink to build-gcc.
asharifda9ac652013-02-15 04:50:09 +0000195 command = "sudo chown " + getpass.getuser() + " " + full_mounted_tc_root
asharif8a873872013-02-15 04:56:52 +0000196 retval = command_executer.GetCommandExecuter().RunCommand(command)
asharifda9ac652013-02-15 04:50:09 +0000197
asharif252df0f2013-02-15 04:46:28 +0000198 try:
asharif8a873872013-02-15 04:56:52 +0000199 CreateSymlink(last_dir + "/build-gcc", full_mounted_tc_root + "/build-gcc")
200 CreateSymlink(last_dir + "/build-binutils", full_mounted_tc_root + "/build-binutils")
asharif252df0f2013-02-15 04:46:28 +0000201 except Exception as e:
asharif0b2f0402013-02-15 04:50:25 +0000202 logger.GetLogger().LogError(str(e))
asharif252df0f2013-02-15 04:46:28 +0000203
asharif36666532013-02-15 21:08:14 +0000204 # Now call cros_sdk --enter with the rest of the arguments.
205 command = "cd %s/src/scripts && cros_sdk --enter" % chromeos_root
asharif252df0f2013-02-15 04:46:28 +0000206
asharif0269d462013-02-15 04:46:31 +0000207 if len(passthrough_argv) > 1:
asharif51516da2013-02-15 04:56:12 +0000208 inner_command = " ".join(passthrough_argv[1:])
209 inner_command = inner_command.strip()
210 if inner_command.startswith("-- "):
211 inner_command = inner_command[3:]
asharifc0f71932013-02-15 04:56:18 +0000212 command_file = "tc_enter_chroot.cmd"
213 command_file_path = chromeos_root + "/src/scripts/" + command_file
asharif8a873872013-02-15 04:56:52 +0000214 retval = command_executer.GetCommandExecuter().RunCommand("sudo rm -f " + command_file_path)
asharifc0f71932013-02-15 04:56:18 +0000215 if retval != 0:
216 return retval
217 f = open(command_file_path, "w")
218 f.write(inner_command)
219 f.close()
raymesa7d219c2013-02-15 04:56:23 +0000220 logger.GetLogger().LogCmd(inner_command)
asharif8a873872013-02-15 04:56:52 +0000221 retval = command_executer.GetCommandExecuter().RunCommand("chmod +x " + command_file_path)
asharifc0f71932013-02-15 04:56:18 +0000222 if retval != 0:
223 return retval
asharif52284c62013-02-15 19:59:08 +0000224
225 if options.sudo:
226 command += " sudo ./" + command_file
227 else:
228 command += " ./" + command_file
asharif8a873872013-02-15 04:56:52 +0000229 retval = command_executer.GetCommandExecuter().RunCommand(command, return_output)
asharif252df0f2013-02-15 04:46:28 +0000230 return retval
231 else:
asharif36666532013-02-15 21:08:14 +0000232 os.chdir("%s/src/scripts" % chromeos_root)
233 ce = command_executer.GetCommandExecuter()
234 [ret, out, err] = ce.RunCommand("which cros_sdk", return_output=True)
235 cros_sdk_binary = out.split()[0]
236 return os.execv(cros_sdk_binary, ["", "--enter"])
asharif252df0f2013-02-15 04:46:28 +0000237
238
asharifda9ac652013-02-15 04:50:09 +0000239def CreateMountPointsFromString(mount_strings, chroot_dir):
240 # String has options in the form dir:mount:options
241 mount_points = []
242 if not mount_strings:
243 return mount_points
244 mount_list = mount_strings.split()
245 for mount_string in mount_list:
246 mount_values = mount_string.split(":")
247 external_dir = mount_values[0]
248 mount_dir = mount_values[1]
raymesa7d219c2013-02-15 04:56:23 +0000249 if len(mount_values) > 2:
asharifda9ac652013-02-15 04:50:09 +0000250 options = mount_values[2]
251 else:
252 options = None
raymesa7d219c2013-02-15 04:56:23 +0000253 mount_point = MountPoint(external_dir, chroot_dir + "/" + mount_dir,
asharifda9ac652013-02-15 04:50:09 +0000254 getpass.getuser(), options)
255 mount_points.append(mount_point)
256 return mount_points
asharif252df0f2013-02-15 04:46:28 +0000257
258
asharif8a873872013-02-15 04:56:52 +0000259def CreateSymlink(target, link_name):
kbaclawski6999ada2013-02-15 19:57:09 +0000260 logger.GetLogger().LogFatalIf(target.startswith("/"),
261 "Can't create symlink to absolute path!")
asharif8a873872013-02-15 04:56:52 +0000262 real_from_file = utils.GetRoot(link_name)[0] + "/" + target
263 if os.path.realpath(real_from_file) != os.path.realpath(link_name):
264 if os.path.exists(link_name):
265 command = "rm -rf " + link_name
266 command_executer.GetCommandExecuter().RunCommand(command)
267 os.symlink(target, link_name)
268
269
asharif252df0f2013-02-15 04:46:28 +0000270if __name__ == "__main__":
asharif2198c512013-02-15 09:21:35 +0000271 retval = Main(sys.argv)
272 sys.exit(retval)