Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Programming Language Expert

Simple Shell

In this LAB, you will explore and extend a simple Unix shell interpreter. In doing so, you will learn the basics of system calls for creating and managing processes.
STEP 1: Compile the shell
chmod +x b.sh
make
make test # Use in Step 5 to test your changes to the Program
./shell

STEP 2: Try using the shell

Note: You need to specify the absolute paths of commands. Some commands to try:
/bin/ls
/bin/ls ..
cd /
/bin/pwd
/bin/bash
exit
./shell (Note: You need to be in the smp1 directory.)
./shell& (Note: You need to be in the smp1 directory.)
./b.sh (Note: You need to be in the smp1 directory.)
/bin/kill -s KILL nnnn (Where nnnn is a process ID.)
"./" means the current directory

STEP 3: Study the implementation of the shell

In preparation for the questions in Step 4, please explore the source code for the shell contained in 'shell.c'. You needn't understand every detail of the implementation, but try to familiarize yourself with the structure of the code, what it's doing, and the various library functions involved. Please use the 'man' command or Internet to browse the manual pages describing functions with which you are unfamiliar.
STEP 4: Questions
1. Why is it necessary to implement a change directory 'cd' command in the shell? Could it be implemented by an external program instead?
2. Explain how our sample shell implements the change directory command.
3. What would happen if this program did not use the fork function, but just used execv directly? (Try it!)

Try temporarily changing the code 'pid_from_fork = fork();'
to 'pid_from_fork = 0;'
4. Explain what the return value of fork() means and how this program uses it.
5. What would happen if fork() were called prior to chdir(), and chdir() invoked within the forked child process? (Try it!)

Try temporarily changing the code for 'cd' to use fork:
if (fork() == 0) {
if (chdir(exec_argv[1]))
/* Error: change directory failed */
fprintf(stderr, "cd: failed to chdir %s\n", exec_argv[1]);
exit(EXIT_SUCCESS);
}
6. Can you run multiple versions of ./b.sh in the background? What happens to their output?
7. Can you execute a second instance of our shell from within our shell program (use './shell')? Which shell receives your input?
8. What happens if you type CTRL-C while the countdown script ./b.sh is running? What if ./b.sh is running in the background?
9. Can a shell kill itself? Can a shell within a shell kill the parent shell?

./shell
./shell
/bin/kill -s KILL NNN (Where NNN is the parent's PID.)
10. What happens to background processes when you exit from the shell? Do they continue to run? Can you see them with the 'ps' command?

./shell
./b.sh&
exit
ps

STEP 5: Modify the Program

Please make the following modifications to the given file shell.c. As in previous lab, In this assignment there are some built-in test cases, which are described along with the feature requests below.
In addition to running the tests as listed individually, you can run "make test" to attempt all tests on your modified code.
1. Modify this Program so that you can use 'ls' instead of '/bin/ls' (i.e. the shell searches the path for the command to execute.)

Test: ./shell -test path
2. Modify this Program so that the command prompt includes a counter that increments for each command executed (starting with 1). Your program should use the following prompt format:

"Shell(pid=%1)%2> " %1=process pid %2=counter
(You will need to change this into a correct printf format)
Do not increment the counter if no command is supplied to execute.
Test: ./shell -test counter
3. Modify this Program so that '!NN' re-executes the n'th command entered. You can assume that NN will only be tested with values 1 through 9, no more than 9 values will be entered.

Shell(...)1> ls
Shell(...)2> !1 # re-executes ls
Shell(...)3> !2 # re-executes ls
Shell(...)4> !4 # prints "Not valid" to stderr
Test: ./shell -test rerun
4. Modify the Program so that it uses waitpid instead of wait.
5. Create a new builtin command 'sub' that forks the program to create a new subshell. The parent shell should run the imtheparent( ) function just as if we were running an external command (like 'ls').

./shell
Shell(.n1..)1> sub
Shell(.n2..)1> exit # Exits sub shell
Shell(.n1..)1> exit # Exits back to 'real' shell
6. Create a new global variable to prevent a subshell from invoking a subshell invoking a subshell (i.e., more than 3 levels deep):

./shell
Shell(.n1..)1> sub
Shell(.n2..)1> sub
Shell(.n3..)1> sub # prints "Too deep!" to stderr
Test: ./shell -test sub

Programming Language, Programming

  • Category:- Programming Language
  • Reference No.:- M9532551

Have any Question?


Related Questions in Programming Language

Task working with arraysoverviewin this task you will

Task: Working with Arrays Overview In this task you will create a simple program which will create and work with an array of strings. This array will then be populated with values, printed out to the console, and then, w ...

1 write a function named check that has three parameters

1. Write a function named check () that has three parameters. The first parameter should accept an integer number, andthe second and third parameters should accept a double-precision number. The function body should just ...

Background informationthis assignment tests your

Background Information This assignment tests your understanding of and ability to apply the programming concepts we have covered throughout the unit. The concepts covered in the second half of the unit build upon the fun ...

Php amp session managment assignment -this assignment looks

PHP & SESSION MANAGMENT ASSIGNMENT - This assignment looks at using PHP for creating cookies and session management. Class Exercise - Web Project: Member Registration/Login This exercise will cover adding data connectivi ...

Question 1 what is a computer program what is structured

Question: 1. What is a Computer program? What is structured programming? 2. What is modular programming? Why we use it? 3. Please evaluate Sin (x) by infinite series. Then write an algorithm to implement it with up to th ...

Assignment - horse race meetingthe assignment will assess

Assignment - Horse Race Meeting The Assignment will assess competencies for ICTPRG524 Develop high level object-oriented class specifications. Summary The assignment is to design the classes that are necessary for the ad ...

Question 1 what is hadoop explaining hadoop 2 what is

Question: 1. What is Hadoop (Explaining Hadoop) ? 2. What is HDFS? 3. What is YARN (Yet Another Resource Negotiator)? The response must be typed, single spaced, must be in times new roman font (size 12) and must follow t ...

Question - create a microsoft word macro using vba visual

Question - Create a Microsoft Word macro using VBA (Visual Basic for Applications). Name the macro "highlight." The macro should highlight every third line of text in a document. (Imagine creating highlighting that will ...

Assignment - proposal literature review research method1

Assignment - Proposal, Literature Review, Research Method 1. Abstract - Summary of the knowledge gap: problems of the existing research - Aim of the research, summary of what this project is to achieve - Summary of the a ...

Assignment - horse race meetingthe assignment will assess

Assignment - Horse Race Meeting The Assignment will assess competencies for ICTPRG524 Develop high level object-oriented class specifications. Summary The assignment is to design the classes that are necessary for the ad ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As