summaryrefslogtreecommitdiffstats
path: root/sys/cddl/contrib/opensolaris/common
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2009-07-11 22:43:20 +0000
committermarcel <marcel@FreeBSD.org>2009-07-11 22:43:20 +0000
commitf9e85cc3623a95d09e98f45f578d812b0e960b17 (patch)
tree4ac5d94249efba851e0f8f63a48fae7c8fcd4fc6 /sys/cddl/contrib/opensolaris/common
parent45e5ee4e4abcd25acb2f6f45002bac051f1be006 (diff)
downloadFreeBSD-src-f9e85cc3623a95d09e98f45f578d812b0e960b17.zip
FreeBSD-src-f9e85cc3623a95d09e98f45f578d812b0e960b17.tar.gz
In nvpair_native_embedded_array(), meaningless pointers are zeroed.
The programmer was aware that alignment was not guaranteed in the packed structure and used bzero() to NULL out the pointers. However, on ia64, the compiler is quite agressive in finding ILP and calls to bzero() are often replaced by simple assignments (i.e. stores). Especially when the width or size in question corresponds with a store instruction (i.e. st1, st2, st4 or st8). The problem here is not a compiler bug. The address of the memory to zero-out was given by '&packed->nvl_priv' and given the type of the 'packed' pointer the compiler could assume proper alignment for the replacement of bzero() with an 8-byte wide store to be valid. The problem is with the programmer. The programmer knew that the address did not have the alignment guarantees needed for a regular assignment, but failed to inform the compiler of that fact. In fact, the programmer told the compiler the opposite: alignment is guaranteed. The fix is to avoid using a pointer of type "nvlist_t *" and instead use a "char *" pointer as the basis for calculating the address. This tells the compiler that only 1-byte alignment can be assumed and the compiler will either keep the bzero() call or instead replace it with a sequence of byte-wise stores. Both are valid. Approved by: re (kib)
Diffstat (limited to 'sys/cddl/contrib/opensolaris/common')
-rw-r--r--sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c b/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c
index 9cdc534..e573334 100644
--- a/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c
+++ b/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c
@@ -2543,7 +2543,6 @@ nvpair_native_embedded_array(nvstream_t *nvs, nvpair_t *nvp)
nvs_native_t *native = (nvs_native_t *)nvs->nvs_private;
char *value = native->n_curr - nvp->nvp_size + NVP_VALOFF(nvp);
size_t len = NVP_NELEM(nvp) * sizeof (uint64_t);
- nvlist_t *packed = (nvlist_t *)((uintptr_t)value + len);
int i;
/*
* Null out pointers that are meaningless in the packed
@@ -2552,13 +2551,17 @@ nvpair_native_embedded_array(nvstream_t *nvs, nvpair_t *nvp)
*/
bzero(value, len);
- for (i = 0; i < NVP_NELEM(nvp); i++, packed++)
+ value += len;
+ for (i = 0; i < NVP_NELEM(nvp); i++) {
/*
* Null out the pointer that is meaningless in the
* packed structure. The address may not be aligned,
* so we have to use bzero.
*/
- bzero(&packed->nvl_priv, sizeof (packed->nvl_priv));
+ bzero(value + offsetof(nvlist_t, nvl_priv),
+ sizeof(((nvlist_t *)NULL)->nvl_priv));
+ value += sizeof(nvlist_t);
+ }
}
return (nvs_embedded_nvl_array(nvs, nvp, NULL));
OpenPOWER on IntegriCloud