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"
struct spinlock fd_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)
{
initlock(&fd_table_lock, "fd_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;
acquire(&fd_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;
release(&fd_table_lock);
2006-09-06 20:38:56 +02:00
return file + i;
2006-06-27 16:35:53 +02:00
}
}
release(&fd_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-06 20:43:45 +02:00
filewrite(struct file *fd, char *addr, int n)
2006-06-27 16:35:53 +02:00
{
2006-09-06 20:06:04 +02:00
if(fd->writable == 0)
2006-06-27 16:35:53 +02:00
return -1;
if(fd->type == FD_PIPE){
return pipe_write(fd->pipe, addr, n);
2006-09-06 19:27:19 +02:00
} else if(fd->type == FD_FILE) {
ilock(fd->ip);
2006-09-06 19:27:19 +02:00
int r = writei(fd->ip, addr, fd->off, n);
if(r > 0) {
fd->off += r;
}
iunlock(fd->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-06 20:43:45 +02:00
fileread(struct file *fd, char *addr, int n)
2006-06-27 16:35:53 +02:00
{
if(fd->readable == 0)
return -1;
if(fd->type == FD_PIPE){
return pipe_read(fd->pipe, addr, n);
} else if(fd->type == FD_FILE){
ilock(fd->ip);
int cc = readi(fd->ip, addr, fd->off, n);
if(cc > 0)
fd->off += cc;
iunlock(fd->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-06 20:43:45 +02:00
fileclose(struct file *fd)
{
acquire(&fd_table_lock);
2006-07-16 04:04:58 +02:00
if(fd->ref < 1 || fd->type == FD_CLOSED)
2006-09-06 20:43:45 +02:00
panic("fileclose");
2006-07-16 04:04:58 +02:00
if(--fd->ref == 0){
2006-09-06 20:38:56 +02:00
struct file dummy = *fd;
fd->ref = 0;
fd->type = FD_CLOSED;
release(&fd_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 {
release(&fd_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-06 20:43:45 +02:00
filestat(struct file *fd, struct stat *st)
2006-08-12 06:33:50 +02:00
{
if(fd->type == FD_FILE){
ilock(fd->ip);
stati(fd->ip, st);
iunlock(fd->ip);
return 0;
} else
return -1;
}
2006-09-07 16:28:12 +02:00
// Increment ref count for file f.
void
2006-09-06 20:43:45 +02:00
fileincref(struct file *fd)
{
acquire(&fd_table_lock);
2006-07-16 04:04:58 +02:00
if(fd->ref < 1 || fd->type == FD_CLOSED)
2006-09-06 20:43:45 +02:00
panic("fileincref");
2006-07-16 04:04:58 +02:00
fd->ref++;
release(&fd_table_lock);
}