xv6-cs450/file.c

138 lines
2.5 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"
2006-09-08 15:44:42 +02:00
struct spinlock file_table_lock;
struct devsw devsw[NDEV];
2006-06-27 16:35:53 +02:00
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");
}
2006-09-07 16:13:26 +02:00
// 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;
}
2006-09-07 16:28:12 +02:00
// Write to file f. Addr is kernel address.
2006-06-27 16:35:53 +02:00
int
2006-09-08 15:44:42 +02:00
filewrite(struct file *f, char *addr, int n)
2006-06-27 16:35:53 +02:00
{
2006-09-08 15:44:42 +02:00
if(f->writable == 0)
2006-06-27 16:35:53 +02:00
return -1;
2006-09-08 15:44:42 +02:00
if(f->type == FD_PIPE){
return pipe_write(f->pipe, addr, n);
} else if(f->type == FD_FILE) {
ilock(f->ip);
int r = writei(f->ip, addr, f->off, n);
2006-09-06 19:27:19 +02:00
if(r > 0) {
2006-09-08 15:44:42 +02:00
f->off += r;
}
2006-09-08 15:44:42 +02:00
iunlock(f->ip);
return r;
2006-06-27 16:35:53 +02:00
} else {
2006-09-06 20:43:45 +02:00
panic("filewrite");
2006-06-27 16:35:53 +02:00
return -1;
}
}
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
{
2006-09-08 15:44:42 +02:00
if(f->readable == 0)
2006-06-27 16:35:53 +02:00
return -1;
2006-09-08 15:44:42 +02:00
if(f->type == FD_PIPE){
return pipe_read(f->pipe, addr, n);
} else if(f->type == FD_FILE){
ilock(f->ip);
int cc = readi(f->ip, addr, f->off, n);
if(cc > 0)
2006-09-08 15:44:42 +02:00
f->off += cc;
iunlock(f->ip);
return cc;
2006-06-27 16:35:53 +02:00
} else {
2006-09-06 20:43:45 +02:00
panic("fileread");
2006-06-27 16:35:53 +02:00
return -1;
}
}
2006-09-07 16:28:12 +02:00
// Close file f. (Decrement ref count, close when reaches 0.)
void
2006-09-08 15:44:42 +02:00
fileclose(struct file *f)
{
2006-09-08 15:44:42 +02:00
acquire(&file_table_lock);
2006-09-08 15:44:42 +02:00
if(f->ref < 1 || f->type == FD_CLOSED)
2006-09-06 20:43:45 +02:00
panic("fileclose");
2006-09-08 15:44:42 +02:00
if(--f->ref == 0){
struct file dummy = *f;
2006-09-08 15:44:42 +02:00
f->ref = 0;
f->type = FD_CLOSED;
release(&file_table_lock);
if(dummy.type == FD_PIPE){
2006-09-06 20:06:04 +02:00
pipe_close(dummy.pipe, dummy.writable);
} else if(dummy.type == FD_FILE){
idecref(dummy.ip);
} else {
2006-09-06 20:43:45 +02:00
panic("fileclose");
}
} else {
2006-09-08 15:44:42 +02:00
release(&file_table_lock);
}
}
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
{
2006-09-08 15:44:42 +02:00
if(f->type == FD_FILE){
ilock(f->ip);
stati(f->ip, st);
iunlock(f->ip);
2006-08-12 06:33:50 +02:00
return 0;
} else
return -1;
}
2006-09-07 16:28:12 +02:00
// Increment ref count for file f.
void
2006-09-08 15:44:42 +02:00
fileincref(struct file *f)
{
2006-09-08 15:44:42 +02:00
acquire(&file_table_lock);
if(f->ref < 1 || f->type == FD_CLOSED)
2006-09-06 20:43:45 +02:00
panic("fileincref");
2006-09-08 15:44:42 +02:00
f->ref++;
release(&file_table_lock);
}