2006-06-27 16:35:53 +02:00
|
|
|
#include "types.h"
|
|
|
|
#include "defs.h"
|
2007-08-28 01:26:33 +02:00
|
|
|
#include "param.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-07-12 03:48:35 +02:00
|
|
|
|
2006-08-09 18:04:04 +02:00
|
|
|
struct devsw devsw[NDEV];
|
2007-08-22 08:01:32 +02:00
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +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;
|
|
|
|
}
|
|
|
|
|
2007-08-14 21:41:56 +02:00
|
|
|
// Increment ref count for file f.
|
2007-08-27 16:35:09 +02:00
|
|
|
struct file*
|
|
|
|
filedup(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)
|
2007-08-27 16:35:09 +02:00
|
|
|
panic("filedup");
|
2007-08-14 21:41:56 +02:00
|
|
|
f->ref++;
|
|
|
|
release(&file_table_lock);
|
2007-08-27 16:35:09 +02:00
|
|
|
return f;
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 16:37:13 +02:00
|
|
|
// Close file f. (Decrement ref count, close when reaches 0.)
|
|
|
|
void
|
|
|
|
fileclose(struct file *f)
|
|
|
|
{
|
|
|
|
struct file ff;
|
|
|
|
|
|
|
|
acquire(&file_table_lock);
|
|
|
|
if(f->ref < 1 || f->type == FD_CLOSED)
|
|
|
|
panic("fileclose");
|
|
|
|
if(--f->ref > 0){
|
|
|
|
release(&file_table_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ff = *f;
|
|
|
|
f->ref = 0;
|
|
|
|
f->type = FD_CLOSED;
|
|
|
|
release(&file_table_lock);
|
|
|
|
|
|
|
|
if(ff.type == FD_PIPE)
|
2007-08-28 06:22:35 +02:00
|
|
|
pipeclose(ff.pipe, ff.writable);
|
2007-08-27 16:37:13 +02:00
|
|
|
else if(ff.type == FD_INODE)
|
|
|
|
iput(ff.ip);
|
|
|
|
else
|
|
|
|
panic("fileclose");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get metadata about file f.
|
|
|
|
int
|
|
|
|
filestat(struct file *f, struct stat *st)
|
|
|
|
{
|
|
|
|
if(f->type == FD_INODE){
|
|
|
|
ilock(f->ip);
|
|
|
|
stati(f->ip, st);
|
|
|
|
iunlock(f->ip);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2007-08-14 21:41:56 +02:00
|
|
|
int r;
|
|
|
|
|
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)
|
2007-08-28 06:22:35 +02:00
|
|
|
return piperead(f->pipe, addr, n);
|
2007-08-22 08:01:32 +02:00
|
|
|
if(f->type == FD_INODE){
|
2007-08-24 22:54:23 +02:00
|
|
|
ilock(f->ip);
|
|
|
|
if((r = readi(f->ip, addr, f->off, n)) > 0)
|
2007-08-14 21:41:56 +02:00
|
|
|
f->off += r;
|
2007-08-24 22:54:23 +02:00
|
|
|
iunlock(f->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
|
|
|
}
|
2006-07-01 23:26:01 +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)
|
2006-07-01 23:26:01 +02:00
|
|
|
{
|
2007-08-14 21:41:56 +02:00
|
|
|
int r;
|
2006-07-12 03:48:35 +02:00
|
|
|
|
2007-08-14 21:41:56 +02:00
|
|
|
if(f->writable == 0)
|
|
|
|
return -1;
|
|
|
|
if(f->type == FD_PIPE)
|
2007-08-28 06:22:35 +02:00
|
|
|
return pipewrite(f->pipe, addr, n);
|
2007-08-22 08:01:32 +02:00
|
|
|
if(f->type == FD_INODE){
|
2007-08-24 22:54:23 +02:00
|
|
|
ilock(f->ip);
|
|
|
|
if((r = writei(f->ip, addr, f->off, n)) > 0)
|
2007-08-14 21:41:56 +02:00
|
|
|
f->off += r;
|
2007-08-24 22:54:23 +02:00
|
|
|
iunlock(f->ip);
|
2007-08-14 21:41:56 +02:00
|
|
|
return r;
|
2006-07-01 23:26:01 +02:00
|
|
|
}
|
2007-08-14 21:41:56 +02:00
|
|
|
panic("filewrite");
|
2006-07-12 03:48:35 +02:00
|
|
|
}
|
|
|
|
|