summaryrefslogtreecommitdiffstats
path: root/source/include/rpc_srvsvc.h
blob: 62acce580506c9a5bb628d00c9920570dc5bd9f3 (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
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
/*
   Unix SMB/CIFS implementation.
   SMB parameters and setup
   Copyright (C) Andrew Tridgell 1992-1997
   Copyright (C) Luke Kenneth Casson Leighton 1996-1997
   Copyright (C) Paul Ashton 1997
   Copyright (C) Nigel Williams 2001
   Copyright (C) Gerald (Jerry) Carter 2006.

   
   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 2 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, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#ifndef _RPC_SRVSVC_H /* _RPC_SRVSVC_H */
#define _RPC_SRVSVC_H 

/* srvsvc pipe */
#define SRV_NET_CONN_ENUM          0x08
#define SRV_NET_FILE_ENUM          0x09
#define SRV_NET_FILE_CLOSE         0x0b
#define SRV_NET_SESS_ENUM          0x0c
#define SRV_NET_SESS_DEL           0x0d
#define SRV_NET_SHARE_ADD          0x0e
#define SRV_NET_SHARE_ENUM_ALL     0x0f
#define SRV_NET_SHARE_GET_INFO     0x10
#define SRV_NET_SHARE_SET_INFO     0x11
#define SRV_NET_SHARE_DEL          0x12
#define SRV_NET_SHARE_DEL_STICKY   0x13
#define SRV_NET_SRV_GET_INFO       0x15
#define SRV_NET_SRV_SET_INFO       0x16
#define SRV_NET_DISK_ENUM          0x17
#define SRV_NET_REMOTE_TOD         0x1c
#define SRV_NET_NAME_VALIDATE      0x21
#define SRV_NET_SHARE_ENUM         0x24
#define SRV_NET_FILE_QUERY_SECDESC 0x27
#define SRV_NET_FILE_SET_SECDESC   0x28

#define MAX_SERVER_DISK_ENTRIES 15

typedef struct disk_info {
	uint32  unknown;
	UNISTR3 disk_name;
} DISK_INFO;

typedef struct disk_enum_container {
	uint32 level;
	uint32 entries_read;
	uint32 unknown;
	uint32 disk_info_ptr;
	DISK_INFO *disk_info;
} DISK_ENUM_CONTAINER;

typedef struct net_srv_disk_enum {
	uint32 ptr_srv_name;         /* pointer (to server name?) */
	UNISTR2 uni_srv_name;        /* server name */

	DISK_ENUM_CONTAINER disk_enum_ctr;

	uint32 preferred_len;        /* preferred maximum length (0xffff ffff) */
	uint32 total_entries;        /* total number of entries */
	ENUM_HND enum_hnd;
	WERROR status;               /* return status */
} SRV_Q_NET_DISK_ENUM, SRV_R_NET_DISK_ENUM;

/***************************/

typedef struct  {
	UNISTR2 *servername;
	UNISTR2 sharename;
	uint32 type;
	uint32 flags;
	WERROR status;
} SRV_Q_NET_NAME_VALIDATE;

typedef struct  {
	WERROR status;
} SRV_R_NET_NAME_VALIDATE;

/***************************/

/* oops - this is going to take up a *massive* amount of stack. */
/* the UNISTR2s already have 1024 uint16 chars in them... */

#define MAX_SESS_ENTRIES 32

typedef struct {
	UNISTR2 *sharename;
} SESS_INFO_0;

typedef struct {
	uint32 num_entries_read;
	uint32 ptr_sess_info;
	uint32 num_entries_read2;
	SESS_INFO_0 info_0[MAX_SESS_ENTRIES];
} SRV_SESS_INFO_0;

typedef struct {
	UNISTR2 *sharename;
	UNISTR2 *username;
	uint32 num_opens;
	uint32 open_time;
	uint32 idle_time;
	uint32 user_flags;
} SESS_INFO_1;

typedef struct {
	uint32 num_entries_read;
	uint32 ptr_sess_info;
	uint32 num_entries_read2;
	SESS_INFO_1 info_1[MAX_SESS_ENTRIES];
} SRV_SESS_INFO_1;

typedef struct {
	uint32 switch_value;
	uint32 ptr_sess_ctr;
	union {
		SRV_SESS_INFO_0 info0; 
		SRV_SESS_INFO_1 info1; 
	} sess;

} SRV_SESS_INFO_CTR;

typedef struct {
	UNISTR2 *servername;
	UNISTR2 *qualifier;
	UNISTR2 *username;
	uint32 sess_level;
	SRV_SESS_INFO_CTR *ctr;
	uint32 preferred_len;
	ENUM_HND enum_hnd;
} SRV_Q_NET_SESS_ENUM;

typedef struct {
	uint32 sess_level; 
	SRV_SESS_INFO_CTR *ctr;
	uint32 total_entries;
	ENUM_HND enum_hnd;
	WERROR status;
} SRV_R_NET_SESS_ENUM;

/***************************/

/* SRV_Q_NET_SESS_DEL */
typedef struct q_net_sess_del
{
	uint32 ptr_srv_name;         /* pointer (to server name?) */
	UNISTR2 uni_srv_name;        /* server name */

	uint32 ptr_cli_name;         /* pointer (to qualifier name) */
	UNISTR2 uni_cli_name;        /* qualifier name "\\qualifier" */

	uint32 ptr_user_name;         /* pointer (to user name */
	UNISTR2 uni_user_name;        /* user name */

} SRV_Q_NET_SESS_DEL;

/* SRV_R_NET_SESS_DEL */
typedef struct r_net_sess_del
{
	WERROR status;               /* return status */

} SRV_R_NET_SESS_DEL;

/* CONN_INFO_0 (pointers to level 0 connection info strings) */
typedef struct ptr_conn_info0
{
	uint32 id; /* connection id. */

} CONN_INFO_0;

/* oops - this is going to take up a *massive* amount of stack. */
/* the UNISTR2s already have 1024 uint16 chars in them... */
#define MAX_CONN_ENTRIES 32

/* SRV_CONN_INFO_0 */
typedef struct srv_conn_info_0_info
{
	uint32 num_entries_read;                     /* EntriesRead */
	uint32 ptr_conn_info;                       /* Buffer */
	uint32 num_entries_read2;                    /* EntriesRead */

	CONN_INFO_0     info_0    [MAX_CONN_ENTRIES]; /* connection entry pointers */

} SRV_CONN_INFO_0;

/* CONN_INFO_1 (pointers to level 1 connection info strings) */
typedef struct ptr_conn_info1
{
	uint32 id;   /* connection id */
	uint32 type; /* 0x3 */
	uint32 num_opens;
	uint32 num_users;
	uint32 open_time;

	uint32 ptr_usr_name; /* pointer to user name. */
	uint32 ptr_net_name; /* pointer to network name (e.g IPC$). */

} CONN_INFO_1;

/* CONN_INFO_1_STR (level 1 connection info strings) */
typedef struct str_conn_info1
{
	UNISTR2 uni_usr_name; /* unicode string of user */
	UNISTR2 uni_net_name; /* unicode string of name */

} CONN_INFO_1_STR;

/* SRV_CONN_INFO_1 */
typedef struct srv_conn_info_1_info
{
	uint32 num_entries_read;                     /* EntriesRead */
	uint32 ptr_conn_info;                       /* Buffer */
	uint32 num_entries_read2;                    /* EntriesRead */

	CONN_INFO_1     info_1    [MAX_CONN_ENTRIES]; /* connection entry pointers */
	CONN_INFO_1_STR info_1_str[MAX_CONN_ENTRIES]; /* connection entry strings */

} SRV_CONN_INFO_1;

/* SRV_CONN_INFO_CTR */
typedef struct srv_conn_info_ctr_info
{
	uint32 switch_value;         /* switch value */
	uint32 ptr_conn_ctr;       /* pointer to conn info union */
	union
    {
		SRV_CONN_INFO_0 info0; /* connection info level 0 */
		SRV_CONN_INFO_1 info1; /* connection info level 1 */

    } conn;

} SRV_CONN_INFO_CTR;


/* SRV_Q_NET_CONN_ENUM */
typedef struct q_net_conn_enum_info
{
	uint32 ptr_srv_name;         /* pointer (to server name) */
	UNISTR2 uni_srv_name;        /* server name "\\server" */

	uint32 ptr_qual_name;         /* pointer (to qualifier name) */
	UNISTR2 uni_qual_name;        /* qualifier name "\\qualifier" */

	uint32 conn_level;          /* connection level */

	SRV_CONN_INFO_CTR *ctr;

	uint32 preferred_len;        /* preferred maximum length (0xffff ffff) */
	ENUM_HND enum_hnd;

} SRV_Q_NET_CONN_ENUM;

/* SRV_R_NET_CONN_ENUM */
typedef struct r_net_conn_enum_info
{
	uint32 conn_level;          /* share level */

	SRV_CONN_INFO_CTR *ctr;

	uint32 total_entries;                    /* total number of entries */
	ENUM_HND enum_hnd;

	WERROR status;               /* return status */

} SRV_R_NET_CONN_ENUM;

/* SH_INFO_0 */
typedef struct ptr_share_info0
{
	uint32 ptr_netname; /* pointer to net name. */
} SH_INFO_0;

/* SH_INFO_0_STR (level 0 share info strings) */
typedef struct str_share_info0
{
        SH_INFO_0 *ptrs;

	UNISTR2 uni_netname; /* unicode string of net name */

} SH_INFO_0_STR;

/* SRV_SHARE_INFO_0 */
typedef struct share_info_0_info
{
	SH_INFO_0 info_0;
	SH_INFO_0_STR info_0_str;

} SRV_SHARE_INFO_0;

/* SH_INFO_1 (pointers to level 1 share info strings) */
typedef struct ptr_share_info1
{
	uint32 ptr_netname; /* pointer to net name. */
	uint32 type; /* ipc, print, disk ... */
	uint32 ptr_remark; /* pointer to comment. */

} SH_INFO_1;

/* SH_INFO_1_STR (level 1 share info strings) */
typedef struct str_share_info1
{
        SH_INFO_1 *ptrs;

	UNISTR2 uni_netname; /* unicode string of net name */
	UNISTR2 uni_remark; /* unicode string of comment */

} SH_INFO_1_STR;

/* SRV_SHARE_INFO_1 */
typedef struct share_info_1_info
{
	SH_INFO_1 info_1;
	SH_INFO_1_STR info_1_str;

} SRV_SHARE_INFO_1;

/* SH_INFO_2 (pointers to level 2 share info strings) */
typedef struct ptr_share_info2
{
	uint32 ptr_netname; /* pointer to net name. */
	uint32 type; /* ipc, print, disk ... */
	uint32 ptr_remark; /* pointer to comment. */
	uint32 perms;      /* permissions */
	uint32 max_uses;   /* maximum uses */
	uint32 num_uses;   /* current uses */
	uint32 ptr_path;   /* pointer to path name */
	uint32 ptr_passwd; /* pointer to password */

} SH_INFO_2;

/* SH_INFO_2_STR (level 2 share info strings) */
typedef struct str_share_info2
{
	SH_INFO_2 *ptrs;

	UNISTR2 uni_netname; /* unicode string of net name (e.g NETLOGON) */
	UNISTR2 uni_remark;  /* unicode string of comment (e.g "Logon server share") */
	UNISTR2 uni_path;    /* unicode string of local path (e.g c:\winnt\system32\repl\import\scripts) */
	UNISTR2 uni_passwd;  /* unicode string of password - presumably for share level security (e.g NULL) */

} SH_INFO_2_STR;

/* SRV_SHARE_INFO_2 */
typedef struct share_info_2_info
{
	SH_INFO_2 info_2;
	SH_INFO_2_STR info_2_str;

} SRV_SHARE_INFO_2;

typedef struct ptr_share_info501
{
	uint32 ptr_netname; /* pointer to net name */
	uint32 type;     /* ipc, print, disk */
	uint32 ptr_remark;  /* pointer to comment */
	uint32 csc_policy;  /* client-side offline caching policy << 4 */
} SH_INFO_501;

typedef struct str_share_info501
{
	UNISTR2 uni_netname; /* unicode string of net name */
	UNISTR2 uni_remark;  /* unicode string of comment */
} SH_INFO_501_STR;

/* SRV_SHARE_INFO_501 */
typedef struct share_info_501_info
{
	SH_INFO_501 info_501;
	SH_INFO_501_STR info_501_str;
} SRV_SHARE_INFO_501;

/* SH_INFO_502 (pointers to level 502 share info strings) */
typedef struct ptr_share_info502
{
	uint32 ptr_netname; /* pointer to net name. */
	uint32 type; /* ipc, print, disk ... */
	uint32 ptr_remark; /* pointer to comment. */
	uint32 perms;      /* permissions */
	uint32 max_uses;   /* maximum uses */
	uint32 num_uses;   /* current uses */
	uint32 ptr_path;   /* pointer to path name */
	uint32 ptr_passwd; /* pointer to password */
        uint32 reserved;    /* this holds the space taken by the sd in the rpc packet */
        uint32 reserved_offset;   /* required for _post operation when marshalling */
	uint32 sd_size;    /* size of security descriptor */
	uint32 ptr_sd;     /* pointer to security descriptor */

} SH_INFO_502;

/* SH_INFO_502_STR (level 502 share info strings) */
typedef struct str_share_info502
{
	SH_INFO_502 *ptrs;

	UNISTR2 uni_netname; /* unicode string of net name (e.g NETLOGON) */
	UNISTR2 uni_remark;  /* unicode string of comment (e.g "Logon server share") */
	UNISTR2 uni_path;    /* unicode string of local path (e.g c:\winnt\system32\repl\import\scripts) */
	UNISTR2 uni_passwd;  /* unicode string of password - presumably for share level security (e.g NULL) */

        uint32 reserved;
	uint32 sd_size;
	SEC_DESC *sd;

} SH_INFO_502_STR;

/* SRV_SHARE_INFO_502 */
typedef struct share_info_502_info
{
	SH_INFO_502 info_502;
	SH_INFO_502_STR info_502_str;

} SRV_SHARE_INFO_502;

typedef struct ptr_share_info1004
{
	uint32 ptr_remark;

} SH_INFO_1004;

typedef struct str_share_info1004
{
	SH_INFO_1004 *ptrs;

	UNISTR2 uni_remark;

} SH_INFO_1004_STR;

typedef struct ptr_info_1004_info
{
	SH_INFO_1004     info_1004; 
	SH_INFO_1004_STR info_1004_str; 
} SRV_SHARE_INFO_1004;

typedef struct share_info_1005_info
{
  uint32 share_info_flags; 
} SRV_SHARE_INFO_1005;

typedef struct share_info_1006_info
{
	uint32 max_uses; 
} SRV_SHARE_INFO_1006;

typedef struct ptr_share_info1007
{
	uint32 flags;
	uint32 ptr_AlternateDirectoryName;

} SH_INFO_1007;

typedef struct str_share_info1007
{
	SH_INFO_1007 *ptrs;

	UNISTR2 uni_AlternateDirectoryName;

} SH_INFO_1007_STR;

typedef struct ptr_info_1007_info
{
	SH_INFO_1007     info_1007; 
	SH_INFO_1007_STR info_1007_str; 
} SRV_SHARE_INFO_1007;

/* SRV_SHARE_INFO_1501 */
typedef struct share_info_1501_info
{
	SEC_DESC_BUF *sdb;
} SRV_SHARE_INFO_1501;

/* SRV_SHARE_INFO_CTR */
typedef struct srv_share_info_ctr_info
{
	uint32 info_level;
	uint32 switch_value;
	uint32 ptr_share_info;

	uint32 num_entries;
	uint32 ptr_entries;
	uint32 num_entries2;

	union {
		SRV_SHARE_INFO_0    *info0;
		SRV_SHARE_INFO_1    *info1;    /* share info level 1 */
		SRV_SHARE_INFO_2    *info2;    /* share info level 2 */
		SRV_SHARE_INFO_501  *info501;  /* share info level 501 */
		SRV_SHARE_INFO_502  *info502;  /* share info level 502 */
		SRV_SHARE_INFO_1004 *info1004;
		SRV_SHARE_INFO_1005 *info1005;
		SRV_SHARE_INFO_1006 *info1006;
		SRV_SHARE_INFO_1007 *info1007;
		SRV_SHARE_INFO_1501 *info1501;
		void *info;

	} share;

} SRV_SHARE_INFO_CTR;

/* SRV_Q_NET_SHARE_ENUM */
typedef struct q_net_share_enum_info
{
	uint32 ptr_srv_name;         /* pointer (to server name?) */
	UNISTR2 uni_srv_name;        /* server name */

	SRV_SHARE_INFO_CTR ctr;     /* share info container */

	uint32 preferred_len;        /* preferred maximum length (0xffff ffff) */

	ENUM_HND enum_hnd;

} SRV_Q_NET_SHARE_ENUM;


/* SRV_R_NET_SHARE_ENUM */
typedef struct r_net_share_enum_info
{
	SRV_SHARE_INFO_CTR ctr;     /* share info container */

	uint32 total_entries;                    /* total number of entries */
	ENUM_HND enum_hnd;

	WERROR status;               /* return status */

} SRV_R_NET_SHARE_ENUM;


/* SRV_Q_NET_SHARE_GET_INFO */
typedef struct q_net_share_get_info_info
{
	uint32 ptr_srv_name;
	UNISTR2 uni_srv_name;

	UNISTR2 uni_share_name;
	uint32 info_level;

} SRV_Q_NET_SHARE_GET_INFO;

/* SRV_SHARE_INFO */
typedef struct srv_share_info {
	uint32 switch_value;
	uint32 ptr_share_ctr;

	union {
		SRV_SHARE_INFO_0    info0;
		SRV_SHARE_INFO_1 info1;
		SRV_SHARE_INFO_2 info2;
		SRV_SHARE_INFO_501 info501;
		SRV_SHARE_INFO_502 info502;
		SRV_SHARE_INFO_1004 info1004;
		SRV_SHARE_INFO_1005 info1005;
		SRV_SHARE_INFO_1006 info1006;
		SRV_SHARE_INFO_1007 info1007;
		SRV_SHARE_INFO_1501 info1501;
	} share;
} SRV_SHARE_INFO;

/* SRV_R_NET_SHARE_GET_INFO */
typedef struct r_net_share_get_info_info
{
	SRV_SHARE_INFO info;
	WERROR status;

} SRV_R_NET_SHARE_GET_INFO;

/* SRV_Q_NET_SHARE_SET_INFO */
typedef struct q_net_share_set_info_info
{
	uint32 ptr_srv_name;
	UNISTR2 uni_srv_name;

	UNISTR2 uni_share_name;
	uint32 info_level;

	SRV_SHARE_INFO info;

        uint32 ptr_parm_error;
        uint32 parm_error;

} SRV_Q_NET_SHARE_SET_INFO;

/* SRV_R_NET_SHARE_SET_INFO */
typedef struct r_net_share_set_info
{
        uint32 ptr_parm_error;
        uint32 parm_error;

	WERROR status;               /* return status */

} SRV_R_NET_SHARE_SET_INFO;

/* SRV_Q_NET_SHARE_ADD */
typedef struct q_net_share_add
{
	uint32 ptr_srv_name;
	UNISTR2 uni_srv_name;

	uint32 info_level;

	SRV_SHARE_INFO info;

	uint32 ptr_err_index; /* pointer to error index */
	uint32 err_index;     /* index in info to field in error */

} SRV_Q_NET_SHARE_ADD;

/* SRV_R_NET_SHARE_ADD */
typedef struct r_net_share_add
{

        uint32 ptr_parm_error;
        uint32 parm_error;

	WERROR status;               /* return status */

} SRV_R_NET_SHARE_ADD;

/* SRV_Q_NET_SHARE_DEL */
typedef struct q_net_share_del
{
	uint32 ptr_srv_name;
	UNISTR2 uni_srv_name;
	UNISTR2 uni_share_name;
	uint32 reserved;

} SRV_Q_NET_SHARE_DEL;

/* SRV_R_NET_SHARE_DEL */
typedef struct r_net_share_del
{
	WERROR status;               /* return status */

} SRV_R_NET_SHARE_DEL;

/***************************/

typedef struct {
	uint32 id;            /* file index */
	uint32 perms;         /* file permissions. don't know what format */
	uint32 num_locks;     /* file locks */
	UNISTR2 *path;        /* file name */
	UNISTR2 *user;        /* file owner */
} FILE_INFO_3;

typedef struct {
	uint32 level;                /* switch value */
	uint32 ptr_file_info;        /* pointer to file info union */

	uint32 num_entries;
	uint32 ptr_entries;
	uint32 num_entries2;
	union {
		FILE_INFO_3 *info3;
	} file;

} SRV_FILE_INFO_CTR;

typedef struct {
	UNISTR2 *servername;
	UNISTR2 *qualifier;
	UNISTR2 *username;
	uint32 level;
	SRV_FILE_INFO_CTR ctr;
	uint32 preferred_len;     /* preferred maximum length (0xffff ffff) */
	ENUM_HND enum_hnd;
} SRV_Q_NET_FILE_ENUM;

typedef struct {
	uint32 level;   
	SRV_FILE_INFO_CTR ctr;
	uint32 total_entries;
	ENUM_HND enum_hnd;
	WERROR status;      
} SRV_R_NET_FILE_ENUM;

/* SRV_INFO_100 */
typedef struct srv_info_100_info
{
	uint32 platform_id;     /* 0x500 */
	uint32 ptr_name;        /* pointer to server name */

	UNISTR2 uni_name;       /* server name "server" */

} SRV_INFO_100;

/* SRV_INFO_101 */
typedef struct srv_info_101_info
{
	uint32 platform_id;     /* 0x500 */
	uint32 ptr_name;        /* pointer to server name */
	uint32 ver_major;       /* 0x4 */
	uint32 ver_minor;       /* 0x2 */
	uint32 srv_type;        /* browse etc type */
	uint32 ptr_comment;     /* pointer to server comment */

	UNISTR2 uni_name;       /* server name "server" */
	UNISTR2 uni_comment;    /* server comment "samba x.x.x blah" */

} SRV_INFO_101;

/* SRV_INFO_102  */
typedef struct srv_info_102_info
{
	uint32 platform_id;     /* 0x500 */
	uint32 ptr_name;        /* pointer to server name */
	uint32 ver_major;       /* 0x4 */
	uint32 ver_minor;       /* 0x2 */
	uint32 srv_type;        /* browse etc type */
	uint32 ptr_comment;     /* pointer to server comment */
	uint32 users;           /* 0xffff ffff*/
	uint32 disc;            /* 0xf */
	uint32 hidden;          /* 0x0 */
	uint32 announce;        /* 240 */
	uint32 ann_delta;       /* 3000 */
	uint32 licenses;        /* 0 */
	uint32 ptr_usr_path;    /* pointer to user path */

	UNISTR2 uni_name;       /* server name "server" */
	UNISTR2 uni_comment;    /* server comment "samba x.x.x blah" */
	UNISTR2 uni_usr_path;   /* "c:\" (eh?) */

} SRV_INFO_102;


/* SRV_INFO_CTR */
typedef struct srv_info_ctr_info
{
	uint32 switch_value;         /* switch value */
	uint32 ptr_srv_ctr;         /* pointer to server info */
	union
    {
		SRV_INFO_102 sv102; /* server info level 102 */
		SRV_INFO_101 sv101; /* server info level 101 */
		SRV_INFO_100 sv100; /* server info level 100 */

    } srv;

} SRV_INFO_CTR;

/* SRV_Q_NET_SRV_GET_INFO */
typedef struct q_net_srv_get_info
{
	uint32  ptr_srv_name;
	UNISTR2 uni_srv_name; /* "\\server" */
	uint32  switch_value;

} SRV_Q_NET_SRV_GET_INFO;

/* SRV_R_NET_SRV_GET_INFO */
typedef struct r_net_srv_get_info
{
	SRV_INFO_CTR *ctr;

	WERROR status;               /* return status */

} SRV_R_NET_SRV_GET_INFO;

/* SRV_Q_NET_SRV_SET_INFO */
typedef struct q_net_srv_set_info
{
	uint32  ptr_srv_name;
	UNISTR2 uni_srv_name; /* "\\server" */
	uint32  switch_value;

	SRV_INFO_CTR *ctr;

} SRV_Q_NET_SRV_SET_INFO;


/* SRV_R_NET_SRV_SET_INFO */
typedef struct r_net_srv_set_info
{
	uint32 switch_value;         /* switch value */

	WERROR status;               /* return status */

} SRV_R_NET_SRV_SET_INFO;

/* SRV_Q_NET_REMOTE_TOD */
typedef struct q_net_remote_tod
{
	uint32  ptr_srv_name;
	UNISTR2 uni_srv_name; /* "\\server" */

} SRV_Q_NET_REMOTE_TOD;

/* TIME_OF_DAY_INFO */
typedef struct time_of_day_info
{
	uint32	elapsedt;
	uint32	msecs;
	uint32	hours;
	uint32	mins;
	uint32	secs;
	uint32	hunds;
	uint32	zone;
	uint32	tintervals;
	uint32	day;
	uint32	month;
	uint32	year;
	uint32	weekday;
	
} TIME_OF_DAY_INFO;

/* SRV_R_NET_REMOTE_TOD */
typedef struct r_net_remote_tod
{
	uint32 ptr_srv_tod;         /* pointer to TOD */
	TIME_OF_DAY_INFO *tod;
	
	WERROR status;               /* return status */

} SRV_R_NET_REMOTE_TOD;

/* SRV_Q_NET_FILE_QUERY_SECDESC */
typedef struct q_net_file_query_secdesc
{
	uint32  ptr_srv_name;
	UNISTR2 uni_srv_name;
	uint32  ptr_qual_name;
	UNISTR2 uni_qual_name;
	UNISTR2 uni_file_name;
	uint32  unknown1;
	uint32  unknown2;
	uint32  unknown3;
} SRV_Q_NET_FILE_QUERY_SECDESC;

/* SRV_R_NET_FILE_QUERY_SECDESC */
typedef struct r_net_file_query_secdesc
{
	uint32 ptr_response;
	uint32 size_response;
	uint32 ptr_secdesc;
	uint32 size_secdesc;
	SEC_DESC *sec_desc;
	WERROR status;
} SRV_R_NET_FILE_QUERY_SECDESC;

/* SRV_Q_NET_FILE_SET_SECDESC */
typedef struct q_net_file_set_secdesc
{
	uint32  ptr_srv_name;
	UNISTR2 uni_srv_name;
	uint32  ptr_qual_name;
	UNISTR2 uni_qual_name;
	UNISTR2 uni_file_name;
	uint32  sec_info;
	uint32  size_set;
	uint32  ptr_secdesc;
	uint32  size_secdesc;
	SEC_DESC *sec_desc;
} SRV_Q_NET_FILE_SET_SECDESC;

/* SRV_R_NET_FILE_SET_SECDESC */
typedef struct r_net_file_set_secdesc
{
	WERROR status;
} SRV_R_NET_FILE_SET_SECDESC;

/***************************/

typedef struct {
	UNISTR2 *servername;
	uint32 file_id;
} SRV_Q_NET_FILE_CLOSE;

typedef struct {
	WERROR status;
} SRV_R_NET_FILE_CLOSE;

/***************************/

#endif /* _RPC_SRVSVC_H */