50a958763f65a7b4d7beedd38c646a7e71bfb0d8
[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     m_uid(app.getUID()),
27     m_appId(app.getAppId())
28 {
29     m_pid = fork();
30     RUNNER_ASSERT_ERRNO_MSG(m_pid >= 0, "Fork failed");
31     if (m_pid != 0) {
32         m_syncPipe.claimParentEp();
33         m_syncPipe.wait();
34     } else {
35         m_syncPipe.claimChildEp();
36
37         try {
38             RUNNER_ASSERT_ERRNO_MSG(setLauncherSecurityAttributes(app.getUID(), app.getGID()) == 0,
39                                     "launcher failed");
40             Api::prepareAppCandidate();
41             Api::prepareApp(app.getAppId().c_str());
42         } catch (...) {
43             m_syncPipe.post();
44             throw;
45         }
46         m_syncPipe.post();
47         m_syncPipe.wait();
48         exit(0);
49     }
50 }
51
52 ScopedAppLauncher::~ScopedAppLauncher()
53 {
54     SafeCleanup::run([this]{
55         m_syncPipe.post();
56         waitPid(m_pid);
57         Api::cleanupApp(m_appId, m_uid, m_pid);
58     });
59 }