




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、操作系统实习报告 日期: 年 月 日 实习题目: shell程序完成人:姓名:组号:学号实习内容简要 述本实验要实现一个简单的命令解释器,也就是Linux中的shell程序。实验程序起名为ysh,要求其设计类似于目前流行的shell解释程序,如bash、csh、tcsh,但不需要具备那么复杂的功能。ysh程序应当具有如下一些重要的特征:l 能够执行外部程序命令,命令可以带参数。l 能够执行fg、bg、cd、history、exit等内部命令。l 使用管道和输入输出重定向。l 支持前后台作业,提供作业控制功能,包括打印作业的清单,改变当前运行作业的前台/后台状态,以及控制作业的挂起、中止和继续运
2、行。 除此之外,在这个实验中还须做到:l 使用make工具建立工程。l 使用调试器gdb来调试程序。提供清晰、详细的设计文档和解决方案主要代码结构(附注释)#include <stdio.h>#include <ctype.h>#include <string.h>#include <unistd.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <sys/wait.h>#include <math.
3、h>#include <signal.h>#include <stdlib.h>#include "ysh.h"#define NO_PIPE -1#define FD_READ 0#define FD_WRITE 1int is_founded(char * cmd) int k = 0; while(envpathk != NULL) strcpy(buf,envpathk); strcat(buf,cmd); if(access(buf,F_OK) = 0) return 1; k+; return 0;void getenviron(i
4、nt n,char * s) int i = 0,j = 0,k = 0; char c; char buff80; char * p; while(c=si) != '=') buffi+ = c; buffi+ = '0' if(strcmp(buff,"PATH") = 0) while(si != '0') if(si = ':') buffj+ = '/' buffj = '0' p = (char *)malloc(strlen(buff) + 1); strcpy(
5、p,buff); envpathk+ = p; envpathk = NULL; j = 0; i+; else buffj = si; j+; i+; else fprintf(stderr,"No match");int getline(int fd,char * buf) int i = 0; char c; while(read(fd,& c,1) bufi+ = c; if(c = 'n') bufi-1 = '0' return i; return i;void init_environ() int fd,n; char
6、buf80; if(fd = open("ysh_profile",O_RDONLY,660) = -1) printf("init environ variable error!n"); exit(1); while(n = getline(fd,buf) != 0) getenviron(n,buf); envhis.start = 0; envhis.end = 0; head = end = NULL;int pipel(char * input,int len) char * argv1030; char * filename0; int i,
7、j,k,is_bg = 0; int li_cmd = 0; int fd101,pipe_in = -1; int pipe_out = -1,flag = 0; pid_t pid; for(i = 0,j = 0,k = 0;i <= len;i+) if(inputi = ' ') | (inputi = 't') | (inputi = '0') | (inputi = '|') | (inputi = '>') | (inputi = 'n') if(inputi =
8、9;|') | (inputi = '>')if(inputi = '>') flag =1;if(j > 0 ) bufj+ = '0' argvli_cmdk = (char *)malloc(sizeof(char) * j); strcpy(argvli_cmdk,buf); k+;argvli_cmdk = (char *)0; li_cmd+; k = 0;j = 0; if(j = 0)continue; elsebufj+ = '0'if(flag = 0) argvli_cmdk = (
9、char *)malloc(sizeof(char) * j); strcpy(argvli_cmdk,buf); k+; else filename0 = (char *)malloc(sizeof(char) * j); strcpy(filename0,buf); j = 0;else if(inputi = '&') && (inputi = '0') is_bg = 1;continue; bufj+ = inputi; argvli_cmdk+ = NULL; for(i = 0;i <= 10;i+) fdiFD_RE
10、AD = NO_PIPE;fdiFD_WRITE = NO_PIPE; for(i = 0;i < li_cmd;i+) if(pipe(fdi) = -1) printf("Can not open pipe!n"); return 0; for(i = 0;i < li_cmd;i+) if(is_founded(argvi0) = 0) printf("Can not found command!n"); break; if(i != 0) pipe_in = fdi - 1FD_READ; else pipe_in = NO_PIPE
11、; if(i != li_cmd) pipe_out = fdiFD_WRITE; else if(flag = 1) if(pipe_out = open(filename0,O_WRONLY | O_CREAT | O_TRUNC,S_IRUSR | S_IWUSR) = -1) printf("Can not open %sn",filename0);return 0; else pipe_out = NO_PIPE; if(pid = fork() < 0) printf("Fork failed!n"); return 0; if(pid
12、 = 0) if(pipe_in = NO_PIPE) close(pipe_in);if(pipe_out = NO_PIPE) close(pipe_out);if(pipe_out != NO_PIPE) dup2(pipe_out,1); close(pipe_out); if(pipe_in != NO_PIPE) dup2(pipe_in,0); close(pipe_in);execv(buf,argvi); else if(is_bg = 0) waitpid(pid,NULL,0);close(pipe_in);close(pipe_out); return 0;void a
13、dd_history(char * inputcmd) envhis.end = (envhis.end + 1) % HISNUM; if(envhis.end = envhis.start) envhis.start = (envhis.start + 1) % HISNUM; strcpy(envhis.his_cmdenvhis.end,inputcmd);void history_cmd() int i,j = 0; if(envhis.start = envhis.end) return; else if(envhis.start < envhis.end) for(i =
14、envhis.start + 1;i <= envhis.end;i+) printf("%dt%sn",j,envhis.his_cmdi); j+; else for(i = envhis.start + 1;i < HISNUM;i+) printf("%dt%sn",j,envhis.his_cmdi); j+; for(i = 0;i <= envhis.end;i+) printf("%dt%sn",j,envhis.his_cmdi); j+; void cd_cmd(char * route) if(
15、route != NULL) if(chdir(route) < 0) printf("cd;%s Error file or directory!n",route); void jobs_cmd() struct NODE * p; int i = 1; p = head; if(head != NULL) do printf("%d %d %st%sn",i,p -> pid,p -> state,p -> cmd); i+; p = p -> link;while(p != NULL); else printf(&qu
16、ot;No jobs!n");void add_node(char * input_cmd,int node_pid) struct NODE * p; p = (struct NODE *)malloc(sizeof(struct NODE); p -> pid = node_pid; strcpy(p -> state,input_cmd); strcpy(p -> state,"running"); p -> link = NULL; if(head = NULL) head = p; end = p; else end ->
17、link = p; end = p; void del_node(int sig,siginfo_t * sip) struct NODE * q; struct NODE * p; int id; if(sig_z = 1) sig_z = 0;goto out; id = sip -> si_pid; p = q = head; if(head = NULL) goto out; while(p -> pid != id && p -> link != NULL) p = p -> link; if(p -> pid != id) goto o
18、ut; if(p = head) head = head -> link; else while(q -> link != p) q = q -> link;if(p = end) end = q; q -> link = NULL;else q -> link = p -> link; free(p); out:return;void setflag() sig_flag = 1;void ctrl_z() struct NODE * p; int i = 1; if(pid1 = 0) goto out; if(head != NULL) p = hea
19、d; while(p -> pid != pid1) && (p -> link != NULL) p = p -> link;if(p -> pid = pid1) strcpy(p -> state,"stopped");else add_node(input,pid1); strcpy(end -> state,"stopped"); else add_node(input,pid1); strcpy(end -> state,"stopped"); sig_z = 1;
20、 kill(pid1,SIGSTOP); for(p = head;p -> pid != pid1;p = p -> link) i+; printf("%dt%st%sn",i,end -> state,end -> cmd); pid1 = 0;out:return;void bg_cmd(int job_num) struct NODE * p; int i = 0; p = head; for(i = 1;i < job_num;i+) p = p -> link; kill(p -> pid,SIGCONT); strc
21、py(p -> state,"running");void fg_cmd(int job_num) struct NODE * p; int i = 0; p = head; for(i = 1;i < job_num;i+) p = p -> link; strcpy(p -> state,"running"); strcpy(input,p -> cmd); pid1 = p -> pid; signal(SIGTSTP,ctrl_z); kill(p -> pid,SIGCONT); waitpid(p -
22、> pid,NULL,0);int main() init_environ(); while(1) char c; char * arg20; int i = 0,j = 0,k = 0; int is_pr = 0,is_bg = 0; int input_len = 0,path; int pid = 0,status = 0; struct sigaction action;action.sa_sigaction = del_node;sigfillset(& action.sa_mask);action.sa_flags = SA_SIGINFO;sigaction(SI
23、GCHLD,& action,NULL);signal(SIGTSTP,ctrl_z); path = get_current_dir_name();printf("ysh%s ",path);while(c = getchar() = ' ') | (c = 't') | (c = EOF) ;if(c = 'n') continue;while(c != 'n') bufinput_len+ = c; c = getchar();bufinput_len = '0' input =
24、(char *)malloc(sizeof(char) * (input_len + 1);strcpy(input,buf); for(i = 0,j = 0,k = 0;i <= input_len;i+) if(inputi = '<') | (inputi = '>') | (inputi = '|') if(inputi = '|') pipel(input,input_len); add_history(input); free(input);else redirect(input,input_len
25、); add_history(input); free(input);is_pr = 1;break; if(is_pr = 1) continue;for(i = 0,j = 0,k = 0;i <= input_len;i+) if(inputi = ' ') | (inputi = '0') if(j = 0) continue; else bufj+ = '0' argk = (char *)malloc(sizeof(char) * j); strcpy(argk+,buf); j = 0; else if(inputi =
26、39;&') && (inputi + 1 = '0') is_bg = 1; continue; bufj+ = inputi; if(strcmp(arg0,"exit") = 0) add_history(input); printf("Bye bye!n"); free(input); break; if(strcmp(arg0,"history") = 0) add_history(input); history_cmd(); free(input); continue;if(
27、strcmp(arg0,"cd") = 0) add_history(input); for(i = 3,j = 0;i <= input_len;i+) bufj+ = inputi; bufj = '0' arg1 = (char *)malloc(sizeof(char) * j); strcpy(arg1,buf); cd_cmd(arg1); free(input); continue;if(strcmp(arg0,"jobs") = 0) add_history(input); jobs_cmd(); free(inpu
28、t); continue;if(strcmp(arg0,"bg") = 0) add_history(input); for(i = 0;i <= input_len;i+) if(inputi = '%') break; i+; for(;i <= input_len;i+) bufj+ = inputi; bufj = '0' arg1 = (char *)malloc(sizeof(char) * j); strcpy(arg1,buf); bg_cmd(atoi(arg1); free(input); continue;if(strcmp(arg0,"fg") = 0) add_hi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 人教部编版(2024)九年级下册第六单元写作 有创意地表达教案配套
- 采购合同风险咨询重点基础知识点
- 船舶货物偷窃提货不着险重点基础知识点
- 马原课程工匠精神
- 志愿者协议书
- 广告居间合同范例二零二五年
- 二零二五装修垃圾押金协议书
- 试用期的劳动合同二零二五年
- 二零二五版借款合同范文摘要精简
- 二零二五全新房产买卖意向协议
- 网球项目运营指导方案
- 《如何在小学语文教学中有效实施书法教学的研究》课题结题汇报课件
- 2024-2025学年人教版七年级英语Unit1-2单元练习卷(含答案)
- 12《台阶》教学评一致性教学设计
- 2024版肿瘤患者静脉血栓防治指南解读 课件
- 苏科版(2024)八年级下册物理期末复习重要知识点考点提纲
- 技术服务分包合同模板
- 北京市通州区2023-2024学年高一下学期期中物理试卷(原卷版)
- CJ/T 123-2016 给水用钢骨架聚乙烯塑料复合管
- 跟着音乐游中国智慧树知到期末考试答案章节答案2024年广州大学
- 传染病预防方案与预防措施(2篇)
评论
0/150
提交评论