From: Pete Zaitcev <zaitcev@redhat.com>
To: linux390@de.ibm.com
Cc: linux-kernel@vger.kernel.org, zaitcev@redhat.com
Subject: [s390x] Patch for execve with a mode switch
Date: Sat, 15 Mar 2003 19:25:28 -0500 [thread overview]
Message-ID: <20030315192528.A30182@devserv.devel.redhat.com> (raw)
If I boot an s390x kernel over a 31 bit userland, /sbin/init segfaults
in the dynamic linker. This happens because mm->free_area_cache
is set with TASK_UNMAPPED_BASE macro, which needs the TIF_31BIT
set right. Setting TIF_31BIT in ELF_PLAT_INIT is way too late
for this.
The patch below basically ports what sparc64 does to s390x,
according to the Andrew Morton's comment in fs/binfmt_elf.c.
To tell the truth, I actually use equivalent of this on 2.4,
but I think it's important to get stock 2.5 right.
Martin, please consider and let me know what you think.
Greetings,
-- Pete
--- linux-2.5.64/arch/s390x/kernel/binfmt_elf32.c 2003-03-04 21:34:14.000000000 -0800
+++ linux-2.5.64-sparc/arch/s390x/kernel/binfmt_elf32.c 2003-03-15 16:17:34.000000000 -0800
@@ -39,7 +39,6 @@
#define ELF_PLAT_INIT(_r) \
do { \
_r->gprs[14] = 0; \
- set_thread_flag(TIF_31BIT); \
} while(0)
#define USE_ELF_CORE_DUMP
@@ -87,6 +86,8 @@
#define SET_PERSONALITY(ex, ibcs2) \
do { \
+ if ((current_thread_info()->flags & _TIF_32BIT) == 0) \
+ set_thread_flag(TIF_ABI_PENDING); \
if (ibcs2) \
set_personality(PER_SVR4); \
else if (current->personality != PER_LINUX32) \
--- linux-2.5.64/arch/s390x/kernel/process.c 2003-03-04 21:34:14.000000000 -0800
+++ linux-2.5.64-sparc/arch/s390x/kernel/process.c 2003-03-15 16:02:19.000000000 -0800
@@ -156,9 +156,14 @@
void flush_thread(void)
{
+ struct thread_info *t = current_thread_info();
+ struct task_struct *tsk = t->task;
- current->used_math = 0;
- clear_tsk_thread_flag(current, TIF_USEDFPU);
+ if (t->flags & _TIF_ABI_PENDING)
+ t->flags ^= (_TIF_ABI_PENDING | _TIF_32BIT);
+
+ tsk->used_math = 0;
+ clear_tsk_thread_flag(tsk, TIF_USEDFPU);
}
void release_thread(struct task_struct *dead_task)
--- linux-2.5.64/include/asm-s390x/elf.h 2003-03-04 21:34:43.000000000 -0800
+++ linux-2.5.64-sparc/include/asm-s390x/elf.h 2003-03-15 16:22:04.000000000 -0800
@@ -39,7 +39,6 @@
#define ELF_PLAT_INIT(_r) \
do { \
_r->gprs[14] = 0; \
- clear_thread_flag(TIF_31BIT); \
} while(0)
#define USE_ELF_CORE_DUMP
@@ -79,11 +78,12 @@
#ifdef __KERNEL__
#define SET_PERSONALITY(ex, ibcs2) \
do { \
+ if (current_thread_info()->flags & _TIF_32BIT) \
+ set_thread_flag(TIF_ABI_PENDING); \
if (ibcs2) \
set_personality(PER_SVR4); \
else if (current->personality != PER_LINUX32) \
set_personality(PER_LINUX); \
- clear_thread_flag(TIF_31BIT); \
} while (0)
#endif
--- linux-2.5.64/include/asm-s390x/thread_info.h 2003-03-04 21:34:43.000000000 -0800
+++ linux-2.5.64-sparc/include/asm-s390x/thread_info.h 2003-03-15 16:04:23.000000000 -0800
@@ -74,6 +74,7 @@
#define TIF_SIGPENDING 2 /* signal pending */
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
#define TIF_RESTART_SVC 4 /* restart svc with new svc number */
+#define TIF_ABI_PENDING 11 /* flush_thread has to switch ABI */
#define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */
#define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling
TIF_NEED_RESCHED */
@@ -84,6 +85,7 @@
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
#define _TIF_RESTART_SVC (1<<TIF_RESTART_SVC)
+#define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING)
#define _TIF_USEDFPU (1<<TIF_USEDFPU)
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
#define _TIF_31BIT (1<<TIF_31BIT)
next reply other threads:[~2003-03-16 0:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-16 0:25 Pete Zaitcev [this message]
-- strict thread matches above, loose matches on Subject: below --
2003-03-17 15:20 [s390x] Patch for execve with a mode switch BOEBLINGEN LINUX390
2003-03-17 17:03 ` Pete Zaitcev
2003-03-18 8:57 BOEBLINGEN LINUX390
2003-03-18 14:51 ` Pete Zaitcev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030315192528.A30182@devserv.devel.redhat.com \
--to=zaitcev@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux390@de.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox