Process Manipulation. Process Manipulation in UNIX Basic process manipulation: creation, program loading, exiting, … fork(), exec(), wait(), exit() Process.

Slides:



Advertisements
Similar presentations
Process Management.
Advertisements

More on Processes Chapter 3. Process image _the physical representation of a process in the OS _an address space consisting of code, data and stack segments.
1 CS345 Operating Systems Φροντιστήριο Άσκησης 1.
Using tcpdump. tcpdump is a powerful tool that allows us to sniff network packets and make some statistical analysis out of those dumps. tcpdump operates.
UNIX Process Control Bach 7 Operating Systems Course Hebrew University Spring 2007.
Processes CSCI 444/544 Operating Systems Fall 2008.
Process Process: the UNIX abstraction of a stand-along computer that manages resources (memory, CPU, I/O resources) comprising a running program. Processes.
Advanced OS Chapter 3p2 Sections 3.4 / 3.5. Interrupts These enable software to respond to signals from hardware. The set of instructions to be executed.
Process in Unix, Linux and Windows CS-3013 C-term Processes in Unix, Linux, and Windows CS-3013 Operating Systems (Slides include materials from.
Ceng Operating Systems Chapter 2.1 : Processes Process concept Process scheduling Interprocess communication Deadlocks Threads.
CS-502 Fall 2006Processes in Unix, Linux, & Windows 1 Processes in Unix, Linux, and Windows CS502 Operating Systems.
CSSE Operating Systems
Unix & Windows Processes 1 CS502 Spring 2006 Unix/Windows Processes.
Operating Systems (CSCI2413) Lecture 3 Processes phones off (please)
Processes in Unix, Linux, and Windows CS-502 Fall Processes in Unix, Linux, and Windows CS502 Operating Systems (Slides include materials from Operating.
1 OS Structure, Processes & Process Management. 2 What is a Process? A process is a program during execution.  Program = static file (image)  Process.
Process in Unix, Linux, and Windows CS-3013 A-term Processes in Unix, Linux, and Windows CS-3013 Operating Systems (Slides include materials from.
Introduction to Processes CS Intoduction to Operating Systems.
Implementing Processes and Process Management Brian Bershad.
Exec Function calls Used to begin a processes execution. Accomplished by overwriting process imaged of caller with that of called. Several flavors, use.
Lecture 3 Process Concepts. What is a Process? A process is the dynamic execution context of an executing program. Several processes may run concurrently,
Creating and Executing Processes
1 Chapter 2.1 : Processes Process concept Process concept Process scheduling Process scheduling Interprocess communication Interprocess communication Threads.
8-Sep Operating Systems Yasir Kiani. 8-Sep Agenda for Today Review of previous lecture Process scheduling concepts Process creation and termination.
Agenda  Working with Processes: Purpose Running Programs within same process (execl, execlp, execle, execv, execvp, execve) “Spawning” other process (fork,
System calls for Process management
Review The Joys and Pains of Threads and Multithreading –what is a thread –threads vs. processes –opportunities and risks.
Scis.regis.edu ● CS 468: Advanced UNIX Class 5 Dr. Jesús Borrego Regis University 1.
Silberschatz, Galvin and Gagne  Operating System Concepts Process Concept An operating system executes a variety of programs:  Batch system.
Processes CS 6560: Operating Systems Design. 2 Von Neuman Model Both text (program) and data reside in memory Execution cycle Fetch instruction Decode.
Concurrency & Context Switching Process Control Block What's in it and why? How is it used? Who sees it? 5 State Process Model State Labels. Causes of.
Operating Systems Process Creation
1 Computer Systems II Introduction to Processes. 2 First Two Major Computer System Evolution Steps Led to the idea of multiprogramming (multiple concurrent.
1  process  process creation/termination  context  process control block (PCB)  context switch  5-state process model  process scheduling short/medium/long.
Processes, Threads, and Process States. Programs and Processes  Program: an executable file (before/after compilation)  Process: an instance of a program.
System calls for Process management Process creation, termination, waiting.
1 Lecture 19: Unix signals and Terminal management n what is a signal n signal handling u kernel u user n signal generation n signal example usage n terminal.
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.
Process Management Process Concept Why only the global variables?
Chapter 3: Process Concept
Protection of System Resources
Unix Process Management
Process Creation Processes get created (and destroyed) all the time in a typical computer Some by explicit user command Some by invocation from other running.
Operating Systems: A Modern Perspective, Chapter 6
Chapter 3: Processes.
Processes A process is a running program.
Review An OS in action Processes and Programs
Processes in Unix, Linux, and Windows
IT 344: Operating Systems Module 4 Processes
Processes in Unix, Linux, and Windows
Cs561 Presenter: QIAOQIAO CHEN Spring 2012
Interprocess Communication
Processes in Unix, Linux, and Windows
Operating Systems Lecture 6.
Processes Hank Levy 1.
Processes and Process Management
Process Control B.Ramamurthy 2/22/2019 B.Ramamurthy.
Controlling Processes
CSE 451: Operating Systems Winter 2003 Lecture 4 Processes
Unix Process Control B.Ramamurthy 4/11/2019 B.Ramamurthy.
Processes in Unix, Linux, and Windows
IT 344: Operating Systems Winter 2008 Module 4 Processes
Processes in Unix and Windows
CSE 451: Operating Systems Autumn 2004 Module 4 Processes
Process Description and Control in Unix
Processes Hank Levy 1.
Process Description and Control in Unix
Don Porter Portions courtesy Emmett Witchel
System Programming: Process Management
Presentation transcript:

Process Manipulation

Process Manipulation in UNIX Basic process manipulation: creation, program loading, exiting, … fork(), exec(), wait(), exit() Process signaling kill() Process control ptrace(), nice(), sleep() An example application: The UNIX shell

Process Creation The system creates the first process (sysproc in UNIX) The first process creates other processes such that: – the creator is called the parent process – the created is called the child process – the parent/child relationships can be expressed by a process tree For example, in UNIX the second process is called init – it creates all the gettys (login processes) and daemons – it should never die – it controls the system configuration (num of processes, priorities… The system interface includes a call to create processes – In UNIX, for example, it is called fork()

Example: UNIX ’ s fork() Creates a child process such that it inherits: – identical copies of all parent ’ s variables & memory – identical copies of all parent ’ s CPU registers (except one) Both parent and child execute at the same point after fork() returns: – for the child, fork() returns 0 – for the parent, fork() returns the process identifier of the child Simple implementation of fork(): – allocate memory for the child process – copy parent ’ s memory and CPU registers to child ’ s – expensive!

Usage of fork() In the parent process: main() … int pid = fork();// create a child if(pid == 0) {// child continues here … } else {// parent continues here … }

Characteristics of fork() Parent and child ’ s code must be in the same “ program ” – limits the usefulness for general purpose process creation – gets out of control quickly if many children are to be created! The child inherits all the open files & network connections – having parent and child share the I/O & network is tricky – behavior with respect to network connections vary – if the child does not use the inherited open files, then the work to set up this sharing is useless, and resources are consumed within the OS for no good reason Again, and lest you forget, it is expensive

Program Loading: exec() The exec() call allows a process to “ load ” a different program and start execution at _start It allows a process to specify the number of arguments (argc) and the string argument array (argv) It the call is successful – it is the same process!! – it runs a different program!! Two implementation options: – overwrite current memory segments with the new values – allocate new memory segments, load them with the new values, and deallocate old segments

General Purpose Process Creation In the parent process: main() … int pid = fork();// create a child if(pid == 0) {// child continues here exec( “ program ”, argc, argv0, argv1, …); } else {// parent continues here … }

Properties of the fork/exec sequence In 99% of the time, we call exec() after calling fork() – the memory copying during fork() operation is useless – the child process will likely close the open files & connections – overhead is therefore high – might as well combine them in one call (OS/2) vfork() – a system call that creates a process “ without ” creating an identical memory image – sometimes called lightweight fork() – child process is understood to call exec() almost immediately

Orderly Termination: exit() After the program finishes execution, it calls exit() This system call: – takes the “ result ” of the program as an argument (CRT0 calls exit() with the value returned by the main program) – closes all open files, connections, etc. – deallocates memory – deallocates most of the OS structures supporting the process – checks if parent is alive: If so, it holds the result value until parent requests it, process does not really die, but it enters the zombie/defunct state If not, it deallocates all data structures, the process is dead – cleans up all waiting zombies

The Process Life Cycle StartReadyRunning I/O Wait Done Process creation, resources allocated Process loaded in main memory Process waiting for I/O Done Resources deallocated I/O requested I/O done Zombie

The wait() System Call A child program returns a value to the parent, so the parent must arrange to receive that value The wait() system call serves this purpose – it puts the parent to sleep waiting for a child ’ s result – when a child calls exit(), the OS unblocks the parent and returns the value passed by exit() as a result of the wait call (along with the pid of the child) – if there are no children alive, wait() returns immediately – also, if there are zombies waiting for their parents, wait() returns one of the values immediately (and deallocates the zombie)

Process Control O.S. must include calls to enable special control of a process: Priority manipulation: – nice(), which specifies base process priority (initial priority) – but recall, priority in UNIX decays as the process consumes CPU Debugging support: – ptrace(), allows a process to be put under control of another – the other process can set breakpoints, examine registers, etc. Alarms and time: – sleep puts a process on a timer queue waiting for some number of seconds, supporting an alarm functionality

Signaling The O.S. translates some events into asynchronous signals: – input/output – alarms The O.S. also translates exceptions into signals, e.g.: – Memory access violations, illegal instructions, overflow, etc. Signals also used for process control, e.g.: – SIGKILL to kill a process, SIGSTOP to stop a process, etc. Rudimentary process communications, e.g.: – processes may use the kill() system call to send signals to each other (SIGUSR1, SIGUSR2)

Signal Handling A process can: – rely on the default signal handler (e.g. core dump in UNIX) – ignore signal (temporarily or permanently, dangerous) – sets its own handler Fundamental difference between signals & regular I/O – A process gets regular I/O when it chooses to do so (synchronous) – A process is interrupted and forced to handle a signal whenever a signal is posted (and not ignored). This is asynchronous Signals are very difficult to deal with and are better avoided

How Does it Work? Function h Program sets signal handler to h Signals work very much like interrupts hence the name software interrupts 1. An event of interest occurs 2. If process masks event out queue the signal 3. else, stop process, push its context on stack, force process to jump to handler Signal posted instruction

Tying it All Together: The Shell while(! EOF) { read input handle regular expressions if(built-in command) { execute command; continue; } if(child = fork()) {// create a child to run command child = wait(&res); } else {// command is run here exec(command, argc, argv0, argv1, … env); }

Other Process Control by Shell Translates to kill command using the kill() system call with SIGKILL Translates to stop the foreground process using the kill() system call with SIGSTOP Allows input-output redirections, pipes, and a lot of other stuff that we will see later

Basic Process Implementation Each process has a process control block (pcb) that: – describes its components and other relevant data – allows efficient and centralized access to all information related to a process Routing queues usually use pointers to pcb ’ s Naming: Each process has a process identifier (pid) – must be unique – must be reused with extreme care after a process terminates Questions: – mapping from pids to pcbs, how to implement queues, allocation and deallocation of pcb ’ s?

The Process Control Block pid links for queueing context: registers, memory descriptors security credentials: uid, gid, euid, egid signal mask signal handlers usage counters usage limits and quotas current state pointers to parent, child & sibling scheduling information: current priority, base priority, decay counters, etc.