Fix local variable initialization and handle a invalid parameter
[platform/core/connectivity/stc-manager.git] / include / stc-manager.h
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 #ifndef __STC_MANAGER_H__
18 #define __STC_MANAGER_H__
19
20 #include "stc-error.h"
21 #include "stc-manager-util.h"
22
23 #define NET_RELEASE_AGENT "/usr/bin/net-cls-release"
24 #define NET_CLS_SUBSYS "net_cls"
25
26 #define STC_BACKGROUND_APP_SUFFIX "_BACKGROUND"
27 #define STC_BACKGROUND_APP_ID "BACKGROUND"
28 #define STC_TOTAL_DATACALL "TOTAL_DATACALL"
29 #define STC_TOTAL_WIFI "TOTAL_WIFI"
30 #define STC_TOTAL_BLUETOOTH "TOTAL_BLUETOOTH"
31 #define STC_TOTAL_IPV4 "TOTAL_IPV4"
32 #define STC_TOTAL_IPV6 "TOTAL_IPV6"
33 #define STC_TOTAL_TETHERING "TOTAL_TETHERING"
34
35 #define STC_IPTABLES "/usr/sbin/iptables"
36 #define STC_IP6TABLES "/usr/sbin/ip6tables"
37
38 #define STC_CMD_SIZE 256
39
40 #define STC_DEBUG_LOG (stc_util_get_debuglog())
41
42 typedef enum {
43         STC_CANCEL = 0,    /**< cancel */
44         STC_CONTINUE = 1,  /**< continue */
45 } stc_cb_ret_e;
46
47 typedef enum {
48         STC_CMD_NONE,
49         STC_CMD_SET_FOREGRD,
50         STC_CMD_SET_BACKGRD,
51         STC_CMD_SET_APP_LAUNCHED,
52         STC_CMD_SET_SERVICE_LAUNCHED,
53         STC_CMD_SET_TERMINATED,
54         STC_CMD_MAX_ELEM
55 } stc_cmd_type_e;
56
57 typedef enum {
58         STC_FW_DIRECTION_NONE,
59         STC_FW_DIRECTION_IN,
60         STC_FW_DIRECTION_OUT
61 } stc_fw_direction_e;
62
63 typedef enum {
64         STC_FW_FAMILY_NONE,
65         STC_FW_FAMILY_V4,
66         STC_FW_FAMILY_V6
67 } stc_fw_family_type_e;
68
69 typedef enum {
70         STC_FW_IP_NONE,
71         STC_FW_IP_SINGLE,
72         STC_FW_IP_MASK,
73         STC_FW_IP_RANGE
74 } stc_fw_ip_type_e;
75
76 typedef enum {
77         STC_FW_PORT_NONE,
78         STC_FW_PORT_SINGLE,
79         STC_FW_PORT_RANGE
80 } stc_fw_port_type_e;
81
82 typedef enum {
83         STC_FW_PROTOCOL_NONE,
84         STC_FW_PROTOCOL_TCP,
85         STC_FW_PROTOCOL_UDP,
86         STC_FW_PROTOCOL_ICMP,
87         STC_FW_PROTOCOL_ESP,
88         STC_FW_PROTOCOL_AH,
89         STC_FW_PROTOCOL_SCTP,
90         STC_FW_PROTOCOL_MH,
91         STC_FW_PROTOCOL_ALL,
92 } stc_fw_protocol_type_e;
93
94 typedef enum {
95         STC_FW_CHAIN_TARGET_NONE,
96         STC_FW_CHAIN_TARGET_INPUT,
97         STC_FW_CHAIN_TARGET_OUTPUT
98 } stc_fw_chain_target_e;
99
100 typedef enum {
101         STC_FW_RULE_TARGET_NONE,
102         STC_FW_RULE_TARGET_ACCEPT,
103         STC_FW_RULE_TARGET_DROP,
104         STC_FW_RULE_TARGET_LOG,
105 } stc_fw_rule_target_e;
106
107 /**
108  * @brief Monitored application types
109  */
110 typedef enum {
111         STC_APP_TYPE_NONE,
112         STC_APP_TYPE_READY,
113         STC_APP_TYPE_GUI,
114         STC_APP_TYPE_SERVICE,
115         STC_APP_TYPE_GROUP,
116         STC_APP_TYPE_WATCH,
117         STC_APP_TYPE_WIDGET,
118         STC_APP_TYPE_MAX,
119 } stc_app_type_e;
120
121 /**
122  * @brief State of the statisticsed process
123  */
124 typedef enum {
125         STC_APP_STATE_UNKNOWN,
126         STC_APP_STATE_FOREGROUND,  /** < foreground state */
127         STC_APP_STATE_BACKGROUND,  /** < background state */
128         STC_APP_STATE_LAST_ELEM
129 } stc_app_state_e;
130
131 /**
132  * @brief Network restriction states
133  */
134 typedef enum {
135         STC_RSTN_STATE_UNKNOWN,
136         STC_RSTN_STATE_ACTIVATED,
137         STC_RSTN_STATE_DEACTIVATED,
138         STC_RSTN_STATE_LAST_ELEM
139 } stc_rstn_state_e;
140
141 /**
142  * @brief Network restriction types
143  */
144 typedef enum {
145         STC_RSTN_TYPE_UNKNOWN,
146         STC_RSTN_TYPE_ACCEPT,
147         STC_RSTN_TYPE_DROP,
148         STC_RSTN_TYPE_LAST_ELEM
149 } stc_rstn_type_e;
150
151 /**
152  * @brief Network interface types
153  */
154 typedef enum {
155         STC_IFACE_UNKNOWN,    /**< undefined iface */
156         STC_IFACE_DATACALL,   /**< mobile data */
157         STC_IFACE_WIFI,       /**< wifi data */
158         STC_IFACE_WIRED,      /**< wired interface */
159         STC_IFACE_BLUETOOTH,  /**< bluetooth interface */
160         STC_IFACE_IPV4,       /**< ipv4 interface */
161         STC_IFACE_IPV6,       /**< ipv6 interface */
162         STC_IFACE_USB,        /**< usb interface */
163         STC_IFACE_P2P,        /**< p2p interface */
164         STC_IFACE_ALL,        /**< enumerate all network interface types */
165         STC_IFACE_LAST_ELEM
166 } stc_iface_type_e;
167
168 /**
169  * @brief Network roaming type
170  */
171 typedef enum {
172         STC_ROAMING_UNKNOWN,   /**< can't define roaming - roaming unknown */
173         STC_ROAMING_ENABLE,    /**< in roaming */
174         STC_ROAMING_DISABLE,   /**< not in roaming */
175         STC_ROAMING_LAST_ELEM,
176 } stc_roaming_type_e;
177
178 /**
179  * @brief Hardware network protocol types
180  */
181 typedef enum {
182         STC_PROTOCOL_UNKNOWN,             /**< Network unknown */
183         STC_PROTOCOL_DATACALL_NOSVC,      /**< Network no service */
184         STC_PROTOCOL_DATACALL_EMERGENCY,  /**< Network emergency */
185         STC_PROTOCOL_DATACALL_SEARCH,     /**< Network search 1900 */
186         STC_PROTOCOL_DATACALL_2G,         /**< Network 2G */
187         STC_PROTOCOL_DATACALL_2_5G,       /**< Network 2.5G */
188         STC_PROTOCOL_DATACALL_2_5G_EDGE,  /**< Network EDGE */
189         STC_PROTOCOL_DATACALL_3G,         /**< Network UMTS */
190         STC_PROTOCOL_DATACALL_HSDPA,      /**< Network HSDPA */
191         STC_PROTOCOL_DATACALL_LTE,        /**< Network LTE */
192         STC_PROTOCOL_MAX_ELEM
193 } stc_hw_net_protocol_type_e;
194
195 /**
196  * @desc Description of the boolean option for enabling/disabling
197  *     network interfaces and enabling/disabling some behaviar
198  */
199 typedef enum {
200         STC_DB_OPTION_UNDEF,
201         STC_DB_OPTION_ENABLE,
202         STC_DB_OPTION_DISABLE
203 } stc_option_state_e;
204
205 /**
206  * @desc Set of the options.
207  * wifi - enable/disable wifi, STC_DB_OPTION_UNDEF to leave option as is
208  * datacall - enable/disable datacall, STC_DB_OPTION_UNDEF to leave option as is
209  * datausage_timer - set period of the updating data from the kernel,
210  *     0 to leave option as is
211  * datacall_logging - enable/disable datacall_logging,
212  *     STC_DB_OPTION_UNDEF to leave option as is
213  */
214 typedef struct {
215         stc_option_state_e wifi;
216         stc_option_state_e datacall;
217         time_t datausage_timer;
218         stc_option_state_e datacall_logging;
219 } stc_options_s;
220
221 /**
222  * @brief datausage in bytes
223  */
224 typedef struct {
225         int64_t in_bytes;  /**< incoming bytes */
226         int64_t out_bytes;  /**< outgoing bytes */
227 } stc_data_counter_s;
228
229 typedef struct {
230         GMainLoop *main_loop;
231
232         gpointer statistics_obj;
233         gpointer restriction_obj;
234         gpointer firewall_obj;
235         gpointer manager_obj;
236
237         GDBusObjectManagerServer *obj_mgr;
238         GDBusConnection *connection;
239         guint gdbus_owner_id;
240
241         void *system; /* stc_system_s */
242         struct counter_arg *carg;
243 } stc_s;
244
245 stc_s *stc_get_manager(void);
246 void stc_stop_manager(void);
247 int stc_commit_iptables(char *cmd, int *err_num, char **err_str);
248
249 #endif /* __STC_MANAGER__ */