Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Since trampoline ABI ver0 is also used in other emu...



details:   https://anonhg.NetBSD.org/src/rev/3da22386a5b0
branches:  trunk
changeset: 987004:3da22386a5b0
user:      ryo <ryo%NetBSD.org@localhost>
date:      Thu Sep 23 06:58:47 2021 +0000

description:
Since trampoline ABI ver0 is also used in other emulation environments (e.g. linux emulation),
checking (emul->e_sigobject != NULL) to determine if it is allowed or not.

diffstat:

 sys/kern/sys_sig.c |  17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diffs (46 lines):

diff -r 6c9ba2eda130 -r 3da22386a5b0 sys/kern/sys_sig.c
--- a/sys/kern/sys_sig.c        Thu Sep 23 06:56:26 2021 +0000
+++ b/sys/kern/sys_sig.c        Thu Sep 23 06:58:47 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_sig.c,v 1.51 2020/05/23 23:42:43 ad Exp $  */
+/*     $NetBSD: sys_sig.c,v 1.52 2021/09/23 06:58:47 ryo Exp $ */
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_sig.c,v 1.51 2020/05/23 23:42:43 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_sig.c,v 1.52 2021/09/23 06:58:47 ryo Exp $");
 
 #include "opt_dtrace.h"
 
@@ -410,9 +410,15 @@
        if (nsa != NULL && nsa->sa_handler != SIG_IGN
            && nsa->sa_handler != SIG_DFL) {
                if (__predict_false(vers < 2)) {
-                       if (p->p_flag & PK_32)
+                       if (p->p_flag & PK_32) {
                                v0v1valid = true;
-                       else if ((p->p_lflag & PL_SIGCOMPAT) == 0) {
+                       } else if (vers == 0 &&
+                           p->p_sigctx.ps_sigcode != NULL) {
+                               /*
+                                * if sigcode is used for this emulation,
+                                * version 0 is allowed.
+                                */
+                       } else if ((p->p_lflag & PL_SIGCOMPAT) == 0) {
                                kernconfig_lock();
                                (void)module_autoload("compat_16",
                                    MODULE_CLASS_ANY);
@@ -439,7 +445,8 @@
                switch (vers) {
                case 0:
                        /* sigcontext, kernel supplied trampoline. */
-                       if (tramp != NULL || !v0v1valid) {
+                       if (tramp != NULL ||
+                           (p->p_sigctx.ps_sigcode == NULL && !v0v1valid)) {
                                return EINVAL;
                        }
                        break;



Home | Main Index | Thread Index | Old Index