2009-01-26 18:43:59 +01:00
|
|
|
/* The kernel call implemented in this file:
|
|
|
|
* m_type: SYS_SYSCTL
|
|
|
|
*
|
|
|
|
* The parameters for this kernel call are:
|
|
|
|
* SYSCTL_CODE request
|
|
|
|
* and then request-specific arguments in SYSCTL_ARG1 and SYSCTL_ARG2.
|
|
|
|
*/
|
|
|
|
|
2010-04-02 00:22:33 +02:00
|
|
|
#include "kernel/system.h"
|
2009-01-26 18:43:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* do_sysctl *
|
|
|
|
*===========================================================================*/
|
2010-02-03 10:04:48 +01:00
|
|
|
PUBLIC int do_sysctl(struct proc * caller, message * m_ptr)
|
2009-01-26 18:43:59 +01:00
|
|
|
{
|
|
|
|
vir_bytes len, buf;
|
|
|
|
static char mybuf[DIAG_BUFSIZE];
|
2009-01-27 13:54:33 +01:00
|
|
|
int s, i, proc_nr;
|
2009-01-26 18:43:59 +01:00
|
|
|
|
|
|
|
switch (m_ptr->SYSCTL_CODE) {
|
|
|
|
case SYSCTL_CODE_DIAG:
|
|
|
|
buf = (vir_bytes) m_ptr->SYSCTL_ARG1;
|
|
|
|
len = (vir_bytes) m_ptr->SYSCTL_ARG2;
|
|
|
|
if(len < 1 || len > DIAG_BUFSIZE) {
|
2010-03-03 16:45:01 +01:00
|
|
|
printf("do_sysctl: diag for %d: len %d out of range\n",
|
2009-01-26 18:43:59 +01:00
|
|
|
caller->p_endpoint, len);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2010-02-09 16:20:09 +01:00
|
|
|
if((s=data_copy_vmcheck(caller, caller->p_endpoint, buf, KERNEL,
|
2010-02-03 10:04:48 +01:00
|
|
|
(vir_bytes) mybuf, len)) != OK) {
|
2010-03-03 16:45:01 +01:00
|
|
|
printf("do_sysctl: diag for %d: len %d: copy failed: %d\n",
|
2009-01-26 18:43:59 +01:00
|
|
|
caller->p_endpoint, len, s);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
for(i = 0; i < len; i++)
|
|
|
|
kputc(mybuf[i]);
|
|
|
|
kputc(END_OF_KMESS);
|
|
|
|
return OK;
|
2009-01-27 13:54:33 +01:00
|
|
|
case SYSCTL_CODE_STACKTRACE:
|
|
|
|
if(!isokendpt(m_ptr->SYSCTL_ARG2, &proc_nr))
|
|
|
|
return EINVAL;
|
|
|
|
proc_stacktrace(proc_addr(proc_nr));
|
|
|
|
return OK;
|
2009-01-26 18:43:59 +01:00
|
|
|
default:
|
2010-03-03 16:45:01 +01:00
|
|
|
printf("do_sysctl: invalid request %d\n", m_ptr->SYSCTL_CODE);
|
2009-01-26 18:43:59 +01:00
|
|
|
return(EINVAL);
|
|
|
|
}
|
|
|
|
|
2010-03-05 16:05:11 +01:00
|
|
|
panic("do_sysctl: can't happen");
|
2009-01-26 18:43:59 +01:00
|
|
|
|
|
|
|
return(OK);
|
|
|
|
}
|
|
|
|
|