summaryrefslogtreecommitdiff
path: root/source3/libaddns/dnsrequest.c
blob: 3dd402981f615bcb73ffa5398ffd2a9044a54e95 (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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
/*
  Linux DNS client library implementation
  Copyright (C) 2006 Krishna Ganugapati <krishnag@centeris.com>
  Copyright (C) 2006 Gerald Carter <jerry@samba.org>

     ** NOTE! The following LGPL license applies to the libaddns
     ** library. This does NOT imply that all of Samba is released
     ** under the LGPL

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library 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
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  
  02110-1301  USA
*/

#include "dns.h"

/*********************************************************************
*********************************************************************/

static int32 DNSStdMarshallQuestionSection( HANDLE hSendBuffer,
			       DNS_QUESTION_RECORD ** ppDNSQuestionRecords,
			       int16 wQuestions )
{
	int32 dwError = 0;
	int32 i = 0;
	int32 dwRead = 0;
	DNS_QUESTION_RECORD *pDNSQuestionRecord = NULL;
	int16 wnQueryType = 0;
	int16 wnQueryClass = 0;

	for ( i = 0; i < wQuestions; i++ ) {

		pDNSQuestionRecord = *( ppDNSQuestionRecords + i );
		dwError =
			DNSMarshallDomainName( hSendBuffer,
					       pDNSQuestionRecord->
					       pDomainName );
		BAIL_ON_ERROR( dwError );

		wnQueryType = htons( pDNSQuestionRecord->wQueryType );
		dwError =
			DNSMarshallBuffer( hSendBuffer,
					   ( uint8 * ) & wnQueryType,
					   ( int32 ) sizeof( int16 ),
					   &dwRead );
		BAIL_ON_ERROR( dwError );

		wnQueryClass = htons( pDNSQuestionRecord->wQueryClass );
		dwError =
			DNSMarshallBuffer( hSendBuffer,
					   ( uint8 * ) & wnQueryClass,
					   ( int32 ) sizeof( int16 ),
					   &dwRead );
		BAIL_ON_ERROR( dwError );

		pDNSQuestionRecord++;
	}

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

static int32 DNSStdMarshallAnswerSection( HANDLE hSendBuffer,
			     DNS_RR_RECORD ** ppDNSAnswerRRRecords,
			     int16 wAnswers )
{
	int32 dwError = 0;
	int32 i = 0;
	DNS_RR_RECORD *pDNSAnswerRRRecord = NULL;


	for ( i = 0; i < wAnswers; i++ ) {

		pDNSAnswerRRRecord = *( ppDNSAnswerRRRecords + i );

		dwError =
			DNSMarshallRRHeader( hSendBuffer,
					     pDNSAnswerRRRecord );
		BAIL_ON_ERROR( dwError );

		dwError = DNSMarshallRData( hSendBuffer, pDNSAnswerRRRecord );
		BAIL_ON_ERROR( dwError );

		pDNSAnswerRRRecord++;

	}
      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

static int32 DNSStdMarshallAuthoritySection( HANDLE hSendBuffer,
				DNS_RR_RECORD ** ppDNSAuthorityRRRecords,
				int16 wAuthoritys )
{
	int32 dwError = 0;
	int32 i = 0;

	DNS_RR_RECORD *pDNSAuthorityRRRecord = NULL;

	for ( i = 0; i < wAuthoritys; i++ ) {

		pDNSAuthorityRRRecord = *( ppDNSAuthorityRRRecords + i );

		dwError =
			DNSMarshallRRHeader( hSendBuffer,
					     pDNSAuthorityRRRecord );

		dwError = DNSMarshallRData( hSendBuffer,
					    pDNSAuthorityRRRecord );
		BAIL_ON_ERROR( dwError );

	}
      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

static int32 DNSStdMarshallAdditionalSection( HANDLE hSendBuffer,
				 DNS_RR_RECORD ** ppDNSAdditionalsRRRecords,
				 int16 wAdditionals )
{
	int32 dwError = 0;
	int32 i = 0;
	DNS_RR_RECORD *pDNSAdditionalRRRecord = NULL;

	for ( i = 0; i < wAdditionals; i++ ) {

		pDNSAdditionalRRRecord = *( ppDNSAdditionalsRRRecords + i );

		dwError =
			DNSMarshallRRHeader( hSendBuffer,
					     pDNSAdditionalRRRecord );
		BAIL_ON_ERROR( dwError );

		dwError = DNSMarshallRData( hSendBuffer,
					    pDNSAdditionalRRRecord );
		BAIL_ON_ERROR( dwError );

	}

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

static int32 DNSBuildRequestMessage( DNS_REQUEST * pDNSRequest, HANDLE * phSendBuffer )
{
	int32 dwError = 0;
	char DNSMessageHeader[12];
	int16 wnIdentification = 0;
	int16 wnParameter = 0;
	int16 wnQuestions = 0;
	int16 wnAnswers = 0;
	int16 wnAuthoritys = 0;
	int16 wnAdditionals = 0;
	int32 dwRead = 0;
	HANDLE hSendBuffer = ( HANDLE ) NULL;

	dwError = DNSCreateSendBuffer( &hSendBuffer );
	BAIL_ON_ERROR( dwError );

	wnIdentification = htons( pDNSRequest->wIdentification );
	memcpy( DNSMessageHeader, ( char * ) &wnIdentification, 2 );

	wnParameter = htons( pDNSRequest->wParameter );
	memcpy( DNSMessageHeader + 2, ( char * ) &wnParameter, 2 );

	wnQuestions = htons( pDNSRequest->wQuestions );
	memcpy( DNSMessageHeader + 4, ( char * ) &wnQuestions, 2 );

	wnAnswers = htons( pDNSRequest->wAnswers );
	memcpy( DNSMessageHeader + 6, ( char * ) &wnAnswers, 2 );

	wnAuthoritys = htons( pDNSRequest->wAuthoritys );
	memcpy( DNSMessageHeader + 8, ( char * ) &wnAuthoritys, 2 );

	wnAdditionals = htons( pDNSRequest->wAdditionals );
	memcpy( DNSMessageHeader + 10, ( char * ) &wnAdditionals, 2 );

	dwError =
		DNSMarshallBuffer( hSendBuffer, ( uint8 * ) DNSMessageHeader,
				   12, &dwRead );
	BAIL_ON_ERROR( dwError );

	if ( pDNSRequest->wQuestions ) {
		dwError =
			DNSStdMarshallQuestionSection( hSendBuffer,
						       pDNSRequest->
						       ppQuestionRRSet,
						       pDNSRequest->
						       wQuestions );
		BAIL_ON_ERROR( dwError );
	}

	if ( pDNSRequest->wAnswers ) {
		dwError =
			DNSStdMarshallAnswerSection( hSendBuffer,
						     pDNSRequest->
						     ppAnswerRRSet,
						     pDNSRequest->wAnswers );
		BAIL_ON_ERROR( dwError );
	}

	if ( pDNSRequest->wAuthoritys ) {
		dwError =
			DNSStdMarshallAuthoritySection( hSendBuffer,
							pDNSRequest->
							ppAuthorityRRSet,
							pDNSRequest->
							wAuthoritys );
		BAIL_ON_ERROR( dwError );
	}

	if ( pDNSRequest->wAdditionals ) {
		dwError =
			DNSStdMarshallAdditionalSection( hSendBuffer,
							 pDNSRequest->
							 ppAdditionalRRSet,
							 pDNSRequest->
							 wAdditionals );
		BAIL_ON_ERROR( dwError );
	}
#if 0
	DNSDumpSendBufferContext( hSendBuffer );
#endif
	*phSendBuffer = hSendBuffer;

	return dwError;

      error:

	if ( hSendBuffer ) {
		DNSFreeSendBufferContext( hSendBuffer );
	}

	*phSendBuffer = ( HANDLE ) NULL;
	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSStdSendStdRequest2( HANDLE hDNSServer, DNS_REQUEST * pDNSRequest )
{
	int32 dwError = 0;
	int32 dwBytesSent = 0;
	HANDLE hSendBuffer = ( HANDLE ) NULL;

	dwError = DNSBuildRequestMessage( pDNSRequest, &hSendBuffer );
	BAIL_ON_ERROR( dwError );

	dwError =
		DNSSendBufferContext( hDNSServer, hSendBuffer, &dwBytesSent );
	BAIL_ON_ERROR( dwError );

      error:

	if ( hSendBuffer ) {
		DNSFreeSendBufferContext( hSendBuffer );
	}

	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSMarshallDomainName( HANDLE hSendBuffer, DNS_DOMAIN_NAME * pDomainName )
{
	int32 dwError = 0;
	DNS_DOMAIN_LABEL *pTemp = NULL;
	int32 dwLen = 0;
	int32 dwSent = 0;
	char uEndChar = 0;

	pTemp = pDomainName->pLabelList;
	while ( pTemp ) {
		dwLen = ( int32 ) strlen( pTemp->pszLabel );
		dwError =
			DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & dwLen,
					   sizeof( char ), &dwSent );
		BAIL_ON_ERROR( dwError );

		dwError =
			DNSMarshallBuffer( hSendBuffer,
					   ( uint8 * ) pTemp->pszLabel, dwLen,
					   &dwSent );
		BAIL_ON_ERROR( dwError );
		pTemp = pTemp->pNext;
	}
	DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & uEndChar,
			   sizeof( char ), &dwSent );

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSMarshallRRHeader( HANDLE hSendBuffer, DNS_RR_RECORD * pDNSRecord )
{
	int32 dwError = 0;
	int32 dwRead = 0;
	int16 wnType = 0;
	int16 wnClass = 0;
	int16 wnRDataSize = 0;
	int32 dwnTTL = 0;

	dwError =
		DNSMarshallDomainName( hSendBuffer,
				       pDNSRecord->RRHeader.pDomainName );
	BAIL_ON_ERROR( dwError );

	wnType = htons( pDNSRecord->RRHeader.wType );
	dwError =
		DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & wnType,
				   sizeof( int16 ), &dwRead );
	BAIL_ON_ERROR( dwError );

	wnClass = htons( pDNSRecord->RRHeader.wClass );
	dwError =
		DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & wnClass,
				   sizeof( int16 ), &dwRead );
	BAIL_ON_ERROR( dwError );

	dwnTTL = htonl( pDNSRecord->RRHeader.dwTTL );
	dwError =
		DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & dwnTTL,
				   sizeof( int32 ), &dwRead );
	BAIL_ON_ERROR( dwError );

	wnRDataSize = htons( pDNSRecord->RRHeader.wRDataSize );
	dwError =
		DNSMarshallBuffer( hSendBuffer, ( uint8 * ) & wnRDataSize,
				   sizeof( int16 ), &dwRead );
	BAIL_ON_ERROR( dwError );

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSMarshallRData( HANDLE hSendBuffer, DNS_RR_RECORD * pDNSRecord )
{
	int32 dwError = 0;
	int32 dwWritten = 0;

	dwError =
		DNSMarshallBuffer( hSendBuffer, pDNSRecord->pRData,
				   pDNSRecord->RRHeader.wRDataSize,
				   &dwWritten );
	BAIL_ON_ERROR( dwError );

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSStdAddQuestionSection( DNS_REQUEST * pDNSRequest,
			  DNS_QUESTION_RECORD * pDNSQuestion )
{
	int32 dwNumQuestions = 0;
	int32 dwError = 0;

	dwNumQuestions = pDNSRequest->wQuestions;

	dwError = DNSReallocMemory( ( uint8 * ) pDNSRequest->ppQuestionRRSet,
				    ( void ** ) &pDNSRequest->ppQuestionRRSet,
				    ( dwNumQuestions +
				      1 ) * sizeof( DNS_QUESTION_RECORD * )
		 );
	BAIL_ON_ERROR( dwError );

	*( pDNSRequest->ppQuestionRRSet + dwNumQuestions ) = pDNSQuestion;

	pDNSRequest->wQuestions += 1;

      error:

	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSStdAddAdditionalSection( DNS_REQUEST * pDNSRequest,
			    DNS_RR_RECORD * pDNSRecord )
{
	int32 dwNumAdditionals = 0;
	int32 dwError = 0;

	dwNumAdditionals = pDNSRequest->wAdditionals;
	dwError = DNSReallocMemory( pDNSRequest->ppAdditionalRRSet,
				    ( void ** ) &pDNSRequest->
				    ppAdditionalRRSet,
				    ( dwNumAdditionals +
				      1 ) * sizeof( DNS_RR_RECORD * ) );
	BAIL_ON_ERROR( dwError );

	*( pDNSRequest->ppAdditionalRRSet + dwNumAdditionals ) = pDNSRecord;

	pDNSRequest->wAdditionals += 1;

      error:
	return dwError;
}

/*********************************************************************
*********************************************************************/

int32 DNSStdCreateStdRequest( DNS_REQUEST ** ppDNSRequest )
{
	int32 dwError = 0;
	DNS_REQUEST *pDNSRequest = NULL;

#if 0
	int16 wRecursionDesired = RECURSION_DESIRED;
	int16 wParameter = QR_QUERY;
	int16 wOpcode = OPCODE_QUERY;
#endif
	dwError =
		DNSAllocateMemory( sizeof( DNS_REQUEST ),
				   ( void ** ) &pDNSRequest );
	BAIL_ON_ERROR( dwError );

	dwError = DNSGenerateIdentifier( &pDNSRequest->wIdentification );
	BAIL_ON_ERROR( dwError );

/*	
	wOpcode <<= 1;
	wRecursionDesired <<= 7;
	wParameter |= wOpcode;
	wParameter |= wRecursionDesired;
*/
	pDNSRequest->wParameter = 0x00;

	*ppDNSRequest = pDNSRequest;

	return dwError;

      error:

	*ppDNSRequest = NULL;
	return dwError;
}