2006-07-21 15:18:04 +02:00
|
|
|
#include "types.h"
|
2006-08-12 06:33:50 +02:00
|
|
|
#include "stat.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
#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"
|
2006-08-09 18:04:04 +02:00
|
|
|
#include "dev.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
|
|
|
|
// these are inodes currently in use
|
|
|
|
// an entry is free if count == 0
|
|
|
|
struct inode inode[NINODE];
|
2006-08-11 00:08:14 +02:00
|
|
|
struct spinlock inode_table_lock;
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2006-07-22 00:10:40 +02:00
|
|
|
uint rootdev = 1;
|
|
|
|
|
2006-08-11 00:08:14 +02:00
|
|
|
void
|
|
|
|
iinit(void)
|
|
|
|
{
|
|
|
|
initlock(&inode_table_lock, "inode_table");
|
|
|
|
}
|
|
|
|
|
2006-08-09 03:09:36 +02:00
|
|
|
static uint
|
|
|
|
balloc(uint dev)
|
|
|
|
{
|
|
|
|
int b;
|
|
|
|
struct buf *bp;
|
|
|
|
struct superblock *sb;
|
2006-08-10 03:28:57 +02:00
|
|
|
int bi = 0;
|
2006-08-09 03:09:36 +02:00
|
|
|
int size;
|
|
|
|
int ninodes;
|
|
|
|
uchar m;
|
|
|
|
|
|
|
|
bp = bread(dev, 1);
|
|
|
|
sb = (struct superblock *) bp->data;
|
|
|
|
size = sb->size;
|
|
|
|
ninodes = sb->ninodes;
|
|
|
|
|
|
|
|
for (b = 0; b < size; b++) {
|
|
|
|
if (b % BPB == 0) {
|
|
|
|
brelse(bp);
|
|
|
|
bp = bread(dev, BBLOCK(b, ninodes));
|
|
|
|
}
|
|
|
|
bi = b % BPB;
|
|
|
|
m = 0x1 << (bi % 8);
|
|
|
|
if ((bp->data[bi/8] & m) == 0) { // is block free?
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (b >= size)
|
|
|
|
panic("balloc: out of blocks\n");
|
|
|
|
|
|
|
|
bp->data[bi/8] |= 0x1 << (bi % 8);
|
2006-08-13 00:44:26 +02:00
|
|
|
bwrite (bp, BBLOCK(b, ninodes)); // mark it allocated on disk
|
2006-08-10 03:28:57 +02:00
|
|
|
brelse(bp);
|
2006-08-09 03:09:36 +02:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2006-08-10 03:28:57 +02:00
|
|
|
static void
|
|
|
|
bfree(int dev, uint b)
|
|
|
|
{
|
|
|
|
struct buf *bp;
|
|
|
|
struct superblock *sb;
|
|
|
|
int bi;
|
|
|
|
int ninodes;
|
|
|
|
uchar m;
|
|
|
|
|
|
|
|
bp = bread(dev, 1);
|
|
|
|
sb = (struct superblock *) bp->data;
|
|
|
|
ninodes = sb->ninodes;
|
|
|
|
brelse(bp);
|
|
|
|
|
2006-08-13 07:28:04 +02:00
|
|
|
bp = bread(dev, b);
|
|
|
|
memset(bp->data, 0, BSIZE);
|
|
|
|
bwrite(bp, b);
|
|
|
|
brelse(bp);
|
|
|
|
|
2006-08-10 03:28:57 +02:00
|
|
|
bp = bread(dev, BBLOCK(b, ninodes));
|
|
|
|
bi = b % BPB;
|
|
|
|
m = ~(0x1 << (bi %8));
|
|
|
|
bp->data[bi/8] &= m;
|
2006-08-13 00:44:26 +02:00
|
|
|
bwrite (bp, BBLOCK(b, ninodes)); // mark it free on disk
|
2006-08-10 03:28:57 +02:00
|
|
|
brelse(bp);
|
|
|
|
}
|
2006-08-09 03:09:36 +02:00
|
|
|
|
2006-07-22 00:10:40 +02:00
|
|
|
// returns an inode with busy set and incremented reference count.
|
2006-07-21 15:18:04 +02:00
|
|
|
struct inode *
|
|
|
|
iget(uint dev, uint inum)
|
|
|
|
{
|
2006-08-13 17:51:58 +02:00
|
|
|
struct inode *ip, *nip;
|
2006-07-21 15:18:04 +02:00
|
|
|
struct dinode *dip;
|
|
|
|
struct buf *bp;
|
|
|
|
|
|
|
|
acquire(&inode_table_lock);
|
|
|
|
|
|
|
|
loop:
|
2006-08-13 17:51:58 +02:00
|
|
|
nip = 0;
|
2006-07-21 15:18:04 +02:00
|
|
|
for(ip = &inode[0]; ip < &inode[NINODE]; ip++){
|
|
|
|
if(ip->count > 0 && ip->dev == dev && ip->inum == inum){
|
|
|
|
if(ip->busy){
|
|
|
|
sleep(ip, &inode_table_lock);
|
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
ip->count++;
|
2006-08-11 15:55:18 +02:00
|
|
|
ip->busy = 1;
|
2006-07-21 15:18:04 +02:00
|
|
|
release(&inode_table_lock);
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
if(nip == 0 && ip->count == 0)
|
|
|
|
nip = ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nip == 0)
|
|
|
|
panic("out of inodes");
|
|
|
|
|
|
|
|
nip->dev = dev;
|
|
|
|
nip->inum = inum;
|
|
|
|
nip->count = 1;
|
|
|
|
nip->busy = 1;
|
|
|
|
|
|
|
|
release(&inode_table_lock);
|
|
|
|
|
2006-08-09 03:09:36 +02:00
|
|
|
bp = bread(dev, IBLOCK(inum));
|
2006-07-21 15:18:04 +02:00
|
|
|
dip = &((struct dinode *)(bp->data))[inum % IPB];
|
|
|
|
nip->type = dip->type;
|
2006-08-08 20:07:37 +02:00
|
|
|
nip->major = dip->major;
|
|
|
|
nip->minor = dip->minor;
|
2006-07-21 15:18:04 +02:00
|
|
|
nip->nlink = dip->nlink;
|
|
|
|
nip->size = dip->size;
|
|
|
|
memmove(nip->addrs, dip->addrs, sizeof(nip->addrs));
|
|
|
|
brelse(bp);
|
|
|
|
|
|
|
|
return nip;
|
|
|
|
}
|
|
|
|
|
2006-08-10 03:28:57 +02:00
|
|
|
void
|
|
|
|
iupdate (struct inode *ip)
|
|
|
|
{
|
|
|
|
struct buf *bp;
|
|
|
|
struct dinode *dip;
|
|
|
|
|
|
|
|
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));
|
2006-08-13 00:44:26 +02:00
|
|
|
bwrite (bp, IBLOCK(ip->inum)); // mark it allocated on the disk
|
2006-08-10 03:28:57 +02:00
|
|
|
brelse(bp);
|
|
|
|
}
|
|
|
|
|
2006-08-08 20:07:37 +02:00
|
|
|
struct inode *
|
|
|
|
ialloc(uint dev, short type)
|
|
|
|
{
|
|
|
|
struct inode *ip;
|
|
|
|
struct dinode *dip = 0;
|
|
|
|
struct superblock *sb;
|
|
|
|
int ninodes;
|
|
|
|
int inum;
|
|
|
|
struct buf *bp;
|
|
|
|
|
|
|
|
bp = bread(dev, 1);
|
2006-08-09 03:09:36 +02:00
|
|
|
sb = (struct superblock *) bp->data;
|
2006-08-08 20:07:37 +02:00
|
|
|
ninodes = sb->ninodes;
|
|
|
|
brelse(bp);
|
2006-08-09 03:09:36 +02:00
|
|
|
|
2006-08-08 20:07:37 +02:00
|
|
|
for (inum = 1; inum < ninodes; inum++) { // loop over inode blocks
|
2006-08-09 03:09:36 +02:00
|
|
|
bp = bread(dev, IBLOCK(inum));
|
2006-08-08 20:07:37 +02:00
|
|
|
dip = &((struct dinode *)(bp->data))[inum % IPB];
|
|
|
|
if (dip->type == 0) { // a free inode
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
}
|
|
|
|
|
2006-08-13 17:51:58 +02:00
|
|
|
if (inum >= ninodes)
|
2006-08-09 03:09:36 +02:00
|
|
|
panic ("ialloc: no inodes left\n");
|
2006-08-08 20:07:37 +02:00
|
|
|
|
|
|
|
dip->type = type;
|
2006-08-13 00:44:26 +02:00
|
|
|
bwrite (bp, IBLOCK(inum)); // mark it allocated on the disk
|
2006-08-08 20:07:37 +02:00
|
|
|
brelse(bp);
|
|
|
|
ip = iget (dev, inum);
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
2006-08-10 03:28:57 +02:00
|
|
|
static void
|
2006-08-11 20:18:38 +02:00
|
|
|
ifree(struct inode *ip)
|
2006-08-08 20:07:37 +02:00
|
|
|
{
|
2006-08-10 03:28:57 +02:00
|
|
|
ip->type = 0;
|
|
|
|
iupdate(ip);
|
2006-08-08 20:07:37 +02:00
|
|
|
}
|
|
|
|
|
2006-07-22 00:10:40 +02:00
|
|
|
void
|
|
|
|
ilock(struct inode *ip)
|
|
|
|
{
|
|
|
|
if(ip->count < 1)
|
|
|
|
panic("ilock");
|
|
|
|
|
|
|
|
acquire(&inode_table_lock);
|
|
|
|
|
|
|
|
while(ip->busy)
|
|
|
|
sleep(ip, &inode_table_lock);
|
|
|
|
ip->busy = 1;
|
|
|
|
|
|
|
|
release(&inode_table_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
// caller is holding onto a reference to this inode, but no
|
|
|
|
// longer needs to examine or change it, so clear ip->busy.
|
|
|
|
void
|
|
|
|
iunlock(struct inode *ip)
|
|
|
|
{
|
2006-08-13 17:51:58 +02:00
|
|
|
if(ip->busy != 1 || ip->count < 1)
|
2006-07-22 00:10:40 +02:00
|
|
|
panic("iunlock");
|
|
|
|
|
|
|
|
acquire(&inode_table_lock);
|
|
|
|
|
|
|
|
ip->busy = 0;
|
|
|
|
wakeup(ip);
|
|
|
|
|
|
|
|
release(&inode_table_lock);
|
|
|
|
}
|
|
|
|
|
2006-08-13 00:03:01 +02:00
|
|
|
uint
|
|
|
|
bmap(struct inode *ip, uint bn)
|
|
|
|
{
|
|
|
|
unsigned x;
|
2006-08-24 04:44:41 +02:00
|
|
|
uint *a;
|
|
|
|
struct buf *inbp;
|
2006-08-13 00:03:01 +02:00
|
|
|
|
2006-08-24 04:44:41 +02:00
|
|
|
if(bn >= MAXFILE)
|
2006-08-13 00:03:01 +02:00
|
|
|
panic("bmap 1");
|
2006-08-24 04:44:41 +02:00
|
|
|
if (bn < NDIRECT) {
|
|
|
|
x = ip->addrs[bn];
|
|
|
|
if (x == 0)
|
|
|
|
panic("bmap 2");
|
|
|
|
} else {
|
2006-08-25 03:11:30 +02:00
|
|
|
if(ip->addrs[INDIRECT] == 0)
|
|
|
|
panic("bmap 3");
|
2006-08-24 19:28:01 +02:00
|
|
|
inbp = bread(ip->dev, ip->addrs[INDIRECT]);
|
2006-08-24 04:44:41 +02:00
|
|
|
a = (uint *) inbp->data;
|
|
|
|
x = a[bn - NDIRECT];
|
|
|
|
brelse(inbp);
|
|
|
|
if (x == 0)
|
2006-08-25 03:11:30 +02:00
|
|
|
panic("bmap 4");
|
2006-08-24 04:44:41 +02:00
|
|
|
}
|
2006-08-13 00:03:01 +02:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
iunlink(struct inode *ip)
|
|
|
|
{
|
2006-08-24 04:44:41 +02:00
|
|
|
int i, j;
|
2006-08-24 19:28:01 +02:00
|
|
|
struct buf *inbp;
|
2006-08-13 00:03:01 +02:00
|
|
|
|
|
|
|
// free inode, its blocks, and remove dir entry
|
2006-08-24 04:44:41 +02:00
|
|
|
for (i = 0; i < NADDRS; i++) {
|
2006-08-13 00:03:01 +02:00
|
|
|
if (ip->addrs[i] != 0) {
|
2006-08-24 04:44:41 +02:00
|
|
|
if (i == INDIRECT) {
|
2006-08-24 19:28:01 +02:00
|
|
|
inbp = bread(ip->dev, ip->addrs[INDIRECT]);
|
2006-08-24 21:21:19 +02:00
|
|
|
uint *a = (uint *) inbp->data;
|
2006-08-24 04:44:41 +02:00
|
|
|
for (j = 0; j < NINDIRECT; j++) {
|
|
|
|
if (a[j] != 0) {
|
|
|
|
bfree(ip->dev, a[j]);
|
|
|
|
a[j] = 0;
|
|
|
|
}
|
|
|
|
}
|
2006-08-24 19:28:01 +02:00
|
|
|
brelse(inbp);
|
|
|
|
}
|
|
|
|
bfree(ip->dev, ip->addrs[i]);
|
2006-08-13 00:03:01 +02:00
|
|
|
ip->addrs[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ip->size = 0;
|
|
|
|
ip->major = 0;
|
|
|
|
ip->minor = 0;
|
|
|
|
iupdate(ip);
|
|
|
|
ifree(ip); // is this the right order?
|
|
|
|
}
|
|
|
|
|
2006-07-22 00:10:40 +02:00
|
|
|
// caller is releasing a reference to this inode.
|
|
|
|
// you must have the inode lock.
|
2006-07-21 15:18:04 +02:00
|
|
|
void
|
|
|
|
iput(struct inode *ip)
|
|
|
|
{
|
2006-07-22 00:10:40 +02:00
|
|
|
if(ip->count < 1 || ip->busy != 1)
|
|
|
|
panic("iput");
|
|
|
|
|
2006-08-13 17:51:58 +02:00
|
|
|
if ((ip->count == 1) && (ip->nlink == 0))
|
2006-08-13 00:03:01 +02:00
|
|
|
iunlink(ip);
|
|
|
|
|
2006-07-21 15:18:04 +02:00
|
|
|
acquire(&inode_table_lock);
|
|
|
|
|
|
|
|
ip->count -= 1;
|
|
|
|
ip->busy = 0;
|
|
|
|
wakeup(ip);
|
|
|
|
|
|
|
|
release(&inode_table_lock);
|
|
|
|
}
|
2006-07-22 00:10:40 +02:00
|
|
|
|
|
|
|
void
|
2006-07-29 11:35:02 +02:00
|
|
|
idecref(struct inode *ip)
|
2006-07-22 00:10:40 +02:00
|
|
|
{
|
2006-08-13 14:22:44 +02:00
|
|
|
ilock(ip);
|
|
|
|
iput(ip);
|
2006-07-22 00:10:40 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 17:53:46 +02:00
|
|
|
void
|
|
|
|
iincref(struct inode *ip)
|
|
|
|
{
|
|
|
|
ilock(ip);
|
|
|
|
ip->count++;
|
|
|
|
iunlock(ip);
|
|
|
|
}
|
|
|
|
|
2006-08-12 06:33:50 +02:00
|
|
|
void
|
|
|
|
stati(struct inode *ip, struct stat *st)
|
|
|
|
{
|
|
|
|
st->st_dev = ip->dev;
|
|
|
|
st->st_ino = ip->inum;
|
|
|
|
st->st_type = ip->type;
|
|
|
|
st->st_nlink = ip->nlink;
|
|
|
|
st->st_size = ip->size;
|
|
|
|
}
|
|
|
|
|
2006-08-13 00:03:01 +02:00
|
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
|
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
|
|
|
{
|
|
|
|
uint target = n, n1;
|
|
|
|
struct buf *bp;
|
|
|
|
|
2006-08-09 21:25:20 +02:00
|
|
|
if (ip->type == T_DEV) {
|
|
|
|
if (ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].d_read)
|
|
|
|
return -1;
|
2006-08-11 15:55:18 +02:00
|
|
|
return devsw[ip->major].d_read (ip->minor, dst, n);
|
2006-08-09 21:25:20 +02:00
|
|
|
}
|
|
|
|
|
2006-07-27 23:10:00 +02:00
|
|
|
while(n > 0 && off < ip->size){
|
2006-08-09 03:09:36 +02:00
|
|
|
bp = bread(ip->dev, bmap(ip, off / BSIZE));
|
2006-07-27 23:10:00 +02:00
|
|
|
n1 = min(n, ip->size - off);
|
2006-08-09 03:09:36 +02:00
|
|
|
n1 = min(n1, BSIZE - (off % BSIZE));
|
|
|
|
memmove(dst, bp->data + (off % BSIZE), n1);
|
2006-07-27 23:10:00 +02:00
|
|
|
n -= n1;
|
|
|
|
off += n1;
|
|
|
|
dst += n1;
|
|
|
|
brelse(bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return target - n;
|
|
|
|
}
|
|
|
|
|
2006-08-24 19:28:01 +02:00
|
|
|
static int
|
2006-08-24 04:44:41 +02:00
|
|
|
newblock(struct inode *ip, uint lbn)
|
|
|
|
{
|
|
|
|
struct buf *inbp;
|
|
|
|
uint *inaddrs;
|
|
|
|
uint b;
|
|
|
|
|
|
|
|
if (lbn < NDIRECT) {
|
|
|
|
if (ip->addrs[lbn] == 0) {
|
|
|
|
b = balloc(ip->dev);
|
|
|
|
if (b <= 0) return -1;
|
|
|
|
ip->addrs[lbn] = b;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ip->addrs[INDIRECT] == 0) {
|
|
|
|
b = balloc(ip->dev);
|
|
|
|
if (b <= 0) return -1;
|
|
|
|
ip->addrs[INDIRECT] = b;
|
|
|
|
}
|
2006-08-24 19:28:01 +02:00
|
|
|
inbp = bread(ip->dev, ip->addrs[INDIRECT]);
|
2006-08-24 04:44:41 +02:00
|
|
|
inaddrs = (uint *) inbp->data;
|
|
|
|
if (inaddrs[lbn - NDIRECT] == 0) {
|
|
|
|
b = balloc(ip->dev);
|
|
|
|
if (b <= 0) return -1;
|
|
|
|
inaddrs[lbn - NDIRECT] = b;
|
2006-08-24 19:28:01 +02:00
|
|
|
bwrite(inbp, ip->addrs[INDIRECT]);
|
2006-08-24 04:44:41 +02:00
|
|
|
}
|
|
|
|
brelse(inbp);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-09 18:04:04 +02:00
|
|
|
int
|
2006-08-11 15:55:18 +02:00
|
|
|
writei(struct inode *ip, char *addr, uint off, uint n)
|
2006-08-09 18:04:04 +02:00
|
|
|
{
|
|
|
|
if (ip->type == T_DEV) {
|
2006-08-09 21:25:20 +02:00
|
|
|
if (ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].d_write)
|
|
|
|
return -1;
|
2006-08-09 18:04:04 +02:00
|
|
|
return devsw[ip->major].d_write (ip->minor, addr, n);
|
2006-08-24 04:44:41 +02:00
|
|
|
} else if (ip->type == T_FILE || ip->type == T_DIR) {
|
2006-08-10 03:28:57 +02:00
|
|
|
struct buf *bp;
|
|
|
|
int r = 0;
|
|
|
|
int m;
|
|
|
|
int lbn;
|
|
|
|
while (r < n) {
|
|
|
|
lbn = off / BSIZE;
|
2006-08-24 04:44:41 +02:00
|
|
|
if (lbn >= MAXFILE) return r;
|
|
|
|
if (newblock(ip, lbn) < 0) {
|
|
|
|
cprintf("newblock failed\n");
|
|
|
|
return r;
|
2006-08-10 03:28:57 +02:00
|
|
|
}
|
2006-08-13 00:03:01 +02:00
|
|
|
m = min(BSIZE - off % BSIZE, n-r);
|
2006-08-24 04:44:41 +02:00
|
|
|
bp = bread(ip->dev, bmap(ip, lbn));
|
2006-08-10 03:28:57 +02:00
|
|
|
memmove (bp->data + off % BSIZE, addr, m);
|
2006-08-24 04:44:41 +02:00
|
|
|
bwrite (bp, bmap(ip, lbn));
|
2006-08-10 03:28:57 +02:00
|
|
|
brelse (bp);
|
|
|
|
r += m;
|
|
|
|
off += m;
|
|
|
|
}
|
|
|
|
if (r > 0) {
|
|
|
|
if (off > ip->size) {
|
2006-08-14 16:13:52 +02:00
|
|
|
if (ip->type == T_DIR) ip->size = ((off / BSIZE) + 1) * BSIZE;
|
|
|
|
else ip->size = off;
|
2006-08-10 03:28:57 +02:00
|
|
|
}
|
|
|
|
iupdate(ip);
|
|
|
|
}
|
|
|
|
return r;
|
2006-08-09 18:04:04 +02:00
|
|
|
} else {
|
|
|
|
panic ("writei: unknown type\n");
|
2006-08-10 04:07:10 +02:00
|
|
|
return 0;
|
2006-08-09 18:04:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
// look up a path name, in one of three modes.
|
|
|
|
// NAMEI_LOOKUP: return locked target inode.
|
|
|
|
// NAMEI_CREATE: return locked parent inode.
|
2006-08-25 03:11:30 +02:00
|
|
|
// 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.
|
2006-08-13 14:22:44 +02:00
|
|
|
// NAMEI_DELETE: return locked parent inode, offset of dirent in *ret_off.
|
|
|
|
// return 0 if name doesn't exist.
|
2006-07-22 00:10:40 +02:00
|
|
|
struct inode *
|
2006-08-25 03:11:30 +02:00
|
|
|
namei(char *path, int mode, uint *ret_off, char **ret_last, struct inode **ret_ip)
|
2006-07-22 00:10:40 +02:00
|
|
|
{
|
|
|
|
struct inode *dp;
|
2006-08-20 01:41:34 +02:00
|
|
|
struct proc *p = curproc[cpu()];
|
2006-08-13 14:22:44 +02:00
|
|
|
char *cp = path, *cp1;
|
2006-07-22 00:10:40 +02:00
|
|
|
uint off, dev;
|
|
|
|
struct buf *bp;
|
|
|
|
struct dirent *ep;
|
2006-08-13 14:22:44 +02:00
|
|
|
int i, atend;
|
2006-07-22 00:10:40 +02:00
|
|
|
unsigned ninum;
|
2006-08-25 03:11:30 +02:00
|
|
|
|
|
|
|
if(mode == NAMEI_DELETE && ret_off == 0)
|
|
|
|
panic("namei no ret_off");
|
|
|
|
if(mode == NAMEI_CREATE && ret_last == 0)
|
|
|
|
panic("namei no ret_last");
|
|
|
|
if(ret_off)
|
|
|
|
*ret_off = 0xffffffff;
|
|
|
|
if(ret_last)
|
|
|
|
*ret_last = 0;
|
|
|
|
if(ret_ip)
|
|
|
|
*ret_ip = 0;
|
|
|
|
|
2006-08-20 01:41:34 +02:00
|
|
|
if (*cp == '/') dp = iget(rootdev, 1);
|
|
|
|
else {
|
|
|
|
dp = p->cwd;
|
|
|
|
iincref(dp);
|
|
|
|
ilock(dp);
|
|
|
|
}
|
2006-07-22 00:10:40 +02:00
|
|
|
|
|
|
|
while(*cp == '/')
|
|
|
|
cp++;
|
|
|
|
|
|
|
|
while(1){
|
2006-08-13 14:22:44 +02:00
|
|
|
if(*cp == '\0'){
|
|
|
|
if(mode == NAMEI_LOOKUP)
|
|
|
|
return dp;
|
2006-08-25 03:11:30 +02:00
|
|
|
if(mode == NAMEI_CREATE && ret_ip){
|
|
|
|
*ret_ip = dp;
|
|
|
|
return 0;
|
|
|
|
}
|
2006-08-13 14:22:44 +02:00
|
|
|
iput(dp);
|
|
|
|
return 0;
|
2006-08-12 03:25:45 +02:00
|
|
|
}
|
2006-07-22 00:10:40 +02:00
|
|
|
|
|
|
|
if(dp->type != T_DIR){
|
|
|
|
iput(dp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-09 03:09:36 +02:00
|
|
|
for(off = 0; off < dp->size; off += BSIZE){
|
|
|
|
bp = bread(dp->dev, bmap(dp, off / BSIZE));
|
2006-07-22 00:10:40 +02:00
|
|
|
for(ep = (struct dirent *) bp->data;
|
2006-08-09 03:09:36 +02:00
|
|
|
ep < (struct dirent *) (bp->data + BSIZE);
|
2006-07-22 00:10:40 +02:00
|
|
|
ep++){
|
|
|
|
if(ep->inum == 0)
|
|
|
|
continue;
|
|
|
|
for(i = 0; i < DIRSIZ && cp[i] != '/' && cp[i]; i++)
|
|
|
|
if(cp[i] != ep->name[i])
|
|
|
|
break;
|
2006-08-26 18:31:05 +02:00
|
|
|
if((cp[i] == '\0' || cp[i] == '/' || i >= DIRSIZ) &&
|
|
|
|
(i >= DIRSIZ || ep->name[i] == '\0')){
|
|
|
|
while(cp[i] != '\0' && cp[i] != '/')
|
|
|
|
i++;
|
2006-08-13 14:22:44 +02:00
|
|
|
off += (uchar*)ep - bp->data;
|
2006-07-22 00:10:40 +02:00
|
|
|
ninum = ep->inum;
|
|
|
|
brelse(bp);
|
|
|
|
cp += i;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
brelse(bp);
|
|
|
|
}
|
2006-08-13 14:22:44 +02:00
|
|
|
atend = 1;
|
|
|
|
for(cp1 = cp; *cp1; cp1++)
|
|
|
|
if(*cp1 == '/')
|
|
|
|
atend = 0;
|
2006-08-25 03:11:30 +02:00
|
|
|
if(mode == NAMEI_CREATE && atend){
|
|
|
|
if(*cp == '\0'){
|
|
|
|
iput(dp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*ret_last = cp;
|
2006-08-13 14:22:44 +02:00
|
|
|
return dp;
|
2006-08-25 03:11:30 +02:00
|
|
|
}
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-07-22 00:10:40 +02:00
|
|
|
iput(dp);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
found:
|
2006-08-13 14:22:44 +02:00
|
|
|
if(mode == NAMEI_DELETE && *cp == '\0'){
|
|
|
|
*ret_off = off;
|
|
|
|
return dp;
|
|
|
|
}
|
2006-07-22 00:10:40 +02:00
|
|
|
dev = dp->dev;
|
|
|
|
iput(dp);
|
|
|
|
dp = iget(dev, ninum);
|
2006-08-12 18:47:48 +02:00
|
|
|
if(dp->type == 0 || dp->nlink < 1)
|
|
|
|
panic("namei");
|
2006-07-22 00:10:40 +02:00
|
|
|
while(*cp == '/')
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
}
|
2006-08-08 20:07:37 +02:00
|
|
|
|
2006-08-13 04:12:44 +02:00
|
|
|
void
|
|
|
|
wdir(struct inode *dp, char *name, uint ino)
|
|
|
|
{
|
|
|
|
uint off;
|
2006-08-13 22:06:42 +02:00
|
|
|
struct dirent de;
|
2006-08-13 04:12:44 +02:00
|
|
|
int i;
|
2006-08-13 22:06:42 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
if(name[0] == '\0')
|
|
|
|
panic("wdir no name");
|
|
|
|
|
2006-08-13 22:06:42 +02:00
|
|
|
for(off = 0; off < dp->size; off += sizeof(de)){
|
|
|
|
if(readi(dp, (char *) &de, off, sizeof(de)) != sizeof(de))
|
|
|
|
panic("wdir read");
|
|
|
|
if(de.inum == 0)
|
|
|
|
break;
|
2006-08-13 07:28:04 +02:00
|
|
|
}
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-08-13 22:06:42 +02:00
|
|
|
de.inum = ino;
|
2006-08-25 03:11:30 +02:00
|
|
|
for(i = 0; i < DIRSIZ && name[i]; i++){
|
|
|
|
if(name[i] == '/')
|
|
|
|
panic("wdir /");
|
2006-08-13 22:06:42 +02:00
|
|
|
de.name[i] = name[i];
|
2006-08-25 03:11:30 +02:00
|
|
|
}
|
2006-08-13 04:12:44 +02:00
|
|
|
for( ; i < DIRSIZ; i++)
|
2006-08-13 22:06:42 +02:00
|
|
|
de.name[i] = '\0';
|
|
|
|
|
|
|
|
if(writei(dp, (char *) &de, off, sizeof(de)) != sizeof(de))
|
|
|
|
panic("wdir write");
|
2006-08-13 04:12:44 +02:00
|
|
|
}
|
|
|
|
|
2006-08-08 20:07:37 +02:00
|
|
|
struct inode *
|
2006-08-12 03:25:45 +02:00
|
|
|
mknod(char *cp, short type, short major, short minor)
|
2006-08-08 20:07:37 +02:00
|
|
|
{
|
2006-08-12 03:25:45 +02:00
|
|
|
struct inode *ip, *dp;
|
2006-08-25 03:11:30 +02:00
|
|
|
char *last;
|
2006-08-08 20:07:37 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
if ((dp = namei(cp, NAMEI_CREATE, 0, &last, 0)) == 0)
|
2006-08-12 03:25:45 +02:00
|
|
|
return 0;
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
ip = mknod1(dp, last, type, major, minor);
|
|
|
|
|
|
|
|
iput(dp);
|
|
|
|
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct inode *
|
|
|
|
mknod1(struct inode *dp, char *name, short type, short major, short minor)
|
|
|
|
{
|
|
|
|
struct inode *ip;
|
|
|
|
|
2006-08-08 20:07:37 +02:00
|
|
|
ip = ialloc(dp->dev, type);
|
2006-08-12 03:25:45 +02:00
|
|
|
if (ip == 0) {
|
|
|
|
iput(dp);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-08-08 20:07:37 +02:00
|
|
|
ip->major = major;
|
|
|
|
ip->minor = minor;
|
2006-08-09 03:19:48 +02:00
|
|
|
ip->size = 0;
|
2006-08-12 18:47:48 +02:00
|
|
|
ip->nlink = 1;
|
2006-08-09 03:19:48 +02:00
|
|
|
|
|
|
|
iupdate (ip); // write new inode to disk
|
2006-08-13 07:28:04 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
wdir(dp, name, ip->inum);
|
|
|
|
|
2006-08-13 00:44:26 +02:00
|
|
|
return ip;
|
2006-08-08 20:07:37 +02:00
|
|
|
}
|
2006-08-11 20:18:38 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
unlink(char *cp)
|
|
|
|
{
|
2006-08-13 14:22:44 +02:00
|
|
|
struct inode *ip, *dp;
|
|
|
|
struct dirent de;
|
2006-08-13 17:51:58 +02:00
|
|
|
uint off, inum, dev;
|
2006-08-11 20:18:38 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
dp = namei(cp, NAMEI_DELETE, &off, 0, 0);
|
|
|
|
if(dp == 0)
|
2006-08-11 20:18:38 +02:00
|
|
|
return -1;
|
|
|
|
|
2006-08-13 17:51:58 +02:00
|
|
|
dev = dp->dev;
|
|
|
|
|
|
|
|
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de) || de.inum == 0)
|
2006-08-13 14:22:44 +02:00
|
|
|
panic("unlink no entry");
|
2006-08-13 17:51:58 +02:00
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
inum = de.inum;
|
2006-08-11 20:18:38 +02:00
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
memset(&de, 0, sizeof(de));
|
|
|
|
if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
|
|
|
|
panic("unlink dir write");
|
2006-08-11 20:18:38 +02:00
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
iupdate(dp);
|
2006-08-11 20:18:38 +02:00
|
|
|
iput(dp);
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-08-13 17:51:58 +02:00
|
|
|
ip = iget(dev, inum);
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-08-24 21:21:19 +02:00
|
|
|
if(ip->nlink < 1)
|
|
|
|
panic("unlink nlink < 1");
|
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
ip->nlink--;
|
|
|
|
|
|
|
|
iupdate(ip);
|
2006-08-13 00:03:01 +02:00
|
|
|
iput(ip);
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-08-11 20:18:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2006-08-13 04:12:44 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
link(char *name1, char *name2)
|
|
|
|
{
|
2006-08-13 14:22:44 +02:00
|
|
|
struct inode *ip, *dp;
|
2006-08-25 03:11:30 +02:00
|
|
|
char *last;
|
2006-08-13 04:12:44 +02:00
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
if ((ip = namei(name1, NAMEI_LOOKUP, 0, 0, 0)) == 0)
|
2006-08-13 14:22:44 +02:00
|
|
|
return -1;
|
|
|
|
if(ip->type == T_DIR){
|
|
|
|
iput(ip);
|
2006-08-13 04:12:44 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
iunlock(ip);
|
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
if ((dp = namei(name2, NAMEI_CREATE, 0, &last, 0)) == 0) {
|
2006-08-13 14:22:44 +02:00
|
|
|
idecref(ip);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(dp->dev != ip->dev){
|
|
|
|
idecref(ip);
|
|
|
|
iput(dp);
|
2006-08-13 04:12:44 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-08-13 14:22:44 +02:00
|
|
|
ilock(ip);
|
2006-08-13 04:12:44 +02:00
|
|
|
ip->nlink += 1;
|
|
|
|
iupdate (ip);
|
|
|
|
|
2006-08-25 03:11:30 +02:00
|
|
|
wdir(dp, last, ip->inum);
|
2006-08-13 04:12:44 +02:00
|
|
|
iput(dp);
|
|
|
|
iput(ip);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|