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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
|
/* Copyright (C) 2011 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include "packet/response.h"
#include "util/wire.h"
#include "util/descriptor.h"
#include "common.h"
#include "util/error.h"
#include "util/debug.h"
#include "packet/packet.h"
/*----------------------------------------------------------------------------*/
/*!
* \brief Holds information about compressed domain name.
*
* Used only to pass information between functions.
*
* \todo This description should be revised and clarified.
*/
struct knot_compr_owner {
/*!
* \brief Place where the name is stored in the wire format of the
* packet.
*/
uint8_t *wire;
short size; /*!< Size of the domain name in bytes. */
/*! \brief Position of the name relative to the start of the packet. */
size_t pos;
};
typedef struct knot_compr_owner knot_compr_owner_t;
/*!
* \brief Holds information about compressed domain names in packet.
*
* Used only to pass information between functions.
*
* \todo This description should be revised and clarified.
*/
struct knot_compr {
knot_compressed_dnames_t *table; /*!< Compression table. */
size_t wire_pos; /*!< Current position in the wire format. */
knot_compr_owner_t owner; /*!< Information about the current name. */
};
typedef struct knot_compr knot_compr_t;
static const size_t KNOT_RESPONSE_MAX_PTR = 16383;
/*----------------------------------------------------------------------------*/
/* Non-API functions */
/*----------------------------------------------------------------------------*/
/*!
* \brief Reallocates space for compression table.
*
* \param table Compression table to reallocate space for.
*
* \retval KNOT_EOK
* \retval KNOT_ENOMEM
*/
static int knot_response_realloc_compr(knot_compressed_dnames_t *table)
{
int free_old = table->max != DEFAULT_DOMAINS_IN_RESPONSE;
size_t *old_offsets = table->offsets;
const knot_dname_t **old_dnames = table->dnames;
short new_max_count = table->max + STEP_DOMAINS;
size_t *new_offsets = (size_t *)malloc(new_max_count * sizeof(size_t));
CHECK_ALLOC_LOG(new_offsets, -1);
const knot_dname_t **new_dnames = (const knot_dname_t **)malloc(
new_max_count * sizeof(knot_dname_t *));
if (new_dnames == NULL) {
ERR_ALLOC_FAILED;
free(new_offsets);
return KNOT_ENOMEM;
}
memcpy(new_offsets, table->offsets, table->max * sizeof(size_t));
memcpy(new_dnames, table->dnames,
table->max * sizeof(knot_dname_t *));
table->offsets = new_offsets;
table->dnames = new_dnames;
table->max = new_max_count;
if (free_old) {
free(old_offsets);
free(old_dnames);
}
return KNOT_EOK;
}
/*----------------------------------------------------------------------------*/
/*!
* \brief Stores new mapping between domain name and offset in the compression
* table.
*
* If the domain name is already present in the table, it is not inserted again.
*
* \param table Compression table to save the mapping into.
* \param dname Domain name to insert.
* \param pos Position of the domain name in the packet's wire format.
*/
static void knot_response_compr_save(knot_compressed_dnames_t *table,
const knot_dname_t *dname, size_t pos)
{
assert(table->count < table->max);
for (int i = 0; i < table->count; ++i) {
if (table->dnames[i] == dname) {
dbg_response("Already present, skipping..\n");
return;
}
}
table->dnames[table->count] = dname;
table->offsets[table->count] = pos;
++table->count;
}
/*----------------------------------------------------------------------------*/
/*!
* \brief Stores domain name position and positions of its parent domain names
* to the compression table.
*
* If part of the domain name (\a dname) was not found previously in the
* compression table, this part and all its parent domains is stored also, to
* maximize compression potential.
*
* \param table Compression table to save the information into.
* \param dname Domain name to save.
* \param not_matched Count of labels not matched when previously searching in
* the compression table for \a dname.
* \param pos Position of the domain name in the wire format of the packet.
* \param unmatched_offset Position of the unmatched parent domain of \a dname.
*
* \retval KNOT_EOK
* \retval KNOT_ENOMEM
*/
static int knot_response_store_dname_pos(knot_compressed_dnames_t *table,
const knot_dname_t *dname,
int not_matched, size_t pos,
size_t unmatched_offset,
int compr_cs)
{
dbg_response_exec(
char *name = knot_dname_to_str(dname);
dbg_response("Putting dname %s into compression table."
" Labels not matched: %d, position: %zu,"
", pointer: %p, unmatched off: %zu\n", name,
not_matched, pos, dname, unmatched_offset);
free(name);
);
if (pos > KNOT_RESPONSE_MAX_PTR) {
dbg_response("Pointer larger than it can be, not"
" saving\n");
return KNOT_EDNAMEPTR;
}
if (table->count == table->max &&
knot_response_realloc_compr(table) != 0) {
return KNOT_ENOMEM;
}
// store the position of the name
// table->dnames[table->count] = dname;
// table->offsets[table->count] = pos;
// ++table->count;
/*
* Store positions of ancestors if more than 1 label was not matched.
*
* In case the name is not in the zone, the counting to not_matched
* may be limiting, because the search stopped before after the first
* label (i.e. not_matched == 1). So we do not store the parents in
* this case. However, storing them will require creating those domain
* names, as they do not exist.
*
* The same problem is with domain names synthetized from wildcards.
* These also do not have any node to follow.
*
* We accept this as performance has higher
* priority than the best possible compression.
*/
const knot_dname_t *to_save = dname;
size_t parent_pos = pos;
int i = 0;
while (to_save != NULL && i < knot_dname_label_count(dname)) {
if (i == not_matched) {
parent_pos = unmatched_offset;
}
dbg_response_exec(
char *name = knot_dname_to_str(to_save);
dbg_response("Putting dname %s into compression table."
" Position: %zu, pointer: %p\n",
name, parent_pos, to_save);
free(name);
);
if (table->count == table->max &&
knot_response_realloc_compr(table) != 0) {
dbg_response("Unable to realloc.\n");
return KNOT_ENOMEM;
}
// dbg_response("Saving..\n");
knot_response_compr_save(table, to_save, parent_pos);
/*! \todo Remove '!compr_cs'. */
// This is a temporary hack to avoid the wrong behaviour
// when the wrong not_matched count is used to compare with i
// and resulting in using the 0 offset.
// If case-sensitive search is in place, we should not save the
// node's parent's positions.
to_save = !compr_cs && (knot_dname_node(to_save, 1) != NULL
&& knot_node_parent(knot_dname_node(to_save, 1), 1)
!= NULL) ? knot_node_owner(knot_node_parent(
knot_dname_node(to_save, 1), 1))
: NULL;
dbg_response("i: %d\n", i);
parent_pos += knot_dname_label_size(dname, i) + 1;
// parent_pos += (i > 0)
// ? knot_dname_label_size(dname, i - 1) + 1 : 0;
++i;
}
return KNOT_EOK;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Tries to find offset of domain name in the compression table.
*
* \param table Compression table to search in.
* \param dname Domain name to search for.
* \param compr_cs Set to <> 0 if dname compression should use case sensitive
* comparation. Set to 0 otherwise.
*
* \return Offset of \a dname stored in the compression table or -1 if the name
* was not found in the table.
*/
static size_t knot_response_find_dname_pos(
const knot_compressed_dnames_t *table,
const knot_dname_t *dname, int compr_cs)
{
for (int i = 0; i < table->count; ++i) {
// dbg_response("Comparing dnames %p and %p\n",
// dname, table->dnames[i]);
//dbg_response_exec(
// char *name = knot_dname_to_str(dname);
// dbg_response("(%s and ", name);
// name = knot_dname_to_str(table->dnames[i]);
// dbg_response("%s)\n", name);
// free(name);
//);
//if (table->dnames[i] == dname) {
int ret = (compr_cs)
? knot_dname_compare_cs(table->dnames[i], dname)
: knot_dname_compare(table->dnames[i], dname);
if (ret == 0) {
dbg_response("Found offset: %zu\n",
table->offsets[i]);
return table->offsets[i];
}
}
return 0;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Put a compressed domain name to the wire format of the packet.
*
* Puts the not matched part of the domain name to the wire format and puts
* a pointer to the rest of the name after that.
*
* \param dname Domain name to put to the wire format.
* \param not_matched Size of the part of domain name that cannot be compressed.
* \param offset Position of the rest of the domain name in the packet's wire
* format.
* \param wire Place where to put the wire format of the name.
* \param max Maximum available size of the place for the wire format.
*
* \return Size of the compressed domain name put into the wire format or
* KNOT_ESPACE if it did not fit.
*/
static int knot_response_put_dname_ptr(const knot_dname_t *dname,
int not_matched, size_t offset,
uint8_t *wire, size_t max)
{
// put the not matched labels
short size = knot_dname_size_part(dname, not_matched);
if (size + 2 > max) {
return KNOT_ESPACE;
}
memcpy(wire, knot_dname_name(dname), size);
knot_wire_put_pointer(wire + size, offset);
dbg_response("Size of the dname with ptr: %d\n", size + 2);
return size + 2;
}
/*----------------------------------------------------------------------------*/
/*!
* \brief Tries to compress domain name and creates its wire format.
*
* \param dname Domain name to convert and compress.
* \param compr Compression table holding information about offsets of domain
* names in the packet.
* \param dname_wire Place where to put the wire format of the name.
* \param max Maximum available size of the place for the wire format.
* \param compr_cs Set to <> 0 if dname compression should use case sensitive
* comparation. Set to 0 otherwise.
*
* \return Size of the domain name's wire format or KNOT_ESPACE if it did not
* fit into the provided space.
*/
static int knot_response_compress_dname(const knot_dname_t *dname,
knot_compr_t *compr, uint8_t *dname_wire, size_t max, int compr_cs)
{
int size = 0;
/*!
* \todo Compress!!
*
* if pos == 0, do not store the position!
*/
// try to find the name or one of its ancestors in the compr. table
#ifdef COMPRESSION_PEDANTIC
//knot_dname_t *to_find = knot_dname_copy(dname);
knot_dname_t *to_find = (knot_dname_t *)dname;
int copied = 0;
#else
const knot_dname_t *to_find = dname;
#endif
size_t offset = 0;
int not_matched = 0;
while (to_find != NULL && knot_dname_label_count(to_find) != 0) {
dbg_response_exec(
char *name = knot_dname_to_str(to_find);
dbg_response("Searching for name %s in the compression"
" table, not matched labels: %d\n", name,
not_matched);
free(name);
);
offset = knot_response_find_dname_pos(compr->table, to_find,
compr_cs);
if (offset == 0) {
++not_matched;
} else {
break;
}
#ifdef COMPRESSION_PEDANTIC
if (compr_cs || to_find->node == NULL
|| to_find->node->owner != to_find
|| to_find->node->parent == NULL) {
if (!copied) {
to_find = knot_dname_left_chop(to_find);
copied = 1;
} else {
knot_dname_left_chop_no_copy(to_find);
}
} else {
assert(to_find->node != to_find->node->parent);
assert(to_find != to_find->node->parent->owner);
to_find = to_find->node->parent->owner;
}
#else
// if case-sensitive comparation, we cannot just take the parent
if (compr_cs || knot_dname_node(to_find, 1) == NULL
|| knot_node_owner(knot_dname_node(to_find, 1)) != to_find
|| knot_node_parent(knot_dname_node(to_find, 1), 1)
== NULL) {
dbg_response("compr_cs: %d\n", compr_cs);
dbg_response("knot_dname_node(to_find, 1) == %p"
"\n", knot_dname_node(to_find, 1));
if (knot_dname_node(to_find, 1) != NULL) {
dbg_response("knot_node_owner(knot_dname_node("
"to_find, 1)) = %p, to_find = %p\n",
knot_node_owner(knot_dname_node(to_find, 1)),
to_find);
dbg_response("knot_node_parent(knot_dname_node("
"to_find, 1), 1) = %p\n",
knot_node_parent(knot_dname_node(to_find, 1), 1));
}
break;
} else {
assert(knot_dname_node(to_find, 1) !=
knot_node_parent(knot_dname_node(to_find, 1), 1));
assert(to_find != knot_node_owner(
knot_node_parent(knot_dname_node(to_find, 1), 1)));
to_find = knot_node_owner(
knot_node_parent(knot_dname_node(to_find, 1), 1));
dbg_response("New to_find: %p\n", to_find);
}
#endif
}
#ifdef COMPRESSION_PEDANTIC
if (copied) {
knot_dname_free(&to_find);
}
#endif
dbg_response("Max size available for domain name: %zu\n", max);
if (offset > 0) { // found such dname somewhere in the packet
dbg_response("Found name in the compression table.\n");
assert(offset >= KNOT_WIRE_HEADER_SIZE);
size = knot_response_put_dname_ptr(dname, not_matched, offset,
dname_wire, max);
if (size <= 0) {
return KNOT_ESPACE;
}
} else {
dbg_response("Not found, putting whole name.\n");
// now just copy the dname without compressing
if (dname->size > max) {
return KNOT_ESPACE;
}
memcpy(dname_wire, dname->name, dname->size);
size = dname->size;
}
// in either way, put info into the compression table
/*! \todo This is useless if the name was already in the table.
* It is meaningful only if the found name is the one from QNAME
* and thus its parents are not stored yet.
*/
assert(compr->wire_pos >= 0);
if (knot_response_store_dname_pos(compr->table, dname, not_matched,
compr->wire_pos, offset, compr_cs)
!= 0) {
dbg_response("Compression info could not be stored."
"\n");
}
return size;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Convert one RR into wire format.
*
* \param[in] rrset RRSet to which the RR belongs.
* \param[in] rdata The actual RDATA of this RR.
* \param[in] compr Information about compressed domain names in the packet.
* \param[out] rrset_wire Place to put the wire format of the RR into.
* \param[in] max_size Size of space available for the wire format.
* \param[in] compr_cs Set to <> 0 if dname compression should use case
* sensitive comparation. Set to 0 otherwise.
*
* \return Size of the RR's wire format or KNOT_ESPACE if it did not fit into
* the provided space.
*/
static int knot_response_rr_to_wire(const knot_rrset_t *rrset,
const knot_rdata_t *rdata,
knot_compr_t *compr,
uint8_t **rrset_wire, size_t max_size,
int compr_cs)
{
int size = 0;
dbg_response("Max size: %zu, owner pos: %zu, owner size: %d\n",
max_size, compr->owner.pos, compr->owner.size);
if (size + ((compr->owner.pos == 0
|| compr->owner.pos > KNOT_RESPONSE_MAX_PTR)
? compr->owner.size : 2) + 10
> max_size) {
return KNOT_ESPACE;
}
dbg_response("Owner position: %zu\n", compr->owner.pos);
// put owner if needed (already compressed)
if (compr->owner.pos == 0 || compr->owner.pos > KNOT_RESPONSE_MAX_PTR) {
memcpy(*rrset_wire, compr->owner.wire, compr->owner.size);
compr->owner.pos = compr->wire_pos;
*rrset_wire += compr->owner.size;
size += compr->owner.size;
} else {
dbg_response("Putting pointer: %zu\n",
compr->owner.pos);
knot_wire_put_pointer(*rrset_wire, compr->owner.pos);
*rrset_wire += 2;
size += 2;
}
dbg_response("Max size: %zu, size: %d\n", max_size, size);
dbg_response("Wire format:\n");
// put rest of RR 'header'
knot_wire_write_u16(*rrset_wire, rrset->type);
dbg_response(" Type: %u\n", rrset->type);
dbg_response(" Type in wire: ");
dbg_response_hex((char *)*rrset_wire, 2);
*rrset_wire += 2;
knot_wire_write_u16(*rrset_wire, rrset->rclass);
dbg_response(" Class: %u\n", rrset->rclass);
dbg_response(" Class in wire: ");
dbg_response_hex((char *)*rrset_wire, 2);
*rrset_wire += 2;
knot_wire_write_u32(*rrset_wire, rrset->ttl);
dbg_response(" TTL: %u\n", rrset->ttl);
dbg_response(" TTL in wire: ");
dbg_response_hex((char *)*rrset_wire, 4);
*rrset_wire += 4;
// save space for RDLENGTH
uint8_t *rdlength_pos = *rrset_wire;
*rrset_wire += 2;
size += 10;
compr->wire_pos += size;
dbg_response("Max size: %zu, size: %d\n", max_size, size);
knot_rrtype_descriptor_t *desc =
knot_rrtype_descriptor_by_type(rrset->type);
uint16_t rdlength = 0;
for (int i = 0; i < rdata->count; ++i) {
if (max_size < size + rdlength) {
return KNOT_ESPACE;
}
switch (desc->wireformat[i]) {
case KNOT_RDATA_WF_COMPRESSED_DNAME: {
int ret = knot_response_compress_dname(
knot_rdata_item(rdata, i)->dname,
compr, *rrset_wire, max_size - size - rdlength,
compr_cs);
if (ret < 0) {
return KNOT_ESPACE;
}
dbg_response("Compressed dname size: %d\n",
ret);
*rrset_wire += ret;
rdlength += ret;
compr->wire_pos += ret;
// TODO: compress domain name
break;
}
case KNOT_RDATA_WF_UNCOMPRESSED_DNAME:
case KNOT_RDATA_WF_LITERAL_DNAME: {
knot_dname_t *dname =
knot_rdata_item(rdata, i)->dname;
if (size + rdlength + dname->size > max_size) {
return KNOT_ESPACE;
}
// save whole domain name
memcpy(*rrset_wire, dname->name, dname->size);
dbg_response("Uncompressed dname size: %d\n",
dname->size);
*rrset_wire += dname->size;
rdlength += dname->size;
compr->wire_pos += dname->size;
break;
}
// case KNOT_RDATA_WF_BINARYWITHLENGTH: {
// uint16_t *raw_data =
// knot_rdata_item(rdata, i)->raw_data;
// if (size + raw_data[0] + 1 > max_size) {
// return KNOT_ESPACE;
// }
// // copy also the rdata item size
// assert(raw_data[0] < 256);
// **rrset_wire = raw_data[0];
// *rrset_wire += 1;
// memcpy(*rrset_wire, raw_data + 1, raw_data[0]);
// dbg_response("Raw data size: %d\n",
// raw_data[0] + 1);
// *rrset_wire += raw_data[0];
// rdlength += raw_data[0] + 1;
// compr->wire_pos += raw_data[0] + 1;
// break;
// }
default: {
uint16_t *raw_data =
knot_rdata_item(rdata, i)->raw_data;
if (size + rdlength + raw_data[0] > max_size) {
return KNOT_ESPACE;
}
// copy just the rdata item data (without size)
memcpy(*rrset_wire, raw_data + 1, raw_data[0]);
dbg_response("Raw data size: %d\n",
raw_data[0]);
*rrset_wire += raw_data[0];
rdlength += raw_data[0];
compr->wire_pos += raw_data[0];
break;
}
}
}
dbg_response("Max size: %zu, size: %d\n", max_size, size);
assert(size + rdlength <= max_size);
size += rdlength;
knot_wire_write_u16(rdlength_pos, rdlength);
return size;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Convert whole RRSet into wire format.
*
* \param[in] rrset RRSet to convert
* \param[out] pos Place where to put the wire format.
* \param[out] size Size of the converted wire format.
* \param[in] max_size Maximum available space for the wire format.
* \param wire_pos Current position in the wire format of the whole packet.
* \param owner_tmp Wire format of the RRSet's owner, possibly compressed.
* \param compr Information about compressed domain names in the packet.
* \param compr_cs Set to <> 0 if dname compression should use case sensitive
* comparation. Set to 0 otherwise.
*
* \return Size of the RRSet's wire format or KNOT_ESPACE if it did not fit
* into the provided space.
*/
static int knot_response_rrset_to_wire(const knot_rrset_t *rrset,
uint8_t **pos, size_t *size,
size_t max_size, size_t wire_pos,
uint8_t *owner_tmp,
knot_compressed_dnames_t *compr,
int compr_cs)
{
dbg_response_exec(
char *name = knot_dname_to_str(rrset->owner);
dbg_response("Converting RRSet with owner %s, type %s\n",
name, knot_rrtype_to_string(rrset->type));
free(name);
dbg_response(" Size before: %zu\n", *size);
);
// if no RDATA in RRSet, return
if (rrset->rdata == NULL) {
return KNOT_EOK;
}
//uint8_t *rrset_wire = (uint8_t *)malloc(PREALLOC_RRSET_WIRE);
//short rrset_size = 0;
//uint8_t *owner_wire = (uint8_t *)malloc(rrset->owner->size);
/*
* We may pass the current position to the compression function
* because if the owner will be put somewhere, it will be on the
* current position (first item of a RR). If it will not be put into
* the wireformat, we may remove the dname (and possibly its parents)
* from the compression table.
*/
knot_compr_t compr_info;
//compr_info.new_entries = 0;
compr_info.table = compr;
compr_info.wire_pos = wire_pos;
compr_info.owner.pos = 0;
compr_info.owner.wire = owner_tmp;
compr_info.owner.size =
knot_response_compress_dname(rrset->owner, &compr_info,
owner_tmp, max_size, compr_cs);
dbg_response(" Owner size: %d, position: %zu\n",
compr_info.owner.size, compr_info.owner.pos);
if (compr_info.owner.size < 0) {
return KNOT_ESPACE;
}
int rrs = 0;
short rrset_size = 0;
const knot_rdata_t *rdata = rrset->rdata;
do {
int ret = knot_response_rr_to_wire(rrset, rdata, &compr_info,
pos, max_size - rrset_size,
compr_cs);
assert(ret != 0);
if (ret < 0) {
// some RR didn't fit in, so no RRs should be used
// TODO: remove last entries from compression table
dbg_response("Some RR didn't fit in.\n");
return KNOT_ESPACE;
}
dbg_response("RR of size %d added.\n", ret);
rrset_size += ret;
++rrs;
} while ((rdata = knot_rrset_rdata_next(rrset, rdata)) != NULL);
//memcpy(*pos, rrset_wire, rrset_size);
//*size += rrset_size;
//*pos += rrset_size;
// the whole RRSet did fit in
assert (rrset_size <= max_size);
*size += rrset_size;
dbg_response(" Size after: %zu\n", *size);
return rrs;
}
/*----------------------------------------------------------------------------*/
/*!
* \brief Tries to add RRSet to the response.
*
* This function tries to convert the RRSet to wire format and add it to the
* wire format of the response and if successful, adds the RRSet to the given
* list (and updates its size). If the RRSet did not fit into the available
* space (\a max_size), it is omitted as a whole and the TC bit may be set
* (according to \a tc).
*
* \param rrsets Lists of RRSets to which this RRSet should be added.
* \param rrset_count Number of RRSets in the list.
* \param resp Response structure where the RRSet should be added.
* \param max_size Maximum available space in wire format of the response.
* \param rrset RRSet to add.
* \param tc Set to <> 0 if omitting the RRSet should cause the TC bit to be
* set in the response.
* \param compr_cs Set to <> 0 if dname compression should use case sensitive
* comparation. Set to 0 otherwise.
*
* \return Count of RRs added to the response or KNOT_ESPACE if the RRSet did
* not fit in the available space.
*/
static int knot_response_try_add_rrset(const knot_rrset_t **rrsets,
short *rrset_count,
knot_packet_t *resp,
size_t max_size,
const knot_rrset_t *rrset, int tc,
int compr_cs)
{
//short size = knot_response_rrset_size(rrset, &resp->compression);
dbg_response_exec(
char *name = knot_dname_to_str(rrset->owner);
dbg_response("\nAdding RRSet with owner %s and type %s: \n",
name, knot_rrtype_to_string(rrset->type));
free(name);
);
uint8_t *pos = resp->wireformat + resp->size;
size_t size = 0;
int rrs = knot_response_rrset_to_wire(rrset, &pos, &size, max_size,
resp->size, resp->owner_tmp,
&resp->compression, compr_cs);
if (rrs >= 0) {
rrsets[(*rrset_count)++] = rrset;
resp->size += size;
dbg_response("RRset added, size: %zu, RRs: %d, total "
"size of response: %zu\n\n", size, rrs,
resp->size);
} else if (tc) {
dbg_response("Setting TC bit.\n");
knot_wire_flags_set_tc(&resp->header.flags1);
knot_wire_set_tc(resp->wireformat);
}
return rrs;
}
/*----------------------------------------------------------------------------*/
/*!
* \brief Reallocate space for RRSets.
*
* \param rrsets Space for RRSets.
* \param max_count Size of the space available for the RRSets.
* \param default_max_count Size of the space pre-allocated for the RRSets when
* the response structure was initialized.
* \param step How much the space should be increased.
*
* \retval KNOT_EOK
* \retval KNOT_ENOMEM
*/
static int knot_response_realloc_rrsets(const knot_rrset_t ***rrsets,
short *max_count,
short default_max_count, short step)
{
int free_old = (*max_count) != default_max_count;
const knot_rrset_t **old = *rrsets;
short new_max_count = *max_count + step;
const knot_rrset_t **new_rrsets = (const knot_rrset_t **)malloc(
new_max_count * sizeof(knot_rrset_t *));
CHECK_ALLOC_LOG(new_rrsets, KNOT_ENOMEM);
memcpy(new_rrsets, *rrsets, (*max_count) * sizeof(knot_rrset_t *));
*rrsets = new_rrsets;
*max_count = new_max_count;
if (free_old) {
free(old);
}
return KNOT_EOK;
}
/*----------------------------------------------------------------------------*/
/* API functions */
/*----------------------------------------------------------------------------*/
int knot_response_init(knot_packet_t *response)
{
if (response == NULL) {
return KNOT_EBADARG;
}
if (response->max_size < KNOT_WIRE_HEADER_SIZE) {
return KNOT_ESPACE;
}
// set the qr bit to 1
knot_wire_flags_set_qr(&response->header.flags1);
uint8_t *pos = response->wireformat;
knot_packet_header_to_wire(&response->header, &pos,
&response->size);
return KNOT_EOK;
}
/*----------------------------------------------------------------------------*/
int knot_response_init_from_query(knot_packet_t *response,
knot_packet_t *query)
{
if (response == NULL || query == NULL) {
return KNOT_EBADARG;
}
// copy the header from the query
memcpy(&response->header, &query->header, sizeof(knot_header_t));
// memmove(&response->header, &query->header, sizeof(knot_header_t));
// copy the Question section (but do not copy the QNAME)
memcpy(&response->question, &query->question,
sizeof(knot_question_t));
// memmove(&response->question, &query->question,
// sizeof(knot_question_t));
int err = 0;
// put the qname into the compression table
// TODO: get rid of the numeric constants
if ((err = knot_response_store_dname_pos(&response->compression,
response->question.qname, 0, 12, 12, 0)) != KNOT_EOK) {
return err;
}
// copy the wireformat of Header and Question from the query
// TODO: get rid of the numeric constants
size_t to_copy = 12 + 4 + knot_dname_size(response->question.qname);
assert(response->max_size >= to_copy);
// printf("Resp init from query: Copying from: %p to: %p size: %d\n",
// response->wireformat, query->wireformat,
// to_copy);
// printf("Resp init from query: Question name size: %d Query name size: %d\n",
// knot_dname_size(response->question.qname),
// knot_dname_size(query->question.qname));
memcpy(response->wireformat, query->wireformat, to_copy);
response->size = to_copy;
// set the qr bit to 1
knot_wire_flags_set_qr(&response->header.flags1);
knot_wire_set_qr(response->wireformat);
// clear AD flag
knot_wire_flags_clear_ad(&response->header.flags2);
knot_wire_clear_ad(response->wireformat);
// clear RA flag
knot_wire_flags_clear_ra(&response->header.flags2);
knot_wire_clear_ad(response->wireformat);
// set counts to 0
response->header.ancount = 0;
response->header.nscount = 0;
response->header.arcount = 0;
response->query = query;
return KNOT_EOK;
}
/*----------------------------------------------------------------------------*/
void knot_response_clear(knot_packet_t *resp, int clear_question)
{
if (resp == NULL) {
return;
}
resp->size = (clear_question) ? KNOT_WIRE_HEADER_SIZE
: KNOT_WIRE_HEADER_SIZE + 4
+ knot_dname_size(resp->question.qname);
resp->an_rrsets = 0;
resp->ns_rrsets = 0;
resp->ar_rrsets = 0;
resp->compression.count = 0;
knot_packet_free_tmp_rrsets(resp);
resp->tmp_rrsets_count = 0;
resp->header.ancount = 0;
resp->header.nscount = 0;
resp->header.arcount = 0;
}
/*----------------------------------------------------------------------------*/
int knot_response_add_opt(knot_packet_t *resp,
const knot_opt_rr_t *opt_rr,
int override_max_size)
{
if (resp == NULL || opt_rr == NULL) {
return KNOT_EBADARG;
}
// copy the OPT RR
resp->opt_rr.version = opt_rr->version;
resp->opt_rr.ext_rcode = opt_rr->ext_rcode;
resp->opt_rr.payload = opt_rr->payload;
resp->opt_rr.size = opt_rr->size;
// if max size is set, it means there is some reason to be that way,
// so we can't just set it to higher value
if (override_max_size && resp->max_size > 0
&& resp->max_size < opt_rr->payload) {
return KNOT_EPAYLOAD;
}
// set max size (less is OK)
if (override_max_size) {
dbg_response("Overriding max size to: %u\n",
resp->opt_rr.payload);
return knot_packet_set_max_size(resp, resp->opt_rr.payload);
//resp->max_size = resp->opt_rr.payload;
}
return KNOT_EOK;
}
/*----------------------------------------------------------------------------*/
int knot_response_add_rrset_answer(knot_packet_t *response,
const knot_rrset_t *rrset, int tc,
int check_duplicates, int compr_cs)
{
if (response == NULL || rrset == NULL) {
return KNOT_EBADARG;
}
dbg_response("add_rrset_answer()\n");
assert(response->header.arcount == 0);
assert(response->header.nscount == 0);
if (response->an_rrsets == response->max_an_rrsets
&& knot_response_realloc_rrsets(&response->answer,
&response->max_an_rrsets, DEFAULT_ANCOUNT, STEP_ANCOUNT)
!= KNOT_EOK) {
return KNOT_ENOMEM;
}
if (check_duplicates && knot_packet_contains(response, rrset,
KNOT_RRSET_COMPARE_PTR)) {
return KNOT_EOK;
}
dbg_response("Trying to add RRSet to Answer section.\n");
dbg_response("RRset: %p\n", rrset);
dbg_response("Owner: %p\n", rrset->owner);
int rrs = knot_response_try_add_rrset(response->answer,
&response->an_rrsets, response,
response->max_size
- response->size
- response->opt_rr.size
- response->tsig_size,
rrset, tc, compr_cs);
if (rrs >= 0) {
response->header.ancount += rrs;
return KNOT_EOK;
}
return KNOT_ESPACE;
}
/*----------------------------------------------------------------------------*/
int knot_response_add_rrset_authority(knot_packet_t *response,
const knot_rrset_t *rrset, int tc,
int check_duplicates, int compr_cs)
{
if (response == NULL || rrset == NULL) {
return KNOT_EBADARG;
}
assert(response->header.arcount == 0);
if (response->ns_rrsets == response->max_ns_rrsets
&& knot_response_realloc_rrsets(&response->authority,
&response->max_ns_rrsets, DEFAULT_NSCOUNT, STEP_NSCOUNT)
!= 0) {
return KNOT_ENOMEM;
}
if (check_duplicates && knot_packet_contains(response, rrset,
KNOT_RRSET_COMPARE_PTR)) {
return KNOT_EOK;
}
dbg_response("Trying to add RRSet to Authority section.\n");
int rrs = knot_response_try_add_rrset(response->authority,
&response->ns_rrsets, response,
response->max_size
- response->size
- response->opt_rr.size
- response->tsig_size,
rrset, tc, compr_cs);
if (rrs >= 0) {
response->header.nscount += rrs;
return KNOT_EOK;
}
return KNOT_ESPACE;
}
/*----------------------------------------------------------------------------*/
int knot_response_add_rrset_additional(knot_packet_t *response,
const knot_rrset_t *rrset, int tc,
int check_duplicates, int compr_cs)
{
if (response == NULL || rrset == NULL) {
return KNOT_EBADARG;
}
int ret;
// if this is the first additional RRSet, add EDNS OPT RR first
if (response->header.arcount == 0
&& response->opt_rr.version != EDNS_NOT_SUPPORTED
&& (ret = knot_packet_edns_to_wire(response)) != KNOT_EOK) {
return ret;
}
if (response->ar_rrsets == response->max_ar_rrsets
&& knot_response_realloc_rrsets(&response->additional,
&response->max_ar_rrsets, DEFAULT_ARCOUNT, STEP_ARCOUNT)
!= 0) {
return KNOT_ENOMEM;
}
if (check_duplicates && knot_packet_contains(response, rrset,
KNOT_RRSET_COMPARE_PTR)) {
return KNOT_EOK;
}
dbg_response("Trying to add RRSet to Additional section.\n");
int rrs = knot_response_try_add_rrset(response->additional,
&response->ar_rrsets, response,
response->max_size
- response->size
- response->tsig_size, rrset,
tc, compr_cs);
if (rrs >= 0) {
response->header.arcount += rrs;
return KNOT_EOK;
}
return KNOT_ESPACE;
}
/*----------------------------------------------------------------------------*/
void knot_response_set_rcode(knot_packet_t *response, short rcode)
{
if (response == NULL) {
return;
}
knot_wire_flags_set_rcode(&response->header.flags2, rcode);
knot_wire_set_rcode(response->wireformat, rcode);
}
/*----------------------------------------------------------------------------*/
void knot_response_set_aa(knot_packet_t *response)
{
if (response == NULL) {
return;
}
knot_wire_flags_set_aa(&response->header.flags1);
knot_wire_set_aa(response->wireformat);
}
/*----------------------------------------------------------------------------*/
void knot_response_set_tc(knot_packet_t *response)
{
if (response == NULL) {
return;
}
knot_wire_flags_set_tc(&response->header.flags1);
knot_wire_set_tc(response->wireformat);
}
/*----------------------------------------------------------------------------*/
int knot_response_add_nsid(knot_packet_t *response, const uint8_t *data,
uint16_t length)
{
if (response == NULL) {
return KNOT_EBADARG;
}
return knot_edns_add_option(&response->opt_rr,
EDNS_OPTION_NSID, length, data);
}
|