35a108b911
this change - makes panic() variadic, doing full printf() formatting - no more NO_NUM, and no more separate printf() statements needed to print extra info (or something in hex) before panicing - unifies panic() - same panic() name and usage for everyone - vm, kernel and rest have different names/syntax currently in order to implement their own luxuries, but no longer - throws out the 1st argument, to make source less noisy. the panic() in syslib retrieves the server name from the kernel so it should be clear enough who is panicing; e.g. panic("sigaction failed: %d", errno); looks like: at_wini(73130): panic: sigaction failed: 0 syslib:panic.c: stacktrace: 0x74dc 0x2025 0x100a - throws out report() - printf() is more convenient and powerful - harmonizes/fixes the use of panic() - there were a few places that used printf-style formatting (didn't work) and newlines (messes up the formatting) in panic() - throws out a few per-server panic() functions - cleans up a tie-in of tty with panic() merging printf() and panic() statements to be done incrementally.
201 lines
5.1 KiB
C
201 lines
5.1 KiB
C
#include "inc.h"
|
|
#include <assert.h>
|
|
#include <minix/dmap.h>
|
|
#include <minix/endpoint.h>
|
|
#include <minix/vfsif.h>
|
|
#include "fs.h"
|
|
#include "buf.h"
|
|
#include "inode.h"
|
|
#include "drivers.h"
|
|
|
|
|
|
/* Declare some local functions. */
|
|
FORWARD _PROTOTYPE(void get_work, (message *m_in) );
|
|
FORWARD _PROTOTYPE(void cch_check, (void) );
|
|
|
|
/* SEF functions and variables. */
|
|
FORWARD _PROTOTYPE( void sef_local_startup, (void) );
|
|
FORWARD _PROTOTYPE( int sef_cb_init_fresh, (int type, sef_init_info_t *info) );
|
|
|
|
/*===========================================================================*
|
|
* main *
|
|
*===========================================================================*/
|
|
PUBLIC int main(int argc, char *argv[])
|
|
{
|
|
/* This is the main routine of this service. The main loop consists of
|
|
* three major activities: getting new work, processing the work, and
|
|
* sending the reply. The loop never terminates, unless a panic occurs.
|
|
*/
|
|
int error, ind;
|
|
message m;
|
|
|
|
/* SEF local startup. */
|
|
env_setargs(argc, argv);
|
|
sef_local_startup();
|
|
|
|
while(!unmountdone || !exitsignaled) {
|
|
endpoint_t src;
|
|
|
|
/* Wait for request message. */
|
|
get_work(&fs_m_in);
|
|
|
|
src = fs_m_in.m_source;
|
|
error = OK;
|
|
caller_uid = -1; /* To trap errors */
|
|
caller_gid = -1;
|
|
|
|
/* Exit request? */
|
|
if(src == PM_PROC_NR) {
|
|
exitsignaled = 1;
|
|
fs_sync();
|
|
continue;
|
|
}
|
|
|
|
/* This must be a regular VFS request. */
|
|
assert(src == VFS_PROC_NR && !unmountdone);
|
|
|
|
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) {
|
|
printf("mfs: bad request %d\n", req_nr);
|
|
printf("ind = %d\n", ind);
|
|
error = EINVAL;
|
|
} else {
|
|
error = (*fs_call_vec[ind])();
|
|
/*cch_check();*/
|
|
}
|
|
|
|
fs_m_out.m_type = error;
|
|
reply(src, &fs_m_out);
|
|
|
|
if (error == OK && rdahed_inode != NIL_INODE)
|
|
read_ahead(); /* do block read ahead */
|
|
|
|
}
|
|
}
|
|
|
|
|
|
/*===========================================================================*
|
|
* sef_local_startup *
|
|
*===========================================================================*/
|
|
PRIVATE void sef_local_startup()
|
|
{
|
|
/* Register init callbacks. */
|
|
sef_setcb_init_fresh(sef_cb_init_fresh);
|
|
sef_setcb_init_restart(sef_cb_init_restart_fail);
|
|
|
|
/* No live update support for now. */
|
|
|
|
/* Let SEF perform startup. */
|
|
sef_startup();
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* sef_cb_init_fresh *
|
|
*===========================================================================*/
|
|
PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info)
|
|
{
|
|
/* Initialize the Minix file server. */
|
|
int i, r;
|
|
|
|
/* Init inode table */
|
|
for (i = 0; i < NR_INODES; ++i) {
|
|
inode[i].i_count = 0;
|
|
cch[i] = 0;
|
|
}
|
|
|
|
init_inode_cache();
|
|
|
|
/* Init driver mapping */
|
|
for (i = 0; i < NR_DEVICES; ++i)
|
|
driver_endpoints[i].driver_e = NONE;
|
|
|
|
SELF_E = getprocnr();
|
|
buf_pool();
|
|
fs_block_size = _MIN_BLOCK_SIZE;
|
|
|
|
fs_m_in.m_type = FS_READY;
|
|
|
|
if ((r = send(FS_PROC_NR, &fs_m_in)) != OK) {
|
|
panic("Error sending login to VFS: %d", r);
|
|
}
|
|
|
|
return(OK);
|
|
}
|
|
|
|
|
|
/*===========================================================================*
|
|
* get_work *
|
|
*===========================================================================*/
|
|
PRIVATE void get_work(m_in)
|
|
message *m_in; /* pointer to message */
|
|
{
|
|
int r, srcok = 0;
|
|
endpoint_t src;
|
|
|
|
do {
|
|
if ((r = sef_receive(ANY, m_in)) != OK) /* wait for message */
|
|
panic("sef_receive failed: %d", r);
|
|
src = fs_m_in.m_source;
|
|
|
|
if (src != FS_PROC_NR) {
|
|
if(src == PM_PROC_NR) {
|
|
if(is_notify(fs_m_in.m_type))
|
|
srcok = 1; /* Normal exit request. */
|
|
else
|
|
printf("MFS: unexpected message from PM\n");
|
|
} else
|
|
printf("MFS: unexpected source %d\n", src);
|
|
} else if(src == FS_PROC_NR) {
|
|
if(unmountdone)
|
|
printf("MFS: unmounted: unexpected message from FS\n");
|
|
else
|
|
srcok = 1; /* Normal FS request. */
|
|
|
|
} else
|
|
printf("MFS: unexpected source %d\n", src);
|
|
} while(!srcok);
|
|
|
|
assert((src == FS_PROC_NR && !unmountdone) ||
|
|
(src == PM_PROC_NR && is_notify(fs_m_in.m_type)));
|
|
}
|
|
|
|
|
|
/*===========================================================================*
|
|
* reply *
|
|
*===========================================================================*/
|
|
PUBLIC void reply(who, m_out)
|
|
int who;
|
|
message *m_out; /* report result */
|
|
{
|
|
if (OK != send(who, m_out)) /* send the message */
|
|
printf("MFS(%d) was unable to send reply\n", SELF_E);
|
|
}
|
|
|
|
|
|
/*===========================================================================*
|
|
* cch_check *
|
|
*===========================================================================*/
|
|
PRIVATE void cch_check(void)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < NR_INODES; ++i) {
|
|
if (inode[i].i_count != cch[i] &&
|
|
req_nr != REQ_GETNODE &&
|
|
req_nr != REQ_PUTNODE &&
|
|
req_nr != REQ_READSUPER &&
|
|
req_nr != REQ_MOUNTPOINT && req_nr != REQ_UNMOUNT &&
|
|
req_nr != REQ_SYNC && req_nr != REQ_LOOKUP)
|
|
printf("MFS(%d) inode(%d) cc: %d req_nr: %d\n",
|
|
SELF_E, inode[i].i_num, inode[i].i_count - cch[i], req_nr);
|
|
|
|
cch[i] = inode[i].i_count;
|
|
}
|
|
}
|
|
|