مواضيع المحاضرة: Tcp
قراءة
عرض

Operating Systems Security

Lesson Preview
• Understand the important role an operating system plays in computer security
• Learn about the need for hardware support for isolating OS from untrusted user/application code
• Understand key trusted computing base concepts

Operating Systems (OS)

حماية نظام التشغيل OS Scurty


حماية نظام التشغيل OS Scurty

• Operating System:

• Provides easier to use and high levelabstractions for resources such as address space for memory and files for disk blocks.
• Provides controlled access to hardware resources.
• Provides isolation between different processes and between the processes running untrusted/application code and the trusted operating system.
Operating Systems
حماية نظام التشغيل OS Scurty


Need for Trusting an Operating System

• Why do we need to trust the operating system?
• (AKA a trusted computing base or TCB)
• What requirements must it meet to be trusted?
• TCB Requirements:
• Tamper-proof,
• Complete mediation, and
• Correct
حماية نظام التشغيل OS Scurty

TCB and Resource Protection

• Must establish the source of a request for a resource (authentication is how we do it)
• Authorization or access control
• Mechanisms that allow various policies to be supported
TCB Controls access to protected resources
حماية نظام التشغيل OS Scurty

Secure OS Quiz #1

• This vendor’s more secure OS met TCB requirements while the others did not.
• The two OS were similar as far as security was concerned but one was not as big a target.
• The more secure OS could be much simpler than the other one.
A computer vendor ad claimed that its computers (including the OS they ran) were more secure. This claim could be based on one or more of the following:



حماية نظام التشغيل OS Scurty

Secure OS Quiz #2

• Is the cost of a system call:
• the same as a regular call
• higher than a regular call
A system call allows application code to gain access to functionality implemented by the OS. A system call is often called a protected procedure call.


حماية نظام التشغيل OS Scurty


حماية نظام التشغيل OS Scurty

Secure OS Quiz #3

• Process runs on behalf of a user who must have previously logged in,
• Requested resource allows us to find out who must be requesting it
Complete mediation ensures that the OS cannot be bypassed when accessing a protected resource. How does the OS know who is making the request for the resource?
حماية نظام التشغيل OS Scurty


Isolating OS from Untrusted User Code

• How do we meet the first requirement of aTCB (e.g., isolation or tamper-proof)?
• Hardware support for memory protection
• Processor execution modes (system AND user modes, execution rings)
• Privileged instructions which can only be executed in system mode
• System calls used to transfer control between user and system code

حماية نظام التشغيل OS Scurty

System Calls: Going from User to OS Code

• System calls used to transfer control between user and system code
• Such calls come through “call gates” and return back to user code. The processor execution mode or privilege ring changes when call and return happen.
• x86 Sysenter/sysexit instructions

حماية نظام التشغيل OS Scurty

Isolating User Processes from Each Other

• How do we meet the user/user isolation and separation?
• OS uses hardware support for memory protection to ensure this.

حماية نظام التشغيل OS Scurty


Tampering with the OS Quiz

• Modification of firmware by Thunderstrike malware via malicious devices that connect via Mac’s Thunderbolt interface
• Exploiting the ‘refresh’ mechanism of a Dynamic RAM for privilege escalation
• Exploiting OS code buffer overflow vulnerability
Which of these methods have been shown to allow hacker access to ‘secure’ memory belonging to the OS?
حماية نظام التشغيل OS Scurty

• Processes view memory as contiguous often larger than available physical memory

• Usually 232 or 264 addresses
• Each process has its own mapping
Address Space: Unit of Isolation
حماية نظام التشغيل OS Scurty

Address Translation

• Operating system maps logical virtual addresses or pages onto physical memory frames
حماية نظام التشغيل OS Scurty





حماية نظام التشغيل OS Scurty

Process Data/Code Protection

• OS will not map a virtual page of process A to a physical page of process B unless explicit sharing is desired.
• Process A cannot access process B’s memory because it has no way to name/reach its memory.

• Page tables managed by OS

حماية نظام التشغيل OS Scurty

Process Protection

through Memory Management
• Processor memory management unit (MMU) uses page tables to resolve virtual addresses to physical addresses.
• RWX bits on pages limit type of access to addressable memory

Revisiting Stack Overflow Quiz

• Overflowing the buffer to change the return address to alter program execution
• Pushing data onto the stack to overflow the stack into the heap
• Popping data off the stack to gain access to application code.
The stack can be exploited through:


حماية نظام التشغيل OS Scurty



• Now think, how can we do a non-executable stack to help prevent code injection via stack buffer?
Preventing Malicious Code Execution on the Stack through a Non-Executable Stack
• Used by Windows, OS X, Linux
حماية نظام التشغيل OS Scurty




حماية نظام التشغيل OS Scurty

OS Isolation from Application Code

• OS (Kernel) resides in a portion of each process’s address space.
• True for each process, processes can cross the fence only in controlled/limited ways.

OS Isolation from Application Code

• Linux, DOS, OS X
• 32-bit Linux: Lower 3GB for user code/data, top 1GB for kernel
• Corresponds to x86 privilege ring transitions
• Windows and OS X similar
• DOS had no such fence, any process could alter DOS and viruses could spread by hooking DOS interrupt handlers via kernel changes


Linux User/Kernel Memory Split
حماية نظام التشغيل OS Scurty


حماية نظام التشغيل OS Scurty

Execution Privilege Level Quiz

• Switching CPU from one process to another when a process blocks.
• Page fault handling
• Changing who can access a protected resource such as a file
• Setting up a new stack frame when an application program calls one of its functions
For the following described functions, Should it be executed in the operating system or if it can be executed in application code running in user mode?
حماية نظام التشغيل OS Scurty

• OS

• User

Complete Mediation:

The TCB
• Make sure that no protected resource (e.g., memory page or file) could be accessed without going through the TCB
• TCB acts as a reference monitor that cannot be bypassed
• Privileged instructions
حماية نظام التشغيل OS Scurty



حماية نظام التشغيل OS Scurty

Complete Mediation:

User Code
• User code cannot access OS part ofaddress space without changing tosystem mode
• User code cannot access physical resources because they require privileged instructions (e.g. servicing interrupts) which can only be executed in system mode

حماية نظام التشغيل OS Scurty

Complete Mediation:

OS
• OS virtualizes physical resources andprovides an API for virtualized resources
• File for storing persistent data on disk
• Virtual resource must be translated to physical resource handle (e.g., file buffers) which can only be done by OS, which ensures complete mediation
حماية نظام التشغيل OS Scurty




حماية نظام التشغيل OS Scurty



Virtualization
• OS is large and complex, even different operating systems may be desired by different customers
• Compromise of an OS impacts all applications

Limiting the Damage of a Hacked OS

• Use: Hypervisor, virtual machines, guest OS and applications
• Compromise of OS in VM1 only impacts applications running on VM1
حماية نظام التشغيل OS Scurty

• Do your taxes in on VM1 while browsing potentially dangerous places on the web on VM2

• What is the TCB here?
• Hypervisor!
Limiting the Damage of a Hacked OS
حماية نظام التشغيل OS Scurty

Virtualization Security Layers

حماية نظام التشغيل OS Scurty




Correctness:
The Final TCB Requirement
• Compromise of OS (TCB) means an attacker has access to everything.
• Getting the TCB right is extremely important
• Smaller and simpler (hypervisor only partitions physical resources among VMs and let us guest OS handle management)
• Secure coding is really important when writing the OS which typically is written in languages that are not type safe

حماية نظام التشغيل OS Scurty

TCB Requirements Quiz

• What TCB requirement is violated as a result of this attack?
An attack that exploits a vulnerability in an operating system turns off the check that is performed before access to a protected resource is granted.

حماية نظام التشغيل OS Scurty

Complete mediation

Correctness
Tamper-proof

Size of Security Code Quiz

• Windows OS is 100x larger than MS DOS
• Windows OS is 500x larger than MS DOS
• Windows OS is 10,000x larger than MS DOS
حماية نظام التشغيل OS Scurty




Going from MS DOS to recent Windows operating systems, what is a rough estimate for the multiplier for the lines of code (e.g. multiplier is x if recent Windows OS is x times the number of lines of code in DOS)?

Hypervisor Code Size Quiz

• 10,000
• 150,000
• 1,000,000
The number of lines of code in a hypervisor is expected to be smaller. Xen is an open source hypervisor.
حماية نظام التشغيل OS Scurty

What is a rough estimate for the lines of code for the Xen hypervisor?

حماية نظام التشغيل OS Scurty

Operating Systems Security

Lesson Summary
• Understand the important role an OS plays in protecting resources and applications
• Understand how OS is isolated from untrusted code with hardware support for memory management
• Understand how complete mediation is provided.



رفعت المحاضرة من قبل: سلمان صلاح
المشاهدات: لقد قام عضوان و 129 زائراً بقراءة هذه المحاضرة








تسجيل دخول

أو
عبر الحساب الاعتيادي
الرجاء كتابة البريد الالكتروني بشكل صحيح
الرجاء كتابة كلمة المرور
لست عضواً في موقع محاضراتي؟
اضغط هنا للتسجيل