dhcpv6: Request message implemented.
[framework/connectivity/connman.git] / gdhcp / gdhcp.h
1 /*
2  *
3  *  DHCP library with GLib integration
4  *
5  *  Copyright (C) 2009-2010  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 __G_DHCP_H
23 #define __G_DHCP_H
24
25 #include <stdint.h>
26
27 #include <glib.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /* DHCP Client part*/
34 struct _GDHCPClient;
35
36 typedef struct _GDHCPClient GDHCPClient;
37
38 typedef enum {
39         G_DHCP_CLIENT_ERROR_NONE,
40         G_DHCP_CLIENT_ERROR_INTERFACE_UNAVAILABLE,
41         G_DHCP_CLIENT_ERROR_INTERFACE_IN_USE,
42         G_DHCP_CLIENT_ERROR_INTERFACE_DOWN,
43         G_DHCP_CLIENT_ERROR_NOMEM,
44         G_DHCP_CLIENT_ERROR_INVALID_INDEX,
45         G_DHCP_CLIENT_ERROR_INVALID_OPTION
46 } GDHCPClientError;
47
48 typedef enum {
49         G_DHCP_CLIENT_EVENT_LEASE_AVAILABLE,
50         G_DHCP_CLIENT_EVENT_IPV4LL_AVAILABLE,
51         G_DHCP_CLIENT_EVENT_NO_LEASE,
52         G_DHCP_CLIENT_EVENT_LEASE_LOST,
53         G_DHCP_CLIENT_EVENT_IPV4LL_LOST,
54         G_DHCP_CLIENT_EVENT_ADDRESS_CONFLICT,
55         G_DHCP_CLIENT_EVENT_INFORMATION_REQ,
56         G_DHCP_CLIENT_EVENT_SOLICITATION,
57         G_DHCP_CLIENT_EVENT_ADVERTISE,
58         G_DHCP_CLIENT_EVENT_REQUEST,
59 } GDHCPClientEvent;
60
61 typedef enum {
62         G_DHCP_IPV4,
63         G_DHCP_IPV6,
64         G_DHCP_IPV4LL,
65 } GDHCPType;
66
67 #define G_DHCP_SUBNET           0x01
68 #define G_DHCP_ROUTER           0x03
69 #define G_DHCP_TIME_SERVER      0x04
70 #define G_DHCP_DNS_SERVER       0x06
71 #define G_DHCP_DOMAIN_NAME      0x0f
72 #define G_DHCP_HOST_NAME        0x0c
73 #define G_DHCP_NTP_SERVER       0x2a
74
75 #define G_DHCPV6_CLIENTID       1
76 #define G_DHCPV6_SERVERID       2
77 #define G_DHCPV6_IA_NA          3
78 #define G_DHCPV6_IA_TA          4
79 #define G_DHCPV6_IAADDR         5
80 #define G_DHCPV6_ORO            6
81 #define G_DHCPV6_STATUS_CODE    13
82 #define G_DHCPV6_RAPID_COMMIT   14
83 #define G_DHCPV6_DNS_SERVERS    23
84 #define G_DHCPV6_SNTP_SERVERS   31
85
86 #define G_DHCPV6_ERROR_SUCCESS  0
87 #define G_DHCPV6_ERROR_FAILURE  1
88 #define G_DHCPV6_ERROR_NO_ADDR  2
89 #define G_DHCPV6_ERROR_BINDING  3
90 #define G_DHCPV6_ERROR_LINK     4
91 #define G_DHCPV6_ERROR_MCAST    5
92
93 typedef enum {
94         G_DHCPV6_DUID_LLT = 1,
95         G_DHCPV6_DUID_EN  = 2,
96         G_DHCPV6_DUID_LL  = 3,
97 } GDHCPDuidType;
98
99 typedef void (*GDHCPClientEventFunc) (GDHCPClient *client, gpointer user_data);
100
101 typedef void (*GDHCPDebugFunc)(const char *str, gpointer user_data);
102
103 GDHCPClient *g_dhcp_client_new(GDHCPType type, int index,
104                                                 GDHCPClientError *error);
105
106 int g_dhcp_client_start(GDHCPClient *client, const char *last_address);
107 void g_dhcp_client_stop(GDHCPClient *client);
108
109 GDHCPClient *g_dhcp_client_ref(GDHCPClient *client);
110 void g_dhcp_client_unref(GDHCPClient *client);
111
112 void g_dhcp_client_register_event(GDHCPClient *client,
113                                         GDHCPClientEvent event,
114                                         GDHCPClientEventFunc func,
115                                         gpointer user_data);
116
117 GDHCPClientError g_dhcp_client_set_request(GDHCPClient *client,
118                                                 unsigned int option_code);
119 void g_dhcp_client_clear_requests(GDHCPClient *dhcp_client);
120 void g_dhcp_client_clear_values(GDHCPClient *dhcp_client);
121 GDHCPClientError g_dhcp_client_set_send(GDHCPClient *client,
122                                                 unsigned char option_code,
123                                                 const char *option_value);
124
125 char *g_dhcp_client_get_address(GDHCPClient *client);
126 char *g_dhcp_client_get_netmask(GDHCPClient *client);
127 GList *g_dhcp_client_get_option(GDHCPClient *client,
128                                                 unsigned char option_code);
129 int g_dhcp_client_get_index(GDHCPClient *client);
130
131 void g_dhcp_client_set_debug(GDHCPClient *client,
132                                 GDHCPDebugFunc func, gpointer user_data);
133 int g_dhcpv6_create_duid(GDHCPDuidType duid_type, int index, int type,
134                         unsigned char **duid, int *duid_len);
135 int g_dhcpv6_client_set_duid(GDHCPClient *dhcp_client, unsigned char *duid,
136                         int duid_len);
137 void g_dhcpv6_client_set_send(GDHCPClient *dhcp_client, uint16_t option_code,
138                         uint8_t *option_value, uint16_t option_len);
139 uint16_t g_dhcpv6_client_get_status(GDHCPClient *dhcp_client);
140 int g_dhcpv6_client_set_oro(GDHCPClient *dhcp_client, int args, ...);
141 void g_dhcpv6_client_create_iaid(GDHCPClient *dhcp_client, int index,
142                                 unsigned char *iaid);
143 int g_dhcpv6_client_get_timeouts(GDHCPClient *dhcp_client,
144                                 uint32_t *T1, uint32_t *T2);
145 uint32_t g_dhcpv6_client_get_iaid(GDHCPClient *dhcp_client);
146 int g_dhcpv6_client_set_ia(GDHCPClient *dhcp_client, int index,
147                 int code, uint32_t *T1, uint32_t *T2, gboolean add_iaaddr);
148
149 /* DHCP Server */
150 typedef enum {
151         G_DHCP_SERVER_ERROR_NONE,
152         G_DHCP_SERVER_ERROR_INTERFACE_UNAVAILABLE,
153         G_DHCP_SERVER_ERROR_INTERFACE_IN_USE,
154         G_DHCP_SERVER_ERROR_INTERFACE_DOWN,
155         G_DHCP_SERVER_ERROR_NOMEM,
156         G_DHCP_SERVER_ERROR_INVALID_INDEX,
157         G_DHCP_SERVER_ERROR_INVALID_OPTION,
158         G_DHCP_SERVER_ERROR_IP_ADDRESS_INVALID
159 } GDHCPServerError;
160
161 typedef void (*GDHCPSaveLeaseFunc) (unsigned char *mac,
162                         unsigned int nip, unsigned int expire);
163 struct _GDHCPServer;
164
165 typedef struct _GDHCPServer GDHCPServer;
166
167 GDHCPServer *g_dhcp_server_new(GDHCPType type,
168                 int ifindex, GDHCPServerError *error);
169 int g_dhcp_server_start(GDHCPServer *server);
170 void g_dhcp_server_stop(GDHCPServer *server);
171
172 GDHCPServer *g_dhcp_server_ref(GDHCPServer *server);
173 void g_dhcp_server_unref(GDHCPServer *server);
174
175 int g_dhcp_server_set_option(GDHCPServer *server,
176                 unsigned char option_code, const char *option_value);
177 int g_dhcp_server_set_ip_range(GDHCPServer *server,
178                 const char *start_ip, const char *end_ip);
179 void g_dhcp_server_load_lease(GDHCPServer *dhcp_server, unsigned int expire,
180                                 unsigned char *mac, unsigned int lease_ip);
181 void g_dhcp_server_set_debug(GDHCPServer *server,
182                                 GDHCPDebugFunc func, gpointer user_data);
183 void g_dhcp_server_set_lease_time(GDHCPServer *dhcp_server,
184                                                 unsigned int lease_time);
185 void g_dhcp_server_set_save_lease(GDHCPServer *dhcp_server,
186                                 GDHCPSaveLeaseFunc func, gpointer user_data);
187 #ifdef __cplusplus
188 }
189 #endif
190
191 #endif /* __G_DHCP_H */