xref: /xv6-public/fs.c (revision 6670d3b5)
1a5fbfe41SRobert Morris // File system implementation.  Five layers:
2bcca6c6bSrsc //   + Blocks: allocator for raw disk blocks.
3a5fbfe41SRobert Morris //   + Log: crash recovery for multi-step updates.
4bcca6c6bSrsc //   + Files: inode allocator, reading, writing, metadata.
5bcca6c6bSrsc //   + Directories: inode with special contents (list of other inodes!)
6bcca6c6bSrsc //   + Names: paths like /usr/rtm/xv6/fs.c for convenient naming.
7bcca6c6bSrsc //
8eaea18cbSrsc // This file contains the low-level file system manipulation
9eaea18cbSrsc // routines.  The (higher-level) system call implementations
10eaea18cbSrsc // are in sysfile.c.
11bcca6c6bSrsc 
1211a9947fSrtm #include "types.h"
13558ab49fSrsc #include "defs.h"
1411a9947fSrtm #include "param.h"
15558ab49fSrsc #include "stat.h"
1611a9947fSrtm #include "mmu.h"
1711a9947fSrtm #include "proc.h"
1811a9947fSrtm #include "spinlock.h"
19*6670d3b5SFrans Kaashoek #include "sleeplock.h"
2011a9947fSrtm #include "fs.h"
21c24ac5d7SFrans Kaashoek #include "buf.h"
220aef8914SRuss Cox #include "file.h"
2311a9947fSrtm 
24bcca6c6bSrsc #define min(a, b) ((a) < (b) ? (a) : (b))
25fbf91039Srsc static void itrunc(struct inode*);
26b7fed77bSFrans Kaashoek // there should be one superblock per disk device, but we run with
27b7fed77bSFrans Kaashoek // only one device
28b7fed77bSFrans Kaashoek struct superblock sb;
2911a9947fSrtm 
30a505fd66Srsc // Read the super block.
3113a96baeSFrans Kaashoek void
32a505fd66Srsc readsb(int dev, struct superblock *sb)
33a505fd66Srsc {
34a505fd66Srsc   struct buf *bp;
35a505fd66Srsc 
36a505fd66Srsc   bp = bread(dev, 1);
37a505fd66Srsc   memmove(sb, bp->data, sizeof(*sb));
38a505fd66Srsc   brelse(bp);
39a505fd66Srsc }
40a505fd66Srsc 
41a505fd66Srsc // Zero a block.
42a505fd66Srsc static void
43a505fd66Srsc bzero(int dev, int bno)
44a505fd66Srsc {
45a505fd66Srsc   struct buf *bp;
46a505fd66Srsc 
47a505fd66Srsc   bp = bread(dev, bno);
48a505fd66Srsc   memset(bp->data, 0, BSIZE);
495053dd6aSRobert Morris   log_write(bp);
50a505fd66Srsc   brelse(bp);
51a505fd66Srsc }
52a505fd66Srsc 
53bcca6c6bSrsc // Blocks.
545be0039cSrtm 
555053dd6aSRobert Morris // Allocate a zeroed disk block.
5624111398Skaashoek static uint
5724111398Skaashoek balloc(uint dev)
5824111398Skaashoek {
59a505fd66Srsc   int b, bi, m;
6024111398Skaashoek   struct buf *bp;
6124111398Skaashoek 
62a505fd66Srsc   bp = 0;
63a505fd66Srsc   for(b = 0; b < sb.size; b += BPB){
648320d61bSFrans Kaashoek     bp = bread(dev, BBLOCK(b, sb));
65a5fbfe41SRobert Morris     for(bi = 0; bi < BPB && b + bi < sb.size; bi++){
66a505fd66Srsc       m = 1 << (bi % 8);
67a505fd66Srsc       if((bp->data[bi/8] & m) == 0){  // Is block free?
68a5fbfe41SRobert Morris         bp->data[bi/8] |= m;  // Mark block in use.
6913a96baeSFrans Kaashoek         log_write(bp);
7024111398Skaashoek         brelse(bp);
715053dd6aSRobert Morris         bzero(dev, b + bi);
72a505fd66Srsc         return b + bi;
7324111398Skaashoek       }
74a505fd66Srsc     }
7528d9ef04Skaashoek     brelse(bp);
767d4aef6cSrsc   }
777d4aef6cSrsc   panic("balloc: out of blocks");
787d4aef6cSrsc }
7924111398Skaashoek 
80bb207a1dSrsc // Free a disk block.
8128d9ef04Skaashoek static void
8228d9ef04Skaashoek bfree(int dev, uint b)
8328d9ef04Skaashoek {
8428d9ef04Skaashoek   struct buf *bp;
85a505fd66Srsc   int bi, m;
8628d9ef04Skaashoek 
87a505fd66Srsc   readsb(dev, &sb);
888320d61bSFrans Kaashoek   bp = bread(dev, BBLOCK(b, sb));
8928d9ef04Skaashoek   bi = b % BPB;
90a505fd66Srsc   m = 1 << (bi % 8);
91902b13f5Srtm   if((bp->data[bi/8] & m) == 0)
92902b13f5Srtm     panic("freeing free block");
93a5fbfe41SRobert Morris   bp->data[bi/8] &= ~m;
9413a96baeSFrans Kaashoek   log_write(bp);
9528d9ef04Skaashoek   brelse(bp);
9628d9ef04Skaashoek }
9724111398Skaashoek 
986c34f97cSrsc // Inodes.
996c34f97cSrsc //
100a5fbfe41SRobert Morris // An inode describes a single unnamed file.
101a5fbfe41SRobert Morris // The inode disk structure holds metadata: the file's type,
102a5fbfe41SRobert Morris // its size, the number of links referring to it, and the
103a5fbfe41SRobert Morris // list of blocks holding the file's content.
104bcca6c6bSrsc //
1058320d61bSFrans Kaashoek // The inodes are laid out sequentially on disk at
1068320d61bSFrans Kaashoek // sb.startinode. Each inode has a number, indicating its
107a5fbfe41SRobert Morris // position on the disk.
108a5fbfe41SRobert Morris //
109a5fbfe41SRobert Morris // The kernel keeps a cache of in-use inodes in memory
110a5fbfe41SRobert Morris // to provide a place for synchronizing access
111a5fbfe41SRobert Morris // to inodes used by multiple processes. The cached
112a5fbfe41SRobert Morris // inodes include book-keeping information that is
113a5fbfe41SRobert Morris // not stored on disk: ip->ref and ip->flags.
114bcca6c6bSrsc //
11538eee5bcSRobert Morris // An inode and its in-memory represtative go through a
11638eee5bcSRobert Morris // sequence of states before they can be used by the
11738eee5bcSRobert Morris // rest of the file system code.
118bcca6c6bSrsc //
11938eee5bcSRobert Morris // * Allocation: an inode is allocated if its type (on disk)
12038eee5bcSRobert Morris //   is non-zero. ialloc() allocates, iput() frees if
12138eee5bcSRobert Morris //   the link count has fallen to zero.
122eaea18cbSrsc //
12338eee5bcSRobert Morris // * Referencing in cache: an entry in the inode cache
12438eee5bcSRobert Morris //   is free if ip->ref is zero. Otherwise ip->ref tracks
12538eee5bcSRobert Morris //   the number of in-memory pointers to the entry (open
12638eee5bcSRobert Morris //   files and current directories). iget() to find or
12738eee5bcSRobert Morris //   create a cache entry and increment its ref, iput()
12838eee5bcSRobert Morris //   to decrement ref.
129a5fbfe41SRobert Morris //
13038eee5bcSRobert Morris // * Valid: the information (type, size, &c) in an inode
13138eee5bcSRobert Morris //   cache entry is only correct when the I_VALID bit
13238eee5bcSRobert Morris //   is set in ip->flags. ilock() reads the inode from
13338eee5bcSRobert Morris //   the disk and sets I_VALID, while iput() clears
13438eee5bcSRobert Morris //   I_VALID if ip->ref has fallen to zero.
135a5fbfe41SRobert Morris //
13638eee5bcSRobert Morris // * Locked: file system code may only examine and modify
13738eee5bcSRobert Morris //   the information in an inode and its content if it
13838eee5bcSRobert Morris //   has first locked the inode. The I_BUSY flag indicates
13938eee5bcSRobert Morris //   that the inode is locked. ilock() sets I_BUSY,
14038eee5bcSRobert Morris //   while iunlock clears it.
14138eee5bcSRobert Morris //
14238eee5bcSRobert Morris // Thus a typical sequence is:
14338eee5bcSRobert Morris //   ip = iget(dev, inum)
14438eee5bcSRobert Morris //   ilock(ip)
14538eee5bcSRobert Morris //   ... examine and modify ip->xxx ...
14638eee5bcSRobert Morris //   iunlock(ip)
14738eee5bcSRobert Morris //   iput(ip)
14838eee5bcSRobert Morris //
14938eee5bcSRobert Morris // ilock() is separate from iget() so that system calls can
15038eee5bcSRobert Morris // get a long-term reference to an inode (as for an open file)
15138eee5bcSRobert Morris // and only lock it for short periods (e.g., in read()).
15238eee5bcSRobert Morris // The separation also helps avoid deadlock and races during
15338eee5bcSRobert Morris // pathname lookup. iget() increments ip->ref so that the inode
15438eee5bcSRobert Morris // stays cached and pointers to it remain valid.
15538eee5bcSRobert Morris //
15638eee5bcSRobert Morris // Many internal file system functions expect the caller to
15738eee5bcSRobert Morris // have locked the inodes involved; this lets callers create
15838eee5bcSRobert Morris // multi-step atomic operations.
159bcca6c6bSrsc 
160bcca6c6bSrsc struct {
161bcca6c6bSrsc   struct spinlock lock;
162bcca6c6bSrsc   struct inode inode[NINODE];
163bcca6c6bSrsc } icache;
164bcca6c6bSrsc 
165bcca6c6bSrsc void
1668320d61bSFrans Kaashoek iinit(int dev)
167bcca6c6bSrsc {
16834295f46Srsc   initlock(&icache.lock, "icache");
1698320d61bSFrans Kaashoek   readsb(dev, &sb);
170b7fed77bSFrans Kaashoek   cprintf("sb: size %d nblocks %d ninodes %d nlog %d logstart %d\
171b7fed77bSFrans Kaashoek  inodestart %d bmap start %d\n", sb.size, sb.nblocks,
172b7fed77bSFrans Kaashoek           sb.ninodes, sb.nlog, sb.logstart, sb.inodestart,
173b7fed77bSFrans Kaashoek           sb.bmapstart);
174bcca6c6bSrsc }
175bcca6c6bSrsc 
176f9a06440SRuss Cox static struct inode* iget(uint dev, uint inum);
177f9a06440SRuss Cox 
178f9a06440SRuss Cox //PAGEBREAK!
179f9a06440SRuss Cox // Allocate a new inode with the given type on device dev.
180a5fbfe41SRobert Morris // A free inode has a type of zero.
181f9a06440SRuss Cox struct inode*
182f9a06440SRuss Cox ialloc(uint dev, short type)
183f9a06440SRuss Cox {
184f9a06440SRuss Cox   int inum;
185f9a06440SRuss Cox   struct buf *bp;
186f9a06440SRuss Cox   struct dinode *dip;
187a5fbfe41SRobert Morris 
188a5fbfe41SRobert Morris   for(inum = 1; inum < sb.ninodes; inum++){
1898320d61bSFrans Kaashoek     bp = bread(dev, IBLOCK(inum, sb));
190f9a06440SRuss Cox     dip = (struct dinode*)bp->data + inum%IPB;
191f9a06440SRuss Cox     if(dip->type == 0){  // a free inode
192f9a06440SRuss Cox       memset(dip, 0, sizeof(*dip));
193f9a06440SRuss Cox       dip->type = type;
19413a96baeSFrans Kaashoek       log_write(bp);   // mark it allocated on the disk
195f9a06440SRuss Cox       brelse(bp);
196f9a06440SRuss Cox       return iget(dev, inum);
197f9a06440SRuss Cox     }
198f9a06440SRuss Cox     brelse(bp);
199f9a06440SRuss Cox   }
200f9a06440SRuss Cox   panic("ialloc: no inodes");
201f9a06440SRuss Cox }
202f9a06440SRuss Cox 
20338eee5bcSRobert Morris // Copy a modified in-memory inode to disk.
204f9a06440SRuss Cox void
205f9a06440SRuss Cox iupdate(struct inode *ip)
206f9a06440SRuss Cox {
207f9a06440SRuss Cox   struct buf *bp;
208f9a06440SRuss Cox   struct dinode *dip;
209f9a06440SRuss Cox 
2108320d61bSFrans Kaashoek   bp = bread(ip->dev, IBLOCK(ip->inum, sb));
211f9a06440SRuss Cox   dip = (struct dinode*)bp->data + ip->inum%IPB;
212f9a06440SRuss Cox   dip->type = ip->type;
213f9a06440SRuss Cox   dip->major = ip->major;
214f9a06440SRuss Cox   dip->minor = ip->minor;
215f9a06440SRuss Cox   dip->nlink = ip->nlink;
216f9a06440SRuss Cox   dip->size = ip->size;
217f9a06440SRuss Cox   memmove(dip->addrs, ip->addrs, sizeof(ip->addrs));
21813a96baeSFrans Kaashoek   log_write(bp);
219f9a06440SRuss Cox   brelse(bp);
220f9a06440SRuss Cox }
221f9a06440SRuss Cox 
222f5527388Srsc // Find the inode with number inum on device dev
22338eee5bcSRobert Morris // and return the in-memory copy. Does not lock
22438eee5bcSRobert Morris // the inode and does not read it from disk.
22507090dd7Srsc static struct inode*
22611a9947fSrtm iget(uint dev, uint inum)
22711a9947fSrtm {
228bcca6c6bSrsc   struct inode *ip, *empty;
22911a9947fSrtm 
230bcca6c6bSrsc   acquire(&icache.lock);
23111a9947fSrtm 
23238eee5bcSRobert Morris   // Is the inode already cached?
233bcca6c6bSrsc   empty = 0;
234bcca6c6bSrsc   for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
2350d6bbd31Srsc     if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){
2360d6bbd31Srsc       ip->ref++;
237bcca6c6bSrsc       release(&icache.lock);
23807090dd7Srsc       return ip;
23911a9947fSrtm     }
240bcca6c6bSrsc     if(empty == 0 && ip->ref == 0)    // Remember empty slot.
241bcca6c6bSrsc       empty = ip;
24211a9947fSrtm   }
24311a9947fSrtm 
24438eee5bcSRobert Morris   // Recycle an inode cache entry.
245bcca6c6bSrsc   if(empty == 0)
24632eea766Srsc     panic("iget: no inodes");
24711a9947fSrtm 
248bcca6c6bSrsc   ip = empty;
249bcca6c6bSrsc   ip->dev = dev;
250bcca6c6bSrsc   ip->inum = inum;
251bcca6c6bSrsc   ip->ref = 1;
252f32f3638Srsc   ip->flags = 0;
253bcca6c6bSrsc   release(&icache.lock);
25411a9947fSrtm 
25507090dd7Srsc   return ip;
256f32f3638Srsc }
257f32f3638Srsc 
258eaea18cbSrsc // Increment reference count for ip.
259eaea18cbSrsc // Returns ip to enable ip = idup(ip1) idiom.
26007090dd7Srsc struct inode*
26107090dd7Srsc idup(struct inode *ip)
262f32f3638Srsc {
263eaea18cbSrsc   acquire(&icache.lock);
264eaea18cbSrsc   ip->ref++;
265eaea18cbSrsc   release(&icache.lock);
26607090dd7Srsc   return ip;
267f32f3638Srsc }
268f32f3638Srsc 
2691ddfbbb1SFrans Kaashoek // Lock the given inode.
27038eee5bcSRobert Morris // Reads the inode from disk if necessary.
27107090dd7Srsc void
27207090dd7Srsc ilock(struct inode *ip)
273f32f3638Srsc {
274f32f3638Srsc   struct buf *bp;
275f32f3638Srsc   struct dinode *dip;
276eaea18cbSrsc 
27707090dd7Srsc   if(ip == 0 || ip->ref < 1)
27807090dd7Srsc     panic("ilock");
279f32f3638Srsc 
280f32f3638Srsc   acquire(&icache.lock);
2811ddfbbb1SFrans Kaashoek   while(ip->flags & I_BUSY)
2821ddfbbb1SFrans Kaashoek     sleep(ip, &icache.lock);
2831ddfbbb1SFrans Kaashoek   ip->flags |= I_BUSY;
284f32f3638Srsc   release(&icache.lock);
285f32f3638Srsc 
286f32f3638Srsc   if(!(ip->flags & I_VALID)){
2878320d61bSFrans Kaashoek     bp = bread(ip->dev, IBLOCK(ip->inum, sb));
2883341e30fSrsc     dip = (struct dinode*)bp->data + ip->inum%IPB;
289bcca6c6bSrsc     ip->type = dip->type;
290bcca6c6bSrsc     ip->major = dip->major;
291bcca6c6bSrsc     ip->minor = dip->minor;
292bcca6c6bSrsc     ip->nlink = dip->nlink;
293bcca6c6bSrsc     ip->size = dip->size;
294bcca6c6bSrsc     memmove(ip->addrs, dip->addrs, sizeof(ip->addrs));
29511a9947fSrtm     brelse(bp);
296f32f3638Srsc     ip->flags |= I_VALID;
297eaea18cbSrsc     if(ip->type == 0)
298eaea18cbSrsc       panic("ilock: no type");
29911a9947fSrtm   }
300bcca6c6bSrsc }
301bcca6c6bSrsc 
302bcca6c6bSrsc // Unlock the given inode.
30307090dd7Srsc void
304bcca6c6bSrsc iunlock(struct inode *ip)
305bcca6c6bSrsc {
3061ddfbbb1SFrans Kaashoek   if(ip == 0 || !(ip->flags & I_BUSY) || ip->ref < 1)
307bcca6c6bSrsc     panic("iunlock");
308bcca6c6bSrsc 
309bcca6c6bSrsc   acquire(&icache.lock);
3101ddfbbb1SFrans Kaashoek   ip->flags &= ~I_BUSY;
3111ddfbbb1SFrans Kaashoek   wakeup(ip);
312bcca6c6bSrsc   release(&icache.lock);
313bcca6c6bSrsc }
314bcca6c6bSrsc 
31538eee5bcSRobert Morris // Drop a reference to an in-memory inode.
31638eee5bcSRobert Morris // If that was the last reference, the inode cache entry can
31738eee5bcSRobert Morris // be recycled.
31838eee5bcSRobert Morris // If that was the last reference and the inode has no links
31938eee5bcSRobert Morris // to it, free the inode (and its content) on disk.
3202c565472SRobert Morris // All calls to iput() must be inside a transaction in
3212c565472SRobert Morris // case it has to free the inode.
322bcca6c6bSrsc void
32307090dd7Srsc iput(struct inode *ip)
324bcca6c6bSrsc {
325f32f3638Srsc   acquire(&icache.lock);
326f32f3638Srsc   if(ip->ref == 1 && (ip->flags & I_VALID) && ip->nlink == 0){
327e2b4583dSRobert Morris     // inode has no links and no other references: truncate and free.
3281ddfbbb1SFrans Kaashoek     if(ip->flags & I_BUSY)
329eaea18cbSrsc       panic("iput busy");
3301ddfbbb1SFrans Kaashoek     ip->flags |= I_BUSY;
331f32f3638Srsc     release(&icache.lock);
332f32f3638Srsc     itrunc(ip);
333f32f3638Srsc     ip->type = 0;
334f32f3638Srsc     iupdate(ip);
335f32f3638Srsc     acquire(&icache.lock);
336ce72cadbSrsc     ip->flags = 0;
3378970df0cSrsc     wakeup(ip);
338f32f3638Srsc   }
339f32f3638Srsc   ip->ref--;
340f32f3638Srsc   release(&icache.lock);
341bcca6c6bSrsc }
342bcca6c6bSrsc 
3437895178dSrsc // Common idiom: unlock, then put.
34407090dd7Srsc void
34507090dd7Srsc iunlockput(struct inode *ip)
34607090dd7Srsc {
34707090dd7Srsc   iunlock(ip);
34807090dd7Srsc   iput(ip);
34907090dd7Srsc }
35007090dd7Srsc 
3518d2e9a48Srsc //PAGEBREAK!
35238eee5bcSRobert Morris // Inode content
353bcca6c6bSrsc //
35438eee5bcSRobert Morris // The content (data) associated with each inode is stored
35538eee5bcSRobert Morris // in blocks on the disk. The first NDIRECT block numbers
3567895178dSrsc // are listed in ip->addrs[].  The next NINDIRECT blocks are
35738eee5bcSRobert Morris // listed in block ip->addrs[NDIRECT].
3589d3fb671Srtm 
359bb207a1dSrsc // Return the disk block address of the nth block in inode ip.
36013ae8808Srsc // If there is no such block, bmap allocates one.
361eaea18cbSrsc static uint
36213ae8808Srsc bmap(struct inode *ip, uint bn)
36322bac2cbSkaashoek {
364bcca6c6bSrsc   uint addr, *a;
365bcca6c6bSrsc   struct buf *bp;
36622bac2cbSkaashoek 
367ea2909b6Skaashoek   if(bn < NDIRECT){
36813ae8808Srsc     if((addr = ip->addrs[bn]) == 0)
369bcca6c6bSrsc       ip->addrs[bn] = addr = balloc(ip->dev);
370bcca6c6bSrsc     return addr;
371bcca6c6bSrsc   }
372bcca6c6bSrsc   bn -= NDIRECT;
373bcca6c6bSrsc 
374bcca6c6bSrsc   if(bn < NINDIRECT){
375bcca6c6bSrsc     // Load indirect block, allocating if necessary.
37613ae8808Srsc     if((addr = ip->addrs[NDIRECT]) == 0)
377ba6cd8a6Srsc       ip->addrs[NDIRECT] = addr = balloc(ip->dev);
378bcca6c6bSrsc     bp = bread(ip->dev, addr);
379bcca6c6bSrsc     a = (uint*)bp->data;
380bcca6c6bSrsc     if((addr = a[bn]) == 0){
381bcca6c6bSrsc       a[bn] = addr = balloc(ip->dev);
38213a96baeSFrans Kaashoek       log_write(bp);
383bcca6c6bSrsc     }
384bcca6c6bSrsc     brelse(bp);
385bcca6c6bSrsc     return addr;
38622bac2cbSkaashoek   }
38722bac2cbSkaashoek 
388bcca6c6bSrsc   panic("bmap: out of range");
389bcca6c6bSrsc }
390bcca6c6bSrsc 
391bcca6c6bSrsc // Truncate inode (discard contents).
39238eee5bcSRobert Morris // Only called when the inode has no links
39338eee5bcSRobert Morris // to it (no directory entries referring to it)
39438eee5bcSRobert Morris // and has no in-memory reference to it (is
39538eee5bcSRobert Morris // not an open file or current directory).
396fbf91039Srsc static void
3972aa4c3bcSrtm itrunc(struct inode *ip)
39822bac2cbSkaashoek {
399ea2909b6Skaashoek   int i, j;
400bcca6c6bSrsc   struct buf *bp;
4017d4aef6cSrsc   uint *a;
40222bac2cbSkaashoek 
403bcca6c6bSrsc   for(i = 0; i < NDIRECT; i++){
404bcca6c6bSrsc     if(ip->addrs[i]){
40522bac2cbSkaashoek       bfree(ip->dev, ip->addrs[i]);
40622bac2cbSkaashoek       ip->addrs[i] = 0;
40722bac2cbSkaashoek     }
40822bac2cbSkaashoek   }
409bcca6c6bSrsc 
410ba6cd8a6Srsc   if(ip->addrs[NDIRECT]){
411ba6cd8a6Srsc     bp = bread(ip->dev, ip->addrs[NDIRECT]);
412bcca6c6bSrsc     a = (uint*)bp->data;
413bcca6c6bSrsc     for(j = 0; j < NINDIRECT; j++){
414bcca6c6bSrsc       if(a[j])
415bcca6c6bSrsc         bfree(ip->dev, a[j]);
416bcca6c6bSrsc     }
417bcca6c6bSrsc     brelse(bp);
418ba6cd8a6Srsc     bfree(ip->dev, ip->addrs[NDIRECT]);
419ba6cd8a6Srsc     ip->addrs[NDIRECT] = 0;
420bcca6c6bSrsc   }
421bcca6c6bSrsc 
42222bac2cbSkaashoek   ip->size = 0;
42322bac2cbSkaashoek   iupdate(ip);
42422bac2cbSkaashoek }
42522bac2cbSkaashoek 
426bb207a1dSrsc // Copy stat information from inode.
427e958c538Skaashoek void
4281f544842Skaashoek stati(struct inode *ip, struct stat *st)
4291f544842Skaashoek {
4301dca3afbSrsc   st->dev = ip->dev;
4311dca3afbSrsc   st->ino = ip->inum;
4321dca3afbSrsc   st->type = ip->type;
4331dca3afbSrsc   st->nlink = ip->nlink;
4341dca3afbSrsc   st->size = ip->size;
4351f544842Skaashoek }
4361f544842Skaashoek 
437eaea18cbSrsc //PAGEBREAK!
438bb207a1dSrsc // Read data from inode.
439c59361f1Srtm int
44017a85657Srtm readi(struct inode *ip, char *dst, uint off, uint n)
441c59361f1Srtm {
442bcca6c6bSrsc   uint tot, m;
443c59361f1Srtm   struct buf *bp;
444c59361f1Srtm 
445939f9edeSkaashoek   if(ip->type == T_DEV){
4461dca3afbSrsc     if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read)
447939f9edeSkaashoek       return -1;
448d844f0f9Srsc     return devsw[ip->major].read(ip, dst, n);
449939f9edeSkaashoek   }
450939f9edeSkaashoek 
4517895178dSrsc   if(off > ip->size || off + n < off)
452bcca6c6bSrsc     return -1;
453bcca6c6bSrsc   if(off + n > ip->size)
454bcca6c6bSrsc     n = ip->size - off;
455bcca6c6bSrsc 
456bcca6c6bSrsc   for(tot=0; tot<n; tot+=m, off+=m, dst+=m){
45713ae8808Srsc     bp = bread(ip->dev, bmap(ip, off/BSIZE));
458bcca6c6bSrsc     m = min(n - tot, BSIZE - off%BSIZE);
459*6670d3b5SFrans Kaashoek     /*
460*6670d3b5SFrans Kaashoek     cprintf("data off %d:\n", off);
461*6670d3b5SFrans Kaashoek     for (int j = 0; j < min(m, 10); j++) {
462*6670d3b5SFrans Kaashoek       cprintf("%x ", bp->data[off%BSIZE+j]);
463*6670d3b5SFrans Kaashoek     }
464*6670d3b5SFrans Kaashoek     cprintf("\n");
465*6670d3b5SFrans Kaashoek     */
466bcca6c6bSrsc     memmove(dst, bp->data + off%BSIZE, m);
467c59361f1Srtm     brelse(bp);
468c59361f1Srtm   }
469bcca6c6bSrsc   return n;
470ea2909b6Skaashoek }
471ea2909b6Skaashoek 
472eaea18cbSrsc // PAGEBREAK!
473bb207a1dSrsc // Write data to inode.
474ea2909b6Skaashoek int
475bcca6c6bSrsc writei(struct inode *ip, char *src, uint off, uint n)
4766fa5ffb5Skaashoek {
477bcca6c6bSrsc   uint tot, m;
4787d4aef6cSrsc   struct buf *bp;
4797d4aef6cSrsc 
4806fa5ffb5Skaashoek   if(ip->type == T_DEV){
4811dca3afbSrsc     if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write)
482939f9edeSkaashoek       return -1;
483d844f0f9Srsc     return devsw[ip->major].write(ip, src, n);
4847d4aef6cSrsc   }
4857d4aef6cSrsc 
4861ddfbbb1SFrans Kaashoek   if(off > ip->size || off + n < off)
487bcca6c6bSrsc     return -1;
4881ddfbbb1SFrans Kaashoek   if(off + n > MAXFILE*BSIZE)
4892e590463SRobert Morris     return -1;
490bcca6c6bSrsc 
491bcca6c6bSrsc   for(tot=0; tot<n; tot+=m, off+=m, src+=m){
49213ae8808Srsc     bp = bread(ip->dev, bmap(ip, off/BSIZE));
493bcca6c6bSrsc     m = min(n - tot, BSIZE - off%BSIZE);
494bcca6c6bSrsc     memmove(bp->data + off%BSIZE, src, m);
4952e590463SRobert Morris     log_write(bp);
49628d9ef04Skaashoek     brelse(bp);
49728d9ef04Skaashoek   }
498bcca6c6bSrsc 
499bcca6c6bSrsc   if(n > 0 && off > ip->size){
50048b82470Srsc     ip->size = off;
50128d9ef04Skaashoek     iupdate(ip);
50228d9ef04Skaashoek   }
503bcca6c6bSrsc   return n;
5046fa5ffb5Skaashoek }
5056fa5ffb5Skaashoek 
506eaea18cbSrsc //PAGEBREAK!
507bcca6c6bSrsc // Directories
508bcca6c6bSrsc 
509eaea18cbSrsc int
510fbf91039Srsc namecmp(const char *s, const char *t)
511fbf91039Srsc {
512766ba5ccSrsc   return strncmp(s, t, DIRSIZ);
513fbf91039Srsc }
514fbf91039Srsc 
515bcca6c6bSrsc // Look for a directory entry in a directory.
516eaea18cbSrsc // If found, set *poff to byte offset of entry.
51707090dd7Srsc struct inode*
518fbf91039Srsc dirlookup(struct inode *dp, char *name, uint *poff)
519bcca6c6bSrsc {
520f32f3638Srsc   uint off, inum;
521327cc21fSRobert Morris   struct dirent de;
522bcca6c6bSrsc 
523bcca6c6bSrsc   if(dp->type != T_DIR)
52420365348Srtm     panic("dirlookup not DIR");
525bcca6c6bSrsc 
526327cc21fSRobert Morris   for(off = 0; off < dp->size; off += sizeof(de)){
527327cc21fSRobert Morris     if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
528327cc21fSRobert Morris       panic("dirlink read");
529327cc21fSRobert Morris     if(de.inum == 0)
530bcca6c6bSrsc       continue;
531327cc21fSRobert Morris     if(namecmp(name, de.name) == 0){
532bcca6c6bSrsc       // entry matches path element
533e2a620daSrsc       if(poff)
534327cc21fSRobert Morris         *poff = off;
535327cc21fSRobert Morris       inum = de.inum;
536f32f3638Srsc       return iget(dp->dev, inum);
537f32f3638Srsc     }
538f32f3638Srsc   }
539327cc21fSRobert Morris 
540bcca6c6bSrsc   return 0;
541bcca6c6bSrsc }
542bcca6c6bSrsc 
54313ae8808Srsc // Write a new directory entry (name, inum) into the directory dp.
544eaea18cbSrsc int
54513ae8808Srsc dirlink(struct inode *dp, char *name, uint inum)
546bcca6c6bSrsc {
547e2a620daSrsc   int off;
548bcca6c6bSrsc   struct dirent de;
54907090dd7Srsc   struct inode *ip;
550f32f3638Srsc 
551eaea18cbSrsc   // Check that name is not present.
55207090dd7Srsc   if((ip = dirlookup(dp, name, 0)) != 0){
55307090dd7Srsc     iput(ip);
554f32f3638Srsc     return -1;
555f32f3638Srsc   }
556bcca6c6bSrsc 
557bcca6c6bSrsc   // Look for an empty dirent.
558bcca6c6bSrsc   for(off = 0; off < dp->size; off += sizeof(de)){
559bcca6c6bSrsc     if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
5607895178dSrsc       panic("dirlink read");
561bcca6c6bSrsc     if(de.inum == 0)
562bcca6c6bSrsc       break;
563bcca6c6bSrsc   }
564bcca6c6bSrsc 
565766ba5ccSrsc   strncpy(de.name, name, DIRSIZ);
56613ae8808Srsc   de.inum = inum;
567bcca6c6bSrsc   if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
5687895178dSrsc     panic("dirlink");
569f32f3638Srsc 
570f32f3638Srsc   return 0;
571bcca6c6bSrsc }
572bcca6c6bSrsc 
5738d2e9a48Srsc //PAGEBREAK!
574bcca6c6bSrsc // Paths
575bcca6c6bSrsc 
576eaea18cbSrsc // Copy the next path element from path into name.
577eaea18cbSrsc // Return a pointer to the element following the copied one.
578eaea18cbSrsc // The returned path has no leading slashes,
579eaea18cbSrsc // so the caller can check *path=='\0' to see if the name is the last one.
580eaea18cbSrsc // If no name to remove, return 0.
581ab5c2dbbSrsc //
582ab5c2dbbSrsc // Examples:
583eaea18cbSrsc //   skipelem("a/bb/c", name) = "bb/c", setting name = "a"
5847895178dSrsc //   skipelem("///a//bb", name) = "bb", setting name = "a"
58513ae8808Srsc //   skipelem("a", name) = "", setting name = "a"
586eaea18cbSrsc //   skipelem("", name) = skipelem("////", name) = 0
587ab5c2dbbSrsc //
588ab5c2dbbSrsc static char*
589fbf91039Srsc skipelem(char *path, char *name)
590ab5c2dbbSrsc {
591fbf91039Srsc   char *s;
592fbf91039Srsc   int len;
593fbf91039Srsc 
594ab5c2dbbSrsc   while(*path == '/')
595ab5c2dbbSrsc     path++;
596ab5c2dbbSrsc   if(*path == 0)
597ab5c2dbbSrsc     return 0;
598fbf91039Srsc   s = path;
599ab5c2dbbSrsc   while(*path != '/' && *path != 0)
600ab5c2dbbSrsc     path++;
601fbf91039Srsc   len = path - s;
602fbf91039Srsc   if(len >= DIRSIZ)
603fbf91039Srsc     memmove(name, s, DIRSIZ);
604fbf91039Srsc   else {
605fbf91039Srsc     memmove(name, s, len);
606fbf91039Srsc     name[len] = 0;
607fbf91039Srsc   }
608ab5c2dbbSrsc   while(*path == '/')
609ab5c2dbbSrsc     path++;
610ab5c2dbbSrsc   return path;
611ab5c2dbbSrsc }
612ab5c2dbbSrsc 
613eaea18cbSrsc // Look up and return the inode for a path name.
614bf2932a6Srsc // If parent != 0, return the inode for the parent and copy the final
615bf2932a6Srsc // path element into name, which must have room for DIRSIZ bytes.
6162c565472SRobert Morris // Must be called inside a transaction since it calls iput().
61707090dd7Srsc static struct inode*
618f9a06440SRuss Cox namex(char *path, int nameiparent, char *name)
6199d3fb671Srtm {
62007090dd7Srsc   struct inode *ip, *next;
6219d3fb671Srtm 
622ab5c2dbbSrsc   if(*path == '/')
6232ce40d70Srtm     ip = iget(ROOTDEV, ROOTINO);
624f32f3638Srsc   else
62548755214SRuss Cox     ip = idup(proc->cwd);
6269d3fb671Srtm 
627fbf91039Srsc   while((path = skipelem(path, name)) != 0){
62807090dd7Srsc     ilock(ip);
62907090dd7Srsc     if(ip->type != T_DIR){
63007090dd7Srsc       iunlockput(ip);
631eaea18cbSrsc       return 0;
632eaea18cbSrsc     }
633f9a06440SRuss Cox     if(nameiparent && *path == '\0'){
634e2a620daSrsc       // Stop one level early.
63507090dd7Srsc       iunlock(ip);
63607090dd7Srsc       return ip;
637ab5c2dbbSrsc     }
6387895178dSrsc     if((next = dirlookup(ip, name, 0)) == 0){
63907090dd7Srsc       iunlockput(ip);
640eaea18cbSrsc       return 0;
641eaea18cbSrsc     }
64207090dd7Srsc     iunlockput(ip);
64307090dd7Srsc     ip = next;
644ab5c2dbbSrsc   }
645f9a06440SRuss Cox   if(nameiparent){
64607090dd7Srsc     iput(ip);
6475051da6dSrtm     return 0;
64820365348Srtm   }
64907090dd7Srsc   return ip;
6500633b971Skaashoek }
6519d3fb671Srtm 
6527895178dSrsc struct inode*
6537895178dSrsc namei(char *path)
6547895178dSrsc {
6557895178dSrsc   char name[DIRSIZ];
65613ae8808Srsc   return namex(path, 0, name);
6577895178dSrsc }
658bf2932a6Srsc 
6597895178dSrsc struct inode*
6607895178dSrsc nameiparent(char *path, char *name)
6617895178dSrsc {
66213ae8808Srsc   return namex(path, 1, name);
6637895178dSrsc }
664