Add code for retrieving supplicant global properties
[platform/upstream/connman.git] / tools / supplicant-test.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  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 <string.h>
29 #include <signal.h>
30 #include <syslog.h>
31
32 #include <gdbus.h>
33
34 #include "supplicant.h"
35
36 static GMainLoop *main_loop = NULL;
37
38 static void sig_term(int sig)
39 {
40         syslog(LOG_INFO, "Terminating");
41
42         g_main_loop_quit(main_loop);
43 }
44
45 static void disconnect_callback(DBusConnection *conn, void *user_data)
46 {
47         syslog(LOG_ERR, "D-Bus disconnect");
48
49         g_main_loop_quit(main_loop);
50 }
51
52 int main(int argc, char *argv[])
53 {
54         DBusConnection *conn;
55         DBusError err;
56         struct sigaction sa;
57
58         main_loop = g_main_loop_new(NULL, FALSE);
59
60         dbus_error_init(&err);
61
62         conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, NULL, &err);
63         if (conn == NULL) {
64                 if (dbus_error_is_set(&err) == TRUE) {
65                         fprintf(stderr, "%s\n", err.message);
66                         dbus_error_free(&err);
67                 } else
68                         fprintf(stderr, "Can't register with system bus\n");
69                 exit(1);
70         }
71
72         openlog("supplicant", LOG_NDELAY | LOG_PERROR, LOG_USER);
73
74         g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
75
76         memset(&sa, 0, sizeof(sa));
77         sa.sa_handler = sig_term;
78         sigaction(SIGINT, &sa, NULL);
79         sigaction(SIGTERM, &sa, NULL);
80
81         syslog(LOG_INFO, "Startup");
82
83         if (supplicant_init() < 0) {
84                 syslog(LOG_ERR, "Failed to init supplicant");
85                 goto done;
86         }
87
88         g_main_loop_run(main_loop);
89
90         supplicant_exit();
91
92 done:
93         syslog(LOG_INFO, "Exit");
94
95         dbus_connection_unref(conn);
96
97         g_main_loop_unref(main_loop);
98
99         closelog();
100
101         return 0;
102 }