1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | Manually parsed structures found in the DRS protocol
|
---|
5 |
|
---|
6 | Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
|
---|
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_drsblobs.h"
|
---|
24 |
|
---|
25 | /* parser auto-generated by pidl, then hand-modified by abartlet */
|
---|
26 |
|
---|
27 | /* Modified to have 'count' specified */
|
---|
28 | static enum ndr_err_code ndr_push_AuthenticationInformationArray_with_count(struct ndr_push *ndr, int ndr_flags, int count,
|
---|
29 | const struct AuthenticationInformationArray *r)
|
---|
30 | {
|
---|
31 | uint32_t cntr_array_0;
|
---|
32 | if (ndr_flags & NDR_SCALARS) {
|
---|
33 | NDR_CHECK(ndr_push_align(ndr, 4));
|
---|
34 | for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
|
---|
35 | NDR_CHECK(ndr_push_AuthenticationInformation(ndr, NDR_SCALARS, &r->array[cntr_array_0]));
|
---|
36 | }
|
---|
37 | }
|
---|
38 | if (ndr_flags & NDR_BUFFERS) {
|
---|
39 | for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
|
---|
40 | NDR_CHECK(ndr_push_AuthenticationInformation(ndr, NDR_BUFFERS, &r->array[cntr_array_0]));
|
---|
41 | }
|
---|
42 | }
|
---|
43 | return NDR_ERR_SUCCESS;
|
---|
44 | }
|
---|
45 |
|
---|
46 | /* Modified to have 'count' specified, and to allocate the array */
|
---|
47 | static enum ndr_err_code ndr_pull_AuthenticationInformationArray_with_count(struct ndr_pull *ndr, int ndr_flags, int count, struct AuthenticationInformationArray *r)
|
---|
48 | {
|
---|
49 | uint32_t cntr_array_0;
|
---|
50 | TALLOC_CTX *_mem_save_array_0;
|
---|
51 | if (ndr_flags & NDR_SCALARS) {
|
---|
52 | NDR_CHECK(ndr_pull_align(ndr, 4));
|
---|
53 | NDR_PULL_ALLOC_N(ndr, r->array, count);
|
---|
54 | _mem_save_array_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
---|
55 | NDR_PULL_SET_MEM_CTX(ndr, r->array, 0);
|
---|
56 | for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
|
---|
57 | NDR_CHECK(ndr_pull_AuthenticationInformation(ndr, NDR_SCALARS, &r->array[cntr_array_0]));
|
---|
58 | }
|
---|
59 | NDR_PULL_SET_MEM_CTX(ndr, _mem_save_array_0, 0);
|
---|
60 | }
|
---|
61 | if (ndr_flags & NDR_BUFFERS) {
|
---|
62 | for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
|
---|
63 | NDR_CHECK(ndr_pull_AuthenticationInformation(ndr, NDR_BUFFERS, &r->array[cntr_array_0]));
|
---|
64 | }
|
---|
65 | }
|
---|
66 | return NDR_ERR_SUCCESS;
|
---|
67 | }
|
---|
68 |
|
---|
69 | /* Modified to have 'count' specified */
|
---|
70 | _PUBLIC_ void ndr_print_AuthenticationInformationArray_with_count(struct ndr_print *ndr, const char *name, int count, const struct AuthenticationInformationArray *r)
|
---|
71 | {
|
---|
72 | uint32_t cntr_array_0;
|
---|
73 | ndr_print_struct(ndr, name, "AuthenticationInformationArray");
|
---|
74 | ndr->depth++;
|
---|
75 | ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)1);
|
---|
76 | ndr->depth++;
|
---|
77 | for (cntr_array_0=0;cntr_array_0<count;cntr_array_0++) {
|
---|
78 | char *idx_0=NULL;
|
---|
79 | if (asprintf(&idx_0, "[%d]", cntr_array_0) != -1) {
|
---|
80 | ndr_print_AuthenticationInformation(ndr, "array", &r->array[cntr_array_0]);
|
---|
81 | free(idx_0);
|
---|
82 | }
|
---|
83 | }
|
---|
84 | ndr->depth--;
|
---|
85 | ndr->depth--;
|
---|
86 | }
|
---|
87 |
|
---|
88 | /* Modified to call AuthenticationInformationArray with 'count' specified */
|
---|
89 | _PUBLIC_ enum ndr_err_code ndr_push_trustAuthInOutBlob(struct ndr_push *ndr, int ndr_flags, const struct trustAuthInOutBlob *r)
|
---|
90 | {
|
---|
91 | if (ndr_flags & NDR_SCALARS) {
|
---|
92 | NDR_CHECK(ndr_push_align(ndr, 4));
|
---|
93 | NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
|
---|
94 | NDR_CHECK(ndr_push_relative_ptr1(ndr, r->current));
|
---|
95 | NDR_CHECK(ndr_push_relative_ptr1(ndr, r->previous));
|
---|
96 | }
|
---|
97 | if (ndr_flags & NDR_BUFFERS) {
|
---|
98 | if (r->current) {
|
---|
99 | NDR_CHECK(ndr_push_relative_ptr2_start(ndr, r->current));
|
---|
100 | NDR_CHECK(ndr_push_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->current));
|
---|
101 | NDR_CHECK(ndr_push_relative_ptr2_end(ndr, r->current));
|
---|
102 | }
|
---|
103 | if (r->previous) {
|
---|
104 | NDR_CHECK(ndr_push_relative_ptr2_start(ndr, r->previous));
|
---|
105 | NDR_CHECK(ndr_push_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->previous));
|
---|
106 | NDR_CHECK(ndr_push_relative_ptr2_end(ndr, r->previous));
|
---|
107 | }
|
---|
108 | }
|
---|
109 | return NDR_ERR_SUCCESS;
|
---|
110 | }
|
---|
111 |
|
---|
112 | _PUBLIC_ enum ndr_err_code ndr_pull_trustAuthInOutBlob(struct ndr_pull *ndr, int ndr_flags, struct trustAuthInOutBlob *r)
|
---|
113 | {
|
---|
114 | uint32_t _ptr_current;
|
---|
115 | TALLOC_CTX *_mem_save_current_0;
|
---|
116 | uint32_t _ptr_previous;
|
---|
117 | TALLOC_CTX *_mem_save_previous_0;
|
---|
118 | if (ndr_flags & NDR_SCALARS) {
|
---|
119 | NDR_CHECK(ndr_pull_align(ndr, 4));
|
---|
120 | NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
|
---|
121 | NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_current));
|
---|
122 | if (_ptr_current) {
|
---|
123 | NDR_PULL_ALLOC(ndr, r->current);
|
---|
124 | NDR_CHECK(ndr_pull_relative_ptr1(ndr, r->current, _ptr_current));
|
---|
125 | } else {
|
---|
126 | r->current = NULL;
|
---|
127 | }
|
---|
128 | NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_previous));
|
---|
129 | if (_ptr_previous) {
|
---|
130 | NDR_PULL_ALLOC(ndr, r->previous);
|
---|
131 | NDR_CHECK(ndr_pull_relative_ptr1(ndr, r->previous, _ptr_previous));
|
---|
132 | } else {
|
---|
133 | r->previous = NULL;
|
---|
134 | }
|
---|
135 | }
|
---|
136 | if (ndr_flags & NDR_BUFFERS) {
|
---|
137 | if (r->current) {
|
---|
138 | uint32_t _relative_save_offset;
|
---|
139 | _relative_save_offset = ndr->offset;
|
---|
140 | NDR_CHECK(ndr_pull_relative_ptr2(ndr, r->current));
|
---|
141 | _mem_save_current_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
---|
142 | NDR_PULL_SET_MEM_CTX(ndr, r->current, 0);
|
---|
143 | NDR_CHECK(ndr_pull_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->current));
|
---|
144 | NDR_PULL_SET_MEM_CTX(ndr, _mem_save_current_0, 0);
|
---|
145 | ndr->offset = _relative_save_offset;
|
---|
146 | }
|
---|
147 | if (r->previous) {
|
---|
148 | uint32_t _relative_save_offset;
|
---|
149 | _relative_save_offset = ndr->offset;
|
---|
150 | NDR_CHECK(ndr_pull_relative_ptr2(ndr, r->previous));
|
---|
151 | _mem_save_previous_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
---|
152 | NDR_PULL_SET_MEM_CTX(ndr, r->previous, 0);
|
---|
153 | NDR_CHECK(ndr_pull_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->previous));
|
---|
154 | NDR_PULL_SET_MEM_CTX(ndr, _mem_save_previous_0, 0);
|
---|
155 | ndr->offset = _relative_save_offset;
|
---|
156 | }
|
---|
157 | }
|
---|
158 | return NDR_ERR_SUCCESS;
|
---|
159 | }
|
---|
160 |
|
---|
161 | _PUBLIC_ void ndr_print_trustAuthInOutBlob(struct ndr_print *ndr, const char *name, const struct trustAuthInOutBlob *r)
|
---|
162 | {
|
---|
163 | ndr_print_struct(ndr, name, "trustAuthInOutBlob");
|
---|
164 | ndr->depth++;
|
---|
165 | ndr_print_uint32(ndr, "count", r->count);
|
---|
166 | ndr_print_ptr(ndr, "current", r->current);
|
---|
167 | ndr->depth++;
|
---|
168 | if (r->current) {
|
---|
169 | ndr_print_AuthenticationInformationArray_with_count(ndr, "current", r->count, r->current);
|
---|
170 | }
|
---|
171 | ndr->depth--;
|
---|
172 | ndr_print_ptr(ndr, "previous", r->previous);
|
---|
173 | ndr->depth++;
|
---|
174 | if (r->previous) {
|
---|
175 | ndr_print_AuthenticationInformationArray_with_count(ndr, "previous", r->count, r->previous);
|
---|
176 | }
|
---|
177 | ndr->depth--;
|
---|
178 | ndr->depth--;
|
---|
179 | }
|
---|
180 |
|
---|
181 | _PUBLIC_ enum ndr_err_code ndr_pull_trustDomainPasswords(struct ndr_pull *ndr, int ndr_flags, struct trustDomainPasswords *r)
|
---|
182 | {
|
---|
183 | if (ndr_flags & NDR_SCALARS) {
|
---|
184 | uint32_t offset;
|
---|
185 | NDR_PULL_ALIGN(ndr, 4);
|
---|
186 | NDR_PULL_NEED_BYTES(ndr, 8);
|
---|
187 |
|
---|
188 | offset = ndr->offset;
|
---|
189 | ndr->offset = ndr->data_size - 8;
|
---|
190 |
|
---|
191 | NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->outgoing_size));
|
---|
192 | NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->incoming_size));
|
---|
193 |
|
---|
194 | ndr->offset = offset;
|
---|
195 | NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->confounder, 512));
|
---|
196 | {
|
---|
197 | struct ndr_pull *_ndr_outgoing;
|
---|
198 | NDR_CHECK(ndr_pull_subcontext_start(ndr, &_ndr_outgoing, 0, r->outgoing_size));
|
---|
199 | NDR_CHECK(ndr_pull_trustCurrentPasswords(_ndr_outgoing, NDR_SCALARS|NDR_BUFFERS, &r->outgoing));
|
---|
200 | NDR_CHECK(ndr_pull_subcontext_end(ndr, _ndr_outgoing, 0, r->outgoing_size));
|
---|
201 | }
|
---|
202 | {
|
---|
203 | struct ndr_pull *_ndr_incoming;
|
---|
204 | NDR_CHECK(ndr_pull_subcontext_start(ndr, &_ndr_incoming, 0, r->incoming_size));
|
---|
205 | NDR_CHECK(ndr_pull_trustCurrentPasswords(_ndr_incoming, NDR_SCALARS|NDR_BUFFERS, &r->incoming));
|
---|
206 | NDR_CHECK(ndr_pull_subcontext_end(ndr, _ndr_incoming, 0, r->incoming_size));
|
---|
207 | }
|
---|
208 | NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->outgoing_size));
|
---|
209 | NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->incoming_size));
|
---|
210 | }
|
---|
211 | if (ndr_flags & NDR_BUFFERS) {
|
---|
212 | }
|
---|
213 | return NDR_ERR_SUCCESS;
|
---|
214 | }
|
---|
215 |
|
---|