-
Notifications
You must be signed in to change notification settings - Fork 0
/
cryptomodule.c
550 lines (456 loc) · 17.6 KB
/
cryptomodule.c
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/**
* @arquivo cryptomodule.c
* @autores Adriano Munin, Fabio Irokawa, Iago Lourenço e Lucas Coutinho
* @data Setembro 2019
* @versão 0.1
* @descrição Projeto de SOB para a crição de um módulo de kernel linux.
* @veja http://github.com/iaglourenco/CryptoModule para saber mais.
*/
#include <linux/init.h> //Funçoes __init, __exit
#include <linux/module.h> //Necessario pra qualquer modulo de kernel
#include <linux/device.h> // Suporte para modulos de dispositivos
#include <linux/kernel.h> //macros do kernel
#include <linux/fs.h> // Suporte ao sistema de arquivos linux
#include <linux/uaccess.h> //Função copy_to_user
#include <linux/crypto.h> //Funçoes de criptografia
#include <crypto/skcipher.h> //Funçoes de criptografia
#include <linux/mutex.h>
#include <linux/scatterlist.h>
#include <crypto/internal/hash.h>
#include <linux/vmalloc.h>
#define DEVICE_NAME "crypto" //Nome do dispositivo, aparece em /dev/crypto
#define CLASS_NAME "cryptomodule"
#define BLOCK_SIZE_C 16
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Adriano Munin, Fabio Irokawa, Iago Lourenço, Lucas Coutinho");
MODULE_DESCRIPTION("Modulo de criptografia");
MODULE_VERSION("0.1");
static int majorNumber; //Guarda o numero do dispositivo
static int numAberturas = 0; //Conta quantas vezes o dispositivo foi aberto
static struct class* cryptoClass = NULL; //O ponteiro para a struct de classe
static struct device* cryptoDev = NULL;//O ponteiro para a struct de dispositivo
/* Struct que guarda o resultado da cripto ou descriptografia */
struct tcrypt_result {
struct completion completion;
int err;
};
/* Junção com todas as structs utilizadas pelas funçoes de cryptografia */
struct skcipher_def {
struct scatterlist sg[3];
struct crypto_skcipher *tfm;
struct skcipher_request *req;
struct tcrypt_result result;
struct crypto_wait wait;
};
/*
* module_param_array(name, type, num, perm);
* The first param is the parameter's (in this case the array's) name
* The second param is the data type of the elements of the array
* The third argument is a pointer to the variable that will store the number
* of elements of the array initialized by the user at module loading time
* The fourth argument is the permission bits
*/
char *key,*iv,*tempIv,*tempKey;
char *ivC;
char *keyC;//Guarda o array de strings recebidos do usuario
static int tamIv=0;
static int tamKey=0; //Para se lembrar do tamanho das strings
//static char cryptokey[32];
//static char cryptoiv[32];
static DEFINE_MUTEX(crypto_mutex);
static int tamInput;
static char *encrypted;
static int tamSaida;
static char *decrypted;
//static int tamSaida;
static char hash[42]={0};
static char hashAscii[41]={0};
//static int tamSaida;
static char *ivLocal;
int pos,i;
char op;
char buf;
module_param(iv,charp,0000);
MODULE_PARM_DESC(iv,"Vetor de inicialização");
module_param(key,charp,0000);
MODULE_PARM_DESC(key,"Chave de criptografia");
//Prototipo das funçoes
static int dev_open(struct inode *, struct file *);
static int dev_release(struct inode *, struct file *);
static ssize_t dev_read(struct file *,char *,size_t,loff_t * );
static ssize_t dev_write(struct file *, const char *,size_t,loff_t *);
static void init_cifra(char *msgInput, char *msgOutput, int opc);
static void ascii2hexa(unsigned char *in, char *out, int len);
static int unpadding(char *string, int len);
static void padding(char *string, int len);
static void init_hash(char *textIn, char *digest, int qtdChar);
int converteASCII(char *string, char *ascii){
char temp[2];
int i;
int cont = 0;
int tam = strlen(string);
for(i = 0; i < tam; i+=2){
temp[0] = string[i];
temp[1] = string[i+1];
sscanf(temp, "%hhx", &ascii[cont]);
cont++;
}
return 1;
}
//Estrutura que define qual função chamar quando
//o dispositivo é requisitado
static struct file_operations fops =
{
.open = dev_open,
.release = dev_release,
.read = dev_read,
.write = dev_write,
};
//função do nascimento do módulo
static int __init crypto_init(void){
mutex_init(&crypto_mutex);
if(iv!=NULL) tamIv=strlen(iv);
if(key!=NULL) tamKey=strlen(key);
tempIv=vmalloc(32);
tempKey=vmalloc(32);
keyC=vmalloc(16);
ivC=vmalloc(16);
memcpy(tempIv,iv,strlen(iv));
memcpy(tempKey,key,strlen(key));
if(tamIv < 32) {
padding(tempIv,tamIv);
}
if(tamKey < 32)
{
padding(tempKey,tamKey);
}
tempIv[32]='\0';
tempKey[32]='\0';
printk(KERN_INFO "CRYPTO--> key =%s\n",tempKey);
printk(KERN_INFO "CRYPTO--> iv =%s\n",tempIv);
converteASCII(tempKey,keyC);
converteASCII(tempIv,ivC);
keyC[16]='\0';
ivC[16]='\0';
/*Tento alocar um majorNumber para o dispositivo*/
majorNumber = register_chrdev(0,DEVICE_NAME,&fops);
if(majorNumber<0){//majorNumbers sao numeros entre 0 e 256
printk(KERN_ALERT "CRYPTO--> FALHA NO REGISTRO DO DISPOSITIVO\n");
return majorNumber;
}
printk(KERN_INFO "CRYPTO--> Dispositivo criado com o mj=%d\n",majorNumber);
/*Registra a classe do dispositivo*/
cryptoClass = class_create(THIS_MODULE,CLASS_NAME);
if(IS_ERR(cryptoClass)){
unregister_chrdev(majorNumber,DEVICE_NAME);
printk(KERN_ALERT "CRYPTO--> FALHA AO REGISTRAR CLASSE\n");
return PTR_ERR(cryptoClass);
}
printk(KERN_INFO "CRYPTO--> Classe registrada\n");
/*Registra o dispositivo*/
cryptoDev=device_create(cryptoClass,NULL,MKDEV(majorNumber,0),NULL,DEVICE_NAME);
if(IS_ERR(cryptoDev)){//repeated code :(
class_destroy(cryptoClass);
unregister_chrdev(majorNumber,DEVICE_NAME);
printk(KERN_ALERT "CRYPTO--> FALHA AO REGISTRAR DISPOSITIVO\n");
return PTR_ERR(cryptoDev);
}
printk(KERN_INFO "CRYPTO--> Dispositivo registrado\n\n\n");
return 0;
}
//função assassinadora do módulo :-)
static void __exit crypto_exit(void){
mutex_destroy(&crypto_mutex);
device_destroy(cryptoClass,MKDEV(majorNumber,0));
class_unregister(cryptoClass);
class_destroy(cryptoClass);
unregister_chrdev(majorNumber,DEVICE_NAME);
printk(KERN_INFO "CRYPTO--> Adeus kernel cruel!!\n\n\n");
}
static int dev_open(struct inode *inodep,struct file *filep){
if(!mutex_trylock(&crypto_mutex)){
printk(KERN_ALERT "CRYPTO--> Requisiçao bloqueada!!\n");
return -EBUSY;
}
numAberturas++;
printk(KERN_INFO "CRYPTO--> Voce ja me abriu %d vezes\n",numAberturas);
return 0;
}
static int dev_release(struct inode *inodep,struct file *filep){
mutex_unlock(&crypto_mutex);
printk(KERN_INFO "CRYPTO--> Modulo dispensado!\n\n\n");
return 0;
}
static ssize_t dev_read(struct file *filep,char *buffer,size_t len,loff_t *offset){
int erros=0;
//TODO aqui verificar se e para enviar o decrypted ou o encrypted
if(op == 'c'){
erros=copy_to_user(buffer,encrypted,tamSaida);
vfree(encrypted);
}else if(op == 'd'){
vfree(decrypted);
erros=copy_to_user(buffer,decrypted,tamSaida);
}else{
erros=copy_to_user(buffer,hash,tamSaida);
}
if(erros==0){
printk(KERN_INFO "CRYPTO--> Mensagem com %d caracteres enviada!\\n",tamSaida);
return 0;
}else{
printk(KERN_ALERT "CRYPTO--> Falha ao enviar mensagem\n");
return -EFAULT;
}
}
static ssize_t dev_write(struct file *filep,const char *buffer,size_t len, loff_t *offset){
char temp[2];
char *ascii;
char *input;
char blocoIn[16]={0};
char blocoCrypto[16]={0};
int cont = 0, indice;
op = buffer[0];
tamInput = len - 1;
if(tamInput%32 && op == 'd') return -1;//Caso a entrada nao seja multiplo de 32, retorna erro
if(!(tamInput % 16)){
input = vmalloc(tamInput + 32);
}else{
input = vmalloc(tamInput);
}
if(!input){
printk(KERN_ERR "kmalloc(input) failed\n");
return -ENOMEM;
}
if(!(tamInput % 16))
ascii = vmalloc(tamInput/2 + 16);
else
ascii = vmalloc(tamInput/2);
if (!ascii) {
printk(KERN_ERR "kmalloc(ascii) failed\n");
return -ENOMEM;
}
ivLocal = vmalloc(16);
if (!ivLocal) {
printk(KERN_ERR "kmalloc(input) failed\n");
return -ENOMEM;
}
memcpy(ivLocal, ivC, 16);
memcpy(input, buffer+1,tamInput);
if(op == 'c') {
padding(input, tamInput); //Caso a opcao seja de criptgrafia, o padding eh feito na entrada.
tamInput += 32 - (tamInput%32); //Atualiza o tamanho do texto apos o padding
}
//Conversao de hexa para ascii
for(indice = 0; indice < tamInput; indice+=2){
temp[0] = input[indice];
temp[1] = input[indice+1];
sscanf(temp, "%hhx", &ascii[cont]);
cont++;
}
if(op == 'c'){
printk("CRYPTO--> Criptografando..\n");
//Aqui entra a criptografia!
for(indice = 0; indice < cont/16; indice++){//Cont tem a qtd de caracteres ascii, sempre multiplo de 16 (padding)
for(i = 0; i < 16; i++){//Copia um bloco para criptografar
blocoIn[i] = ascii[indice*16 + i];//Indice*16 para deslocar o bloco (Indice tem o num. do bloco)
}
init_cifra(blocoIn, blocoCrypto, 1);
for(i = 0; i < 16; i++){//Copia um bloco criptografado
ascii[indice*16 +i] = blocoCrypto[i];//Como o bloco atual de ascii ja foi criptografado, ele eh sobrescrito
}
}
encrypted=vmalloc(cont*2+1);
if(!encrypted){
printk(KERN_ERR "kmalloc(encrypted) error");
}
ascii2hexa(ascii, encrypted, cont);//ascii tem todos os blocos criptografados
tamSaida = cont*2;
encrypted[cont*2] = '\0';
}else if(op == 'd'){
if(tamInput%32) return -1;//Caso a entrada nao seja multiplo de 32, retorna erro
printk("CRYPTO--> Descriptografando..\n");
//descriptografia aqui
for(indice = 0; indice < cont/16; indice++){//Cont tem a qtd de caracteres ascii, sempre multiplo de 16 (padding)
for(i = 0; i < 16; i++){//Copia um bloco para criptografar
blocoIn[i] = ascii[indice*16 + i];//Indice*16 para deslocar o bloco (Indice tem o num. do bloco)
}
init_cifra(blocoIn, blocoCrypto, 2);
for(i = 0; i < 16; i++){//Copia um bloco criptografado
ascii[indice*16 +i] = blocoCrypto[i];//Como o bloco atual de ascii ja foi criptografado, ele eh sobrescrito
}
}
decrypted=vmalloc(cont*2);
if(!decrypted){
printk(KERN_ERR "kmalloc(encrypted) error");
}
ascii2hexa(ascii, decrypted, cont);
tamSaida=cont*2;
if(unpadding(decrypted, tamSaida) == 0)//Na descriptografia o unpadding eh feito na saida
return -1; //Retorna erro se nao tiver padding valido
// printk("DEBUG HEX2ASC %s\n", decrypted);
}else{
printk("CRYPTO--> Gerando Hash..\n");
//hash aqui
init_hash(ascii, hashAscii, cont);
ascii2hexa(hashAscii, hash, 40);
tamSaida = 40;
hash[40]='\0';
}
printk(KERN_INFO "CRYPTO--> Recebida mensagem com %ld caracteres!\n", len -1);
vfree(ascii);
vfree(input);
vfree(ivLocal);
return len;
}
static void ascii2hexa(unsigned char *in, char *out, int len){
int i = 0;
while (i < len){
sprintf(out+i*2, "%02x", *in++);
i++;
}
}
static void init_cifra(char *msgInput, char *msgOutput, int opc){
/* local variables */
struct skcipher_request *req ;
struct crypto_skcipher *skcipher = NULL;
struct skcipher_def sk;
int ret, i;
char saida[16];
char entrada[16];
skcipher = crypto_alloc_skcipher("cbc(aes)", 0, 0);
req = skcipher_request_alloc(skcipher, GFP_KERNEL);
if (req == NULL) {
printk("failed to load transform for aes");
goto out;
}
ret = crypto_skcipher_setkey(skcipher, keyC, strlen(keyC));
if (ret) {
printk(KERN_ERR "setkey() failed\n");
goto out;
}
skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
crypto_req_done,
&sk.wait);
for(i = 0; i < 16; i++){
entrada[i] = msgInput[i];
}
sk.tfm = skcipher;
sk.req = req;
sg_init_one(&sk.sg[0], entrada, 16);
sg_init_one(&sk.sg[1], saida, 16);
if(opc == 1){
skcipher_request_set_crypt(req, &sk.sg[0], &sk.sg[1], 16, ivLocal);
crypto_init_wait(&sk.wait);
init_completion(&sk.result.completion);
ret = crypto_wait_req(crypto_skcipher_encrypt(sk.req), &sk.wait);
if (ret) {
printk(KERN_ERR "encryption failed erro");
goto out;
}
}else{
skcipher_request_set_crypt(req, &sk.sg[0], &sk.sg[1], 16, ivLocal);
crypto_init_wait(&sk.wait);
init_completion(&sk.result.completion);
ret = crypto_wait_req(crypto_skcipher_decrypt(sk.req), &sk.wait);
if (ret) {
printk(KERN_ERR "encryption failed erro");
goto out;
}
}
for(i = 0; i < 16; i++){
msgOutput[i] = saida[i];
}
out:
if (skcipher)
crypto_free_skcipher(skcipher);
if (req)
skcipher_request_free(req);
}
static void padding(char *string, int len){ //Padrao utilizado PKCS#7
int qdtBlocos32, bytesOcupados;
int i;
qdtBlocos32 = len/32; //Obtem a quantidade de blocos completos
bytesOcupados = len%32; //Obtem a quantidade de bytes usados no ultimo bloco
if(bytesOcupados == 0){ //Caso a string tenha o tamanho multiplo de 16, preenche um novo blco com o num 0x10 (tamanho do bloco)
for(i = 0; i < 32; i++){
sprintf(string + qdtBlocos32*32 + i*2,"%02x", 16);//Converte 16 decimal para hexa (0x10)
}
}
else {
for(i = 0; i < (32 - bytesOcupados); i++){//O ultimo bloco eh preenchido com o valor da qtd de bytes livres
sprintf(string + qdtBlocos32*32 + i*2 + bytesOcupados,"%02x", (32 - bytesOcupados)/2);
}
}
}
static int unpadding(char *string, int len){ //Padrao utilizado PKCS#7
char temp[3];
int qtdPadding;//Quantidade de bytes usados no padding
int numP;//Numero usado para preencher o padding
int i;
temp[0] = string[len-2];//Ultimo numero sempre eh usado para calcular o padding
temp[1] = string[len-1];
temp[2] = '\0';
sscanf(temp, "%x", &qtdPadding);// Converte o num de hexa para decimal
for(i = 0; i < qtdPadding*2; i += 2){
temp[0] = string[len - 2 - i];
temp[1] = string[len - 1 - i];
temp[2] = '\0';
sscanf(temp, "%x", &numP);
if(numP != qtdPadding){//Caso o numero usado para preencher seja diferente da qtd, retorna erro
printk("Erro de padding\n");
return 0;
}
}
string[len - qtdPadding*2] = '\0';//Descarta numeros usados no padding
return 1;
}
static void init_hash(char *textIn, char *digest, int qtdChar){
struct crypto_shash *sha1;
struct shash_desc *shash;
int ret;
//Aloca identificador do resumo da mensagem com a criptografia(sha1) e as flags de tipo e parametros zeradas.
sha1 = crypto_alloc_shash("sha1", 0, 0);
//Verificando erro em crypto_alloc_shash... Em caso de erro, a flag IS_ERR sera true, e PTR_ERROR contera a mensagem de erro.
if (IS_ERR(sha1)){
printk(KERN_ERR "hash failed erro: nao foi possivel alocar shash");
return;
}
//Alocando Memoria para o identificador de estado operacional(sash) com 41 bytes, que ira conter o identificador
//do resumo da mensagem(variavel sha1), mensagem a ser criptada e seu respectivo resumo criptografico .
shash = vmalloc(41);
//Verificando erro... Se vmalloc retornar um numero menor 0, entao erro.
if (!shash){
printk(KERN_ERR "hash failed erro: %i\n", ENOMEM);
return;
}
//Inserindo o identificador do resumo da mensagem(variavel sha1) no identificador de estado operacional(shash).
shash->tfm = sha1;
//Atribuindo as flags para 0.
shash->flags = 0;
//(Re)iniciando a parte do retorno de resposta da criptografia no identificador de estado operacional(shash).
ret = crypto_shash_init(shash);
//Verificando erro... Se crypto_shash_init retornar um numero menor 0, entao erro.
if (ret){
printk(KERN_ERR "hash failed erro: %i\n", ret);
return;
}
//Inserindo a mensagem a ser criptada no identificador de estado operacional(shash).
ret = crypto_shash_update(shash, textIn, qtdChar);
//Verificando erro... Se crypto_shash_update retornar um numero menor 0, entao erro.
if (ret){
printk(KERN_ERR "hash failed erro: %i\n", ret);
return;
}
//Calculando o resumo criptografico, que estara em digest...
ret = crypto_shash_final(shash, digest);
//Verificando erro... Se crypto_shash_final retornar um numero menor 0, entao erro.
if (ret){
printk(KERN_ERR "hash failed erro: %i\n", ret);
return;
}
//Liberando memoria alocada para o shash...
vfree(shash);
//Liberando memoria alocada para o sha1...
crypto_free_shash(sha1);
}
module_init(crypto_init);
module_exit(crypto_exit);