Add setter/getter for handling MAC randomization policy
[platform/upstream/connman.git] / include / device.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2014  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 #ifndef __CONNMAN_DEVICE_H
23 #define __CONNMAN_DEVICE_H
24
25 #include <connman/network.h>
26 #include <connman/service.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 /**
33  * SECTION:device
34  * @title: Device premitives
35  * @short_description: Functions for handling devices
36  */
37
38 enum connman_device_type {
39         CONNMAN_DEVICE_TYPE_UNKNOWN   = 0,
40         CONNMAN_DEVICE_TYPE_ETHERNET  = 1,
41         CONNMAN_DEVICE_TYPE_WIFI      = 2,
42         CONNMAN_DEVICE_TYPE_BLUETOOTH = 3,
43         CONNMAN_DEVICE_TYPE_CELLULAR  = 4,
44         CONNMAN_DEVICE_TYPE_GPS       = 5,
45         CONNMAN_DEVICE_TYPE_GADGET    = 6,
46         CONNMAN_DEVICE_TYPE_VENDOR    = 10000,
47 };
48
49 #define CONNMAN_DEVICE_PRIORITY_LOW      -100
50 #define CONNMAN_DEVICE_PRIORITY_DEFAULT     0
51 #define CONNMAN_DEVICE_PRIORITY_HIGH      100
52
53 struct connman_device_scan_params {
54         enum connman_service_type type;
55         const char *ssid;
56         unsigned int ssid_len;
57         const char *identity;
58         const char* passphrase;
59         const char *security;
60         bool force_full_scan;
61         void *user_data;
62 };
63
64 struct connman_device;
65
66 struct connman_device *connman_device_create(const char *node,
67                                                 enum connman_device_type type);
68
69 #define connman_device_ref(device) \
70         connman_device_ref_debug(device, __FILE__, __LINE__, __func__)
71
72 #define connman_device_unref(device) \
73         connman_device_unref_debug(device, __FILE__, __LINE__, __func__)
74
75 struct connman_device *
76 connman_device_ref_debug(struct connman_device *device,
77                         const char *file, int line, const char *caller);
78 void connman_device_unref_debug(struct connman_device *device,
79                         const char *file, int line, const char *caller);
80
81 enum connman_device_type connman_device_get_type(struct connman_device *device);
82 void connman_device_set_index(struct connman_device *device, int index);
83 int connman_device_get_index(struct connman_device *device);
84 void connman_device_set_interface(struct connman_device *device,
85                                                 const char *interface);
86
87 void connman_device_set_ident(struct connman_device *device,
88                                                 const char *ident);
89 const char *connman_device_get_ident(struct connman_device *device);
90
91 int connman_device_set_powered(struct connman_device *device,
92                                                 bool powered);
93 bool connman_device_get_powered(struct connman_device *device);
94 int connman_device_set_scanning(struct connman_device *device,
95                                 enum connman_service_type type, bool scanning);
96 bool connman_device_get_scanning(struct connman_device *device,
97                                 enum connman_service_type type);
98 void connman_device_reset_scanning(struct connman_device *device);
99
100 int connman_device_set_string(struct connman_device *device,
101                                         const char *key, const char *value);
102 const char *connman_device_get_string(struct connman_device *device,
103                                                         const char *key);
104
105 int connman_device_add_network(struct connman_device *device,
106                                         struct connman_network *network);
107 struct connman_network *connman_device_get_network(struct connman_device *device,
108                                                         const char *identifier);
109 #if defined TIZEN_EXT
110 struct connman_network *connman_device_get_default_network(
111                                                         struct connman_device *device);
112 void connman_device_set_pending_reply(struct connman_device *device,
113                                                         DBusMessage *msg);
114 void connman_device_send_connected_signal(struct connman_device *device,
115                                                         bool connected);
116 void connman_device_set_max_scan_ssids(struct connman_device *device,
117                                                         int max_scan_ssids);
118 int connman_device_get_max_scan_ssids(struct connman_device *device);
119 void connman_device_set_wifi_5ghz_supported(struct connman_device *device,
120                                                         bool is_5_0_ghz_supported);
121 bool connman_device_get_wifi_5ghz_supported(struct connman_device *device);
122 #endif
123 int connman_device_remove_network(struct connman_device *device,
124                                         struct connman_network *network);
125
126 int connman_device_register(struct connman_device *device);
127 void connman_device_unregister(struct connman_device *device);
128
129 void *connman_device_get_data(struct connman_device *device);
130 void connman_device_set_data(struct connman_device *device, void *data);
131
132 int connman_device_set_regdom(struct connman_device *device,
133                                                 const char *alpha2);
134 void connman_device_regdom_notify(struct connman_device *device,
135                                         int result, const char *alpha2);
136 struct connman_device *connman_device_create_from_index(int index);
137 struct connman_device *connman_device_find_by_index(int index);
138 int connman_device_reconnect_service(struct connman_device *device);
139
140 #if defined TIZEN_EXT
141 bool connman_device_set_last_user_selection_time(struct connman_device *device,
142                                                 time_t time);
143 time_t connman_device_get_last_user_selection_time(struct connman_device *device);
144 bool connman_device_set_last_user_selection_ident(struct connman_device *device,
145                                                 const char *ident);
146 const char *connman_device_get_last_user_selection_ident(struct connman_device *device);
147 bool connman_device_set_last_connected_ident(struct connman_device *device,
148                                                 const char *ident);
149 const char *connman_device_get_last_connected_ident(struct connman_device *device);
150 void connman_device_save_last_user_selection(struct connman_device *device);
151 void connman_device_load_last_user_selection(struct connman_device *device);
152 void connman_device_save_last_connected(struct connman_device *device);
153 void connman_device_load_last_connected(struct connman_device *device);
154
155 void connman_device_mac_policy_notify(struct connman_device *device,
156                                         int result, unsigned int policy);
157 int connman_device_set_mac_policy(struct connman_device *device,
158                                                 unsigned int policy);
159 unsigned int connman_device_get_mac_policy(struct connman_device *device);
160 void connman_device_preassoc_mac_policy_notify(struct connman_device *device,
161                                         int result, unsigned int policy);
162 int connman_device_set_preassoc_mac_policy(struct connman_device *device,
163                                                 unsigned int policy);
164 unsigned int connman_device_get_preassoc_mac_policy(struct connman_device *device);
165 void connman_device_random_mac_lifetime_notify(struct connman_device *device,
166                                         int result, unsigned int lifetime);
167 int connman_device_set_random_mac_lifetime(struct connman_device *device,
168                                                 unsigned int lifetime);
169 unsigned int connman_device_get_random_mac_lifetime(struct connman_device *device);
170 #endif
171
172 struct connman_device_driver {
173         const char *name;
174         enum connman_device_type type;
175         int priority;
176         int (*probe) (struct connman_device *device);
177         void (*remove) (struct connman_device *device);
178         int (*enable) (struct connman_device *device);
179         int (*disable) (struct connman_device *device);
180         int (*scan)(struct connman_device *device,
181                         struct connman_device_scan_params *params);
182         void (*stop_scan) (enum connman_service_type type,
183                         struct connman_device *device);
184         int (*set_regdom) (struct connman_device *device,
185                                                 const char *alpha2);
186 #if defined TIZEN_EXT
187         int (*specific_scan) (enum connman_service_type type,
188                         struct connman_device *device, int scan_type,
189                         GSList *specific_scan_list, void *user_data);
190         int (*set_mac_policy) (struct connman_device *device, unsigned int policy);
191         int (*set_preassoc_mac_policy) (struct connman_device *device, unsigned int policy);
192         int (*set_random_mac_lifetime) (struct connman_device *device, unsigned int lifetime);
193 #endif
194 #if defined TIZEN_EXT_WIFI_MESH
195         int (*abort_scan) (enum connman_service_type type,
196                                                 struct connman_device *device);
197         int (*mesh_specific_scan) (enum connman_service_type type,
198                         struct connman_device *device, const char *ssid, unsigned int freq,
199                         void *user_data);
200 #endif
201 };
202
203 int connman_device_driver_register(struct connman_device_driver *driver);
204 void connman_device_driver_unregister(struct connman_device_driver *driver);
205
206 #ifdef __cplusplus
207 }
208 #endif
209
210 #endif /* __CONNMAN_DEVICE_H */