blob: 7062e2b3588b935c9b6000dd316974776beacefc [file] [log] [blame]
Dan Shi767dced2015-02-01 00:21:07 -08001# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Ben Kwa966db082017-06-05 14:17:23 -07005"""This tool can be used to set up a base container for test. For example,
Dan Shi767dced2015-02-01 00:21:07 -08006 python lxc.py -s -p /tmp/container
7This command will download and setup base container in directory /tmp/container.
8After that command finishes, you can run lxc command to work with the base
9container, e.g.,
10 lxc-start -P /tmp/container -n base -d
11 lxc-attach -P /tmp/container -n base
12"""
13
Dan Shi767dced2015-02-01 00:21:07 -080014import argparse
15import logging
Dan Shi767dced2015-02-01 00:21:07 -080016
17import common
18from autotest_lib.client.bin import utils
Ben Kwa966db082017-06-05 14:17:23 -070019from autotest_lib.site_utils import lxc
Prathmesh Prabhuf37bd462020-07-10 14:37:45 -070020from autotest_lib.site_utils.lxc import base_image
Dan Shi767dced2015-02-01 00:21:07 -080021
22
23def parse_options():
24 """Parse command line inputs.
25
26 @raise argparse.ArgumentError: If command line arguments are invalid.
27 """
28 parser = argparse.ArgumentParser()
29 parser.add_argument('-s', '--setup', action='store_true',
30 default=False,
31 help='Set up base container.')
32 parser.add_argument('-p', '--path', type=str,
33 help='Directory to store the container.',
Ben Kwa966db082017-06-05 14:17:23 -070034 default=lxc.DEFAULT_CONTAINER_PATH)
Dan Shi767dced2015-02-01 00:21:07 -080035 parser.add_argument('-f', '--force_delete', action='store_true',
36 default=False,
37 help=('Force to delete existing containers and rebuild '
38 'base containers.'))
Dan Shi2a0f61e2016-06-21 14:47:21 -070039 parser.add_argument('-n', '--name', type=str,
40 help='Name of the base container.',
Ben Kwa966db082017-06-05 14:17:23 -070041 default=lxc.BASE)
Dan Shi767dced2015-02-01 00:21:07 -080042 options = parser.parse_args()
43 if not options.setup and not options.force_delete:
44 raise argparse.ArgumentError(
Prathmesh Prabhuf37bd462020-07-10 14:37:45 -070045 'Use --setup to setup a base container, or --force_delete to '
46 'delete all containers in given path.')
Dan Shi767dced2015-02-01 00:21:07 -080047 return options
48
49
50def main():
51 """main script."""
Dan Shica3be482015-05-05 23:23:53 -070052 # Force to run the setup as superuser.
53 # TODO(dshi): crbug.com/459344 Set remove this enforcement when test
54 # container can be unprivileged container.
55 if utils.sudo_require_password():
56 logging.warn('SSP requires root privilege to run commands, please '
57 'grant root access to this process.')
58 utils.run('sudo true')
59
Dan Shi767dced2015-02-01 00:21:07 -080060 options = parse_options()
Prathmesh Prabhu59d62d72020-07-10 16:08:13 -070061 image = base_image.BaseImage(options.path, lxc.BASE)
Dan Shi767dced2015-02-01 00:21:07 -080062 if options.setup:
Ben Kwad48cbcb2017-08-25 08:59:21 -070063 image.setup(name=options.name, force_delete=options.force_delete)
Dan Shi767dced2015-02-01 00:21:07 -080064 elif options.force_delete:
Ben Kwad48cbcb2017-08-25 08:59:21 -070065 image.cleanup()
Dan Shi767dced2015-02-01 00:21:07 -080066
67
68if __name__ == '__main__':
69 main()