1
2
3
4
5 package cryptobyte
6
7 import (
8 "errors"
9 "fmt"
10 )
11
12
13
14
15
16
17
18
19
20
21
22
23 type Builder struct {
24 err error
25 result []byte
26 fixedSize bool
27 child *Builder
28 offset int
29 pendingLenLen int
30 pendingIsASN1 bool
31 inContinuation *bool
32 }
33
34
35
36
37 func NewBuilder(buffer []byte) *Builder {
38 return &Builder{
39 result: buffer,
40 }
41 }
42
43
44
45
46 func NewFixedBuilder(buffer []byte) *Builder {
47 return &Builder{
48 result: buffer,
49 fixedSize: true,
50 }
51 }
52
53
54
55 func (b *Builder) SetError(err error) {
56 b.err = err
57 }
58
59
60
61 func (b *Builder) Bytes() ([]byte, error) {
62 if b.err != nil {
63 return nil, b.err
64 }
65 return b.result[b.offset:], nil
66 }
67
68
69
70 func (b *Builder) BytesOrPanic() []byte {
71 if b.err != nil {
72 panic(b.err)
73 }
74 return b.result[b.offset:]
75 }
76
77
78 func (b *Builder) AddUint8(v uint8) {
79 b.add(byte(v))
80 }
81
82
83 func (b *Builder) AddUint16(v uint16) {
84 b.add(byte(v>>8), byte(v))
85 }
86
87
88
89 func (b *Builder) AddUint24(v uint32) {
90 b.add(byte(v>>16), byte(v>>8), byte(v))
91 }
92
93
94 func (b *Builder) AddUint32(v uint32) {
95 b.add(byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
96 }
97
98
99 func (b *Builder) AddBytes(v []byte) {
100 b.add(v...)
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 type BuilderContinuation func(child *Builder)
126
127
128
129
130 type BuildError struct {
131 Err error
132 }
133
134
135 func (b *Builder) AddUint8LengthPrefixed(f BuilderContinuation) {
136 b.addLengthPrefixed(1, false, f)
137 }
138
139
140 func (b *Builder) AddUint16LengthPrefixed(f BuilderContinuation) {
141 b.addLengthPrefixed(2, false, f)
142 }
143
144
145 func (b *Builder) AddUint24LengthPrefixed(f BuilderContinuation) {
146 b.addLengthPrefixed(3, false, f)
147 }
148
149
150 func (b *Builder) AddUint32LengthPrefixed(f BuilderContinuation) {
151 b.addLengthPrefixed(4, false, f)
152 }
153
154 func (b *Builder) callContinuation(f BuilderContinuation, arg *Builder) {
155 if !*b.inContinuation {
156 *b.inContinuation = true
157
158 defer func() {
159 *b.inContinuation = false
160
161 r := recover()
162 if r == nil {
163 return
164 }
165
166 if buildError, ok := r.(BuildError); ok {
167 b.err = buildError.Err
168 } else {
169 panic(r)
170 }
171 }()
172 }
173
174 f(arg)
175 }
176
177 func (b *Builder) addLengthPrefixed(lenLen int, isASN1 bool, f BuilderContinuation) {
178
179 if b.err != nil {
180 return
181 }
182
183 offset := len(b.result)
184 b.add(make([]byte, lenLen)...)
185
186 if b.inContinuation == nil {
187 b.inContinuation = new(bool)
188 }
189
190 b.child = &Builder{
191 result: b.result,
192 fixedSize: b.fixedSize,
193 offset: offset,
194 pendingLenLen: lenLen,
195 pendingIsASN1: isASN1,
196 inContinuation: b.inContinuation,
197 }
198
199 b.callContinuation(f, b.child)
200 b.flushChild()
201 if b.child != nil {
202 panic("cryptobyte: internal error")
203 }
204 }
205
206 func (b *Builder) flushChild() {
207 if b.child == nil {
208 return
209 }
210 b.child.flushChild()
211 child := b.child
212 b.child = nil
213
214 if child.err != nil {
215 b.err = child.err
216 return
217 }
218
219 length := len(child.result) - child.pendingLenLen - child.offset
220
221 if length < 0 {
222 panic("cryptobyte: internal error")
223 }
224
225 if child.pendingIsASN1 {
226
227
228
229 if child.pendingLenLen != 1 {
230 panic("cryptobyte: internal error")
231 }
232 var lenLen, lenByte uint8
233 if int64(length) > 0xfffffffe {
234 b.err = errors.New("pending ASN.1 child too long")
235 return
236 } else if length > 0xffffff {
237 lenLen = 5
238 lenByte = 0x80 | 4
239 } else if length > 0xffff {
240 lenLen = 4
241 lenByte = 0x80 | 3
242 } else if length > 0xff {
243 lenLen = 3
244 lenByte = 0x80 | 2
245 } else if length > 0x7f {
246 lenLen = 2
247 lenByte = 0x80 | 1
248 } else {
249 lenLen = 1
250 lenByte = uint8(length)
251 length = 0
252 }
253
254
255
256 child.result[child.offset] = lenByte
257 extraBytes := int(lenLen - 1)
258 if extraBytes != 0 {
259 child.add(make([]byte, extraBytes)...)
260 childStart := child.offset + child.pendingLenLen
261 copy(child.result[childStart+extraBytes:], child.result[childStart:])
262 }
263 child.offset++
264 child.pendingLenLen = extraBytes
265 }
266
267 l := length
268 for i := child.pendingLenLen - 1; i >= 0; i-- {
269 child.result[child.offset+i] = uint8(l)
270 l >>= 8
271 }
272 if l != 0 {
273 b.err = fmt.Errorf("cryptobyte: pending child length %d exceeds %d-byte length prefix", length, child.pendingLenLen)
274 return
275 }
276
277 if b.fixedSize && &b.result[0] != &child.result[0] {
278 panic("cryptobyte: BuilderContinuation reallocated a fixed-size buffer")
279 }
280
281 b.result = child.result
282 }
283
284 func (b *Builder) add(bytes ...byte) {
285 if b.err != nil {
286 return
287 }
288 if b.child != nil {
289 panic("cryptobyte: attempted write while child is pending")
290 }
291 if len(b.result)+len(bytes) < len(bytes) {
292 b.err = errors.New("cryptobyte: length overflow")
293 }
294 if b.fixedSize && len(b.result)+len(bytes) > cap(b.result) {
295 b.err = errors.New("cryptobyte: Builder is exceeding its fixed-size buffer")
296 return
297 }
298 b.result = append(b.result, bytes...)
299 }
300
301
302
303
304 func (b *Builder) Unwrite(n int) {
305 if b.err != nil {
306 return
307 }
308 if b.child != nil {
309 panic("cryptobyte: attempted unwrite while child is pending")
310 }
311 length := len(b.result) - b.pendingLenLen - b.offset
312 if length < 0 {
313 panic("cryptobyte: internal error")
314 }
315 if n > length {
316 panic("cryptobyte: attempted to unwrite more than was written")
317 }
318 b.result = b.result[:len(b.result)-n]
319 }
320
321
322 type MarshalingValue interface {
323
324
325
326 Marshal(b *Builder) error
327 }
328
329
330
331
332 func (b *Builder) AddValue(v MarshalingValue) {
333 err := v.Marshal(b)
334 if err != nil {
335 b.err = err
336 }
337 }
338
View as plain text