What You Need to Know for Project Three. Dave Eckhardt Steve Muckle

Similar documents
Low Level Programming Lecture 2. International Faculty of Engineerig, Technical University of Łódź

3. Process Management in xv6

ICS143A: Principles of Operating Systems. Midterm recap, sample questions. Anton Burtsev February, 2017

x86 Assembly Tutorial COS 318: Fall 2017

W4118: PC Hardware and x86. Junfeng Yang

Hardware and Software Architecture. Chapter 2

Mechanisms for entering the system

The Microprocessor and its Architecture

Assembly Language. Lecture 2 - x86 Processor Architecture. Ahmed Sallam

x86 segmentation, page tables, and interrupts 3/17/08 Frans Kaashoek MIT

Computer Organization (II) IA-32 Processor Architecture. Pu-Jen Cheng

SYSTEM CALL IMPLEMENTATION. CS124 Operating Systems Fall , Lecture 14

We can study computer architectures by starting with the basic building blocks. Adders, decoders, multiplexors, flip-flops, registers,...

Tutorial 10 Protection Cont.

MICROPROCESSOR TECHNOLOGY

MICROPROCESSOR MICROPROCESSOR ARCHITECTURE. Prof. P. C. Patil UOP S.E.COMP (SEM-II)

+ Overview. Projects: Developing an OS Kernel for x86. ! Handling Intel Processor Exceptions: the Interrupt Descriptor Table (IDT)

Assembly Language. Lecture 2 x86 Processor Architecture

IA32 Intel 32-bit Architecture

Microkernel Construction

IA32/Linux Virtual Memory Architecture

Chapter 2: The Microprocessor and its Architecture

143A: Principles of Operating Systems. Lecture 5: Address translation. Anton Burtsev October, 2018

Lecture Dependable Systems Practical Report Software Implemented Fault Injection. July 31, 2010

Information Security II Prof. Kamakoti Department of Computer Science and Engineering Indian Institute of Technology, Madras

6.828: Using Virtual Memory. Adam Belay

143A: Principles of Operating Systems. Lecture 6: Address translation. Anton Burtsev January, 2017

The Instruction Set. Chapter 5

Function Calls COS 217. Reading: Chapter 4 of Programming From the Ground Up (available online from the course Web site)

6/17/2011. Introduction. Chapter Objectives Upon completion of this chapter, you will be able to:

Lecture (02) The Microprocessor and Its Architecture By: Dr. Ahmed ElShafee

238P: Operating Systems. Lecture 5: Address translation. Anton Burtsev January, 2018

Homework / Exam. Return and Review Exam #1 Reading. Machine Projects. Labs. S&S Extracts , PIC Data Sheet. Start on mp3 (Due Class 19)

COS 318: Operating Systems. Overview. Prof. Margaret Martonosi Computer Science Department Princeton University

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 2: IA-32 Processor Architecture Included elements of the IA-64 bit

Microkernel Construction

Exceptions and Processes

CS3210: Booting and x86. Taesoo Kim

Memory Models. Registers

MICROPROCESSOR MICROPROCESSOR ARCHITECTURE. Prof. P. C. Patil UOP S.E.COMP (SEM-II)

µ-kernel Construction (12)

Basic Execution Environment

EECE416 :Microcomputer Fundamentals and Design. X86 Assembly Programming Part 1. Dr. Charles Kim

CS3210: Booting and x86

MICROPROCESSOR ALL IN ONE. Prof. P. C. Patil UOP S.E.COMP (SEM-II)

Complex Instruction Set Computer (CISC)

x86 architecture et similia

Introduction to IA-32. Jo, Heeseung

Computer Processors. Part 2. Components of a Processor. Execution Unit The ALU. Execution Unit. The Brains of the Box. Processors. Execution Unit (EU)

INTRODUCTION TO IA-32. Jo, Heeseung

Assembly Language for Intel-Based Computers, 4 th Edition. Kip R. Irvine. Chapter 2: IA-32 Processor Architecture

Protection and System Calls. Otto J. Anshus

Dr. Ramesh K. Karne Department of Computer and Information Sciences, Towson University, Towson, MD /12/2014 Slide 1

For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to

Processes (Intro) Yannis Smaragdakis, U. Athens

Embedded Systems Programming

EXPERIMENT WRITE UP. LEARNING OBJECTIVES: 1. Get hands on experience with Assembly Language Programming 2. Write and debug programs in TASM/MASM

W4118: interrupt and system call. Junfeng Yang

EEM336 Microprocessors I. The Microprocessor and Its Architecture

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 2: IA-32 Processor Architecture. Chapter Overview.

Assembly Language: Function Calls

Chapter 2. lw $s1,100($s2) $s1 = Memory[$s2+100] sw $s1,100($s2) Memory[$s2+100] = $s1

CS 537 Lecture 2 - Processes

Buffer Overflow Attack

Assembly Language: Function Calls" Goals of this Lecture"

Load Effective Address Part I Written By: Vandad Nahavandi Pour Web-site:

Assembly Language for x86 Processors 7 th Edition. Chapter 2: x86 Processor Architecture

The x86 Architecture. ICS312 - Spring 2018 Machine-Level and Systems Programming. Henri Casanova

Assembly Language: Function Calls" Goals of this Lecture"

Operating Systems Engineering Recitation #3 (part 2): Interrupt and Exception Handling on the x86. (heavily) based on MIT 6.

Assembly Language: Function Calls. Goals of this Lecture. Function Call Problems

iapx Systems Electronic Computers M

Ausgewählte Betriebssysteme. Anatomy of a system call

Addressing Modes on the x86

Assembler Programming. Lecture 2

Systems Architecture I

Project 2: Signals. Consult the submit server for deadline date and time

Operating Systems and Protection CS 217

CSC369 Lecture 2. Larry Zhang

Processes and Tasks What comprises the state of a running program (a process or task)?

BOOTSTRAP, PC BIOS, AND IA32 MEMORY MODES. CS124 Operating Systems Winter , Lecture 5

Digital Forensics Lecture 3 - Reverse Engineering

PROTECTION CHAPTER 4 PROTECTION

CS 318 Principles of Operating Systems

Chapter 11. Addressing Modes

IA-32 Architecture COE 205. Computer Organization and Assembly Language. Computer Engineering Department

Binghamton University. CS-220 Spring X86 Debug. Computer Systems Section 3.11

ECE 391 Exam 1 Review Session - Spring Brought to you by HKN

Question 4.2 2: (Solution, p 5) Suppose that the HYMN CPU begins with the following in memory. addr data (translation) LOAD 11110

Scott M. Lewandowski CS295-2: Advanced Topics in Debugging September 21, 1998

Virtual Memory #2 Feb. 21, 2018

CPEG421/621 Tutorial

SYSC3601 Microprocessor Systems. Unit 2: The Intel 8086 Architecture and Programming Model

Author: Steve Gorman Title: Programming with the Intel architecture in the flat memory model

CSC369 Lecture 2. Larry Zhang, September 21, 2015

Machine-level Representation of Programs. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

CSE 153 Design of Operating Systems Fall 18

Simple C Program. Assembly Ouput. Using GCC to produce Assembly. Assembly produced by GCC is easy to recognize:

Computer Organization & Assembly Language Programming

Processes. Johan Montelius KTH

Transcription:

What You Need to Know for Project Three Dave Eckhardt Steve Muckle

Overview Introduction to the Kernel Project Mundane Details in x86 registers, paging, the life of a memory access, context switching, system calls, kernel stacks Loading Executables Style Recommendations (or pleas) Attack Strategy A Quick Debug Story Carnegie Mellon University 2

Introduction to the Kernel Project P3:P2 :: P2:P1! P2 P3 Stack, registers, stack, race conditions, stack Stack, registers, page tables, scheduling, races... You will become one with program execution P1: living without common assumptions P3: providing assumptions to users Carnegie Mellon University 3

The P3 Experience Goals/challenges More understanding Of OS Practice with synthesizing design requirements More code More planning More organization More quality! Robust Carnegie Mellon University 4

Introduction to the Kernel Project: Kernel Features Your kernels will feature: - preemptive multitasking - multiple virtual address spaces - a small selection of useful system calls - robustness (hopefully) Carnegie Mellon University 5

Introduction to the Kernel Project: Preemptive Multitasking Preemptive multitasking is forcing multiple user processes to share the CPU You will use the timer interrupt to do this Reuse your timer code from P1 if possible Carnegie Mellon University 6

Introduction to the Kernel Project: Preemptive Multitasking Simple round robin scheduling will suffice Some system calls will modify the sequence Think about them before committing to a design Context switching is tricky but cool As in P2, creating a new process/thread is hard Especially given memory sharing As in P2, exit is tricky too At least one How can I do that??? question Carnegie Mellon University 7

Introduction to the Kernel Project: Multiple Virtual Address Spaces The x86 architecture supports paging You will use this to provide a virtual address space for each user process Each user process will be isolated from others Paging will also protect the kernel from users Carnegie Mellon University 8

Introduction to the Kernel Project: System Calls You used them in P2 Now you get to implement them Examples include fork, exec, and thread_fork There are easier ones like getpid The core cluster must work solidly fork(), exec() exit(), wait() Carnegie Mellon University 9

Mundane Details in x86 We looked at some of these for P1 Now it is time to get the rest of the story How do we control processor features? What does an x86 page table look like? What route does a memory access take? How do you switch from one process to another? Carnegie Mellon University 10

Mundane Details in x86: Registers General purpose regs (not interesting) Segment registers (somewhat interesting) - %cs, %ss, %ds, %es, %fs, %gs %eip (a little interesting) EFLAGS (interesting) Control Registers (very interesting) - %cr0, %cr1, %cr2, %cr3, %cr4 - esp0 field in hardware task Carnegie Mellon University 11

Mundane Details in x86: General Purpose Registers The most boring kind of register %eax, %ebx, %ecx, %edx, %edi, %esi, %ebp, %esp %eax, %ebp, and %esp are exceptions, they are slightly interesting - %eax is used for return values - %esp is the stack pointer - %ebp is the base pointer Carnegie Mellon University 12

Mundane Details in x86: Segment Selector Registers Slightly more interesting %cs specifies the segment used to access code (also specifies privilege level) %ss specifies the segment used for stack related operations (pushl, popl, etc) %ds, %es, %fs, %gs specify segments used to access regular data Mind these during context switches!!! Carnegie Mellon University 13

Mundane Details in x86: The Instruction Pointer (%eip) It s interesting Cannot be read from or written to directly (branch, call, return) Controls which instructions get executed nuff said. Carnegie Mellon University 14

Mundane Details in x86: The EFLAGS Register It s interesting Flag city, including interrupt-enable, arithmetic flags Alignment check off Carnegie Mellon University 15

Mundane Details in x86: Control Registers Very interesting! An assortment of important flags and values %cr0 contains powerful system flags that control things like paging, protected mode %cr1 is reserved (now that s really interesting) %cr2 contains the address that caused the last page fault Carnegie Mellon University 16

Mundane Details in x86: Control Registers, cont. %cr3 contains the address of the current page directory, as well as a couple paging related flags %cr4 contains more flags (not as interesting though) - protected mode virtual interrupts? - virtual-8086 mode extensions? - No thanks Carnegie Mellon University 17

Mundane Details in x86: Registers How do you write to a special register? Most of them: movl instruction Some (like CRs) you need PL0 to access We will provide inline assembly wrappers EFLAGS is a little different, but you will not be writing directly to it anyway Carnegie Mellon University 18

Mundane Details in x86: The Life of a Memory Access Logical Address (consists of 16 bit segment selector, 32 bit offset) Segmentation Linear Address (32 bit offset) Paging Physical Address (32 bit offset) Carnegie Mellon University 19

Mundane Details in x86: The Life of a Memory Access Logical Address (consists of 16 bit segment selector, 32 bit offset) Segmentation Linear Address (32 bit offset) The 16 bit segment selector comes from a segment register (%CS, %SS implied) The 32 bit offset is added to the base address of the segment That gives us a 32 bit offset into the virtual address space Carnegie Mellon University 20

Mundane Details in x86: Segmentation Segments need not be backed by physical memory and can overlap Segments defined for these projects: 0xFFFFFFFF Kernel Code Kernel Data User Code User Data 0x00000000 Carnegie Mellon University 21

Mundane Details in x86: Segmentation For Project 3 we are abusing segmentation All segments look the same Confusing, but simplifies life for you See 15-410 segmentation guide on web site Carnegie Mellon University 22

Mundane Details in x86: The Life of a Memory Access Linear Address (32 bit offset) Paging Physical Address (32 bit offset) Top 10 bits index into page directory, point us to a page table The next 10 bits index into page table, point us to a page The last 12 bits are an offset into that page Carnegie Mellon University 23

Mundane Details in x86: Page Directories and Tables CR3 Current Process Page Directory Address Page Table Page Directory Page Table Page Table Carnegie Mellon University 24

Mundane Details in x86: Page Directory The page directory is 4k in size Contains pointers to page tables Entries may be invalid (see P bit) Figure from page 87 of intel-sys.pdf Carnegie Mellon University 25

Mundane Details in x86: Page Table The page table is also 4k in size Contains pointers to pages P bit again Figure from page 87 of intel-sys.pdf Carnegie Mellon University 26

Mundane Details in x86: The Life of a Memory Access Whoa there slick What if the page directory entry isn t there? What happens if the page table entry isn t there? It s called a page fault, it s an exception, and it lives in IDT entry 13 You will have to write a handler for this exception and do something intelligent Carnegie Mellon University 27

Mundane Details in x86: Context Switching We all know that processes take turns running on the CPU This means they have to be stopped and started over and over How? Carnegie Mellon University 28

Mundane Details in x86: Context Switching The x86 provides a hardware task abstraction But... This makes context switching easy It is actually faster to manage processes in software We can also tailor our process abstraction to our particular needs You must have at least one hardware task defined, we take care of this for you Carnegie Mellon University 29

Mundane Details in x86: Context Switching Context switching is a very delicate procedure Great care must be taken so that when the process is started, it does not know it ever stopped Registers must be exactly the same (%cr3 is the only control register you have to update) Its stack must be exactly the same Its page directory must be in place Carnegie Mellon University 30

Mundane Details in x86: Context Switching Hints on context switching: - Use the stack, it is a convenient place to store things - If you do all your switching in one routine, you have eliminated one thing you have to save (%eip) - New processes will require some special care Carnegie Mellon University 31

Mundane Details in x86: System Calls System calls use software interrupts Install handlers just as you did for the timer, keyboard Calling convention specified in handout Matches P2 If you are rusty on the IDT refer back to P1 Carnegie Mellon University 32

Mundane Details in x86: Kernel Stacks User processes have a separate stack for their kernel activities Located in kernel space How does the stack pointer get switched to the kernel stack? User-Level Stack Kernel Stack PCB Carnegie Mellon University 33

Mundane Details in x86: Kernel Stacks When the CPU switches from user mode to kernel mode the stack pointer is changed The new (kernel) stack pointer to use is stored in the configuration of the CPU hardware task We provide a function to change this value set_esp0(void* ptr) Used during next user kernel transition Carnegie Mellon University 34

Loading Executables Same approach as P2 RAM disk file system But you must write a loader Carnegie Mellon University 35

Loading Executables: The Loader You have access to the bytes You need to load them into the process address space Code, rodata, data, bss, stack all up to you! Executables will be in simple ELF format References to resources are in the handout Carnegie Mellon University 36

Encapsulation!!!!! You will re-implement chunks of your kernel It will be painful if code is holographic Don't use a linked list of processes Do define a process-list interface find(), append(), first(),... You may need to add a method......that changes the implementation entirely... But most existing interface uses (calls) will be ok Carnegie Mellon University 37

Machine State Summary 256 MB RAM, keyboard, console, timer IDT CPU state General-purpose registers Segment registers EFLAGS, cr0...cr4, esp0 We set up for you Hardware task GDT (global descriptor table) 4 segments Carnegie Mellon University 38

Attack Strategy There is an attack strategy in the handout It represents where we think you should be in particular weeks You WILL have to turn in checkpoints Carnegie Mellon University 39

Attack Strategy Please read the handout a couple times over the next few days Create doxygen-only files scheduler.c, process.c,... Document major functions Document key data structures A very iterative process Suggestion: doxygen tentative responsibilities For a good time, estimate #lines, #days Carnegie Mellon University 40

A Quick Debug Story Ha! You ll have to have been to lecture to hear this story. Carnegie Mellon University 41

A Quick Debug Story The moral is, please start early. Carnegie Mellon University 42

Our Hopes for You Project 3 can be a transformative experience You may become a different programmer Techniques, attitudes Employers care about this experience Alumni care about this experience #include <end_of_412_concern_stories> Carnegie Mellon University 43

Exhortation Please read the project handout soon! You need to plan how to get to Checkpoint 1 Carnegie Mellon University 44

Good Luck on Project 3! Carnegie Mellon University 45