Add ScopedAppLauncher
[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
22 using namespace SecurityManagerTest;
23
24 ScopedAppLauncher::ScopedAppLauncher(const AppInstallHelper& app)
25 {
26     SynchronizationPipe syncPipe;
27
28     m_pid = fork();
29     RUNNER_ASSERT_ERRNO_MSG(m_pid >= 0, "Fork failed");
30     if (m_pid != 0) {
31         m_syncPipe.claimParentEp();
32         m_syncPipe.wait();
33     } else {
34         m_syncPipe.claimChildEp();
35
36         RUNNER_ASSERT_ERRNO_MSG(setLauncherSecurityAttributes(app.getUID(), app.getGID()) == 0,
37                                 "launcher failed");
38         Api::prepareAppCandidate();
39         Api::prepareApp(app.getAppId().c_str());
40
41         m_syncPipe.post();
42         m_syncPipe.wait();
43         exit(0);
44     }
45 }
46
47 ScopedAppLauncher::~ScopedAppLauncher()
48 {
49     m_syncPipe.post();
50     waitPid(m_pid);
51 }