Intro to the Shell with Fork, Exec, Wait

Slides:



Advertisements
Similar presentations
Processes Topics Process context switches Creating and destroying processes CS 105 “Tour of the Black Holes of Computing!”
Advertisements

1 Processes Professor Jennifer Rexford
1 Processes and Pipes COS 217 Professor Jennifer Rexford.
Process in Unix, Linux and Windows CS-3013 C-term Processes in Unix, Linux, and Windows CS-3013 Operating Systems (Slides include materials from.
Fork and Exec Unix Model Tutorial 3. Process Management Model The Unix process management model is split into two distinct operations : 1. The creation.
Some Example C Programs. These programs show how to use the exec function.
Shell (Part 1). Process r A process is an instance of an application running r If there are two instances of an application running then there are two.
Process in Unix, Linux, and Windows CS-3013 A-term Processes in Unix, Linux, and Windows CS-3013 Operating Systems (Slides include materials from.
1 Week 2 The Crunchy Shell to the Soft and Chewy Kernel… Sarah Diesburg 8/3/2010 COP4610 / CGS5765.
Shell (Part 2). Example r What if we want to support something like this: m ps –le | sort r One process should execute ps –le and another should execute.
Minishell InKwan Yu Topics Unix System calls waitpid() pipe() dup2() C function calls strtok() strcmp() Minishell Software Enginnering.
Creating and Executing Processes
CS252: Systems Programming Ninghui Li Based on Slides by Prof. Gustavo Rodriguez-Rivera Topic 8: Opening Files and Starting Processes.
Shell (Addendum). Example r What if we want to support something like this: m ps –le | sort r One process should execute ps –le and another should execute.
Operating Systems Process Creation
What is a Process? u A process is an executable “cradle” in which a program may run u This “cradle” provides an environment in which the program can run,
Process Management Azzam Mourad COEN 346.
Genesis: From Raw Hardware to Processes Andy Wang Operating Systems COP 4610 / CGS 5765.
1 A Seven-State Process Model. 2 CPU Switch From Process to Process Silberschatz, Galvin, and Gagne  1999.
CSCI 330 UNIX and Network Programming
Tutorial 3. In this tutorial we’ll see Fork() and Exec() system calls.
CS241 Systems Programming Discussion Section Week 2 Original slides by: Stephen Kloder.
1 Unix system calls fork( ) wait( ) exit( ). 2 How To Create New Processes? n Underlying mechanism -A process runs fork to create a child process -Parent.
CS241 Systems Programming Discussion Section Week 2 Original slides by: Stephen Kloder.
Using System Calls (Unix) Have to tell compiler (if C/C++) where to find the headers, etc. – i.e., the “include” files May have to tell compiler where.
1 Intro to the Shell with Fork, Exec, Wait Sarah Diesburg Operating Systems CS 3430.
The Shell What does a shell do? - execute commands, programs - but how? For built in commands run some code to do the command For other commands find program.
A process is a program in execution A running system consists of multiple processes – OS processes Processes started by the OS to do “system things” –
CSCI 4061 Recitation 2 1.
Error handling I/O Man pages
Week 3 Redirection, Pipes, and Background
CS 3305A Process – Part II Lecture 4 Sept 20, 2017.
Section 8: Processes What is a process Creating processes Fork-Exec
Precept 14 : Ish dup() & Signal Handling
LINUX System : Lecture 8 Programming with Processes
Using Processes.
Unix Process Management
CSC 382: Computer Security
Processes in Unix, Linux, and Windows
Example questions… Can a shell kill itself? Can a shell within a shell kill the parent shell? What happens to background processes when you exit from.
IT 344: Operating Systems Module 4 Processes
Processes in Unix, Linux, and Windows
Lecture 5: Process Creation
Fork and Exec Unix Model
LINUX System Programming with Processes (additional)
Processes in Unix, Linux, and Windows
Genesis: From Raw Hardware to Processes
Exceptional Control Flow Ⅱ
Process Creation Process Termination
Tutorial 3 Tutorial 3.
Programming Assignment # 2 – Supplementary Discussion
Process Programming Interface
Simple Shell Due date: March 27, 2002.
CS 105 “Tour of the Black Holes of Computing!”
Processes Prof. Ikjun Yeom TA – Mugyo
The Environment of Unix Process
CS 105 “Tour of the Black Holes of Computing!”
CS 105 “Tour of the Black Holes of Computing!”
Lecture 6: Multiprogramming and Context Switching
dup, dup2 An existing file descriptor (filedes) is duplicated
Processes CSE 351 Autumn 2018 Guest Instructor: Teaching Assistants:
Processes in Unix, Linux, and Windows
CSE 451: Operating Systems Autumn 2009 Module 4 Processes
IT 344: Operating Systems Winter 2008 Module 4 Processes
CSE 451: Operating Systems Winter 2007 Module 4 Processes
Processes in Unix and Windows
EECE.4810/EECE.5730 Operating Systems
EECE.4810/EECE.5730 Operating Systems
Chapter 3 Process Description and Control
Presentation transcript:

Intro to the Shell with Fork, Exec, Wait Sarah Diesburg Operating Systems CS 3430

The shell! The kernel!

Why is the Shell Important? Shells provide us with a way to interact with the core system Executes programs on our behalf Shows us our stuff No OS should be without one! Can think of a shell as “built around” a component So what are some examples of shells?

Is this a Shell?

Is this a Shell?

Is this a Shell?

Is this a Shell?

How do we Crack the Shell? In other words, how will our shell interact with the soft and chewy kernel? The mechanism we will explore today is through system calls Other ways /proc in Linux

System Calls What are system calls, again? Some important ones fork() execvp() waitpid() We will need to use all three above to make a fully-functioning shell

Shell Basics (Project 1) Basic shell components Prompt and accept user input Execute the command OR perform some built-in functionality (Loop back to first step)

Inside main() Continuous loop Parse user input Make something happen

Inside main() while(1) { }

Inside main() while(1) { */ Get user input */ }

Inside main() while(1) { */ Get user input */ */ Exit? */ }

Inside main() while(1) { */ Get user input */ */ Exit? */ */ Do something with input */ }

I/O Streams User input goes to virtual file descripter 0 Regular program output goes to virtual file descriptor 1 Sometimes error messages are printed to virtual file descriptor 2 Standard I/O Stream File descriptor Standard input (stdin) Standard output (stdout) 1 Standard error (stderr) 2

Getting Input / Printing Output Use the fgets() library call to get input from stdin char *fgets(char *s, int size, FILE *stream); Use printf() to print to stdout

fgets and printf #include <stdio.h> #include <stdlib.h> #define MAX_LINE 80 int main(int argc, char *argv[]) { char cmd[MAX_LINE]; /* Get user input */ fgets(cmd, MAX_LINE, stdin); printf("The input was [%s]\n",cmd); return 0; }

strtok We can use strtok to walk through a string and get each token #include <string.h> #include <stdio.h> int main() { const char str[80] = "This is a sample string 1 2 34"; const char s[2] = " "; char *token; /* get the first token */ token = strtok(str, s); /* walk through other tokens */ while( token != NULL ) printf( " %s\n", token ); token = strtok(NULL, s); } return(0); We can use strtok to walk through a string and get each token See ‘man strtok’ for more info

Processes Our shell process must continually run …but we need to execute other stuff on the user’s behalf How can we create “children” processes to do our work? Fork!

Fork Child pid==0 Parent pid==something else #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = fork()) == 0) { printf(“I am a child with pid %d\n”, pid); } else { printf(“I am the parent with pid %d\n”, pid); } return 0;

A fork Example, Nag.c Parent process #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = fork()) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; Parent process

A fork Example, Nag.c Parent process #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = fork()) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; Parent process

A fork Example, Nag.c Parent process Child process #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = fork()) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = fork()) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; Parent process Child process

A fork Example, Nag.c Parent process Child process #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = 3128) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = 0) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; Parent process Child process

A fork Example, Nag.c Parent process Child process #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = 3128) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main() { pid_t pid; if ((pid = 0) == 0) { while (1) { printf(“child’s return value %d: I want to play…\n”, pid); } } else { printf(“parent’s return value %d: After the project…\n”, pid); return 0; Parent process Child process

Nag.c Outputs >a.out child’s return value 0: I want to play… …// context switch parent’s return value 3218: After the project… ^C >

The exec System Call Family A fork by itself is not interesting To make a process run a program that is different from the parent process, you need exec system call exec starts a program by overwriting the current process

A exec Example A process #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <string.h> #define ARGV_SIZE 10 int main(int argc, char *argv[]) { char *myArgv[ARGV_SIZE]; // an array of pointers to strings myArgv[0] = "ps"; myArgv[1] = "-aux"; myArgv[2] = NULL; // last element should be a NULL pointer execvp(myArgv[0], myArgv); return 0; // should not be reached

Wait up? How does our parent process know to wait until the child is done? waitpid() Performing a wait allows the system to release the resources associated with the child If child is not waited on, it will become a zombie!

Zombie? Process that shows up with a “Z” status or the word <defunct> Child process has terminated, but parent has not waited on it Child process stays allocated on the system until Wait() or waitpid() is called by the parent The parent exits, and init “adopts” the zombie processes and performs a wait()

waitpid() int waitpid(pid_t pid, int *status, int options); pid – type of children to wait on For this project, pid==-1 to mean wait for any child process created by our parent *status – returns the status of the child process options – return if additional things have happened to the child

waitpid() Comment waitpid() line to see a defunct process for 10 seconds through ‘ps’ #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <stdlib.h> #include <sys/wait.h> int main() { pid_t pid; if ((pid = fork()) == 0) { printf("I am a child with pid %d\n", pid); } else { printf("I am the parent\n"); waitpid(-1, NULL, 0); sleep(10); } return 0;

In Summary Pieces necessary for project 1 Basic structure of shell Command line parsing Command execution

Any Questions?