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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
|
// Copyright 2021 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package lisafs
import (
"math"
"os"
"gvisor.dev/gvisor/pkg/abi/linux"
"gvisor.dev/gvisor/pkg/hostarch"
"gvisor.dev/gvisor/pkg/marshal/primitive"
)
// Messages have two parts:
// * A transport header used to decipher received messages.
// * A byte array referred to as "payload" which contains the actual message.
//
// "dataLen" refers to the size of both combined.
// MID (message ID) is used to identify messages to parse from payload.
//
// +marshal slice:MIDSlice
type MID uint16
// These constants are used to identify their corresponding message types.
const (
// Error is only used in responses to pass errors to client.
Error MID = 0
// Mount is used to establish connection between the client and server mount
// point. lisafs requires that the client makes a successful Mount RPC before
// making other RPCs.
Mount MID = 1
// Channel requests to start a new communicational channel.
Channel MID = 2
// FStat requests the stat(2) results for a specified file.
FStat MID = 3
// SetStat requests to change file attributes. Note that there is no one
// corresponding Linux syscall. This is a conglomeration of fchmod(2),
// fchown(2), ftruncate(2) and futimesat(2).
SetStat MID = 4
// Walk requests to walk the specified path starting from the specified
// directory. Server-side path traversal is terminated preemptively on
// symlinks entries because they can cause non-linear traversal.
Walk MID = 5
// WalkStat is the same as Walk, except the following differences:
// * If the first path component is "", then it also returns stat results
// for the directory where the walk starts.
// * Does not return Inode, just the Stat results for each path component.
WalkStat MID = 6
// OpenAt is analogous to openat(2). It does not perform any walk. It merely
// duplicates the control FD with the open flags passed.
OpenAt MID = 7
// OpenCreateAt is analogous to openat(2) with O_CREAT|O_EXCL added to flags.
// It also returns the newly created file inode.
OpenCreateAt MID = 8
// Close is analogous to close(2) but can work on multiple FDs.
Close MID = 9
// FSync is analogous to fsync(2) but can work on multiple FDs.
FSync MID = 10
// PWrite is analogous to pwrite(2).
PWrite MID = 11
// PRead is analogous to pread(2).
PRead MID = 12
// MkdirAt is analogous to mkdirat(2).
MkdirAt MID = 13
// MknodAt is analogous to mknodat(2).
MknodAt MID = 14
// SymlinkAt is analogous to symlinkat(2).
SymlinkAt MID = 15
// LinkAt is analogous to linkat(2).
LinkAt MID = 16
// FStatFS is analogous to fstatfs(2).
FStatFS MID = 17
// FAllocate is analogous to fallocate(2).
FAllocate MID = 18
// ReadLinkAt is analogous to readlinkat(2).
ReadLinkAt MID = 19
// Flush cleans up the file state. Its behavior is implementation
// dependent and might not even be supported in server implementations.
Flush MID = 20
// Connect is loosely analogous to connect(2).
Connect MID = 21
// UnlinkAt is analogous to unlinkat(2).
UnlinkAt MID = 22
// RenameAt is loosely analogous to renameat(2).
RenameAt MID = 23
// Getdents64 is analogous to getdents64(2).
Getdents64 MID = 24
// FGetXattr is analogous to fgetxattr(2).
FGetXattr MID = 25
// FSetXattr is analogous to fsetxattr(2).
FSetXattr MID = 26
// FListXattr is analogous to flistxattr(2).
FListXattr MID = 27
// FRemoveXattr is analogous to fremovexattr(2).
FRemoveXattr MID = 28
)
const (
// NoUID is a sentinel used to indicate no valid UID.
NoUID UID = math.MaxUint32
// NoGID is a sentinel used to indicate no valid GID.
NoGID GID = math.MaxUint32
)
// MaxMessageSize is the recommended max message size that can be used by
// connections. Server implementations may choose to use other values.
func MaxMessageSize() uint32 {
// Return HugePageSize - PageSize so that when flipcall packet window is
// created with MaxMessageSize() + flipcall header size + channel header
// size, HugePageSize is allocated and can be backed by a single huge page
// if supported by the underlying memfd.
return uint32(hostarch.HugePageSize - os.Getpagesize())
}
// TODO(gvisor.dev/issue/6450): Once this is resolved:
// * Update manual implementations and function signatures.
// * Update RPC handlers and appropriate callers to handle errors correctly.
// UID represents a user ID.
//
// +marshal
type UID uint32
// Ok returns true if uid is not NoUID.
func (uid UID) Ok() bool {
return uid != NoUID
}
// GID represents a group ID.
//
// +marshal
type GID uint32
// Ok returns true if gid is not NoGID.
func (gid GID) Ok() bool {
return gid != NoGID
}
// NoopMarshal is a noop implementation of marshal.Marshallable.MarshalBytes.
func NoopMarshal(b []byte) []byte { return b }
// NoopUnmarshal is a noop implementation of marshal.Marshallable.UnmarshalBytes.
func NoopUnmarshal(b []byte) []byte { return b }
// SizedString represents a string in memory. The marshalled string bytes are
// preceded by a uint32 signifying the string length.
type SizedString string
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (s *SizedString) SizeBytes() int {
return (*primitive.Uint32)(nil).SizeBytes() + len(*s)
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (s *SizedString) MarshalBytes(dst []byte) []byte {
strLen := primitive.Uint32(len(*s))
dst = strLen.MarshalUnsafe(dst)
// Copy without any allocation.
return dst[copy(dst[:strLen], *s):]
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (s *SizedString) UnmarshalBytes(src []byte) []byte {
var strLen primitive.Uint32
src = strLen.UnmarshalUnsafe(src)
// Take the hit, this leads to an allocation + memcpy. No way around it.
*s = SizedString(src[:strLen])
return src[strLen:]
}
// StringArray represents an array of SizedStrings in memory. The marshalled
// array data is preceded by a uint32 signifying the array length.
type StringArray []string
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (s *StringArray) SizeBytes() int {
size := (*primitive.Uint32)(nil).SizeBytes()
for _, str := range *s {
sstr := SizedString(str)
size += sstr.SizeBytes()
}
return size
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (s *StringArray) MarshalBytes(dst []byte) []byte {
arrLen := primitive.Uint32(len(*s))
dst = arrLen.MarshalUnsafe(dst)
for _, str := range *s {
sstr := SizedString(str)
dst = sstr.MarshalBytes(dst)
}
return dst
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (s *StringArray) UnmarshalBytes(src []byte) []byte {
var arrLen primitive.Uint32
src = arrLen.UnmarshalUnsafe(src)
if cap(*s) < int(arrLen) {
*s = make([]string, arrLen)
} else {
*s = (*s)[:arrLen]
}
for i := primitive.Uint32(0); i < arrLen; i++ {
var sstr SizedString
src = sstr.UnmarshalBytes(src)
(*s)[i] = string(sstr)
}
return src
}
// Inode represents an inode on the remote filesystem.
//
// +marshal slice:InodeSlice
type Inode struct {
ControlFD FDID
_ uint32 // Need to make struct packed.
Stat linux.Statx
}
// MountReq represents a Mount request.
type MountReq struct {
MountPath SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (m *MountReq) SizeBytes() int {
return m.MountPath.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (m *MountReq) MarshalBytes(dst []byte) []byte {
return m.MountPath.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (m *MountReq) UnmarshalBytes(src []byte) []byte {
return m.MountPath.UnmarshalBytes(src)
}
// MountResp represents a Mount response.
type MountResp struct {
Root Inode
// MaxMessageSize is the maximum size of messages communicated between the
// client and server in bytes. This includes the communication header.
MaxMessageSize primitive.Uint32
// SupportedMs holds all the supported messages.
SupportedMs []MID
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (m *MountResp) SizeBytes() int {
return m.Root.SizeBytes() +
m.MaxMessageSize.SizeBytes() +
(*primitive.Uint16)(nil).SizeBytes() +
(len(m.SupportedMs) * (*MID)(nil).SizeBytes())
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (m *MountResp) MarshalBytes(dst []byte) []byte {
dst = m.Root.MarshalUnsafe(dst)
dst = m.MaxMessageSize.MarshalUnsafe(dst)
numSupported := primitive.Uint16(len(m.SupportedMs))
dst = numSupported.MarshalBytes(dst)
return MarshalUnsafeMIDSlice(m.SupportedMs, dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (m *MountResp) UnmarshalBytes(src []byte) []byte {
src = m.Root.UnmarshalUnsafe(src)
src = m.MaxMessageSize.UnmarshalUnsafe(src)
var numSupported primitive.Uint16
src = numSupported.UnmarshalBytes(src)
if cap(m.SupportedMs) < int(numSupported) {
m.SupportedMs = make([]MID, numSupported)
} else {
m.SupportedMs = m.SupportedMs[:numSupported]
}
return UnmarshalUnsafeMIDSlice(m.SupportedMs, src)
}
// ChannelResp is the response to the create channel request.
//
// +marshal
type ChannelResp struct {
dataOffset int64
dataLength uint64
}
// ErrorResp is returned to represent an error while handling a request.
//
// +marshal
type ErrorResp struct {
errno uint32
}
// StatReq requests the stat results for the specified FD.
//
// +marshal
type StatReq struct {
FD FDID
}
// SetStatReq is used to set attributeds on FDs.
//
// +marshal
type SetStatReq struct {
FD FDID
_ uint32
Mask uint32
Mode uint32 // Only permissions part is settable.
UID UID
GID GID
Size uint64
Atime linux.Timespec
Mtime linux.Timespec
}
// SetStatResp is used to communicate SetStat results. It contains a mask
// representing the failed changes. It also contains the errno of the failed
// set attribute operation. If multiple operations failed then any of those
// errnos can be returned.
//
// +marshal
type SetStatResp struct {
FailureMask uint32
FailureErrNo uint32
}
// WalkReq is used to request to walk multiple path components at once. This
// is used for both Walk and WalkStat.
type WalkReq struct {
DirFD FDID
Path StringArray
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (w *WalkReq) SizeBytes() int {
return w.DirFD.SizeBytes() + w.Path.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (w *WalkReq) MarshalBytes(dst []byte) []byte {
dst = w.DirFD.MarshalUnsafe(dst)
return w.Path.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (w *WalkReq) UnmarshalBytes(src []byte) []byte {
src = w.DirFD.UnmarshalUnsafe(src)
return w.Path.UnmarshalBytes(src)
}
// WalkStatus is used to indicate the reason for partial/unsuccessful server
// side Walk operations. Please note that partial/unsuccessful walk operations
// do not necessarily fail the RPC. The RPC is successful with a failure hint
// which can be used by the client to infer server-side state.
type WalkStatus = primitive.Uint8
const (
// WalkSuccess indicates that all path components were successfully walked.
WalkSuccess WalkStatus = iota
// WalkComponentDoesNotExist indicates that the walk was prematurely
// terminated because an intermediate path component does not exist on
// server. The results of all previous existing path components is returned.
WalkComponentDoesNotExist
// WalkComponentSymlink indicates that the walk was prematurely
// terminated because an intermediate path component was a symlink. It is not
// safe to resolve symlinks remotely (unaware of mount points).
WalkComponentSymlink
)
// WalkResp is used to communicate the inodes walked by the server.
type WalkResp struct {
Status WalkStatus
Inodes []Inode
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (w *WalkResp) SizeBytes() int {
return w.Status.SizeBytes() +
(*primitive.Uint32)(nil).SizeBytes() + (len(w.Inodes) * (*Inode)(nil).SizeBytes())
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (w *WalkResp) MarshalBytes(dst []byte) []byte {
dst = w.Status.MarshalUnsafe(dst)
numInodes := primitive.Uint32(len(w.Inodes))
dst = numInodes.MarshalUnsafe(dst)
return MarshalUnsafeInodeSlice(w.Inodes, dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (w *WalkResp) UnmarshalBytes(src []byte) []byte {
src = w.Status.UnmarshalUnsafe(src)
var numInodes primitive.Uint32
src = numInodes.UnmarshalUnsafe(src)
if cap(w.Inodes) < int(numInodes) {
w.Inodes = make([]Inode, numInodes)
} else {
w.Inodes = w.Inodes[:numInodes]
}
return UnmarshalUnsafeInodeSlice(w.Inodes, src)
}
// WalkStatResp is used to communicate stat results for WalkStat.
type WalkStatResp struct {
Stats []linux.Statx
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (w *WalkStatResp) SizeBytes() int {
return (*primitive.Uint32)(nil).SizeBytes() + (len(w.Stats) * linux.SizeOfStatx)
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (w *WalkStatResp) MarshalBytes(dst []byte) []byte {
numStats := primitive.Uint32(len(w.Stats))
dst = numStats.MarshalUnsafe(dst)
return linux.MarshalUnsafeStatxSlice(w.Stats, dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (w *WalkStatResp) UnmarshalBytes(src []byte) []byte {
var numStats primitive.Uint32
src = numStats.UnmarshalUnsafe(src)
if cap(w.Stats) < int(numStats) {
w.Stats = make([]linux.Statx, numStats)
} else {
w.Stats = w.Stats[:numStats]
}
return linux.UnmarshalUnsafeStatxSlice(w.Stats, src)
}
// OpenAtReq is used to open existing FDs with the specified flags.
//
// +marshal
type OpenAtReq struct {
FD FDID
Flags uint32
}
// OpenAtResp is used to communicate the newly created FD.
//
// +marshal
type OpenAtResp struct {
NewFD FDID
}
// +marshal
type createCommon struct {
DirFD FDID
Mode linux.FileMode
_ uint16 // Need to make struct packed.
UID UID
GID GID
}
// OpenCreateAtReq is used to make OpenCreateAt requests.
type OpenCreateAtReq struct {
createCommon
Name SizedString
Flags primitive.Uint32
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (o *OpenCreateAtReq) SizeBytes() int {
return o.createCommon.SizeBytes() + o.Name.SizeBytes() + o.Flags.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (o *OpenCreateAtReq) MarshalBytes(dst []byte) []byte {
dst = o.createCommon.MarshalUnsafe(dst)
dst = o.Name.MarshalBytes(dst)
return o.Flags.MarshalUnsafe(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (o *OpenCreateAtReq) UnmarshalBytes(src []byte) []byte {
src = o.createCommon.UnmarshalUnsafe(src)
src = o.Name.UnmarshalBytes(src)
return o.Flags.UnmarshalUnsafe(src)
}
// OpenCreateAtResp is used to communicate successful OpenCreateAt results.
//
// +marshal
type OpenCreateAtResp struct {
Child Inode
NewFD FDID
_ uint32 // Need to make struct packed.
}
// FdArray is a utility struct which implements a marshallable type for
// communicating an array of FDIDs. In memory, the array data is preceded by a
// uint32 denoting the array length.
type FdArray []FDID
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (f *FdArray) SizeBytes() int {
return (*primitive.Uint32)(nil).SizeBytes() + (len(*f) * (*FDID)(nil).SizeBytes())
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (f *FdArray) MarshalBytes(dst []byte) []byte {
arrLen := primitive.Uint32(len(*f))
dst = arrLen.MarshalUnsafe(dst)
return MarshalUnsafeFDIDSlice(*f, dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (f *FdArray) UnmarshalBytes(src []byte) []byte {
var arrLen primitive.Uint32
src = arrLen.UnmarshalUnsafe(src)
if cap(*f) < int(arrLen) {
*f = make(FdArray, arrLen)
} else {
*f = (*f)[:arrLen]
}
return UnmarshalUnsafeFDIDSlice(*f, src)
}
// CloseReq is used to close(2) FDs.
type CloseReq struct {
FDs FdArray
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (c *CloseReq) SizeBytes() int {
return c.FDs.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (c *CloseReq) MarshalBytes(dst []byte) []byte {
return c.FDs.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (c *CloseReq) UnmarshalBytes(src []byte) []byte {
return c.FDs.UnmarshalBytes(src)
}
// FsyncReq is used to fsync(2) FDs.
type FsyncReq struct {
FDs FdArray
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (f *FsyncReq) SizeBytes() int {
return f.FDs.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (f *FsyncReq) MarshalBytes(dst []byte) []byte {
return f.FDs.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (f *FsyncReq) UnmarshalBytes(src []byte) []byte {
return f.FDs.UnmarshalBytes(src)
}
// PReadReq is used to pread(2) on an FD.
//
// +marshal
type PReadReq struct {
Offset uint64
FD FDID
Count uint32
}
// PReadResp is used to return the result of pread(2).
type PReadResp struct {
NumBytes primitive.Uint32
Buf []byte
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (r *PReadResp) SizeBytes() int {
return r.NumBytes.SizeBytes() + int(r.NumBytes)
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (r *PReadResp) MarshalBytes(dst []byte) []byte {
dst = r.NumBytes.MarshalUnsafe(dst)
return dst[copy(dst[:r.NumBytes], r.Buf[:r.NumBytes]):]
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (r *PReadResp) UnmarshalBytes(src []byte) []byte {
src = r.NumBytes.UnmarshalUnsafe(src)
// We expect the client to have already allocated r.Buf. r.Buf probably
// (optimally) points to usermem. Directly copy into that.
return src[copy(r.Buf[:r.NumBytes], src[:r.NumBytes]):]
}
// PWriteReq is used to pwrite(2) on an FD.
type PWriteReq struct {
Offset primitive.Uint64
FD FDID
NumBytes primitive.Uint32
Buf []byte
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (w *PWriteReq) SizeBytes() int {
return w.Offset.SizeBytes() + w.FD.SizeBytes() + w.NumBytes.SizeBytes() + int(w.NumBytes)
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (w *PWriteReq) MarshalBytes(dst []byte) []byte {
dst = w.Offset.MarshalUnsafe(dst)
dst = w.FD.MarshalUnsafe(dst)
dst = w.NumBytes.MarshalUnsafe(dst)
return dst[copy(dst[:w.NumBytes], w.Buf[:w.NumBytes]):]
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (w *PWriteReq) UnmarshalBytes(src []byte) []byte {
src = w.Offset.UnmarshalUnsafe(src)
src = w.FD.UnmarshalUnsafe(src)
src = w.NumBytes.UnmarshalUnsafe(src)
// This is an optimization. Assuming that the server is making this call, it
// is safe to just point to src rather than allocating and copying.
w.Buf = src[:w.NumBytes]
return src[w.NumBytes:]
}
// PWriteResp is used to return the result of pwrite(2).
//
// +marshal
type PWriteResp struct {
Count uint64
}
// MkdirAtReq is used to make MkdirAt requests.
type MkdirAtReq struct {
createCommon
Name SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (m *MkdirAtReq) SizeBytes() int {
return m.createCommon.SizeBytes() + m.Name.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (m *MkdirAtReq) MarshalBytes(dst []byte) []byte {
dst = m.createCommon.MarshalUnsafe(dst)
return m.Name.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (m *MkdirAtReq) UnmarshalBytes(src []byte) []byte {
src = m.createCommon.UnmarshalUnsafe(src)
return m.Name.UnmarshalBytes(src)
}
// MkdirAtResp is the response to a successful MkdirAt request.
//
// +marshal
type MkdirAtResp struct {
ChildDir Inode
}
// MknodAtReq is used to make MknodAt requests.
type MknodAtReq struct {
createCommon
Name SizedString
Minor primitive.Uint32
Major primitive.Uint32
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (m *MknodAtReq) SizeBytes() int {
return m.createCommon.SizeBytes() + m.Name.SizeBytes() + m.Minor.SizeBytes() + m.Major.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (m *MknodAtReq) MarshalBytes(dst []byte) []byte {
dst = m.createCommon.MarshalUnsafe(dst)
dst = m.Name.MarshalBytes(dst)
dst = m.Minor.MarshalUnsafe(dst)
return m.Major.MarshalUnsafe(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (m *MknodAtReq) UnmarshalBytes(src []byte) []byte {
src = m.createCommon.UnmarshalUnsafe(src)
src = m.Name.UnmarshalBytes(src)
src = m.Minor.UnmarshalUnsafe(src)
return m.Major.UnmarshalUnsafe(src)
}
// MknodAtResp is the response to a successful MknodAt request.
//
// +marshal
type MknodAtResp struct {
Child Inode
}
// SymlinkAtReq is used to make SymlinkAt request.
type SymlinkAtReq struct {
DirFD FDID
Name SizedString
Target SizedString
UID UID
GID GID
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (s *SymlinkAtReq) SizeBytes() int {
return s.DirFD.SizeBytes() + s.Name.SizeBytes() + s.Target.SizeBytes() + s.UID.SizeBytes() + s.GID.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (s *SymlinkAtReq) MarshalBytes(dst []byte) []byte {
dst = s.DirFD.MarshalUnsafe(dst)
dst = s.Name.MarshalBytes(dst)
dst = s.Target.MarshalBytes(dst)
dst = s.UID.MarshalUnsafe(dst)
return s.GID.MarshalUnsafe(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (s *SymlinkAtReq) UnmarshalBytes(src []byte) []byte {
src = s.DirFD.UnmarshalUnsafe(src)
src = s.Name.UnmarshalBytes(src)
src = s.Target.UnmarshalBytes(src)
src = s.UID.UnmarshalUnsafe(src)
return s.GID.UnmarshalUnsafe(src)
}
// SymlinkAtResp is the response to a successful SymlinkAt request.
//
// +marshal
type SymlinkAtResp struct {
Symlink Inode
}
// LinkAtReq is used to make LinkAt requests.
type LinkAtReq struct {
DirFD FDID
Target FDID
Name SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (l *LinkAtReq) SizeBytes() int {
return l.DirFD.SizeBytes() + l.Target.SizeBytes() + l.Name.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (l *LinkAtReq) MarshalBytes(dst []byte) []byte {
dst = l.DirFD.MarshalUnsafe(dst)
dst = l.Target.MarshalUnsafe(dst)
return l.Name.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (l *LinkAtReq) UnmarshalBytes(src []byte) []byte {
src = l.DirFD.UnmarshalUnsafe(src)
src = l.Target.UnmarshalUnsafe(src)
return l.Name.UnmarshalBytes(src)
}
// LinkAtResp is used to respond to a successful LinkAt request.
//
// +marshal
type LinkAtResp struct {
Link Inode
}
// FStatFSReq is used to request StatFS results for the specified FD.
//
// +marshal
type FStatFSReq struct {
FD FDID
}
// StatFS is responded to a successful FStatFS request.
//
// +marshal
type StatFS struct {
Type uint64
BlockSize int64
Blocks uint64
BlocksFree uint64
BlocksAvailable uint64
Files uint64
FilesFree uint64
NameLength uint64
}
// FAllocateReq is used to request to fallocate(2) an FD. This has no response.
//
// +marshal
type FAllocateReq struct {
FD FDID
_ uint32
Mode uint64
Offset uint64
Length uint64
}
// ReadLinkAtReq is used to readlinkat(2) at the specified FD.
//
// +marshal
type ReadLinkAtReq struct {
FD FDID
}
// ReadLinkAtResp is used to communicate ReadLinkAt results.
type ReadLinkAtResp struct {
Target SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (r *ReadLinkAtResp) SizeBytes() int {
return r.Target.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (r *ReadLinkAtResp) MarshalBytes(dst []byte) []byte {
return r.Target.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (r *ReadLinkAtResp) UnmarshalBytes(src []byte) []byte {
return r.Target.UnmarshalBytes(src)
}
// FlushReq is used to make Flush requests.
//
// +marshal
type FlushReq struct {
FD FDID
}
// ConnectReq is used to make a Connect request.
//
// +marshal
type ConnectReq struct {
FD FDID
// SockType is used to specify the socket type to connect to. As a special
// case, SockType = 0 means that the socket type does not matter and the
// requester will accept any socket type.
SockType uint32
}
// UnlinkAtReq is used to make UnlinkAt request.
type UnlinkAtReq struct {
DirFD FDID
Name SizedString
Flags primitive.Uint32
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (u *UnlinkAtReq) SizeBytes() int {
return u.DirFD.SizeBytes() + u.Name.SizeBytes() + u.Flags.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (u *UnlinkAtReq) MarshalBytes(dst []byte) []byte {
dst = u.DirFD.MarshalUnsafe(dst)
dst = u.Name.MarshalBytes(dst)
return u.Flags.MarshalUnsafe(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (u *UnlinkAtReq) UnmarshalBytes(src []byte) []byte {
src = u.DirFD.UnmarshalUnsafe(src)
src = u.Name.UnmarshalBytes(src)
return u.Flags.UnmarshalUnsafe(src)
}
// RenameAtReq is used to make Rename requests. Note that the request takes in
// the to-be-renamed file's FD instead of oldDir and oldName like renameat(2).
type RenameAtReq struct {
Renamed FDID
NewDir FDID
NewName SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (r *RenameAtReq) SizeBytes() int {
return r.Renamed.SizeBytes() + r.NewDir.SizeBytes() + r.NewName.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (r *RenameAtReq) MarshalBytes(dst []byte) []byte {
dst = r.Renamed.MarshalUnsafe(dst)
dst = r.NewDir.MarshalUnsafe(dst)
return r.NewName.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (r *RenameAtReq) UnmarshalBytes(src []byte) []byte {
src = r.Renamed.UnmarshalUnsafe(src)
src = r.NewDir.UnmarshalUnsafe(src)
return r.NewName.UnmarshalBytes(src)
}
// Getdents64Req is used to make Getdents64 requests.
//
// +marshal
type Getdents64Req struct {
DirFD FDID
// Count is the number of bytes to read. A negative value of Count is used to
// indicate that the implementation must lseek(0, SEEK_SET) before calling
// getdents64(2). Implementations must use the absolute value of Count to
// determine the number of bytes to read.
Count int32
}
// Dirent64 is analogous to struct linux_dirent64.
type Dirent64 struct {
Ino primitive.Uint64
DevMinor primitive.Uint32
DevMajor primitive.Uint32
Off primitive.Uint64
Type primitive.Uint8
Name SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (d *Dirent64) SizeBytes() int {
return d.Ino.SizeBytes() + d.DevMinor.SizeBytes() + d.DevMajor.SizeBytes() + d.Off.SizeBytes() + d.Type.SizeBytes() + d.Name.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (d *Dirent64) MarshalBytes(dst []byte) []byte {
dst = d.Ino.MarshalUnsafe(dst)
dst = d.DevMinor.MarshalUnsafe(dst)
dst = d.DevMajor.MarshalUnsafe(dst)
dst = d.Off.MarshalUnsafe(dst)
dst = d.Type.MarshalUnsafe(dst)
return d.Name.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (d *Dirent64) UnmarshalBytes(src []byte) []byte {
src = d.Ino.UnmarshalUnsafe(src)
src = d.DevMinor.UnmarshalUnsafe(src)
src = d.DevMajor.UnmarshalUnsafe(src)
src = d.Off.UnmarshalUnsafe(src)
src = d.Type.UnmarshalUnsafe(src)
return d.Name.UnmarshalBytes(src)
}
// Getdents64Resp is used to communicate getdents64 results.
type Getdents64Resp struct {
Dirents []Dirent64
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (g *Getdents64Resp) SizeBytes() int {
ret := (*primitive.Uint32)(nil).SizeBytes()
for i := range g.Dirents {
ret += g.Dirents[i].SizeBytes()
}
return ret
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (g *Getdents64Resp) MarshalBytes(dst []byte) []byte {
numDirents := primitive.Uint32(len(g.Dirents))
dst = numDirents.MarshalUnsafe(dst)
for i := range g.Dirents {
dst = g.Dirents[i].MarshalBytes(dst)
}
return dst
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (g *Getdents64Resp) UnmarshalBytes(src []byte) []byte {
var numDirents primitive.Uint32
src = numDirents.UnmarshalUnsafe(src)
if cap(g.Dirents) < int(numDirents) {
g.Dirents = make([]Dirent64, numDirents)
} else {
g.Dirents = g.Dirents[:numDirents]
}
for i := range g.Dirents {
src = g.Dirents[i].UnmarshalBytes(src)
}
return src
}
// FGetXattrReq is used to make FGetXattr requests. The response to this is
// just a SizedString containing the xattr value.
type FGetXattrReq struct {
FD FDID
BufSize primitive.Uint32
Name SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (g *FGetXattrReq) SizeBytes() int {
return g.FD.SizeBytes() + g.BufSize.SizeBytes() + g.Name.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (g *FGetXattrReq) MarshalBytes(dst []byte) []byte {
dst = g.FD.MarshalUnsafe(dst)
dst = g.BufSize.MarshalUnsafe(dst)
return g.Name.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (g *FGetXattrReq) UnmarshalBytes(src []byte) []byte {
src = g.FD.UnmarshalUnsafe(src)
src = g.BufSize.UnmarshalUnsafe(src)
return g.Name.UnmarshalBytes(src)
}
// FGetXattrResp is used to respond to FGetXattr request.
type FGetXattrResp struct {
Value SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (g *FGetXattrResp) SizeBytes() int {
return g.Value.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (g *FGetXattrResp) MarshalBytes(dst []byte) []byte {
return g.Value.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (g *FGetXattrResp) UnmarshalBytes(src []byte) []byte {
return g.Value.UnmarshalBytes(src)
}
// FSetXattrReq is used to make FSetXattr requests. It has no response.
type FSetXattrReq struct {
FD FDID
Flags primitive.Uint32
Name SizedString
Value SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (s *FSetXattrReq) SizeBytes() int {
return s.FD.SizeBytes() + s.Flags.SizeBytes() + s.Name.SizeBytes() + s.Value.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (s *FSetXattrReq) MarshalBytes(dst []byte) []byte {
dst = s.FD.MarshalUnsafe(dst)
dst = s.Flags.MarshalUnsafe(dst)
dst = s.Name.MarshalBytes(dst)
return s.Value.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (s *FSetXattrReq) UnmarshalBytes(src []byte) []byte {
src = s.FD.UnmarshalUnsafe(src)
src = s.Flags.UnmarshalUnsafe(src)
src = s.Name.UnmarshalBytes(src)
return s.Value.UnmarshalBytes(src)
}
// FRemoveXattrReq is used to make FRemoveXattr requests. It has no response.
type FRemoveXattrReq struct {
FD FDID
Name SizedString
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (r *FRemoveXattrReq) SizeBytes() int {
return r.FD.SizeBytes() + r.Name.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (r *FRemoveXattrReq) MarshalBytes(dst []byte) []byte {
dst = r.FD.MarshalUnsafe(dst)
return r.Name.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (r *FRemoveXattrReq) UnmarshalBytes(src []byte) []byte {
src = r.FD.UnmarshalUnsafe(src)
return r.Name.UnmarshalBytes(src)
}
// FListXattrReq is used to make FListXattr requests.
//
// +marshal
type FListXattrReq struct {
FD FDID
_ uint32
Size uint64
}
// FListXattrResp is used to respond to FListXattr requests.
type FListXattrResp struct {
Xattrs StringArray
}
// SizeBytes implements marshal.Marshallable.SizeBytes.
func (l *FListXattrResp) SizeBytes() int {
return l.Xattrs.SizeBytes()
}
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
func (l *FListXattrResp) MarshalBytes(dst []byte) []byte {
return l.Xattrs.MarshalBytes(dst)
}
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
func (l *FListXattrResp) UnmarshalBytes(src []byte) []byte {
return l.Xattrs.UnmarshalBytes(src)
}
|