xv6-cs450/file.c

140 lines
2.4 KiB
C
Raw Normal View History

2006-06-27 16:35:53 +02:00
#include "types.h"
2006-08-12 06:33:50 +02:00
#include "stat.h"
2006-06-27 16:35:53 +02:00
#include "param.h"
#include "x86.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
2006-09-06 20:40:28 +02:00
#include "file.h"
#include "spinlock.h"
#include "dev.h"
#include "fs.h"
#include "fsvar.h"
struct devsw devsw[NDEV];
struct spinlock file_table_lock;
2006-09-06 20:38:56 +02:00
struct file file[NFILE];
2006-06-27 16:35:53 +02:00
void
2006-09-06 20:43:45 +02:00
fileinit(void)
{
2006-09-08 15:44:42 +02:00
initlock(&file_table_lock, "file_table");
}
// Allocate a file structure.
2006-09-06 20:38:56 +02:00
struct file*
2006-09-06 20:43:45 +02:00
filealloc(void)
2006-06-27 16:35:53 +02:00
{
int i;
2006-09-08 15:44:42 +02:00
acquire(&file_table_lock);
2006-09-06 20:38:56 +02:00
for(i = 0; i < NFILE; i++){
if(file[i].type == FD_CLOSED){
file[i].type = FD_NONE;
file[i].ref = 1;
2006-09-08 15:44:42 +02:00
release(&file_table_lock);
2006-09-06 20:38:56 +02:00
return file + i;
2006-06-27 16:35:53 +02:00
}
}
2006-09-08 15:44:42 +02:00
release(&file_table_lock);
2006-06-27 16:35:53 +02:00
return 0;
}
2007-08-14 21:41:56 +02:00
// Increment ref count for file f.
void
fileincref(struct file *f)
2006-06-27 16:35:53 +02:00
{
2007-08-14 21:41:56 +02:00
acquire(&file_table_lock);
if(f->ref < 1 || f->type == FD_CLOSED)
panic("fileincref");
f->ref++;
release(&file_table_lock);
2006-06-27 16:35:53 +02:00
}
2006-09-07 16:28:12 +02:00
// Read from file f. Addr is kernel address.
2006-06-27 16:35:53 +02:00
int
2006-09-08 15:44:42 +02:00
fileread(struct file *f, char *addr, int n)
2006-06-27 16:35:53 +02:00
{
2007-08-14 21:41:56 +02:00
int r;
struct inode *ip;
2007-08-14 21:41:56 +02:00
2006-09-08 15:44:42 +02:00
if(f->readable == 0)
2006-06-27 16:35:53 +02:00
return -1;
2007-08-14 21:41:56 +02:00
if(f->type == FD_PIPE)
2006-09-08 15:44:42 +02:00
return pipe_read(f->pipe, addr, n);
if(f->type == FD_INODE){
ip = ilock(f->ip);
if((r = readi(ip, addr, f->off, n)) > 0)
2007-08-14 21:41:56 +02:00
f->off += r;
iunlock(ip);
2007-08-14 21:41:56 +02:00
return r;
2006-06-27 16:35:53 +02:00
}
2007-08-14 21:41:56 +02:00
panic("fileread");
2006-06-27 16:35:53 +02:00
}
2007-08-14 21:41:56 +02:00
// Write to file f. Addr is kernel address.
int
filewrite(struct file *f, char *addr, int n)
{
2007-08-14 21:41:56 +02:00
int r;
struct inode *ip;
2007-08-14 21:41:56 +02:00
if(f->writable == 0)
return -1;
if(f->type == FD_PIPE)
return pipe_write(f->pipe, addr, n);
if(f->type == FD_INODE){
ip = ilock(f->ip);
if((r = writei(ip, addr, f->off, n)) > 0)
2007-08-14 21:41:56 +02:00
f->off += r;
iunlock(ip);
2007-08-14 21:41:56 +02:00
return r;
}
2007-08-14 21:41:56 +02:00
panic("filewrite");
}
2006-09-07 16:28:12 +02:00
// Get metadata about file f.
2006-08-12 06:33:50 +02:00
int
2006-09-08 15:44:42 +02:00
filestat(struct file *f, struct stat *st)
2006-08-12 06:33:50 +02:00
{
struct inode *ip;
if(f->type == FD_INODE){
ip = ilock(f->ip);
stati(ip, st);
iunlock(ip);
2006-08-12 06:33:50 +02:00
return 0;
2007-08-14 21:41:56 +02:00
}
return -1;
2006-08-12 06:33:50 +02:00
}
2007-08-14 21:41:56 +02:00
// Close file f. (Decrement ref count, close when reaches 0.)
void
2007-08-14 21:41:56 +02:00
fileclose(struct file *f)
{
2007-08-14 21:41:56 +02:00
struct file ff;
2006-09-08 15:44:42 +02:00
acquire(&file_table_lock);
2007-08-14 21:41:56 +02:00
2006-09-08 15:44:42 +02:00
if(f->ref < 1 || f->type == FD_CLOSED)
2007-08-14 21:41:56 +02:00
panic("fileclose");
if(--f->ref > 0){
release(&file_table_lock);
return;
}
ff = *f;
f->ref = 0;
f->type = FD_CLOSED;
2006-09-08 15:44:42 +02:00
release(&file_table_lock);
2007-08-14 21:41:56 +02:00
if(ff.type == FD_PIPE)
pipe_close(ff.pipe, ff.writable);
else if(ff.type == FD_INODE)
iput(ff.ip);
2007-08-14 21:41:56 +02:00
else
panic("fileclose");
}
2007-08-14 21:41:56 +02:00