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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
* Copyright 2013 Nexenta Systems, Inc. All rights reserved.
*/
#include <assert.h>
#include <strings.h>
#include <sys/param.h>
#include <libmlrpc.h>
#ifdef _BIG_ENDIAN
static const int ndr_native_byte_order = NDR_REPLAB_INTG_BIG_ENDIAN;
#else
static const int ndr_native_byte_order = NDR_REPLAB_INTG_LITTLE_ENDIAN;
#endif
static int ndr_decode_hdr_common(ndr_stream_t *, ndr_common_header_t *);
static int ndr_decode_pac_hdr(ndr_stream_t *, ndr_pac_hdr_t *);
static int
ndr_encode_decode_common(ndr_stream_t *nds, unsigned opnum,
ndr_typeinfo_t *ti, void *datum)
{
int rc;
/*
* Perform the (un)marshalling
*/
if (ndo_operation(nds, ti, opnum, datum))
return (NDR_DRC_OK);
switch (nds->error) {
case NDR_ERR_MALLOC_FAILED:
rc = NDR_DRC_FAULT_OUT_OF_MEMORY;
break;
case NDR_ERR_SWITCH_VALUE_INVALID:
rc = NDR_DRC_FAULT_PARAM_0_INVALID;
break;
case NDR_ERR_UNDERFLOW:
rc = NDR_DRC_FAULT_RECEIVED_RUNT;
break;
case NDR_ERR_GROW_FAILED:
rc = NDR_DRC_FAULT_ENCODE_TOO_BIG;
break;
default:
if (nds->m_op == NDR_M_OP_MARSHALL)
rc = NDR_DRC_FAULT_ENCODE_FAILED;
else
rc = NDR_DRC_FAULT_DECODE_FAILED;
break;
}
return (rc);
}
ndr_buf_t *
ndr_buf_init(ndr_typeinfo_t *ti)
{
ndr_buf_t *nbuf;
if ((nbuf = calloc(1, sizeof (ndr_buf_t))) == NULL)
return (NULL);
if ((nbuf->nb_heap = ndr_heap_create()) == NULL) {
free(nbuf);
return (NULL);
}
nbuf->nb_ti = ti;
nbuf->nb_magic = NDR_BUF_MAGIC;
return (nbuf);
}
void
ndr_buf_fini(ndr_buf_t *nbuf)
{
assert(nbuf->nb_magic == NDR_BUF_MAGIC);
nds_destruct(&nbuf->nb_nds);
ndr_heap_destroy(nbuf->nb_heap);
nbuf->nb_magic = 0;
free(nbuf);
}
/*
* Decode an NDR encoded buffer. The buffer is expected to contain
* a single fragment packet with a valid PDU header followed by NDR
* encoded data. The structure to which result points should be
* of the appropriate type to hold the decoded output. For example:
*
* pac_info_t info;
*
* if ((nbuf = ndr_buf_init(&TYPEINFO(ndr_pac)) != NULL) {
* rc = ndr_decode_buf(nbuf, opnum, data, datalen, &info);
* ...
* ndr_buf_fini(nbuf);
* }
*/
int
ndr_buf_decode(ndr_buf_t *nbuf, unsigned hdr_type, unsigned opnum,
const char *data, size_t datalen, void *result)
{
ndr_common_header_t hdr;
ndr_pac_hdr_t pac_hdr;
unsigned pdu_size_hint;
int rc;
assert(nbuf->nb_magic == NDR_BUF_MAGIC);
assert(nbuf->nb_heap != NULL);
assert(nbuf->nb_ti != NULL);
if (datalen < NDR_PDU_SIZE_HINT_DEFAULT)
pdu_size_hint = NDR_PDU_SIZE_HINT_DEFAULT;
else
pdu_size_hint = datalen;
rc = nds_initialize(&nbuf->nb_nds, pdu_size_hint, NDR_MODE_BUF_DECODE,
nbuf->nb_heap);
if (NDR_DRC_IS_FAULT(rc))
return (rc);
bcopy(data, nbuf->nb_nds.pdu_base_addr, datalen);
switch (hdr_type) {
case NDR_PTYPE_COMMON:
rc = ndr_decode_hdr_common(&nbuf->nb_nds, &hdr);
if (NDR_DRC_IS_FAULT(rc))
return (rc);
if (!NDR_IS_SINGLE_FRAG(hdr.pfc_flags))
return (NDR_DRC_FAULT_DECODE_FAILED);
break;
case NDR_PTYPE_PAC:
rc = ndr_decode_pac_hdr(&nbuf->nb_nds, &pac_hdr);
if (NDR_DRC_IS_FAULT(rc))
return (rc);
if (pac_hdr.common_hdr.hdrlen != sizeof (ndr_serialtype1_hdr_t))
return (NDR_DRC_FAULT_DECODE_FAILED);
break;
default:
return (NDR_ERR_UNIMPLEMENTED);
}
rc = ndr_encode_decode_common(&nbuf->nb_nds, opnum, nbuf->nb_ti,
result);
return (rc);
}
/*
* Use the receive stream to unmarshall data (NDR_MODE_CALL_RECV).
*/
int
ndr_decode_call(ndr_xa_t *mxa, void *params)
{
ndr_stream_t *nds = &mxa->recv_nds;
int rc;
if (!NDR_MODE_MATCH(nds, NDR_MODE_CALL_RECV))
return (NDR_DRC_FAULT_MODE_MISMATCH);
rc = ndr_encode_decode_common(nds, mxa->opnum,
mxa->binding->service->interface_ti, params);
return (rc + NDR_PTYPE_REQUEST);
}
/*
* Use the send stream to marshall data (NDR_MODE_RETURN_SEND).
*/
int
ndr_encode_return(ndr_xa_t *mxa, void *params)
{
ndr_stream_t *nds = &mxa->send_nds;
int rc;
if (!NDR_MODE_MATCH(nds, NDR_MODE_RETURN_SEND))
return (NDR_DRC_FAULT_MODE_MISMATCH);
rc = ndr_encode_decode_common(nds, mxa->opnum,
mxa->binding->service->interface_ti, params);
return (rc + NDR_PTYPE_RESPONSE);
}
/*
* Use the send stream to marshall data (NDR_MODE_CALL_SEND).
*/
int
ndr_encode_call(ndr_xa_t *mxa, void *params)
{
ndr_stream_t *nds = &mxa->send_nds;
int rc;
if (!NDR_MODE_MATCH(nds, NDR_MODE_CALL_SEND))
return (NDR_DRC_FAULT_MODE_MISMATCH);
rc = ndr_encode_decode_common(nds, mxa->opnum,
mxa->binding->service->interface_ti, params);
return (rc + NDR_PTYPE_REQUEST);
}
/*
* Use the receive stream to unmarshall data (NDR_MODE_RETURN_RECV).
*/
int
ndr_decode_return(ndr_xa_t *mxa, void *params)
{
ndr_stream_t *nds = &mxa->recv_nds;
int rc;
if (!NDR_MODE_MATCH(nds, NDR_MODE_RETURN_RECV))
return (NDR_DRC_FAULT_MODE_MISMATCH);
rc = ndr_encode_decode_common(nds, mxa->opnum,
mxa->binding->service->interface_ti, params);
return (rc + NDR_PTYPE_RESPONSE);
}
int
ndr_decode_pdu_hdr(ndr_xa_t *mxa)
{
ndr_common_header_t *hdr = &mxa->recv_hdr.common_hdr;
ndr_stream_t *nds = &mxa->recv_nds;
int rc;
rc = ndr_decode_hdr_common(nds, hdr);
if (NDR_DRC_IS_FAULT(rc))
return (rc);
/*
* Verify the protocol version.
*/
if ((hdr->rpc_vers != 5) || (hdr->rpc_vers_minor != 0))
return (NDR_DRC_FAULT_RPCHDR_DECODE_FAILED);
mxa->ptype = hdr->ptype;
return (NDR_DRC_OK);
}
static int
ndr_decode_hdr_common(ndr_stream_t *nds, ndr_common_header_t *hdr)
{
int ptype;
int rc;
int charset;
int byte_order;
if (nds->m_op != NDR_M_OP_UNMARSHALL)
return (NDR_DRC_FAULT_RPCHDR_MODE_MISMATCH);
/*
* All PDU headers are at least this big
*/
rc = NDS_GROW_PDU(nds, sizeof (ndr_common_header_t), 0);
if (!rc)
return (NDR_DRC_FAULT_RPCHDR_RECEIVED_RUNT);
/*
* Peek at the first eight bytes to figure out what we're doing.
*/
rc = NDS_GET_PDU(nds, 0, 8, (char *)hdr, 0, 0);
if (!rc)
return (NDR_DRC_FAULT_RPCHDR_DECODE_FAILED);
/*
* Check for ASCII as the character set. This is an ASCII
* versus EBCDIC option and has nothing to do with Unicode.
*/
charset = hdr->packed_drep.intg_char_rep & NDR_REPLAB_CHAR_MASK;
if (charset != NDR_REPLAB_CHAR_ASCII)
return (NDR_DRC_FAULT_RPCHDR_DECODE_FAILED);
/*
* Set the byte swap flag if the PDU byte-order
* is different from the local byte-order.
*/
byte_order = hdr->packed_drep.intg_char_rep & NDR_REPLAB_INTG_MASK;
nds->swap = (byte_order != ndr_native_byte_order) ? 1 : 0;
ptype = hdr->ptype;
if (ptype == NDR_PTYPE_REQUEST &&
(hdr->pfc_flags & NDR_PFC_OBJECT_UUID) != 0) {
ptype = NDR_PTYPE_REQUEST_WITH; /* fake for sizing */
}
rc = ndr_encode_decode_common(nds, ptype, &TYPEINFO(ndr_hdr), hdr);
return (NDR_DRC_PTYPE_RPCHDR(rc));
}
static int
ndr_decode_pac_hdr(ndr_stream_t *nds, ndr_pac_hdr_t *hdr)
{
int rc;
if (nds->m_op != NDR_M_OP_UNMARSHALL)
return (NDR_DRC_FAULT_RPCHDR_MODE_MISMATCH);
/*
* All PDU headers are at least this big
*/
rc = NDS_GROW_PDU(nds, sizeof (ndr_pac_hdr_t), 0);
if (!rc)
return (NDR_DRC_FAULT_RPCHDR_RECEIVED_RUNT);
/*
* Peek at the first eight bytes to figure out what we're doing.
*/
rc = NDS_GET_PDU(nds, 0, 8, (char *)hdr, 0, 0);
if (!rc)
return (NDR_DRC_FAULT_RPCHDR_DECODE_FAILED);
/* Must be set to 1 to indicate type serialization version 1. */
if (hdr->common_hdr.version != 1)
return (NDR_DRC_FAULT_RPCHDR_DECODE_FAILED);
/*
* Set the byte swap flag if the PDU byte-order
* is different from the local byte-order.
*/
nds->swap =
(hdr->common_hdr.endianness != ndr_native_byte_order) ? 1 : 0;
rc = ndr_encode_decode_common(nds, NDR_PTYPE_PAC,
&TYPEINFO(ndr_hdr), hdr);
return (NDR_DRC_PTYPE_RPCHDR(rc));
}
/*
* Decode an RPC fragment header. Use ndr_decode_pdu_hdr() to process
* the first fragment header then this function to process additional
* fragment headers.
*/
void
ndr_decode_frag_hdr(ndr_stream_t *nds, ndr_common_header_t *hdr)
{
ndr_common_header_t *tmp;
uint8_t *pdu;
int byte_order;
pdu = (uint8_t *)nds->pdu_base_offset + nds->pdu_scan_offset;
bcopy(pdu, hdr, NDR_RSP_HDR_SIZE);
/*
* Swap non-byte fields if the PDU byte-order
* is different from the local byte-order.
*/
byte_order = hdr->packed_drep.intg_char_rep & NDR_REPLAB_INTG_MASK;
if (byte_order != ndr_native_byte_order) {
/*LINTED E_BAD_PTR_CAST_ALIGN*/
tmp = (ndr_common_header_t *)pdu;
nds_bswap(&tmp->frag_length, &hdr->frag_length,
sizeof (WORD));
nds_bswap(&tmp->auth_length, &hdr->auth_length,
sizeof (WORD));
nds_bswap(&tmp->call_id, &hdr->call_id, sizeof (DWORD));
}
}
/*
* Remove an RPC fragment header from the received data stream.
*
* NDR stream on entry:
*
* |<--- frag --->|
* +-----+--------+-----+--------+-----+---------+-----+
* | hdr | data | hdr | data | hdr | data | ... |
* +-----+--------+-----+--------+-----+---------+-----+
* <----
*
* NDR stream on return:
*
* +-----+----------------+-----+---------+-----+
* | hdr | data | hdr | data | ... |
* +-----+----------------+-----+---------+-----+
*/
void
ndr_remove_frag_hdr(ndr_stream_t *nds)
{
char *hdr;
char *data;
int nbytes;
hdr = (char *)nds->pdu_base_offset + nds->pdu_scan_offset;
data = hdr + NDR_RSP_HDR_SIZE;
nbytes = nds->pdu_size - nds->pdu_scan_offset - NDR_RSP_HDR_SIZE;
bcopy(data, hdr, nbytes);
nds->pdu_size -= NDR_RSP_HDR_SIZE;
}
void
ndr_show_hdr(ndr_common_header_t *hdr)
{
char *fragtype;
if (hdr == NULL) {
ndo_printf(NULL, NULL, "ndr hdr: <null>");
return;
}
if (NDR_IS_SINGLE_FRAG(hdr->pfc_flags))
fragtype = "single";
else if (NDR_IS_FIRST_FRAG(hdr->pfc_flags))
fragtype = "first";
else if (NDR_IS_LAST_FRAG(hdr->pfc_flags))
fragtype = "last";
else
fragtype = "intermediate";
ndo_printf(NULL, NULL,
"ndr hdr: %d.%d ptype=%d, %s frag (flags=0x%08x) len=%d",
hdr->rpc_vers, hdr->rpc_vers_minor, hdr->ptype,
fragtype, hdr->pfc_flags, hdr->frag_length);
}
int
ndr_encode_pdu_hdr(ndr_xa_t *mxa)
{
ndr_common_header_t *hdr = &mxa->send_hdr.common_hdr;
ndr_stream_t *nds = &mxa->send_nds;
int ptype;
int rc;
if (nds->m_op != NDR_M_OP_MARSHALL)
return (NDR_DRC_FAULT_RPCHDR_MODE_MISMATCH);
ptype = hdr->ptype;
if (ptype == NDR_PTYPE_REQUEST &&
(hdr->pfc_flags & NDR_PFC_OBJECT_UUID) != 0) {
ptype = NDR_PTYPE_REQUEST_WITH; /* fake for sizing */
}
rc = ndr_encode_decode_common(nds, ptype, &TYPEINFO(ndr_hdr), hdr);
return (NDR_DRC_PTYPE_RPCHDR(rc));
}
/*
* This is a hand-coded derivative of the automatically generated
* (un)marshalling routine for bind_ack headers. bind_ack headers
* have an interior conformant array, which is inconsistent with
* IDL/NDR rules.
*/
extern struct ndr_typeinfo ndt__uchar;
extern struct ndr_typeinfo ndt__ushort;
extern struct ndr_typeinfo ndt__ulong;
int ndr__ndr_bind_ack_hdr(ndr_ref_t *encl_ref);
ndr_typeinfo_t ndt__ndr_bind_ack_hdr = {
1, /* NDR version */
3, /* alignment */
NDR_F_STRUCT, /* flags */
ndr__ndr_bind_ack_hdr, /* ndr_func */
68, /* pdu_size_fixed_part */
0, /* pdu_size_variable_part */
68, /* c_size_fixed_part */
0, /* c_size_variable_part */
};
/*
* [_no_reorder]
*/
int
ndr__ndr_bind_ack_hdr(ndr_ref_t *encl_ref)
{
ndr_stream_t *nds = encl_ref->stream;
struct ndr_bind_ack_hdr *val = /*LINTED E_BAD_PTR_CAST_ALIGN*/
(struct ndr_bind_ack_hdr *)encl_ref->datum;
ndr_ref_t myref;
unsigned long offset;
bzero(&myref, sizeof (myref));
myref.enclosing = encl_ref;
myref.stream = encl_ref->stream;
myref.packed_alignment = 0;
/* do all members in order */
NDR_MEMBER(_ndr_common_header, common_hdr, 0UL);
NDR_MEMBER(_ushort, max_xmit_frag, 16UL);
NDR_MEMBER(_ushort, max_recv_frag, 18UL);
NDR_MEMBER(_ulong, assoc_group_id, 20UL);
/* port any is the conformant culprit */
offset = 24UL;
switch (nds->m_op) {
case NDR_M_OP_MARSHALL:
val->sec_addr.length =
strlen((char *)val->sec_addr.port_spec) + 1;
break;
case NDR_M_OP_UNMARSHALL:
break;
default:
NDR_SET_ERROR(encl_ref, NDR_ERR_M_OP_INVALID);
return (0);
}
NDR_MEMBER(_ushort, sec_addr.length, offset);
NDR_MEMBER_ARR_WITH_DIMENSION(_uchar, sec_addr.port_spec,
offset+2UL, val->sec_addr.length);
offset += 2;
offset += val->sec_addr.length;
offset += NDR_ALIGN4(offset);
NDR_MEMBER(_ndr_p_result_list, p_result_list, offset);
return (1);
}
/*
* Assume a single presentation context element in the result list.
*/
unsigned
ndr_bind_ack_hdr_size(ndr_xa_t *mxa)
{
ndr_bind_ack_hdr_t *bahdr = &mxa->send_hdr.bind_ack_hdr;
unsigned offset;
unsigned length;
/* port any is the conformant culprit */
offset = 24UL;
length = strlen((char *)bahdr->sec_addr.port_spec) + 1;
offset += 2;
offset += length;
offset += NDR_ALIGN4(offset);
offset += sizeof (ndr_p_result_list_t);
return (offset);
}
/*
* This is a hand-coded derivative of the automatically generated
* (un)marshalling routine for alter_context_rsp headers.
* Alter context response headers have an interior conformant array,
* which is inconsistent with IDL/NDR rules.
*/
int ndr__ndr_alter_context_rsp_hdr(ndr_ref_t *encl_ref);
ndr_typeinfo_t ndt__ndr_alter_context_rsp_hdr = {
1, /* NDR version */
3, /* alignment */
NDR_F_STRUCT, /* flags */
ndr__ndr_alter_context_rsp_hdr, /* ndr_func */
56, /* pdu_size_fixed_part */
0, /* pdu_size_variable_part */
56, /* c_size_fixed_part */
0, /* c_size_variable_part */
};
/*
* [_no_reorder]
*/
int
ndr__ndr_alter_context_rsp_hdr(ndr_ref_t *encl_ref)
{
ndr_stream_t *nds = encl_ref->stream;
ndr_alter_context_rsp_hdr_t *val = /*LINTED E_BAD_PTR_CAST_ALIGN*/
(ndr_alter_context_rsp_hdr_t *)encl_ref->datum;
ndr_ref_t myref;
unsigned long offset;
bzero(&myref, sizeof (myref));
myref.enclosing = encl_ref;
myref.stream = encl_ref->stream;
myref.packed_alignment = 0;
/* do all members in order */
NDR_MEMBER(_ndr_common_header, common_hdr, 0UL);
NDR_MEMBER(_ushort, max_xmit_frag, 16UL);
NDR_MEMBER(_ushort, max_recv_frag, 18UL);
NDR_MEMBER(_ulong, assoc_group_id, 20UL);
offset = 24UL; /* offset of sec_addr */
switch (nds->m_op) {
case NDR_M_OP_MARSHALL:
val->sec_addr.length = 0;
break;
case NDR_M_OP_UNMARSHALL:
break;
default:
NDR_SET_ERROR(encl_ref, NDR_ERR_M_OP_INVALID);
return (0);
}
NDR_MEMBER(_ushort, sec_addr.length, offset);
NDR_MEMBER_ARR_WITH_DIMENSION(_uchar, sec_addr.port_spec,
offset+2UL, val->sec_addr.length);
offset += 2; /* sizeof (sec_addr.length) */
offset += NDR_ALIGN4(offset);
NDR_MEMBER(_ndr_p_result_list, p_result_list, offset);
return (1);
}
/*
* Assume a single presentation context element in the result list.
*/
unsigned
ndr_alter_context_rsp_hdr_size(void)
{
unsigned offset;
offset = 24UL; /* offset of sec_addr */
offset += 2; /* sizeof (sec_addr.length) */
offset += NDR_ALIGN4(offset);
offset += sizeof (ndr_p_result_list_t);
return (offset);
}
|