CS 211: Computer Architecture (Solution)

$ 20.99
Category:

Description

Programming Assignment 3: Bomb lab
1 Introduction
2 Instruction
To download your bomb, go to:
http://assembly.cs.rutgers.edu:9102
Fill the form up with your NetID and your email address to get your bomb package. The file that you will get is in the format bombN.tar, where N is your bomb ID. If you havent downloaded it in the iLab machines, copy the file there and untar your bomb into your home directory. You must do this assignment on one of the following ilab machines:
cd.cs.rutgers.edu cp.cs.rutgers.edu grep.cs.rutgers.edu kill.cs.rutgers.edu less.cs.rutgers.edu ls.cs.rutgers.edu man.cs.rutgers.edu pwd.cs.rutgers.edu rm.cs.rutgers.edu top.cs.rutgers.edu vi.cs.rutgers.edu cpp.cs.rutgers.edu pascal.cs.rutgers.edu java.cs.rutgers.edu perl.cs.rutgers.edu basic.cs.rutgers.edu python.cs.rutgers.edu prolog.cs.rutgers.edu assembly.cs.rutgers.edu lisp.cs.rutgers.edu
You can then untar the bomb with:
tar -xvf bombID.tar
It will create a directory bombID that should contain the following files:
1. bomb: The executable binary bomb
2. bomb.c: Source file with the bombs main routine
3. README: File with the bomb ID and extra information
Your job is to defuse the bomb. You can use many tools to help you with this; please look at the tools section for some tips and ideas. The best way is to use a debugger to step through the disassembled binary. The bomb has multiple phases. The phases get progressively harder to defuse, but the expertise you gain as you move from phase to phase should offset this difficulty. Nonetheless, the latter phases are not easy, so please dont wait until the last minute to start. The bomb ignores blank input lines. If you run your bomb with a command line argument, for example,
./bomb mysolution.txt
then it will read the input lines from mysolution.txt until it reaches EOF (end of file), and then switch over to stdin (standard input from the terminal). In a moment of weakness, Dr. Evil added this feature so you dont have to keep retyping the solutions to phases you have already defused. To avoid accidentally detonating the bomb, you will need to learn how to single-step through the assembly code and how to set breakpoints. You will also need to learn how to inspect both the registers and the memory states. One of the nice side-effects of doing the lab is that you will get very good at using a debugger. This is a crucial skill that will pay big dividends the rest of your career.
IMPORTANT: Every time that the bomb explodes, you will lose 0.5 points. It is important that you use breakpoints and avoid those unnecessary explosions.
3 Checking your Work
We provided a webpage where you can check your work. Here you can access the scoreboard to verify how many points you have, up to which phase you have defused the bomb, and so on. http://assembly.cs.rutgers.edu:9102/scoreboard
4 Tools
• gdb: The GNU debugger is a command line debugger tool available on virtually ev- ery platform. You can trace through a program line by line, examine memory and registers, look at both the source code and assembly code (we are not giving you the source code for most of your bomb), set breakpoints, set memory watch points, and write scripts. Here are some tips for using gdb.
– To keep the bomb from blowing up every time you type in a wrong input, youll want to learn how to set breakpoints.
– For other documentation, type help at the gdb command prompt, or type man gdb, or info gdb at a Unix prompt. Some people also like to run gdb under gdb-mode in emacs.
– The CS:APP Student Site has a very handy gdb summary (there is also a more extensive tutorial)
• objdump -d bomb: Use this to disassemble all of the code in the bomb. You can also just look at individual functions. Reading the assembler code can tell you how the bomb works. Although objdump -d gives you a lot of information, it doesn’t tell you the whole story.
• strings -t x bomb: This utility will display the printable strings in your bomb and their offset within the bomb. Dont forget, the commands apropos and man are your friends.
5 Submission
You have to submit the assignment using Canvas. Your submission should be a tar file named bombID.tar that can be extracted using the command:
tar -xf bombID.tar
Extracting your tar file must give a directory called bombID. This directory should contain the same files that you downloaded, along with the file mysolution.txt to defuse the bomb. To create the tar file that you will submit after finishing your programming assignment, you will use the following command line, in the parent directory of bombID:
tar -cvf bombID.tar bombID

Reviews

There are no reviews yet.

Be the first to review “CS 211: Computer Architecture (Solution)”

Your email address will not be published. Required fields are marked *