/*******************************************************************************/ /* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */ /* */ #include "vga.h" #include "video.h" #include "interrupts.h" #include "asm.h" #include "cpu.h" #include "string.h" #include "2d.h" #include "gdt.h" #include "shell.h" #include "multiboot2.h" #include "math.h" #include "debug.h" static command commands[] = { {"reboot" , "", &rebootnow}, {"clear" , "", &clear}, {"mode" , "", &mode}, {"detectcpu" , "", &detectcpu}, {"test2d" , "", &test2d}, {"regs" , "", ®s}, {"gdt" , "", &readgdt}, {"idt" , "", &readidt}, {"info" , "", &info}, {"err" , "", &err}, {"test" , "", &test}, {"view" , "", &view}, {"disasm" , "", &disasm}, {"bpset" , "", &bpset}, {"bpclr" , "", &bpclr}, {"help" , "", &help}, }; /*******************************************************************************/ /* Shell, traite les commandes */ void shell() { static u8 field[] = " \000"; static u8 item[] = " \000"; int i; bool found; while (true) { print("\r\n# "); getstring(&field); print("\r\n"); if (strgetnbitems(&field, ' ') < 1) continue; strgetitem(&field, &item, ' ', 0); strtolower(&item); found = false; for (i = 0; i < sizeof(commands)/sizeof(commands[0]); i++) { if (strcmp(&item, &commands[i].name) == 0) { (*commands[i].function) (&field); found = true; break; } } if (!found) printf("Commande inconnue !\r\n\000"); } } int test(void) { print("Fonction de test !\r\n"); return; } /*******************************************************************************/ /* Renvoie les commandes disponibles */ int help() { print("Commandes disponibles :\r\n\r\n"); for(u32 i=0;i3) { print("numero incorrect"); return; } strgetitem(commandline, &arg, ' ', 2); pointer=strtoint(&arg); if (strgetnbitems(commandline, ' ') == 4) { strgetitem(commandline, &arg, ' ', 3); type=strtoint(&arg); } if (type>DBG_READWRITE) { print("type incorrect"); return; } setdebugreg(numero,pointer,type); } /*******************************************************************************/ /* Retire un breakpoint */ int bpclr(u8* commandline) { u8 arg[] = " \000"; u8* numero; if (strgetnbitems(commandline, ' ') < 2) { print("Syntaxe de la commande BPCLR\r\nbpclr \33[32mnumero\r\n\r\n \33[32mnumero\33[0m\33[0m\33[25D\33[10C - numero du breakpoint (0-3)\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); numero=strtoint(&arg); if (numero>3) { print("numero incorrect"); return; } setdebugreg(numero,0x0,DBG_CLEAR); } /*******************************************************************************/ /* Desassemble une zone de mémoire donnée */ int disasm(u8* commandline) { u8 arg[] = " \000"; u8* size; u8* pointer; if (strgetnbitems(commandline, ' ') < 3) { print("Syntaxe de la commande DISASM\r\ndisasm \33[32madresse taille\r\n\r\n \33[32madresse\33[0m\33[0m\33[25D\33[10C - Adresse a visualiser\r\n \33[32mtaille\33[0m\33[25D\33[10C - nombre d'octets a desassembler <256\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); pointer=strtoint(&arg); size=pointer; strgetitem(commandline, &arg, ' ', 2); size+=strtoint(&arg); while(pointer50) { print("Creation d'une erreur de page en ecriture !\r\n"); asm("movl $0x66666666,(0xE0000000)"); } else { print("Creation d'une erreur de page en lecture !\r\n"); asm("movl (0xD0000000),%eax"); } break; case 15: print("NON GERE!\r\n"); break; case 16: print("NON GERE!\r\n"); break; case 17: print("NON GERE!\r\n"); break; case 18: print("NON GERE!\r\n"); break; default: print("Exception qui n'existe pas !!!\r\n"); break; } return 0; } /*******************************************************************************/ /* Information sur le démarrage */ int info() { getbootinfo(); return 0; } /*******************************************************************************/ /* Affiche les registres */ int regs() { save_stack dump; show_cpu(&dump); return 0; } /*******************************************************************************/ /* Change le mode */ int mode(u8* commandline) { u8 arg[] = " \000"; u32 argint; if (strgetnbitems(commandline, ' ') < 2) { print("Syntaxe de la commande MODE\r\nmode \33[32mmodevideo\r\n\r\n modevideo\33[0m\33[25D\33[10C - mode video a initialiser (>0x80 = graphique)\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); argint=strtoint(&arg); changemode(argint); return 0; } /*******************************************************************************/ /* Efface l'écran */ int clear() { clearscreen(); return 0; } /*******************************************************************************/ /* Redemarre */ int rebootnow() { print(""); waitascii(); reboot(); return 0; } /*******************************************************************************/ /* Test les fonctionnalité 2D graphiques */ int test2d() { setvideo_mode(0x87); fill(0x00); struct vertex2d a, b, c; randomize(); for (int i = 0; i < 3200; i++) { a.x = random(0, 800); a.y = random(0, 600); b.x = random(0, 800); b.y = random(0, 600); c.x = random(0, 800); c.y = random(0, 600); trianglefilled(&a, &b, &c, random(0, 16)); triangle(&a, &b, &c, 2); } return 0; } /*******************************************************************************/ /* Lit l'IDT et l'affiche */ int readidt() { u32 index, i = 0; idtdes *desc; struct idtr idtreg; sidt(&idtreg); printf("Information sur l'IDT\r\nAdresse:%X Limite:%hX\r\n", idtreg.base, (u32) idtreg.limite); desc = idtreg.base; for (index = 0; index < idtreg.limite / sizeof(idtdes); index++) { u32 select = desc[index].select; u32 offset = desc[index].offset0_15 + (desc[index].offset16_31 << 16); u32 type = desc[index].type & 0x0F00; u8 *typestr1, *typestr2; if (i>=32 & i<=39) typestr1="IRQ master"; else if (i>=96 & i<=103) typestr1="IRQ slave "; else if (i<19) typestr1="EXCEPTION "; else typestr1="INTERRUPT "; if (type == INTGATE) typestr2="INTGATE"; else if (type == TRAPGATE) typestr2="TRAPGATE"; else if (type == TASKGATE) typestr2="TASKGATE"; else if (type == CALLGATE) typestr2="CALLGATE"; else if (type == LDTDES) typestr2="LDTDES"; else print("inconnu"); printf("%s % hu %hY:%Y - %s\r\n", typestr1, i++, select, offset, typestr2); if (i % 32 == 0) { print("\r\n\r\n"); waitascii(); } } return 0; } /*******************************************************************************/ /* Lit les descripteurs GDT et les affiche */ int readgdt() { u32 index; struct gdtr gdtreg; sgdt(&gdtreg); printf("Information sur la GDT\r\nAdresse:%X Limite:%hX\r\n", gdtreg.base, gdtreg.limite); for (index = 0; index < gdtreg.limite ; index+=sizeof(gdtdes)) { if (!isdesvalid(index)) printf("\033[31m"); printf("SEL =%hY %Y %Y DPL=%d %cS%d [%c%c%c] %h ub\033[0m\r\n",index,getdesbase(index),getdeslimit(index),getdesdpl(index),getdestype(index),getdessize(index),getdesbit3(index),getdesbit2(index),getdesbit1(index),getdesalign(index)); } return 0; } /*******************************************************************************/ /* Detecte et affiche les information sur le CPU */ int detectcpu() { cpuinfo cpu; u8 noproc[] = "\033[31mInconnu\033[0m\000"; strcpy(&noproc, &cpu.detectedname); getcpuinfos(&cpu); printf ("\r\nDetection du processeur\r\033[1m Revision \t:%d\r Modele \t:%d\r Famille \t:%d\r Nom cpuid\t:%s\rJeux d'instruction\t:%s\033[0m\r\n\000", cpu.stepping, cpu.models, cpu.family, &cpu.detectedname, &cpu.techs); return 0; } /*******************************************************************************/