Skip to content
Snippets Groups Projects
fs.c 13.5 KiB
Newer Older
rsc's avatar
 
rsc committed
// File system implementation.  Four layers:
rsc's avatar
rsc committed
//   + 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.
//
rsc's avatar
rsc committed
// Disk layout is: superblock, inodes, block in-use bitmap, data blocks.
rsc's avatar
 
rsc committed
//
// This file contains the low-level file system manipulation 
// routines.  The (higher-level) system call implementations
// are in sysfile.c.
rtm's avatar
rtm committed
#include "types.h"
rsc's avatar
rsc committed
#include "defs.h"
rtm's avatar
rtm committed
#include "param.h"
rsc's avatar
rsc committed
#include "stat.h"
rtm's avatar
rtm committed
#include "mmu.h"
#include "proc.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*);
rtm's avatar
rtm committed

rsc's avatar
 
rsc committed
// Read the super block.
static void
readsb(int dev, struct superblock *sb)
{
  struct buf *bp;
  
  bp = bread(dev, 1);
  memmove(sb, bp->data, sizeof(*sb));
  brelse(bp);
}

// Zero a block.
static void
bzero(int dev, int bno)
{
  struct buf *bp;
  
  bp = bread(dev, bno);
  memset(bp->data, 0, BSIZE);
  bwrite(bp);
  brelse(bp);
}

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;
kaashoek's avatar
kaashoek committed
  struct buf *bp;
rsc's avatar
 
rsc committed
  struct superblock sb;
kaashoek's avatar
kaashoek committed

rsc's avatar
 
rsc committed
  bp = 0;
  readsb(dev, &sb);
  for(b = 0; b < sb.size; b += BPB){
    bp = bread(dev, BBLOCK(b, sb.ninodes));
    for(bi = 0; bi < BPB; bi++){
      m = 1 << (bi % 8);
      if((bp->data[bi/8] & m) == 0){  // Is block free?
        bp->data[bi/8] |= m;  // Mark block in use on disk.
        bwrite(bp);
        brelse(bp);
        return b + bi;
      }
kaashoek's avatar
kaashoek committed
    }
rsc's avatar
 
rsc committed
    brelse(bp);
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;
rsc's avatar
 
rsc committed
  struct superblock sb;
  int bi, m;
kaashoek's avatar
kaashoek committed

rsc's avatar
 
rsc committed
  bzero(dev, b);
kaashoek's avatar
kaashoek committed

rsc's avatar
 
rsc committed
  readsb(dev, &sb);
  bp = bread(dev, BBLOCK(b, sb.ninodes));
kaashoek's avatar
kaashoek committed
  bi = b % BPB;
rsc's avatar
 
rsc committed
  m = 1 << (bi % 8);
rtm's avatar
rtm committed
  if((bp->data[bi/8] & m) == 0)
    panic("freeing free block");
rsc's avatar
 
rsc committed
  bp->data[bi/8] &= ~m;  // Mark block free on disk.
  bwrite(bp);
kaashoek's avatar
kaashoek committed
  brelse(bp);
}
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
// Inodes.
//
// An inode is a single, unnamed file in the file system.
// The inode disk structure holds metadata (the type, device numbers,
// and data size) along with a list of blocks where the associated
// data can be found.
rsc's avatar
rsc committed
//
// 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.
// 
rtm's avatar
rtm committed
// ip->ref counts the number of pointer references to this cached
rsc's avatar
rsc committed
// 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.
//
rsc's avatar
 
rsc committed
// Processes are only allowed to read and write inode
rsc's avatar
rsc committed
// metadata and contents when holding the inode's lock,
// represented by the I_BUSY flag in the in-memory copy.
rtm's avatar
rtm committed
// Because inode locks are held during disk accesses, 
// they are implemented using a flag rather than with
// spin locks.  Callers are responsible for locking
rsc's avatar
 
rsc committed
// inodes before passing them to routines in this file; leaving
// this responsibility with the caller makes it possible for them
// to create arbitrarily-sized atomic operations.
//
// To give maximum control over locking to the callers, 
// the routines in this file that return inode pointers 
// return pointers to *unlocked* inodes.  It is the callers'
rsc's avatar
rsc committed
// responsibility to lock them before using them.  A non-zero
rtm's avatar
rtm committed
// ip->ref keeps these unlocked inodes in the cache.
rsc's avatar
rsc committed

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.
rsc's avatar
 
rsc committed
static 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);
rsc's avatar
 
rsc committed
      return ip;
rtm's avatar
rtm committed
    }
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;
rsc's avatar
 
rsc committed
// Increment reference count for ip.
// Returns ip to enable ip = idup(ip1) idiom.
rsc's avatar
 
rsc committed
struct inode*
idup(struct inode *ip)
rsc's avatar
rsc committed
{
rsc's avatar
 
rsc committed
  acquire(&icache.lock);
  ip->ref++;
  release(&icache.lock);
rsc's avatar
 
rsc committed
  return ip;
rtm's avatar
rtm committed
}

rsc's avatar
rsc committed
// Lock the given inode.
rsc's avatar
 
rsc committed
void
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 == 0 || 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));
rsc's avatar
rsc committed
    dip = (struct dinode*)bp->data + ip->inum%IPB;
rsc's avatar
 
rsc committed
    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
    if(ip->type == 0)
      panic("ilock: no type");
rsc's avatar
 
rsc committed
  }
rsc's avatar
rsc committed
}

// Unlock the given inode.
rsc's avatar
 
rsc committed
void
rsc's avatar
rsc committed
iunlock(struct inode *ip)
{
rsc's avatar
 
rsc committed
  if(ip == 0 || !(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);
}

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

rsc's avatar
rsc committed
// Common idiom: unlock, then put.
rsc's avatar
 
rsc committed
void
iunlockput(struct inode *ip)
{
  iunlock(ip);
  iput(ip);
}

rsc's avatar
rsc committed
//PAGEBREAK!
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;
rsc's avatar
 
rsc committed
  struct buf *bp;
rsc's avatar
rsc committed
  struct dinode *dip;
rsc's avatar
 
rsc committed
  struct superblock sb;
kaashoek's avatar
kaashoek committed

rsc's avatar
 
rsc committed
  readsb(dev, &sb);
rsc's avatar
rsc committed
  for(inum = 1; inum < sb.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;
rsc's avatar
rsc committed
    if(dip->type == 0){  // a free inode
      memset(dip, 0, sizeof(*dip));
      dip->type = type;
rsc's avatar
 
rsc committed
      bwrite(bp);   // mark it allocated on the disk
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
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));
rsc's avatar
rsc committed
  dip = (struct dinode*)bp->data + ip->inum%IPB;
rsc's avatar
rsc committed
  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));
rsc's avatar
 
rsc committed
  bwrite(bp);
rsc's avatar
rsc committed
  brelse(bp);
rtm's avatar
rtm committed
}

rsc's avatar
rsc committed
//PAGEBREAK!
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
rsc's avatar
rsc committed
// are listed in ip->addrs[].  The next NINDIRECT blocks are 
rsc's avatar
rsc committed
// 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, alloc controls whether one is allocated.
static uint
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){
    if((addr = ip->addrs[bn]) == 0){
rsc's avatar
rsc committed
      if(!alloc)
        return -1;
      ip->addrs[bn] = addr = balloc(ip->dev);
    }
    return addr;
rsc's avatar
rsc committed
  bn -= NDIRECT;

rsc's avatar
rsc committed
  if(bn < NINDIRECT){
rsc's avatar
rsc committed
    // Load indirect block, allocating if necessary.
rsc's avatar
rsc committed
    if((addr = ip->addrs[INDIRECT]) == 0){
rsc's avatar
rsc committed
      if(!alloc)
        return -1;
      ip->addrs[INDIRECT] = addr = balloc(ip->dev);
    }
    bp = bread(ip->dev, addr);
    a = (uint*)bp->data;
  
rsc's avatar
rsc committed
    if((addr = a[bn]) == 0){
      if(!alloc){
rsc's avatar
rsc committed
        brelse(bp);
        return -1;
      }
      a[bn] = addr = balloc(ip->dev);
rsc's avatar
 
rsc committed
      bwrite(bp);
rsc's avatar
rsc committed
    }
    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]){
rsc's avatar
rsc committed
    bp = bread(ip->dev, ip->addrs[INDIRECT]);
    a = (uint*)bp->data;
rsc's avatar
rsc committed
    for(j = 0; j < NINDIRECT; j++){
rsc's avatar
rsc committed
      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
//PAGEBREAK!
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, dst, n);
kaashoek's avatar
kaashoek committed
  }

rsc's avatar
rsc committed
  if(off > ip->size || off + n < off)
rsc's avatar
rsc committed
    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){
rsc's avatar
rsc committed
    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
// PAGEBREAK!
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, 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;

rsc's avatar
rsc committed
  for(tot=0; tot<n; tot+=m, off+=m, src+=m){
rsc's avatar
rsc committed
    bp = bread(ip->dev, bmap(ip, off/BSIZE, 1));
    m = min(n - tot, BSIZE - off%BSIZE);
    memmove(bp->data + off%BSIZE, src, m);
rsc's avatar
 
rsc committed
    bwrite(bp);
rsc's avatar
rsc committed
    brelse(bp);
  }
rsc's avatar
rsc committed
  if(n > 0 && off > ip->size){
rsc's avatar
rsc committed
    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
//PAGEBREAK!
rsc's avatar
rsc committed
// Directories
rsc's avatar
rsc committed

rsc's avatar
 
rsc committed
int
rsc's avatar
rsc committed
namecmp(const char *s, const char *t)
{
rsc's avatar
rsc committed
  return strncmp(s, t, DIRSIZ);
rsc's avatar
rsc committed
}

rsc's avatar
rsc committed
// Look for a directory entry in a directory.
rsc's avatar
 
rsc committed
// If found, set *poff to byte offset of entry.
// Caller must have already locked dp.
rsc's avatar
 
rsc committed
struct inode*
rsc's avatar
rsc committed
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)
    panic("dirlookup not DIR");
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);
rsc's avatar
rsc committed
        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.
rsc's avatar
 
rsc committed
int
rsc's avatar
rsc committed
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;
rsc's avatar
 
rsc committed

rsc's avatar
 
rsc committed
  // Check that name is not present.
rsc's avatar
 
rsc committed
  if((ip = dirlookup(dp, name, 0)) != 0){
    iput(ip);
rsc's avatar
 
rsc committed
    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))
rsc's avatar
rsc committed
      panic("dirlink read");
rsc's avatar
rsc committed
    if(de.inum == 0)
      break;
  }

rsc's avatar
rsc committed
  strncpy(de.name, name, DIRSIZ);
rsc's avatar
rsc committed
  de.inum = ino;
  if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
rsc's avatar
rsc committed
    panic("dirlink");
rsc's avatar
 
rsc committed
  
  return 0;
rsc's avatar
rsc committed
//PAGEBREAK!
rsc's avatar
rsc committed
// Paths

rsc's avatar
 
rsc committed
// Copy the next path element from path into name.
// Return a pointer to the element following the copied one.
// The returned path has no leading slashes,
// so the caller can check *path=='\0' to see if the name is the last one.
// If no name to remove, return 0.
rsc's avatar
rsc committed
//
// Examples:
rsc's avatar
 
rsc committed
//   skipelem("a/bb/c", name) = "bb/c", setting name = "a"
rsc's avatar
rsc committed
//   skipelem("///a//bb", name) = "bb", setting name = "a"
rsc's avatar
 
rsc committed
//   skipelem("", name) = skipelem("////", name) = 0
rsc's avatar
rsc committed
//
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);
rsc's avatar
rsc committed
  else {
rsc's avatar
rsc committed
    memmove(name, s, len);
    name[len] = 0;
  }
rsc's avatar
rsc committed
  while(*path == '/')
    path++;
  return path;
}

rsc's avatar
 
rsc committed
// Look up and return the inode for a path name.
rsc's avatar
rsc committed
// If parent != 0, return the inode for the parent and copy the final
// path element into name, which must have room for DIRSIZ bytes.
rsc's avatar
 
rsc committed
static 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 *ip, *next;
rsc's avatar
rsc committed
  if(*path == '/')
rtm's avatar
rtm committed
    ip = iget(ROOTDEV, ROOTINO);
rsc's avatar
 
rsc committed
  else
rsc's avatar
 
rsc committed
    ip = idup(cp->cwd);
rtm's avatar
rtm committed

rsc's avatar
rsc committed
  while((path = skipelem(path, name)) != 0){
rsc's avatar
 
rsc committed
    ilock(ip);
    if(ip->type != T_DIR){
      iunlockput(ip);
rsc's avatar
 
rsc committed
      return 0;
    }
    if(parent && *path == '\0'){
      // Stop one level early.
rsc's avatar
 
rsc committed
      iunlock(ip);
      return ip;
rsc's avatar
rsc committed
    if((next = dirlookup(ip, name, 0)) == 0){
rsc's avatar
 
rsc committed
      iunlockput(ip);
rsc's avatar
 
rsc committed
      return 0;
    }
rsc's avatar
 
rsc committed
    iunlockput(ip);
    ip = next;
rtm's avatar
rtm committed
  }
  if(parent){
rsc's avatar
 
rsc committed
    iput(ip);
rsc's avatar
rsc committed
    return 0;
rsc's avatar
 
rsc committed
  return ip;
rtm's avatar
rtm committed
}
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
struct inode*
namei(char *path)
{
  char name[DIRSIZ];
  return _namei(path, 0, name);
}
rsc's avatar
rsc committed

rsc's avatar
rsc committed
struct inode*
nameiparent(char *path, char *name)
{
  return _namei(path, 1, name);
}