summaryrefslogtreecommitdiffstats
path: root/tinyNET/src/dhcp6/tnet_dhcp6_duid.c
blob: 38f2a52db417ac0eb629324efe4eb09af36f2d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*
* Copyright (C) 2010-2011 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
*	
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*	
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*	
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/
/**@file tnet_dhcp6_duid.c
 * @brief DHCPv6 (RFC 3315) DHCP Unique Identifier (DUID) as defined in subclause 9.
 *
 * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
 *

 */
#include "tnet_dhcp6_duid.h"

#include "../tnet_types.h"
#include "../tnet_endianness.h"

int tnet_dhcp6_duid_llt_serialize(const tnet_dhcp6_duid_llt_t* self, tsk_buffer_t *output);
int tnet_dhcp6_duid_en_serialize(const tnet_dhcp6_duid_en_t* self, tsk_buffer_t *output);
int tnet_dhcp6_duid_ll_serialize(const tnet_dhcp6_duid_ll_t* self, tsk_buffer_t *output);


tnet_dhcp6_duid_llt_t* tnet_dhcp6_duid_llt_create(const void* payload, tsk_size_t payload_size)
{
	return tsk_object_new(tnet_dhcp6_duid_llt_def_t, payload, payload_size);
}

tnet_dhcp6_duid_en_t* tnet_dhcp6_duid_en_create(const void* payload, tsk_size_t payload_size)
{
	return tsk_object_new(tnet_dhcp6_duid_en_def_t, payload, payload_size);
}

tnet_dhcp6_duid_ll_t* tnet_dhcp6_duid_ll_create(const void* payload, tsk_size_t payload_size)
{
	return tsk_object_new(tnet_dhcp6_duid_ll_def_t, payload, payload_size);
}

int tnet_dhcp6_duid_init(tnet_dhcp6_duid_t *self, tnet_dhcp6_duid_type_t type)
{
	if(self){
		if(!self->initialized){
			self->type = type;			
			self->initialized = tsk_true;
			return 0;
		}
		return -2;
	}
	return -1;
}

int tnet_dhcp6_duid_deinit(tnet_dhcp6_duid_t *self)
{
	if(self){
		if(self->initialized){			
			self->initialized = tsk_true;
			return 0;
		}
		return -2;
	}
	return -1;
}

tnet_dhcp6_duid_t* tnet_dhcp6_duid_deserialize(const void* data, tsk_size_t size)
{
	tnet_dhcp6_duid_t *duid = 0;
	uint8_t* dataPtr = ((uint8_t*)data);
	//uint8_t* dataEnd = (dataPtr+size);

	tnet_dhcp6_duid_type_t type;
	//uint8_t len = 0;

	/* Check validity */
	if(!dataPtr || size<2/*Type*/){
		goto bail;
	}

	type = (tnet_dhcp6_duid_type_t) tnet_ntohs_2(dataPtr);
	dataPtr += 2;

bail:
	return duid;
}

int tnet_dhcp6_duid_serialize(const tnet_dhcp6_duid_t* self, tsk_buffer_t *output)
{
	int ret = -1;

	if(!self || !output){
		return ret;
	}

	switch(self->type){
	case dhcp6_duid_linklayer_plus_time:
		{
			ret = tnet_dhcp6_duid_llt_serialize(TNET_DHCP6_DUID_LLT(self), output);
			break;
		}

	case dhcp6_duid_Vendor_assigned_id:
		{
			ret = tnet_dhcp6_duid_en_serialize(TNET_DHCP6_DUID_EN(self), output);
			break;
		}

	case dhcp6_duid_linklayer:
		{
			ret = tnet_dhcp6_duid_ll_serialize(TNET_DHCP6_DUID_LL(self), output);
			break;
		}

	default:
		{
			ret = -2;
			goto bail;
		}
	}

bail:
	return ret;
}

/*=======================================================================================
*	RFC 3315 - 9.2. DUID Based on Link-layer Address Plus Time [DUID-LLT]
*=======================================================================================*/

int tnet_dhcp6_duid_llt_serialize(const tnet_dhcp6_duid_llt_t* self, tsk_buffer_t *output)
{
	return -1;
}

//
//	[[DHCPv6 DUID-LLT]] object definition
//
static tsk_object_t* tnet_dhcp6_duid_llt_ctor(tsk_object_t * self, va_list * app)
{
	tnet_dhcp6_duid_llt_t *duid = self;
	if(duid){
		const void* payload = va_arg(*app, const void*);
		tsk_size_t payload_size = va_arg(*app, tsk_size_t);

		/* init base */
		tnet_dhcp6_duid_init(TNET_DHCP6_DUID(duid), dhcp6_duid_linklayer_plus_time);

		if(payload && payload_size){
			/* DESERIALIZATION */
		}
	}
	return self;
}

static tsk_object_t* tnet_dhcp6_duid_llt_dtor(tsk_object_t * self) 
{ 
	tnet_dhcp6_duid_llt_t *duid = self;
	if(duid){
		/* deinit base */
		tnet_dhcp6_duid_deinit(TNET_DHCP6_DUID(duid));

		TSK_OBJECT_SAFE_FREE(duid->address);
	}
	return self;
}

static const tsk_object_def_t tnet_dhcp6_duid_llt_def_s =
{
	sizeof(tnet_dhcp6_duid_llt_t),
	tnet_dhcp6_duid_llt_ctor,
	tnet_dhcp6_duid_llt_dtor,
	tsk_null,
};
const tsk_object_def_t *tnet_dhcp6_duid_llt_def_t = &tnet_dhcp6_duid_llt_def_s;


/*=======================================================================================
*	RFC 3315 - 9.3. DUID Assigned by Vendor Based on Enterprise Number [DUID-EN]
*=======================================================================================*/

int tnet_dhcp6_duid_en_serialize(const tnet_dhcp6_duid_en_t* self, tsk_buffer_t *output)
{
	return -1;
}

//
//	[[DHCPv6 DUID-EN]] object definition
//
static tsk_object_t* tnet_dhcp6_duid_en_ctor(tsk_object_t * self, va_list * app)
{
	tnet_dhcp6_duid_en_t *duid = self;
	if(duid){
		const void* payload = va_arg(*app, const void*);
		tsk_size_t payload_size = va_arg(*app, tsk_size_t);

		/* init base */
		tnet_dhcp6_duid_init(TNET_DHCP6_DUID(duid), dhcp6_duid_Vendor_assigned_id);

		if(payload && payload_size){
			/* DESERIALIZATION */
		}
	}
	return self;
}

static tsk_object_t* tnet_dhcp6_duid_en_dtor(tsk_object_t * self) 
{ 
	tnet_dhcp6_duid_en_t *duid = self;
	if(duid){
		/* deinit base */
		tnet_dhcp6_duid_deinit(TNET_DHCP6_DUID(duid));

		TSK_OBJECT_SAFE_FREE(duid->indentifier);
	}
	return self;
}

static const tsk_object_def_t tnet_dhcp6_duid_en_def_s =
{
	sizeof(tnet_dhcp6_duid_en_t),
	tnet_dhcp6_duid_en_ctor,
	tnet_dhcp6_duid_en_dtor,
	tsk_null,
};
const tsk_object_def_t *tnet_dhcp6_duid_en_def_t = &tnet_dhcp6_duid_en_def_s;


/*=======================================================================================
*	RFC 3315 - 9.4. DUID Based on Link-layer Address [DUID-LL]
*=======================================================================================*/

int tnet_dhcp6_duid_ll_serialize(const tnet_dhcp6_duid_ll_t* self, tsk_buffer_t *output)
{
	return -1;
}

//
//	[[DHCPv6 DUID-LL]] object definition
//
static tsk_object_t* tnet_dhcp6_duid_ll_ctor(tsk_object_t * self, va_list * app)
{
	tnet_dhcp6_duid_ll_t *duid = self;
	if(duid){
		const void* payload = va_arg(*app, const void*);
		tsk_size_t payload_size = va_arg(*app, tsk_size_t);

		/* init base */
		tnet_dhcp6_duid_init(TNET_DHCP6_DUID(duid), dhcp6_duid_linklayer);

		if(payload && payload_size){
			/* DESERIALIZATION */
		}
	}
	return self;
}

static tsk_object_t* tnet_dhcp6_duid_ll_dtor(tsk_object_t * self) 
{ 
	tnet_dhcp6_duid_ll_t *duid = self;
	if(duid){
		/* deinit base */
		tnet_dhcp6_duid_deinit(TNET_DHCP6_DUID(duid));

		TSK_OBJECT_SAFE_FREE(duid->address);
	}
	return self;
}

static const tsk_object_def_t tnet_dhcp6_duid_ll_def_s =
{
	sizeof(tnet_dhcp6_duid_ll_t),
	tnet_dhcp6_duid_ll_ctor,
	tnet_dhcp6_duid_ll_dtor,
	tsk_null,
};
const tsk_object_def_t *tnet_dhcp6_duid_ll_def_t = &tnet_dhcp6_duid_ll_def_s;
OpenPOWER on IntegriCloud