TLPI - The Linux Programming Interface

Book
Code

Chapter 4. File I/O: The Universal I/O Model

Changing the File Offset: lseek()

off_t lseek(int fd, off_t offset, int whence);
  • SEEK_SET
  • SEEK_CUR
  • SEEK_END
    如果文件系统产生hole,这段内容读出来是0

Chapter 5. File I/O: Further Details

Relationship Between File Descriptors and Open Files

file offset记录在open file table中


image.png

Duplicating File Descriptors

Chapter 13. File I/O Buffering

Kernel Buffering of File I/O: The Buffer Cache

  • read()、write()系统调用并不直接写到磁盘,而是和cache打交道。
  • 虽然read()、write()很快,但最好以BUF_SIZE传输效率最高,大小4K。系统调用负担也很大。

Controlling Kernel Buffering of File I/O

int fsync(int fd); //针对某个文件
void sync(void);//针对整个系统

打开文件用O_SYNC参数,每次write后自动flush

fd = open(pathname, O_WRONLY | O_SYNC);

Summary of I/O Buffering

fflush()保证调用了write()系统调用,fsync(),sync()保证写到了磁盘上。


image.png

Bypassing the Buffer Cache: Direct I/O

O_DIRECT参数打开文件,不走kernel cache,影响性能。

Chapter 21. Signals: Signal Handlers

Interruption and Restarting of System Calls

  1. We establish a handler for some signal.
  2. We make a blocking system call, for example, a read() from a terminal device, which blocks until input is supplied.
  3. While the system call is blocked, the signal for which we established a handler is delivered, and its signal handler is invoked.
    默认情况下,read()会返回EINTR。在设置flag为SA_RESTART时,system call会自动重启。

Chapter 23. Timers and Sleeping

Setting Timeouts on Blocking Operations

参见书中例子

Chapter 24. Process Creation

Overview

  • fork()
  • exit()
  • wait()
  • execve() //argv + envp, 系统调用,其他函数(exec)调用这个函数
image.png

File Sharing Between Parent and Child

When a fork() is performed, the child receives duplicates of all of the parent’s file descriptors. These duplicates are made in the manner of dup().
下面的例子证明了,父子进程共享文件,子进程修改描述符的offset,父进程也同样结果。


image.png

Memory Semantics of fork()

为了避免拷贝内存:

  1. 代码段设置为只读,父子进程的代码段指向同一段物理内存。
  2. 对于 data, heap, and stack,Linux内核采用copy-on-write.

The vfork() System Call

和fork的区别:

  1. 父子进程共享内存
  2. 父进程不需要调用wait(),就可以等待子进程退出。

Chapter 27. Program Execution

Executing a New Program: execve()

exec家族函数是调用execve()实现的
/proc/PID/exe是对运行文件的符号链接。

Interpreter Scripts

#! interpreter-path [optional-arg]

File Descriptors and exec()

$ ls /tmp > dir.txt

以上的shell脚本做了几件事

  1. A fork() is performed to create a child process that is also running a copy of the shell
  2. The child shell opens dir.txt for output using file descriptor 1
    1. The child shell closes descriptor 1 (STDOUT_FILENO) and then opens the file dir.txt.
    2. The shell opens dir.txt, obtaining a new file descriptor.
  3. The child shell execs the ls program.

The close-on-exec flag (FD_CLOEXEC)

在执行exec函数前,关掉FD。此功能可以用fcntl()查看,并且修改。

Chapter 55. File Locking

Overview

  • flock():整个文件上锁
  • fcntl():文件的某个范围上锁
    为了使用lock,而不被stdio的缓存机制破坏,调用setbuf() 关闭stdio缓存。

File Locking with flock()

image.png

Semantics of Lock Inheritance and Release

释放锁可以通过:

  1. LOCK_UN操作
  2. 所有关联的FD都关闭
    锁的信息存在Open file table中,而不是存在FD中。flock操作的是内核中的file object,而不是FD。下图通过dup句柄,然后对新句柄操作,就可以释放锁(因为这两个FD都指向同一个file object)。
    image.png

    下图说明两个不同open()会产生两个不同file。第二次lock会被锁住。
    image.png

    fork()后得到的子进程的FD,其实dup父进程得到的,所以子进程可以解锁lock.
    image.png

flock()的限制

  1. Only whole files can be locked.
  2. We can place only advisory locks with flock().
  3. Many NFS implementations don’t recognize locks granted by flock().

Record Locking with fcntl()

image.png

image.png

lock split


image.png

Lock Limits and Performance

image.png

Semantics of Lock Inheritance and Release

下图的例子,说明close(fd2)就可以关闭lock,即使lock发生在fd1上。


image.png

Mandatory Locking

使用Mandatory Locking的先决条件

# mount -o mand /dev/sda10 /testfs

The /proc/locks File

image.png

其中第6列的含义是major dev:minor dev:inode number


image.png

确定ID 3:7 是 /dev/sda7


image.png

image.png

箭头代表被block的lock

Running Just One Instance of a Program

The /var/run directory is the usual location for such lock files. For example, syslogd creates the file /var/run/syslogd.pid.

Chapter 63. Alternative I/O Models

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,290评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,107评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,872评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,415评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,453评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,784评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,927评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,691评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,137评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,472评论 2 326
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,622评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,289评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,887评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,741评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,316评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,490评论 2 348

推荐阅读更多精彩内容