2006-06-27 16:35:53 +02:00
|
|
|
#include "types.h"
|
2007-08-28 01:26:33 +02:00
|
|
|
#include "defs.h"
|
2006-06-27 16:35:53 +02:00
|
|
|
#include "param.h"
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
2009-08-08 10:07:30 +02:00
|
|
|
#include "fs.h"
|
2011-08-26 16:08:29 +02:00
|
|
|
#include "file.h"
|
2011-08-29 23:18:40 +02:00
|
|
|
#include "spinlock.h"
|
2006-06-27 16:35:53 +02:00
|
|
|
|
|
|
|
#define PIPESIZE 512
|
|
|
|
|
|
|
|
struct pipe {
|
2006-07-12 03:48:35 +02:00
|
|
|
struct spinlock lock;
|
2006-06-27 16:35:53 +02:00
|
|
|
char data[PIPESIZE];
|
2009-07-13 03:33:37 +02:00
|
|
|
uint nread; // number of bytes read
|
|
|
|
uint nwrite; // number of bytes written
|
|
|
|
int readopen; // read fd is still open
|
|
|
|
int writeopen; // write fd is still open
|
2006-06-27 16:35:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
2007-08-28 06:22:35 +02:00
|
|
|
pipealloc(struct file **f0, struct file **f1)
|
2006-06-27 16:35:53 +02:00
|
|
|
{
|
2007-08-10 18:35:01 +02:00
|
|
|
struct pipe *p;
|
2006-06-27 16:35:53 +02:00
|
|
|
|
2007-08-10 18:35:01 +02:00
|
|
|
p = 0;
|
|
|
|
*f0 = *f1 = 0;
|
2007-08-27 18:06:19 +02:00
|
|
|
if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0)
|
|
|
|
goto bad;
|
2010-08-31 18:54:47 +02:00
|
|
|
if((p = (struct pipe*)kalloc()) == 0)
|
2007-08-27 18:06:19 +02:00
|
|
|
goto bad;
|
2006-07-01 23:26:01 +02:00
|
|
|
p->readopen = 1;
|
|
|
|
p->writeopen = 1;
|
2009-07-13 03:33:37 +02:00
|
|
|
p->nwrite = 0;
|
|
|
|
p->nread = 0;
|
2006-08-11 00:08:14 +02:00
|
|
|
initlock(&p->lock, "pipe");
|
2006-09-08 15:44:42 +02:00
|
|
|
(*f0)->type = FD_PIPE;
|
|
|
|
(*f0)->readable = 1;
|
|
|
|
(*f0)->writable = 0;
|
|
|
|
(*f0)->pipe = p;
|
|
|
|
(*f1)->type = FD_PIPE;
|
|
|
|
(*f1)->readable = 0;
|
|
|
|
(*f1)->writable = 1;
|
|
|
|
(*f1)->pipe = p;
|
2006-06-27 16:35:53 +02:00
|
|
|
return 0;
|
2007-08-14 20:42:34 +02:00
|
|
|
|
2007-08-28 07:00:53 +02:00
|
|
|
//PAGEBREAK: 20
|
2007-08-27 18:06:19 +02:00
|
|
|
bad:
|
2006-06-27 16:35:53 +02:00
|
|
|
if(p)
|
2010-08-31 18:54:47 +02:00
|
|
|
kfree((char*)p);
|
2009-05-31 04:07:51 +02:00
|
|
|
if(*f0)
|
2006-09-08 15:44:42 +02:00
|
|
|
fileclose(*f0);
|
2009-05-31 04:07:51 +02:00
|
|
|
if(*f1)
|
2006-09-08 15:44:42 +02:00
|
|
|
fileclose(*f1);
|
2006-06-27 16:35:53 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-08-28 06:22:35 +02:00
|
|
|
pipeclose(struct pipe *p, int writable)
|
2006-06-27 16:35:53 +02:00
|
|
|
{
|
2006-07-18 21:22:37 +02:00
|
|
|
acquire(&p->lock);
|
2006-09-06 20:06:04 +02:00
|
|
|
if(writable){
|
2006-06-27 16:35:53 +02:00
|
|
|
p->writeopen = 0;
|
2009-07-13 03:33:37 +02:00
|
|
|
wakeup(&p->nread);
|
2007-08-28 20:37:41 +02:00
|
|
|
} else {
|
2006-06-27 16:35:53 +02:00
|
|
|
p->readopen = 0;
|
2009-07-13 03:33:37 +02:00
|
|
|
wakeup(&p->nwrite);
|
2006-07-01 23:26:01 +02:00
|
|
|
}
|
2011-01-11 19:01:13 +01:00
|
|
|
if(p->readopen == 0 && p->writeopen == 0){
|
2008-10-15 19:42:56 +02:00
|
|
|
release(&p->lock);
|
2010-08-31 18:54:47 +02:00
|
|
|
kfree((char*)p);
|
2008-10-15 19:42:56 +02:00
|
|
|
} else
|
|
|
|
release(&p->lock);
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
|
|
|
|
2009-08-08 10:07:30 +02:00
|
|
|
//PAGEBREAK: 40
|
2006-06-27 16:35:53 +02:00
|
|
|
int
|
2007-08-28 06:22:35 +02:00
|
|
|
pipewrite(struct pipe *p, char *addr, int n)
|
2006-06-27 16:35:53 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-07-12 03:48:35 +02:00
|
|
|
acquire(&p->lock);
|
2006-06-27 16:35:53 +02:00
|
|
|
for(i = 0; i < n; i++){
|
2011-01-11 19:01:13 +01:00
|
|
|
while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full
|
2009-08-31 08:02:08 +02:00
|
|
|
if(p->readopen == 0 || proc->killed){
|
2006-07-15 14:03:57 +02:00
|
|
|
release(&p->lock);
|
2006-06-27 16:35:53 +02:00
|
|
|
return -1;
|
2006-07-15 14:03:57 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
wakeup(&p->nread);
|
|
|
|
sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
p->data[p->nwrite++ % PIPESIZE] = addr[i];
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
wakeup(&p->nread); //DOC: pipewrite-wakeup1
|
2007-08-14 21:10:57 +02:00
|
|
|
release(&p->lock);
|
2009-07-13 03:33:37 +02:00
|
|
|
return n;
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-08-28 06:22:35 +02:00
|
|
|
piperead(struct pipe *p, char *addr, int n)
|
2006-06-27 16:35:53 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-07-15 14:03:57 +02:00
|
|
|
acquire(&p->lock);
|
2009-07-13 03:33:37 +02:00
|
|
|
while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty
|
2009-08-31 08:02:08 +02:00
|
|
|
if(proc->killed){
|
2006-07-15 14:03:57 +02:00
|
|
|
release(&p->lock);
|
2007-08-27 18:06:19 +02:00
|
|
|
return -1;
|
2006-07-15 14:03:57 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
sleep(&p->nread, &p->lock); //DOC: piperead-sleep
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
for(i = 0; i < n; i++){ //DOC: piperead-copy
|
|
|
|
if(p->nread == p->nwrite)
|
2006-06-27 16:35:53 +02:00
|
|
|
break;
|
2009-07-13 03:33:37 +02:00
|
|
|
addr[i] = p->data[p->nread++ % PIPESIZE];
|
2006-06-27 16:35:53 +02:00
|
|
|
}
|
2009-07-13 03:33:37 +02:00
|
|
|
wakeup(&p->nwrite); //DOC: piperead-wakeup
|
2007-08-14 21:10:57 +02:00
|
|
|
release(&p->lock);
|
2006-06-27 16:35:53 +02:00
|
|
|
return i;
|
|
|
|
}
|