2007-08-27 16:20:24 +02:00
|
|
|
// File system implementation. Four layers:
|
2007-08-20 20:23:52 +02:00
|
|
|
// + 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.
|
|
|
|
//
|
2007-08-24 21:46:19 +02:00
|
|
|
// Disk layout is: superblock, inodes, block in-use bitmap, data blocks.
|
2007-08-22 08:01:32 +02:00
|
|
|
//
|
|
|
|
// This file contains the low-level file system manipulation
|
|
|
|
// routines. The (higher-level) system call implementations
|
|
|
|
// are in sysfile.c.
|
2007-08-20 20:23:52 +02:00
|
|
|
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "types.h"
|
2007-08-28 01:26:33 +02:00
|
|
|
#include "defs.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "param.h"
|
2007-08-28 01:26:33 +02:00
|
|
|
#include "stat.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "spinlock.h"
|
|
|
|
#include "buf.h"
|
|
|
|
#include "fs.h"
|
|
|
|
#include "fsvar.h"
|
2006-08-09 18:04:04 +02:00
|
|
|
#include "dev.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
2007-08-21 21:58:55 +02:00
|
|
|
static void itrunc(struct inode*);
|
2006-07-22 00:10:40 +02:00
|
|
|
|
2007-08-27 16:20:24 +02:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Blocks.
|
2006-08-11 00:08:14 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// Allocate a disk block.
|
2006-09-06 19:27:19 +02:00
|
|
|
static uint
|
|
|
|
balloc(uint dev)
|
2006-08-09 03:09:36 +02:00
|
|
|
{
|
2007-08-27 16:20:24 +02:00
|
|
|
int b, bi, m;
|
2006-08-09 03:09:36 +02:00
|
|
|
struct buf *bp;
|
2007-08-27 16:20:24 +02:00
|
|
|
struct superblock sb;
|
2006-08-09 03:09:36 +02:00
|
|
|
|
2007-08-27 16:20:24 +02:00
|
|
|
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;
|
|
|
|
}
|
2006-08-09 03:09:36 +02:00
|
|
|
}
|
2007-08-27 16:20:24 +02:00
|
|
|
brelse(bp);
|
2006-08-09 03:09:36 +02:00
|
|
|
}
|
2007-08-10 18:52:31 +02:00
|
|
|
panic("balloc: out of blocks");
|
2006-08-09 03:09:36 +02:00
|
|
|
}
|
|
|
|
|
2006-09-07 16:28:12 +02:00
|
|
|
// Free a disk block.
|
2006-09-06 19:27:19 +02:00
|
|
|
static void
|
2006-08-10 03:28:57 +02:00
|
|
|
bfree(int dev, uint b)
|
|
|
|
{
|
|
|
|
struct buf *bp;
|
2007-08-27 16:20:24 +02:00
|
|
|
struct superblock sb;
|
|
|
|
int bi, m;
|
2006-08-10 03:28:57 +02:00
|
|
|
|
2007-08-27 16:20:24 +02:00
|
|
|
bzero(dev, b);
|
2006-08-13 07:28:04 +02:00
|
|
|
|
2007-08-27 16:20:24 +02:00
|
|
|
readsb(dev, &sb);
|
|
|
|
bp = bread(dev, BBLOCK(b, sb.ninodes));
|
2006-08-10 03:28:57 +02:00
|
|
|
bi = b % BPB;
|
2007-08-27 16:20:24 +02:00
|
|
|
m = 1 << (bi % 8);
|
2007-08-24 21:32:36 +02:00
|
|
|
if((bp->data[bi/8] & m) == 0)
|
|
|
|
panic("freeing free block");
|
2007-08-27 16:20:24 +02:00
|
|
|
bp->data[bi/8] &= ~m; // Mark block free on disk.
|
|
|
|
bwrite(bp);
|
2006-08-10 03:28:57 +02:00
|
|
|
brelse(bp);
|
|
|
|
}
|
2006-08-09 03:09:36 +02:00
|
|
|
|
2007-08-27 16:23:48 +02:00
|
|
|
// 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.
|
2007-08-20 20:23:52 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2007-08-24 21:32:36 +02:00
|
|
|
// ip->ref counts the number of pointer references to this cached
|
2007-08-20 20:23:52 +02:00
|
|
|
// 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.
|
|
|
|
//
|
2007-08-22 08:01:32 +02:00
|
|
|
// Processes are only allowed to read and write inode
|
2007-08-27 16:23:48 +02:00
|
|
|
// metadata and contents when holding the inode's lock,
|
|
|
|
// represented by the I_BUSY flag in the in-memory copy.
|
2007-08-24 21:32:36 +02:00
|
|
|
// Because inode locks are held during disk accesses,
|
|
|
|
// they are implemented using a flag rather than with
|
|
|
|
// spin locks. Callers are responsible for locking
|
2007-08-22 08:01:32 +02:00
|
|
|
// 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'
|
2007-08-27 16:23:48 +02:00
|
|
|
// responsibility to lock them before using them. A non-zero
|
2007-08-24 21:32:36 +02:00
|
|
|
// ip->ref keeps these unlocked inodes in the cache.
|
2007-08-20 20:23:52 +02:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct spinlock lock;
|
|
|
|
struct inode inode[NINODE];
|
|
|
|
} icache;
|
|
|
|
|
|
|
|
void
|
|
|
|
iinit(void)
|
|
|
|
{
|
|
|
|
initlock(&icache.lock, "icache.lock");
|
|
|
|
}
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// Find the inode with number inum on device dev
|
2007-08-27 16:31:50 +02:00
|
|
|
// and return the in-memory copy.
|
2007-08-24 22:54:23 +02:00
|
|
|
static struct inode*
|
2006-07-21 15:18:04 +02:00
|
|
|
iget(uint dev, uint inum)
|
|
|
|
{
|
2007-08-20 20:23:52 +02:00
|
|
|
struct inode *ip, *empty;
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
acquire(&icache.lock);
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Try for cached inode.
|
|
|
|
empty = 0;
|
|
|
|
for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
|
2006-09-07 17:15:32 +02:00
|
|
|
if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){
|
|
|
|
ip->ref++;
|
2007-08-20 20:23:52 +02:00
|
|
|
release(&icache.lock);
|
2007-08-24 22:54:23 +02:00
|
|
|
return ip;
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
if(empty == 0 && ip->ref == 0) // Remember empty slot.
|
|
|
|
empty = ip;
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Allocate fresh inode.
|
|
|
|
if(empty == 0)
|
2007-08-08 11:50:46 +02:00
|
|
|
panic("iget: no inodes");
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
ip = empty;
|
|
|
|
ip->dev = dev;
|
|
|
|
ip->inum = inum;
|
|
|
|
ip->ref = 1;
|
2007-08-21 21:22:08 +02:00
|
|
|
ip->flags = 0;
|
2007-08-20 20:23:52 +02:00
|
|
|
release(&icache.lock);
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2007-08-24 22:54:23 +02:00
|
|
|
return ip;
|
2007-08-20 20:23:52 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// Increment reference count for ip.
|
|
|
|
// Returns ip to enable ip = idup(ip1) idiom.
|
2007-08-24 22:54:23 +02:00
|
|
|
struct inode*
|
|
|
|
idup(struct inode *ip)
|
2007-08-20 20:23:52 +02:00
|
|
|
{
|
2007-08-22 08:01:32 +02:00
|
|
|
acquire(&icache.lock);
|
|
|
|
ip->ref++;
|
|
|
|
release(&icache.lock);
|
2007-08-24 22:54:23 +02:00
|
|
|
return ip;
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Lock the given inode.
|
2007-08-24 22:54:23 +02:00
|
|
|
void
|
|
|
|
ilock(struct inode *ip)
|
2006-08-10 03:28:57 +02:00
|
|
|
{
|
2007-08-21 21:22:08 +02:00
|
|
|
struct buf *bp;
|
|
|
|
struct dinode *dip;
|
|
|
|
|
2007-08-24 22:54:23 +02:00
|
|
|
if(ip == 0 || ip->ref < 1)
|
|
|
|
panic("ilock");
|
2006-08-10 03:28:57 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
acquire(&icache.lock);
|
2007-08-21 21:22:08 +02:00
|
|
|
while(ip->flags & I_BUSY)
|
2007-08-20 20:23:52 +02:00
|
|
|
sleep(ip, &icache.lock);
|
2007-08-21 21:22:08 +02:00
|
|
|
ip->flags |= I_BUSY;
|
2007-08-20 20:23:52 +02:00
|
|
|
release(&icache.lock);
|
2007-08-21 21:22:08 +02:00
|
|
|
|
|
|
|
if(!(ip->flags & I_VALID)){
|
|
|
|
bp = bread(ip->dev, IBLOCK(ip->inum));
|
2007-08-28 06:13:24 +02:00
|
|
|
dip = (struct dinode*)bp->data + ip->inum%IPB;
|
2007-08-21 21:22:08 +02:00
|
|
|
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;
|
2007-08-22 08:01:32 +02:00
|
|
|
if(ip->type == 0)
|
|
|
|
panic("ilock: no type");
|
2007-08-21 21:22:08 +02:00
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unlock the given inode.
|
2007-08-24 22:54:23 +02:00
|
|
|
void
|
2007-08-20 20:23:52 +02:00
|
|
|
iunlock(struct inode *ip)
|
|
|
|
{
|
2007-08-24 22:54:23 +02:00
|
|
|
if(ip == 0 || !(ip->flags & I_BUSY) || ip->ref < 1)
|
2007-08-20 20:23:52 +02:00
|
|
|
panic("iunlock");
|
|
|
|
|
|
|
|
acquire(&icache.lock);
|
2007-08-21 21:22:08 +02:00
|
|
|
ip->flags &= ~I_BUSY;
|
2007-08-20 20:23:52 +02:00
|
|
|
wakeup(ip);
|
|
|
|
release(&icache.lock);
|
|
|
|
}
|
|
|
|
|
2007-08-21 21:22:08 +02:00
|
|
|
// Caller holds reference to unlocked ip. Drop reference.
|
2007-08-20 20:23:52 +02:00
|
|
|
void
|
2007-08-24 22:54:23 +02:00
|
|
|
iput(struct inode *ip)
|
2007-08-20 20:23:52 +02:00
|
|
|
{
|
2007-08-21 21:22:08 +02:00
|
|
|
acquire(&icache.lock);
|
2007-08-28 20:32:08 +02:00
|
|
|
if(ip->ref == 1 && (ip->flags & I_VALID) && ip->nlink == 0){
|
2007-08-21 21:22:08 +02:00
|
|
|
// inode is no longer used: truncate and free inode.
|
|
|
|
if(ip->flags & I_BUSY)
|
2007-08-22 08:01:32 +02:00
|
|
|
panic("iput busy");
|
2007-08-21 21:22:08 +02:00
|
|
|
ip->flags |= I_BUSY;
|
|
|
|
release(&icache.lock);
|
|
|
|
itrunc(ip);
|
|
|
|
ip->type = 0;
|
|
|
|
iupdate(ip);
|
|
|
|
acquire(&icache.lock);
|
|
|
|
ip->flags &= ~I_BUSY;
|
2007-08-28 05:31:11 +02:00
|
|
|
wakeup(ip);
|
2007-08-21 21:22:08 +02:00
|
|
|
}
|
|
|
|
ip->ref--;
|
|
|
|
release(&icache.lock);
|
2006-08-10 03:28:57 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 16:31:50 +02:00
|
|
|
// Common idiom: unlock, then put.
|
2007-08-24 22:54:23 +02:00
|
|
|
void
|
|
|
|
iunlockput(struct inode *ip)
|
|
|
|
{
|
|
|
|
iunlock(ip);
|
|
|
|
iput(ip);
|
|
|
|
}
|
|
|
|
|
2007-08-25 00:17:54 +02:00
|
|
|
//PAGEBREAK!
|
2007-08-20 20:23:52 +02:00
|
|
|
// Allocate a new inode with the given type on device dev.
|
2007-08-24 22:54:23 +02:00
|
|
|
struct inode*
|
2006-08-08 20:07:37 +02:00
|
|
|
ialloc(uint dev, short type)
|
|
|
|
{
|
2007-08-27 16:20:24 +02:00
|
|
|
int inum;
|
2007-08-21 21:22:08 +02:00
|
|
|
struct buf *bp;
|
2007-08-10 18:52:31 +02:00
|
|
|
struct dinode *dip;
|
2007-08-27 16:20:24 +02:00
|
|
|
struct superblock sb;
|
2006-08-09 03:09:36 +02:00
|
|
|
|
2007-08-27 16:20:24 +02:00
|
|
|
readsb(dev, &sb);
|
2007-08-28 20:32:08 +02:00
|
|
|
for(inum = 1; inum < sb.ninodes; inum++){ // loop over inode blocks
|
2006-08-09 03:09:36 +02:00
|
|
|
bp = bread(dev, IBLOCK(inum));
|
2007-08-28 06:13:24 +02:00
|
|
|
dip = (struct dinode*)bp->data + inum%IPB;
|
2007-08-28 20:32:08 +02:00
|
|
|
if(dip->type == 0){ // a free inode
|
2007-08-08 11:53:46 +02:00
|
|
|
memset(dip, 0, sizeof(*dip));
|
|
|
|
dip->type = type;
|
2007-08-22 08:01:32 +02:00
|
|
|
bwrite(bp); // mark it allocated on the disk
|
2007-08-08 11:53:46 +02:00
|
|
|
brelse(bp);
|
2007-08-21 21:22:08 +02:00
|
|
|
return iget(dev, inum);
|
2006-08-08 20:07:37 +02:00
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
}
|
2007-08-08 11:53:46 +02:00
|
|
|
panic("ialloc: no inodes");
|
2006-08-08 20:07:37 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Copy inode, which has changed, from memory to disk.
|
2007-08-22 08:01:32 +02:00
|
|
|
void
|
2007-08-20 20:23:52 +02:00
|
|
|
iupdate(struct inode *ip)
|
2006-07-22 00:10:40 +02:00
|
|
|
{
|
2007-08-20 20:23:52 +02:00
|
|
|
struct buf *bp;
|
|
|
|
struct dinode *dip;
|
2006-07-22 00:10:40 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
bp = bread(ip->dev, IBLOCK(ip->inum));
|
2007-08-28 06:13:24 +02:00
|
|
|
dip = (struct dinode*)bp->data + ip->inum%IPB;
|
2007-08-20 20:23:52 +02:00
|
|
|
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));
|
2007-08-22 08:01:32 +02:00
|
|
|
bwrite(bp);
|
2007-08-20 20:23:52 +02:00
|
|
|
brelse(bp);
|
2006-07-22 00:10:40 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 00:17:54 +02:00
|
|
|
//PAGEBREAK!
|
2007-08-20 20:23:52 +02:00
|
|
|
// Inode contents
|
|
|
|
//
|
|
|
|
// The contents (data) associated with each inode is stored
|
|
|
|
// in a sequence of blocks on the disk. The first NDIRECT blocks
|
2007-08-27 16:31:50 +02:00
|
|
|
// are listed in ip->addrs[]. The next NINDIRECT blocks are
|
2007-08-20 20:23:52 +02:00
|
|
|
// listed in the block ip->addrs[INDIRECT].
|
|
|
|
|
2006-09-07 16:28:12 +02:00
|
|
|
// Return the disk block address of the nth block in inode ip.
|
2007-08-22 08:01:32 +02:00
|
|
|
// If there is no such block, alloc controls whether one is allocated.
|
|
|
|
static uint
|
2007-08-20 20:23:52 +02:00
|
|
|
bmap(struct inode *ip, uint bn, int alloc)
|
2006-08-13 00:03:01 +02:00
|
|
|
{
|
2007-08-20 20:23:52 +02:00
|
|
|
uint addr, *a;
|
|
|
|
struct buf *bp;
|
2006-08-13 00:03:01 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(bn < NDIRECT){
|
|
|
|
if((addr = ip->addrs[bn]) == 0){
|
2007-08-20 20:23:52 +02:00
|
|
|
if(!alloc)
|
|
|
|
return -1;
|
|
|
|
ip->addrs[bn] = addr = balloc(ip->dev);
|
|
|
|
}
|
|
|
|
return addr;
|
2006-08-24 04:44:41 +02:00
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
bn -= NDIRECT;
|
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(bn < NINDIRECT){
|
2007-08-20 20:23:52 +02:00
|
|
|
// Load indirect block, allocating if necessary.
|
2007-08-28 20:32:08 +02:00
|
|
|
if((addr = ip->addrs[INDIRECT]) == 0){
|
2007-08-20 20:23:52 +02:00
|
|
|
if(!alloc)
|
|
|
|
return -1;
|
|
|
|
ip->addrs[INDIRECT] = addr = balloc(ip->dev);
|
|
|
|
}
|
|
|
|
bp = bread(ip->dev, addr);
|
|
|
|
a = (uint*)bp->data;
|
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if((addr = a[bn]) == 0){
|
|
|
|
if(!alloc){
|
2007-08-20 20:23:52 +02:00
|
|
|
brelse(bp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
a[bn] = addr = balloc(ip->dev);
|
2007-08-22 08:01:32 +02:00
|
|
|
bwrite(bp);
|
2007-08-20 20:23:52 +02:00
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
panic("bmap: out of range");
|
2006-08-13 00:03:01 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Truncate inode (discard contents).
|
2007-08-21 21:58:55 +02:00
|
|
|
static void
|
2006-08-30 20:55:06 +02:00
|
|
|
itrunc(struct inode *ip)
|
2006-08-13 00:03:01 +02:00
|
|
|
{
|
2006-08-24 04:44:41 +02:00
|
|
|
int i, j;
|
2007-08-20 20:23:52 +02:00
|
|
|
struct buf *bp;
|
2007-08-10 18:52:31 +02:00
|
|
|
uint *a;
|
2006-08-13 00:03:01 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
for(i = 0; i < NDIRECT; i++){
|
|
|
|
if(ip->addrs[i]){
|
2006-08-24 19:28:01 +02:00
|
|
|
bfree(ip->dev, ip->addrs[i]);
|
2006-08-13 00:03:01 +02:00
|
|
|
ip->addrs[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(ip->addrs[INDIRECT]){
|
2007-08-20 20:23:52 +02:00
|
|
|
bp = bread(ip->dev, ip->addrs[INDIRECT]);
|
|
|
|
a = (uint*)bp->data;
|
2007-08-28 20:32:08 +02:00
|
|
|
for(j = 0; j < NINDIRECT; j++){
|
2007-08-20 20:23:52 +02:00
|
|
|
if(a[j])
|
|
|
|
bfree(ip->dev, a[j]);
|
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
ip->addrs[INDIRECT] = 0;
|
2006-08-30 20:55:06 +02:00
|
|
|
}
|
2006-08-13 00:03:01 +02:00
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
ip->size = 0;
|
|
|
|
iupdate(ip);
|
2006-08-15 17:53:46 +02:00
|
|
|
}
|
|
|
|
|
2006-09-07 16:28:12 +02:00
|
|
|
// Copy stat information from inode.
|
2006-08-12 06:33:50 +02:00
|
|
|
void
|
|
|
|
stati(struct inode *ip, struct stat *st)
|
|
|
|
{
|
2006-09-07 15:08:23 +02:00
|
|
|
st->dev = ip->dev;
|
|
|
|
st->ino = ip->inum;
|
|
|
|
st->type = ip->type;
|
|
|
|
st->nlink = ip->nlink;
|
|
|
|
st->size = ip->size;
|
2006-08-12 06:33:50 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
//PAGEBREAK!
|
2006-09-07 16:28:12 +02:00
|
|
|
// Read data from inode.
|
2006-07-27 23:10:00 +02:00
|
|
|
int
|
2006-08-11 15:55:18 +02:00
|
|
|
readi(struct inode *ip, char *dst, uint off, uint n)
|
2006-07-27 23:10:00 +02:00
|
|
|
{
|
2007-08-20 20:23:52 +02:00
|
|
|
uint tot, m;
|
2006-07-27 23:10:00 +02:00
|
|
|
struct buf *bp;
|
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(ip->type == T_DEV){
|
2006-09-07 15:08:23 +02:00
|
|
|
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read)
|
2006-08-09 21:25:20 +02:00
|
|
|
return -1;
|
2007-08-28 19:49:49 +02:00
|
|
|
return devsw[ip->major].read(ip, dst, n);
|
2006-08-09 21:25:20 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 16:31:50 +02:00
|
|
|
if(off > ip->size || off + n < off)
|
2007-08-20 20:23:52 +02:00
|
|
|
return -1;
|
|
|
|
if(off + n > ip->size)
|
|
|
|
n = ip->size - off;
|
2006-07-27 23:10:00 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
for(tot=0; tot<n; tot+=m, off+=m, dst+=m){
|
2007-08-20 20:23:52 +02:00
|
|
|
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);
|
2006-08-24 04:44:41 +02:00
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
return n;
|
2006-08-24 04:44:41 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// PAGEBREAK!
|
2006-09-07 16:28:12 +02:00
|
|
|
// Write data to inode.
|
2006-08-09 18:04:04 +02:00
|
|
|
int
|
2007-08-20 20:23:52 +02:00
|
|
|
writei(struct inode *ip, char *src, uint off, uint n)
|
2006-08-09 18:04:04 +02:00
|
|
|
{
|
2007-08-20 20:23:52 +02:00
|
|
|
uint tot, m;
|
2007-08-10 18:52:31 +02:00
|
|
|
struct buf *bp;
|
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(ip->type == T_DEV){
|
2006-09-07 15:08:23 +02:00
|
|
|
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write)
|
2006-08-09 21:25:20 +02:00
|
|
|
return -1;
|
2007-08-28 19:49:49 +02:00
|
|
|
return devsw[ip->major].write(ip, src, n);
|
2007-08-10 18:52:31 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
if(off + n < off)
|
|
|
|
return -1;
|
|
|
|
if(off + n > MAXFILE*BSIZE)
|
|
|
|
n = MAXFILE*BSIZE - off;
|
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
for(tot=0; tot<n; tot+=m, off+=m, src+=m){
|
2007-08-20 20:23:52 +02:00
|
|
|
bp = bread(ip->dev, bmap(ip, off/BSIZE, 1));
|
|
|
|
m = min(n - tot, BSIZE - off%BSIZE);
|
|
|
|
memmove(bp->data + off%BSIZE, src, m);
|
2007-08-22 08:01:32 +02:00
|
|
|
bwrite(bp);
|
2007-08-10 18:52:31 +02:00
|
|
|
brelse(bp);
|
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(n > 0 && off > ip->size){
|
2007-08-20 20:23:52 +02:00
|
|
|
ip->size = off;
|
2007-08-10 18:52:31 +02:00
|
|
|
iupdate(ip);
|
2006-08-09 18:04:04 +02:00
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
return n;
|
2006-08-09 18:04:04 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
//PAGEBREAK!
|
2007-08-20 20:23:52 +02:00
|
|
|
// Directories
|
2007-08-09 21:05:00 +02:00
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
int
|
2007-08-21 21:58:55 +02:00
|
|
|
namecmp(const char *s, const char *t)
|
|
|
|
{
|
2007-08-24 23:00:02 +02:00
|
|
|
return strncmp(s, t, DIRSIZ);
|
2007-08-21 21:58:55 +02:00
|
|
|
}
|
|
|
|
|
2007-08-09 21:05:00 +02:00
|
|
|
// Look for a directory entry in a directory.
|
2007-08-22 08:01:32 +02:00
|
|
|
// If found, set *poff to byte offset of entry.
|
2007-08-24 16:56:17 +02:00
|
|
|
// Caller must have already locked dp.
|
2007-08-24 22:54:23 +02:00
|
|
|
struct inode*
|
2007-08-21 21:58:55 +02:00
|
|
|
dirlookup(struct inode *dp, char *name, uint *poff)
|
2007-08-09 21:05:00 +02:00
|
|
|
{
|
2007-08-21 21:22:08 +02:00
|
|
|
uint off, inum;
|
2007-08-09 21:05:00 +02:00
|
|
|
struct buf *bp;
|
|
|
|
struct dirent *de;
|
|
|
|
|
|
|
|
if(dp->type != T_DIR)
|
2007-08-24 16:56:17 +02:00
|
|
|
panic("dirlookup not DIR");
|
2007-08-09 21:05:00 +02:00
|
|
|
|
|
|
|
for(off = 0; off < dp->size; off += BSIZE){
|
2007-08-20 20:23:52 +02:00
|
|
|
bp = bread(dp->dev, bmap(dp, off / BSIZE, 0));
|
2007-08-27 16:31:50 +02:00
|
|
|
for(de = (struct dirent*)bp->data;
|
|
|
|
de < (struct dirent*)(bp->data + BSIZE);
|
2007-08-09 21:05:00 +02:00
|
|
|
de++){
|
|
|
|
if(de->inum == 0)
|
|
|
|
continue;
|
2007-08-21 21:58:55 +02:00
|
|
|
if(namecmp(name, de->name) == 0){
|
2007-08-09 21:05:00 +02:00
|
|
|
// entry matches path element
|
2007-08-20 21:37:15 +02:00
|
|
|
if(poff)
|
|
|
|
*poff = off + (uchar*)de - bp->data;
|
2007-08-21 21:22:08 +02:00
|
|
|
inum = de->inum;
|
2007-08-09 21:05:00 +02:00
|
|
|
brelse(bp);
|
2007-08-21 21:22:08 +02:00
|
|
|
return iget(dp->dev, inum);
|
2007-08-09 21:05:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
}
|
2007-08-21 21:22:08 +02:00
|
|
|
return 0;
|
2007-08-09 21:05:00 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
// Write a new directory entry (name, ino) into the directory dp.
|
2007-08-22 08:01:32 +02:00
|
|
|
int
|
2007-08-21 21:58:55 +02:00
|
|
|
dirlink(struct inode *dp, char *name, uint ino)
|
2007-08-20 20:23:52 +02:00
|
|
|
{
|
2007-08-20 21:37:15 +02:00
|
|
|
int off;
|
2007-08-20 20:23:52 +02:00
|
|
|
struct dirent de;
|
2007-08-24 22:54:23 +02:00
|
|
|
struct inode *ip;
|
2007-08-21 21:22:08 +02:00
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// Check that name is not present.
|
2007-08-24 22:54:23 +02:00
|
|
|
if((ip = dirlookup(dp, name, 0)) != 0){
|
|
|
|
iput(ip);
|
2007-08-21 21:22:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
|
|
|
|
// Look for an empty dirent.
|
|
|
|
for(off = 0; off < dp->size; off += sizeof(de)){
|
|
|
|
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
|
2007-08-27 16:31:50 +02:00
|
|
|
panic("dirlink read");
|
2007-08-20 20:23:52 +02:00
|
|
|
if(de.inum == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-08-24 23:00:02 +02:00
|
|
|
strncpy(de.name, name, DIRSIZ);
|
2007-08-20 20:23:52 +02:00
|
|
|
de.inum = ino;
|
|
|
|
if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
|
2007-08-27 16:31:50 +02:00
|
|
|
panic("dirlink");
|
2007-08-21 21:22:08 +02:00
|
|
|
|
|
|
|
return 0;
|
2007-08-20 20:23:52 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 00:17:54 +02:00
|
|
|
//PAGEBREAK!
|
2007-08-20 20:23:52 +02:00
|
|
|
// Paths
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// 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.
|
2007-08-20 20:23:52 +02:00
|
|
|
//
|
|
|
|
// Examples:
|
2007-08-22 08:01:32 +02:00
|
|
|
// skipelem("a/bb/c", name) = "bb/c", setting name = "a"
|
2007-08-27 16:31:50 +02:00
|
|
|
// skipelem("///a//bb", name) = "bb", setting name = "a"
|
2007-08-22 08:01:32 +02:00
|
|
|
// skipelem("", name) = skipelem("////", name) = 0
|
2007-08-20 20:23:52 +02:00
|
|
|
//
|
|
|
|
static char*
|
2007-08-21 21:58:55 +02:00
|
|
|
skipelem(char *path, char *name)
|
2007-08-20 20:23:52 +02:00
|
|
|
{
|
2007-08-21 21:58:55 +02:00
|
|
|
char *s;
|
|
|
|
int len;
|
|
|
|
|
2007-08-20 20:23:52 +02:00
|
|
|
while(*path == '/')
|
|
|
|
path++;
|
|
|
|
if(*path == 0)
|
|
|
|
return 0;
|
2007-08-21 21:58:55 +02:00
|
|
|
s = path;
|
2007-08-20 20:23:52 +02:00
|
|
|
while(*path != '/' && *path != 0)
|
|
|
|
path++;
|
2007-08-21 21:58:55 +02:00
|
|
|
len = path - s;
|
|
|
|
if(len >= DIRSIZ)
|
|
|
|
memmove(name, s, DIRSIZ);
|
2007-08-28 20:37:41 +02:00
|
|
|
else {
|
2007-08-21 21:58:55 +02:00
|
|
|
memmove(name, s, len);
|
|
|
|
name[len] = 0;
|
|
|
|
}
|
2007-08-20 20:23:52 +02:00
|
|
|
while(*path == '/')
|
|
|
|
path++;
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// Look up and return the inode for a path name.
|
2007-08-28 21:39:49 +02:00
|
|
|
// If parent != 0, return the inode for the parent and copy the final
|
|
|
|
// path element into name, which must have room for DIRSIZ bytes.
|
2007-08-24 22:54:23 +02:00
|
|
|
static struct inode*
|
2007-08-21 21:58:55 +02:00
|
|
|
_namei(char *path, int parent, char *name)
|
2006-07-22 00:10:40 +02:00
|
|
|
{
|
2007-08-24 22:54:23 +02:00
|
|
|
struct inode *ip, *next;
|
2006-08-25 03:11:30 +02:00
|
|
|
|
2007-08-09 21:05:00 +02:00
|
|
|
if(*path == '/')
|
2008-10-08 20:57:13 +02:00
|
|
|
ip = iget(ROOTDEV, ROOTINO);
|
2007-08-21 21:22:08 +02:00
|
|
|
else
|
2007-08-24 22:54:23 +02:00
|
|
|
ip = idup(cp->cwd);
|
2006-07-22 00:10:40 +02:00
|
|
|
|
2007-08-21 21:58:55 +02:00
|
|
|
while((path = skipelem(path, name)) != 0){
|
2007-08-24 22:54:23 +02:00
|
|
|
ilock(ip);
|
|
|
|
if(ip->type != T_DIR){
|
|
|
|
iunlockput(ip);
|
2007-08-22 08:01:32 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2007-08-20 21:37:15 +02:00
|
|
|
if(parent && *path == '\0'){
|
|
|
|
// Stop one level early.
|
2007-08-24 22:54:23 +02:00
|
|
|
iunlock(ip);
|
|
|
|
return ip;
|
2006-08-13 14:22:44 +02:00
|
|
|
}
|
2007-08-27 16:31:50 +02:00
|
|
|
if((next = dirlookup(ip, name, 0)) == 0){
|
2007-08-24 22:54:23 +02:00
|
|
|
iunlockput(ip);
|
2007-08-22 08:01:32 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2007-08-24 22:54:23 +02:00
|
|
|
iunlockput(ip);
|
|
|
|
ip = next;
|
2006-07-22 00:10:40 +02:00
|
|
|
}
|
2007-08-24 16:56:17 +02:00
|
|
|
if(parent){
|
2007-08-24 22:54:23 +02:00
|
|
|
iput(ip);
|
2007-08-09 21:05:00 +02:00
|
|
|
return 0;
|
2007-08-24 16:56:17 +02:00
|
|
|
}
|
2007-08-24 22:54:23 +02:00
|
|
|
return ip;
|
2006-07-22 00:10:40 +02:00
|
|
|
}
|
2006-08-08 20:07:37 +02:00
|
|
|
|
2007-08-27 16:31:50 +02:00
|
|
|
struct inode*
|
|
|
|
namei(char *path)
|
|
|
|
{
|
|
|
|
char name[DIRSIZ];
|
|
|
|
return _namei(path, 0, name);
|
|
|
|
}
|
2007-08-28 21:39:49 +02:00
|
|
|
|
2007-08-27 16:31:50 +02:00
|
|
|
struct inode*
|
|
|
|
nameiparent(char *path, char *name)
|
|
|
|
{
|
|
|
|
return _namei(path, 1, name);
|
|
|
|
}
|