虚拟文件系统[5]

 

    文件对象表示进程已打开的文件。进程直接处理的是文件,而不是超级块、索引节点或目录项。

    文件对象是已打开文件在内存的表示。该对象(不是物理文件)由相应的open()系统调用创建,由close()系统调用销毁,所有这些文件相关的调用实际上都是文件操作表中定义的方法。

    因为多个进程可以同时打开和操作同一个文件,所以同一个文件也可能存在多个对应的文件对象。文件对象仅仅在进程观点上代表已打开的文件,它反过来指向目录项对象(目录项对象反过来指向索引节点),其实只有目录项对象才表示已打开的实际文件。虽然一个文件对应的文件对象不是唯一的,但对应的索引节点和目录项对象是唯一的。

   文件对象由file结构体表示:

 

  1. 在<Fs.h(include/linux)>中
  2. struct file {
  3.     /*
  4.      * fu_list becomes invalid after file_free is called and queued via
  5.      * fu_rcuhead for RCU freeing
  6.      */
  7.     union {
  8.         struct list_head    fu_list;
  9.         struct rcu_head     fu_rcuhead;
  10.     } f_u;
  11.     struct path     f_path;
  12. #define f_dentry    f_path.dentry 
  13. #define f_vfsmnt    f_path.mnt 
  14.     const struct file_operations    *f_op;
  15.     atomic_t        f_count;
  16.     unsigned int        f_flags;
  17.     mode_t          f_mode;
  18.     loff_t          f_pos;
  19.     struct fown_struct  f_owner;
  20.     unsigned int        f_uid, f_gid;
  21.     struct file_ra_state    f_ra;
  22.     unsigned long       f_version;
  23. #ifdef CONFIG_SECURITY 
  24.     void            *f_security;
  25. #endif 
  26.     /* needed for tty driver, and maybe others */
  27.     void            *private_data;
  28. #ifdef CONFIG_EPOLL 
  29.     /* Used by fs/eventpoll.c to link all the hooks to this file */
  30.     struct list_head    f_ep_links;
  31.     spinlock_t      f_ep_lock;
  32. #endif /* #ifdef CONFIG_EPOLL */ 
  33.     struct address_space    *f_mapping;
  34. };

类似于目录项对象,文件对象实际上没有对应的磁盘数据。所以在结构体中没有代表其对象是否为脏,是否需要写回磁盘的标志。文件对象通过f_dentry指针执行相关的目录项对象。目录项会执行相关的索引节点,索引节点会记录文件是否为脏。

  • 文件操作

  1. /*
  2.  * NOTE:
  3.  * read, write, poll, fsync, readv, writev, unlocked_ioctl and compat_ioctl
  4.  * can be called without the big kernel lock held in all filesystems.
  5.  */
  6. struct file_operations {
  7.     struct module *owner;
  8. /*该函数用于更新偏移量指针。由系统调用llseek()调用它*/
  9.     loff_t (*llseek) (struct file *, loff_t, int);
  10. /*该函数从给定文件的偏移处读取第三个参数指定大小的字节数据到第二个参数指定的缓冲中,同时更新文件指针。由系统调用read()调用它。*/
  11.     ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
  12. /*该函数从给定的缓冲区中取出指定字节的数据写入指定文件的偏移处,同时更新文件指针。由系统调用write()调用它。*/
  13.     ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
  14. /*该函数从第一个参数指定的文件中,以同步方式读取指定字节的数据到缓冲区中。由系统调用ait_read()调用它*/
  15.     ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
  16. /*该函数以同步方式从给定的缓冲区中取出指定字节的数据,写入第一个参数指定的文件中。由系统调用aio_write()调用它*/
  17.     ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
  18. /*该函数返回目录列表中的下一个目录。由系统调用readdir()调用它。*/
  19.     int (*readdir) (struct file *, void *, filldir_t);
  20. /*该函数睡眠等待给定文件的活动。由系统调用poll()调用它*/
  21.     unsigned int (*poll) (struct file *, struct poll_table_struct *);
  22. /*该函数用来给设备发送命令参数对。当文件是一个被打开的设备节点时,可以通过它进行设置操作。由系统调用ioctl()调用它。*/
  23.     int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
  24. /*该函数*/
  25.     long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
  26. /**/
  27.     long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
  28. /*该函数将给定的文件映射到指定的地址空间上。由系统调用mmap()调用它*/
  29.    int (*mmap) (struct file *, struct vm_area_struct *);
  30. /*该函数创建一个新的文件对象,并将它和相应索引节点对象关联起来。由系统调用open()调用它*/
  31.     int (*open) (struct inode *, struct file *);
  32. /*当已打开文件的引用计数减少时,该函数被VFS调用。它的作用根据具体文件系统而定*/
  33.     int (*flush) (struct file *, fl_owner_t id);
  34. /*当文件的最后一个引用被注销时,该函数会被VFS调用。它的作用根据具体文件系统而定*/
  35.    int (*release) (struct inode *, struct file *);
  36. /*将给定文件的所有被缓存的数据写回磁盘。该函数由fsync()调用*/
  37.    int (*fsync) (struct file *, struct dentry *, int datasync);
  38. /*将第一个参数指定的文件的所有被缓存数据写回到磁盘。该函数由系统调用aio_fsync()调用*/
  39.     int (*aio_fsync) (struct kiocb *, int datasync);
  40. /*该函数用于打开或关闭异步I/O的通告信号*/
  41.     int (*fasync) (intstruct file *, int);
  42. /*该函数用于给指定文件上锁*/
  43.     int (*lock) (struct file *, intstruct file_lock *);
  44. /*该函数用于从一个文件拷贝数据到另一个文件中,它执行的拷贝操作完全在内核中完成,避免了向用户空间进行不必要的拷贝。由系统调用sendfile()调用*/
  45.     ssize_t (*sendfile) (struct file *, loff_t *, size_t, read_actor_t, void *);
  46. /*该函数用来从一个文件向另一个文件发送数据*/
  47.     ssize_t (*sendpage) (struct file *, struct page *, intsize_t, loff_t *, int);
  48. /*该函数用于获取未使用的地址空间来映射给定的文件*/
  49.     unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  50. /*当给出SETFL命令时,这个函数用来检查传递给fcntl()系统调用的标志的有效性。*/
  51.     int (*check_flags)(int);
  52. /**/
  53.     int (*dir_notify)(struct file *filp, unsigned long arg);
  54. /*该函数用来实现flock()系统调用,该调用提供忠告锁*/
  55.     int (*flock) (struct file *, intstruct file_lock *);
  56. /**/
  57.     ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
  58. /**/
  59.     ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
  60. };

 

   具体的文件系统可以为每一种操作做专门的实现,如果存在通用操作,也可以使用通用操作。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值