Signals and File I/O in Unix Programming

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/132

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.

133 Terms

1
New cards

Signal

Software interrupts for handling asynchronous events.

2
New cards

SIG

Prefix for all signal names in Unix.

3
New cards

<signal.h>

Header defining signal constants in Unix.

4
New cards

Signal number

Positive integer constant representing a signal.

5
New cards

SIGKILL

Signal that cannot be ignored or caught.

6
New cards

SIGSTOP

Signal that cannot be ignored or caught.

7
New cards

Terminal-generated signals

Signals from user terminal key presses.

8
New cards

Hardware exceptions

Signals generated by hardware errors.

9
New cards

kill() function

Sends signals to other processes.

10
New cards

Signal disposition

Action taken when a signal is received.

11
New cards

SIG IGN

Constant to ignore a signal.

12
New cards

SIG DFL

Constant for default signal action.

13
New cards

Signal handler

Function called when a signal occurs.

14
New cards

fork

System call creating a child process.

15
New cards

Unreliable signals

Signals that may be lost in earlier Unix versions.

16
New cards

EINTR

Error code for interrupted system calls.

17
New cards

Slow system calls

Calls that can block indefinitely.

18
New cards

wait function

Always interrupted when a signal is caught.

19
New cards

waitpid function

Similar to wait; interrupted by signals.

20
New cards

Reentrant functions

Functions that can be interrupted safely.

21
New cards

Signal handler arguments

First: signo; second: function pointer.

22
New cards

<sys/signal.h>

User-level header for signal handling in Mac OSX.

23
New cards

Signal Handler

Function that responds to signals in UNIX.

24
New cards

Async-Signal Safe

Functions safe to call within signal handlers.

25
New cards

Reentrant Function

Can be interrupted and safely called again.

26
New cards

errno

Global variable for error number in C.

27
New cards

Nonreentrant Function

Cannot be safely called from signal handlers.

28
New cards

File Descriptor

Non-negative integer referencing a file.

29
New cards

Standard Input

File descriptor 0, for input operations.

30
New cards

Standard Output

File descriptor 1, for output operations.

31
New cards

Standard Error

File descriptor 2, for error messages.

32
New cards

open Function

Opens a file and returns its descriptor.

33
New cards

openat Function

Opens a file relative to a directory.

34
New cards

TOCTTOU Error

Vulnerability from non-atomic file operations.

35
New cards

creat Function

Creates a file for write-only access.

36
New cards

close Function

Closes an open file descriptor.

37
New cards

lseek Function

Sets the file offset for reading/writing.

38
New cards

SEEK_SET

Set offset from beginning of file.

39
New cards

SEEK_CUR

Set offset from current position.

40
New cards

SEEK_END

Set offset from end of file.

41
New cards

Unbuffered I/O

Each read/write invokes a system call.

42
New cards

openat Use Case 1

Absolute pathname, fd is ignored.

43
New cards

openat Use Case 2

Relative pathname, fd specifies starting location.

44
New cards

openat Use Case 3

Relative pathname, fd is AT_FDCWD.

45
New cards

File Creation Modes

Options for file creation in open.

46
New cards

lseek

Records current file offset in kernel only.

47
New cards

File offset

Position in file for read/write operations.

48
New cards

File extension

Occurs when offset exceeds current file size.

49
New cards

Hole in file

Unbacked space in file, no storage required.

50
New cards

read function

Reads data from file, returns bytes read.

51
New cards

read return values

Returns bytes read, 0 for EOF, -1 for error.

52
New cards

Partial read

Less data read than requested due to various reasons.

53
New cards

write function

Writes data to file, returns bytes written.

54
New cards

write return values

Returns bytes written, -1 on error.

55
New cards

write error causes

Disk full or file size limit exceeded.

56
New cards

O_APPEND option

Sets file offset to end before writing.

57
New cards

I/O efficiency

System reads more data on sequential reads.

58
New cards

File sharing

Multiple processes can share open files.

59
New cards

Process table

Contains entries for each process's open files.

60
New cards

File descriptor flags

Flags associated with each file descriptor.

61
New cards

File table

Kernel maintains a table for all open files.

62
New cards

v-node structure

Contains file type info and operation pointers.

63
New cards

Atomic operations

Operations requiring multiple calls cannot be atomic.

64
New cards

pread function

Reads data without updating current file offset.

65
New cards

pwrite function

Writes data without updating current file offset.

66
New cards

Signal interruption

Can cause partial reads during read operations.

67
New cards

Atomic Operation

Operation performed entirely or not at all.

68
New cards

dup Function

Duplicates a file descriptor, returning new descriptor.

69
New cards

dup2 Function

Duplicates a file descriptor to specified value.

70
New cards

File Descriptor

Non-negative integer representing an open file.

71
New cards

sync Function

Flushes file system buffers to disk.

72
New cards

fsync Function

Flushes buffers for a specific file descriptor.

73
New cards

fdatasync Function

Flushes only data portions of a file.

74
New cards

Delayed Write

Data queued for later writing to disk.

75
New cards

Process ID (PID)

Unique identifier for each process.

76
New cards

Process ID 0

Scheduler process, also known as swapper.

77
New cards

Process ID 1

Init process, invoked at bootstrap completion.

78
New cards

getpid Function

Returns calling process's unique process ID.

79
New cards

getppid Function

Returns parent process's ID of calling process.

80
New cards

getuid Function

Returns real user ID of calling process.

81
New cards

geteuid Function

Returns effective user ID of calling process.

82
New cards

getgid Function

Returns real group ID of calling process.

83
New cards

getegid Function

Returns effective group ID of calling process.

84
New cards

fork Function

Creates a new process, returning twice.

85
New cards

Child Process

Process created by the fork function.

86
New cards

Process Creation

Existing process creates a new one via fork.

87
New cards

Scheduling Algorithm

Determines execution order of parent and child.

88
New cards

Process Termination

Releases process ID for future reuse.

89
New cards

Fork

Creates a child process duplicating the parent.

90
New cards

File Descriptor Duplication

Child inherits all open file descriptors.

91
New cards

Shared File Offset

Parent and child share the same file offset.

92
New cards

Intermixed Output

Uncoordinated writes from parent and child mix.

93
New cards

Inherited Properties

Child inherits various attributes from parent.

94
New cards

Process IDs

Parent and child have different process IDs.

95
New cards

Return Value of Fork

Fork returns different values for parent and child.

96
New cards

Pending Alarms

Cleared for the child process upon fork.

97
New cards

Zombie Process

Terminated process not yet waited on by parent.

98
New cards

vfork Function

Creates child without copying parent's address space.

99
New cards

Spawn

Fork followed by exec to run a new program.

100
New cards

Exit Function

Terminates a process in various defined ways.