The purpose of this assignment is to help you learn about UNIX system calls. It will also give you ample opportunity to define interfaces, implementations, and ADTs; in that sense the assignment is a capstone for the course.
A UNIX shell is a program that makes the facilities of the operating system available to interactive users. There are several popular UNIX shells: sh (the Bourne shell), csh (the C shell), and bash (the Bourne Again shell) are a few.
Your task in this assignment is to create a program named ish. ish should be a minimal but realistic interactive UNIX shell.
To facilitate your debugging and our testing, ish should print each line that it reads from ~/.ishrc immediately after reading it. ish should print a percent sign and a space (% ) before each such line.
ish should terminate when the user types Control-D or exit.
The '<' token should indicate that the subsequent token is the name of a file. ish should redirect the command's standard input from that file. It should be an error to redirect a command's standard input more than once.
The '>' token should indicate that the subsequent token is the name of a file. ish should redirect the command's standard output to that file. If the file does not already exist, then ish should create it; if the file does already exist, then ish should destroy its contents and rewrite the file from scratch. ish should set the permissions of the new file by examining the user's umask setting. It should be an error to redirect a command's standard output more than once.
A pipeline should be a sequence of one or more commands separated by '|' tokens. ish should redirect the standard output of the command that precedes the '|' token to the standard input of the command that follows. It should acceptable to redirect the standard input of the first command of a pipeline via the '<' token; it should be erroneous to redirect the standard input of any other command of a pipeline via the '<' token. Similarly it should be acceptable to redirect the standard output of the last command of a pipeline via the '>' token; it should be erroneous to redirect the standard output of any other command of a pipeline via the '>' token.
setenv var [value] | If environment variable var does not exist, then create it. Set the value of var to value, or to the empty string if value is omitted. Note: Initially, ish inherits environment variables from its parent. ish modifies the value of an existing environment variable or creates a new environment variable via the setenv command. ish can set the value of any environment variable; but the only environment variables that it uses itself are HOME and PATH. |
unsetenv var | Destroy the environment variable var. |
cd [dir] | Change ish's working directory to dir, or to the HOME directory if dir is omitted. |
exit | Exit ish. |
Note that those built-in commands should neither read from standard input nor write to standard output. Thus ish need not support file redirection with its built-in commands. Nor does ish need to support built-in commands within pipelines.
If the command is not an ish built-in, then ish should consider the command-name to be the name of a file that contains executable binary code. ish's first task should be to determine the filename to be passed to the execv or execl system call. How it should do so depends upon whether the given filename contains a slash (/) or not:
After ish determines the appropriate filename, ish should fork a child process and pass the filename, along with its arguments, to the OS using the execv or execl system call. (ish should not use the execvp or execlp calls; ish is responsible for searching the PATH.) If the attempt to execute the file fails, then ish should print an error message indicating the reason for the failure.
ish should print its prompt for the next standard input line only when all commands in the current pipeline are completed. If any command of a pipeline fails to execute, ish should simply lets all of the other commands execute to completion.
ish should handle an erroneous line gracefully by rejecting the line and writing a descriptive error message to standard error. ish should handle all user errors; it should be impossible for the user's input to cause ish to crash.
An implementation requirements and recommendations page is available.
Develop on arizona. Use Emacs to create source code. Use the "make" tool to automate the build process. Use gdb to debug.
An executable version of the assignment solution is available in /u/cs217/Assignment6/sampleish. You should use it to resolve any issues concerning the desired functionality of ish.
The file /u/cs217/Assignment6/sample_ishrc.txt is a sample initialization file. It also serves as a minimal test case. The expectation is that you will devote substantial effort to creating and running additional test cases.
You should create a makefile. When the user types "make" (with no command-line arguments), your makefile should instruct the make program to build your ish program.
You should create a readme file. As always, the readme file should contain your name and any information that will help us to grade your work in the most favorable light. In particular you should describe all known bugs in your readme file.
Submit your work electronically via the command u/cs217/bin/submit 6 makefile readme sourcecodefilesYour work will be graded on correctness, understandability, and design. An important aspect of design is proper modularity through the definition and use of interfaces, implementations, and ADTs. To encourage good coding practices, you will lose points for any warning messages generated by gcc during the compilation of your work.
Your solution is due by 11:59 P.M. on the Dean's Day. That is a hard deadline; no work will be accepted after that time.