Spring cleaning
[platform/core/test/security-tests.git] / src / security-manager-tests / common / scoped_app_launcher.cpp
1 /*
2  * Copyright (c) 2020 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
17 #include <scoped_app_launcher.h>
18 #include <sm_api.h>
19 #include <sm_commons.h>
20 #include <tests_common.h>
21 #include <dpl/test/safe_cleanup.h>
22
23 using namespace SecurityManagerTest;
24
25 ScopedAppLauncher::ScopedAppLauncher(const AppInstallHelper& app,
26                                      const std::function<void(void)>& runInAppContext) :
27     m_uid(app.getUID()),
28     m_appId(app.getAppId())
29 {
30     m_pid = fork();
31     RUNNER_ASSERT_ERRNO_MSG(m_pid >= 0, "Fork failed");
32     if (m_pid != 0) {
33         m_syncPipe.claimParentEp();
34         m_syncPipe.wait();
35     } else {
36         m_syncPipe.claimChildEp();
37
38         try {
39             RUNNER_ASSERT_ERRNO_MSG(setLauncherSecurityAttributes(app.getUID(), app.getGID()) == 0,
40                                     "launcher failed");
41             Api::prepareAppCandidate();
42             Api::prepareApp(app.getAppId());
43             runInAppContext();
44         } catch (...) {
45             m_syncPipe.post();
46             throw;
47         }
48         m_syncPipe.post();
49         m_syncPipe.wait();
50         exit(0);
51     }
52 }
53
54 ScopedAppLauncher::~ScopedAppLauncher()
55 {
56     SafeCleanup::run([this]{
57         m_syncPipe.post();
58         waitPid(m_pid);
59         Api::cleanupApp(m_appId, m_uid, m_pid);
60     });
61 }