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"
|
2006-07-12 03:48:35 +02:00
|
|
|
#include "spinlock.h"
|
2006-08-09 18:04:04 +02:00
|
|
|
#include "dev.h"
|
2006-08-13 17:51:58 +02:00
|
|
|
#include "fs.h"
|
|
|
|
#include "fsvar.h"
|
2006-07-12 03:48:35 +02:00
|
|
|
|
2006-09-08 15:44:42 +02:00
|
|
|
struct spinlock file_table_lock;
|
2006-08-09 18:04:04 +02:00
|
|
|
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
|
|
|
|
2006-08-11 00:08:14 +02:00
|
|
|
void
|
2006-09-06 20:43:45 +02:00
|
|
|
fileinit(void)
|
2006-08-11 00:08:14 +02:00
|
|
|
{
|
2006-09-08 15:44:42 +02:00
|
|
|
initlock(&file_table_lock, "file_table");
|
2006-08-11 00:08:14 +02:00
|
|
|
}
|
|
|
|
|
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-08-10 03:28:57 +02:00
|
|
|
}
|
2006-09-08 15:44:42 +02:00
|
|
|
iunlock(f->ip);
|
2006-08-10 03:28:57 +02:00
|
|
|
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);
|
2006-08-08 21:58:06 +02:00
|
|
|
if(cc > 0)
|
2006-09-08 15:44:42 +02:00
|
|
|
f->off += cc;
|
|
|
|
iunlock(f->ip);
|
2006-08-08 21:58:06 +02:00
|
|
|
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-07-01 23:26:01 +02:00
|
|
|
|
2006-09-07 16:28:12 +02:00
|
|
|
// Close file f. (Decrement ref count, close when reaches 0.)
|
2006-07-01 23:26:01 +02:00
|
|
|
void
|
2006-09-08 15:44:42 +02:00
|
|
|
fileclose(struct file *f)
|
2006-07-01 23:26:01 +02:00
|
|
|
{
|
2006-09-08 15:44:42 +02:00
|
|
|
acquire(&file_table_lock);
|
2006-07-12 03:48:35 +02:00
|
|
|
|
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-07-12 03:48:35 +02:00
|
|
|
|
2006-09-08 15:44:42 +02:00
|
|
|
if(--f->ref == 0){
|
|
|
|
struct file dummy = *f;
|
2006-08-13 14:22:44 +02:00
|
|
|
|
2006-09-08 15:44:42 +02:00
|
|
|
f->ref = 0;
|
|
|
|
f->type = FD_CLOSED;
|
|
|
|
release(&file_table_lock);
|
2006-08-13 14:22:44 +02:00
|
|
|
|
|
|
|
if(dummy.type == FD_PIPE){
|
2006-09-06 20:06:04 +02:00
|
|
|
pipe_close(dummy.pipe, dummy.writable);
|
2006-08-13 14:22:44 +02:00
|
|
|
} else if(dummy.type == FD_FILE){
|
|
|
|
idecref(dummy.ip);
|
2006-07-01 23:26:01 +02:00
|
|
|
} else {
|
2006-09-06 20:43:45 +02:00
|
|
|
panic("fileclose");
|
2006-07-01 23:26:01 +02:00
|
|
|
}
|
2006-08-13 14:22:44 +02:00
|
|
|
} else {
|
2006-09-08 15:44:42 +02:00
|
|
|
release(&file_table_lock);
|
2006-07-01 23:26:01 +02:00
|
|
|
}
|
2006-07-12 03:48:35 +02:00
|
|
|
}
|
|
|
|
|
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.
|
2006-07-12 03:48:35 +02:00
|
|
|
void
|
2006-09-08 15:44:42 +02:00
|
|
|
fileincref(struct file *f)
|
2006-07-12 03:48:35 +02:00
|
|
|
{
|
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);
|
2006-07-01 23:26:01 +02:00
|
|
|
}
|