Update for libgdbus API change
[framework/connectivity/connman.git] / src / main.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <syslog.h>
31 #include <signal.h>
32 #include <getopt.h>
33 #include <sys/stat.h>
34
35 #include <gdbus.h>
36
37 #include "connman.h"
38
39 static GMainLoop *main_loop = NULL;
40
41 static void sig_term(int sig)
42 {
43         g_main_loop_quit(main_loop);
44 }
45
46 static void usage(void)
47 {
48         printf("Connection Manager version %s\n\n", VERSION);
49
50         printf("Usage:\n"
51                 "\tconnmand [options]\n"
52                 "\n");
53
54         printf("Options:\n"
55                 "\t-c, --compat         Enable Network Manager compatibility\n"
56                 "\t-n, --nodaemon       Don't fork daemon to background\n"
57                 "\t-h, --help           Display help\n"
58                 "\n");
59 }
60
61 static struct option options[] = {
62         { "nodaemon", 0, 0, 'n' },
63         { "compat",   0, 0, 'c' },
64         { "help",     0, 0, 'h' },
65         { }
66 };
67
68 int main(int argc, char *argv[])
69 {
70         DBusConnection *conn;
71         DBusError err;
72         struct sigaction sa;
73         int log_option = LOG_NDELAY | LOG_PID;
74         int opt, detach = 1, compat = 0;
75
76         while ((opt = getopt_long(argc, argv, "+nch", options, NULL)) != EOF) {
77                 switch(opt) {
78                 case 'n':
79                         detach = 0;
80                         break;
81                 case 'c':
82                         compat = 1;
83                         break;
84                 case 'h':
85                 default:
86                         usage();
87                         exit(0);
88                 }
89         }
90
91         argc -= optind;
92         argv += optind;
93         optind = 0;
94
95         if (detach) {
96                 if (daemon(0, 0)) {
97                         perror("Can't start daemon");
98                         exit(1);
99                 }
100         } else
101                 log_option |= LOG_PERROR;
102
103         openlog("connmand", log_option, LOG_DAEMON);
104
105         mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
106                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
107
108         mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
109                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
110
111         main_loop = g_main_loop_new(NULL, FALSE);
112
113         dbus_error_init(&err);
114
115         conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
116         if (conn == NULL) {
117                 if (dbus_error_is_set(&err) == TRUE) {
118                         fprintf(stderr, "%s\n", err.message);
119                         dbus_error_free(&err);
120                 } else
121                         fprintf(stderr, "Can't register with system bus\n");
122                 exit(1);
123         }
124
125         if (compat) {
126                 if (g_dbus_request_name(conn, NM_SERVICE, NULL) == FALSE)
127                         compat = 0;
128         }
129
130         __connman_agent_init(conn);
131
132         __connman_manager_init(conn, compat);
133
134         __connman_plugin_init();
135
136         __connman_rtnl_init();
137
138         __connman_iface_init(conn);
139
140         memset(&sa, 0, sizeof(sa));
141         sa.sa_handler = sig_term;
142         sigaction(SIGINT, &sa, NULL);
143         sigaction(SIGTERM, &sa, NULL);
144
145         g_main_loop_run(main_loop);
146
147         __connman_iface_cleanup();
148
149         __connman_rtnl_cleanup();
150
151         __connman_plugin_cleanup();
152
153         __connman_manager_cleanup();
154
155         __connman_agent_cleanup();
156
157         g_dbus_cleanup_connection(conn);
158
159         g_main_loop_unref(main_loop);
160
161         rmdir(STORAGEDIR);
162
163         rmdir(STATEDIR);
164
165         closelog();
166
167         return 0;
168 }