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