48173db836982fd7e4bc7c32f45072babf0ada91
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / container / lxc_container.h
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_CONTAINER_LXC_CONTAINER_H_
19 #define ANBOX_CONTAINER_LXC_CONTAINER_H_
20
21 #include "anbox/container/container.h"
22 #include "anbox/network/credentials.h"
23
24 #include <string>
25 #include <vector>
26
27 #include <lxc/lxccontainer.h>
28
29 namespace anbox {
30 namespace common {
31 class BinderDevice;
32 } // namespace common
33 namespace container {
34 class LxcContainer : public Container {
35  public:
36   LxcContainer(bool privileged,
37                bool rootfs_overlay,
38                const std::string &container_network_address,
39                const std::string &container_network_gateway,
40                const std::vector<std::string> &container_network_dns_servers,
41                const network::Credentials &creds);
42   ~LxcContainer();
43
44   void start(const Configuration &configuration) override;
45   void stop() override;
46   State state() override;
47
48  private:
49   void set_config_item(const std::string &key, const std::string &value);
50   void setup_id_map();
51   void setup_network();
52   void add_device(const std::string& device, const DeviceSpecification& spec);
53   bool create_binder_devices(unsigned int device_count, std::vector<std::unique_ptr<common::BinderDevice>>& devices);
54
55   State state_;
56   lxc_container *container_;
57   bool privileged_;
58   bool rootfs_overlay_;
59   std::string container_network_address_;
60   std::string container_network_gateway_;
61   std::vector<std::string> container_network_dns_servers_;
62   network::Credentials creds_;
63   std::vector<std::unique_ptr<common::BinderDevice>> binder_devices_;
64 };
65 }  // namespace container
66 }  // namespace anbox
67
68 #endif