forked from NetDirect/nfsshell
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnfs_prot.h
1455 lines (1302 loc) · 36.1 KB
/
nfs_prot.h
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
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Please do not edit this file.
* It was generated using rpcgen.
*/
#ifndef _NFS_PROT_H_RPCGEN
#define _NFS_PROT_H_RPCGEN
#include <rpc/rpc.h>
#ifdef __cplusplus
extern "C" {
#endif
#define NFS3_FHSIZE 64
#define NFS3_WRITEVERFSIZE 8
#define NFS3_CREATEVERFSIZE 8
#define NFS3_COOKIEVERFSIZE 8
typedef char cookieverf3[NFS3_COOKIEVERFSIZE];
typedef u_quad_t uint64;
typedef uint64 cookie3;
struct nfs_fh3 {
struct {
u_int data_len;
char data_val[NFS3_FHSIZE];
} data;
};
typedef struct nfs_fh3 nfs_fh3;
typedef char *filename3;
struct diropargs3 {
nfs_fh3 dir;
filename3 name;
};
typedef struct diropargs3 diropargs3;
enum ftype3 {
NF3REG = 1,
NF3DIR = 2,
NF3BLK = 3,
NF3CHR = 4,
NF3LNK = 5,
NF3SOCK = 6,
NF3FIFO = 7,
};
typedef enum ftype3 ftype3;
typedef uint32_t mode3;
typedef uint32_t uid3;
typedef uint32_t gid3;
typedef uint64 size3;
typedef uint64 fileid3;
struct specdata3 {
uint32_t specdata1;
uint32_t specdata2;
};
typedef struct specdata3 specdata3;
struct nfstime3 {
uint32_t seconds;
uint32_t nseconds;
};
typedef struct nfstime3 nfstime3;
struct fattr3 {
ftype3 type;
mode3 mode;
uint32_t nlink;
uid3 uid;
gid3 gid;
size3 size;
size3 used;
specdata3 rdev;
uint64 fsid;
fileid3 fileid;
nfstime3 atime;
nfstime3 mtime;
nfstime3 ctime;
};
typedef struct fattr3 fattr3;
struct post_op_attr {
bool_t attributes_follow;
union {
fattr3 attributes;
} post_op_attr_u;
};
typedef struct post_op_attr post_op_attr;
enum nfsstat3 {
NFS3_OK = 0,
NFS3ERR_PERM = 1,
NFS3ERR_NOENT = 2,
NFS3ERR_IO = 5,
NFS3ERR_NXIO = 6,
NFS3ERR_ACCES = 13,
NFS3ERR_EXIST = 17,
NFS3ERR_XDEV = 18,
NFS3ERR_NODEV = 19,
NFS3ERR_NOTDIR = 20,
NFS3ERR_ISDIR = 21,
NFS3ERR_INVAL = 22,
NFS3ERR_FBIG = 27,
NFS3ERR_NOSPC = 28,
NFS3ERR_ROFS = 30,
NFS3ERR_MLINK = 31,
NFS3ERR_NAMETOOLONG = 63,
NFS3ERR_NOTEMPTY = 66,
NFS3ERR_DQUOT = 69,
NFS3ERR_STALE = 70,
NFS3ERR_REMOTE = 71,
NFS3ERR_BADHANDLE = 10001,
NFS3ERR_NOT_SYNC = 10002,
NFS3ERR_BAD_COOKIE = 10003,
NFS3ERR_NOTSUPP = 10004,
NFS3ERR_TOOSMALL = 10005,
NFS3ERR_SERVERFAULT = 10006,
NFS3ERR_BADTYPE = 10007,
NFS3ERR_JUKEBOX = 10008,
};
typedef enum nfsstat3 nfsstat3;
enum stable_how {
UNSTABLE = 0,
DATA_SYNC = 1,
FILE_SYNC = 2,
};
typedef enum stable_how stable_how;
typedef uint64 offset3;
typedef uint32_t count3;
struct wcc_attr {
size3 size;
nfstime3 mtime;
nfstime3 ctime;
};
typedef struct wcc_attr wcc_attr;
struct pre_op_attr {
bool_t attributes_follow;
union {
wcc_attr attributes;
} pre_op_attr_u;
};
typedef struct pre_op_attr pre_op_attr;
struct wcc_data {
pre_op_attr before;
post_op_attr after;
};
typedef struct wcc_data wcc_data;
struct WRITE3args {
nfs_fh3 file;
offset3 offset;
count3 count;
stable_how stable;
struct {
u_int data_len;
char *data_val;
} data;
};
typedef struct WRITE3args WRITE3args;
typedef char writeverf3[NFS3_WRITEVERFSIZE];
struct WRITE3resok {
wcc_data file_wcc;
count3 count;
stable_how committed;
writeverf3 verf;
};
typedef struct WRITE3resok WRITE3resok;
struct WRITE3resfail {
wcc_data file_wcc;
};
typedef struct WRITE3resfail WRITE3resfail;
struct WRITE3res {
nfsstat3 status;
union {
WRITE3resok resok;
WRITE3resfail resfail;
} WRITE3res_u;
};
typedef struct WRITE3res WRITE3res;
struct LOOKUP3args {
diropargs3 what;
};
typedef struct LOOKUP3args LOOKUP3args;
struct LOOKUP3resok {
nfs_fh3 object;
post_op_attr obj_attributes;
post_op_attr dir_attributes;
};
typedef struct LOOKUP3resok LOOKUP3resok;
struct LOOKUP3resfail {
post_op_attr dir_attributes;
};
typedef struct LOOKUP3resfail LOOKUP3resfail;
struct LOOKUP3res {
nfsstat3 status;
union {
LOOKUP3resok resok;
LOOKUP3resfail resfail;
} LOOKUP3res_u;
};
typedef struct LOOKUP3res LOOKUP3res;
struct COMMIT3args {
nfs_fh3 file;
offset3 offset;
count3 count;
};
typedef struct COMMIT3args COMMIT3args;
struct COMMIT3resok {
wcc_data file_wcc;
writeverf3 verf;
};
typedef struct COMMIT3resok COMMIT3resok;
struct COMMIT3resfail {
wcc_data file_wcc;
};
typedef struct COMMIT3resfail COMMIT3resfail;
struct COMMIT3res {
nfsstat3 status;
union {
COMMIT3resok resok;
COMMIT3resfail resfail;
} COMMIT3res_u;
};
typedef struct COMMIT3res COMMIT3res;
#define ACCESS3_READ 0x0001
#define ACCESS3_LOOKUP 0x0002
#define ACCESS3_MODIFY 0x0004
#define ACCESS3_EXTEND 0x0008
#define ACCESS3_DELETE 0x0010
#define ACCESS3_EXECUTE 0x0020
struct ACCESS3args {
nfs_fh3 object;
uint32_t access;
};
typedef struct ACCESS3args ACCESS3args;
struct ACCESS3resok {
post_op_attr obj_attributes;
uint32_t access;
};
typedef struct ACCESS3resok ACCESS3resok;
struct ACCESS3resfail {
post_op_attr obj_attributes;
};
typedef struct ACCESS3resfail ACCESS3resfail;
struct ACCESS3res {
nfsstat3 status;
union {
ACCESS3resok resok;
ACCESS3resfail resfail;
} ACCESS3res_u;
};
typedef struct ACCESS3res ACCESS3res;
struct GETATTR3args {
nfs_fh3 object;
};
typedef struct GETATTR3args GETATTR3args;
struct GETATTR3resok {
fattr3 obj_attributes;
};
typedef struct GETATTR3resok GETATTR3resok;
struct GETATTR3res {
nfsstat3 status;
union {
GETATTR3resok resok;
} GETATTR3res_u;
};
typedef struct GETATTR3res GETATTR3res;
enum time_how {
DONT_CHANGE = 0,
SET_TO_SERVER_TIME = 1,
SET_TO_CLIENT_TIME = 2,
};
typedef enum time_how time_how;
struct set_mode3 {
bool_t set_it;
union {
mode3 mode;
} set_mode3_u;
};
typedef struct set_mode3 set_mode3;
struct set_uid3 {
bool_t set_it;
union {
uid3 uid;
} set_uid3_u;
};
typedef struct set_uid3 set_uid3;
struct set_gid3 {
bool_t set_it;
union {
gid3 gid;
} set_gid3_u;
};
typedef struct set_gid3 set_gid3;
struct set_size3 {
bool_t set_it;
union {
size3 size;
} set_size3_u;
};
typedef struct set_size3 set_size3;
struct set_atime {
time_how set_it;
union {
nfstime3 atime;
} set_atime_u;
};
typedef struct set_atime set_atime;
struct set_mtime {
time_how set_it;
union {
nfstime3 mtime;
} set_mtime_u;
};
typedef struct set_mtime set_mtime;
struct sattr3 {
set_mode3 mode;
set_uid3 uid;
set_gid3 gid;
set_size3 size;
set_atime atime;
set_mtime mtime;
};
typedef struct sattr3 sattr3;
enum createmode3 {
UNCHECKED = 0,
GUARDED = 1,
EXCLUSIVE = 2,
};
typedef enum createmode3 createmode3;
typedef char createverf3[NFS3_CREATEVERFSIZE];
struct createhow3 {
createmode3 mode;
union {
sattr3 obj_attributes;
sattr3 g_obj_attributes;
createverf3 verf;
} createhow3_u;
};
typedef struct createhow3 createhow3;
struct CREATE3args {
diropargs3 where;
createhow3 how;
};
typedef struct CREATE3args CREATE3args;
struct post_op_fh3 {
bool_t handle_follows;
union {
nfs_fh3 handle;
} post_op_fh3_u;
};
typedef struct post_op_fh3 post_op_fh3;
struct CREATE3resok {
post_op_fh3 obj;
post_op_attr obj_attributes;
wcc_data dir_wcc;
};
typedef struct CREATE3resok CREATE3resok;
struct CREATE3resfail {
wcc_data dir_wcc;
};
typedef struct CREATE3resfail CREATE3resfail;
struct CREATE3res {
nfsstat3 status;
union {
CREATE3resok resok;
CREATE3resfail resfail;
} CREATE3res_u;
};
typedef struct CREATE3res CREATE3res;
struct REMOVE3args {
diropargs3 object;
};
typedef struct REMOVE3args REMOVE3args;
struct REMOVE3resok {
wcc_data dir_wcc;
};
typedef struct REMOVE3resok REMOVE3resok;
struct REMOVE3resfail {
wcc_data dir_wcc;
};
typedef struct REMOVE3resfail REMOVE3resfail;
struct REMOVE3res {
nfsstat3 status;
union {
REMOVE3resok resok;
REMOVE3resfail resfail;
} REMOVE3res_u;
};
typedef struct REMOVE3res REMOVE3res;
struct READ3args {
nfs_fh3 file;
offset3 offset;
count3 count;
};
typedef struct READ3args READ3args;
struct READ3resok {
post_op_attr file_attributes;
count3 count;
bool_t eof;
struct {
u_int data_len;
char *data_val;
} data;
};
typedef struct READ3resok READ3resok;
struct READ3resfail {
post_op_attr file_attributes;
};
typedef struct READ3resfail READ3resfail;
struct READ3res {
nfsstat3 status;
union {
READ3resok resok;
READ3resfail resfail;
} READ3res_u;
};
typedef struct READ3res READ3res;
#define FSF3_LINK 0x0001
#define FSF3_SYMLINK 0x0002
#define FSF3_HOMOGENEOUS 0x0008
#define FSF3_CANSETTIME 0x0010
struct FSINFO3args {
nfs_fh3 fsroot;
};
typedef struct FSINFO3args FSINFO3args;
struct FSINFO3resok {
post_op_attr obj_attributes;
uint32_t rtmax;
uint32_t rtpref;
uint32_t rtmult;
uint32_t wtmax;
uint32_t wtpref;
uint32_t wtmult;
uint32_t dtpref;
size3 maxfilesize;
nfstime3 time_delta;
uint32_t properties;
};
typedef struct FSINFO3resok FSINFO3resok;
struct FSINFO3resfail {
post_op_attr obj_attributes;
};
typedef struct FSINFO3resfail FSINFO3resfail;
struct FSINFO3res {
nfsstat3 status;
union {
FSINFO3resok resok;
FSINFO3resfail resfail;
} FSINFO3res_u;
};
typedef struct FSINFO3res FSINFO3res;
struct FSSTAT3args {
nfs_fh3 fsroot;
};
typedef struct FSSTAT3args FSSTAT3args;
struct FSSTAT3resok {
post_op_attr obj_attributes;
size3 tbytes;
size3 fbytes;
size3 abytes;
size3 tfiles;
size3 ffiles;
size3 afiles;
uint32_t invarsec;
};
typedef struct FSSTAT3resok FSSTAT3resok;
struct FSSTAT3resfail {
post_op_attr obj_attributes;
};
typedef struct FSSTAT3resfail FSSTAT3resfail;
struct FSSTAT3res {
nfsstat3 status;
union {
FSSTAT3resok resok;
FSSTAT3resfail resfail;
} FSSTAT3res_u;
};
typedef struct FSSTAT3res FSSTAT3res;
struct PATHCONF3args {
nfs_fh3 object;
};
typedef struct PATHCONF3args PATHCONF3args;
struct PATHCONF3resok {
post_op_attr obj_attributes;
uint32_t linkmax;
uint32_t name_max;
bool_t no_trunc;
bool_t chown_restricted;
bool_t case_insensitive;
bool_t case_preserving;
};
typedef struct PATHCONF3resok PATHCONF3resok;
struct PATHCONF3resfail {
post_op_attr obj_attributes;
};
typedef struct PATHCONF3resfail PATHCONF3resfail;
struct PATHCONF3res {
nfsstat3 status;
union {
PATHCONF3resok resok;
PATHCONF3resfail resfail;
} PATHCONF3res_u;
};
typedef struct PATHCONF3res PATHCONF3res;
typedef char *nfspath3;
struct symlinkdata3 {
sattr3 symlink_attributes;
nfspath3 symlink_data;
};
typedef struct symlinkdata3 symlinkdata3;
struct SYMLINK3args {
diropargs3 where;
symlinkdata3 symlink;
};
typedef struct SYMLINK3args SYMLINK3args;
struct SYMLINK3resok {
post_op_fh3 obj;
post_op_attr obj_attributes;
wcc_data dir_wcc;
};
typedef struct SYMLINK3resok SYMLINK3resok;
struct SYMLINK3resfail {
wcc_data dir_wcc;
};
typedef struct SYMLINK3resfail SYMLINK3resfail;
struct SYMLINK3res {
nfsstat3 status;
union {
SYMLINK3resok resok;
SYMLINK3resfail resfail;
} SYMLINK3res_u;
};
typedef struct SYMLINK3res SYMLINK3res;
struct READLINK3args {
nfs_fh3 symlink;
};
typedef struct READLINK3args READLINK3args;
struct READLINK3resok {
post_op_attr symlink_attributes;
nfspath3 data;
};
typedef struct READLINK3resok READLINK3resok;
struct READLINK3resfail {
post_op_attr symlink_attributes;
};
typedef struct READLINK3resfail READLINK3resfail;
struct READLINK3res {
nfsstat3 status;
union {
READLINK3resok resok;
READLINK3resfail resfail;
} READLINK3res_u;
};
typedef struct READLINK3res READLINK3res;
struct devicedata3 {
sattr3 dev_attributes;
specdata3 spec;
};
typedef struct devicedata3 devicedata3;
struct mknoddata3 {
ftype3 type;
union {
devicedata3 chr_device;
devicedata3 blk_device;
sattr3 sock_attributes;
sattr3 pipe_attributes;
} mknoddata3_u;
};
typedef struct mknoddata3 mknoddata3;
struct MKNOD3args {
diropargs3 where;
mknoddata3 what;
};
typedef struct MKNOD3args MKNOD3args;
struct MKNOD3resok {
post_op_fh3 obj;
post_op_attr obj_attributes;
wcc_data dir_wcc;
};
typedef struct MKNOD3resok MKNOD3resok;
struct MKNOD3resfail {
wcc_data dir_wcc;
};
typedef struct MKNOD3resfail MKNOD3resfail;
struct MKNOD3res {
nfsstat3 status;
union {
MKNOD3resok resok;
MKNOD3resfail resfail;
} MKNOD3res_u;
};
typedef struct MKNOD3res MKNOD3res;
struct MKDIR3args {
diropargs3 where;
sattr3 attributes;
};
typedef struct MKDIR3args MKDIR3args;
struct MKDIR3resok {
post_op_fh3 obj;
post_op_attr obj_attributes;
wcc_data dir_wcc;
};
typedef struct MKDIR3resok MKDIR3resok;
struct MKDIR3resfail {
wcc_data dir_wcc;
};
typedef struct MKDIR3resfail MKDIR3resfail;
struct MKDIR3res {
nfsstat3 status;
union {
MKDIR3resok resok;
MKDIR3resfail resfail;
} MKDIR3res_u;
};
typedef struct MKDIR3res MKDIR3res;
struct RMDIR3args {
diropargs3 object;
};
typedef struct RMDIR3args RMDIR3args;
struct RMDIR3resok {
wcc_data dir_wcc;
};
typedef struct RMDIR3resok RMDIR3resok;
struct RMDIR3resfail {
wcc_data dir_wcc;
};
typedef struct RMDIR3resfail RMDIR3resfail;
struct RMDIR3res {
nfsstat3 status;
union {
RMDIR3resok resok;
RMDIR3resfail resfail;
} RMDIR3res_u;
};
typedef struct RMDIR3res RMDIR3res;
struct RENAME3args {
diropargs3 from;
diropargs3 to;
};
typedef struct RENAME3args RENAME3args;
struct RENAME3resok {
wcc_data fromdir_wcc;
wcc_data todir_wcc;
};
typedef struct RENAME3resok RENAME3resok;
struct RENAME3resfail {
wcc_data fromdir_wcc;
wcc_data todir_wcc;
};
typedef struct RENAME3resfail RENAME3resfail;
struct RENAME3res {
nfsstat3 status;
union {
RENAME3resok resok;
RENAME3resfail resfail;
} RENAME3res_u;
};
typedef struct RENAME3res RENAME3res;
struct READDIRPLUS3args {
nfs_fh3 dir;
cookie3 cookie;
cookieverf3 cookieverf;
count3 dircount;
count3 maxcount;
};
typedef struct READDIRPLUS3args READDIRPLUS3args;
struct entryplus3 {
fileid3 fileid;
filename3 name;
cookie3 cookie;
post_op_attr name_attributes;
post_op_fh3 name_handle;
struct entryplus3 *nextentry;
};
typedef struct entryplus3 entryplus3;
struct dirlistplus3 {
entryplus3 *entries;
bool_t eof;
};
typedef struct dirlistplus3 dirlistplus3;
struct READDIRPLUS3resok {
post_op_attr dir_attributes;
cookieverf3 cookieverf;
dirlistplus3 reply;
};
typedef struct READDIRPLUS3resok READDIRPLUS3resok;
struct READDIRPLUS3resfail {
post_op_attr dir_attributes;
};
typedef struct READDIRPLUS3resfail READDIRPLUS3resfail;
struct READDIRPLUS3res {
nfsstat3 status;
union {
READDIRPLUS3resok resok;
READDIRPLUS3resfail resfail;
} READDIRPLUS3res_u;
};
typedef struct READDIRPLUS3res READDIRPLUS3res;
struct READDIR3args {
nfs_fh3 dir;
cookie3 cookie;
cookieverf3 cookieverf;
count3 count;
};
typedef struct READDIR3args READDIR3args;
struct entry3 {
fileid3 fileid;
filename3 name;
cookie3 cookie;
struct entry3 *nextentry;
};
typedef struct entry3 entry3;
struct dirlist3 {
entry3 *entries;
bool_t eof;
};
typedef struct dirlist3 dirlist3;
struct READDIR3resok {
post_op_attr dir_attributes;
cookieverf3 cookieverf;
dirlist3 reply;
};
typedef struct READDIR3resok READDIR3resok;
struct READDIR3resfail {
post_op_attr dir_attributes;
};
typedef struct READDIR3resfail READDIR3resfail;
struct READDIR3res {
nfsstat3 status;
union {
READDIR3resok resok;
READDIR3resfail resfail;
} READDIR3res_u;
};
typedef struct READDIR3res READDIR3res;
struct LINK3args {
nfs_fh3 file;
diropargs3 link;
};
typedef struct LINK3args LINK3args;
struct LINK3resok {
post_op_attr file_attributes;
wcc_data linkdir_wcc;
};
typedef struct LINK3resok LINK3resok;
struct LINK3resfail {
post_op_attr file_attributes;
wcc_data linkdir_wcc;
};
typedef struct LINK3resfail LINK3resfail;
struct LINK3res {
nfsstat3 status;
union {
LINK3resok resok;
LINK3resfail resfail;
} LINK3res_u;
};
typedef struct LINK3res LINK3res;
struct sattrguard3 {
bool_t check;
union {
nfstime3 obj_ctime;
} sattrguard3_u;
};
typedef struct sattrguard3 sattrguard3;
struct SETATTR3args {
nfs_fh3 object;
sattr3 new_attributes;
sattrguard3 guard;
};
typedef struct SETATTR3args SETATTR3args;
struct SETATTR3resok {
wcc_data obj_wcc;
};
typedef struct SETATTR3resok SETATTR3resok;
struct SETATTR3resfail {
wcc_data obj_wcc;
};
typedef struct SETATTR3resfail SETATTR3resfail;
struct SETATTR3res {
nfsstat3 status;
union {
SETATTR3resok resok;
SETATTR3resfail resfail;
} SETATTR3res_u;
};
typedef struct SETATTR3res SETATTR3res;
enum nfsacl_type {
NFSACL_TYPE_USER_OBJ = 0x0001,
NFSACL_TYPE_USER = 0x0002,
NFSACL_TYPE_GROUP_OBJ = 0x0004,
NFSACL_TYPE_GROUP = 0x0008,
NFSACL_TYPE_CLASS_OBJ = 0x0010,
NFSACL_TYPE_CLASS = 0x0020,
NFSACL_TYPE_DEFAULT = 0x1000,
NFSACL_TYPE_DEFAULT_USER_OBJ = 0x1001,
NFSACL_TYPE_DEFAULT_USER = 0x1002,
NFSACL_TYPE_DEFAULT_GROUP_OBJ = 0x1004,
NFSACL_TYPE_DEFAULT_GROUP = 0x1008,
NFSACL_TYPE_DEFAULT_CLASS_OBJ = 0x1010,
NFSACL_TYPE_DEFAULT_OTHER_OBJ = 0x1020,
};
typedef enum nfsacl_type nfsacl_type;
#define NFSACL_PERM_READ 0x04
#define NFSACL_PERM_WRITE 0x02
#define NFSACL_PERM_EXEC 0x01
struct nfsacl_ace {
enum nfsacl_type type;
u_int id;
u_int perm;
};
typedef struct nfsacl_ace nfsacl_ace;
#define NFSACL_MASK_ACL_ENTRY 0x0001
#define NFSACL_MASK_ACL_COUNT 0x0002
#define NFSACL_MASK_ACL_DEFAULT_ENTRY 0x0004
#define NFSACL_MASK_ACL_DEFAULT_COUNT 0x0008
struct GETACL3args {
nfs_fh3 dir;
u_int mask;
};
typedef struct GETACL3args GETACL3args;
struct GETACL3resok {
post_op_attr attr;
u_int mask;
u_int ace_count;
struct {
u_int ace_len;
struct nfsacl_ace *ace_val;
} ace;
u_int default_ace_count;
struct {
u_int default_ace_len;
struct nfsacl_ace *default_ace_val;
} default_ace;
};
typedef struct GETACL3resok GETACL3resok;
struct GETACL3res {
nfsstat3 status;
union {
GETACL3resok resok;
} GETACL3res_u;
};
typedef struct GETACL3res GETACL3res;
struct SETACL3args {
nfs_fh3 dir;
u_int mask;
u_int ace_count;
struct {
u_int ace_len;
struct nfsacl_ace *ace_val;
} ace;
u_int default_ace_count;
struct {
u_int default_ace_len;
struct nfsacl_ace *default_ace_val;
} default_ace;
};
typedef struct SETACL3args SETACL3args;
struct SETACL3resok {
post_op_attr attr;
};
typedef struct SETACL3resok SETACL3resok;
struct SETACL3res {
nfsstat3 status;
union {
SETACL3resok resok;
} SETACL3res_u;
};
typedef struct SETACL3res SETACL3res;