summaryrefslogtreecommitdiff
path: root/usr/src/cmd/smbsrv/test-msgbuf/test_msgbuf.c
blob: b58bd54b83b0fa066b800b84ee997ab9bdfe908f (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
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
/*
 * This file and its contents are supplied under the terms of the
 * Common Development and Distribution License ("CDDL"), version 1.0.
 * You may only use this file in accordance with the terms of version
 * 1.0 of the CDDL.
 *
 * A full copy of the text of the CDDL should have accompanied this
 * source.  A copy of the CDDL is also available via the Internet at
 * http://www.illumos.org/license/CDDL.
 */

/*
 * Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
 */

/*
 * Test putting/getting unicode strings in mbchains.
 */

#include <sys/types.h>
#include <sys/debug.h>
#include <sys/varargs.h>
#include <smbsrv/smb_kproto.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>

#include "test_defs.h"

static char mbsa[] = "A\xef\xbc\xa1.";		// A fwA . (5)
static char mbsp[] = "P\xf0\x9f\x92\xa9.";	// P poop . (6)
static smb_wchar_t wcsa[] = { 'A', 0xff21, '.', 0 };	// (3)
static smb_wchar_t wcsp[] = { 'P', 0xd83d, 0xdca9, '.', 0 }; // (4)

/*
 * Put ASCII string with NULL
 */
static void
msg_put_a0()
{
	uint8_t wire[] = { 'o', 'n', 'e', 0, 42, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "sw", "one", 42);
	if (rc != 6) {
		printf("Fail: msg_put_a0 encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 6)) {
		printf("Fail: msg_put_a0 cmp:\n");
		hexdump((uchar_t *)temp, 6);
		return;
	}

	printf("Pass: msg_put_a0\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Put ASCII string, no NULL
 */
static void
msg_put_a1()
{
	uint8_t wire[] = { 'o', 'n', 'e', '.', 42, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "4sw", "one.", 42);
	if (rc != 6) {
		printf("Fail: msg_put_a1 encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 6)) {
		printf("Fail: msg_put_a1 cmp:\n");
		hexdump((uchar_t *)temp, 6);
		return;
	}

	printf("Pass: msg_put_a1\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_apad()
{
	uint8_t wire[] = { 'o', 'n', 'e', 0, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	/* Encode with wire length > strlen */
	rc = smb_msgbuf_encode(&mb, "5s", "one");
	if (rc != 5) {
		printf("Fail: msg_put_apad encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 5)) {
		printf("Fail: msg_put_apad cmp:\n");
		hexdump((uchar_t *)temp, 5);
		return;
	}

	printf("Pass: msg_put_apad\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_atrunc()
{
	uint8_t wire[] = { 'o', 'n', 'e', 't', };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	/* Encode with wire length < strlen */
	rc = smb_msgbuf_encode(&mb, "4s", "onetwo");
	/* Trunc should put exactly 4 */
	if (rc != 4) {
		printf("Fail: msg_put_atrunc encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 4)) {
		printf("Fail: msg_put_atrunc cmp:\n");
		hexdump((uchar_t *)temp, 4);
		return;
	}

	printf("Pass: msg_put_atrunc\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Put unicode string with NULL
 */
static void
msg_put_u0()
{
	uint16_t wire[] = { 'o', 'n', 'e', 0, 42, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "Uw", "one", 42);
	if (rc != 10) {
		printf("Fail: msg_put_u0 encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 10)) {
		printf("Fail: msg_put_u0 cmp:\n");
		hexdump((uchar_t *)temp, 10);
		return;
	}

	printf("Pass: msg_put_u0\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Put unicode string, no NULL
 */
static void
msg_put_u1()
{
	uint16_t wire[] = { 'o', 'n', 'e', '.', 42, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "8Uw", "one.", 42);
	if (rc != 10) {
		printf("Fail: msg_put_u1 encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 10)) {
		printf("Fail: msg_put_u1 cmp:\n");
		hexdump((uchar_t *)temp, 10);
		return;
	}

	printf("Pass: msg_put_u1\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_u3()
{
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "U", mbsa);
	if (rc != 8) {
		printf("Fail: msg_put_u3 encode\n");
		goto out;
	}

	if (memcmp(temp, wcsa, 8)) {
		printf("Fail: msg_put_u3 cmp:\n");
		hexdump((uchar_t *)temp, 8);
		return;
	}

	printf("Pass: msg_put_u3\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_u4()
{
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	rc = smb_msgbuf_encode(&mb, "U", mbsp);
	if (rc != 10) {
		printf("Fail: msg_put_u4 encode\n");
		goto out;
	}

	if (memcmp(temp, wcsp, 10)) {
		printf("Fail: msg_put_u4 cmp:\n");
		hexdump((uchar_t *)temp, 10);
		return;
	}

	printf("Pass: msg_put_u4\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_upad()
{
	uint16_t wire[] = { 'o', 'n', 'e', 0, 0 };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	/* Encode with wire length > strlen */
	rc = smb_msgbuf_encode(&mb, "10U", "one");
	if (rc != 10) {
		printf("Fail: msg_put_upad encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 10)) {
		printf("Fail: msg_put_upad cmp:\n");
		hexdump((uchar_t *)temp, 10);
		return;
	}

	printf("Pass: msg_put_upad\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_put_utrunc()
{
	uint16_t wire[] = { 'o', 'n', 'e', 't' };
	uint8_t temp[32];
	smb_msgbuf_t mb;
	int mbflags = 0;
	int rc;

	smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags);

	/* Encode with wire length < strlen */
	rc = smb_msgbuf_encode(&mb, "8U", "onetwo");
	/* Trunc should put exactly 8 */
	if (rc != 8) {
		printf("Fail: msg_put_utrunc encode\n");
		goto out;
	}

	if (memcmp(temp, wire, 8)) {
		printf("Fail: msg_put_utrunc cmp:\n");
		hexdump((uchar_t *)temp, 8);
		return;
	}

	printf("Pass: msg_put_utrunc\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Parse an ascii string.
 */
static void
msg_get_a0()
{
	uint8_t wire[] = { 'o', 'n', 'e', 0, 42, 0 };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;
	uint16_t w;

	smb_msgbuf_init(&mb, wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "sw", &s, &w);
	if (rc != 6) {
		printf("Fail: msg_get_a0 decode\n");
		goto out;
	}
	/*
	 * Decode a word after the string to make sure we
	 * end up positioned correctly after the string.
	 */
	if (w != 42) {
		printf("Fail: msg_get_a0 w=%d\n", w);
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_a0 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_a0\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Parse an ascii string, no NULL
 */
static void
msg_get_a1()
{
	uint8_t wire[] = { 'o', 'n', 'e', '.', 42, 0 };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;
	uint16_t w;

	smb_msgbuf_init(&mb, wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "3s.w", &s, &w);
	if (rc != 6) {
		printf("Fail: msg_get_a1 decode\n");
		goto out;
	}
	/*
	 * Decode a word after the string to make sure we
	 * end up positioned correctly after the string.
	 */
	if (w != 42) {
		printf("Fail: msg_get_a1 w=%d\n", w);
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_a1 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_a1\n");

out:
	smb_msgbuf_term(&mb);
}

/* parse exactly to end of data */
static void
msg_get_a2()
{
	uint8_t wire[] = { 'o', 'n', 'e' };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;

	smb_msgbuf_init(&mb, wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "3s", &s);
	if (rc != 3) {
		printf("Fail: msg_get_a2 decode\n");
		goto out;
	}
	if (mb.scan != mb.end) {
		printf("Fail: msg_get_a2 wrong pos\n");
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_a2 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_a2\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Parse a unicode string.
 */
static void
msg_get_u0()
{
	uint16_t wire[] = { 'o', 'n', 'e', 0, 42, 0 };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;
	uint16_t w;

	smb_msgbuf_init(&mb, (uint8_t *)wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "Uw", &s, &w);
	if (rc != 10) {
		printf("Fail: msg_get_u0 decode\n");
		goto out;
	}
	/*
	 * Decode a word after the string to make sure we
	 * end up positioned correctly after the string.
	 */
	if (w != 42) {
		printf("Fail: msg_get_u0 w=%d\n", w);
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_u0 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_u0\n");

out:
	smb_msgbuf_term(&mb);
}

/*
 * Parse a string that's NOT null terminated.
 */
static void
msg_get_u1()
{
	uint16_t wire[] = { 'o', 'n', 'e', '.', 42, 0 };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;
	uint16_t w;

	smb_msgbuf_init(&mb, (uint8_t *)wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "6U..w", &s, &w);
	if (rc != 10) {
		printf("Fail: msg_get_u1 decode\n");
		goto out;
	}
	/*
	 * Decode a word after the string to make sure we
	 * end up positioned correctly after the string.
	 */
	if (w != 42) {
		printf("Fail: msg_get_u1 w=%d\n", w);
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_u1 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_u1\n");

out:
	smb_msgbuf_term(&mb);
}

/* parse exactly to end of data */
static void
msg_get_u2()
{
	uint16_t wire[] = { 'o', 'n', 'e' };
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;

	smb_msgbuf_init(&mb, (uint8_t *)wire, sizeof (wire), mbflags);

	rc = smb_msgbuf_decode(&mb, "6U", &s);
	if (rc != 6) {
		printf("Fail: msg_get_u2 decode\n");
		goto out;
	}
	if (mb.scan != mb.end) {
		printf("Fail: msg_get_u2 wrong pos\n");
		return;
	}
	if (strcmp(s, "one") != 0) {
		printf("Fail: msg_get_u2 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_u2\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_get_u3()
{
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;

	smb_msgbuf_init(&mb, (uint8_t *)wcsa, sizeof (wcsa), mbflags);

	rc = smb_msgbuf_decode(&mb, "#U", sizeof (wcsa), &s);
	if (rc != 8) {
		printf("Fail: msg_get_u3 decode\n");
		goto out;
	}
	if (strcmp(s, mbsa) != 0) {
		printf("Fail: msg_get_u3 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_u3\n");

out:
	smb_msgbuf_term(&mb);
}

static void
msg_get_u4()
{
	smb_msgbuf_t mb;
	int mbflags = 0;
	char *s;
	int rc;

	smb_msgbuf_init(&mb, (uint8_t *)wcsp, sizeof (wcsp), mbflags);

	rc = smb_msgbuf_decode(&mb, "#U", sizeof (wcsp), &s);
	if (rc != 10) {
		printf("Fail: msg_get_u4 decode\n");
		goto out;
	}
	if (strcmp(s, mbsp) != 0) {
		printf("Fail: msg_get_u4 cmp: <%s>\n", s);
		return;
	}

	printf("Pass: msg_get_u4\n");

out:
	smb_msgbuf_term(&mb);
}

void
test_msgbuf()
{

	msg_put_a0();
	msg_put_a1();
	msg_put_apad();
	msg_put_atrunc();

	msg_put_u0();
	msg_put_u1();
	msg_put_u3();
	msg_put_u4();
	msg_put_upad();
	msg_put_utrunc();

	msg_get_a0();
	msg_get_a1();
	msg_get_a2();
	msg_get_u0();
	msg_get_u1();
	msg_get_u2();
	msg_get_u3();
	msg_get_u4();

}