struct files_struct {
- 大多數狀況, 避免動
/* count爲文件表files_struct的引用計數 */
/* count爲文件表files_struct的引用計數 */
atomic_t count;
/* 文件描述符表 */
/*
爲何有兩個fdtable呢?這是內核的一種優化策略。fdt爲指針, 而fdtab爲普通變量。通常狀況下,
fdt是指向fdtab的, 當須要它的時候, 纔會真正動態申請內存。由於默認大小的文件表足以應付大多數
狀況, 所以這樣就能夠避免頻繁的內存申請。
這也是內核的經常使用技巧之一。在建立時, 使用普通的變量或者數組, 而後讓指針指向它, 做爲默認狀況使
用。只有當進程使用量超過默認值時, 纔會動態申請內存。
*//*
struct fdtable __rcu *fdt;
struct fdtable fdtab;
* written part on a separate cache line in SMP
*/
/* 使用____cacheline_aligned_in_smp能夠保證file_lock是以cache
line 對齊的, 避免了false sharing */
spinlock_t file_lock ____cacheline_aligned_in_smp;
/* 用於查找下一個空閒的fd */
int next_fd;
/* 保存執行exec須要關閉的文件描述符的位圖 */
struct embedded_fd_set close_on_exec_init;
/* 保存打開的文件描述符的位圖 */
struct embedded_fd_set open_fds_init;
/* fd_array爲一個固定大小的file結構數組。struct file是內核用於文
件管理的結構。這裏使用默認大小的數組, 就是爲了能夠涵蓋
atomic_t count;
/* 文件描述符表 */
/*
爲何有兩個fdtable呢?這是內核的一種優化策略。fdt爲指針, 而fdtab爲普通變量。通常狀況下,
fdt是指向fdtab的, 當須要它的時候, 纔會真正動態申請內存。由於默認大小的文件表足以應付大多數
狀況, 所以這樣就能夠避免頻繁的內存申請。
這也是內核的經常使用技巧之一。在建立時, 使用普通的變量或者數組, 而後讓指針指向它, 做爲默認狀況使
用。只有當進程使用量超過默認值時, 纔會動態申請內存。
*//*
struct fdtable __rcu *fdt;
struct fdtable fdtab;
* written part on a separate cache line in SMP
*/
/* 使用____cacheline_aligned_in_smp能夠保證file_lock是以cache
line 對齊的, 避免了false sharing */
spinlock_t file_lock ____cacheline_aligned_in_smp;
/* 用於查找下一個空閒的fd */
int next_fd;
/* 保存執行exec須要關閉的文件描述符的位圖 */
struct embedded_fd_set close_on_exec_init;
/* 保存打開的文件描述符的位圖 */
struct embedded_fd_set open_fds_init;
/* fd_array爲一個固定大小的file結構數組。struct file是內核用於文
件管理的結構。這裏使用默認大小的數組, 就是爲了能夠涵蓋態分配 */
struct file __rcu * fd_array[NR_OPEN_DEFAULT];
};
態分配 */
struct file __rcu * fd_array[NR_OPEN_DEFAULT];
};
struct file struct list_head f_list; /*全部打開的文件造成一個鏈表*/ struct dentry *f_dentry; /*指向相關目錄項的指針*/ struct vfsmount *f_vfsmnt; /*指向VFS安裝點的指針*/ struct file_operations *f_op; /*指向文件操做表的指針*/ mode_t f_mode; /*文件的打開模式*/ loff_t f_pos; /*文件的當前位置*/ unsigned short f_flags; /*打開文件時所指定的標誌*/ unsigned short f_count; /*使用該結構的進程數*/ unsigned long f_reada, f_ramax, f_raend, f_ralen, f_rawin; /*預讀標誌、要預讀的最多頁面數、上次預讀後的文件指針、預讀的字節數以及預讀的頁面數*/ int f_owner; /* 經過信號進行異步I/O數據的傳送*/ unsigned int f_uid, f_gid; /*用戶的UID和GID*/ int f_error; /*網絡寫操做的錯誤碼*/ unsigned long f_version; /*版本號*/ void *private_data; /* tty驅動程序所需 */};
- {
內核中,對應於每一個進程都有一個文件描述符表,表示這個進程打開的全部文件。文件描述表中每一項都是一個指針,指向一個用於 描述打開的文件的數據塊———file對象,file對象中描述了文件的打開模式,讀寫位置等重要信息,當進程打開一個文件時,內核就會建立一個新的 file對象。須要注意的是,file對象不是專屬於某個進程的,不一樣進程的文件描述符表中的指針能夠指向相同的file對象,從而共享這個打開的文件。 file對象有引用計數,記錄了引用這個對象的文件描述符個數,只有當引用計數爲0時,內核才銷燬file對象,所以某個進程關閉文件,不影響與之共享同 一個file對象的進程.html
int open(const char *pathname, int flags);int open(const char *pathname, int flags, mode_t mode);
long do_sys_open(int dfd, const char __user *filename, int flags, int mode){ struct open_flags op; /* flags爲用戶層傳遞的參數, 內核會對flags進行合法性檢查, 並根據mode生成新的flags值賦給 lookup */ int lookup = build_open_flags(flags, mode, &op); /* 將用戶空間的文件名參數複製到內核空間 */ char *tmp = getname(filename); int fd = PTR_ERR(tmp); if (!IS_ERR(tmp)) { /* 未出錯則申請 fd = get_unused_fd_flags(flags); if (fd >= 0) { struct file *f = do_filp_open(dfd, tmp, &op, lookup); if (IS_ERR(f)) { put_unused_fd(fd); fd = PTR_ERR(f); } else { /* 產生文件打開的通知事件 */ fsnotify_open(f); /* 將文件描述符fd與文件管理結構file對應起來, 即安裝 */ fd_install(fd, f); } } putname(tmp); } return fd;}
- 新的文件描述符 */
- /* 申請新的文件管理結構file */
int alloc_fd(unsigned start, unsigned flags){ struct files_struct *files = current->files;//獲取當前進程的對應包含文件描述符表的結構 unsigned int fd; int error; struct fdtable *fdt; /* files爲進程的文件表, 下面須要更改文件表, 因此須要先鎖文件表 */ spin_lock(&files->file_lock);repeat: /* 獲得文件描述符表 */ fdt = files_fdtable(files); /* 從start開始, 查找未用的文件描述符。在打開文件時, start爲0 */ fd = start; /* files->next_fd爲上一次成功找到的fd的下一個描述符。使用next_fd, 能夠快速找到未用的文件描述符;*/ if (fd < files->next_fd) fd = files->next_fd; /* 當小於當前文件表支持的最大文件描述符個數時, 利用位圖找到未用的文件描述符。 若是大於max_fds怎麼辦呢?若是大於當前支持的最大文件描述符, 那它確定是未 用的, 就不須要用位圖來確認了。 */ if (fd < fdt->max_fds) fd = find_next_zero_bit(fdt->open_fds->fds_bits, fdt->max_fds, fd); /* expand_files用於在必要時擴展文件表。什麼時候是必要的時候呢?好比當前文件描述符已經超過了當 前文件表支持的最大值的時候。 */ error = expand_files(files, fd); if (error < 0) goto out; /* * If we needed to expand the fs array we * might have blocked - try again. */ if (error) goto repeat; /* 只有在start小於next_fd時, 才須要更新next_fd, 以儘可能保證文件描述符的連續性。*/ if (start <= files->next_fd) files->next_fd = fd + 1; /* 將打開文件位圖open_fds對應fd的位置置位 */ FD_SET(fd, fdt->open_fds);/* 根據flags是否設置了O_CLOEXEC, 設置或清除fdt->close_on_exec */ if (flags & O_CLOEXEC) FD_SET(fd, fdt->close_on_exec); else FD_CLR(fd, fdt->close_on_exec); error = fd;#if 1 /* Sanity check */ if (rcu_dereference_raw(fdt->fd[fd]) != NULL) { printk(KERN_WARNING "alloc_fd: slot %d not NULL!\n", fd); rcu_assign_pointer(fdt->fd[fd], NULL); }#endifout: spin_unlock(&files->file_lock); return error;}
void fd_install(unsigned int fd, struct file *file){ struct files_struct *files = current->files;//得到進程文件表(包含文件描述符表) struct fdtable *fdt; spin_lock(&files->file_lock); /* 獲得文件描述符表 */ fdt = files_fdtable(files); BUG_ON(fdt->fd[fd] != NULL); /* 將文件描述符表中的file類型的指針數組中對應fd的項指向file。 這樣文件描述符fd與file就創建了對應關係 */ rcu_assign_pointer(fdt->fd[fd], file); spin_unlock(&files->file_lock);}
SYSCALL_DEFINE1(close, unsigned int, fd){ struct file * filp; /* 獲得當前進程的文件表 */ struct files_struct *files = current->files; struct fdtable *fdt; int retval; spin_lock(&files->file_lock); /* 經過文件表, 取得文件描述符表 */ fdt = files_fdtable(files); /* 參數fd大於文件描述符表記錄的最大描述符, 那麼它必定是非法的描述符 */ if (fd >= fdt->max_fds) goto out_unlock; /* 利用fd做爲索引, 獲得file結構指針 */ filp = fdt->fd[fd]; /* 檢查filp是否爲NULL。正常狀況下, filp必定不爲NULL。 */ if (!filp) goto out_unlock; /* 將對應的filp置爲0*/ rcu_assign_pointer(fdt->fd[fd], NULL); /* 清除fd在close_on_exec位圖中的位 */ FD_CLR(fd, fdt->close_on_exec); /* 釋放該fd, 或者說將其置爲unused。*/ __put_unused_fd(files, fd); spin_unlock(&files->file_lock); /* 關閉file結構 */ retval = filp_close(filp, files); //這裏將引用計數 /* can't restart close syscall because file table entry was cleared */ if (unlikely(retval == -ERESTARTSYS || retval == -ERESTARTNOINTR || retval == -ERESTARTNOHAND || retval == -ERESTART_RESTARTBLOCK)) retval = -EINTR; return retval;out_unlock: spin_unlock(&files->file_lock); return -EBADF;}EXPORT_SYMBOL(sys_close);
static void __put_unused_fd(struct files_struct *files, unsigned int fd){ /* 取得文件描述符表 */ struct fdtable *fdt = files_fdtable(files); /* 清除fd在open_fds位圖的位 */ __FD_CLR(fd, fdt->open_fds); /* 若是fd小於next_fd, 重置next_fd爲釋放的fd */ if (fd < files->next_fd) files->next_fd = fd;}
每一個file
結構體都指向一個file_operations
結構體,這個結構體的成員都是函數指針,指向實現各類文件操做的內核函數。好比在用戶程序中read
一個文件描述符,read
經過系統調用進入內核,而後找到這個文件描述符所指向的file
結構體,找到file
結構體所指向的file_operations
結構體,調用它的read
成員所指向的內核函數以完成用戶請求。在用戶程序中調用lseek
、read
、write
、ioctl
、open
等函數,最終都由內核調用file_operations
的各成員所指向的內核函數完成用戶請求。file_operations
結構體中的release
成員用於完成用戶程序的close
請求,之因此叫release
而不叫close
是由於它不必定真的關閉文件,而是減小引用計數,只有引用計數減到0才關閉文件。對於同一個文件系統上打開的常規文件來講,read
、write
等文件操做的步驟和方法應該是同樣的,調用的函數應該是相同的,因此圖中的三個打開文件的file
結構體指向同一個file_operations
結構體。若是打開一個字符設備文件,那麼它的read
、write
操做確定和常規文件不同,不是讀寫磁盤的數據塊而是讀寫硬件設備,因此file
結構體應該指向不一樣的file_operations
結構體,其中的各類文件操做函數由該設備的驅動程序實現。node
每一個file
結構體都有一個指向dentry
結構體的指針,「dentry」是directory entry(目錄項)的縮寫。咱們傳給open
、stat
等函數的參數的是一個路徑,例如/home/akaedu/a
,須要根據路徑找到文件的inode。爲了減小讀盤次數,內核緩存了目錄的樹狀結構,稱爲dentry cache,其中每一個節點是一個dentry
結構體,只要沿着路徑各部分的dentry搜索便可,從根目錄/
找到home
目錄,而後找到akaedu
目錄,而後找到文件a
。dentry cache只保存最近訪問過的目錄項,若是要找的目錄項在cache中沒有,就要從磁盤讀到內存中。數組
每一個dentry
結構體都有一個指針指向inode
結構體。inode
結構體保存着從磁盤inode讀上來的信息。在上圖的例子中,有兩個dentry,分別表示/home/akaedu/a
和/home/akaedu/b
,它們都指向同一個inode,說明這兩個文件互爲硬連接。inode
結構體中保存着從磁盤分區的inode讀上來信息,例如全部者、文件大小、文件類型和權限位等。每一個inode
結構體都有一個指向inode_operations
結構體的指針,後者也是一組函數指針指向一些完成文件目錄操做的內核函數。和file_operations
不一樣,inode_operations
所指向的不是針對某一個文件進行操做的函數,而是影響文件和目錄佈局的函數,例如添加刪除文件和目錄、跟蹤符號連接等等,屬於同一文件系統的各inode
結構體能夠指向同一個inode_operations
結構體。緩存
inode
結構體有一個指向super_block
結構體的指針。super_block
結構體保存着從磁盤分區的超級塊讀上來的信息,例如文件系統類型、塊大小等。super_block
結構體的s_root
成員是一個指向dentry
的指針,表示這個文件系統的根目錄被mount
到哪裏,在上圖的例子中這個分區被mount
到/home
目錄下。安全
file
、dentry
、inode
、super_block
這 幾個結構體組成了VFS的核心概念。對於ext2文件系統來講,在磁盤存儲佈局上也有inode和超級塊的概念,因此很容易和VFS中的概念創建對應關 系。而另一些文件系統格式來自非UNIX系統(例如Windows的FAT3二、NTFS),可能沒有inode或超級塊這樣的概念,但爲了能mount
到Linux系統,也只好在驅動程序中硬湊一下,在Linux下看FAT32和NTFS分區會發現權限位是錯的,全部文件都是rwxrwxrwx
,由於它們原本就沒有inode和權限位的概念,這是硬湊出來的網絡
static const struct file_operations socket_file_ops = { .owner = THIS_MODULE, .llseek = no_llseek, .aio_read = sock_aio_read, .aio_write = sock_aio_write, .poll = sock_poll, .unlocked_ioctl = sock_ioctl,#ifdef CONFIG_COMPAT .compat_ioctl = compat_sock_ioctl,#endif .mmap = sock_mmap, .open = sock_no_open, /* special open code to disallow open via /proc */ .release = sock_close, .fasync = sock_fasync, .sendpage = sock_sendpage, .splice_write = generic_splice_sendpage, .splice_read = sock_splice_read,};
file = alloc_file(&path, FMODE_READ | FMODE_WRITE, &socket_file_ops);
struct file *alloc_file(struct path *path, fmode_t mode, const struct file_operations *fop){ struct file *file; /* 申請一個file */ file = get_empty_filp(); if (!file) return NULL; file->f_path = *path; file->f_mapping = path->dentry->d_inode->i_mapping; file->f_mode = mode; /* 將自定義的文件操做函數指針結構體賦給file->f_op */ file->f_op = fop; ……}
SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count){ struct file *file; ssize_t ret = -EBADF; int fput_needed; /* 經過文件描述符fd獲得管理結構file */ file = fget_light(fd, &fput_needed); if (file) { /* 獲得文件的當前偏移量 */ loff_t pos = file_pos_read(file); /* 利用vfs進行真正的read */ ret = vfs_read(file, buf, count, &pos); /* 更新文件偏移量 */ file_pos_write(file, pos); /* 歸還管理結構file, 若有必要, 就進行引用計數操做*/ fput_light(file, fput_needed); } return ret;}
ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos){ ssize_t ret; /* 檢查文件是否爲讀取打開 */ if (!(file->f_mode & FMODE_READ)) return -EBADF; /* 檢查文件是否支持讀取操做 */ if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read)) return -EINVAL; /* 檢查用戶傳遞的參數buf的地址是否可寫 */ if (unlikely(!access_ok(VERIFY_WRITE, buf, count))) return -EFAULT; /* 檢查要讀取的文件範圍實際可讀取的字節數 */ ret = rw_verify_area(READ, file, pos, count); if (ret >= 0) { /* 根據上面的結構, 調整要讀取的字節數 */ count = ret; /* 若是定義read操做, 則執行定義的read操做 若是沒有定義read操做, 則調用do_sync_read—其利用異步aio_read來完成同步的read操做。 */ if (file->f_op->read) ret = file->f_op->read(file, buf, count, pos); else ret = do_sync_read(file, buf, count, pos); if (ret > 0) { /* 讀取了必定的字節數, 進行通知操做 */ fsnotify_access(file); /* 增長進程讀取字節的統計計數 */ add_rchar(current, ret); } /* 增長進程系統調用的統計計數 */ inc_syscr(current); } return ret;}
int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, size_t len, int noblock, int flags, int *addr_len) …… ulen = skb->len - sizeof(struct udphdr); copied = len; if (copied > ulen) copied = ulen; ……
mutex_lock(&inode->i_mutex);//加鎖 blk_start_plug(&plug); ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);//發現文件是追加打開,直接從inode讀取最新文件大小做爲偏移量mutex_unlock(&inode->i_mutex); //解鎖
if (file->f_flags & O_APPEND) *pos = i_size_read(inode);
int dup(int oldfd);int dup2(int oldfd, int newfd);
SYSCALL_DEFINE1(dup, unsigned int, fildes){ int ret = -EBADF; /* 必須先獲得文件管理結構file, 同時也是對描述符fildes的檢查 */ struct file *file = fget_raw(fildes); if (file) { /* 獲得一個未使用的文件描述符 */ ret = get_unused_fd(); if (ret >= 0) { /* 將文件描述符與file指針關聯起來 */ fd_install(ret, file); } else fput(file); } return ret;}
void fd_install(unsigned int fd, struct file *file){ struct files_struct *files = current->files; struct fdtable *fdt; /* 對文件表進行保護 */ spin_lock(&files->file_lock); /* 獲得文件表 */ fdt = files_fdtable(files); BUG_ON(fdt->fd[fd] != NULL); /* 讓文件表中fd對應的指針等於該文件關聯結構file */ rcu_assign_pointer(fdt->fd[fd], file); spin_unlock(&files->file_lock);}
SYSCALL_DEFINE2(dup2, unsigned int, oldfd, unsigned int, newfd){ /* 若是oldfd與newfd相等, 這是一種特殊的狀況 */ if (unlikely(newfd == oldfd)) { /* corner case */ struct files_struct *files = current->files; int retval = oldfd; /* 檢查oldfd的合法性, 若是是合法的fd, 則直接返回oldfd的值; 若是是不合法的, 則返回EBADF */ rcu_read_lock(); if (!fcheck_files(files, oldfd)) retval = -EBADF; rcu_read_unlock(); return retval; } /* 若是oldfd與newfd不一樣, 則利用sys_dup3來實現dup2 */
return sys_dup3(oldfd, newfd, 0);}
int stat(const char *path, struct stat *buf);int fstat(int fd, struct stat *buf);int lstat(const char *path, struct stat *buf);
struct stat { dev_t st_dev; /* ID of device containing file */ ino_t st_ino; /* inode number */ mode_t st_mode; /* protection */ nlink_t st_nlink; /* number of hard links */ uid_t st_uid; /* user ID of owner */ gid_t st_gid; /* group ID of owner */ dev_t st_rdev; /* device ID (if special file) */ off_t st_size; /* total size, in bytes */ blksize_t st_blksize; /* blocksize for file system I/O */ blkcnt_t st_blocks; /* number of 512B blocks allocated */ time_t st_atime; /* time of last access */
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
SYSCALL_DEFINE2(stat, const char __user *, filename,struct __old_kernel_stat __user *, statbuf) struct kstat stat; int error; /* vfs_stat用於讀取文件元數據至stat */ error = vfs_stat(filename, &stat); if (error) return error; /* 這裏僅是從內核的元數據結構stat複製到用戶層的數據結構statbuf中 */ return cp_old_stat(&stat, statbuf);}
- {
int vfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat){ struct inode *inode = dentry->d_inode; int retval; /* 對獲取inode屬性操做進行安全性檢查 */ retval = security_inode_getattr(mnt, dentry); if (retval) return retval; /* 若是該文件系統定義了這個inode的自定義操做函數, 就執行它 */ if (inode->i_op->getattr) return inode->i_op->getattr(mnt, dentry, stat); /* 若是文件系統沒有定義inode的操做函數, 則執行通用的函數 */ generic_fillattr(inode, stat); return 0;}
void generic_fillattr(struct inode *inode, struct kstat *stat){ stat->dev = inode->i_sb->s_dev; stat->ino = inode->i_ino; stat->mode = inode->i_mode; stat->nlink = inode->i_nlink; stat->uid = inode->i_uid; stat->gid = inode->i_gid; stat->rdev = inode->i_rdev; stat->size = i_size_read(inode); stat->atime = inode->i_atime; stat->mtime = inode->i_mtime; stat->ctime = inode->i_ctime; stat->blksize = (1 << inode->i_blkbits); stat->blocks = inode->i_blocks;}