资源描述:
《计算机操作系统实验-运行用户态程序》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、西北工业大学操作系统实验实验报告一、实验目的掌握在GeekOS系统用户态模式下加载并运行可执行程序的方法。二、实验要求1.按照实验讲义P127页中的设计要求,实现在用户态模式下加载并运行可执行程序的代码,给出关键函数的代码以及实验结果。三、实验过程及结果答:核心函数代码如下:==================user.c===============//产生一个进程(用户态)intSpawn(constchar*program,constchar*command,structKernel_Thread**pThread){//TO
2、DO("Spawnaprocessbyreadinganexecutablefromafilesystem");intrc;char*exeFileData=0;ulong_texeFileLength;structUser_Context*userContext=0;structKernel_Thread*process=0;structExe_FormatexeFormat;if((rc=Read_Fully(program,(void**)&exeFileData,&exeFileLength))!=0){Print("Fai
3、ledtoReadFile%s!",program);gotofail;}if((rc=Parse_ELF_Executable(exeFileData,exeFileLength,&exeFormat))!=0){Print("FailedtoParseELFFile!");gotofail;}if((rc=Load_User_Program(exeFileData,exeFileLength,&exeFormat,command,&userContext))!=0){Print("FailedtoLoadUserProg
4、ram!");gotofail;}//在堆分配方式下释放内存并再次初始化exeFileDataFree(exeFileData);exeFileData=0;-13-/*开始用户进程,调用Start_User_Thread函数创建一个进程并使其进入准备运行队列*/process=Start_User_Thread(userContext,false);if(process!=0){KASSERT(process->refCount==2);/*返回核心进程的指针*/*pThread=process;rc=process->pid
5、;//记录当前进程的ID}elserc=ENOMEM;returnrc;fail://如果新进程创建失败则注销User_Context对象if(exeFileData!=0)Free(exeFileData);//释放内存if(userContext!=0)Destroy_User_Context(userContext);//销毁进程对象returnrc;}-------------------------------------//切换至用户上下文voidSwitch_To_User_Context(structKernel_T
6、hread*kthread,structInterrupt_State*state){staticstructUser_Context*s_currentUserContext;/*lastusercontextused*///externintuserDebug;structUser_Context*userContext=kthread->userContext;KASSERT(!Interrupts_Enabled());if(userContext==0){//userContext为0表示此进程为核心态进程就不用切换地址空
7、间return;}if(userContext!=s_currentUserContext){ulong_tesp0;//if(userDebug)Print("A[%p]",kthread);Switch_To_Address_Space(userContext);//为用户态进程时则切换地址空间esp0=((ulong_t)kthread->stackPage)+PAGE_SIZE;//if(userDebug)//Print("S[%lx]",esp0);/*新进程的核心栈.*/Set_Kernel_Stack_Poi
8、nter(esp0);//设置内核堆栈指针/*Newusercontextisactive*/s_currentUserContext=userContext;}}==================elf.c============