- Revise VFS-FS protocol and update VFS/MFS/ISOFS accordingly.
- Clean up MFS by removing old, dead code (backwards compatibility is broken by
the new VFS-FS protocol, anyway) and rewrite other parts. Also, make sure all
functions have proper banners and prototypes.
- VFS should always provide a (syntactically) valid path to the FS; no need for
the FS to do sanity checks when leaving/entering mount points.
- Fix several bugs in MFS:
- Several path lookup bugs in MFS.
- A link can be too big for the path buffer.
- A mountpoint can become inaccessible when the creation of a new inode
fails, because the inode already exists and is a mountpoint.
- Introduce support for supplemental groups.
- Add test 46 to test supplemental group functionality (and removed obsolete
suppl. tests from test 2).
- Clean up VFS (not everything is done yet).
- ISOFS now opens device read-only. This makes the -r flag in the mount command
unnecessary (but will still report to be mounted read-write).
- Introduce PipeFS. PipeFS is a new FS that handles all anonymous and
named pipes. However, named pipes still reside on the (M)FS, as they are part
of the file system on disk. To make this work VFS now has a concept of
'mapped' inodes, which causes read, write, truncate and stat requests to be
redirected to the mapped FS, and all other requests to the original FS.
105 lines
2.9 KiB
C
105 lines
2.9 KiB
C
|
|
|
|
/* This file contains the main directory for the server. It waits for a
|
|
* request and then send a response. */
|
|
|
|
#include "inc.h"
|
|
#include <minix/vfsif.h>
|
|
#include "const.h"
|
|
#include "glo.h"
|
|
|
|
/* Declare some local functions. */
|
|
FORWARD _PROTOTYPE(void init_server, (void) );
|
|
FORWARD _PROTOTYPE(void get_work, (message *m_in) );
|
|
|
|
/*===========================================================================*
|
|
* main *
|
|
*===========================================================================*/
|
|
PUBLIC int main(void) {
|
|
int who_e, ind, error;
|
|
message m;
|
|
|
|
/* Initialize the server, then go to work. */
|
|
init_server();
|
|
|
|
fs_m_in.m_type = FS_READY;
|
|
|
|
if (send(FS_PROC_NR, &fs_m_in) != OK) {
|
|
printf("ISOFS (%d): Error sending login to VFS\n", SELF_E);
|
|
return -1;
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
/* Wait for request message. */
|
|
get_work(&fs_m_in);
|
|
error = OK;
|
|
|
|
caller_uid = -1; /* To trap errors */
|
|
caller_gid = -1;
|
|
|
|
who_e = fs_m_in.m_source; /* source of the request */
|
|
|
|
if (who_e != FS_PROC_NR) { /* If the message is not for us just
|
|
* continue */
|
|
continue;
|
|
}
|
|
|
|
req_nr = fs_m_in.m_type;
|
|
|
|
if (req_nr < VFS_BASE) {
|
|
fs_m_in.m_type += VFS_BASE;
|
|
req_nr = fs_m_in.m_type;
|
|
}
|
|
|
|
ind = req_nr-VFS_BASE;
|
|
|
|
if (ind < 0 || ind >= NREQS) {
|
|
error = EINVAL;
|
|
} else
|
|
error = (*fs_call_vec[ind])(); /* Process the request calling
|
|
* the appropriate function. */
|
|
|
|
fs_m_out.m_type = error;
|
|
reply(who_e, &fs_m_out); /* returns the response to VFS */
|
|
}
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* init_server *
|
|
*===========================================================================*/
|
|
PRIVATE void init_server(void)
|
|
{
|
|
int i;
|
|
|
|
/* Init driver mapping */
|
|
for (i = 0; i < NR_DEVICES; ++i)
|
|
driver_endpoints[i].driver_e = NONE;
|
|
/* SELF_E will contain the id of this process */
|
|
SELF_E = getprocnr();
|
|
/* hash_init(); */ /* Init the table with the ids */
|
|
setenv("TZ","",1); /* Used to calculate the time */
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* get_work *
|
|
*===========================================================================*/
|
|
PRIVATE void get_work(m_in)
|
|
message *m_in; /* pointer to message */
|
|
{
|
|
int s; /* receive status */
|
|
if (OK != (s = receive(ANY, m_in))) /* wait for message */
|
|
panic("ISOFS","receive failed", s);
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* reply *
|
|
*===========================================================================*/
|
|
PUBLIC void reply(who, m_out)
|
|
int who;
|
|
message *m_out; /* report result */
|
|
{
|
|
if (OK != send(who, m_out)) /* send the message */
|
|
printf("ISOFS(%d) was unable to send reply\n", SELF_E);
|
|
}
|