首页 > > 详细

CSc 360: Operating Systems

 1 CSc 360: Operating Systems

2 (Fall 2019)
Programming Assignment 1
P1: A Simple Shell Interpreter (SSI)
3
4 Spec Out: Sept 13, 2019
5 Code Due: Oct 4, 2019
6 1 Introduction
7 In this assignment you will implement a simple shell interpreter (SSI), using system calls and
8 interacting with the system. The SSI will be very similar to the Linux shell bash: it will support
9 the foreground execution of programs, ability to change directories, and background execution.
10 You can implement your solution in C or C++, and C is highly recommended. Your work will
11 be tested on linux.csc.uvic.ca, to which you can remote login by ssh. You can also access Linux
12 computers in ECS labs in person or remotely by following https://itsupport.cs.uvic.ca/
13 Be sure to test your code on linux.csc.uvic.ca before submission. Many students have
14 developed their programs for their Mac OS X laptops only to find that their code works differently
15 on linux.csc.uvic.ca resulting in a substantial loss of marks.
16 Be sure to study the man pages for the various systems calls and functions suggested in this
17 assignment. These functions are in Section 2 of the man pages, so you should type (for example):
18 $ man 2 waitpid
19 2 Schedule
20 In order to help you finish this programming assignment on time successfully, the schedule of this
21 assignment has been synchronized with both the lectures and the tutorials. There are three tutorials
22 arranged during the course of this assignment.
Date Tutorial Milestones
Sept 17/19/20 P1 spec go-through, design hints, system calls design and code skeleton
Sept 24/26/27 system calls, system programming and testing code almost done
Oct 1/3/4 final testing and last-minute help final deliverable
23 3 Requirements
24 3.1 Basic Execution (5 marks)
25 Your SSI shows the prompt
1
26 SSI: username@hostname: /home/user >
27 for user input. The prompt includes the current directory name in absolute path, e.g., /home/user.
28 You can use getcwd() to obtain the current directory, getlogin() to get username, and gethostname()
29 to find the name of the host running the program.
30 Using fork() and execvp(), implement the ability for the user to execute arbitrary commands
31 using your shell program. For example, if the user types:
32 SSI: username@hostname: /home/user > ls -l /usr/bin
33 your shell should run the ls program with the parameters -l and /usr/bin—which should list the
34 contents of the /usr/bin directory on the screen.
35
36 Note: The example above uses 2 arguments. We will, however, test your SSI by invoking
37 programs that take more than 2 arguments.
38 A well-written shell should support as many arguments as given on the command line.
39 3.2 Changing Directories (5 marks)
40 Using the functions getcwd() and chdir(), add functionality so that users can:
41 • change the current working directory using the command cd
42 Note that SSI always shows the current directory at prompt.
43 The cd command should take no more than one argument—the name of the directory to change
44 into—and ignore all others. The special argument .. indicates that the current directory should
45 “move up” by one directory.
46 That is, if the current directory is /home/user/subdir and the user types:
47 SSI: username@hostname: /home/user/subdir > cd ..
48 the current working directory will become /home/user.
49 The special argument ∼ indicates the home directory of the current user. If cd is used without
50 any argument, it is equivalent to cd ∼, i.e., returning to the home directory, e.g., /home/user.
51
52 Q: how do you know the user’s home directory location?
53 H: from the environment variable with getenv().
54 Note: There is no such a program called cd in the system that you can run directly (as you
55 did with ls) and change the current directory of the calling program, even if you created one
56 (why?)—i.e., you have to use the system call chdir().
57 3.3 Background Execution (5 Marks)
58 Many shells allow programs to be started in the background—that is, the program is running, but
59 the shell continues to accept input from the user.
60 You will implement a simplified version of background execution that supports executing pro-
61 cesses in the background. The maximum number of background processes is not limited.
2
62 If the user types: bg cat foo.txt, your SSI shell will start the command cat with the argument
63 foo.txt in the background. That is, the program will execute and the SSI shell will also continue
64 to execute and give the prompt to accept more commands.
65 The command bglist will have the SSI shell display a list of all the programs, including their
66 execution arguments, currently executing in the background, e.g.,:
67 123: /home/user/a1/foo 1
68 456: /home/user/a1/foo 2
69 Total Background jobs: 2
70 In this case, there are 2 background jobs, both running the program foo, the first one with
71 process ID 123 and execution argument 1 and the second one with PID 456 and argument 2.
72 Your SSI shell must indicate to the user after background jobs have terminated. Read the man
73 page for the waitpid() system call. You are suggested to use the WNOHANG option. E.g.,
74 SSI: username@hostname: /home/user/subdir > cd
75 456: /home/user/a1/foo 2 has terminated.
76 SSI: username@hostname: /home/user >
77 Q: how do you make sure your SSI has this behavior?
78 H: check the list of background processes every time processing a user input.
79 4 Bonus Features
80 Only a simplified shell with limited functionality is required in this assignment. However, students
81 have the option to extend their design and implementation to include more features in a regular
82 shell or a remote shell (e.g., kill/pause/resuming background processes, capturing and redirecting
83 program output, handling many remote clients at the same time, etc).
84 If you want to design and implement a bonus feature, you should contact the course instructor by
85 email for permission one week before the due date, and clearly indicate the feature in the submission
86 of your code. The credit for approved and correctly implemented bonus features will not exceed
87 20% of the full marks for this assignment.
88 5 Odds and Ends
89 5.1 Compilation
90 You will be provided with a Makefile that builds the sample code. It takes care of linking-in the
91 GNU readline library for you. The sample code shows you how to use readline() to get input
92 from the user, only if you choose to use readline library.
93 5.2 Submission
94 Submit a tar.gz archive named p1.tar.gz of your assignment through connex, with the Makefile
95 You can create a tar.gz archive of the current directory by typing:
96 tar zcvf p1.tar.gz *
97 Please do not submit .o files or executable files (a.out) files. Erase them before creating the
98 archive.
3
99 5.3 Helper Programs
100 5.3.1 inf.c
101 This program takes two parameters:
102 tag: a single word which is printed repeatedly
103 interval: the interval, in seconds, between two printings of the tag
104 The purpose of this program is to help you with debugging background processes. It acts a trivial
105 background process, whose presence can be “felt” since it prints a tag (specified by you) every few
106 seconds (as specified by you). This program takes a tag so that even when multiple instances of it
107 are executing, you can tell the difference between each instance.
108 This program considerably simplifies the programming of the part of your SSI shell. You can
109 find the running process by ps -ef and kill -9 a process by its process ID pid.
110 5.3.2 args.c
111 This is a very trivial program which prints out a list of all arguments passed to it.
112 This program is provided so that you can verify that your shell passes all arguments supplied on
113 the command line — Often, people have off-by-1 errors in their code and pass one argument less.
114 5.4 Code Quality
115 We cannot specify completely the coding style that we would like to see but it includes the following:
116 1. Proper decomposition of a program into subroutines — A 500 line program as a single routine
117 won’t suffice.
118 2. Comment—judiciously, but not profusely. Comments serve to help a marker. To further
119 elaborate:
120 (a) Your favorite quote from Star Wars or Douglas Adams’ Hitch-hiker’s Guide to the Galaxy
121 does not count as comments. In fact, they simply count as anti-comments, and will result
122 in a loss of marks.
123 (b) Comment your code in English. It is the official language of this university.
124 3. Proper variable names—leia is not a good variable name, it never was and never will be.
125 4. Small number of global variables, if any. Most programs need a very small number of global
126 variables, if any. (If you have a global variable named temp, think again.)
127 5. The return values from all system calls listed in the assignment specification
128 should be checked and all values should be dealt with appropriately.
129 If you are in doubt about how to write good C code, you can easily find many C style guides on the Net.
130 The Indian Hill Style Guide is an excellent short style guide.
131 5.5 Plagiarism
132 This assignment is to be done individually. You are encouraged to discuss the design of your solution
133 with your classmates, but each person must implement their own assignment.
134 Your markers will submit the code to an automated plagiarism detection program.
135 We add archived solutions from previous semesters (a few years worth) to the plagia-
136 rism detector, in order to catch “recycled” solutions, including those on github.
137
138 The End
 
联系我们 - QQ: 99515681 微信:codinghelp
程序辅导网!