Add support for indicating security methods
[connman] / include / iface.h
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 #ifndef __CONNMAN_IFACE_H
23 #define __CONNMAN_IFACE_H
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include <netinet/in.h>
30
31 enum connman_iface_type {
32         CONNMAN_IFACE_TYPE_UNKNOWN   = 0,
33         CONNMAN_IFACE_TYPE_80203     = 1,
34         CONNMAN_IFACE_TYPE_80211     = 2,
35         CONNMAN_IFACE_TYPE_WIMAX     = 3,
36         CONNMAN_IFACE_TYPE_MODEM     = 4,
37         CONNMAN_IFACE_TYPE_BLUETOOTH = 5,
38 };
39
40 enum connman_iface_flags {
41         CONNMAN_IFACE_FLAG_RTNL     = (1 << 0),
42         CONNMAN_IFACE_FLAG_IPV4     = (1 << 1),
43         CONNMAN_IFACE_FLAG_IPV6     = (1 << 2),
44         CONNMAN_IFACE_FLAG_SCANNING = (1 << 3),
45 };
46
47 enum connman_iface_state {
48         CONNMAN_IFACE_STATE_UNKNOWN   = 0,
49         CONNMAN_IFACE_STATE_OFF       = 1,
50         CONNMAN_IFACE_STATE_ENABLED   = 2,
51         CONNMAN_IFACE_STATE_SCANNING  = 3,
52         CONNMAN_IFACE_STATE_CONNECT   = 4,
53         CONNMAN_IFACE_STATE_CONNECTED = 5,
54         CONNMAN_IFACE_STATE_CARRIER   = 6,
55         CONNMAN_IFACE_STATE_CONFIGURE = 7,
56         CONNMAN_IFACE_STATE_READY     = 8,
57         CONNMAN_IFACE_STATE_SHUTDOWN  = 9,
58 };
59
60 enum connman_iface_policy {
61         CONNMAN_IFACE_POLICY_UNKNOWN = 0,
62         CONNMAN_IFACE_POLICY_OFF     = 1,
63         CONNMAN_IFACE_POLICY_IGNORE  = 2,
64         CONNMAN_IFACE_POLICY_AUTO    = 3,
65         CONNMAN_IFACE_POLICY_ASK     = 4,
66 };
67
68 enum connman_ipv4_method {
69         CONNMAN_IPV4_METHOD_UNKNOWN = 0,
70         CONNMAN_IPV4_METHOD_OFF     = 1,
71         CONNMAN_IPV4_METHOD_STATIC  = 2,
72         CONNMAN_IPV4_METHOD_DHCP    = 3,
73 };
74
75 struct connman_ipv4 {
76         enum connman_ipv4_method method;
77         struct in_addr address;
78         struct in_addr netmask;
79         struct in_addr gateway;
80         struct in_addr network;
81         struct in_addr broadcast;
82         struct in_addr nameserver;
83 };
84
85 struct connman_network {
86         char *essid;
87         char *psk;
88 };
89
90 struct connman_iface {
91         char *path;
92         char *udi;
93         char *sysfs;
94         char *identifier;
95         int index;
96         enum connman_iface_type type;
97         enum connman_iface_flags flags;
98         enum connman_iface_state state;
99         enum connman_iface_policy policy;
100         struct connman_network network;
101         struct connman_ipv4 ipv4;
102
103         struct connman_iface_driver *driver;
104         void *driver_data;
105
106         void *rtnl_data;
107
108         struct {
109                 char *driver;
110                 char *vendor;
111                 char *product;
112         } device;
113 };
114
115 struct connman_iface_driver {
116         const char *name;
117         const char *capability;
118         int (*probe) (struct connman_iface *iface);
119         void (*remove) (struct connman_iface *iface);
120
121         int (*scan) (struct connman_iface *iface);
122         int (*connect) (struct connman_iface *iface,
123                                         struct connman_network *network);
124         int (*disconnect) (struct connman_iface *iface);
125
126         void (*set_network) (struct connman_iface *iface,
127                                                 const char *network);
128         void (*set_passphrase) (struct connman_iface *iface,
129                                                 const char *passphrase);
130
131         void (*rtnl_carrier) (struct connman_iface *iface, int carrier);
132         void (*rtnl_wireless) (struct connman_iface *iface,
133                                         void *data, unsigned short len);
134 };
135
136 extern int connman_iface_register(struct connman_iface_driver *driver);
137 extern void connman_iface_unregister(struct connman_iface_driver *driver);
138
139 static inline void *connman_iface_get_data(struct connman_iface *iface)
140 {
141         return iface->driver_data;
142 }
143
144 static inline void connman_iface_set_data(struct connman_iface *iface,
145                                                                 void *data)
146 {
147         iface->driver_data = data;
148 }
149
150 extern void connman_iface_indicate_enabled(struct connman_iface *iface);
151 extern void connman_iface_indicate_disabled(struct connman_iface *iface);
152 extern void connman_iface_indicate_connected(struct connman_iface *iface);
153 extern void connman_iface_indicate_carrier_on(struct connman_iface *iface);
154 extern void connman_iface_indicate_carrier_off(struct connman_iface *iface);
155 extern void connman_iface_indicate_configured(struct connman_iface *iface);
156
157 extern void connman_iface_indicate_station(struct connman_iface *iface,
158                                 const char *name, int strength, int security);
159
160 extern int connman_iface_get_ipv4(struct connman_iface *iface,
161                                                 struct connman_ipv4 *ipv4);
162 extern int connman_iface_set_ipv4(struct connman_iface *iface,
163                                                 struct connman_ipv4 *ipv4);
164 extern int connman_iface_clear_ipv4(struct connman_iface *iface);
165
166 #ifdef __cplusplus
167 }
168 #endif
169
170 #endif /* __CONNMAN_IFACE_H */