CS420: Operating Systems OS Services & System Calls



Similar documents
CS3600 SYSTEMS AND NETWORKS

Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont.

Operating System Structures

OPERATING SYSTEM SERVICES

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition

Example of Standard API

System Structures. Services Interface Structure

Kernel Types System Calls. Operating Systems. Autumn 2013 CS4023

Lecture 1 Operating System Overview

Chapter 2 System Structures

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

Operating System Structure

Operating- System Structures

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

Chapter 3: Operating-System Structures. Common System Components

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines

Operating Systems and Networks

Chapter 3 Operating-System Structures

How do Users and Processes interact with the Operating System? Services for Processes. OS Structure with Services. Services for the OS Itself

INTRODUCTION TO OPERATING SYSTEMS

CS 3530 Operating Systems. L02 OS Intro Part 1 Dr. Ken Hoganson

Operating Systems. Rafael Ramirez (T, S)

Operating System Components

OPERATING SYSTEMS Software in the Background. Chapter 2

Operating System Software

Operating Systems 4 th Class

How To Write A Windows Operating System (Windows) (For Linux) (Windows 2) (Programming) (Operating System) (Permanent) (Powerbook) (Unix) (Amd64) (Win2) (X

Chapter 4. System Software. What You Will Learn... Computers Are Your Future. System Software. What You Will Learn... Starting the Computer

Operating system Dr. Shroouq J.

Operating Systems OBJECTIVES 7.1 DEFINITION. Chapter 7. Note:

Discovering Computers

Chapter 7A. Functions of Operating Systems. Types of Operating Systems. Operating System Basics

ELEC 377. Operating Systems. Week 1 Class 3

Operating System Components and Services

Chapter 5: System Software: Operating Systems and Utility Programs

Software: Systems and Application Software

CHAPTER 15: Operating Systems: An Overview

Overview of Operating Systems Instructor: Dr. Tongping Liu

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc.

Upon completion of this chapter, you will able to answer the following questions:

Computers: Tools for an Information Age

After studying this lesson, you will have a clear understanding of, what an Operating System is. functions of an Operating System

A single user ran a single program ran on a single computer there was no need for Page 1 of 6 Copyright Virtual University of Pakistan

Operating System Structures

Operating System Today s Operating Systems File Basics File Management Application Software

STUDY GUIDE CHAPTER 4

4.1 Introduction 4.2 Explain the purpose of an operating system Describe characteristics of modern operating systems Control Hardware Access

Multiprogramming. IT 3123 Hardware and Software Concepts. Program Dispatching. Multiprogramming. Program Dispatching. Program Dispatching

Introduction. System Calls

OPERATING SYSTEMS STRUCTURES

1/5/2013. Technology in Action

Chapter 8 Objectives. Chapter 8 Operating Systems and Utility Programs. Operating Systems. Operating Systems. Operating Systems.

Operating Systems. Notice that, before you can run programs that you write in JavaScript, you need to jump through a few hoops first

Outline: Operating Systems

CSC 2405: Computer Systems II

Chapter Contents. Operating System Activities. Operating System Basics. Operating System Activities. Operating System Activities 25/03/2014

Restraining Execution Environments

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems

Chapter 10 Case Study 1: LINUX

Computer Organisation Operating Systems

Chapter 3. Operating Systems

Click to view Web Link, click Chapter 8, Click Web Link from left navigation, then click BIOS below Chapter 8 p. 395 Fig. 8-4.

Networking Operating Systems (CO32010)

Operating Systems PART -A

Components of a Computing System. What is an Operating System? Resources. Abstract Resources. Goals of an OS. System Software

Chapter 15 Windows Operating Systems

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Introduction. What is an Operating System?

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor

Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture

Chapter 4. Operating Systems and File Management

Page 1 of 5. IS 335: Information Technology in Business Lecture Outline Operating Systems

Kernel. What is an Operating System? Systems Software and Application Software. The core of an OS is called kernel, which. Module 9: Operating Systems

ThinPoint Quick Start Guide

Multi-core Programming System Overview

Chapter 14: Protection. Chapter 14: Protection. Objectives. Goals of Protection. Domain Structure. Principles of Protection

Operating Systems. and Windows

How To Understand The History Of An Operating System

Lesson 06: Basics of Software Development (W02D2

Lecture 6: Operating Systems and Utility Programs

10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition

OS Concepts and structure

For Introduction to Java Programming, 5E By Y. Daniel Liang

International Engineering Journal For Research & Development

Real Time Programming: Concepts

Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v Steps to Developing a QNX Program Quickstart Guide

Android Architecture. Alexandra Harrison & Jake Saxton

Programming for GCSE Topic H: Operating Systems

Here is a demonstration of the Aqua Accelerated Protocol (AAP) software see the Aqua Connect YouTube Channel

Lectures 9 Advanced Operating Systems Fundamental Security. Computer Systems Administration TE2003

13.1 Backup virtual machines running on VMware ESXi / ESX Server

3 - Introduction to Operating Systems

COMSOL Server. Manual

Computer Science 4302 Operating Systems. Student Learning Outcomes

Remote Access to Unix Machines


CPS221 Lecture: Operating System Structure; Virtual Machines

LSN 10 Linux Overview

Host Hardening. OS Vulnerability test. CERT Report on systems vulnerabilities. (March 21, 2011)

Transcription:

NK YORK COLLEGE OF PENNSYLVANIA HG OK 2 YORK COLLEGE OF PENNSYLVAN OS Services & System Calls James Moscola Department of Physical Sciences York College of Pennsylvania Based on Operating System Concepts, 9th Edition by Silberschatz, Galvin, Gagne

Operating System Services Operating systems provide an environment for execution of programs and services to programs and users One set of operating-system services provides functions that are helpful to the user: - User interface - Almost all operating systems have a user interface (UI). Varies between Command-Line (CLI), Graphics User Interface (GUI), Batch - Program execution - The system must be able to load a program into memory and to run that program, end execution, either normally or abnormally (indicating error) - I/O operations - A running program may require I/O, which may involve a file or an I/O device - File-system manipulation - The file system is of particular interest. Programs need to read and write files and directories, create and delete them, search them, list file Information, permission management. 2

Operating System Services (Cont.) - Communications Processes may exchange information, on the same computer or between computers over a network Communications may be via shared memory or through message passing (packets moved by the OS) - Error detection OS needs to be constantly aware of possible errors May occur in the CPU and memory hardware, in I/O devices, in user program For each type of error, OS should take the appropriate action to ensure correct and consistent computing Debugging facilities can greatly enhance the user s and programmer s abilities to efficiently use the system 3

Operating System Services (Cont.) Another set of OS functions exists for ensuring the efficient operation of the system itself via resource sharing - Resource allocation - When multiple users or multiple jobs running concurrently, resources must be allocated to each of them Many types of resources - Some (such as CPU cycles, main memory, and file storage) may have special allocation code, others (such as I/O devices) may have general request and release code - Accounting - To keep track of which users use how much and what kinds of computer resources - Protection and security - The owners of information stored in a multiuser or networked computer system may want to control use of that information, concurrent processes should not interfere with each other Protection involves ensuring that all access to system resources is controlled Security of the system from outsiders requires user authentication, extends to defending external I/O devices from invalid access attempts 4

A View of Operating System Services 5

User Operating System Interface - CLI Command Line Interface (CLI) or command interpreter allows direct command entry Sometimes implemented in kernel, sometimes by systems program Sometimes multiple flavors implemented shells Primarily fetches a command from user and executes it - Sometimes commands built-in, sometimes just names of programs If the latter, adding new features doesn t require shell modification 6

User Operating System Interface - GUI User-friendly desktop metaphor interface - Usually mouse, keyboard, and monitor - Icons represent files, programs, actions, etc. - Various mouse buttons over objects in the interface cause various actions (provide information, options, execute function, open directory/folder - Invented at Xerox PARC in early 1970s Many systems now include both CLI and GUI interfaces - Microsoft Windows is GUI with CLI command shell - Apple Mac OS X has Aqua GUI interface with UNIX kernel underneath and shells available - Solaris is CLI with optional GUI interfaces (Java Desktop, KDE) 7

System Calls Programming interface to the services provided by the OS Typically written in a high-level language (C or C++) Mostly accessed by programs via a high-level Application Program Interface (API) rather than direct system call use Three most common APIs are Win32 API for Windows, POSIX API for POSIXbased systems (including virtually all versions of UNIX, Linux, and Mac OS X), and Java API for the Java virtual machine (JVM)! Why use APIs rather than system calls? 8

Example of System Calls System call sequence to copy the contents of one file to another file 9

System Call Implementation A system-call interface links function calls in an API to system calls provided by the OS! The system call interface invokes intended system call in OS kernel and returns status of the system call and any return values! The caller need know nothing about how the system call is implemented - Just needs to obey API and understand what OS will do as a result call - Most details of OS interface hidden from programmer by API Managed by run-time support library (set of functions built into libraries included with compiler) 10

System Call Parameter Passing Three general methods used to pass parameters to the OS 1) Simplest: pass the parameters in registers - In some cases, may be more parameters than registers 2) Parameters stored in a block, or table, in memory, and address of block passed as a parameter in a register - This approach taken by Linux and Solaris 3) Parameters placed, or pushed, onto the stack by the program and popped off the stack by the operating system Block and stack methods (2 & 3) do not limit the number or length of parameters being passed 11

Types of System Calls Process control - end, abort - load, execute - create process, terminate process - get process attributes, set process attributes - wait for time - wait event, signal event - allocate and free memory File management - create file, delete file - open, close file - read, write, reposition - get and set file attributes 12

Types of System Calls (Cont.) Device management - request device, release device - read, write, reposition - get device attributes, set device attributes - logically attach or detach devices Information maintenance - get time or date, set time or date - get system data, set system data - get and set process, file, or device attributes 13

Types of System Calls (Cont.) Communications - create, delete communication connection - send, receive messages - transfer status information - attach and detach remote devices Protection - get permissions, set permissions 14

Process Control In MS-DOS Single-tasking Shell is invoked when system boots Simple method to run program - No process created Single memory space Loads program into memory, overwriting all but the kernel Program exit -> shell reloaded - Program can pass information back to shell 15

Process Control In MS-DOS (a) At system startup (b) running a program 16

Process Control In FreeBSD FreeBSD is a variant of Unix Supports multitasking User login -> invoke shell Shell executes fork() system call to create process - Executes exec() to load program into memory - Shell waits for process to terminate or continues with user commands Process exits with code of 0 if no error - Exits with code > 0 if there is an error (error code identifies the type of error) 17

Process Control In FreeBSD 18