⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 devfs.c

📁 Sanos Operating System Kernel ----------------------------- Sanos is an OS kernel for use in PC base
💻 C
字号:
//
// devfs.c
//
// Device Filesystem
//
// Copyright (C) 2002 Michael Ringgaard. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 
// 1. Redistributions of source code must retain the above copyright 
//    notice, this list of conditions and the following disclaimer.  
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.  
// 3. Neither the name of the project nor the names of its contributors
//    may be used to endorse or promote products derived from this software
//    without specific prior written permission. 
// 
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
// SUCH DAMAGE.
// 

#include <os/krnl.h>

static time_t mounttime;

int devfs_open(struct file *filp, char *name);
int devfs_close(struct file *filp);
int devfs_flush(struct file *filp);

int devfs_read(struct file *filp, void *data, size_t size);
int devfs_write(struct file *filp, void *data, size_t size);
int devfs_ioctl(struct file *filp, int cmd, void *data, size_t size);

loff_t devfs_tell(struct file *filp);
loff_t devfs_lseek(struct file *filp, loff_t offset, int origin);

int devfs_fstat(struct file *filp, struct stat *buffer);
int devfs_stat(struct fs *fs, char *name, struct stat *buffer);

int devfs_opendir(struct file *filp, char *name);
int devfs_readdir(struct file *filp, struct dirent *dirp, int count);

struct fsops devfsops =
{
  FSOP_OPEN | FSOP_CLOSE | FSOP_FLUSH | FSOP_READ | FSOP_WRITE | FSOP_IOCTL | 
  FSOP_TELL | FSOP_LSEEK | FSOP_STAT | FSOP_FSTAT | FSOP_OPENDIR | FSOP_READDIR,

  NULL,
  NULL,

  NULL,
  NULL,
  NULL,

  NULL,

  devfs_open,
  devfs_close,
  devfs_flush,

  devfs_read,
  devfs_write,
  devfs_ioctl,

  devfs_tell,
  devfs_lseek,
  NULL,

  NULL,
  NULL,

  devfs_fstat,
  devfs_stat,

  NULL,
  NULL,

  NULL,
  NULL,
  NULL,

  devfs_opendir,
  devfs_readdir
};

void init_devfs()
{
  register_filesystem("devfs", &devfsops);
  mounttime = get_time();
}

int devfs_open(struct file *filp, char *name)
{
  devno_t devno;

  if (*name == PS1 || *name == PS2) name++;
  devno = dev_open(name);
  if (devno == NODEV) return -ENOENT;

  filp->data = (void *) devno;
  return 0;
}

int devfs_close(struct file *filp)
{
  dev_close((devno_t) filp->data);
  return 0;
}

int devfs_flush(struct file *filp)
{
  return 0;
}

int devfs_read(struct file *filp, void *data, size_t size)
{
  int read;
  int blksize;

  blksize = dev_ioctl((devno_t) filp->data, IOCTL_GETBLKSIZE, NULL, 0);
  if (blksize <= 0) blksize = 1;

  read = dev_read((devno_t) filp->data, data, size, filp->pos / blksize);
  if (read > 0) filp->pos += read;
  return read;
}

int devfs_write(struct file *filp, void *data, size_t size)
{
  int written;
  int blksize;

  blksize = dev_ioctl((devno_t) filp->data, IOCTL_GETBLKSIZE, NULL, 0);
  if (blksize <= 0) blksize = 1;

  written = dev_write((devno_t) filp->data, data, size, filp->pos / blksize);
  if (written > 0) filp->pos += written;
  return written;
}

int devfs_ioctl(struct file *filp, int cmd, void *data, size_t size)
{
  int rc;

  rc = dev_ioctl((devno_t) filp->data, cmd, data, size);
  return rc;
}

loff_t devfs_tell(struct file *filp)
{
  return filp->pos;
}

loff_t devfs_lseek(struct file *filp, loff_t offset, int origin)
{
  int devsize;
  int blksize;

  devsize = dev_ioctl((devno_t) filp->data, IOCTL_GETDEVSIZE, NULL, 0);
  blksize = dev_ioctl((devno_t) filp->data, IOCTL_GETBLKSIZE, NULL, 0);

  switch (origin)
  {
    case SEEK_END:
      offset += devsize * blksize;
      break;

    case SEEK_CUR:
      offset += filp->pos;
  }

  if (offset < 0 || offset > (loff_t) (devsize * blksize)) return -EINVAL;

  filp->pos = offset;
  return offset;
}

int devfs_fstat(struct file *filp, struct stat *buffer)
{
  devno_t devno;
  int devsize;
  int blksize;
  __int64 size;
  struct dev *dev;

  devno = (devno_t) filp->data;
  dev = device(devno);
  if (!dev) return -ENOENT;

  devsize = dev_ioctl(devno, IOCTL_GETDEVSIZE, NULL, 0);
  blksize = dev_ioctl(devno, IOCTL_GETBLKSIZE, NULL, 0);
  size = (__int64) devsize * (__int64) blksize;

  if (buffer)
  {
    buffer->mode = 0;
    if (dev->driver->type == DEV_TYPE_BLOCK) buffer->mode |= FS_BLKDEV;
    if (dev->driver->type == DEV_TYPE_STREAM) buffer->mode |= FS_STREAMDEV;

    buffer->ino = 0;
    buffer->nlink = 1;
    buffer->devno = devno;

    buffer->atime = mounttime;
    buffer->mtime = mounttime;
    buffer->ctime = mounttime;
  
    buffer->size = size;
  }

  return size > 0x7FFFFFFF ? 0x7FFFFFFF : (int) size;
}

int devfs_stat(struct fs *fs, char *name, struct stat *buffer)
{
  devno_t devno;
  int devsize;
  int blksize;
  __int64 size;
  struct dev *dev;

  if (*name == PS1 || *name == PS2) name++;

  if (!*name)
  {
    buffer->mode = FS_DIRECTORY;

    buffer->ino = 0;
    buffer->nlink = 1;
    buffer->devno = NODEV;

    buffer->atime = mounttime;
    buffer->mtime = mounttime;
    buffer->ctime = mounttime;
  
    buffer->quad.size_low = 0;
    buffer->quad.size_high = 0;

    return 0;
  }

  devno = dev_open(name);
  if (devno == NODEV) return -ENOENT;
  dev = device(devno);
  if (!dev) return -ENOENT;

  devsize = dev_ioctl(devno, IOCTL_GETDEVSIZE, NULL, 0);
  blksize = dev_ioctl(devno, IOCTL_GETBLKSIZE, NULL, 0);
  size = (__int64) devsize * (__int64) blksize;

  if (buffer)
  {
    buffer->mode = 0;
    if (dev->driver->type == DEV_TYPE_BLOCK) buffer->mode |= FS_BLKDEV;
    if (dev->driver->type == DEV_TYPE_STREAM) buffer->mode |= FS_STREAMDEV;

    buffer->ino = 0;
    buffer->nlink = 1;
    buffer->devno = devno;

    buffer->atime = mounttime;
    buffer->mtime = mounttime;
    buffer->ctime = mounttime;
  
    buffer->size = size;
  }

  dev_close(devno);
  return size > 0x7FFFFFFF ? 0x7FFFFFFF : (int) size;
}

int devfs_opendir(struct file *filp, char *name)
{
  if (*name == PS1 || *name == PS2) name++;
  if (*name) return -ENOENT;

  filp->data = (void *) NODEV;
  return 0;
}

int devfs_readdir(struct file *filp, struct dirent *dirp, int count)
{
  devno_t devno;
  struct dev *dev;

  if (filp->pos == num_devs) return 0;
  if (filp->pos < 0 || filp->pos > num_devs) return -EINVAL;

  devno = (devno_t) filp->pos;
  dev = device(devno);
  if (!dev) return -ENOENT;

  dirp->ino = (ino_t) devno;
  dirp->namelen = strlen(dev->name);
  dirp->reclen = sizeof(struct dirent) - MAXPATH + dirp->namelen + 1;
  strcpy(dirp->name, dev->name);

  filp->pos++;
  return 1;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -