-
Notifications
You must be signed in to change notification settings - Fork 0
/
msg.go
279 lines (230 loc) · 4.36 KB
/
msg.go
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
package p9
import (
"bytes"
"io"
"reflect"
"github.com/DeedleFake/p9/internal/util"
"github.com/DeedleFake/p9/proto"
)
// Message type identifiers.
const (
TversionType uint8 = 100 + iota
RversionType
TauthType
RauthType
TattachType
RattachType
_ // Terror isn't used, but the slot is skipped over.
RerrorType
TflushType
RflushType
TwalkType
RwalkType
TopenType
RopenType
TcreateType
RcreateType
TreadType
RreadType
TwriteType
RwriteType
TclunkType
RclunkType
TremoveType
RremoveType
TstatType
RstatType
TwstatType
RwstatType
)
var protocol = proto.NewProto(map[uint8]reflect.Type{
TversionType: reflect.TypeOf(Tversion{}),
RversionType: reflect.TypeOf(Rversion{}),
TauthType: reflect.TypeOf(Tauth{}),
RauthType: reflect.TypeOf(Rauth{}),
TattachType: reflect.TypeOf(Tattach{}),
RattachType: reflect.TypeOf(Rattach{}),
RerrorType: reflect.TypeOf(Rerror{}),
TflushType: reflect.TypeOf(Tflush{}),
RflushType: reflect.TypeOf(Rflush{}),
TwalkType: reflect.TypeOf(Twalk{}),
RwalkType: reflect.TypeOf(Rwalk{}),
TopenType: reflect.TypeOf(Topen{}),
RopenType: reflect.TypeOf(Ropen{}),
TcreateType: reflect.TypeOf(Tcreate{}),
RcreateType: reflect.TypeOf(Rcreate{}),
TreadType: reflect.TypeOf(Tread{}),
RreadType: reflect.TypeOf(Rread{}),
TwriteType: reflect.TypeOf(Twrite{}),
RwriteType: reflect.TypeOf(Rwrite{}),
TclunkType: reflect.TypeOf(Tclunk{}),
RclunkType: reflect.TypeOf(Rclunk{}),
TremoveType: reflect.TypeOf(Tremove{}),
RremoveType: reflect.TypeOf(Rremove{}),
TstatType: reflect.TypeOf(Tstat{}),
RstatType: reflect.TypeOf(Rstat{}),
TwstatType: reflect.TypeOf(Twstat{}),
RwstatType: reflect.TypeOf(Rwstat{}),
})
// Proto returns the protocol implementation for 9P.
func Proto() proto.Proto {
return protocol
}
type Tversion struct {
Msize uint32
Version string
}
func (*Tversion) P9NoTag() {}
type Rversion struct {
Msize uint32
Version string
}
func (r *Rversion) P9Msize() uint32 {
return r.Msize
}
type Tauth struct {
AFID uint32
Uname string
Aname string
}
type Rauth struct {
AQID QID
}
type Tattach struct {
FID uint32
AFID uint32
Uname string
Aname string
}
type Rattach struct {
QID QID
}
// Rerror is a special response that represents an error. As a special
// case, this type also implements error for convenience.
type Rerror struct {
Ename string
}
func (msg *Rerror) Error() string {
return msg.Ename
}
type Tflush struct {
OldTag uint16
}
type Rflush struct {
}
type Twalk struct {
FID uint32
NewFID uint32
Wname []string
}
type Rwalk struct {
WQID []QID
}
type Topen struct {
FID uint32
Mode uint8 // TODO: Make a Mode type?
}
type Ropen struct {
QID QID
IOUnit uint32
}
type Tcreate struct {
FID uint32
Name string
Perm FileMode
Mode uint8 // TODO: Make a Mode type?
}
type Rcreate struct {
QID QID
IOUnit uint32
}
type Tread struct {
FID uint32
Offset uint64
Count uint32
}
type Rread struct {
Data []byte
}
type Twrite struct {
FID uint32
Offset uint64
Data []byte
}
type Rwrite struct {
Count uint32
}
type Tclunk struct {
FID uint32
}
type Rclunk struct {
}
type Tremove struct {
FID uint32
}
type Rremove struct {
}
type Tstat struct {
FID uint32
}
type Rstat struct {
Stat Stat
}
func (stat *Rstat) P9Encode() ([]byte, error) {
var buf bytes.Buffer
err := proto.Write(&buf, stat.Stat.size()+2)
if err != nil {
return nil, err
}
err = proto.Write(&buf, stat.Stat)
return buf.Bytes(), err
}
func (stat *Rstat) P9Decode(r io.Reader) error {
var size uint16
err := proto.Read(r, &size)
if err != nil {
return err
}
r = &util.LimitedReader{
R: r,
N: uint32(size),
E: ErrLargeStat,
}
return proto.Read(r, &stat.Stat)
}
type Twstat struct {
FID uint32
Stat Stat
}
func (stat *Twstat) P9Encode() ([]byte, error) {
var buf bytes.Buffer
err := proto.Write(&buf, stat.FID)
if err != nil {
return nil, err
}
err = proto.Write(&buf, stat.Stat.size()+2)
if err != nil {
return nil, err
}
err = proto.Write(&buf, stat.Stat)
return buf.Bytes(), err
}
func (stat *Twstat) P9Decode(r io.Reader) error {
err := proto.Read(r, &stat.FID)
if err != nil {
return err
}
var size uint16
err = proto.Read(r, &size)
if err != nil {
return err
}
r = &util.LimitedReader{
R: r,
N: uint32(size),
E: ErrLargeStat,
}
return proto.Read(r, &stat.Stat)
}
type Rwstat struct {
}