Add krate-mount service
[platform/core/security/krate.git] / module / krate-builder.h
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 #ifndef __KRATE_BUILDER_H__
17 #define __KRATE_BUILDER_H__
18
19 #include <string>
20 #include <vector>
21 #include <memory>
22
23 #include <klay/cgroup.h>
24 #include <klay/xml/parser.h>
25 #include <klay/xml/document.h>
26 #include <klay/auth/user.h>
27
28 class KrateBuilder final {
29 public:
30         KrateBuilder(const runtime::User& user);
31         virtual ~KrateBuilder();
32
33         void mountOwnFilesystem();
34
35         void enterKrate();
36         void exitKrate();
37
38 private:
39         runtime::User user;
40         std::unique_ptr<xml::Document> manifest;
41
42         std::string getManifestPath();
43         void bindFilesystemNode(const std::string& source, const std::string& target,
44                                                         const std::string& type, const std::string& options,
45                                                         bool create = true);
46 };
47
48 #endif //!__KRATE_BUILDER_H__