Computer Science 330
Operating Systems

Spring 2012, Siena College

Programming Project 1: Process Tree
Due: 9:20 AM, Friday, February 3, 2012

Write a C program that creates a "binary tree" of Unix processes, similar to the class example that does the same using POSIX threads.

You may work alone or with a partner on this project.

Requirements

Call your program proctree.c and add a rule to your Makefile to compile this program into proctree.

Your program should take a single command-line parameter which specifies the number of levels in the binary process tree. Each process should be assigned a number corresponding to its position in a level-order traversal of the tree.

Given a height of 3, the tree can be thought of as this binary tree, where the parent-child links are not explicitly stored by your program but are part of the Unix process hierarchy. The tree should look something like this:

You won't draw a graphical representation, but your program's processes should print out the information about the tree, as follows:

-> ./proctree 3
 [1] pid 81142, ppid 48569
 [1] pid 81142 created left child with pid 81143
 [1] pid 81142 created right child with pid 81144
  [2] pid 81143, ppid 81142
  [3] pid 81144, ppid 81142
  [2] pid 81143 created left child with pid 81145
  [3] pid 81144 created left child with pid 81146
  [3] pid 81144 created right child with pid 81147
   [4] pid 81145, ppid 81143
  [2] pid 81143 created right child with pid 81148
   [6] pid 81146, ppid 81144
   [7] pid 81147, ppid 81144
   [5] pid 81148, ppid 81143
  [3] right child 81147 of 81144 exited with status 7
  [3] left child 81146 of 81144 exited with status 6
  [2] right child 81148 of 81143 exited with status 5
  [2] left child 81145 of 81143 exited with status 4
 [1] right child 81144 of 81142 exited with status 3
 [1] left child 81143 of 81142 exited with status 2

Note that each line of output is indented according to the depth of the node in the process tree and begins by printing the traversal position of the process that prints it.

Your program's processes should produce output in the following situations:

To be able to see what's happening and to reduce the chances that the output of your processes will be interleaved, you should put in calls to sleep(3).

You need not use shared memory for this program. In fact, it will probably confuse things if you try.

This program, as you are developing it, has a good chance of becoming a "fork bomb". To reduce the chances that this happens, you should check the return value of your fork() calls and stop if it returns -1, which indicates that you were unable to spawn a process. You should also limit your trees to small heights when debugging. Feel free to try larger tree sizes once you're confident that your program is working to see how large a tree you can get before you run out of processes. Try it at least on the FreeBSD machine (winterstorm), and a Linux system in the lab. Include these results in the comment at the top of your program.

Submission and Evaluation

This project is graded out of 25 points.

To submit this project, send your C source file and Makefile as attachments to jteresco AT siena.edu by 9:20 AM, Friday, February 3, 2012.

> Grading Breakdown
Correct number of levels created 4 points
Correct total number of processes created 2 points
Correct usage of fork system call, including error checks 2 points
Correct usage of waitpid system call 2 points
Correct printing of child exit status in parent 1 point
Sleep between successive levels 1 point
Traversal order labels 3 points
Indentation based on tree level 2 points
Largest tree size reported in comment 1 point
Documentation 4 points
Design and style 2 points
Makefile 1 point