Add support for sending flight mode indication
[connman] / plugins / wifi.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 <errno.h>
27
28 #include <dbus/dbus.h>
29 #include <glib.h>
30
31 #define CONNMAN_API_SUBJECT_TO_CHANGE
32 #include <connman/plugin.h>
33 #include <connman/device.h>
34 #include <connman/log.h>
35
36 #include "inet.h"
37 #include "supplicant.h"
38
39 #define CLEANUP_TIMEOUT   8     /* in seconds */
40 #define INACTIVE_TIMEOUT  12    /* in seconds */
41
42 struct wifi_data {
43         char *identifier;
44         connman_bool_t connected;
45 };
46
47 static int network_probe(struct connman_network *network)
48 {
49         DBG("network %p", network);
50
51         return 0;
52 }
53
54 static void network_remove(struct connman_network *network)
55 {
56         DBG("network %p", network);
57 }
58
59 static int network_connect(struct connman_network *network)
60 {
61         DBG("network %p", network);
62
63         return supplicant_connect(network);
64 }
65
66 static int network_disconnect(struct connman_network *network)
67 {
68         DBG("network %p", network);
69
70         return supplicant_disconnect(network);
71 }
72
73 static struct connman_network_driver network_driver = {
74         .name           = "wifi",
75         .type           = CONNMAN_NETWORK_TYPE_WIFI,
76         .probe          = network_probe,
77         .remove         = network_remove,
78         .connect        = network_connect,
79         .disconnect     = network_disconnect,
80 };
81
82 static int wifi_probe(struct connman_device *device)
83 {
84         struct wifi_data *data;
85
86         DBG("device %p", device);
87
88         data = g_try_new0(struct wifi_data, 1);
89         if (data == NULL)
90                 return -ENOMEM;
91
92         data->connected = FALSE;
93
94         connman_device_set_data(device, data);
95
96         return 0;
97 }
98
99 static void wifi_remove(struct connman_device *device)
100 {
101         struct wifi_data *data = connman_device_get_data(device);
102
103         DBG("device %p", device);
104
105         connman_device_set_data(device, NULL);
106
107         g_free(data->identifier);
108         g_free(data);
109 }
110
111 static int wifi_enable(struct connman_device *device)
112 {
113         DBG("device %p", device);
114
115         return supplicant_start(device);
116 }
117
118 static int wifi_disable(struct connman_device *device)
119 {
120         struct wifi_data *data = connman_device_get_data(device);
121
122         DBG("device %p", device);
123
124         data->connected = FALSE;
125
126         return supplicant_stop(device);
127 }
128
129 static int wifi_scan(struct connman_device *device)
130 {
131         DBG("device %p", device);
132
133         return supplicant_scan(device);
134 }
135
136 static struct connman_device_driver wifi_driver = {
137         .name           = "wifi",
138         .type           = CONNMAN_DEVICE_TYPE_WIFI,
139         .probe          = wifi_probe,
140         .remove         = wifi_remove,
141         .enable         = wifi_enable,
142         .disable        = wifi_disable,
143         .scan           = wifi_scan,
144 };
145
146 static void wifi_register(void)
147 {
148         DBG("");
149
150         if (connman_device_driver_register(&wifi_driver) < 0)
151                 connman_error("Failed to register WiFi driver");
152 }
153
154 static void wifi_unregister(void)
155 {
156         DBG("");
157
158         connman_device_driver_unregister(&wifi_driver);
159 }
160
161 static struct supplicant_driver supplicant = {
162         .name           = "wifi",
163         .probe          = wifi_register,
164         .remove         = wifi_unregister,
165 };
166
167 static int wifi_init(void)
168 {
169         int err;
170
171         err = connman_network_driver_register(&network_driver);
172         if (err < 0)
173                 return err;
174
175         err = supplicant_register(&supplicant);
176         if (err < 0) {
177                 connman_network_driver_unregister(&network_driver);
178                 return err;
179         }
180
181         return 0;
182 }
183
184 static void wifi_exit(void)
185 {
186         supplicant_unregister(&supplicant);
187
188         connman_network_driver_unregister(&network_driver);
189 }
190
191 CONNMAN_PLUGIN_DEFINE(wifi, "WiFi interface plugin", VERSION,
192                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, wifi_init, wifi_exit)