-
Notifications
You must be signed in to change notification settings - Fork 0
/
stringx.c
685 lines (623 loc) · 39.2 KB
/
stringx.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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
/*
* Licencia Apache, Version 2.0 con Modificacion
*
* Copyright 2023 Desmon (David)
*
* Se concede permiso, de forma gratuita, a cualquier persona que obtenga una copia de
* este software y archivos de documentacion asociados (el "Software"), para tratar el
* Software sin restricciones, incluidos, entre otros, los derechos de uso, copia,
* modificacion, fusion, publicacion, distribucion, sublicencia y/o venta de copias del
* Software, y para permitir a las personas a quienes se les proporcione el Software
* hacer lo mismo, sujeto a las siguientes condiciones:
*
* El anterior aviso de copyright y este aviso de permiso se incluiran en todas las
* copias o partes sustanciales del Software.
*
* EL SOFTWARE SE PROPORCIONA "TAL CUAL", SIN GARANTiA DE NINGÚN TIPO, EXPRESA O
* IMPLiCITA, INCLUYENDO PERO NO LIMITADO A LAS GARANTiAS DE COMERCIABILIDAD, IDONEIDAD
* PARA UN PROPoSITO PARTICULAR Y NO INFRACCIoN. EN NINGÚN CASO LOS TITULARES DEL
* COPYRIGHT O LOS TITULARES DE LOS DERECHOS DE AUTOR SERaN RESPONSABLES DE NINGÚN
* RECLAMO, DAnO U OTRA RESPONSABILIDAD, YA SEA EN UNA ACCIoN DE CONTRATO, AGRAVIO O DE
* OTRA MANERA, QUE SURJA DE, FUERA DE O EN CONEXIoN CON EL SOFTWARE O EL USO U OTRO TIPO
* DE ACCIONES EN EL SOFTWARE.
*
* Ademas, cualquier modificacion realizada por terceros se considerara propiedad del
* titular original de los derechos de autor. Los titulares de derechos de autor
* originales no se responsabilizan de las modificaciones realizadas por terceros.
*
* Queda explicitamente establecido que no es obligatorio especificar ni notificar los
* cambios realizados entre versiones, ni revelar porciones especificas de codigo
* modificado.
*/
#ifndef __STRINGX_C__
#define __STRINGX_C__
#include "stringx.h"
String_list_link* Init_String(char *string, size_t size_string) {
#ifdef DEBUG_ENABLE
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(String_list_link*, Init_String)
TYPE_DATA_DBG(char *, "string = %s")
TYPE_DATA_DBG(size_t, "size_string = %zu")
END_TYPE_FUNC_DBG,
string, size_string);
#endif
/*
*
* Init_String(char *string, size_t size_string):
* Esta funcion inicializa una lista enlazada haciendo uso de la estructura String_list_link
*
* Se espera recibir string el cual seria un puntero a una secuencia de caracteres almacenados,
* se espera recibir size_string, en el caso de que se recibiera un puntero valido string y un
* (size_string == 0) la funcion determinara el tamaño del string de entrada.
*
* En caso de que string no sea un puntero valido o NULL, size_string sera definido en 0,
* independientemente de la entrada de size_string.
* En caso de que malloc falle al reservar memoria para la estructrua de lista enlazada, o
* size_string sea -1(no debe ingresarse este valor, se reserva para indicar errores),
* El puntero devuelto por la estructura es NULL.
*
*/
if (size_string == -1) return NULL;
String_list_link *ptr = (String_list_link *)malloc(sizeof(String_list_link));
if (ptr == NULL) return ptr; // en caso de que malloc falle se retorna
// vulnerabilidad si string no contiene \0 al final, se a de asegurar la existencia de este caracter
// al final de string.
if ((size_string == CALC_SIZE_STRING_FLAG) && (string != NULL)) size_string = strlen(string);
else if (string == NULL) size_string = 0;
*ptr = (String_list_link) {
.next_string = NULL, // hacer que no apunte a ningun nodo mas
.size_string = size_string, // tamaño del string almacenado
.string_action = (Action_Native_String){
.flags = FLAG_NONE_Sll, // indicar que ninguna flag esta activa
.string = string, // string a almacenar
}
};
return ptr;
}
void print_String_list_link(String_list_link *list) {
//#ifdef DEBUG_ENABLE
// DEBUG_PRINT(DEBUG_LEVEL_INFO,
// INIT_TYPE_FUNC_DBG(void, print_String_list_link)
// TYPE_DATA_DBG(String_list_link *, "list = %p")
// END_TYPE_FUNC_DBG,
// list);
//#endif
/*
*
* print_String_list_link(String_list_link *list):
* Esta funcion imprime una lista enlazada del tipo String_list_link
*
* Se espera recibir un String_list_link a imprimir
*
*/
if (list == NULL) printf_color("#{FG:lred}In String_list_link final list or invalid...#{FG:reset}");
//join_list_to_String(list, " ");
for (String_list_link *i = list; i != NULL; i = i->next_string) {
printf("%s ", i->string_action.string);
}
}
String_list_link* free_String_list_link(String_list_link* list) {
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(String_list_link*, free_String_list_link)
TYPE_DATA_DBG(Instruction_info *, "list = %p")
END_TYPE_FUNC_DBG,
list);
/*
*
* free_String_list_link(String_list_link* list)
* Esta funcion libera una lista enlazada del tipo String_list_link
*
* Se espera recibir una lista enlazada a liberar, valida.
* Los nodos que tenga activada la FLAG_FREE_Sll, seran liberados sus miembros actual_string
*
*/
if (list != NULL) {
String_list_link *next_block = list; // apuntar al siguiente bloque, para no perder
// la referencia al eliminar al bloque que apunta a este
for (String_list_link *i = list; i != NULL; i = next_block) {
#ifdef DEBUG_ENABLE
printf_color("\t -> [free_String_list_link] #{FG:reset}Liberando i(#{FG:cyan}%p#{FG:reset}), flag_i(%02x), next_block(#{FG:cyan}%p#{FG:reset})#{FG:reset}, -> %s\n", i, i->string_action.flags, next_block, i->string_action.string);
#endif
#ifdef DEBUG_ENABLE
printf("\t -> [free_String_list_link] string_action_struct->flags: %04x\n", i->string_action.flags);
#endif
if ((i->string_action.flags & FLAG_FREE_Sll) == FLAG_FREE_Sll) {
#ifdef DEBUG_ENABLE
printf("\t -> [free_String_list_link] Liberando String(direccion: %p, valor = \"%s\"\n", i->string_action.string, i->string_action.string);
#endif
if (i->string_action.string != NULL) free(i->string_action.string); // liberar el string
}
if ((i->string_action.flags & FLAG_RESTORE_FLAGS) == FLAG_RESTORE_FLAGS){
#ifdef DEBUG_ENABLE
printf("\t -> [free_String_list_link] Restaurando Flags...(valor actual: %04x)\n", i->string_action.flags);
#endif
i->string_action.flags = FLAG_NONE_Sll; // restaurar las flags
}
next_block = i->next_string; // almacenar el siguiente bloque antes de liberar el actual
free(i); // liberar el bloque actual
}
}
return NULL;
}
static inline String_list_link *push_String(String_list_link *list, char* string, size_t size_string) {
/*
*
* push_String(String_list_link *list, char* string, size_t size_string):
* Esta funcion añade un nodo a la lista enlazada.
*
* Se espera recibir un list que sea valido, en caso de ser NULL o un puntero no valido, se retorna NULL.
* Se espera recibir un string para crear el nuevo nodo.
* Se espera recibir un size_string con el tamaño del string, en caso de ser 0 se calcula el tamaño.
*
* Se espera retornar una lista enlazada con el nuevo nodo creado.
*
*/
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(String_list_link*, push_String)
TYPE_DATA_DBG(String_list_link *, "list = %p")
END_TYPE_FUNC_DBG,
list);
if (list == NULL) return NULL; // la lista enlazada recibida es un puntero no valido o es nulo
list->next_string = Init_String(string, size_string);
return list->next_string;
}
Action_Native_String *Start_Action_Native_String(Action_Native_String *string_action_struct) {
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(Action_Native_String*, Start_Action_Native_String)
TYPE_DATA_DBG(Action_Native_String *, "string_action_struct = %p")
END_TYPE_FUNC_DBG,
string_action_struct);
if (string_action_struct == NULL) {
#ifdef DEBUG_ENABLE
printf("\t -> [Start_Action_Native_String] string_action_struct == NULL\n");
#endif
return NULL;
}
#ifdef DEBUG_ENABLE
printf("\t -> [Start_Action_Native_String] string_action_struct->flags: %04x\n", string_action_struct->flags);
#endif
if ((string_action_struct->flags & FLAG_FREE_Sll) == FLAG_FREE_Sll) {
#ifdef DEBUG_ENABLE
printf("\t -> [Start_Action_Native_String] Liberando String(direccion: %p, valor = \"%s\"\n", string_action_struct->string, string_action_struct->string);
#endif
if (string_action_struct->string != NULL) free(string_action_struct->string); // liberar el string
}
if ((string_action_struct->flags & FLAG_RESTORE_FLAGS) == FLAG_RESTORE_FLAGS){
#ifdef DEBUG_ENABLE
printf("\t -> [Start_Action_Native_String] Restaurando Flags...(valor actual: %04x)\n", string_action_struct->flags);
#endif
string_action_struct->flags = FLAG_NONE_Sll; // restaurar las flags
}
if ((string_action_struct->flags & FLAG_FREE_ANS) == FLAG_FREE_ANS) { // liberar estructura
#ifdef DEBUG_ENABLE
printf("\t -> [Start_Action_Native_String] Liberando estructura Action_Native_String...(direccion actual: %p)\n", string_action_struct);
#endif
free(string_action_struct);
return NULL; // se retorna NULL si se libera la estructura
}
return string_action_struct; // al finalizar las acciones, se retorna la estcutura excepto que esta se libere
}
String_list_link* get_string_instruction(Instruction_info *my_instruccion_, encoder_x86 encoder_val) {
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(String_list_link*, get_string_instruction)
TYPE_DATA_DBG(Instruction_info *, "my_instruccion_ = %p")
TYPE_DATA_DBG(encoder_x86, "encoder_val = %d")
END_TYPE_FUNC_DBG,
my_instruccion_, encoder_val);
/*
*
* get_string_instruction(Instruction_info *my_instruccion_, encoder_x86 encoder_val):
* Esta funcion genera una lista enlazada haciendo uso de la estructura String_list_link
* donde se almacenara como resultado el string de la descodificacion de una instruccion.
*
* Se espera recibir my_instruccion_ donde deberia estar contenido la informacion de la instruccion
* a descodificar y se espera recibir un valor encoder_x86 que dfina el si sera descorficada para
* 16, 32 o 64bits.
*
* Se espera retornar una lista enlazada con los string's descodificados, en caso de que malloc
* falle, el valor devuelto es NULL. En caso de que los strings a contener no puedan ser reservador correctamente
* se emitira la estrcutura con los cambios miemrbros en NULL. En el cado de que my_instruccion_ no pueda
* ser descodificada de forma correcta por falta de errores o algun otro caso, el campo miembro size_string
* de la estructura sera -1.
*
*/
char *string = get_string_instruction_by_id(my_instruccion_->string); // string de la instruccion ya descodificada
String_list_link *ptr_org = Init_String(string, CALC_SIZE_STRING_FLAG); // el tamaño del string se calcula dentro de la funcion
if (ptr_org == NULL) goto exit_get_string_instruction; // error ocurrio
// si no tiene campo mod o rm se terna el string solo con la instruccion
if ((my_instruccion_->position_rm == 0b11) || (my_instruccion_->position_mod == 0b11) || (my_instruccion_->position_reg == 0b11)) return ptr_org;
uint32_t val = 0;
bool is_free = false;
Action_Native_String *dest = (Action_Native_String *)malloc(sizeof(Action_Native_String)),
*fuent = (Action_Native_String *)malloc(sizeof(Action_Native_String)),
*auxi = (Action_Native_String *)malloc(sizeof(Action_Native_String)); // se usa para el intercambio de variables
dest->flags = FLAG_FREE_ANS; // indicar que la estructura a de liberarse al llamar a Start_Action_Native_String, ademas de poner todas las demas flags a 0
fuent->flags = FLAG_FREE_ANS; // indicar que la estructura a de liberarse al llamar a Start_Action_Native_String, ademas de poner todas las demas flags a 0
auxi->flags = FLAG_FREE_ANS; // indicar que la estructura a de liberarse al llamar a Start_Action_Native_String, ademas de poner todas las demas flags a 0
uint8_t destino, fuente, auxiliar; // se mantiene asi si d == 0
String_list_link *ptr = ptr_org; // copia del puntero que usar para añadir elementos
int size_len_register = 0;
#ifdef DEBUG_ENABLE
printf_color(
"\t -> [AL, AX, EAX] my_instruccion_->position_tttn == 0b11 &&\n"
"\t -> [AL, AX, EAX] my_instruccion_->mask_tttn != 0x0 &&\n"
"\t -> [AL, AX, EAX] my_instruccion_->instruction.opcode[2].opcode_byte.byte(0x%02x) & my_instruccion_->mask_tttn(0x%02x)\n"
"\t -> [AL, AX, EAX] %d && %d && %d\n"
"\t -> [AL, AX, EAX] my_instruccion_->instruction.opcode[0].opcode_byte.byte = 0x%02x\n"
"\t -> [AL, AX, EAX] my_instruccion_->instruction.opcode[1].opcode_byte.byte = 0x%02x\n"
"\t -> [AL, AX, EAX] my_instruccion_->instruction.opcode[2].opcode_byte.byte = 0x%02x\n",
my_instruccion_->instruction.opcode[2].opcode_byte.byte,
my_instruccion_->mask_tttn,
my_instruccion_->position_tttn == 0b11,
my_instruccion_->mask_tttn != 0x0,
my_instruccion_->instruction.opcode[0].opcode_byte.byte & my_instruccion_->mask_tttn,
my_instruccion_->instruction.opcode[0].opcode_byte.byte,
my_instruccion_->instruction.opcode[1].opcode_byte.byte,
my_instruccion_->instruction.opcode[2].opcode_byte.byte
);
#endif
if (
my_instruccion_->position_tttn == 0b11 &&
my_instruccion_->mask_tttn != 0x0 &&
my_instruccion_->instruction.opcode[2].opcode_byte.byte & my_instruccion_->mask_tttn // el primer opcode es el que esta en la posicion 2
) {
// para variantes de instrucciones de tipo no salto(JCC)
// obtiene el registro AL, AX, o EAX
dest->string = get_string_register(encoder_val, get_bit_w(my_instruccion_), 0b000);
if (encoder_val == ENCODER_IN_32bits) fuent->string = get_build_SIB_format_for_data_inmediate(my_instruccion_);
else if (encoder_val == ENCODER_IN_16bits) fuent->string = get_data_inmediate_16bits(my_instruccion_);
fuent->flags |= FLAG_FREE_Sll; // indicar que se a de liberar el espacio
goto exit_func_with_push; // finalizar la funcion haciendo un join de los strings
}
switch(my_instruccion_->instruction.Mod_rm.mod) {
case 0b00: // Modo 00 (00b): El operando se codifica como un registro, sin desplazamiento (offset). En este modo, el campo
// "R/M" especifica el registro.
dest->string = get_string_mod_0(encoder_val, my_instruccion_);
is_free = false; // si se marca en true, se a de marcar en la lista enlazada que el string del desplazamiento a de liberarse
if ((encoder_val == 0b0) && (my_instruccion_->instruction.Mod_rm.R_M == 0b110)) { // desplazamiento de 16bits
val = *((uint16_t*)&(my_instruccion_->instruction.displacement));
} else if (encoder_val == 0b1 && encoder_val == ENCODER_IN_32bits) { // desplazamiento de 32bits o SIB
if (my_instruccion_->instruction.Mod_rm.R_M == 0b101) { // desplazamiento de 32bits
val = *((uint32_t*)&(my_instruccion_->instruction.displacement));
} else if (my_instruccion_->instruction.Mod_rm.R_M == 0b100) { // SIB
dest->string = get_build_SIB_format(my_instruccion_);
dest->flags |= FLAG_FREE_Sll; // indicar que se a de liberar el espacio
goto no_formatear_registro_desplazamiento; // no formatear por que get_build_SIB_format ya devuleve el desplazamiento formateado
//char * s = get_build_SIB_format(my_instruccion_);
}
} else if (my_instruccion_->immediate_data == 0b1){
// para 16bits
fuent->string = get_data_inmediate_16bits(my_instruccion_); // asignar valor formateado.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata sin SIB (16bits) con valor: %s\n", fuent->string);
#endif
} else goto no_formatear_registro_desplazamiento;
is_free = true; // indicar que el desplazamiento debera liberarse al liberar la lista enlazada
// solo se realiza esta operacion si se esta operando con desplazamiento de 16 o 32bits
size_len_register = (snprintf(NULL, 0, dest->string, val) + 1) * sizeof(char);
auxi->string = (char *)malloc(size_len_register); // almacenar el buffer para guardar la instruccion formateada
sprintf(auxi->string, dest->string, val); // formatear la instruiccion
dest->string = auxi->string; // poner el string formateado como destino.
no_formatear_registro_desplazamiento: // obviar el formateo de desplazamiento
// si lo anterior no se a de realizar o si hay SIB
if (my_instruccion_->immediate_data == 0b1 && encoder_val == ENCODER_IN_32bits){ // si es una instruccion inmediata con SIB
fuent->string = get_build_SIB_format_for_data_inmediate(my_instruccion_); // asignar valor formateado para SIB.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata con valor: %s\n", fuent->string);
#endif
} else {
fuent->string = get_string_register(encoder_val, get_bit_w(my_instruccion_), my_instruccion_->instruction.Mod_rm.reg);
}
if (fuent->string == NULL || dest->string == NULL) {
printf("Mod 00. Error puntero nulos. fuent->string(%p) y dest->string(%p)\n", fuent->string, dest->string);
exit(1);
}
DEBUG_PRINT(DEBUG_LEVEL_INFO, "my_instruccion_->posicion_d = %02x\n", my_instruccion_->posicion_d);
if (get_bit_d(my_instruccion_)) { // si d == 1 se cambia para que reg sea fuente y rm destino
//auxi->string = dest->string; // c = a
//dest->string = fuent->string; // a = b
//fuent->string = auxi->string; // b = c
DEBUG_PRINT(DEBUG_LEVEL_INFO, "d = 1 -> %s %s\n", fuent->string, dest->string);
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
if(is_free) ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
// solo si se indico que existe
} else {
exit_func_with_push:
DEBUG_PRINT(DEBUG_LEVEL_INFO, "d = 0 -> %s %s\n", dest->string, fuent->string);
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
if(is_free) ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
// solo si se indico que existe
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
}
ptr = join_list_to_String(ptr_org, " "); // unir todo usando un espacio
free_String_list_link(ptr_org); // liberar la antigua lista enlazada
break;
case 0b01: // Modo 01 (01b): El operando se codifica como un registro con un desplazamiento de 8 bits. En este modo, el campo
// "R/M" especifica el registro, y sigue un byte inmediato que proporciona el desplazamiento.
if (my_instruccion_->instruction.Mod_rm.R_M == 0b100 && encoder_val == ENCODER_IN_32bits) { // SIB
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] mod = 01, SIB = 100\n");
#endif
dest->string = get_build_SIB_format(my_instruccion_);
}
if (my_instruccion_->immediate_data == 0b1 && encoder_val == ENCODER_IN_32bits){ // si es una instruccion inmediata
// obtener el registro y desplazamiento para 16bits:
dest->string = get_string_mod_1(encoder_val, my_instruccion_);
val = *((uint8_t*)&(my_instruccion_->instruction.displacement)); // desplazamientod e 8bits
is_free = true; // si se marca en true, se a de marcar en la lista enlazada que el string del desplazamiento a de liberarse
// indicar que el desplazamiento debera liberarse al liberar la lista enlazada
size_len_register = (snprintf(NULL, 0, dest->string, val) + 1) * sizeof(char);
auxi->string = (char *)malloc(size_len_register); // almacenar el buffer para guardar la instruccion formateada
sprintf(auxi->string, dest->string, val); // formatear la instruiccion
dest->string = auxi->string; // poner el string formateado como destino.
fuent->string = get_build_SIB_format_for_data_inmediate(my_instruccion_); // asignar valor formateado para SIB.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata para ¿SIB? con valor: %s\n", fuent->string);
#endif
} else if (my_instruccion_->immediate_data == 0b1){// para 16bits
// obtener el registro y desplazamiento para 16bits:
dest->string = get_string_mod_1(encoder_val, my_instruccion_);
val = *((uint8_t*)&(my_instruccion_->instruction.displacement)); // desplazamientod e 8bits
is_free = true; // si se marca en true, se a de marcar en la lista enlazada que el string del desplazamiento a de liberarse
// indicar que el desplazamiento debera liberarse al liberar la lista enlazada
size_len_register = (snprintf(NULL, 0, dest->string, val) + 1) * sizeof(char);
auxi->string = (char *)malloc(size_len_register); // almacenar el buffer para guardar la instruccion formateada
sprintf(auxi->string, dest->string, val); // formatear la instruiccion
dest->string = auxi->string; // poner el string formateado como destino.
// obtener los datos inmediatos de valor de 8 o 16bits
fuent->string = get_data_inmediate_16bits(my_instruccion_); // asignar valor formateado.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata sin SIB (16bits u 8bits) con valor: %s\n", fuent->string);
#endif
} else {
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] my_instruccion_->immediate_data: %d\n", my_instruccion_->immediate_data);
#endif
dest->string = get_string_mod_1(encoder_val, my_instruccion_);
val = *((uint8_t*)&(my_instruccion_->instruction.displacement)); // desplazamientod e 8bits
is_free = true; // si se marca en true, se a de marcar en la lista enlazada que el string del desplazamiento a de liberarse
// indicar que el desplazamiento debera liberarse al liberar la lista enlazada
size_len_register = (snprintf(NULL, 0, dest->string, val) + 1) * sizeof(char);
auxi->string = (char *)malloc(size_len_register); // almacenar el buffer para guardar la instruccion formateada
sprintf(auxi->string, dest->string, val); // formatear la instruiccion
dest->string = auxi->string; // poner el string formateado como destino.
fuent->string = get_string_register(encoder_val, get_bit_w(my_instruccion_), my_instruccion_->instruction.Mod_rm.reg);
}
if (fuent->string == NULL || dest->string == NULL) {
printf("Mod 01. Error puntero nulos. fuent->string(%p) y dest->string(%p)\n", fuent->string, dest->string);
exit(1);
}
if (get_bit_d(my_instruccion_)) { // si d == 1 se cambia para que reg sea fuente y rm destino
//auxi->string = dest->string; // c = a
//dest->string = fuent->string; // a = b
//fuent->string = auxi->string; // b = c
#ifdef DEBUG_ENABLE
printf("d = 1 -> %s %s\n", fuent->string, dest->string);
#endif
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
} else {
#ifdef DEBUG_ENABLE
printf("d = 0 -> %s %s\n", dest->string, fuent->string);
#endif
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
}
ptr = join_list_to_String(ptr_org, " "); // unir todo usando un espacio
free_String_list_link(ptr_org); // liberar la antigua lista enlazada
break;
case 0b10: // Modo 10 (10b): El operando se codifica como un registro con un desplazamiento de 32 bits. En este modo, el campo
// "R/M" especifica el registro, y sigue una palabra doble (dword) inmediata que proporciona el desplazamiento.
if (my_instruccion_->instruction.Mod_rm.R_M == 0b100 && encoder_val == ENCODER_IN_32bits) { // SIB
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] mod = 10, SIB = 100\n");
#endif
dest->string = get_build_SIB_format(my_instruccion_);
} else {
dest->string = get_string_mod_2(encoder_val, my_instruccion_);
is_free = true; // si se marca en true, se a de marcar en la lista enlazada que el string del desplazamiento a de liberarse
// indicar que el desplazamiento debera liberarse al liberar la lista enlazada
if (encoder_val == 0b0) // desplazamiento de 16bits
val = *((uint16_t*)&(my_instruccion_->instruction.displacement));
else if (encoder_val == 0b1) // desplazamiento de 32bits
val = *((uint32_t*)&(my_instruccion_->instruction.displacement));
size_len_register = (snprintf(NULL, 0, dest->string, val) + 1) * sizeof(char);
auxi->string = (char *)malloc(size_len_register); // almacenar el buffer para guardar la instruccion formateada
sprintf(auxi->string, dest->string, val); // formatear la instruiccion
dest->string = auxi->string; // poner el string formateado como destino.
}
if (my_instruccion_->immediate_data == 0b1 && encoder_val == ENCODER_IN_32bits){ // si es una instruccion inmediata con sib
fuent->string = get_build_SIB_format_for_data_inmediate(my_instruccion_); // asignar valor formateado para SIB.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata con SIB, valor: %s\n", fuent->string);
#endif
} else if (my_instruccion_->immediate_data == 0b1){
// para 16bits
fuent->string = get_data_inmediate_16bits(my_instruccion_); // asignar valor formateado.
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata sin SIB (16bits) con valor: %s\n", fuent->string);
#endif
} else fuent->string = get_string_register(encoder_val, get_bit_w(my_instruccion_), my_instruccion_->instruction.Mod_rm.reg);
if (fuent->string == NULL || dest->string == NULL) {
printf("Mod 02. Error puntero nulos. fuent->string(%p) y dest->string(%p)\n", fuent->string, dest->string);
exit(1);
}
if (get_bit_d(my_instruccion_)) { // si d == 1 se cambia para que reg sea fuente y rm destino
//auxi->string = dest->string; // c = a
//dest->string = fuent->string; // a = b
//fuent->string = auxi->string; // b = c
#ifdef DEBUG_ENABLE
printf("d = 1 -> %s %s\n", fuent->string, dest->string);
#endif
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
} else {
#ifdef DEBUG_ENABLE
printf("d = 0 -> %s %s\n", dest->string, fuent->string);
#endif
ptr = push_String(ptr, dest->string, CALC_SIZE_STRING_FLAG);
ptr->string_action.flags |= FLAG_FREE_Sll; // indiciar que se a de liberar el desplazamiento
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
ptr = push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
}
ptr = join_list_to_String(ptr_org, " "); // unir todo usando un espacio
free_String_list_link(ptr_org); // liberar la antigua lista enlazada
break;
case 0b11: // Modo 11 (11b): El operando se codifica como un registro de memoria. En este modo, el campo "R/M" especifica el
// registro de memoria.
// d = 0 -> <instruccion> <registro R/M>, <registro reg>
// d = 1 -> <instruccion> <registro reg>, <registro R/M>
if (my_instruccion_->immediate_data == 0b1 && encoder_val == ENCODER_IN_32bits){ // si es una instruccion inmediata con sib
string = get_string_register(encoder_val, get_bit_w(my_instruccion_), my_instruccion_->instruction.Mod_rm.R_M); // R/M para todas las instrucciones de datos inmediatos?
ptr = push_String(ptr, string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
fuent->string = get_build_SIB_format_for_data_inmediate(my_instruccion_); // asignar valor formateado para SIB.
push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata con SIB, valor: %s\n", fuent->string);
#endif
} else if (my_instruccion_->immediate_data == 0b1){ // para 16bits
string = get_string_register(encoder_val, get_bit_w(my_instruccion_), my_instruccion_->instruction.Mod_rm.R_M); // R/M para todas las instrucciones de datos inmediatos?
ptr = push_String(ptr, string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
fuent->string = get_data_inmediate_16bits(my_instruccion_); // asignar valor formateado.
push_String(ptr, fuent->string, CALC_SIZE_STRING_FLAG);
#ifdef DEBUG_ENABLE
printf_color("\t -> [get_string_instruction] Instruccion inmediata sin SIB (16bits) con valor: %s\n", fuent->string);
#endif
} else {
destino = my_instruccion_->instruction.Mod_rm.R_M;
fuente = my_instruccion_->instruction.Mod_rm.reg; // se mantiene asi si d == 0
if (get_bit_d(my_instruccion_)) { // si d == 1 se cambia para que reg sea fuente y rm destino
auxiliar = destino; // c = a
destino = fuente; // a = b
fuente = auxiliar; // b = c
}
string = get_string_register(encoder_val, get_bit_w(my_instruccion_), destino);
ptr = push_String(ptr, string, CALC_SIZE_STRING_FLAG);
ptr = push_String(ptr, ",", CALC_SIZE_STRING_FLAG);
// CALC_SIZE_STRING_FLAG especifica que se a de obtener la longitud del string
string = get_string_mod_3(encoder_val, get_bit_w(my_instruccion_), fuente);
ptr = push_String(ptr, string, CALC_SIZE_STRING_FLAG);
}
ptr = join_list_to_String(ptr_org, " "); // unir todo usando un espacio
free_String_list_link(ptr_org); // liberar la antigua lista enlazada
break;
default: goto exit_get_string_instruction; // error al descodificar la instruccion
}
dest = Start_Action_Native_String(dest); // liberar las estructuturas en este caso y el string si se le indico
fuent = Start_Action_Native_String(fuent); // liberar las estructuturas en este caso y el string si se le indico
auxi = Start_Action_Native_String(auxi); // liberar las estructuturas en este caso y el string si se le indico
exit_get_string_instruction:
return ptr;
}
static inline size_t get_size_to_String(String_list_link *list) {
/*
*
* get_size_to_String(String_list_link *list):
* Esta funcion genera realiza la suma del tamaño de todos los buffers(strings) contenidos en la lista enlazada.
*
* Se espera recibir un list el cual sea la lista enlazada con los strings.
*
* Se retorna el sumario de los tamaños de todos los strings, o en caso de error, -1.
*
*/
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(size_t, get_size_to_String)
TYPE_DATA_DBG(list *, " = %p")
END_TYPE_FUNC_DBG,
list);
if (list == NULL) return -1;
size_t size = 0;
for (String_list_link *i = list; i != NULL; i = i->next_string) size += i->size_string;
return size;
}
static inline size_t get_number_nodes_String_list_link(String_list_link *list) {
/*
*
* get_number_nodes_String_list_link(String_list_link *list):
* Esta funcion cuenta la cantidad de nodos en una lista enlazada.
*
* Se espera recibir un list el cual sea la lista enlazada con los strings. En caso de ser NULL se retorna NULL
*
* Se retorna numero de nodos encontrados.
*
*/
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(size_t, get_size_to_String)
TYPE_DATA_DBG(list *, " = %p")
END_TYPE_FUNC_DBG,
list);
if (list == NULL) return -1;
size_t size = 0;
for (String_list_link *i = list; i != NULL; i = i->next_string) size++;
return size;
}
String_list_link *join_list_to_String(String_list_link *list, char* string_for_join) {
/*
*
* join_list_to_String(String_list_link *list, char* string_for_join):
* Esta funcion une los strings de una lista enlazada en un solo strings, retornando una nueva lista enlazada,
* con el string nuevo contenido.
*
* - Se espera recibir un list que sea un puntero valido, en caso de no serlo, o ser NULL se retorna NULL.
* - Se espera recibir un string_for_join, el cual sea un string que usar de rellena para unir cada elementos,
* en caso de ser NULL o un puntero no valido, la union se realizara sin cadenas de relleno.
*
* Se una lista enlazada con el nuevo string concatenado.
*
* **Si se llama a esta funcion, se a de liberar la memoria de esta funcion, poner campo flags en 1
*
*/
DEBUG_PRINT(DEBUG_LEVEL_INFO,
INIT_TYPE_FUNC_DBG(String_list_link *, join_list_to_String)
TYPE_DATA_DBG(String_list_link *, " list = %p")
TYPE_DATA_DBG(char *, " string_for_join = \"%s\"")
END_TYPE_FUNC_DBG,
list, string_for_join);
if (list == NULL) return NULL;
// obtener el tamaño de todos los strings de la lista enlazada y reservar memoria:
size_t size_all_string = get_size_to_String(list) + 1; // añadir uno para el caracter final \0
char *string_join = NULL;
size_t counter_string_join = 0;
if (string_for_join == NULL) { // en caso de de no haya un string que usar para unir
string_join = (char*)malloc(sizeof(char) * size_all_string);
for (String_list_link *i = list; i != NULL; i = i->next_string) {
memcpy((string_join + counter_string_join), i->string_action.string, i->size_string); // copiar bytes
counter_string_join += i->size_string; // cambiar el cursor de inicio de posicion
}
} else {
size_t size_of_string_for_join = strlen(string_for_join);
size_all_string += ((get_number_nodes_String_list_link(list)-1) * size_of_string_for_join);
string_join = (char*)malloc(sizeof(char) * size_all_string );
for (String_list_link *i = list; i != NULL; i = i->next_string) {
memcpy((string_join + counter_string_join), i->string_action.string, i->size_string); // copiar bytes
counter_string_join += i->size_string; // cambiar el cursor de inicio de posicion
if ( i->next_string != NULL) { // revisar si este es el penultimo bloque
memcpy(string_join + counter_string_join, string_for_join, size_of_string_for_join); // copiar bytes
counter_string_join += size_of_string_for_join;
}
}
}
string_join[size_all_string-1] = '\0'; // poner caracter nulo
String_list_link *new_list_string = Init_String(string_join, size_all_string-1);
new_list_string->string_action.flags |= FLAG_FREE_Sll; // indicar que se a de liberar la memoria de size_string
// necesario para la funcion free_String_list_link
return new_list_string;
}
#endif