在处理xv6中的文件时,我可以看到一个名为Omode的整数变量。它是什么?它有什么价值?
例如,这是来自Xv6的开放系统调用:

int sys_open(void)
{
  char *path;
  int fd, omode;
  struct file *f;
  struct inode *ip;

  if (argstr(0, &path) < 0 || argint(1, &omode) < 0)
    return -1;

  begin_op();

  if (omode & O_CREATE) {
    ip = create(path, T_FILE, 0, 0);
    if (ip == 0) {
      end_op();
      return -1;
    }
  } else {
    if ((ip = namei(path)) == 0) {
      end_op();
      return -1;
    }
    ilock(ip);
    if (ip->type == T_DIR && omode != O_RDONLY) {
      iunlockput(ip);
      end_op();
      return -1;
    }
  }

  if ((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0) {
    if (f)
      fileclose(f);
    iunlockput(ip);
    end_op();
    return -1;
  }
  iunlock(ip);
  end_op();

  f->type = FD_INODE;
  f->ip = ip;
  f->off = 0;
  f->readable = !(omode & O_WRONLY);
  f->writable = (omode & O_WRONLY) || (omode & O_RDWR);
  return fd;
}

似乎它可以是OúWRONLY、OúRDWR或O戋CREATE。这些值代表什么?

最佳答案

omode(代表Open Mode)是xv6操作系统中Open system调用的第二个参数,表示在打开第一个参数中给定了名称和路径的文件时要使用的模式。
来自xv6的官方book
打开(文件名,标志)打开文件;标志表示读/写
此字段的有效选项为(defines位于fcntl.h中):

#define O_RDONLY  0x000
#define O_WRONLY  0x001
#define O_RDWR    0x002
#define O_CREATE  0x200

哪里:
O_RDONLY-声明文件应以只读模式打开。不要让写入由打开调用返回的文件描述符表示的文件。
OôWRONLY-同上,但只允许写不读。
OúRDWR-允许读写。
OYCREATE -允许打开给定文件,如果它不存在。
您还可以进一步跟踪代码,查看在何处使用可读写代码:
不允许读取的可读块:
// Read from file f.
int
fileread(struct file *f, char *addr, int n)
{
  int r;

  if(f->readable == 0)
    return -1;
...

可写工作类似于写入:
// Write to file f.
int
filewrite(struct file *f, char *addr, int n)
{
  int r;

  if(f->writable == 0)
    return -1;
...

10-07 16:28