Source file
src/crypto/aes/gcm_s390x.go
1
2
3
4
5 package aes
6
7 import (
8 "crypto/cipher"
9 "crypto/internal/alias"
10 "crypto/subtle"
11 "encoding/binary"
12 "errors"
13 "internal/cpu"
14 )
15
16
17
18
19
20
21
22 type gcmCount [16]byte
23
24
25 func (x *gcmCount) inc() {
26 binary.BigEndian.PutUint32(x[len(x)-4:], binary.BigEndian.Uint32(x[len(x)-4:])+1)
27 }
28
29
30 func gcmLengths(len0, len1 uint64) [16]byte {
31 v := [16]byte{}
32 binary.BigEndian.PutUint64(v[0:], len0)
33 binary.BigEndian.PutUint64(v[8:], len1)
34 return v
35 }
36
37
38 type gcmHashKey [16]byte
39
40 type gcmAsm struct {
41 block *aesCipherAsm
42 hashKey gcmHashKey
43 nonceSize int
44 tagSize int
45 }
46
47 const (
48 gcmBlockSize = 16
49 gcmTagSize = 16
50 gcmMinimumTagSize = 12
51 gcmStandardNonceSize = 12
52 )
53
54 var errOpen = errors.New("cipher: message authentication failed")
55
56
57 var _ gcmAble = (*aesCipherAsm)(nil)
58
59
60
61 func (c *aesCipherAsm) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
62 var hk gcmHashKey
63 c.Encrypt(hk[:], hk[:])
64 g := gcmAsm{
65 block: c,
66 hashKey: hk,
67 nonceSize: nonceSize,
68 tagSize: tagSize,
69 }
70 if cpu.S390X.HasAESGCM {
71 g := gcmKMA{g}
72 return &g, nil
73 }
74 return &g, nil
75 }
76
77 func (g *gcmAsm) NonceSize() int {
78 return g.nonceSize
79 }
80
81 func (g *gcmAsm) Overhead() int {
82 return g.tagSize
83 }
84
85
86
87
88
89 func sliceForAppend(in []byte, n int) (head, tail []byte) {
90 if total := len(in) + n; cap(in) >= total {
91 head = in[:total]
92 } else {
93 head = make([]byte, total)
94 copy(head, in)
95 }
96 tail = head[len(in):]
97 return
98 }
99
100
101
102
103
104
105 func ghash(key *gcmHashKey, hash *[16]byte, data []byte)
106
107
108
109 func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
110 siz := len(data) &^ 0xf
111 if siz > 0 {
112 ghash(&g.hashKey, hash, data[:siz])
113 data = data[siz:]
114 }
115 if len(data) > 0 {
116 var s [16]byte
117 copy(s[:], data)
118 ghash(&g.hashKey, hash, s[:])
119 }
120 }
121
122
123
124
125
126
127
128
129
130
131
132
133 func cryptBlocksGCM(fn code, key, dst, src, buf []byte, cnt *gcmCount)
134
135
136
137
138
139 func (g *gcmAsm) counterCrypt(dst, src []byte, cnt *gcmCount) {
140
141
142
143 var ctrbuf, srcbuf [2048]byte
144 for len(src) >= 16 {
145 siz := len(src)
146 if len(src) > len(ctrbuf) {
147 siz = len(ctrbuf)
148 }
149 siz &^= 0xf
150 copy(srcbuf[:], src[:siz])
151 cryptBlocksGCM(g.block.function, g.block.key, dst[:siz], srcbuf[:siz], ctrbuf[:], cnt)
152 src = src[siz:]
153 dst = dst[siz:]
154 }
155 if len(src) > 0 {
156 var x [16]byte
157 g.block.Encrypt(x[:], cnt[:])
158 for i := range src {
159 dst[i] = src[i] ^ x[i]
160 }
161 cnt.inc()
162 }
163 }
164
165
166
167 func (g *gcmAsm) deriveCounter(nonce []byte) gcmCount {
168
169
170
171
172
173
174 var counter gcmCount
175 if len(nonce) == gcmStandardNonceSize {
176 copy(counter[:], nonce)
177 counter[gcmBlockSize-1] = 1
178 } else {
179 var hash [16]byte
180 g.paddedGHASH(&hash, nonce)
181 lens := gcmLengths(0, uint64(len(nonce))*8)
182 g.paddedGHASH(&hash, lens[:])
183 copy(counter[:], hash[:])
184 }
185 return counter
186 }
187
188
189
190 func (g *gcmAsm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
191 var hash [16]byte
192 g.paddedGHASH(&hash, additionalData)
193 g.paddedGHASH(&hash, ciphertext)
194 lens := gcmLengths(uint64(len(additionalData))*8, uint64(len(ciphertext))*8)
195 g.paddedGHASH(&hash, lens[:])
196
197 copy(out, hash[:])
198 for i := range out {
199 out[i] ^= tagMask[i]
200 }
201 }
202
203
204
205 func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
206 if len(nonce) != g.nonceSize {
207 panic("crypto/cipher: incorrect nonce length given to GCM")
208 }
209 if uint64(len(plaintext)) > ((1<<32)-2)*BlockSize {
210 panic("crypto/cipher: message too large for GCM")
211 }
212
213 ret, out := sliceForAppend(dst, len(plaintext)+g.tagSize)
214 if alias.InexactOverlap(out[:len(plaintext)], plaintext) {
215 panic("crypto/cipher: invalid buffer overlap")
216 }
217
218 counter := g.deriveCounter(nonce)
219
220 var tagMask [gcmBlockSize]byte
221 g.block.Encrypt(tagMask[:], counter[:])
222 counter.inc()
223
224 var tagOut [gcmTagSize]byte
225 g.counterCrypt(out, plaintext, &counter)
226 g.auth(tagOut[:], out[:len(plaintext)], data, &tagMask)
227 copy(out[len(plaintext):], tagOut[:])
228
229 return ret
230 }
231
232
233
234 func (g *gcmAsm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
235 if len(nonce) != g.nonceSize {
236 panic("crypto/cipher: incorrect nonce length given to GCM")
237 }
238
239
240 if g.tagSize < gcmMinimumTagSize {
241 panic("crypto/cipher: incorrect GCM tag size")
242 }
243 if len(ciphertext) < g.tagSize {
244 return nil, errOpen
245 }
246 if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
247 return nil, errOpen
248 }
249
250 tag := ciphertext[len(ciphertext)-g.tagSize:]
251 ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
252
253 counter := g.deriveCounter(nonce)
254
255 var tagMask [gcmBlockSize]byte
256 g.block.Encrypt(tagMask[:], counter[:])
257 counter.inc()
258
259 var expectedTag [gcmTagSize]byte
260 g.auth(expectedTag[:], ciphertext, data, &tagMask)
261
262 ret, out := sliceForAppend(dst, len(ciphertext))
263 if alias.InexactOverlap(out, ciphertext) {
264 panic("crypto/cipher: invalid buffer overlap")
265 }
266
267 if subtle.ConstantTimeCompare(expectedTag[:g.tagSize], tag) != 1 {
268
269
270
271
272 for i := range out {
273 out[i] = 0
274 }
275 return nil, errOpen
276 }
277
278 g.counterCrypt(out, ciphertext, &counter)
279 return ret, nil
280 }
281
282
283
284 type gcmKMA struct {
285 gcmAsm
286 }
287
288
289 const (
290 kmaHS = 1 << 10
291 kmaLAAD = 1 << 9
292 kmaLPC = 1 << 8
293 kmaDecrypt = 1 << 7
294 )
295
296
297
298
299
300
301
302 func kmaGCM(fn code, key, dst, src, aad []byte, tag *[16]byte, cnt *gcmCount)
303
304
305
306 func (g *gcmKMA) Seal(dst, nonce, plaintext, data []byte) []byte {
307 if len(nonce) != g.nonceSize {
308 panic("crypto/cipher: incorrect nonce length given to GCM")
309 }
310 if uint64(len(plaintext)) > ((1<<32)-2)*BlockSize {
311 panic("crypto/cipher: message too large for GCM")
312 }
313
314 ret, out := sliceForAppend(dst, len(plaintext)+g.tagSize)
315 if alias.InexactOverlap(out[:len(plaintext)], plaintext) {
316 panic("crypto/cipher: invalid buffer overlap")
317 }
318
319 counter := g.deriveCounter(nonce)
320 fc := g.block.function | kmaLAAD | kmaLPC
321
322 var tag [gcmTagSize]byte
323 kmaGCM(fc, g.block.key, out[:len(plaintext)], plaintext, data, &tag, &counter)
324 copy(out[len(plaintext):], tag[:])
325
326 return ret
327 }
328
329
330
331 func (g *gcmKMA) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
332 if len(nonce) != g.nonceSize {
333 panic("crypto/cipher: incorrect nonce length given to GCM")
334 }
335 if len(ciphertext) < g.tagSize {
336 return nil, errOpen
337 }
338 if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
339 return nil, errOpen
340 }
341
342 tag := ciphertext[len(ciphertext)-g.tagSize:]
343 ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
344 ret, out := sliceForAppend(dst, len(ciphertext))
345 if alias.InexactOverlap(out, ciphertext) {
346 panic("crypto/cipher: invalid buffer overlap")
347 }
348
349 if g.tagSize < gcmMinimumTagSize {
350 panic("crypto/cipher: incorrect GCM tag size")
351 }
352
353 counter := g.deriveCounter(nonce)
354 fc := g.block.function | kmaLAAD | kmaLPC | kmaDecrypt
355
356 var expectedTag [gcmTagSize]byte
357 kmaGCM(fc, g.block.key, out[:len(ciphertext)], ciphertext, data, &expectedTag, &counter)
358
359 if subtle.ConstantTimeCompare(expectedTag[:g.tagSize], tag) != 1 {
360
361
362
363
364 for i := range out {
365 out[i] = 0
366 }
367 return nil, errOpen
368 }
369
370 return ret, nil
371 }
372
View as plain text