check return codes and print warnings when suspicius
[lxc-userspace.git] / lxcsu
1 #!/usr/bin/python
2
3 import sys
4 import os
5 import setns
6 import pdb
7
8 from argparse import ArgumentParser
9
10 drop_capabilities='cap_sys_admin,cap_sys_boot,cap_sys_module'
11
12 # can set to True here, but also use the -d option
13 debug = False
14
15 def getarch(f):
16     output = os.popen('readelf -h %s 2>&1'%f).readlines()
17     classlines = [x for x in output if ('Class' in x.split(':')[0])]
18     line = classlines[0]
19     c = line.split(':')[1]
20     if ('ELF64' in c):
21         return 'x86_64'
22     elif ('ELF32' in c):
23         return 'i686'
24     else:
25         raise Exception('Could not determine architecture')
26
27 def get_cgroup_subdirs_for_pid(pid):
28     cgroup_info_file = '/proc/%s/cgroup'%pid
29     cgroup_lines = open(cgroup_info_file).read().splitlines()
30     
31     subdirs = {}
32     for line in cgroup_lines:
33         try:
34             _, cgroup_name, subdir = line.split(':')
35             subdirs[cgroup_name] = subdir
36         except Exception, e:
37             print "Error reading cgroup info: %s"%str(e)
38             pass
39     
40     return subdirs
41         
42     
43 def umount(fs_dir, opts=''):
44     output = os.popen('/bin/umount %s %s 2>&1'%(opts, fs_dir)).read()
45     return ('device is busy' not in output)
46
47 def main ():
48     parser = ArgumentParser()
49     parser.add_argument("-n", "--nonet",
50                                         action="store_true", dest="netns", default=False,
51                                         help="Don't enter network namespace")
52     parser.add_argument("-m", "--nomnt",
53                                         action="store_true", dest="mntns", default=False,
54                                         help="Don't enter mount namespace")
55     parser.add_argument("-p", "--nopid",
56                                         action="store_true", dest="pidns", default=False,
57                                         help="Don't enter pid namespace")
58     parser.add_argument("-r", "--root",
59                                         action="store_true", dest="root", default=False,
60                                         help="Enter as root: be careful")
61     parser.add_argument("-i","--internal",
62                                         action="store_true", dest="internal", default=False,
63                                         help="does *not* prepend '-- -c' to arguments - or invoke lxcsu-internal")
64     parser.add_argument("-d","--debug",
65                                         action='store_true', dest='debug', default=False,
66                                         help="debug option")
67     parser.add_argument("-s","--nosliceuid",
68                                         action='store_true', dest="nosliceuid", default=False,
69                                         help="do not change to slice uid inside of slice")
70     parser.add_argument("-o","--noslicehome",
71                                         action='store_true', dest="noslicehome", default=False,
72                                         help="do not change to slice home directory inside of slice")
73
74     if os.path.exists("/etc/lxcsu_default"):
75         defaults = parser.parse_args(file("/etc/lxcsu_default","r").read().split())
76         parser.set_defaults(**defaults.__dict__)
77
78     parser.add_argument ("slice_name")
79     parser.add_argument ("command_to_run",nargs="*")
80
81     args = parser.parse_args()
82     slice_name=args.slice_name
83
84     # unless we run the symlink 'lxcsu-internal', or we specify the -i option, prepend '--' '-c'
85     if sys.argv[0].find('internal')>=0: args.internal=True
86
87     if len(args.command_to_run)>0 and (args.command_to_run[0] == "/sbin/service"):
88         # A quick hack to support nodemanager interfaces.py when restarting
89         # networking in a slice.
90         args.nosliceuid = True
91
92     # plain lxcsu
93     if not args.internal:
94         # no command given: enter interactive shell
95         if not args.command_to_run: args.command_to_run=['/bin/sh']
96         args.command_to_run = [ '-c' ] + [" ".join(args.command_to_run)]
97
98     # support for either setting debug at the top of this file, or on the command-line
99     if args.debug:
100         global debug
101         debug=True
102
103     try:
104         cmd = '/usr/bin/virsh --connect lxc:/// domid %s'%slice_name
105         pidnum = int(os.popen(cmd).read().rstrip())
106     except:
107         print "Domain %s not found"%slice_name
108         exit(1)
109
110     pid = '%s'%pidnum
111     if debug: print "Found pidnum",pidnum
112     cmdline = open('/proc/%s/cmdline'%pidnum).read().rstrip('\n\x00')
113     arch = getarch('/proc/%s/exe'%pid)
114
115     if (not pid):
116         print "Domain %s not started"%slice_name
117         exit(1)
118
119     if arch is None:
120         arch = 'x86_64'
121
122     # Set sysctls specific to slice
123     sysctls = []
124     sysctl_dir = '/etc/planetlab/vsys-attributes/%s'%slice_name
125     if (os.access(sysctl_dir,0)):
126         entries = os.listdir(sysctl_dir)
127         for e in entries:
128             prefix = 'vsys_sysctl.'
129             if (e.startswith(prefix)):
130                 sysctl_file = '/'.join([sysctl_dir,e])
131                 sysctl_name = e[len(prefix):]
132                 sysctl_val = open(sysctl_file).read()
133                 sysctls.append((sysctl_file, sysctl_name, sysctl_val))
134
135     subdirs = get_cgroup_subdirs_for_pid(pid) 
136     sysfs_root = '/sys/fs/cgroup'
137
138     # If the slice is frozen, then we'll get an EBUSY when trying to write to the task
139     # list for the freezer cgroup. Since the user couldn't do anything anyway, it's best
140     # in this case to error out the shell. (an alternative would be to un-freeze it,
141     # add the task, and re-freeze it)
142     # Enter cgroups
143     current_cgroup = ''
144     for subsystem in ['cpuset','memory','blkio','cpuacct','cpuacct,cpu','freezer']:
145         try:
146             current_cgroup = subsystem
147
148             # There seems to be a bug in the cgroup schema: cpuacct,cpu can become cpu,cpuacct
149             # We need to handle both
150             task_path_alt = None
151             try:
152                subsystem_comps = subsystem.split(',')
153                subsystem_comps.reverse()
154                subsystem_alt = ','.join(subsystem_comps)
155                tasks_path_alt = [sysfs_root, subsystem_alt, subdirs[subsystem], 'tasks']
156             except Exception,e:
157                 pass
158                
159             tasks_path = [sysfs_root,subsystem,subdirs[subsystem],'tasks']
160             tasks_path_str = '/'.join(tasks_path)
161      
162             try:
163                 f = open(tasks_path_str, 'w')
164             except:
165                 tasks_path_alt_str = '/'.join(tasks_path_alt)
166                 f = open(tasks_path_alt_str, 'w')
167
168             f.write(str(os.getpid()))
169             if (subsystem=='freezer'):
170                 f.close()
171
172         except Exception,e:
173             if (not subdirs.has_key(subsystem)):
174                 pass
175             else:
176                 if debug: print e 
177                 print "Error assigning cgroup %s (%s) for slice %s"%(current_cgroup,pid, slice_name)
178                 exit(1)
179
180
181     def chcontext (path):
182         retcod = setns.chcontext (path)
183         if retcod != 0:
184             print 'WARNING - setns(%s)=>%s (ignored)'%(path,retcod)
185         return retcod
186
187     chcontext('/proc/%s/ns/uts'%pid)
188     chcontext('/proc/%s/ns/ipc'%pid)
189         
190     if (not args.pidns):
191         chcontext('/proc/%s/ns/pid'%pid)
192
193     if (not args.netns):
194         chcontext('/proc/%s/ns/net'%pid)
195
196     if (not args.mntns):
197         chcontext('/proc/%s/ns/mnt'%pid)
198
199     proc_mounted = False
200     if (not os.access('/proc/self',0)):
201         proc_mounted = True
202         setns.proc_mount()
203
204     for (sysctl_file, sysctl_name, sysctl_val) in sysctls:
205         for fn in ["/sbin/sysctl", "/usr/sbin/sysctl", "/bin/sysctl", "/usr/bin/sysctl"]:
206             if os.path.exists(fn):
207                 os.system('%s -w %s=%s  >/dev/null 2>&1'%(fn, sysctl_name,sysctl_val))
208                 break
209             else:
210                 print "Error: image does not have a sysctl binary"
211
212     # cgroups is not yet LXC-safe, so we need to use the coarse grained access control
213     # strategy of unmounting the filesystem
214
215     umount_result = True
216     for subsystem in ['cpuset','cpu,cpuacct','memory','devices','freezer','net_cls','blkio','perf_event','systemd']:
217         fs_path = '/sys/fs/cgroup/%s'%subsystem
218         if (not umount(fs_path,'-l')):
219             print 'WARNING - umount failed (ignored) with path=',fs_path
220             pass
221             # Leaving these comments for historical reference
222             #print "Error disabling cgroup access"
223             #exit(1) - Don't need this because failure here implies failure in the call to umount /sys/fs/cgroup
224
225     if (not umount('/sys/fs/cgroup')):
226         print "Error disabling cgroup access"
227         exit(1)
228
229     pid = os.fork()
230
231     # capsh has a --user option starting with f14
232     # so if only for f12 we need to fake this one
233     #
234     # capsh.c does essentially the following when invoked with --user:
235     #           pwd = getpwnam(user); ...
236     #           ngroups = MAX_GROUPS; 
237     #           status = getgrouplist(user, pwd->pw_gid, groups, &ngroups); ...
238     #           status = setgroups(ngroups, groups); ...
239     #           status = setgid(pwd->pw_gid); ...
240     #           status = setuid(pwd->pw_uid); ...
241     # however we cannot simulate that ourselves because if we did in this process then
242     # capsh could not be allowed to mess with caps any more
243
244     def getuid (slicename):
245         import pwd
246         try:
247             return pwd.getpwnam(slicename).pw_uid
248         except:
249             return
250
251     if (pid == 0):
252         cap_arg = '--drop='+drop_capabilities
253
254         if (not args.root):
255             if (args.nosliceuid):
256                 # we still want to drop capabilities, but don't want to switch UIDs
257                 exec_args = [arch,'/usr/sbin/capsh',cap_arg,'--','--login',]+args.command_to_run
258             else:
259                 uid = getuid (slice_name)
260                 if not uid:
261                     print "lxcsu could not spot %s in /etc/passwd - exiting"%slice_name
262                     exit(1)
263                 exec_args = [arch,'/usr/sbin/capsh',cap_arg,'--uid=%s'%uid,'--','--login',]+args.command_to_run
264 # once we can drop f12, it would be nicer to instead go for
265 # exec_args = [arch,'/usr/sbin/capsh',cap_arg,'--user=%s'%slice_name,'--','--login',]+args.command_to_run
266         else:
267             exec_args = [arch,'/usr/sbin/capsh','--','--login']+args.command_to_run
268
269         os.environ['SHELL'] = '/bin/sh'
270         if os.path.exists('/etc/planetlab/lib/bind_public.so'):
271             os.environ['LD_PRELOAD'] = '/etc/planetlab/lib/bind_public.so'
272         if not args.noslicehome:
273             os.environ['HOME'] = '/home/%s'%slice_name
274             os.chdir("/home/%s"%(slice_name))
275         if debug: print 'lxcsu:execv:','/usr/bin/setarch',exec_args
276         os.execv('/usr/bin/setarch',exec_args)
277     else:
278         setns.proc_umount()
279         _,status = os.waitpid(pid,0)
280         exit(os.WEXITSTATUS(status))
281
282 if __name__ == '__main__':
283         main()