chiark / gitweb /
1fc1f8336bfe65cf14b5934987ac11c0f7d1ba93
[chiark-tcl.git] / crypto / crypto.c
1 /*
2  */
3
4 #include <endian.h>
5
6 #include "hbytes.h"
7 #include "tables.h"
8 #include "serpent.h"
9
10 void memxor(Byte *dest, const Byte *src, int l) {
11   while (l--) *dest++ ^= *src++;
12 }
13
14 const PadMethod padmethods[]= {
15   { "un", 0, 0 },
16   { "ua", 0, 1 },
17   { "pn", 1, 0 },
18   { "pa", 1, 1 },
19   { 0 }
20 };
21
22 int do_hbytes_pkcs5(ClientData cd, Tcl_Interp *ip,
23                     const PadMethod *meth, HBytes_Var v, Tcl_Obj *block,
24                     int *ok) {
25   int rc, blocksize, padlen, old_len, i;
26   Byte *padding;
27   const Byte *unpad;
28   
29   if (meth->use_algname) {
30     const BlockCipherAlgInfo *alg;
31     alg= enum_lookup_cached(ip,block,blockcipheralginfos,"cipher alg for pad");
32     if (!alg) return TCL_ERROR;
33     blocksize= alg->blocksize;
34   } else {
35     rc= Tcl_GetIntFromObj(ip, block, &blocksize);  if (rc) return rc;
36     if (blocksize < 1 || blocksize > 255)
37       return staticerr(ip, "block size out of pkcs#5 range 1..255", 0);
38   }
39
40   if (meth->pad) {
41     padlen= blocksize - (hbytes_len(v.hb) % blocksize);
42     padding= hbytes_append(v.hb, padlen);
43     memset(padding, padlen, padlen);
44   } else {
45     old_len= hbytes_len(v.hb);  if (old_len % blocksize) goto bad;
46     unpad= hbytes_unappend(v.hb, 1);  if (!unpad) goto bad;
47     padlen= *unpad;
48     if (padlen < 1 || padlen > blocksize) goto bad;
49     unpad= hbytes_unappend(v.hb, padlen-1);  if (!unpad) goto bad;
50     for (i=0; i<padlen-1; i++, unpad++) if (*unpad != padlen) goto bad;
51   }
52
53   *ok= 1;
54   return TCL_OK;
55
56  bad:
57   *ok= 0;
58   return TCL_OK;
59 }
60
61 int do_hbytes_hash(ClientData cd, Tcl_Interp *ip, const HashAlgInfo *alg,
62                    HBytes_Value message, HBytes_Value *result) {
63   Byte *dest;
64
65   dest= hbytes_arrayspace(result,alg->hashsize);
66   alg->oneshot(dest, hbytes_data(&message), hbytes_len(&message));
67   return TCL_OK;
68 }
69
70 #define OBJ_CIPHKEY(o) ((CiphKeyValue*)(o)->internalRep.otherValuePtr)
71
72 typedef struct {
73   int valuelen, bufferslen;
74   Byte *value, *buffers;
75   const void *alg;
76   void *alpha, *beta; /* key schedules etc.; each may be 0 */
77 } CiphKeyValue;
78
79 static void freealg(CiphKeyValue *key) {
80   TFREE(key->alpha);
81   TFREE(key->beta);
82 }
83
84 static void key_t_free(Tcl_Obj *obj) {
85   CiphKeyValue *key= OBJ_CIPHKEY(obj);
86   freealg(key);
87   TFREE(key->value);
88   TFREE(key->buffers);
89 }
90
91 static void noalg(CiphKeyValue *key) {
92   key->alg= 0;
93   key->alpha= key->beta= 0;
94 }
95
96 static void key_t_dup(Tcl_Obj *src_obj, Tcl_Obj *dup_obj) {
97   CiphKeyValue *src= OBJ_CIPHKEY(src_obj);
98   CiphKeyValue *dup= TALLOC(sizeof(*dup));
99   dup->valuelen= src->valuelen;
100   dup->value= src->valuelen ? TALLOC(src->valuelen) : 0;
101   dup->buffers= 0; dup->bufferslen= 0;
102   memcpy(dup->value, src->value, src->valuelen);
103   noalg(dup);
104   dup_obj->internalRep.otherValuePtr= dup;
105   dup_obj->typePtr= &blockcipherkey_type;
106 }
107
108 static void key_t_ustr(Tcl_Obj *o) {
109   obj_updatestr_array(o, OBJ_CIPHKEY(o)->value, OBJ_CIPHKEY(o)->valuelen);
110 }
111
112 static int key_t_sfa(Tcl_Interp *ip, Tcl_Obj *o) {
113   int rc, l;
114   CiphKeyValue *val;
115
116   rc= Tcl_ConvertToType(ip,o,&hbytes_type);  if (rc) return rc;
117   val= TALLOC(sizeof(*val));
118   val->valuelen= l= hbytes_len(OBJ_HBYTES(o));
119   val->value= TALLOC(l);
120   val->buffers= 0;
121   val->bufferslen= 0;
122   memcpy(val->value, hbytes_data(OBJ_HBYTES(o)), l);
123   noalg(val);
124
125   objfreeir(o);
126   o->internalRep.otherValuePtr= val;
127   o->typePtr= &blockcipherkey_type;
128
129   return TCL_OK;
130 }
131   
132 Tcl_ObjType blockcipherkey_type = {
133   "blockcipher-key",
134   key_t_free, key_t_dup, key_t_ustr, key_t_sfa
135 };
136
137 static CiphKeyValue *get_key(Tcl_Interp *ip, Tcl_Obj *key_obj,
138                              const void *alg, int want_bufferslen) {
139   CiphKeyValue *key;
140   int rc;
141   
142   rc= Tcl_ConvertToType(ip,key_obj,&blockcipherkey_type);  if (rc) return 0;
143   key= OBJ_CIPHKEY(key_obj);
144
145   if (key->alg != alg) {
146     freealg(key);
147     noalg(key);
148     key->alg= alg;
149   }
150   
151   if (key->bufferslen < want_bufferslen) {
152     TFREE(key->buffers);
153     key->buffers= TALLOC(want_bufferslen);
154     key->bufferslen= want_bufferslen;
155   }
156   return key;
157 }
158
159 int do_hbytes_blockcipher(ClientData cd, Tcl_Interp *ip,
160                           const BlockCipherOp *op,
161                           int objc, Tcl_Obj *const *objv) {
162   return op->func((void*)op,ip,objc,objv);
163 }
164
165 static int blockcipher_prep(Tcl_Interp *ip, Tcl_Obj *key_obj,
166                             const HBytes_Value *iv, int decrypt,
167                             const BlockCipherAlgInfo *alg,
168                             const BlockCipherModeInfo *mode, int data_len,
169                             const CiphKeyValue **key_r, const void **sched_r,
170                             const Byte **iv_r, int *iv_lenbytes_r,
171                             Byte **buffers_r, int *nblocks_r) {
172   void *sched, **schedp;
173   int want_bufferslen, want_iv;
174   int rc;
175   CiphKeyValue *key;
176
177   if (data_len % alg->blocksize)
178     return staticerr(ip, "block cipher input not whole number of blocks",
179                      "HBYTES BLOCKCIPHER LENGTH");
180
181   want_bufferslen= alg->blocksize * (mode->buf_blocks + mode->iv_blocks);
182   key= get_key(ip, key_obj, alg, want_bufferslen);  if (!key) return TCL_ERROR;
183
184   schedp= (alg->decrypt.make_schedule==alg->encrypt.make_schedule
185            || !decrypt) ? &key->alpha : &key->beta;
186   sched= *schedp;
187   if (!sched) {
188     if (key->valuelen < alg->key_min)
189       return staticerr(ip, "key too short", "HBYTES BLOCKCIPHER PARAMS");
190     if (key->valuelen > alg->key_max)
191       return staticerr(ip, "key too long", "HBYTES BLOCKCIPHER PARAMS");
192
193     sched= TALLOC(alg->schedule_size);
194     (decrypt ? &alg->decrypt : &alg->encrypt)->make_schedule
195       (sched, key->value, key->valuelen);
196     *schedp= sched;
197   }
198
199   want_iv= alg->blocksize * mode->iv_blocks;
200   if (!want_iv) {
201     if (!hbytes_issentinel(iv))
202       return staticerr(ip,"iv supplied but mode does not take one", 0);
203   } else if (hbytes_issentinel(iv)) {
204     if (decrypt) return staticerr(ip,"must supply iv when decrypting", 0);
205     rc= get_urandom(ip, key->buffers, want_iv);
206     if (rc) return rc;
207   } else {
208     int iv_supplied= hbytes_len(iv);
209     if (iv_supplied > want_iv)
210       return staticerr(ip, "iv too large for algorithm and mode",
211                        "HBYTES BLOCKCIPHER PARAMS");
212     memcpy(key->buffers, hbytes_data(iv), iv_supplied);
213     memset(key->buffers + iv_supplied, 0, want_iv - iv_supplied);
214   }
215
216   *key_r= key;
217   *sched_r= sched;
218
219   *iv_r= key->buffers;
220   *iv_lenbytes_r= want_iv;
221
222   *buffers_r= key->buffers + want_iv;
223   *nblocks_r= data_len / alg->blocksize;
224   
225   return TCL_OK;
226 }
227
228 int do_blockcipherop_d(ClientData cd, Tcl_Interp *ip,
229                        HBytes_Var v, const BlockCipherAlgInfo *alg,
230                        Tcl_Obj *key_obj, const BlockCipherModeInfo *mode,
231                        HBytes_Value iv, HBytes_Value *result) {
232   return do_blockcipherop_e(cd,ip,v,alg,key_obj,mode,iv,result);
233 }
234
235 int do_blockcipherop_e(ClientData cd, Tcl_Interp *ip,
236                        HBytes_Var v, const BlockCipherAlgInfo *alg,
237                        Tcl_Obj *key_obj, const BlockCipherModeInfo *mode,
238                        HBytes_Value iv, HBytes_Value *result) {
239   const BlockCipherOp *op= (const void*)cd;
240   int encrypt= op->encrypt;
241   int rc, iv_lenbytes;
242   const CiphKeyValue *key;
243   const char *failure;
244   const Byte *ivbuf;
245   Byte *buffers;
246   const void *sched;
247   int nblocks;
248
249   if (!mode->encrypt)
250     return staticerr(ip, "mode does not support encrypt/decrypt", 0);
251
252   rc= blockcipher_prep(ip,key_obj,&iv,!encrypt,
253                        alg,mode, hbytes_len(v.hb),
254                        &key,&sched,
255                        &ivbuf,&iv_lenbytes,
256                        &buffers,&nblocks);
257   if (rc) return rc;
258   
259   failure=
260     (encrypt ? mode->encrypt : mode->decrypt)
261     (hbytes_data(v.hb), nblocks, ivbuf, buffers, alg, encrypt, sched);
262
263   if (failure)
264     return staticerr(ip, failure, "HBYTES BLOCKCIPHER CRYPTFAIL CRYPT");
265
266   hbytes_array(result, ivbuf, iv_lenbytes);
267
268   return TCL_OK;
269 }
270
271 int do_blockcipherop_mac(ClientData cd, Tcl_Interp *ip,
272                          HBytes_Value msg, const BlockCipherAlgInfo *alg,
273                          Tcl_Obj *key_obj, const BlockCipherModeInfo *mode,
274                          HBytes_Value iv, HBytes_Value *result) {
275   const CiphKeyValue *key;
276   const char *failure;
277   const Byte *ivbuf;
278   Byte *buffers;
279   const void *sched;
280   int nblocks, iv_lenbytes;
281   int rc;
282
283   if (!mode->mac)
284     return staticerr(ip, "mode does not support mac generation", 0);
285   
286   rc= blockcipher_prep(ip,key_obj,&iv,0,
287                        alg,mode, hbytes_len(&msg),
288                        &key,&sched,
289                        &ivbuf,&iv_lenbytes,
290                        &buffers,&nblocks);
291   if (rc) return rc;
292
293   failure= mode->mac(hbytes_data(&msg), nblocks, ivbuf, buffers, alg, sched);
294   if (failure)
295     return staticerr(ip,failure, "HBYTES BLOCKCIPHER CRYPTFAIL MAC");
296
297   hbytes_array(result, buffers, alg->blocksize * mode->mac_blocks);
298
299   return TCL_OK;
300 }
301
302 int do_hbytes_hmac(ClientData cd, Tcl_Interp *ip, const HashAlgInfo *alg,
303                    HBytes_Value message, Tcl_Obj *key_obj,
304                    Tcl_Obj *maclen_obj, HBytes_Value *result) {
305   /* key->alpha = state after H(K XOR ipad <unfinished>
306    * key->beta = state after H(K XOR opad <unfinished>
307    * key->buffers = room for one block, or one state
308    */
309   CiphKeyValue *key;
310   Byte *dest;
311   int i, ml, rc;
312
313   if (maclen_obj) {
314     rc= Tcl_GetIntFromObj(ip, maclen_obj, &ml);  if (rc) return rc;
315     if (ml<0 || ml>alg->hashsize)
316       return staticerr(ip, "requested hmac output size out of range",
317                        "HBYTES HMAC PARAMS");
318   } else {
319     ml= alg->hashsize;
320   }
321
322   key= get_key(ip, key_obj, alg,
323                alg->blocksize > alg->statesize
324                ? alg->blocksize : alg->statesize);
325
326   if (!key->alpha) {
327     assert(!key->beta);
328     
329     if (key->valuelen > alg->blocksize)
330       return staticerr(ip, "key to hmac longer than hash block size",
331                        "HBYTES HMAC PARAMS");
332
333     memcpy(key->buffers, key->value, key->valuelen);
334     memset(key->buffers + key->valuelen, 0, alg->blocksize - key->valuelen);
335     for (i=0; i<alg->blocksize; i++) key->buffers[i] ^= 0x36;
336
337     key->alpha= TALLOC(alg->statesize);
338     alg->init(key->alpha);
339     alg->update(key->alpha, key->buffers, alg->blocksize);
340     
341     key->beta= TALLOC(alg->statesize);
342     alg->init(key->beta);
343     for (i=0; i<alg->blocksize; i++) key->buffers[i] ^= (0x5c ^ 0x36);
344     alg->update(key->beta, key->buffers, alg->blocksize);
345   }
346   assert(key->beta);
347
348   dest= hbytes_arrayspace(result, alg->hashsize);
349
350   memcpy(key->buffers, key->alpha, alg->statesize);
351   alg->update(key->buffers, hbytes_data(&message), hbytes_len(&message));
352   alg->final(key->buffers, dest);
353
354   memcpy(key->buffers, key->beta, alg->statesize);
355   alg->update(key->buffers, dest, alg->hashsize);
356   alg->final(key->buffers, dest);
357
358   hbytes_unappend(result, alg->hashsize - ml);
359
360   return TCL_OK;
361 }