D686: Operating Systems for Computer Scientists (chapter 16)

0.0(0)
studied byStudied by 25 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

30 Terms

1
New cards

mechanisms

implement the enforcement of protection policies and control access to resources

2
New cards

policies

set rules for how resources should be accessed and used, providing guidelines for access control

3
New cards

principle of least privilege

A design principle stating that every program and every privileged user of the system should operate using the least amount of privilege necessary to complete the job.

4
New cards

permissions

An entity's access rights to an object (e.g., a user's access rights to a file).

5
New cards

compartmentalization

The process of protecting each system component through the use of specific permissions and access restrictions.

6
New cards

audit trail

The collection of activities in a log for monitoring or review.

7
New cards

defense in depth

The theory that more layers of defense provide stronger defense than fewer layers.

8
New cards

privilege separation

a security technique that divides system operations into different levels of access or privileges, restricting higher-privileged tasks to certain users or processes to reduce the risk of unauthorized access or damage to critical system components

9
New cards

protection rings

a model for privilege separation where concentric rings represent different privilege levels, with inner rings having higher privileges

10
New cards

ring 3

the outermost ring with the lowest privileges, where user-mode code runs with restricted access

11
New cards

ring 0

the innermost ring with the highest privileges, where the kernel operates with full access

12
New cards

hypervisor

The computer function that manages the virtual machine; also called a virtual machine manager (VMM).

13
New cards

TrustZone (TZ)

ARM processor implementation of the most secure protection ring.

14
New cards

secure monitor call (SMC)

An ARM processor special instruction that can be used by the kernel to request services from the TrustZone.

15
New cards

hardware objects

The CPU, memory devices, input/output (I/O) devices, and any other physical components that are part of a computer

16
New cards

software objects

The software components that make up a computer or device (files, programs, semaphores, etc.).

17
New cards

need-to-know principle

The principle that only those resources currently needed should be available to use at a given time.

18
New cards

protection domain

In protection, a set of resources that a process may access. In virtualization, a virtual machine manager creates a protection domain for each guest to inform the CPU of which physical memory pages belong to that guest.

19
New cards

access right

The ability to execute an operation on an object.

20
New cards

domain switching

The mechanism for switching dynamic domains

21
New cards

access matrix

An abstract model of protection in which each row represents a domain, each column an object, and each entry a set of access rights.

22
New cards

confinement problem

The problem of guaranteeing that no information initially held in an object can migrate outside of its execution environment.

23
New cards

access list

a set of rules that controls the permissions granted to users or systems for accessing various resources, such as files, directories, or network services

24
New cards

capability list

a protection mechanism listing objects and the permitted operations on each

25
New cards

capability

a token or key representing an object's access rights in a capability list

26
New cards

role-based access control (RBAC)

a method of access control in which roles rather than individual users directly receive permissions, enhancing security and simplifying administration

27
New cards

mandatory access control (MAC)

security settings enforced by system policies that restrict access based on predefined rules and labels.

28
New cards

role

a predefined set of permissions assigned to users based on their organizational position or function within RBAC systems

29
New cards

discretionary access control (DAC)

permission system that allows users to decide who can access files and resources

30
New cards

labels

identifiers assigned to objects or users in a system; used to enforce security policies