lazy_mount: remove unnecessary code.
[apps/native/starter.git] / src / mobile / starter.c
1 /*
2  * Copyright (c) 2000 - 2015 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 <Elementary.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <fcntl.h>
23 #include <unistd.h>
24 #include <string.h>
25 #include <malloc.h>
26 #include <Ecore_Wl2.h>
27
28 #include <E_DBus.h>
29 #include <systemd/sd-daemon.h>
30 #include <ode/internal-encryption.h>
31
32 #include <aul.h>
33 #include <vconf.h>
34 #include <signal.h>
35
36 #include "starter.h"
37 #include "lock_mgr.h"
38 #include "home_mgr.h"
39 #include "hw_key.h"
40 #include "process_mgr.h"
41 #include "util.h"
42 #include "status.h"
43 #include "hw_key.h"
44 #include "dbus_util.h"
45
46 static void _set_starter_sequence(int val)
47 {
48         vconf_set_int(VCONFKEY_STARTER_SEQUENCE, val);
49 }
50
51
52
53 static void _signal_handler(int signum, siginfo_t *info, void *unused)
54 {
55         _D("_signal_handler : Terminated...");
56         elm_exit();
57 }
58
59
60
61 static int _power_off_cb(status_active_key_e key, void *data)
62 {
63         int val = status_active_get()->sysman_power_off_status;
64
65         if (val == VCONFKEY_SYSMAN_POWER_OFF_DIRECT
66                 || val == VCONFKEY_SYSMAN_POWER_OFF_RESTART) {
67             _D("_power_off_cb : Terminated...");
68             elm_exit();
69         }
70
71         return 1;
72 }
73
74
75
76 static void _language_changed_cb(keynode_t *node, void *data)
77 {
78         char *lang = NULL;
79
80         ret_if(!node);
81
82         lang = vconf_keynode_get_str(node);
83         ret_if(!lang);
84
85         _D("language is changed : %s", lang);
86
87         elm_language_set(lang);
88 }
89
90
91
92 static int _set_i18n(const char *domain, const char *dir)
93 {
94         char *r = NULL;
95
96         if (domain == NULL) {
97                 errno = EINVAL;
98                 return -1;
99         }
100
101         char *lang = vconf_get_str(VCONFKEY_LANGSET);
102         r = setlocale(LC_ALL, lang);
103         if (!r) {
104                 _E("setlocale() error");
105         }
106         if (lang) {
107                 free(lang);
108         }
109
110         r = bindtextdomain(domain, dir);
111         if (!r) {
112                 _E("bindtextdomain() error");
113         }
114
115         r = textdomain(domain);
116         if (!r) {
117                 _E("textdomain() error");
118         }
119
120         if (vconf_notify_key_changed(VCONFKEY_LANGSET, _language_changed_cb, NULL) < 0) {
121                 _E("Failed to register changed cb : %s", VCONFKEY_LANGSET);
122         }
123
124         return 0;
125 }
126
127
128
129 static int _check_dead_signal(int pid, void *data)
130 {
131         int home_pid = 0;
132         int volume_pid = 0;
133         int indicator_pid = 0;
134         int quickpanel_pid = 0;
135         int lock_pid = 0;
136
137         _D("Process %d is termianted", pid);
138
139         if (pid < 0) {
140                 _E("pid : %d", pid);
141                 return 0;
142         }
143
144         /*
145          * starter try to re-launch these apps when the app is dead.
146          */
147         home_pid = home_mgr_get_home_pid();
148         volume_pid = home_mgr_get_volume_pid();
149         indicator_pid = home_mgr_get_indicator_pid();
150         quickpanel_pid = home_mgr_get_quickpanel_pid();
151         lock_pid = lock_mgr_get_lock_pid();
152
153         if (pid == home_pid) {
154                 _D("Homescreen is dead");
155                 home_mgr_relaunch_homescreen();
156         } else if (pid == volume_pid) {
157                 _D("volume is dead");
158                 home_mgr_relaunch_volume();
159         } else if (pid == indicator_pid) {
160                 _D("indicator is dead");
161                 home_mgr_relaunch_indicator();
162         } else if (pid == quickpanel_pid) {
163                 _D("quickpanel is dead");
164                 home_mgr_relaunch_quickpanel();
165         } else if (pid == lock_pid) {
166                 _D("lockscreen is dead");
167                 lock_mgr_unlock();
168         } else {
169                 _D("Unknown process, ignore it");
170         }
171
172         return 0;
173 }
174
175
176
177 static void _launch_apps(void)
178 {
179         /* Tells the service manager that service startup is finished */
180         sd_notify(0, "READY=1");
181
182         /*
183          * After user data partition mount,
184          * launch lockscreen, homescreen, etc.
185          */
186         lock_mgr_init();
187         home_mgr_init(NULL);
188
189         /*
190          * Set the starter sequence vconfkey.
191          * '1' menas that booting seqeunce is done.
192          */
193         _set_starter_sequence(1);
194 }
195
196
197
198 static void _init(void)
199 {
200         struct sigaction act;
201         char err_buf[128] = { 0, };
202         int ret = 0;
203
204         memset(&act, 0x00, sizeof(struct sigaction));
205         act.sa_sigaction = _signal_handler;
206         act.sa_flags = SA_SIGINFO;
207
208         ret = sigemptyset(&act.sa_mask);
209         if (ret < 0) {
210                 if (strerror_r(errno, err_buf, sizeof(err_buf)) == 0) {
211                         _E("Failed to sigemptyset[%d / %s]", errno, err_buf);
212                 }
213         }
214         ret = sigaddset(&act.sa_mask, SIGTERM);
215         if (ret < 0) {
216                 if (strerror_r(errno, err_buf, sizeof(err_buf)) == 0) {
217                         _E("Failed to sigaddset[%d / %s]", errno, err_buf);
218                 }
219         }
220         ret = sigaction(SIGTERM, &act, NULL);
221         if (ret < 0) {
222                 if (strerror_r(errno, err_buf, sizeof(err_buf)) == 0) {
223                         _E("Failed to sigaction[%d / %s]", errno, err_buf);
224                 }
225         }
226
227         _set_i18n(PACKAGE, LOCALEDIR);
228
229         status_register();
230         status_active_register_cb(STATUS_ACTIVE_KEY_SYSMAN_POWER_OFF_STATUS, _power_off_cb, NULL);
231
232         e_dbus_init();
233
234         hw_key_create_window();
235
236         /*
237          * Initialize starter sequence vconfkey.
238          */
239         _set_starter_sequence(0);
240
241         ret = starter_execute_ode_process(BEFORE_LOCKSCREEN);
242         if (!ret) {
243                 _E("Failed to execute ode process");
244         }
245
246         aul_listen_app_dead_signal(_check_dead_signal, NULL);
247 }
248
249
250
251 static void _fini(void)
252 {
253         home_mgr_fini();
254         lock_mgr_fini();
255
256         hw_key_destroy_window();
257
258         e_dbus_shutdown();
259
260         status_active_unregister_cb(STATUS_ACTIVE_KEY_SYSMAN_POWER_OFF_STATUS, _power_off_cb);
261         status_unregister();
262
263         if (vconf_ignore_key_changed(VCONFKEY_LANGSET, _language_changed_cb) < 0) {
264                 _E("Failed to unregister changed cb : %s", VCONFKEY_LANGSET);
265         }
266 }
267
268
269
270 int main(int argc, char *argv[])
271 {
272         int ret = 0;
273         Ecore_Wl2_Display *display = NULL;
274
275         _D("starter is launched..!!");
276
277         ret = elm_init(argc, argv);
278         if (!ret) {
279                 _E("elm_init() failed : %d", ret);
280                 return -1;
281         }
282
283         ret = ecore_wl2_init();
284         if (!ret) {
285                 _E("ecore_wl2_init() failed : %d", ret);
286                 elm_shutdown();
287                 return -1;
288         }
289
290         display = ecore_wl2_display_get(NULL);
291         if (!display) {
292                 _W("There's no display");
293                 display = ecore_wl2_display_connect(NULL);
294                 if (!display) {
295                         _E("Failed to connect display");
296                         return -1;
297                 }
298         }
299
300         _init();
301
302         malloc_trim(0);
303         elm_run();
304
305         _fini();
306
307         if (display) {
308                 ecore_wl2_display_disconnect(display);
309                 ecore_wl2_shutdown();
310         }
311
312         elm_shutdown();
313
314         return 0;
315 }
316
317
318
319 static void _mount_complete_cb(void *user_data)
320 {
321         _D("Mount is successfully completed");
322 }
323
324
325
326 int starter_execute_ode_process(int booting_state)
327 {
328         _D("This call is before or after Lockscreen: %d", booting_state);
329         int ret = ODE_ERROR_NONE;
330         int ode_state = 0;
331
332         ret = ode_internal_encryption_get_state(&ode_state);
333         if (ret != ODE_ERROR_NONE) {
334                 _E("Failed to get ODE state, ret: %d", ret);
335                 return 0;
336         }
337
338         if (booting_state == BEFORE_LOCKSCREEN) {
339                 if (ode_state == ODE_STATE_ENCRYPTED) {
340                         lock_mgr_init();
341
342                         ret = ode_internal_encryption_set_mount_event_cb(_mount_complete_cb, NULL);
343                         if (ret != ODE_ERROR_NONE) {
344                                 _E("Failed to set mount event cb");
345                         }
346                 } else {
347                         _launch_apps();
348                 }
349         } else if (booting_state == AFTER_LOCKSCREEN) {
350                 if (ode_state == ODE_STATE_ENCRYPTED) {
351                         _D("ODE state is: %d, and we should mount at this time", ode_state);
352
353                         ret = ode_internal_encryption_mount();
354                         if (ret != ODE_ERROR_NONE) {
355                                 _E("Failed to mount");
356                                 return 0;
357                         }
358
359                         sd_notify(0, "READY=1");
360                         home_mgr_init(NULL);
361
362                         vconf_set_int(VCONFKEY_STARTER_SEQUENCE, 1);
363                 } else {
364                         _D("ODE state is: %d, Do nothing");
365                 }
366         }
367
368         return 1;
369 }