gdhcp: Generic stateless DHCPv6 support.
[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 } GDHCPClientEvent;
57
58 typedef enum {
59         G_DHCP_IPV4,
60         G_DHCP_IPV6,
61         G_DHCP_IPV4LL,
62 } GDHCPType;
63
64 #define G_DHCP_SUBNET           0x01
65 #define G_DHCP_ROUTER           0x03
66 #define G_DHCP_TIME_SERVER      0x04
67 #define G_DHCP_DNS_SERVER       0x06
68 #define G_DHCP_DOMAIN_NAME      0x0f
69 #define G_DHCP_HOST_NAME        0x0c
70 #define G_DHCP_NTP_SERVER       0x2a
71
72 #define G_DHCPV6_CLIENTID       1
73 #define G_DHCPV6_SERVERID       2
74 #define G_DHCPV6_ORO            6
75 #define G_DHCPV6_STATUS_CODE    13
76
77 typedef enum {
78         G_DHCPV6_DUID_LLT = 1,
79         G_DHCPV6_DUID_EN  = 2,
80         G_DHCPV6_DUID_LL  = 3,
81 } GDHCPDuidType;
82
83 typedef void (*GDHCPClientEventFunc) (GDHCPClient *client, gpointer user_data);
84
85 typedef void (*GDHCPDebugFunc)(const char *str, gpointer user_data);
86
87 GDHCPClient *g_dhcp_client_new(GDHCPType type, int index,
88                                                 GDHCPClientError *error);
89
90 int g_dhcp_client_start(GDHCPClient *client, const char *last_address);
91 void g_dhcp_client_stop(GDHCPClient *client);
92
93 GDHCPClient *g_dhcp_client_ref(GDHCPClient *client);
94 void g_dhcp_client_unref(GDHCPClient *client);
95
96 void g_dhcp_client_register_event(GDHCPClient *client,
97                                         GDHCPClientEvent event,
98                                         GDHCPClientEventFunc func,
99                                         gpointer user_data);
100
101 GDHCPClientError g_dhcp_client_set_request(GDHCPClient *client,
102                                                 unsigned int option_code);
103 GDHCPClientError g_dhcp_client_set_send(GDHCPClient *client,
104                                                 unsigned char option_code,
105                                                 const char *option_value);
106
107 char *g_dhcp_client_get_address(GDHCPClient *client);
108 char *g_dhcp_client_get_netmask(GDHCPClient *client);
109 GList *g_dhcp_client_get_option(GDHCPClient *client,
110                                                 unsigned char option_code);
111 int g_dhcp_client_get_index(GDHCPClient *client);
112
113 void g_dhcp_client_set_debug(GDHCPClient *client,
114                                 GDHCPDebugFunc func, gpointer user_data);
115 int g_dhcpv6_create_duid(GDHCPDuidType duid_type, int index, int type,
116                         unsigned char **duid, int *duid_len);
117 int g_dhcpv6_client_set_duid(GDHCPClient *dhcp_client, unsigned char *duid,
118                         int duid_len);
119 void g_dhcpv6_client_set_send(GDHCPClient *dhcp_client, uint16_t option_code,
120                         uint8_t *option_value, uint16_t option_len);
121 uint16_t g_dhcpv6_client_get_status(GDHCPClient *dhcp_client);
122 int g_dhcpv6_client_set_oro(GDHCPClient *dhcp_client, int args, ...);
123
124 /* DHCP Server */
125 typedef enum {
126         G_DHCP_SERVER_ERROR_NONE,
127         G_DHCP_SERVER_ERROR_INTERFACE_UNAVAILABLE,
128         G_DHCP_SERVER_ERROR_INTERFACE_IN_USE,
129         G_DHCP_SERVER_ERROR_INTERFACE_DOWN,
130         G_DHCP_SERVER_ERROR_NOMEM,
131         G_DHCP_SERVER_ERROR_INVALID_INDEX,
132         G_DHCP_SERVER_ERROR_INVALID_OPTION,
133         G_DHCP_SERVER_ERROR_IP_ADDRESS_INVALID
134 } GDHCPServerError;
135
136 typedef void (*GDHCPSaveLeaseFunc) (unsigned char *mac,
137                         unsigned int nip, unsigned int expire);
138 struct _GDHCPServer;
139
140 typedef struct _GDHCPServer GDHCPServer;
141
142 GDHCPServer *g_dhcp_server_new(GDHCPType type,
143                 int ifindex, GDHCPServerError *error);
144 int g_dhcp_server_start(GDHCPServer *server);
145 void g_dhcp_server_stop(GDHCPServer *server);
146
147 GDHCPServer *g_dhcp_server_ref(GDHCPServer *server);
148 void g_dhcp_server_unref(GDHCPServer *server);
149
150 int g_dhcp_server_set_option(GDHCPServer *server,
151                 unsigned char option_code, const char *option_value);
152 int g_dhcp_server_set_ip_range(GDHCPServer *server,
153                 const char *start_ip, const char *end_ip);
154 void g_dhcp_server_load_lease(GDHCPServer *dhcp_server, unsigned int expire,
155                                 unsigned char *mac, unsigned int lease_ip);
156 void g_dhcp_server_set_debug(GDHCPServer *server,
157                                 GDHCPDebugFunc func, gpointer user_data);
158 void g_dhcp_server_set_lease_time(GDHCPServer *dhcp_server,
159                                                 unsigned int lease_time);
160 void g_dhcp_server_set_save_lease(GDHCPServer *dhcp_server,
161                                 GDHCPSaveLeaseFunc func, gpointer user_data);
162 #ifdef __cplusplus
163 }
164 #endif
165
166 #endif /* __G_DHCP_H */