svn commit: r184974 - head/sys/dev/mfi

Kostik Belousov kostikbel at gmail.com
Mon Nov 17 11:36:02 PST 2008


On Mon, Nov 17, 2008 at 12:11:41PM -0500, John Baldwin wrote:
> On Sunday 16 November 2008 09:37:45 pm Doug Ambrisko wrote:
> > Kostik Belousov writes:
> > | On Fri, Nov 14, 2008 at 09:05:45PM +0000, Doug Ambrisko wrote:
> > | > Author: ambrisko
> > | > Date: Fri Nov 14 21:05:45 2008
> > | > New Revision: 184974
> > | > URL: http://svn.freebsd.org/changeset/base/184974
> > | > 
> > | > Log:
> > | >   When running a 32bit app. on amd64, ensure the bits above 32bit
> > | >   are zero for the copyout.  Confirmed by LSI.
> > | > 
> > | > Modified:
> > | >   head/sys/dev/mfi/mfi.c
> > | > 
> > | > Modified: head/sys/dev/mfi/mfi.c
> > | > 
> ==============================================================================
> > | > --- head/sys/dev/mfi/mfi.c	Fri Nov 14 18:09:19 2008	(r184973)
> > | > +++ head/sys/dev/mfi/mfi.c	Fri Nov 14 21:05:45 2008	(r184974)
> > | > @@ -2130,6 +2130,14 @@ mfi_ioctl(struct cdev *dev, u_long cmd, 
> > | >  			    ->mfi_frame.raw[ioc->mfi_sense_off],
> > | >  			    &sense_ptr.sense_ptr_data[0],
> > | >  			    sizeof(sense_ptr.sense_ptr_data));
> > | > +#ifdef __amd64__
> > | > +			if (cmd != MFI_CMD) {
> > | > +				/*
> > | > +				 * not 64bit native so zero out any address
> > | > +				 * over 32bit */
> > | > +				sense_ptr.high = 0;
> > | > +			}
> > | > +#endif
> > | >  			error = copyout(cm->cm_sense, sense_ptr.user_space,
> > | >  			    ioc->mfi_sense_len);
> > | >  			if (error != 0) {
> > | > @@ -2353,6 +2361,13 @@ mfi_linux_ioctl_int(struct cdev *dev, u_
> > | >                              ->lioc_frame.raw[l_ioc.lioc_sense_off],
> > | >  			    &sense_ptr.sense_ptr_data[0],
> > | >  			    sizeof(sense_ptr.sense_ptr_data));
> > | > +#ifdef __amd64__
> > | > +			/*
> > | > +			 * only 32bit Linux support so zero out any
> > | > +			 * address over 32bit
> > | > +			 */
> > | > +			sense_ptr.high = 0;
> > | > +#endif
> > | >  			error = copyout(cm->cm_sense, sense_ptr.user_space,
> > | >  			    l_ioc.lioc_sense_len);
> > | >  			if (error != 0) {
> > | 
> > | Would it make sense to perform this cut slightly more generically, by
> > | checking whether the current process is 32bit ?
> > | 
> > | We still have not grew the easy to check flag or attribute of the image,
> > | but usual practice is to compare p_sysent with corresponding sysvec,
> > | like
> > | 	if (td->td_proc->p_sysent == &ia32_freebsd_sysvec)
> > | or
> > | 	if (td->td_proc->p_sysent == &elf_linux_sysvec)
> > 
> > So far we do it based on the ioctl since the 32bit or 64bit ioctl
> > value is different.  I put in that comment for Linux since there
> > is talk/work for Linux amd64 emulation.  For 64bit Linux ioctl 
> > support we need a 64bit structure defined.  When the ioctl can't
> > be figured out then I've used the p_sysent.  Eventually, something
> > that is more generic then the #ifdef __amd64__ should be done
> > in all the drivers that do this emulation.
> 
> I prefer depending on things like ioctl values and the 32-bit sysctl flag when 
> possible.  If we do have to directly check for the ABI, I'd much rather have 
> a flags field in sysent rather than trying to compare against global symbols, 
> as you can't compare against a global symbol unless it is present in the 
> kernel.  Something like:
> 
> 	if (td->td_proc->p_sysent->sy_flags & SY_32)
> 
> or some such.  I've wanted to have a COMPAT_FREEBSD32 that gets auto-enabled 
> when you turn on COMPAT_IA32 on amd64 and ia64.  It would also potentially be 
> enabled by a COMPAT_SPARC8 or some such on sparc64 if we ever had that.

Ok, what about the following. I only compiled it on i386/amd64. And,
there are more places to convert to such checks, for sure.

diff --git a/sys/amd64/amd64/elf_machdep.c b/sys/amd64/amd64/elf_machdep.c
index ec1afc7..24370c8 100644
--- a/sys/amd64/amd64/elf_machdep.c
+++ b/sys/amd64/amd64/elf_machdep.c
@@ -72,7 +72,8 @@ struct sysentvec elf64_freebsd_sysvec = {
 	.sv_copyout_strings	= exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_LP64
 };
 
 static Elf64_Brandinfo freebsd_brand_info = {
diff --git a/sys/amd64/linux32/linux32_sysvec.c b/sys/amd64/linux32/linux32_sysvec.c
index e233700..ac36dca 100644
--- a/sys/amd64/linux32/linux32_sysvec.c
+++ b/sys/amd64/linux32/linux32_sysvec.c
@@ -1026,6 +1026,7 @@ struct sysentvec elf_linux_sysvec = {
 	.sv_setregs	= exec_linux_setregs,
 	.sv_fixlimit	= linux32_fixlimit,
 	.sv_maxssiz	= &linux32_maxssiz,
+	.sv_flags	= SV_ILP32 | SV_IA32 | SV_ALIENABI
 };
 
 static Elf32_Brandinfo linux_brand = {
diff --git a/sys/arm/arm/elf_machdep.c b/sys/arm/arm/elf_machdep.c
index f44a622..9d8bb46 100644
--- a/sys/arm/arm/elf_machdep.c
+++ b/sys/arm/arm/elf_machdep.c
@@ -72,7 +72,8 @@ struct sysentvec elf32_freebsd_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_ILP32
 };
 
 static Elf32_Brandinfo freebsd_brand_info = {
diff --git a/sys/compat/ia32/ia32_sysvec.c b/sys/compat/ia32/ia32_sysvec.c
index ef74ba0..bdd426f 100644
--- a/sys/compat/ia32/ia32_sysvec.c
+++ b/sys/compat/ia32/ia32_sysvec.c
@@ -135,7 +135,8 @@ struct sysentvec ia32_freebsd_sysvec = {
 	.sv_copyout_strings	= ia32_copyout_strings,
 	.sv_setregs	= ia32_setregs,
 	.sv_fixlimit	= ia32_fixlimit,
-	.sv_maxssiz	= &ia32_maxssiz
+	.sv_maxssiz	= &ia32_maxssiz,
+	.sv_flags	= SV_COMPAT | SV_IA32 | SV_ILP32
 };
 
 
diff --git a/sys/compat/svr4/svr4_sysvec.c b/sys/compat/svr4/svr4_sysvec.c
index 60cca7b..ddd6643 100644
--- a/sys/compat/svr4/svr4_sysvec.c
+++ b/sys/compat/svr4/svr4_sysvec.c
@@ -190,7 +190,8 @@ struct sysentvec svr4_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz     = NULL
+	.sv_maxssiz     = NULL,
+	.sv_flags	= SV_ALIENABI | SV_IA32 | SV_ILP32
 };
 
 const char      svr4_emul_path[] = "/compat/svr4";
diff --git a/sys/i386/i386/elf_machdep.c b/sys/i386/i386/elf_machdep.c
index 93f1d45..698fc7e 100644
--- a/sys/i386/i386/elf_machdep.c
+++ b/sys/i386/i386/elf_machdep.c
@@ -72,7 +72,8 @@ struct sysentvec elf32_freebsd_sysvec = {
 	.sv_copyout_strings	= exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_IA32 | SV_ILP32
 };
 
 static Elf32_Brandinfo freebsd_brand_info = {
diff --git a/sys/i386/ibcs2/ibcs2_sysvec.c b/sys/i386/ibcs2/ibcs2_sysvec.c
index 2c834dd..e989d7b 100644
--- a/sys/i386/ibcs2/ibcs2_sysvec.c
+++ b/sys/i386/ibcs2/ibcs2_sysvec.c
@@ -85,7 +85,8 @@ struct sysentvec ibcs2_svr3_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_ALIENABI | SV_IA32 | SV_ILP32
 };
 
 static int
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index a3acfc9..4696c14 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -837,7 +837,8 @@ struct sysentvec linux_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_linux_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_ALIENABI | SV_IA32 | SV_ILP32
 };
 
 struct sysentvec elf_linux_sysvec = {
diff --git a/sys/ia64/ia64/elf_machdep.c b/sys/ia64/ia64/elf_machdep.c
index 94f4cdc..7050a69 100644
--- a/sys/ia64/ia64/elf_machdep.c
+++ b/sys/ia64/ia64/elf_machdep.c
@@ -80,7 +80,8 @@ struct sysentvec elf64_freebsd_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_LP64
 };
 
 static Elf64_Brandinfo freebsd_brand_info = {
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index f4e4614..114e0ba 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -82,7 +82,17 @@ struct sysentvec aout_sysvec = {
 	.sv_copyout_strings	= exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_AOUT |
+#if defined(__i386__)
+	SV_IA32 | SV_ILP32
+#elif defined(__powerpc__) || defined(__mips__)
+	SV_ILP32
+#elif defined(__ia64__) || defined(__sparc64__) || defined(__amd64__)
+	SV_LP64
+#else
+#error Choose SV_XXX flags for the platform
+#endif
 };
 
 static int
diff --git a/sys/kern/kern_thr.c b/sys/kern/kern_thr.c
index dade1c2..1edbe6f 100644
--- a/sys/kern/kern_thr.c
+++ b/sys/kern/kern_thr.c
@@ -57,14 +57,12 @@ __FBSDID("$FreeBSD$");
 
 #ifdef COMPAT_IA32
 
-extern struct sysentvec ia32_freebsd_sysvec;
-
 static inline int
 suword_lwpid(void *addr, lwpid_t lwpid)
 {
 	int error;
 
-	if (curproc->p_sysent != &ia32_freebsd_sysvec)
+	if (curproc->p_sysent->sv_flags & SV_LP64)
 		error = suword(addr, lwpid);
 	else
 		error = suword32(addr, lwpid);
diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c
index eb587fb..5aeb476 100644
--- a/sys/kern/uipc_socket.c
+++ b/sys/kern/uipc_socket.c
@@ -136,9 +136,8 @@ __FBSDID("$FreeBSD$");
 
 #ifdef COMPAT_IA32
 #include <sys/mount.h>
+#include <sys/sysent.h>
 #include <compat/freebsd32/freebsd32.h>
-
-extern struct sysentvec ia32_freebsd_sysvec;
 #endif
 
 static int	soreceive_rcvoob(struct socket *so, struct uio *uio,
@@ -2277,7 +2276,7 @@ sosetopt(struct socket *so, struct sockopt *sopt)
 		case SO_SNDTIMEO:
 		case SO_RCVTIMEO:
 #ifdef COMPAT_IA32
-			if (curthread->td_proc->p_sysent == &ia32_freebsd_sysvec) {
+			if (curthread->td_proc->p_sysent->sv_flags & SV_ILP32) {
 				struct timeval32 tv32;
 
 				error = sooptcopyin(sopt, &tv32, sizeof tv32,
@@ -2458,7 +2457,7 @@ integer:
 			tv.tv_sec = optval / hz;
 			tv.tv_usec = (optval % hz) * tick;
 #ifdef COMPAT_IA32
-			if (curthread->td_proc->p_sysent == &ia32_freebsd_sysvec) {
+			if (curthread->td_proc->p_sysent->sv_flags & SV_ILP32) {
 				struct timeval32 tv32;
 
 				CP(tv, tv32, tv_sec);
diff --git a/sys/mips/mips/elf_machdep.c b/sys/mips/mips/elf_machdep.c
index 0234722..ba9751f 100644
--- a/sys/mips/mips/elf_machdep.c
+++ b/sys/mips/mips/elf_machdep.c
@@ -74,7 +74,8 @@ struct sysentvec elf32_freebsd_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_ILP32
 };
 
 static Elf32_Brandinfo freebsd_brand_info = {
diff --git a/sys/powerpc/powerpc/elf_machdep.c b/sys/powerpc/powerpc/elf_machdep.c
index dadf3ca..255e7a0 100644
--- a/sys/powerpc/powerpc/elf_machdep.c
+++ b/sys/powerpc/powerpc/elf_machdep.c
@@ -75,7 +75,8 @@ struct sysentvec elf32_freebsd_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_ILP32
 };
 
 static Elf32_Brandinfo freebsd_brand_info = {
diff --git a/sys/sparc64/sparc64/elf_machdep.c b/sys/sparc64/sparc64/elf_machdep.c
index d1e610a..aea4198 100644
--- a/sys/sparc64/sparc64/elf_machdep.c
+++ b/sys/sparc64/sparc64/elf_machdep.c
@@ -87,7 +87,8 @@ static struct sysentvec elf64_freebsd_sysvec = {
 	.sv_copyout_strings = exec_copyout_strings,
 	.sv_setregs	= exec_setregs,
 	.sv_fixlimit	= NULL,
-	.sv_maxssiz	= NULL
+	.sv_maxssiz	= NULL,
+	.sv_flags	= SV_NATIVE | SV_LP64
 };
 
 static Elf64_Brandinfo freebsd_brand_info = {
diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h
index 0ec07a7..25c41c6 100644
--- a/sys/sys/sysent.h
+++ b/sys/sys/sysent.h
@@ -100,8 +100,17 @@ struct sysentvec {
 	void		(*sv_setregs)(struct thread *, u_long, u_long, u_long);
 	void		(*sv_fixlimit)(struct rlimit *, int);
 	u_long		*sv_maxssiz;
+	u_int		sv_flags;
 };
 
+#define	SV_NATIVE	0x0001
+#define	SV_COMPAT	0x0002
+#define	SV_ILP32	0x0004
+#define	SV_LP64		0x0008
+#define	SV_IA32		0x0010
+#define	SV_ALIENABI	0x0020
+#define	SV_AOUT		0x0040
+
 #ifdef _KERNEL
 extern struct sysentvec aout_sysvec;
 extern struct sysentvec elf_freebsd_sysvec;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/svn-src-head/attachments/20081117/8cc7da80/attachment.pgp


More information about the svn-src-head mailing list