1 /* System Information Service.
2 * This service handles the various debugging dumps, such as the process
3 * table, so that these no longer directly touch kernel memory. Instead, the
4 * system task is asked to copy some table in local memory.
7 * Apr 29, 2004 by Jorrit N. Herder
11 #include <minix/endpoint.h>
13 /* Allocate space for the global variables. */
14 PRIVATE message m_in
; /* the input message itself */
15 PRIVATE message m_out
; /* the output message used for reply */
16 PRIVATE endpoint_t who_e
; /* caller's proc number */
17 PRIVATE
int callnr
; /* system call number */
19 extern int errno
; /* error number set by system library */
21 /* Declare some local functions. */
22 FORWARD
_PROTOTYPE(void get_work
, (void) );
23 FORWARD
_PROTOTYPE(void reply
, (int whom
, int result
) );
25 /* SEF functions and variables. */
26 FORWARD
_PROTOTYPE( void sef_local_startup
, (void) );
27 FORWARD
_PROTOTYPE( int sef_cb_init_fresh
, (int type
, sef_init_info_t
*info
) );
28 FORWARD
_PROTOTYPE( void sef_cb_signal_handler
, (int signo
) );
30 /*===========================================================================*
32 *===========================================================================*/
33 PUBLIC
int main(int argc
, char **argv
)
35 /* This is the main routine of this service. The main loop consists of
36 * three major activities: getting new work, processing the work, and
37 * sending the reply. The loop never terminates, unless a panic occurs.
41 /* SEF local startup. */
42 env_setargs(argc
, argv
);
45 /* Main loop - get work and do it, forever. */
47 /* Wait for incoming message, sets 'callnr' and 'who'. */
50 if (is_notify(callnr
)) {
51 switch (_ENDPOINT_P(who_e
)) {
53 result
= do_fkey_pressed(&m_in
);
56 /* FIXME: error message. */
62 printf("IS: warning, got illegal request %d from %d\n",
63 callnr
, m_in
.m_source
);
67 /* Finally send reply message, unless disabled. */
68 if (result
!= EDONTREPLY
) {
72 return(OK
); /* shouldn't come here */
75 /*===========================================================================*
77 *===========================================================================*/
78 PRIVATE
void sef_local_startup()
80 /* Register init callbacks. */
81 sef_setcb_init_fresh(sef_cb_init_fresh
);
82 sef_setcb_init_lu(sef_cb_init_fresh
);
83 sef_setcb_init_restart(sef_cb_init_fresh
);
85 /* Register live update callbacks. */
86 sef_setcb_lu_prepare(sef_cb_lu_prepare_always_ready
);
87 sef_setcb_lu_state_isvalid(sef_cb_lu_state_isvalid_standard
);
89 /* Register signal callbacks. */
90 sef_setcb_signal_handler(sef_cb_signal_handler
);
92 /* Let SEF perform startup. */
96 /*===========================================================================*
98 *===========================================================================*/
99 PRIVATE
int sef_cb_init_fresh(int UNUSED(type
), sef_init_info_t
*UNUSED(info
))
101 /* Initialize the information server. */
103 /* Set key mappings. */
104 map_unmap_fkeys(TRUE
/*map*/);
109 /*===========================================================================*
110 * sef_cb_signal_handler *
111 *===========================================================================*/
112 PRIVATE
void sef_cb_signal_handler(int signo
)
114 /* Only check for termination signal, ignore anything else. */
115 if (signo
!= SIGTERM
) return;
117 /* Shutting down. Unset key mappings, and quit. */
118 map_unmap_fkeys(FALSE
/*map*/);
123 /*===========================================================================*
125 *===========================================================================*/
126 PRIVATE
void get_work()
129 status
= sef_receive(ANY
, &m_in
); /* this blocks until message arrives */
131 panic("sef_receive failed!: %d", status
);
132 who_e
= m_in
.m_source
; /* message arrived! set sender */
133 callnr
= m_in
.m_type
; /* set function call number */
136 /*===========================================================================*
138 *===========================================================================*/
139 PRIVATE
void reply(who
, result
)
140 int who
; /* destination */
141 int result
; /* report result to replyee */
144 m_out
.m_type
= result
; /* build reply message */
145 send_status
= send(who
, &m_out
); /* send the message */
146 if (OK
!= send_status
)
147 panic("unable to send reply!: %d", send_status
);