⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 signal32.c

📁 内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系统,编译内核
💻 C
📖 第 1 页 / 共 2 页
字号:
}	asmlinkage long sys32_rt_sigreturn(struct pt_regs *regs){	rt_sigframe32 *frame = (rt_sigframe32 *)regs->gprs[15];	sigset_t set;	stack_t st;	int err;	mm_segment_t old_fs = get_fs();	if (verify_area(VERIFY_READ, frame, sizeof(*frame)))		goto badframe;	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))		goto badframe;	sigdelsetmask(&set, ~_BLOCKABLE);	spin_lock_irq(&current->sigmask_lock);	current->blocked = set;	recalc_sigpending(current);	spin_unlock_irq(&current->sigmask_lock);	if (restore_sigregs32(regs, &frame->uc.uc_mcontext))		goto badframe;	err = __get_user(st.ss_sp, &frame->uc.uc_stack.ss_sp);	st.ss_sp = (void *) A((unsigned long)st.ss_sp);	err |= __get_user(st.ss_size, &frame->uc.uc_stack.ss_size);	err |= __get_user(st.ss_flags, &frame->uc.uc_stack.ss_flags);	if (err)		goto badframe; 	/* It is more difficult to avoid calling this function than to	   call it and ignore errors.  */	set_fs (KERNEL_DS);   	do_sigaltstack(&st, NULL, regs->gprs[15]);	set_fs (old_fs);	return regs->gprs[2];badframe:        force_sig(SIGSEGV, current);        return 0;}	/* * Set up a signal frame. *//* * Determine which stack to use.. */static inline void *get_sigframe(struct k_sigaction *ka, struct pt_regs * regs, size_t frame_size){	unsigned long sp;	/* Default to using normal stack */	sp = (unsigned long) A(regs->gprs[15]);	/* This is the X/Open sanctioned signal stack switching.  */	if (ka->sa.sa_flags & SA_ONSTACK) {		if (! on_sig_stack(sp))			sp = current->sas_ss_sp + current->sas_ss_size;	}	/* This is the legacy signal stack switching. */	else if (!user_mode(regs) &&		 !(ka->sa.sa_flags & SA_RESTORER) &&		 ka->sa.sa_restorer) {		sp = (unsigned long) ka->sa.sa_restorer;	}	return (void *)((sp - frame_size) & -8ul);}static inline int map_signal(int sig){	if (current->exec_domain	    && current->exec_domain->signal_invmap	    && sig < 32)		return current->exec_domain->signal_invmap[sig];        else		return sig;}static void setup_frame32(int sig, struct k_sigaction *ka,			sigset_t *set, struct pt_regs * regs){	sigframe32 *frame = get_sigframe(ka, regs, sizeof(sigframe32));	if (!access_ok(VERIFY_WRITE, frame, sizeof(sigframe32)))		goto give_sigsegv;	if (__copy_to_user(&frame->sc.oldmask, &set->sig, _SIGMASK_COPY_SIZE32))		goto give_sigsegv;	if (save_sigregs32(regs, &frame->sregs))		goto give_sigsegv;	if (__put_user(&frame->sregs, &frame->sc.sregs))		goto give_sigsegv;	/* Set up to return from userspace.  If provided, use a stub	   already in userspace.  */	if (ka->sa.sa_flags & SA_RESTORER) {		regs->gprs[14] = FIX_PSW(ka->sa.sa_restorer);	} else {		regs->gprs[14] = FIX_PSW(frame->retcode);		if (__put_user(S390_SYSCALL_OPCODE | __NR_sigreturn,		               (u16 *)(frame->retcode)))			goto give_sigsegv;        }	/* Set up registers for signal handler */	regs->gprs[15] = (addr_t)frame;	regs->psw.addr = FIX_PSW(ka->sa.sa_handler);	regs->psw.mask = _USER_PSW_MASK32;	regs->gprs[2] = map_signal(sig);	regs->gprs[3] = (addr_t)&frame->sc;	/* We forgot to include these in the sigcontext.	   To avoid breaking binary compatibility, they are passed as args. */	regs->gprs[4] = current->thread.trap_no;	regs->gprs[5] = current->thread.prot_addr;	return;give_sigsegv:	if (sig == SIGSEGV)		ka->sa.sa_handler = SIG_DFL;	force_sig(SIGSEGV, current);}static void setup_rt_frame32(int sig, struct k_sigaction *ka, siginfo_t *info,			   sigset_t *set, struct pt_regs * regs){	int err = 0;	rt_sigframe32 *frame = get_sigframe(ka, regs, sizeof(rt_sigframe32));	if (!access_ok(VERIFY_WRITE, frame, sizeof(rt_sigframe32)))		goto give_sigsegv;	if (copy_siginfo_to_user32(&frame->info, info))		goto give_sigsegv;	/* Create the ucontext.  */	err |= __put_user(0, &frame->uc.uc_flags);	err |= __put_user(0, &frame->uc.uc_link);	err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);	err |= __put_user(sas_ss_flags(regs->gprs[15]),	                  &frame->uc.uc_stack.ss_flags);	err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);	err |= save_sigregs32(regs, &frame->uc.uc_mcontext);	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));	if (err)		goto give_sigsegv;	/* Set up to return from userspace.  If provided, use a stub	   already in userspace.  */	if (ka->sa.sa_flags & SA_RESTORER) {		regs->gprs[14] = FIX_PSW(ka->sa.sa_restorer);	} else {		regs->gprs[14] = FIX_PSW(frame->retcode);		err |= __put_user(S390_SYSCALL_OPCODE | __NR_rt_sigreturn,		                  (u16 *)(frame->retcode));	}	/* Set up registers for signal handler */	regs->gprs[15] = (addr_t)frame;	regs->psw.addr = FIX_PSW(ka->sa.sa_handler);	regs->psw.mask = _USER_PSW_MASK32;	regs->gprs[2] = map_signal(sig);	regs->gprs[3] = (addr_t)&frame->info;	regs->gprs[4] = (addr_t)&frame->uc;	return;give_sigsegv:	if (sig == SIGSEGV)		ka->sa.sa_handler = SIG_DFL;	force_sig(SIGSEGV, current);}/* * OK, we're invoking a handler */	static voidhandle_signal32(unsigned long sig, struct k_sigaction *ka,	      siginfo_t *info, sigset_t *oldset, struct pt_regs * regs){	/* Are we from a system call? */	if (regs->trap == __LC_SVC_OLD_PSW) {		/* If so, check system call restarting.. */		switch (regs->gprs[2]) {			case -ERESTARTNOHAND:				regs->gprs[2] = -EINTR;				break;			case -ERESTARTSYS:				if (!(ka->sa.sa_flags & SA_RESTART)) {					regs->gprs[2] = -EINTR;					break;				}			/* fallthrough */			case -ERESTARTNOINTR:				regs->gprs[2] = regs->orig_gpr2;				regs->psw.addr -= 2;		}	}	/* Set up the stack frame */	if (ka->sa.sa_flags & SA_SIGINFO)		setup_rt_frame32(sig, ka, info, oldset, regs);	else		setup_frame32(sig, ka, oldset, regs);	if (ka->sa.sa_flags & SA_ONESHOT)		ka->sa.sa_handler = SIG_DFL;	if (!(ka->sa.sa_flags & SA_NODEFER)) {		spin_lock_irq(&current->sigmask_lock);		sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);		sigaddset(&current->blocked,sig);		recalc_sigpending(current);		spin_unlock_irq(&current->sigmask_lock);	}}/* * Note that 'init' is a special process: it doesn't get signals it doesn't * want to handle. Thus you cannot kill init even with a SIGKILL even by * mistake. * * Note that we go through the signals twice: once to check the signals that * the kernel can handle, and then we build all the user-level signal handling * stack-frames in one go after that. */int do_signal32(struct pt_regs *regs, sigset_t *oldset){	siginfo_t info;	struct k_sigaction *ka;	/*	 * We want the common case to go fast, which	 * is why we may in certain cases get here from	 * kernel mode. Just return without doing anything	 * if so.	 */	if (!user_mode(regs))		return 1;	if (!oldset)		oldset = &current->blocked;	for (;;) {		unsigned long signr;		spin_lock_irq(&current->sigmask_lock);		signr = dequeue_signal(&current->blocked, &info);		spin_unlock_irq(&current->sigmask_lock);		if (!signr)			break;		if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {			/* Let the debugger run.  */			current->exit_code = signr;			set_current_state(TASK_STOPPED);			notify_parent(current, SIGCHLD);			schedule();			/* We're back.  Did the debugger cancel the sig?  */			if (!(signr = current->exit_code))				continue;			current->exit_code = 0;			/* The debugger continued.  Ignore SIGSTOP.  */			if (signr == SIGSTOP)				continue;			/* Update the siginfo structure.  Is this good?  */			if (signr != info.si_signo) {				info.si_signo = signr;				info.si_errno = 0;				info.si_code = SI_USER;				info.si_pid = current->p_pptr->pid;				info.si_uid = current->p_pptr->uid;			}			/* If the (new) signal is now blocked, requeue it.  */			if (sigismember(&current->blocked, signr)) {				send_sig_info(signr, &info, current);				continue;			}		}		ka = &current->sig->action[signr-1];		if (ka->sa.sa_handler == SIG_IGN) {			if (signr != SIGCHLD)				continue;			/* Check for SIGCHLD: it's special.  */			while (sys_wait4(-1, NULL, WNOHANG, NULL) > 0)				/* nothing */;			continue;		}		if (ka->sa.sa_handler == SIG_DFL) {			int exit_code = signr;			/* Init gets no signals it doesn't want.  */			if (current->pid == 1)				continue;			switch (signr) {			case SIGCONT: case SIGCHLD: case SIGWINCH:				continue;			case SIGTSTP: case SIGTTIN: case SIGTTOU:				if (is_orphaned_pgrp(current->pgrp))					continue;				/* FALLTHRU */			case SIGSTOP:				set_current_state(TASK_STOPPED);				current->exit_code = signr;				if (!(current->p_pptr->sig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))					notify_parent(current, SIGCHLD);				schedule();				continue;			case SIGQUIT: case SIGILL: case SIGTRAP:			case SIGABRT: case SIGFPE: case SIGSEGV:			case SIGBUS: case SIGSYS: case SIGXCPU: case SIGXFSZ:                                if (do_coredump(signr, regs))                                        exit_code |= 0x80;                                /* FALLTHRU */			default:				sigaddset(&current->pending.signal, signr);				recalc_sigpending(current);				current->flags |= PF_SIGNALED;				do_exit(exit_code);				/* NOTREACHED */			}		}		/* Whee!  Actually deliver the signal.  */		handle_signal32(signr, ka, &info, oldset, regs);		return 1;	}	/* Did we come from a system call? */	if ( regs->trap == __LC_SVC_OLD_PSW /* System Call! */ ) {		/* Restart the system call - no handlers present */		if (regs->gprs[2] == -ERESTARTNOHAND ||		    regs->gprs[2] == -ERESTARTSYS ||		    regs->gprs[2] == -ERESTARTNOINTR) {			regs->gprs[2] = regs->orig_gpr2;			regs->psw.addr -= 2;		}	}	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -