41e9fedf87
bugfixes: SYSTEM: . removed rc->p_priv->s_flags = 0; for the priv struct shared by all user processes in get_priv(). this should only be done once. doing a SYS_PRIV_USER in sys_privctl() caused the flags of all user processes to be reset, so they were no longer PREEMPTIBLE. this happened when RS executed a policy script. (this broke test1 in the test set) VFS/MFS: . chown can change the mode of a file, and chmod arguments are only part of the full file mode so the full filemode is slightly magic. changed these calls so that the final modes are returned to VFS, so that the vnode can be kept up-to-date. (this broke test11 in the test set) MFS: . lookup() checked for sizeof(string) instead of sizeof(user_path), truncating long path names (caught by test 23) . truncate functions neglected to update ctime (this broke test16) VFS: . corner case of an empty filename lookup caused fields of a request not to be filled in in the lookup functions, not making it clear that the lookup had failed, causing messages to garbage processes, causing strange failures. (caught by test 30) . trust v_size in vnode when doing reads or writes on non-special files, truncating i/o where necessary; this is necessary for pipes, as MFS can't tell when a pipe has been truncated without it being told explicitly each time. when the last reader/writer on a pipe closes, tell FS about the new size using truncate_vn(). (this broke test 25, among others) . permission check for chdir() had disappeared; added a forbidden() call (caught by test 23) new code, shouldn't change anything: . introduced RTS_SET, RTS_UNSET, and RTS_ISSET macro's, and their LOCK variants. These macros set and clear the p_rts_flags field, causing a lot of duplicated logic like old_flags = rp->p_rts_flags; /* save value of the flags */ rp->p_rts_flags &= ~NO_PRIV; if (old_flags != 0 && rp->p_rts_flags == 0) lock_enqueue(rp); to change into the simpler RTS_LOCK_UNSET(rp, NO_PRIV); so the macros take care of calling dequeue() and enqueue() (or lock_*()), as the case may be). This makes the code a bit more readable and a bit less fragile. . removed return code from do_clocktick in CLOCK as it currently never replies . removed some debug code from VFS . fixed grant debug message in device.c preemptive checks, tests, changes: . added return code checks of receive() to SYSTEM and CLOCK . O_TRUNC should never arrive at MFS (added sanity check and removed O_TRUNC code) . user_path declared with PATH_MAX+1 to let it be null-terminated . checks in MFS to see if strings passed by VFS are null-terminated IS: . static irq name table thrown out
105 lines
3.5 KiB
C
105 lines
3.5 KiB
C
/* The kernel call that is implemented in this file:
|
|
* m_type: SYS_SIGSEND
|
|
*
|
|
* The parameters for this kernel call are:
|
|
* m2_i1: SIG_ENDPT # process to call signal handler
|
|
* m2_p1: SIG_CTXT_PTR # pointer to sigcontext structure
|
|
* m2_i3: SIG_FLAGS # flags for S_SIGRETURN call
|
|
*
|
|
*/
|
|
|
|
#include "../system.h"
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#include <sys/sigcontext.h>
|
|
|
|
#if USE_SIGSEND
|
|
|
|
/*===========================================================================*
|
|
* do_sigsend *
|
|
*===========================================================================*/
|
|
PUBLIC int do_sigsend(m_ptr)
|
|
message *m_ptr; /* pointer to request message */
|
|
{
|
|
/* Handle sys_sigsend, POSIX-style signal handling. */
|
|
|
|
struct sigmsg smsg;
|
|
register struct proc *rp;
|
|
phys_bytes src_phys, dst_phys;
|
|
struct sigcontext sc, *scp;
|
|
struct sigframe fr, *frp;
|
|
int proc;
|
|
|
|
if (!isokendpt(m_ptr->SIG_ENDPT, &proc)) return(EINVAL);
|
|
if (iskerneln(proc)) return(EPERM);
|
|
rp = proc_addr(proc);
|
|
|
|
/* Get the sigmsg structure into our address space. */
|
|
src_phys = umap_local(proc_addr(PM_PROC_NR), D, (vir_bytes)
|
|
m_ptr->SIG_CTXT_PTR, (vir_bytes) sizeof(struct sigmsg));
|
|
if (src_phys == 0) return(EFAULT);
|
|
phys_copy(src_phys,vir2phys(&smsg),(phys_bytes) sizeof(struct sigmsg));
|
|
|
|
/* Compute the user stack pointer where sigcontext will be stored. */
|
|
scp = (struct sigcontext *) smsg.sm_stkptr - 1;
|
|
|
|
/* Copy the registers to the sigcontext structure. */
|
|
memcpy(&sc.sc_regs, (char *) &rp->p_reg, sizeof(struct sigregs));
|
|
#ifdef POWERPC
|
|
memcpy(&sc.sc_regs, (char *) &rp->p_reg, struct(stackframe_s));
|
|
#else
|
|
memcpy(&sc.sc_regs, (char *) &rp->p_reg, sizeof(struct sigregs));
|
|
#endif
|
|
|
|
/* Finish the sigcontext initialization. */
|
|
sc.sc_flags = 0; /* unused at this time */
|
|
sc.sc_mask = smsg.sm_mask;
|
|
|
|
/* Copy the sigcontext structure to the user's stack. */
|
|
dst_phys = umap_local(rp, D, (vir_bytes) scp,
|
|
(vir_bytes) sizeof(struct sigcontext));
|
|
if (dst_phys == 0) return(EFAULT);
|
|
phys_copy(vir2phys(&sc), dst_phys, (phys_bytes) sizeof(struct sigcontext));
|
|
|
|
/* Initialize the sigframe structure. */
|
|
frp = (struct sigframe *) scp - 1;
|
|
fr.sf_scpcopy = scp;
|
|
fr.sf_retadr2= (void (*)()) rp->p_reg.pc;
|
|
fr.sf_fp = rp->p_reg.fp;
|
|
rp->p_reg.fp = (reg_t) &frp->sf_fp;
|
|
fr.sf_scp = scp;
|
|
fr.sf_code = 0; /* XXX - should be used for type of FP exception */
|
|
fr.sf_signo = smsg.sm_signo;
|
|
fr.sf_retadr = (void (*)()) smsg.sm_sigreturn;
|
|
|
|
/* Copy the sigframe structure to the user's stack. */
|
|
dst_phys = umap_local(rp, D, (vir_bytes) frp,
|
|
(vir_bytes) sizeof(struct sigframe));
|
|
if (dst_phys == 0) return(EFAULT);
|
|
phys_copy(vir2phys(&fr), dst_phys, (phys_bytes) sizeof(struct sigframe));
|
|
|
|
#if ( _MINIX_CHIP == _CHIP_POWERPC ) /* stuff that can't be done in the assembler code. */
|
|
/* When the signal handlers C code is called it will write this value
|
|
* into the signal frame (over the sf_retadr value).
|
|
*/
|
|
rp->p_reg.lr = smsg.sm_sigreturn;
|
|
/* The first (and only) parameter for the user signal handler function.
|
|
*/
|
|
rp->p_reg.retreg = smsg.sm_signo; /* note the retreg == first argument */
|
|
#endif
|
|
|
|
/* Reset user registers to execute the signal handler. */
|
|
rp->p_reg.sp = (reg_t) frp;
|
|
rp->p_reg.pc = (reg_t) smsg.sm_sighandler;
|
|
|
|
/* Reschedule if necessary. */
|
|
if(RTS_ISSET(rp, NO_PRIORITY))
|
|
RTS_LOCK_UNSET(rp, NO_PRIORITY);
|
|
else
|
|
kprintf("system: warning: sigsend a running process\n");
|
|
|
|
return(OK);
|
|
}
|
|
|
|
#endif /* USE_SIGSEND */
|
|
|