2006-06-27 14:35:53 +00:00
|
|
|
#include "types.h"
|
2006-08-12 04:33:50 +00:00
|
|
|
#include "stat.h"
|
2006-06-27 14:35:53 +00:00
|
|
|
#include "param.h"
|
|
|
|
#include "x86.h"
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "defs.h"
|
|
|
|
#include "fd.h"
|
2006-07-12 01:48:35 +00:00
|
|
|
#include "spinlock.h"
|
2006-08-09 16:04:04 +00:00
|
|
|
#include "dev.h"
|
2006-08-13 15:51:58 +00:00
|
|
|
#include "fs.h"
|
|
|
|
#include "fsvar.h"
|
2006-07-12 01:48:35 +00:00
|
|
|
|
|
|
|
struct spinlock fd_table_lock;
|
2006-08-09 16:04:04 +00:00
|
|
|
struct devsw devsw[NDEV];
|
2006-06-27 14:35:53 +00:00
|
|
|
|
2006-09-06 18:38:56 +00:00
|
|
|
struct file file[NFILE];
|
2006-06-27 14:35:53 +00:00
|
|
|
|
2006-08-10 22:08:14 +00:00
|
|
|
void
|
|
|
|
fd_init(void)
|
|
|
|
{
|
|
|
|
initlock(&fd_table_lock, "fd_table");
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Allocate a file descriptor number for curproc.
|
2006-06-27 14:35:53 +00:00
|
|
|
int
|
2006-07-17 01:25:22 +00:00
|
|
|
fd_ualloc(void)
|
2006-06-27 14:35:53 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
struct proc *p = curproc[cpu()];
|
|
|
|
for(fd = 0; fd < NOFILE; fd++)
|
2006-09-06 18:38:56 +00:00
|
|
|
if(p->ofile[fd] == 0)
|
2006-06-27 14:35:53 +00:00
|
|
|
return fd;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Allocate a file descriptor structure
|
2006-09-06 18:38:56 +00:00
|
|
|
struct file*
|
2006-07-17 01:25:22 +00:00
|
|
|
fd_alloc(void)
|
2006-06-27 14:35:53 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-07-12 01:48:35 +00:00
|
|
|
acquire(&fd_table_lock);
|
2006-09-06 18:38:56 +00:00
|
|
|
for(i = 0; i < NFILE; i++){
|
|
|
|
if(file[i].type == FD_CLOSED){
|
|
|
|
file[i].type = FD_NONE;
|
|
|
|
file[i].ref = 1;
|
2006-07-12 01:48:35 +00:00
|
|
|
release(&fd_table_lock);
|
2006-09-06 18:38:56 +00:00
|
|
|
return file + i;
|
2006-06-27 14:35:53 +00:00
|
|
|
}
|
|
|
|
}
|
2006-07-12 01:48:35 +00:00
|
|
|
release(&fd_table_lock);
|
2006-06-27 14:35:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Write to file descriptor;
|
|
|
|
// addr is a kernel address, pointing into some process's p->mem.
|
2006-06-27 14:35:53 +00:00
|
|
|
int
|
2006-09-06 18:38:56 +00:00
|
|
|
fd_write(struct file *fd, char *addr, int n)
|
2006-06-27 14:35:53 +00:00
|
|
|
{
|
2006-09-06 18:06:04 +00:00
|
|
|
if(fd->writable == 0)
|
2006-06-27 14:35:53 +00:00
|
|
|
return -1;
|
|
|
|
if(fd->type == FD_PIPE){
|
|
|
|
return pipe_write(fd->pipe, addr, n);
|
2006-09-06 17:27:19 +00:00
|
|
|
} else if(fd->type == FD_FILE) {
|
2006-08-10 01:28:57 +00:00
|
|
|
ilock(fd->ip);
|
2006-09-06 17:27:19 +00:00
|
|
|
int r = writei(fd->ip, addr, fd->off, n);
|
|
|
|
if(r > 0) {
|
2006-08-10 01:28:57 +00:00
|
|
|
fd->off += r;
|
|
|
|
}
|
|
|
|
iunlock(fd->ip);
|
|
|
|
return r;
|
2006-06-27 14:35:53 +00:00
|
|
|
} else {
|
|
|
|
panic("fd_write");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Read from file descriptor.
|
2006-06-27 14:35:53 +00:00
|
|
|
int
|
2006-09-06 18:38:56 +00:00
|
|
|
fd_read(struct file *fd, char *addr, int n)
|
2006-06-27 14:35:53 +00:00
|
|
|
{
|
|
|
|
if(fd->readable == 0)
|
|
|
|
return -1;
|
|
|
|
if(fd->type == FD_PIPE){
|
|
|
|
return pipe_read(fd->pipe, addr, n);
|
2006-08-08 19:58:06 +00:00
|
|
|
} 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 14:35:53 +00:00
|
|
|
} else {
|
|
|
|
panic("fd_read");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2006-07-01 21:26:01 +00:00
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Close file descriptor.
|
2006-07-01 21:26:01 +00:00
|
|
|
void
|
2006-09-06 18:38:56 +00:00
|
|
|
fd_close(struct file *fd)
|
2006-07-01 21:26:01 +00:00
|
|
|
{
|
2006-07-12 01:48:35 +00:00
|
|
|
acquire(&fd_table_lock);
|
|
|
|
|
2006-07-16 02:04:58 +00:00
|
|
|
if(fd->ref < 1 || fd->type == FD_CLOSED)
|
2006-07-01 21:26:01 +00:00
|
|
|
panic("fd_close");
|
2006-07-12 01:48:35 +00:00
|
|
|
|
2006-07-16 02:04:58 +00:00
|
|
|
if(--fd->ref == 0){
|
2006-09-06 18:38:56 +00:00
|
|
|
struct file dummy = *fd;
|
2006-08-13 12:22:44 +00:00
|
|
|
|
|
|
|
fd->ref = 0;
|
|
|
|
fd->type = FD_CLOSED;
|
|
|
|
release(&fd_table_lock);
|
|
|
|
|
|
|
|
if(dummy.type == FD_PIPE){
|
2006-09-06 18:06:04 +00:00
|
|
|
pipe_close(dummy.pipe, dummy.writable);
|
2006-08-13 12:22:44 +00:00
|
|
|
} else if(dummy.type == FD_FILE){
|
|
|
|
idecref(dummy.ip);
|
2006-07-01 21:26:01 +00:00
|
|
|
} else {
|
|
|
|
panic("fd_close");
|
|
|
|
}
|
2006-08-13 12:22:44 +00:00
|
|
|
} else {
|
|
|
|
release(&fd_table_lock);
|
2006-07-01 21:26:01 +00:00
|
|
|
}
|
2006-07-12 01:48:35 +00:00
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Get metadata about file descriptor.
|
2006-08-12 04:33:50 +00:00
|
|
|
int
|
2006-09-06 18:38:56 +00:00
|
|
|
fd_stat(struct file *fd, struct stat *st)
|
2006-08-12 04:33:50 +00:00
|
|
|
{
|
|
|
|
if(fd->type == FD_FILE){
|
|
|
|
ilock(fd->ip);
|
|
|
|
stati(fd->ip, st);
|
|
|
|
iunlock(fd->ip);
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:50:20 +00:00
|
|
|
// Increment file descriptor reference count.
|
2006-07-12 01:48:35 +00:00
|
|
|
void
|
2006-09-06 18:38:56 +00:00
|
|
|
fd_incref(struct file *fd)
|
2006-07-12 01:48:35 +00:00
|
|
|
{
|
|
|
|
acquire(&fd_table_lock);
|
2006-07-16 02:04:58 +00:00
|
|
|
if(fd->ref < 1 || fd->type == FD_CLOSED)
|
|
|
|
panic("fd_incref");
|
|
|
|
fd->ref++;
|
2006-07-12 01:48:35 +00:00
|
|
|
release(&fd_table_lock);
|
2006-07-01 21:26:01 +00:00
|
|
|
}
|