Add experimental netlink support
[connman] / 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 <signal.h>
31 #include <sys/stat.h>
32
33 #include <gdbus.h>
34
35 #include "connman.h"
36
37 static GMainLoop *main_loop = NULL;
38
39 static void sig_term(int sig)
40 {
41         g_main_loop_quit(main_loop);
42 }
43
44 int main(int argc, char *argv[])
45 {
46         DBusConnection *conn;
47         struct sigaction sa;
48
49         mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
50                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
51
52         main_loop = g_main_loop_new(NULL, FALSE);
53
54         conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE);
55         if (conn == NULL) {
56                 fprintf(stderr, "Can't register with system bus\n");
57                 exit(1);
58         }
59
60         g_dbus_register_object(conn, CONNMAN_MANAGER_PATH, NULL, NULL);
61
62         __connman_plugin_init();
63
64         __connman_iface_init(conn);
65
66         __connman_rtnl_init();
67
68         memset(&sa, 0, sizeof(sa));
69         sa.sa_handler = sig_term;
70         sigaction(SIGINT, &sa, NULL);
71         sigaction(SIGTERM, &sa, NULL);
72
73         g_main_loop_run(main_loop);
74
75         __connman_rtnl_cleanup();
76
77         __connman_iface_cleanup();
78
79         __connman_plugin_cleanup();
80
81         g_dbus_unregister_object(conn, CONNMAN_MANAGER_PATH);
82
83         g_dbus_cleanup_connection(conn);
84
85         g_main_loop_unref(main_loop);
86
87         rmdir(STATEDIR);
88
89         return 0;
90 }