blob: a3aea0f1e4224b46e64babaec8800381cb0eda61 [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)
47 utils.AssertTrue(retval == 0)
48 retval = self.CreateAndOwnDir(self.external_dir)
49 utils.AssertTrue(retval == 0)
50 retval = self.MountDir()
51 utils.AssertTrue(retval == 0)
52 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")
84 parser.add_option("-m", "--other_mounts", dest="other_mounts",
raymesa7d219c2013-02-15 04:56:23 +000085 help="Other mount points in the form: " +
asharifda9ac652013-02-15 04:50:09 +000086 "dir:mounted_dir:options")
asharif1755b432013-02-15 04:55:29 +000087 parser.add_option("-s", "--mount-scripts-only",
88 dest="mount_scripts_only",
89 action="store_true",
90 default=False,
91 help="Mount only the scripts dir, and not the sources.")
asharif252df0f2013-02-15 04:46:28 +000092
raymes01959ae2013-02-15 04:50:07 +000093 passthrough_argv = []
asharif1755b432013-02-15 04:55:29 +000094 (options, passthrough_argv) = parser.parse_args(argv)
asharif252df0f2013-02-15 04:46:28 +000095
asharif0b2f0402013-02-15 04:50:25 +000096 chromeos_root = options.chromeos_root
asharif17621302013-02-15 04:46:35 +000097
98 chromeos_root = os.path.expanduser(chromeos_root)
asharifda9ac652013-02-15 04:50:09 +000099 if options.toolchain_root:
100 options.toolchain_root = os.path.expanduser(options.toolchain_root)
asharif17621302013-02-15 04:46:35 +0000101
asharif252df0f2013-02-15 04:46:28 +0000102 chromeos_root = os.path.abspath(chromeos_root)
103
asharif0b2f0402013-02-15 04:50:25 +0000104 if options.toolchain_root is None:
105 logger.GetLogger().LogError("--toolchain_root not specified")
asharif252df0f2013-02-15 04:46:28 +0000106 parser.print_help()
107 sys.exit(1)
108
asharif28238cf2013-02-15 04:51:01 +0000109 tc_dirs = [options.toolchain_root + "/google_vendor_src_branch/gcc",
110 options.toolchain_root + "/google_vendor_src_branch/binutils"]
asharif0b2f0402013-02-15 04:50:25 +0000111
asharif1755b432013-02-15 04:55:29 +0000112 if options.mount_scripts_only == False:
113 for tc_dir in tc_dirs:
114 if not os.path.exists(tc_dir):
115 logger.GetLogger().LogError("toolchain path " +
116 tc_dir + " does not exist!")
117 parser.print_help()
118 sys.exit(1)
asharif0b2f0402013-02-15 04:50:25 +0000119
120 if not os.path.exists(chromeos_root):
121 logger.GetLogger().LogError("chromeos_root " + options.chromeos_root +
122 " does not exist!")
123 parser.print_help()
124 sys.exit(1)
125
126 if not os.path.exists(chromeos_root + "/src/scripts/enter_chroot.sh"):
raymesa7d219c2013-02-15 04:56:23 +0000127 logger.GetLogger().LogError(options.chromeos_root +
asharif0b2f0402013-02-15 04:50:25 +0000128 "/src/scripts/enter_chroot.sh"
129 " not found!")
130 parser.print_help()
131 sys.exit(1)
132
raymes01959ae2013-02-15 04:50:07 +0000133 rootdir = utils.GetRoot(sys.argv[0])[0]
asharif252df0f2013-02-15 04:46:28 +0000134 version_dir = rootdir
135
asharif252df0f2013-02-15 04:46:28 +0000136 mounted_tc_root = "/usr/local/toolchain_root"
137 full_mounted_tc_root = chromeos_root + "/chroot/" + mounted_tc_root
138 full_mounted_tc_root = os.path.abspath(full_mounted_tc_root)
raymesa7d219c2013-02-15 04:56:23 +0000139
asharifda9ac652013-02-15 04:50:09 +0000140 mount_points = []
asharif1755b432013-02-15 04:55:29 +0000141 if options.mount_scripts_only == False:
142 for tc_dir in tc_dirs:
143 last_dir = utils.GetRoot(tc_dir)[1]
144 mount_point = MountPoint(tc_dir, full_mounted_tc_root + "/" + last_dir,
145 getpass.getuser(), "ro")
146 mount_points.append(mount_point)
asharif252df0f2013-02-15 04:46:28 +0000147
asharif541b6392013-02-15 04:50:38 +0000148 output = options.output
149 if output is None:
asharifa55807f2013-02-15 05:15:39 +0000150 output = options.toolchain_root + "/output"
asharif541b6392013-02-15 04:50:38 +0000151 mount_points.append(MountPoint(output, full_mounted_tc_root + "/output",
152 getpass.getuser()))
raymesa7d219c2013-02-15 04:56:23 +0000153 mount_points += CreateMountPointsFromString(options.other_mounts,
asharifda9ac652013-02-15 04:50:09 +0000154 chromeos_root + "/chroot/")
155
asharif252df0f2013-02-15 04:46:28 +0000156 last_dir = utils.GetRoot(version_dir)[1]
asharifda9ac652013-02-15 04:50:09 +0000157 mount_point = MountPoint(version_dir, full_mounted_tc_root + "/" + last_dir,
158 getpass.getuser())
159 mount_points.append(mount_point)
160
161 for mount_point in mount_points:
asharif556f4ff2013-02-15 04:50:35 +0000162 retval = mount_point.DoMount()
163 if retval != 0:
164 return retval
asharif252df0f2013-02-15 04:46:28 +0000165
166 # Finally, create the symlink to build-gcc.
asharifda9ac652013-02-15 04:50:09 +0000167 command = "sudo chown " + getpass.getuser() + " " + full_mounted_tc_root
asharif8a873872013-02-15 04:56:52 +0000168 retval = command_executer.GetCommandExecuter().RunCommand(command)
asharifda9ac652013-02-15 04:50:09 +0000169
asharif252df0f2013-02-15 04:46:28 +0000170 try:
asharif8a873872013-02-15 04:56:52 +0000171 CreateSymlink(last_dir + "/build-gcc", full_mounted_tc_root + "/build-gcc")
172 CreateSymlink(last_dir + "/build-binutils", full_mounted_tc_root + "/build-binutils")
asharif252df0f2013-02-15 04:46:28 +0000173 except Exception as e:
asharif0b2f0402013-02-15 04:50:25 +0000174 logger.GetLogger().LogError(str(e))
asharif252df0f2013-02-15 04:46:28 +0000175
176 # Now call enter_chroot with the rest of the arguments.
ashariffcf8cfc2013-02-15 04:49:21 +0000177 command = chromeos_root + "/src/scripts/enter_chroot.sh"
asharif252df0f2013-02-15 04:46:28 +0000178
asharif0269d462013-02-15 04:46:31 +0000179 if len(passthrough_argv) > 1:
asharif51516da2013-02-15 04:56:12 +0000180 inner_command = " ".join(passthrough_argv[1:])
181 inner_command = inner_command.strip()
182 if inner_command.startswith("-- "):
183 inner_command = inner_command[3:]
asharifc0f71932013-02-15 04:56:18 +0000184 command_file = "tc_enter_chroot.cmd"
185 command_file_path = chromeos_root + "/src/scripts/" + command_file
asharif8a873872013-02-15 04:56:52 +0000186 retval = command_executer.GetCommandExecuter().RunCommand("sudo rm -f " + command_file_path)
asharifc0f71932013-02-15 04:56:18 +0000187 if retval != 0:
188 return retval
189 f = open(command_file_path, "w")
190 f.write(inner_command)
191 f.close()
raymesa7d219c2013-02-15 04:56:23 +0000192 logger.GetLogger().LogCmd(inner_command)
asharif8a873872013-02-15 04:56:52 +0000193 retval = command_executer.GetCommandExecuter().RunCommand("chmod +x " + command_file_path)
asharifc0f71932013-02-15 04:56:18 +0000194 if retval != 0:
195 return retval
196 command += " ./" + command_file
asharif8a873872013-02-15 04:56:52 +0000197 retval = command_executer.GetCommandExecuter().RunCommand(command, return_output)
asharif252df0f2013-02-15 04:46:28 +0000198 return retval
199 else:
asharif556f4ff2013-02-15 04:50:35 +0000200 return os.execv(command, [""])
asharif252df0f2013-02-15 04:46:28 +0000201
202
asharifda9ac652013-02-15 04:50:09 +0000203def CreateMountPointsFromString(mount_strings, chroot_dir):
204 # String has options in the form dir:mount:options
205 mount_points = []
206 if not mount_strings:
207 return mount_points
208 mount_list = mount_strings.split()
209 for mount_string in mount_list:
210 mount_values = mount_string.split(":")
211 external_dir = mount_values[0]
212 mount_dir = mount_values[1]
raymesa7d219c2013-02-15 04:56:23 +0000213 if len(mount_values) > 2:
asharifda9ac652013-02-15 04:50:09 +0000214 options = mount_values[2]
215 else:
216 options = None
raymesa7d219c2013-02-15 04:56:23 +0000217 mount_point = MountPoint(external_dir, chroot_dir + "/" + mount_dir,
asharifda9ac652013-02-15 04:50:09 +0000218 getpass.getuser(), options)
219 mount_points.append(mount_point)
220 return mount_points
asharif252df0f2013-02-15 04:46:28 +0000221
222
asharif8a873872013-02-15 04:56:52 +0000223def CreateSymlink(target, link_name):
224 utils.AssertExit(target.startswith("/") == False)
225 real_from_file = utils.GetRoot(link_name)[0] + "/" + target
226 if os.path.realpath(real_from_file) != os.path.realpath(link_name):
227 if os.path.exists(link_name):
228 command = "rm -rf " + link_name
229 command_executer.GetCommandExecuter().RunCommand(command)
230 os.symlink(target, link_name)
231
232
asharif252df0f2013-02-15 04:46:28 +0000233if __name__ == "__main__":
asharife3668f12013-02-15 04:46:29 +0000234 Main(sys.argv)
asharif252df0f2013-02-15 04:46:28 +0000235