f0d7e57983ecd673f8ece168751088ed579f281a
[platform/core/connectivity/stc-manager.git] / src / stc-manager.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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 <signal.h>
18 #include <errno.h>
19 #include <sys/wait.h>
20 #include "stc-manager.h"
21 #include "stc-emulator.h"
22 #include "stc-manager-gdbus.h"
23 #include "stc-db.h"
24 #include "counter.h"
25 #include "table-restrictions.h"
26 #include "helper-cgroup.h"
27 #include "helper-nfacct-rule.h"
28 #include "helper-iptables.h"
29 #include "helper-inotify.h"
30 #include "stc-monitor.h"
31 #include "stc-firewall.h"
32 #include "stc-manager-plugin-appstatus.h"
33 #include "stc-manager-plugin-exception.h"
34 #include "stc-manager-plugin-procfs.h"
35
36 #define BUF_SIZE_FOR_ERR 100
37
38 static stc_s *g_stc = NULL;
39
40 static gboolean __validate_ident(const char *ident)
41 {
42         unsigned int i;
43
44         if (!ident)
45                 return FALSE;
46
47         for (i = 0; i < strlen(ident); ++i)
48                 if (!g_ascii_isprint(ident[i]))
49                         return FALSE;
50
51         return TRUE;
52 }
53
54 static void __stc_inotify_handler(struct inotify_event *event, const char *ident)
55 {
56         if (!ident)
57                 return;
58
59         if (!__validate_ident(ident)) {
60                 STC_LOGE("Invalid ident [%s]", ident);
61                 return;
62         }
63
64         if (!g_strcmp0(ident, INFO_CONFIG)) {
65                 int debug = stc_util_get_config_int(INFO_DEBUGLOG);
66                 stc_util_set_debuglog(debug);
67         }
68 }
69
70 static void __stc_manager_deinit(void)
71 {
72         __STC_LOG_FUNC_ENTER__;
73
74         if (!g_stc) {
75                 STC_LOGE("Memory for manager structure is not allocated");
76                 return;
77         }
78
79         stc_monitor_deinit();
80         stc_deinit_db_guard();
81         stc_db_deinitialize();
82
83         iptables_flush_chains();
84         iptables_deinit();
85
86         stc_manager_gdbus_deinit((gpointer)g_stc);
87
88         stc_firewall_deinit();
89
90         stc_plugin_appstatus_deinit();
91         stc_plugin_exception_deinit();
92         stc_plugin_procfs_deinit();
93
94         inotify_deregister(INFO_STORAGE_DIR);
95         inotify_deinitialize();
96
97         STC_LOGI("stc manager deinitialized");
98         FREE(g_stc);
99         __STC_LOG_FUNC_EXIT__;
100 }
101
102 static stc_s *__stc_manager_init(void)
103 {
104         __STC_LOG_FUNC_ENTER__;
105         stc_s *stc;
106         stc_error_e err = STC_ERROR_NONE;
107
108         stc = MALLOC0(stc_s, 1);
109         if (!stc) {
110                 STC_LOGE("Failed to allocate memory for manager structure"); //LCOV_EXCL_LINE
111                 return NULL; //LCOV_EXCL_LINE
112         }
113         g_stc = stc;
114
115         stc_util_initialize_config();
116
117         inotify_initialize();
118         inotify_register(INFO_STORAGE_DIR, __stc_inotify_handler);
119
120         cgroup_set_release_agent(NET_CLS_SUBSYS, NET_RELEASE_AGENT);
121
122         EXEC(STC_ERROR_NONE, stc_db_initialize());
123
124         stc_plugin_appstatus_init();
125         stc_plugin_exception_init();
126         stc_plugin_procfs_init();
127
128         stc_firewall_init();
129
130         err = stc_monitor_init();
131         if (err != STC_ERROR_NONE)
132                 goto handle_error;
133
134         stc_plugin_procfs_load_pid();
135         stc_manager_gdbus_init((gpointer)stc);
136
137         STC_LOGI("stc manager initialized");
138         __STC_LOG_FUNC_EXIT__;
139         return stc;
140
141 handle_error:
142         STC_LOGD("Failed to initialize stc manager"); //LCOV_EXCL_LINE
143         __stc_manager_deinit(); //LCOV_EXCL_LINE
144         return NULL; //LCOV_EXCL_LINE
145 }
146
147 stc_s *stc_get_manager(void)
148 {
149         return g_stc;
150 }
151
152 void stc_stop_manager(void)
153 {
154         if (g_stc && g_stc->main_loop)
155                 g_main_loop_quit(g_stc->main_loop);
156 }
157
158 int stc_commit_iptables(char *cmd, int *err_num, char **err_str)
159 {
160         pid_t pid = 0;
161         int status = 0;
162         int ret = 0;
163         char err_buf[BUF_SIZE_FOR_ERR] = { 0, };
164         gchar **args = NULL;
165
166         if (cmd == NULL) {
167                 STC_LOGE("Invalid arguments");
168                 return STC_ERROR_INVALID_PARAMETER;
169         }
170
171         args = g_strsplit_set(cmd, " ", -1);
172
173         errno = 0;
174         pid = fork();
175
176         if (pid == 0) {
177                 errno = 0;
178                 if (execv(args[0], args) == -1) {
179                         STC_LOGE("Failed to execute [%s]", *err_str);
180                         g_strfreev(args);
181                         exit(-1);
182                 }
183         } else if (pid > 0) {
184                 if (waitpid(pid, &status, 0) == -1)
185                         STC_LOGD("wait pid [%u] status [%d] ", pid, status);
186
187                 if (WIFEXITED(status)) {
188                         ret = WEXITSTATUS(status);
189                         STC_LOGD("exited, status [%d]", status);
190                 } else if (WIFSIGNALED(status)) {
191                         STC_LOGD("killed by signal [%d]", WTERMSIG(status));
192                 } else if (WIFSTOPPED(status)) {
193                         STC_LOGD("stopped by signal [%d]", WSTOPSIG(status));
194                 } else if (WIFCONTINUED(status)) {
195                         STC_LOGD("continued");
196                 }
197
198                 *err_num = ret;
199                 *err_str = strerror_r(ret, err_buf, BUF_SIZE_FOR_ERR);
200                 STC_LOGD("return err_num [%d] err_str [%s]", *err_num, *err_str);
201
202                 g_strfreev(args);
203                 if (ret == 0)
204                         return STC_ERROR_NONE;
205                 else
206                         return STC_ERROR_FAIL;
207         }
208
209         *err_num = errno;
210         *err_str = strerror_r(errno, err_buf, BUF_SIZE_FOR_ERR);
211         STC_LOGD("Failed to fork [%d:%s]", *err_num, *err_str);
212
213         g_strfreev(args);
214         return STC_ERROR_FAIL;
215 }
216
217 gint32 main(gint32 argc, gchar *argv[])
218 {
219         GMainLoop *main_loop = NULL;
220         gint32 ret = -1;
221
222         STC_LOGI("Smart Traffic Control Manager");
223
224 #ifdef TIZEN_GTESTS
225         setenv("GCOV_PREFIX", "/tmp/daemon", 1);
226 #endif
227
228         if (daemon(0, 0) != 0)
229                 STC_LOGE("Can't start daemon"); //LCOV_EXCL_LINE
230
231         /* Initialize required subsystems */
232 #if !GLIB_CHECK_VERSION(2, 35, 0)
233         g_type_init();
234 #endif
235
236         /* Crate the GLIB main loop */
237         main_loop = g_main_loop_new(NULL, FALSE);
238
239         stc_emulator_check_environment();
240         if (stc_emulator_is_emulated() == FALSE) {
241                 g_stc = __stc_manager_init();
242                 if (!g_stc)
243                         goto fail;
244                 g_stc->main_loop = main_loop;
245         }
246
247         /* Run the main loop */
248         g_main_loop_run(main_loop);
249
250         ret = 0;
251
252 fail:
253         if (stc_emulator_is_emulated() == FALSE)
254                 __stc_manager_deinit();
255
256         if (main_loop)
257                 g_main_loop_unref(main_loop);
258
259         return ret;
260 }