Line data Source code
1 : /*
2 : Unix SMB/CIFS implementation.
3 :
4 : Manually parsed structures for DNSSERVER
5 :
6 : Copyright (C) Amitay Isaacs 2011
7 :
8 : This program is free software; you can redistribute it and/or modify
9 : it under the terms of the GNU General Public License as published by
10 : the Free Software Foundation; either version 3 of the License, or
11 : (at your option) any later version.
12 :
13 : This program is distributed in the hope that it will be useful,
14 : but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 : GNU General Public License for more details.
17 :
18 : You should have received a copy of the GNU General Public License
19 : along with this program. If not, see <http://www.gnu.org/licenses/>.
20 : */
21 :
22 : #include "includes.h"
23 : #include "librpc/gen_ndr/ndr_dnsp.h"
24 : #include "librpc/gen_ndr/ndr_dnsserver.h"
25 :
26 : /*
27 : * parsing DNS_RPC_RECORDS_ARRAY
28 : */
29 :
30 526 : enum ndr_err_code ndr_pull_DNS_RPC_RECORDS_ARRAY(struct ndr_pull *ndr,
31 : int ndr_flags, struct DNS_RPC_RECORDS_ARRAY *rec)
32 : {
33 526 : rec->count = 0;
34 526 : rec->rec = talloc_array(ndr->current_mem_ctx, struct DNS_RPC_RECORDS, rec->count);
35 526 : if (! rec->rec) {
36 0 : return ndr_pull_error(ndr, NDR_ERR_ALLOC, "Failed to pull DNS_RPC_RECORDS_ARRAY");
37 : }
38 :
39 1600 : while (ndr->offset < ndr->data_size) {
40 560 : rec->rec = talloc_realloc(ndr->current_mem_ctx, rec->rec, struct DNS_RPC_RECORDS, rec->count+1);
41 560 : if (! rec->rec) {
42 0 : return ndr_pull_error(ndr, NDR_ERR_ALLOC, "Failed to pull DNS_RPC_RECORDS_ARRAY");
43 : }
44 560 : NDR_CHECK(ndr_pull_DNS_RPC_RECORDS(ndr, ndr_flags, &rec->rec[rec->count]));
45 560 : NDR_PULL_ALIGN(ndr, 4);
46 560 : rec->count++;
47 : }
48 :
49 526 : return NDR_ERR_SUCCESS;
50 : }
51 :
52 1052 : enum ndr_err_code ndr_push_DNS_RPC_RECORDS_ARRAY(struct ndr_push *ndr,
53 : int ndr_flags, const struct DNS_RPC_RECORDS_ARRAY *rec)
54 : {
55 : int i;
56 :
57 2172 : for (i=0; i<rec->count; i++) {
58 1120 : NDR_CHECK(ndr_push_DNS_RPC_RECORDS(ndr, ndr_flags, &rec->rec[i]));
59 1154 : NDR_PUSH_ALIGN(ndr, 4);
60 : }
61 :
62 1052 : return NDR_ERR_SUCCESS;
63 : }
64 :
65 : /*
66 : * Parsing of DNS_RPC_RECORD_STRING
67 : */
68 :
69 368 : enum ndr_err_code ndr_pull_DNS_RPC_RECORD_STRING(struct ndr_pull *ndr,
70 : int ndr_flags, struct DNS_RPC_RECORD_STRING *rec)
71 : {
72 368 : rec->count = 0;
73 368 : rec->str = talloc_array(ndr->current_mem_ctx, struct DNS_RPC_NAME, rec->count);
74 368 : if (! rec->str) {
75 0 : return ndr_pull_error(ndr, NDR_ERR_ALLOC, "Failed to pull DNS_RPC_RECORD_STRING");
76 : }
77 :
78 1048 : while (ndr->offset < ndr->data_size) {
79 410 : rec->str = talloc_realloc(ndr->current_mem_ctx, rec->str, struct DNS_RPC_NAME, rec->count+1);
80 410 : if (! rec->str) {
81 0 : return ndr_pull_error(ndr, NDR_ERR_ALLOC, "Failed to pull DNS_RPC_RECORD_STRING");
82 : }
83 410 : NDR_CHECK(ndr_pull_DNS_RPC_NAME(ndr, ndr_flags, &rec->str[rec->count]));
84 410 : rec->count++;
85 : }
86 :
87 368 : return NDR_ERR_SUCCESS;
88 : }
89 :
90 2050 : enum ndr_err_code ndr_push_DNS_RPC_RECORD_STRING(struct ndr_push *ndr,
91 : int ndr_flags, const struct DNS_RPC_RECORD_STRING *rec)
92 : {
93 : int i;
94 :
95 4349 : for (i=0; i<rec->count; i++) {
96 2299 : NDR_CHECK(ndr_push_DNS_RPC_NAME(ndr, ndr_flags, &rec->str[i]));
97 : }
98 :
99 2050 : return NDR_ERR_SUCCESS;
100 : }
|