NetBSD Problem Report #36722

From martin@duskware.de  Thu Aug  2 11:18:59 2007
Return-Path: <martin@duskware.de>
Received: from mail.netbsd.org (mail.netbsd.org [204.152.190.11])
	by narn.NetBSD.org (Postfix) with ESMTP id D6D4763B8EA
	for <gnats-bugs@gnats.netbsd.org>; Thu,  2 Aug 2007 11:18:59 +0000 (UTC)
Message-Id: <20070802105602.A09A463B8EA@narn.NetBSD.org>
Date: Thu,  2 Aug 2007 10:56:02 +0000 (UTC)
From: irino@src.ricoh.co.jp
Reply-To: irino@src.ricoh.co.jp
To: netbsd-bugs-owner@NetBSD.org
Subject: x87 FPU stack overflows when many threads are starting to use a FPU.
X-Send-Pr-Version: www-1.0

>Number:         36722
>Category:       port-i386
>Synopsis:       x87 FPU stack overflows when many threads are starting to use a FPU.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    port-i386-maintainer
>State:          closed
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Thu Aug 02 11:20:00 +0000 2007
>Closed-Date:    Tue Aug 06 12:09:18 +0000 2019
>Last-Modified:  Tue Aug 06 12:10:01 +0000 2019
>Originator:     Yoshiaki Irino
>Release:        NetBSD 2.1, 3.0.2, 3.1
>Organization:
RICOH COMPANY, LTD.
>Environment:
NetBSD 3.1 (GENERIC) #0: Tue Oct 31 04:27:07 UTC 2006  builds@b0.netbsd.org:/home/builds/ab/netbsd-3-1-RELEASE/i386/200610302053Z-obj/home/builds/ab/netbsd-3-1-RELEASE/src/sys/arch/i386/compile/GENERIC
NetBSD 3.0.2 (GENERIC) #0: Wed Nov  1 00:26:54 UTC 2006  builds@b1.netbsd.org:/home/builds/ab/netbsd-3-0-2-RELEASE/i386/200610311952Z-obj/home/builds/ab/netbsd-3-0-2-RELEASE/src/sys/arch/i386/compile/GENERIC
NetBSD 2.1 (GENERIC) #0: Mon Oct 24 22:35:45 UTC 2005  jmc@faith.netbsd.org:/home/builds/ab/netbsd-2-1-RELEASE/i386/200510241747Z-obj/home/builds/ab/netbsd-2-1-RELEASE/src/sys/arch/i386/compile/GENERIC
>Description:
Under following situation,
(1) a thread was forced to switch to another thread while using FPU, and
(2) the next thread was just after pthread_create()'d,
the next thread inherits FPU context of the previos thread
because all thread just after pthread_create()'d has no FPU context.
Because of this, if the previous thread had pushed all x87 FPU stack,
the next thread meets "stack overflow fault" when pushed the first float value.

I tested this problem on following machines and releases by using a test program below.
CPU/NetBSD release    3.1 3.0.2 2.1
Pentium-MMX(w/o FXSR)  NG   NG   NG
Pentium-4 (with FXSR)  NG   NG   NG
>How-To-Repeat:
This test program fails at "thread4",
because all threads wants to keep two x87 FPU stack for their own calculation.
(x87 FPU has only 8 data register stack)

#include <pthread.h>
#include <stdio.h>

#define	N_THREADS	8

void *dofpu(void *);

double d1 = 0.12345;
double d2 = 0.12345;

int
main(int ac, char *av[])
{

	int i;
	pthread_t th;

	for (i = 0; i < N_THREADS; i++) {
		if (pthread_create(&th, NULL, dofpu, (void *)i) != 0) {
			fprintf(stderr, "pthread_create() failed\n");
			exit(1);
		}
	}
	sleep(60);
	exit(0);
}

void *
dofpu(void *arg)
{
	while (1) {
		if (d1 != d2)
			break;
	}
	printf("failed at thread%d\n", (int)arg);
	exit(1);
}

---
This sample program shows x87 FPU's control/status/tag words as follows.
# /tmp/x87fail_analyze
FPU words when main thread started
control 0x127f, status 0x0000, tag 0x0000
FPU words when thread0 started
control 0x127f, status 0x3000, tag 0x00c0
FPU words when thread1 started
control 0x127f, status 0x6000, tag 0x00f0
FPU words when thread2 started
control 0x127f, status 0x5000, tag 0x00fc
FPU words when thread3 started
control 0x127f, status 0x4000, tag 0x00ff
FPU words when thread4 started
control 0x127f, status 0x7241, tag 0x00ff
FPU words when thread4 failed
control 0x127f, status 0x7541, tag 0x00ff
failed at thread4
#

#include <pthread.h>
#include <stdio.h>

#define	N_THREADS	8

void *dofpu(void *);
void xmm_dump(u_char *);

/*
 * only for CPUs with FXSR - XXX
 */
#define	fxsave(addr)	__asm("fxsave %0" : "=m" (*addr))
u_char save_xmm[N_THREADS][512];
u_char fail_xmm[N_THREADS][512];
u_char main_xmm[512];

double d1 = 0.12345;
double d2 = 0.12345;

int
main(int ac, char *av[])
{

	int i;
	pthread_t th;

	fxsave(main_xmm);
	for (i = 0; i < N_THREADS; i++) {
		if (pthread_create(&th, NULL, dofpu, (void *)i) != 0) {
			fprintf(stderr, "pthread_create() failed\n");
			exit(1);
		}
	}
	sleep(60);
	exit(0);
}

void *
dofpu(void *arg)
{
	u_char *save = save_xmm[(int)arg];
	u_char *fail = fail_xmm[(int)arg];
	int i;

	fxsave(save);
	while (1) {
		fxsave(fail);	/* must be here! */
		if (d1 != d2)
			break;
	}
	printf("FPU words when main thread started\n");
	xmm_dump(main_xmm);
	for (i = 0; i <= (int)arg; i++) {
		printf("FPU words when thread%d started\n", i);
		xmm_dump(save_xmm[i]);
	}
	printf("FPU words when thread%d failed\n", (int)arg);
	xmm_dump(fail);
	printf("failed at thread%d\n", (int)arg);
	exit(1);
}

void
xmm_dump(u_char *v)
{
	printf("control 0x%02x%02x, status 0x%02x%02x, tag 0x%02x%02x\n",
		 v[1], v[0], v[3], v[2], v[5], v[4]);
#ifdef VERBOSE
{
	int i;

	/* show 160 bytes only */
	for (i = 0; i < 160; v += 16, i += 16) {
		printf("%02x %02x %02x %02x %02x %02x %02x %02x ",
			v[15], v[14], v[13], v[12], v[11], v[10], v[9], v[8]);
		printf("%02x %02x %02x %02x %02x %02x %02x %02x\n",
			v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
	}
}
#endif	/* VERBOSE */
>Fix:
I checked this patch (for src/lib/libpthread/arch/i386/pthread_md.h) on following machines and releases only by using a test program above,
but I am not sure that this patch cause no side effect.
CPU/NetBSD release    3.1 3.0.2 2.1
Pentium-MMX(w/o FXSR)  OK   OK   OK
Pentium-4 (with FXSR)  OK   OK   OK


--- pthread_md.h	2007-08-01 16:21:14.000000000 +0900
+++ pthread_md.h.sendpr	2007-08-01 16:10:29.000000000 +0900
@@ -72,6 +72,16 @@
 #define pthread__uc_sp(ucp) ((ucp)->uc_mcontext.__gregs[_REG_UESP])
 #define pthread__uc_pc(ucp) ((ucp)->uc_mcontext.__gregs[_REG_EIP])

+#define	pthread__i386_fxsave(addr)	__asm("fxsave %0" : "=m" (*addr))
+#define	pthread__uc_xmm(ucp) \
+	((ucp)->uc_mcontext.__fpregs.__fp_reg_set.__fp_xmm_state.__fp_xmm)
+
+#define	pthread__i386_fnsave(addr)	__asm("fnsave %0" : "=m" (*addr))
+#define pthread__i386_fwait()		__asm("fwait")
+#define	pthread__i386_frstor(addr)	__asm("frstor %0" : "=m" (*addr))
+#define	pthread__uc_s87(ucp) \
+	((ucp)->uc_mcontext.__fpregs.__fp_reg_set.__fpchip_state.__fp_state)
+
 /*
  * Set initial, sane values for registers whose values aren't just
  * "don't care".
@@ -86,7 +96,16 @@
 	(ucp)->uc_mcontext.__gregs[_REG_DS] = 0x2b,			\
 	(ucp)->uc_mcontext.__gregs[_REG_CS] = 0x23,			\
 	(ucp)->uc_mcontext.__gregs[_REG_SS] = 0x2b,			\
-	(ucp)->uc_mcontext.__gregs[_REG_EFL] = 0x202;
+	(ucp)->uc_mcontext.__gregs[_REG_EFL] = 0x202;			\
+	if (_md_getcontext_u == _getcontext_u_xmm) {			\
+		pthread__i386_fxsave(pthread__uc_xmm(ucp));		\
+		(ucp)->uc_flags |= _UC_FPU;				\
+	} else if (_md_getcontext_u == _getcontext_u_s87) {		\
+		pthread__i386_fnsave(pthread__uc_s87(ucp));		\
+		pthread__i386_fwait();					\
+		pthread__i386_frstor(pthread__uc_s87(ucp));		\
+		(ucp)->uc_flags |= _UC_FPU;				\
+	}

 /*
  * Usable stack space below the ucontext_t. 

>Release-Note:

>Audit-Trail:
From: Andrew Doran <ad@netbsd.org>
To: gnats-bugs@NetBSD.org
Cc: 
Subject: Re: lib/36722: x87 FPU stack overflows when many threads are starting to use a FPU.
Date: Thu, 2 Aug 2007 23:26:52 +0100

 Thanks for the detailed problem report and test cases.

 FYI, I tested on -current and the problem does not appear there due to the
 different threading model. I'll investigate the fix for NetBSD 3 and 4. It
 will also need to be done for amd64.

 Andrew

Responsible-Changed-From-To: lib-bug-people->port-i386-maintainer
Responsible-Changed-By: maya@NetBSD.org
Responsible-Changed-When: Mon, 05 Aug 2019 23:29:14 +0000
Responsible-Changed-Why:
if this is still an issue, it's going to be more familiar to people with knowledge of x87.


State-Changed-From-To: open->closed
State-Changed-By: maya@NetBSD.org
State-Changed-When: Tue, 06 Aug 2019 12:09:18 +0000
State-Changed-Why:
Should be long fixed. Thanks to joerg for noting that.


From: Joerg Sonnenberger <joerg@bec.de>
To: gnats-bugs@netbsd.org
Cc: port-i386-maintainer@netbsd.org, lib-bug-people@netbsd.org,
	netbsd-bugs@netbsd.org, gnats-admin@netbsd.org, maya@NetBSD.org,
	irino@src.ricoh.co.jp
Subject: Re: port-i386/36722 (x87 FPU stack overflows when many threads are
 starting to use a FPU.)
Date: Tue, 6 Aug 2019 13:34:19 +0200

 On Mon, Aug 05, 2019 at 11:29:14PM +0000, maya@NetBSD.org wrote:
 > Synopsis: x87 FPU stack overflows when many threads are starting to use a FPU.
 > 
 > Responsible-Changed-From-To: lib-bug-people->port-i386-maintainer
 > Responsible-Changed-By: maya@NetBSD.org
 > Responsible-Changed-When: Mon, 05 Aug 2019 23:29:14 +0000
 > Responsible-Changed-Why:
 > if this is still an issue, it's going to be more familiar to people with knowledge of x87.

 I think this one can be considered dead and burried. As Andrew wrote,
 the 1:1 threading doesn't have this problem.

 Joerg

>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.43 2018/01/16 07:36:43 maya Exp $
$NetBSD: gnats_config.sh,v 1.9 2014/08/02 14:16:04 spz Exp $
Copyright © 1994-2017 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.