-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
message.go
380 lines (332 loc) · 10.2 KB
/
message.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
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
package capnp
import (
"encoding/binary"
"errors"
"io"
"sync"
"sync/atomic"
"capnproto.org/go/capnp/v3/exc"
"capnproto.org/go/capnp/v3/internal/str"
"capnproto.org/go/capnp/v3/packed"
)
// Security limits. Matches C++ implementation.
const (
defaultTraverseLimit = 64 << 20 // 64 MiB
defaultDepthLimit = 64
maxStreamSegments = 512
defaultDecodeLimit = 64 << 20 // 64 MiB
)
const maxDepth = ^uint(0)
// A Message is a tree of Cap'n Proto objects, split into one or more
// segments of contiguous memory. The only required field is Arena.
// A Message is safe to read from multiple goroutines.
//
// A message must be set up with a fully valid Arena when reading or with
// a valid and empty arena by calling NewArena.
type Message struct {
// rlimit must be first so that it is 64-bit aligned.
// See sync/atomic docs.
rlimit atomic.Uint64
rlimitInit sync.Once
Arena Arena
capTable CapTable
// TraverseLimit limits how many total bytes of data are allowed to be
// traversed while reading. Traversal is counted when a Struct or
// List is obtained. This means that calling a getter for the same
// sub-struct multiple times will cause it to be double-counted. Once
// the traversal limit is reached, pointer accessors will report
// errors. See https://capnproto.org/encoding.html#amplification-attack
// for more details on this security measure.
//
// If not set, this defaults to 64 MiB.
TraverseLimit uint64
// DepthLimit limits how deeply-nested a message structure can be.
// If not set, this defaults to 64.
DepthLimit uint
}
// NewMessage creates a message with a new root and returns the first
// segment. It is an error to call NewMessage on an arena with data in it.
//
// The new message is guaranteed to contain at least one segment and that
// segment is guaranteed to contain enough space for the root struct pointer.
func NewMessage(arena Arena) (*Message, *Segment, error) {
var msg Message
first, err := msg.Reset(arena)
return &msg, first, err
}
// NewSingleSegmentMessage(b) is equivalent to NewMessage(SingleSegment(b)), except
// that it panics instead of returning an error. This can only happen if the passed
// slice contains data, so the caller is responsible for ensuring that it has a length
// of zero.
func NewSingleSegmentMessage(b []byte) (msg *Message, first *Segment) {
msg, first, err := NewMessage(SingleSegment(b))
if err != nil {
panic(err)
}
return msg, first
}
// Analogous to NewSingleSegmentMessage, but using MultiSegment.
func NewMultiSegmentMessage(b [][]byte) (msg *Message, first *Segment) {
msg, first, err := NewMessage(MultiSegment(b))
if err != nil {
panic(err)
}
return msg, first
}
// Release is syntactic sugar for Message.Reset(nil). See
// docstring for Reset for an important warning.
func (m *Message) Release() {
m.Reset(nil)
}
// Reset the message to use a different arena, allowing it to be reused. This
// invalidates any existing pointers in the Message, releases all clients in
// the cap table, and releases the current Arena, so use with caution.
//
// Reset fails if the new arena is not empty and is not able to allocate enough
// space for at least one segment and its root pointer. In other words, Reset
// with a non-nil arena must only be used for messages which will be modified,
// not read.
func (m *Message) Reset(arena Arena) (first *Segment, err error) {
m.capTable.Reset()
if m.Arena != nil {
m.Arena.Release()
}
*m = Message{
Arena: arena,
TraverseLimit: m.TraverseLimit,
DepthLimit: m.DepthLimit,
capTable: m.capTable,
}
if arena != nil {
switch arena.NumSegments() {
case 0:
if first, _, err = arena.Allocate(0, m, nil); err != nil {
return nil, exc.WrapError("new message", err)
}
case 1:
if first, err = m.Segment(0); err != nil {
return nil, exc.WrapError("Reset.Segment(0)", err)
}
if len(first.data) > 0 {
return nil, errors.New("new message: arena not empty")
}
default:
return nil, errors.New("new message: arena not empty")
}
if first.ID() != 0 {
return nil, errors.New("new message: arena allocated first segment with non-zero ID")
}
seg, _, err := alloc(first, wordSize) // allocate root
if err != nil {
return nil, exc.WrapError("new message", err)
}
if seg != first {
return nil, errors.New("new message: arena allocated first word outside first segment")
}
}
return
}
func (m *Message) initReadLimit() {
if m.TraverseLimit == 0 {
m.rlimit.Store(defaultTraverseLimit)
return
}
m.rlimit.Store(m.TraverseLimit)
}
// canRead reports whether the amount of bytes can be stored safely.
func (m *Message) canRead(sz Size) (ok bool) {
m.rlimitInit.Do(m.initReadLimit)
for {
curr := m.rlimit.Load()
var new uint64
if ok = curr >= uint64(sz); ok {
new = curr - uint64(sz)
}
if m.rlimit.CompareAndSwap(curr, new) {
return
}
}
}
// ResetReadLimit sets the number of bytes allowed to be read from this message.
func (m *Message) ResetReadLimit(limit uint64) {
m.rlimitInit.Do(func() {})
m.rlimit.Store(limit)
}
// Unread increases the read limit by sz.
func (m *Message) Unread(sz Size) {
m.rlimitInit.Do(m.initReadLimit)
m.rlimit.Add(uint64(sz))
}
// Root returns the pointer to the message's root object.
func (m *Message) Root() (Ptr, error) {
s, err := m.Segment(0)
if err != nil {
return Ptr{}, exc.WrapError("read root", err)
}
p, err := s.root().At(0)
if err != nil {
return Ptr{}, exc.WrapError("read root", err)
}
return p, nil
}
// SetRoot sets the message's root object to p.
func (m *Message) SetRoot(p Ptr) error {
s, err := m.Segment(0)
if err != nil {
return exc.WrapError("set root", err)
}
if err := s.root().Set(0, p); err != nil {
return exc.WrapError("set root", err)
}
return nil
}
// CapTable is the indexed list of the clients referenced in the
// message. Capability pointers inside the message will use this
// table to map pointers to Clients. The table is populated by
// the RPC system.
//
// https://capnproto.org/encoding.html#capabilities-interfaces
func (m *Message) CapTable() *CapTable {
return &m.capTable
}
// Compute the total size of the message in bytes, when serialized as
// a stream. This is the same as the length of the slice returned by
// m.Marshal()
func (m *Message) TotalSize() (uint64, error) {
nsegs := uint64(m.NumSegments())
totalSize := (nsegs/2 + 1) * 8
for i := uint64(0); i < nsegs; i++ {
seg, err := m.Segment(SegmentID(i))
if err != nil {
return 0, err
}
totalSize += uint64(len(seg.Data()))
}
return totalSize, nil
}
func (m *Message) depthLimit() uint {
if m.DepthLimit != 0 {
return m.DepthLimit
}
return defaultDepthLimit
}
// NumSegments returns the number of segments in the message.
func (m *Message) NumSegments() int64 {
return int64(m.Arena.NumSegments())
}
// Segment returns the segment with the given ID.
func (m *Message) Segment(id SegmentID) (*Segment, error) {
seg := m.Arena.Segment(id)
if seg == nil {
return nil, errors.New("segment " + str.Utod(id) + " out of bounds in arena")
}
segMsg := seg.Message()
if segMsg == nil {
seg.BindTo(m)
} else if segMsg != m {
return nil, errors.New("segment " + str.Utod(id) + ": not of the same message")
}
return seg, nil
}
func (m *Message) WriteTo(w io.Writer) (int64, error) {
wc := &writeCounter{Writer: w}
err := NewEncoder(wc).Encode(m)
return wc.N, err
}
// Marshal concatenates the segments in the message into a single byte
// slice including framing.
func (m *Message) Marshal() ([]byte, error) {
// Compute buffer size.
nsegs := m.NumSegments()
if nsegs == 0 {
return nil, errors.New("marshal: message has no segments")
}
hdrSize := streamHeaderSize(SegmentID(nsegs - 1))
if hdrSize > uint64(maxInt) {
return nil, errors.New("marshal: header size overflows int")
}
var dataSize uint64
for i := int64(0); i < nsegs; i++ {
s, err := m.Segment(SegmentID(i))
if err != nil {
return nil, exc.WrapError("marshal", err)
}
n := uint64(len(s.data))
if n%uint64(wordSize) != 0 {
return nil, errors.New("marshal: segment " + str.Itod(i) + " not word-aligned")
}
if n > uint64(maxSegmentSize) {
return nil, errors.New("marshal: segment " + str.Itod(i) + " too large")
}
dataSize += n
if dataSize > uint64(maxInt) {
return nil, errors.New("marshal: message size overflows int")
}
}
total := hdrSize + dataSize
if total > uint64(maxInt) {
return nil, errors.New("marshal: message size overflows int")
}
// Fill buffer.
buf := make([]byte, int(hdrSize), int(total))
binary.LittleEndian.PutUint32(buf, uint32(nsegs-1))
for i := int64(0); i < nsegs; i++ {
s, err := m.Segment(SegmentID(i))
if err != nil {
return nil, exc.WrapError("marshal", err)
}
if len(s.data)%int(wordSize) != 0 {
return nil, errors.New("marshal: segment " + str.Itod(i) + " not word-aligned")
}
binary.LittleEndian.PutUint32(buf[int(i+1)*4:], uint32(len(s.data)/int(wordSize)))
buf = append(buf, s.data...)
}
return buf, nil
}
// MarshalPacked marshals the message in packed form.
func (m *Message) MarshalPacked() ([]byte, error) {
data, err := m.Marshal()
if err != nil {
return nil, err
}
buf := make([]byte, 0, len(data))
buf = packed.Pack(buf, data)
return buf, nil
}
type writeCounter struct {
N int64
io.Writer
}
func (wc *writeCounter) Write(b []byte) (n int, err error) {
n, err = wc.Writer.Write(b)
wc.N += int64(n)
return
}
// alloc allocates sz zero-filled bytes. It prefers using s, but may
// use a different segment in the same message if there's not sufficient
// capacity.
func alloc(s *Segment, sz Size) (*Segment, address, error) {
if sz > maxAllocSize() {
return nil, 0, errors.New("allocation: too large")
}
sz = sz.padToWord()
msg := s.Message()
if msg == nil {
return nil, 0, errors.New("segment does not have a message assotiated with it")
}
if msg.Arena == nil {
return nil, 0, errors.New("message does not have an arena")
}
// TODO: From this point on, this could be changed to be a requirement
// for Arena implementations instead of relying on alloc() to do it.
s, addr, err := msg.Arena.Allocate(sz, msg, s)
if err != nil {
return s, addr, err
}
end, ok := addr.addSize(sz)
if !ok {
return nil, 0, errors.New("allocation: address overflow")
}
zeroSlice(s.data[addr:end])
return s, addr, nil
}