Lock and unlock mutex for process creation
[platform/core/appfw/launchpad.git] / src / launchpad-process-pool / executor.cc
1 /*
2  * Copyright (c) 2023 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 "launchpad-process-pool/executor.hh"
18
19 #include <stdlib.h>
20 #include <unistd.h>
21
22 #include <sched_priority.hh>
23
24 #include "launchpad-process-pool/log_private.hh"
25 #include "launchpad-process-pool/rec_mutex.hh"
26
27 namespace launchpad {
28
29 Executor::Executor(Executor::Delegator* delegator) : delegator_(delegator) {}
30
31 pid_t Executor::Execute(int priority) {
32   std::lock_guard<std::recursive_mutex> lock(RecMutex::GetInst().GetMutex());
33   pid_t pid = fork();
34   if (pid == -1) {
35     _E("Failed to create child process. errno(%d)", errno);
36     return -1;
37   }
38
39   if (pid == 0) {
40     setsid();
41     if (priority != 0)
42       SchedPriority::Set(priority);
43
44     _W("security_manager_prepare_app_candidate ++");
45     int ret = security_manager_prepare_app_candidate();
46     _W("security_manager_prepare_app_candidate --");
47     if (ret != SECURITY_MANAGER_SUCCESS) {
48       _E("Failed to prepare app candidate process. error(%d)", ret);
49       exit(1);
50     }
51
52     delegator_->OnExecution();
53   }
54
55   return pid;
56 }
57
58 }  // namespace launchpad