Starting from:
$35

$29

P1: A Simple Shell Interpreter (SSI) Solution

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++. Your work will be tested on linux.csc.uvic.ca, 11 to which you can remote login by ssh. You can also access Linux computers in ECS labs in person

or remotely by following https://connex.csc.uvic.ca/portal/site/itsupport/
Be sure to test your code on 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
on csc.uvic.ca resulting in a substantial loss of marks.
Be sure to study the man pages for the various systems calls and functions suggested in this 17 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
Jan 9/10
C and Linux refreshers, P1 spec go-through, design hints
design and code skeleton
Jan 16/17
system calls, system programming and testing
code almost done
Jan 23/24
final testing and last-minute help
final deliverable
23 3         Requirements
Your SSI shows the prompt
SSI: /home/user >
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.
29 Using fork() and execvp(), implement the ability for the user to execute arbitrary commands 30 using your shell program. For example, if the user types:

SSI: /home/user > ls -l /usr/bin
your shell should run the ls program with the parameters -l and /usr/bin—which should list the 33 contents of the /usr/bin directory on the screen.
34

35 Note: The example above uses 2 arguments. We will, however, test your SSI by invoking 36 programs that take more than 2 arguments.

37                      A well-written shell should support as many arguments as given on the command line.

Using the functions getcwd() and chdir(), add functionality so that users can:
change the current working directory using the command cd
Note that SSI always shows the current directory at prompt.
The cd command should take exactly one argument—the name of the directory to change into.
The special argument .. indicates that the current directory should “move up” by one directory.
That is, if the current directory is /home/user/subdir and the user types:
SSI: /home/user/subdir > cd ..
the current working directory will become /home/user.
The special argument ∼ indicates the home directory of the current user. If cd is used without 48 any argument, it is equivalent to cd ∼, i.e., returning to the home directory, e.g., /home/user.
49

Q: how do you know the user’s home directory location?
H: from the environment variable with getenv().
Note: There is no such a program called cd in the system that you can run directly (as you did 53 with ls) and change the current directory of the calling program, even if you created one. You 54 have to use the system call chdir().
56                   Many shells allow programs to be started in the background—that is, the program is running, but 57                      the shell continues to accept input from the user.

58 You will implement a simplified version of background execution that supports executing pro59 cesses in the background. The maximum number of background processes is not limited.

60 If the user types: bg cat foo.txt, your SSI shell will start the command cat with the argument 61 foo.txt in the background. That is, the program will execute and the SSI shell will also continue 62 to execute and give the prompt to accept more commands.

63 The command bglist will have the SSI shell display a list of all the programs, including their 64 execution arguments, currently executing in the background, e.g.,:

123: /home/user/a1/foo 1
456: /home/user/a1/foo 2
Total Background jobs: 2
In this case, there are 2 background jobs, both running the program foo, the first one with 69 process ID 123 and execution argument 1 and the second one with PID 456 and argument 2.
Your SSI shell must indicate to the user after background jobs have terminated. Read the man
page for the waitpid() system call. You are suggested to use the WNOHANG E.g.,
SSI: /home/user/subdir > cd
456: /home/user/a1/foo 2 has terminated.
SSI: /home/user >
Q: how do you make sure your SSI has this behavior?
H: check the list of background processes every time processing a user input.
77 4         Bonus Features
78 Only a simplified shell with limited functionality is required in this assignment. However, students 79 have the option to extend their design and implementation to include more features in a regular 80 shell or a remote shell (e.g., kill/pause/resuming background processes, capturing and redirecting 81 program output, handling many remote clients at the same time, etc).

82 If you want to design and implement a bonus feature, you should contact the course instructor by 83 email for permission one week before the due date, and clearly indicate the feature in the submission 84 of your code. The credit for correctly implemented bonus features will not exceed 20% of the full 85 marks for this assignment.

86 5          Odds and Ends
88 You will be provided with a Makefile that builds the sample code. It takes care of linking-in the 89 GNU readline library for you. The sample code shows you how to use readline() to get input 90 from the user, only if you choose to use readline library.

92 Submit a tar.gz archive named p1.tar.gz of your assignment through connex, with the Makefile 93 You can create a tar.gz archive of the current directory by typing:

tar zcvf p1.tar.gz *
Please do not submit .o files or executable files (out) files. Erase them before creating the 96 archive.
3.1 inf.c
This program takes two parameters:
tag: a single word which is printed repeatedly
interval: the interval, in seconds, between two printings of the tag
The purpose of this program is to help you with debugging background processes. It acts a trivial 103 background process, whose presence can be “felt” since it prints a tag (specified by you) every few 104            seconds (as specified by you). This program takes a tag so that even when multiple instances of it 105         are executing, you can tell the difference between each instance.
106 This program considerably simplifies the programming of the part of your SSI shell. You can 107 find the running process by ps -ef and kill -9 a process by its process ID pid.

3.2 args.c
This is a very trivial program which prints out a list of all arguments passed to it.
This program is provided so that you can verify that your shell passes all arguments supplied on 111 the command line — Often, people have off-by-1 errors in their code and pass one argument less.
We cannot specify completely the coding style that we would like to see but it includes the following:
Proper decomposition of a program into subroutines — A 500 line program as a single routine 115 won’t suffice.
116                 2. Comment—judiciously, but not profusely. Comments serve to help a marker. To further 117                elaborate:

118 (a) Your favorite quote from Star Wars or Douglas Adams’ Hitch-hiker’s Guide to the Galaxy 119 does not count as comments. In fact, they simply count as anti-comments, and will result

in a loss of marks.
(b) Comment your code in English. It is the official language of this university.
Proper variable names—leia is not a good variable name, it never was and never will be.
Small number of global variables, if any. Most programs need a very small number of global 124 variables, if any. (If you have a global variable named temp, think again.)
125 5. The return values from all system calls listed in the assignment specification 126 should be checked and all values should be dealt with appropriately.

If you are in doubt about how to write good C code, you can easily find many C style guides on the Net.
The Indian Hill Style Guide is an excellent short style guide.

More products