Skip to content
Snippets Groups Projects
fs.c 17.1 KiB
Newer Older
rsc's avatar
rsc committed
// File system implementation.
// 
// Four layers: 
//   + Blocks: allocator for raw disk blocks.
//   + Files: inode allocator, reading, writing, metadata.
//   + Directories: inode with special contents (list of other inodes!)
//   + Names: paths like /usr/rtm/xv6/fs.c for convenient naming.
//
// Disk layout is: superblock, inodes, disk bitmap, data blocks.

// TODO: Check locking!

rtm's avatar
rtm committed
#include "types.h"
kaashoek's avatar
kaashoek committed
#include "stat.h"
rtm's avatar
rtm committed
#include "param.h"
#include "x86.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "spinlock.h"
#include "buf.h"
#include "fs.h"
#include "fsvar.h"
kaashoek's avatar
kaashoek committed
#include "dev.h"
rtm's avatar
rtm committed

rsc's avatar
rsc committed
#define min(a, b) ((a) < (b) ? (a) : (b))
rsc's avatar
rsc committed
static void itrunc(struct inode*);
static void iupdate(struct inode*);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
// Blocks. 
rsc's avatar
rsc committed
// Allocate a disk block.
rsc's avatar
rsc committed
static uint
balloc(uint dev)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
rsc committed
  int b, bi, m, ninodes, size;
kaashoek's avatar
kaashoek committed
  struct buf *bp;
  struct superblock *sb;

  bp = bread(dev, 1);
rsc's avatar
rsc committed
  sb = (struct superblock*) bp->data;
kaashoek's avatar
kaashoek committed
  size = sb->size;
  ninodes = sb->ninodes;

rsc's avatar
rsc committed
  for(b = 0; b < size; b++) {
    if(b % BPB == 0) {
kaashoek's avatar
kaashoek committed
      brelse(bp);
      bp = bread(dev, BBLOCK(b, ninodes));
    }
    bi = b % BPB;
    m = 0x1 << (bi % 8);
rsc's avatar
rsc committed
    if((bp->data[bi/8] & m) == 0) {  // is block free?
rsc's avatar
rsc committed
      bp->data[bi/8] |= 0x1 << (bi % 8);
      bwrite(bp, BBLOCK(b, ninodes));  // mark it allocated on disk
      brelse(bp);
      return b;
kaashoek's avatar
kaashoek committed
    }
  }
rsc's avatar
rsc committed
  panic("balloc: out of blocks");
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Free a disk block.
rsc's avatar
rsc committed
static void
kaashoek's avatar
kaashoek committed
bfree(int dev, uint b)
{
  struct buf *bp;
  struct superblock *sb;
rsc's avatar
rsc committed
  int bi, m, ninodes;
kaashoek's avatar
kaashoek committed

  bp = bread(dev, 1);
rsc's avatar
rsc committed
  sb = (struct superblock*) bp->data;
kaashoek's avatar
kaashoek committed
  ninodes = sb->ninodes;
  brelse(bp);

kaashoek's avatar
kaashoek committed
  bp = bread(dev, b);
  memset(bp->data, 0, BSIZE);
  bwrite(bp, b);
  brelse(bp);

kaashoek's avatar
kaashoek committed
  bp = bread(dev, BBLOCK(b, ninodes));
  bi = b % BPB;
rsc's avatar
rsc committed
  m = 0x1 << (bi % 8);
  bp->data[bi/8] &= ~m;
rsc's avatar
rsc committed
  bwrite(bp, BBLOCK(b, ninodes));  // mark it free on disk
kaashoek's avatar
kaashoek committed
  brelse(bp);
}
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
// Inodes
//
// The inodes are laid out sequentially on disk immediately after
// the superblock.  The kernel keeps a cache of the in-use
// on-disk structures to provide a place for synchronizing access
// to inodes shared between multiple processes.
// 
// ip->ref counts the number of references to this
// inode; references are typically kept in struct file and in cp->cwd.
// When ip->ref falls to zero, the inode is no longer cached.
// It is an error to use an inode without holding a reference to it.
//
// Inodes can be marked busy, just like bufs, meaning
// that some process has logically locked the inode, and other processes
// are not allowed to look at it.  Because the locking can last for 
// a long time (for example, during a disk access), we use a flag
// like in buffer cache, not spin locks.  The inode should always be
// locked during modifications to it.

struct {
  struct spinlock lock;
  struct inode inode[NINODE];
} icache;

void
iinit(void)
{
  initlock(&icache.lock, "icache.lock");
}

rsc's avatar
rsc committed
// Find the inode with number inum on device dev
rsc's avatar
 
rsc committed
// and return the in-memory copy.  The returned inode
// has its reference count incremented (and thus must be
// idecref'ed), but is *unlocked*, meaning that none of the fields
// except dev and inum are guaranteed to be initialized.
// This convention gives the caller maximum control over blocking;
// it also guarantees that iget will not sleep, which is useful in 
// the early igetroot and when holding other locked inodes.
rsc's avatar
rsc committed
struct inode*
rtm's avatar
rtm committed
iget(uint dev, uint inum)
{
rsc's avatar
rsc committed
  struct inode *ip, *empty;
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  acquire(&icache.lock);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  // Try for cached inode.
  empty = 0;
  for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
rsc's avatar
rsc committed
    if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){
      ip->ref++;
rsc's avatar
rsc committed
      release(&icache.lock);
rtm's avatar
rtm committed
      return ip;
    }
rsc's avatar
rsc committed
    if(empty == 0 && ip->ref == 0)    // Remember empty slot.
      empty = ip;
rtm's avatar
rtm committed
  }

rsc's avatar
rsc committed
  // Allocate fresh inode.
  if(empty == 0)
rsc's avatar
rsc committed
    panic("iget: no inodes");
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  ip = empty;
  ip->dev = dev;
  ip->inum = inum;
  ip->ref = 1;
rsc's avatar
 
rsc committed
  ip->flags = 0;
rsc's avatar
rsc committed
  release(&icache.lock);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  return ip;
}

// Iget the inode for the file system root (/).
rsc's avatar
 
rsc committed
// This gets called before there is a current process: it cannot sleep!
rsc's avatar
rsc committed
struct inode*
igetroot(void)
{
rsc's avatar
 
rsc committed
  struct inode *ip;
  ip = iget(ROOTDEV, 1);
  return ip;
rtm's avatar
rtm committed
}

rsc's avatar
rsc committed
// Lock the given inode.
rsc's avatar
rsc committed
void
rsc's avatar
rsc committed
ilock(struct inode *ip)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
 
rsc committed
  struct buf *bp;
  struct dinode *dip;

rsc's avatar
rsc committed
  if(ip->ref < 1)
    panic("ilock");
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  acquire(&icache.lock);
rsc's avatar
 
rsc committed
  while(ip->flags & I_BUSY)
rsc's avatar
rsc committed
    sleep(ip, &icache.lock);
rsc's avatar
 
rsc committed
  ip->flags |= I_BUSY;
rsc's avatar
rsc committed
  release(&icache.lock);
rsc's avatar
 
rsc committed

  if(!(ip->flags & I_VALID)){
    bp = bread(ip->dev, IBLOCK(ip->inum));
    dip = &((struct dinode*)(bp->data))[ip->inum % IPB];
    ip->type = dip->type;
    ip->major = dip->major;
    ip->minor = dip->minor;
    ip->nlink = dip->nlink;
    ip->size = dip->size;
    memmove(ip->addrs, dip->addrs, sizeof(ip->addrs));
    brelse(bp);
    ip->flags |= I_VALID;
  }
rsc's avatar
rsc committed
}

// Unlock the given inode.
void
iunlock(struct inode *ip)
{
rsc's avatar
 
rsc committed
  if(!(ip->flags & I_BUSY) || ip->ref < 1)
rsc's avatar
rsc committed
    panic("iunlock");

  acquire(&icache.lock);
rsc's avatar
 
rsc committed
  ip->flags &= ~I_BUSY;
rsc's avatar
rsc committed
  wakeup(ip);
  release(&icache.lock);
}

// Unlock inode and drop reference.
void
iput(struct inode *ip)
{
rsc's avatar
 
rsc committed
  iunlock(ip);
  idecref(ip);
rsc's avatar
rsc committed
}

// Increment reference count for ip.
// Returns ip to enable ip = iincref(ip1) idiom.
struct inode*
iincref(struct inode *ip)
{
rsc's avatar
 
rsc committed
  acquire(&icache.lock);
rsc's avatar
rsc committed
  ip->ref++;
rsc's avatar
 
rsc committed
  release(&icache.lock);
rsc's avatar
rsc committed
  return ip;
}

rsc's avatar
 
rsc committed
// Caller holds reference to unlocked ip.  Drop reference.
rsc's avatar
rsc committed
void
idecref(struct inode *ip)
{
rsc's avatar
 
rsc committed
  acquire(&icache.lock);
  if(ip->ref == 1 && (ip->flags & I_VALID) && ip->nlink == 0) {
    // inode is no longer used: truncate and free inode.
    if(ip->flags & I_BUSY)
      panic("idecref busy");
    ip->flags |= I_BUSY;
    release(&icache.lock);
    // XXX convince rsc that no one will come find this inode.
    itrunc(ip);
    ip->type = 0;
    iupdate(ip);
    acquire(&icache.lock);
    ip->flags &= ~I_BUSY;
  }
  ip->ref--;
  release(&icache.lock);
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Allocate a new inode with the given type on device dev.
rsc's avatar
rsc committed
struct inode*
kaashoek's avatar
kaashoek committed
ialloc(uint dev, short type)
{
rsc's avatar
 
rsc committed
  int inum, ninodes;
  struct buf *bp;
rsc's avatar
rsc committed
  struct dinode *dip;
kaashoek's avatar
kaashoek committed
  struct superblock *sb;

  bp = bread(dev, 1);
rsc's avatar
rsc committed
  sb = (struct superblock*)bp->data;
kaashoek's avatar
kaashoek committed
  ninodes = sb->ninodes;
  brelse(bp);
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  for(inum = 1; inum < ninodes; inum++) {  // loop over inode blocks
kaashoek's avatar
kaashoek committed
    bp = bread(dev, IBLOCK(inum));
rsc's avatar
rsc committed
    dip = &((struct dinode*)(bp->data))[inum % IPB];
    if(dip->type == 0) {  // a free inode
      memset(dip, 0, sizeof(*dip));
      dip->type = type;
      bwrite(bp, IBLOCK(inum));   // mark it allocated on the disk
      brelse(bp);
rsc's avatar
 
rsc committed
      return iget(dev, inum);
kaashoek's avatar
kaashoek committed
    }
    brelse(bp);
  }
  panic("ialloc: no inodes");
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Copy inode, which has changed, from memory to disk.
rsc's avatar
rsc committed
static void
rsc's avatar
rsc committed
iupdate(struct inode *ip)
rtm's avatar
rtm committed
{
rsc's avatar
rsc committed
  struct buf *bp;
  struct dinode *dip;
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  bp = bread(ip->dev, IBLOCK(ip->inum));
  dip = &((struct dinode*)(bp->data))[ip->inum % IPB];
  dip->type = ip->type;
  dip->major = ip->major;
  dip->minor = ip->minor;
  dip->nlink = ip->nlink;
  dip->size = ip->size;
  memmove(dip->addrs, ip->addrs, sizeof(ip->addrs));
  bwrite(bp, IBLOCK(ip->inum));
  brelse(bp);
rtm's avatar
rtm committed
}

rsc's avatar
rsc committed
// Inode contents
//
// The contents (data) associated with each inode is stored
// in a sequence of blocks on the disk.  The first NDIRECT blocks
// are stored in ip->addrs[].  The next NINDIRECT blocks are 
// listed in the block ip->addrs[INDIRECT].

rsc's avatar
rsc committed
// Return the disk block address of the nth block in inode ip.
rsc's avatar
rsc committed
// If there is no such block: if alloc is set, allocate one, else return -1.
rsc's avatar
rsc committed
bmap(struct inode *ip, uint bn, int alloc)
rsc's avatar
rsc committed
  uint addr, *a;
  struct buf *bp;
rsc's avatar
rsc committed
  if(bn < NDIRECT) {
rsc's avatar
rsc committed
    if((addr = ip->addrs[bn]) == 0) {
      if(!alloc)
        return -1;
      ip->addrs[bn] = addr = balloc(ip->dev);
    }
    return addr;
rsc's avatar
rsc committed
  bn -= NDIRECT;

  if(bn < NINDIRECT) {
    // Load indirect block, allocating if necessary.
    if((addr = ip->addrs[INDIRECT]) == 0) {
      if(!alloc)
        return -1;
      ip->addrs[INDIRECT] = addr = balloc(ip->dev);
    }
    bp = bread(ip->dev, addr);
    a = (uint*)bp->data;
  
    if((addr = a[bn]) == 0) {
      if(!alloc) {
        brelse(bp);
        return -1;
      }
      a[bn] = addr = balloc(ip->dev);
      bwrite(bp, ip->addrs[INDIRECT]);
    }
    brelse(bp);
    return addr;
  }

  panic("bmap: out of range");
rsc's avatar
rsc committed
// Truncate inode (discard contents).
rsc's avatar
rsc committed
static void
rtm's avatar
rtm committed
itrunc(struct inode *ip)
kaashoek's avatar
kaashoek committed
  int i, j;
rsc's avatar
rsc committed
  struct buf *bp;
rsc's avatar
rsc committed
  uint *a;
rsc's avatar
rsc committed
  for(i = 0; i < NDIRECT; i++) {
    if(ip->addrs[i]) {
kaashoek's avatar
kaashoek committed
      bfree(ip->dev, ip->addrs[i]);
rsc's avatar
rsc committed
  
  if(ip->addrs[INDIRECT]) {
    bp = bread(ip->dev, ip->addrs[INDIRECT]);
    a = (uint*)bp->data;
    for(j = 0; j < NINDIRECT; j++) {
      if(a[j])
        bfree(ip->dev, a[j]);
    }
    brelse(bp);
    ip->addrs[INDIRECT] = 0;
rtm's avatar
rtm committed
  }
rsc's avatar
rsc committed
  ip->size = 0;
  iupdate(ip);
rsc's avatar
rsc committed
// Copy stat information from inode.
kaashoek's avatar
kaashoek committed
void
stati(struct inode *ip, struct stat *st)
{
rsc's avatar
rsc committed
  st->dev = ip->dev;
  st->ino = ip->inum;
  st->type = ip->type;
  st->nlink = ip->nlink;
  st->size = ip->size;
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Read data from inode.
rtm's avatar
rtm committed
int
readi(struct inode *ip, char *dst, uint off, uint n)
rtm's avatar
rtm committed
{
rsc's avatar
rsc committed
  uint tot, m;
rtm's avatar
rtm committed
  struct buf *bp;

rsc's avatar
rsc committed
  if(ip->type == T_DEV) {
rsc's avatar
rsc committed
    if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read)
kaashoek's avatar
kaashoek committed
      return -1;
rsc's avatar
rsc committed
    return devsw[ip->major].read(ip->minor, dst, n);
kaashoek's avatar
kaashoek committed
  }

rsc's avatar
rsc committed
  if(off + n < off)
    return -1;
  if(off + n > ip->size)
    n = ip->size - off;
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  for(tot=0; tot<n; tot+=m, off+=m, dst+=m) {
    bp = bread(ip->dev, bmap(ip, off/BSIZE, 0));
    m = min(n - tot, BSIZE - off%BSIZE);
    memmove(dst, bp->data + off%BSIZE, m);
    brelse(bp);
rsc's avatar
rsc committed
  return n;
rsc's avatar
rsc committed
// Write data to inode.
kaashoek's avatar
kaashoek committed
int
rsc's avatar
rsc committed
writei(struct inode *ip, char *src, uint off, uint n)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
rsc committed
  uint tot, m;
rsc's avatar
rsc committed
  struct buf *bp;

rsc's avatar
rsc committed
  if(ip->type == T_DEV) {
rsc's avatar
rsc committed
    if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write)
kaashoek's avatar
kaashoek committed
      return -1;
rsc's avatar
rsc committed
    return devsw[ip->major].write(ip->minor, src, n);
rsc's avatar
rsc committed
  }

rsc's avatar
rsc committed
  if(off + n < off)
    return -1;
  if(off + n > MAXFILE*BSIZE)
    n = MAXFILE*BSIZE - off;

  for(tot=0; tot<n; tot+=m, off+=m, src+=m) {
    bp = bread(ip->dev, bmap(ip, off/BSIZE, 1));
    m = min(n - tot, BSIZE - off%BSIZE);
    memmove(bp->data + off%BSIZE, src, m);
    bwrite(bp, bmap(ip, off/BSIZE, 0));
rsc's avatar
rsc committed
    brelse(bp);
  }
rsc's avatar
rsc committed

  if(n > 0 && off > ip->size) {
    ip->size = off;
rsc's avatar
rsc committed
    iupdate(ip);
kaashoek's avatar
kaashoek committed
  }
rsc's avatar
rsc committed
  return n;
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Directories
rsc's avatar
rsc committed
//
rsc's avatar
rsc committed
// Directories are just inodes (files) filled with dirent structures.
rsc's avatar
rsc committed

rsc's avatar
rsc committed
// Compare two names, which are strings with a max length of DIRSIZ.
static int
namecmp(const char *s, const char *t)
{
  int i;
  
  for(i=0; i<DIRSIZ; i++){
    if(s[i] != t[i])
      return s[i] - t[i];
    if(s[i] == 0)
      break;
  }
  return 0;
}

// Copy one name to another.
static void
namecpy(char *s, const char *t)
{
  int i;
  
  for(i=0; i<DIRSIZ && t[i]; i++)
    s[i] = t[i];
  for(; i<DIRSIZ; i++)
    s[i] = 0;
}

rsc's avatar
rsc committed
// Look for a directory entry in a directory.
// If not found, return -1.
// If found:
//   set *poff to the byte offset of the directory entry
//   set *pinum to the inode number
//   return 0.
rsc's avatar
rsc committed
static struct inode*
dirlookup(struct inode *dp, char *name, uint *poff)
rsc's avatar
rsc committed
{
rsc's avatar
 
rsc committed
  uint off, inum;
rsc's avatar
rsc committed
  struct buf *bp;
  struct dirent *de;

  if(dp->type != T_DIR)
rsc's avatar
 
rsc committed
    return 0;
rsc's avatar
rsc committed

  for(off = 0; off < dp->size; off += BSIZE){
rsc's avatar
rsc committed
    bp = bread(dp->dev, bmap(dp, off / BSIZE, 0));
rsc's avatar
rsc committed
    for(de = (struct dirent*) bp->data;
        de < (struct dirent*) (bp->data + BSIZE);
        de++){
      if(de->inum == 0)
        continue;
rsc's avatar
rsc committed
      if(namecmp(name, de->name) == 0){
rsc's avatar
rsc committed
        // entry matches path element
        if(poff)
          *poff = off + (uchar*)de - bp->data;
rsc's avatar
 
rsc committed
        inum = de->inum;
rsc's avatar
rsc committed
        brelse(bp);
rsc's avatar
 
rsc committed
        return iget(dp->dev, inum);
rsc's avatar
rsc committed
      }
    }
    brelse(bp);
  }
rsc's avatar
 
rsc committed
  return 0;
rsc's avatar
rsc committed
}

rsc's avatar
rsc committed
// Write a new directory entry (name, ino) into the directory dp.
// Caller must have locked dp.
rsc's avatar
rsc committed
static int
dirlink(struct inode *dp, char *name, uint ino)
rsc's avatar
rsc committed
{
  int off;
rsc's avatar
rsc committed
  struct dirent de;
rsc's avatar
 
rsc committed
  struct inode *ip;

  // Double-check that name is not present.
rsc's avatar
rsc committed
  if((ip = dirlookup(dp, name, 0)) != 0){
rsc's avatar
 
rsc committed
    idecref(ip);
    return -1;
  }
rsc's avatar
rsc committed

  // Look for an empty dirent.
  for(off = 0; off < dp->size; off += sizeof(de)){
    if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
      panic("dirwrite read");
    if(de.inum == 0)
      break;
  }

rsc's avatar
rsc committed
  namecpy(de.name, name);
rsc's avatar
rsc committed
  de.inum = ino;
  if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
    panic("dirwrite");
rsc's avatar
 
rsc committed
  
  return 0;
// Create a new inode named name inside dp
// and return its locked inode structure.
// If name already exists, return 0.
rsc's avatar
rsc committed
static struct inode*
dircreat(struct inode *dp, char *name, short type, short major, short minor)
{
  struct inode *ip;

  ip = ialloc(dp->dev, type);
  if(ip == 0)
    return 0;
rsc's avatar
 
rsc committed
  ilock(ip);
  ip->major = major;
  ip->minor = minor;
  ip->size = 0;
  ip->nlink = 1;
  iupdate(ip);
rsc's avatar
 
rsc committed
  
rsc's avatar
rsc committed
  if(dirlink(dp, name, ip->inum) < 0){
rsc's avatar
 
rsc committed
    ip->nlink = 0;
    iupdate(ip);
    iput(ip);
    return 0;
  }
rsc's avatar
rsc committed
// Paths

// Skip over the next path element in path, 
// saving it in *name and its length in *len.
// Return a pointer to the element after that
// (after any trailing slashes).
// Thus the caller can check whether *path=='\0'
// to see whether the name just removed was
// the last one.  
// If there is no name to remove, return 0.
//
// Examples:
//   skipelem("a/bb/c") = "bb/c", with *name = "a/bb/c", len=1
//   skipelem("///a/bb") = "b", with *name="a/bb", len=1
//   skipelem("") = skipelem("////") = 0
//
static char*
rsc's avatar
rsc committed
skipelem(char *path, char *name)
rsc's avatar
rsc committed
{
rsc's avatar
rsc committed
  char *s;
  int len;

rsc's avatar
rsc committed
  while(*path == '/')
    path++;
  if(*path == 0)
    return 0;
rsc's avatar
rsc committed
  s = path;
rsc's avatar
rsc committed
  while(*path != '/' && *path != 0)
    path++;
rsc's avatar
rsc committed
  len = path - s;
  if(len >= DIRSIZ)
    memmove(name, s, DIRSIZ);
  else{
    memmove(name, s, len);
    name[len] = 0;
  }
rsc's avatar
rsc committed
  while(*path == '/')
    path++;
  return path;
}

// look up a path name, in one of three modes.
// NAMEI_LOOKUP: return locked target inode.
// NAMEI_CREATE: return locked parent inode.
rtm's avatar
rtm committed
//   return 0 if name does exist.
//   *ret_last points to last path component (i.e. new file name).
//   *ret_ip points to the the name that did exist, if it did.
//   *ret_ip and *ret_last may be zero even if return value is zero.
// NAMEI_DELETE: return locked parent inode, offset of dirent in *ret_off.
//   return 0 if name doesn't exist.
rsc's avatar
rsc committed
struct inode*
rsc's avatar
rsc committed
_namei(char *path, int parent, char *name)
rtm's avatar
rtm committed
{
rsc's avatar
 
rsc committed
  struct inode *dp, *ip;
  uint off;
rsc's avatar
rsc committed
  if(*path == '/')
rsc's avatar
rsc committed
    dp = igetroot();
rsc's avatar
 
rsc committed
  else
rsc's avatar
rsc committed
    dp = iincref(cp->cwd);
rsc's avatar
 
rsc committed
  ilock(dp);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  while((path = skipelem(path, name)) != 0){
rsc's avatar
rsc committed
    if(dp->type != T_DIR)
      goto fail;
    
    if(parent && *path == '\0'){
      // Stop one level early.
rsc's avatar
rsc committed

rsc's avatar
rsc committed
    if((ip = dirlookup(dp, name, &off)) == 0)
      goto fail;

rtm's avatar
rtm committed
    iput(dp);
rsc's avatar
 
rsc committed
    ilock(ip);
    dp = ip;
rtm's avatar
rtm committed
    if(dp->type == 0 || dp->nlink < 1)
      panic("namei");
rtm's avatar
rtm committed
  }
  if(parent)
rsc's avatar
rsc committed
    return 0;
  return dp;
rsc's avatar
rsc committed

fail:
  iput(dp);
  return 0;
rtm's avatar
rtm committed
}
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
struct inode*
namei(char *path)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
rsc committed
  char name[DIRSIZ];
  return _namei(path, 0, name);
rsc's avatar
rsc committed
static struct inode*
nameiparent(char *path, char *name)
rtm's avatar
rtm committed
{
rsc's avatar
rsc committed
  return _namei(path, 1, name);
// Create the path and return its locked inode structure.
// If cp already exists, return 0.
struct inode*
mknod(char *path, short type, short major, short minor)
{
  struct inode *ip, *dp;
rsc's avatar
rsc committed
  char name[DIRSIZ];
rsc's avatar
rsc committed
  if((dp = nameiparent(path, name)) == 0)
    return 0;
rsc's avatar
rsc committed
  ip = dircreat(dp, name, type, major, minor);
  iput(dp);
  return ip;
kaashoek's avatar
kaashoek committed
}
rsc's avatar
rsc committed
// Unlink the inode named cp.
kaashoek's avatar
kaashoek committed
int
rsc's avatar
rsc committed
unlink(char *path)
  struct inode *ip, *dp;
  struct dirent de;
rsc's avatar
 
rsc committed
  uint off;
rsc's avatar
rsc committed
  char name[DIRSIZ];
rsc's avatar
rsc committed
  if((dp = nameiparent(path, name)) == 0)
kaashoek's avatar
kaashoek committed
    return -1;
rsc's avatar
rsc committed

  // Cannot unlink "." or "..".
  if(namecmp(name, ".") == 0 || namecmp(name, "..") == 0){
    iput(dp);
    return -1;
  }
rsc's avatar
rsc committed
  if((ip = dirlookup(dp, name, &off)) == 0){
rsc's avatar
rsc committed
    iput(dp);
    return -1;
  }
  memset(&de, 0, sizeof(de));
  if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
    panic("unlink dir write");
kaashoek's avatar
kaashoek committed
  iput(dp);
rsc's avatar
 
rsc committed
  ilock(ip);
rtm's avatar
rtm committed
  if(ip->nlink < 1)
    panic("unlink nlink < 1");
  ip->nlink--;
  iupdate(ip);
kaashoek's avatar
kaashoek committed
  return 0;
}
rtm's avatar
rtm committed

rsc's avatar
rsc committed
// Create the path new as a link to the same inode as old.
rtm's avatar
rtm committed
int
link(char *old, char *new)
rtm's avatar
rtm committed
{
  struct inode *ip, *dp;
rsc's avatar
rsc committed
  char name[DIRSIZ];
rtm's avatar
rtm committed

  if((ip = namei(old)) == 0)
    return -1;
  if(ip->type == T_DIR){
    iput(ip);
rtm's avatar
rtm committed
    return -1;
  }
rsc's avatar
 
rsc committed

rsc's avatar
rsc committed
  if((dp = nameiparent(new, name)) == 0){
    idecref(ip);
    return -1;
  }
rsc's avatar
rsc committed
  if(dp->dev != ip->dev || dirlink(dp, name, ip->inum) < 0){
    idecref(ip);
    iput(dp);
rtm's avatar
rtm committed
    return -1;
  }
rsc's avatar
 
rsc committed
  iput(dp);
rsc's avatar
 
rsc committed
  // XXX write ordering wrong here too.
rsc's avatar
++  
rsc committed
  ip->nlink++;
rsc's avatar
rsc committed
  iupdate(ip);
rsc's avatar
 
rsc committed
  iput(ip);
  return 0;
}

int
mkdir(char *path)
{
  struct inode *dp, *ip;
rsc's avatar
rsc committed
  char name[DIRSIZ];
rsc's avatar
 
rsc committed
  
  // XXX write ordering is screwy here- do we care?
rsc's avatar
rsc committed
  if((dp = nameiparent(path, name)) == 0)
rsc's avatar
 
rsc committed
    return -1;
  
rsc's avatar
rsc committed
  if((ip = dircreat(dp, name, T_DIR, 0, 0)) == 0){
rsc's avatar
 
rsc committed
    iput(dp);
    return -1;
  }
  dp->nlink++;
  iupdate(dp);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  if(dirlink(ip, ".", ip->inum) < 0 || dirlink(ip, "..", dp->inum) < 0)
rsc's avatar
 
rsc committed
    panic("mkdir");
rtm's avatar
rtm committed
  iput(dp);
  iput(ip);

  return 0;
}
rsc's avatar
 
rsc committed

struct inode*
create(char *path)
{
  struct inode *dp, *ip;
rsc's avatar
rsc committed
  char name[DIRSIZ];
rsc's avatar
 
rsc committed
  
rsc's avatar
rsc committed
  if((dp = nameiparent(path, name)) == 0)
rsc's avatar
 
rsc committed
    return 0;
  
rsc's avatar
rsc committed
  if((ip = dirlookup(dp, name, 0)) != 0){
rsc's avatar
 
rsc committed
    iput(dp);
    ilock(ip);
    if(ip->type == T_DIR){
      iput(ip);
      return 0;
    }
    return ip;
  }
rsc's avatar
rsc committed
  if((ip = dircreat(dp, name, T_FILE, 0, 0)) == 0){
rsc's avatar
 
rsc committed
    iput(dp);
    return 0;
  }
  iput(dp);
  return ip;
}