3522 zfs module should not allow uninitialized variables
Reviewed by: Sebastien Roy <seb@delphix.com>
Reviewed by: Adam Leventhal <ahl@delphix.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Approved by: Garrett D'Amore <garrett@damore.org>

References:
  https://www.illumos.org/issues/3522
  illumos/illumos-gate@d5285cae91

Ported-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>

Porting notes:

1. ZFSOnLinux had already addressed many of these issues because of
   its use of -Wall. However, the manner in which they were addressed
   differed. The illumos fixes replace the ones previously made in
   ZFSOnLinux to reduce code differences.

2. Part of the upstream patch made a small change to arc.c that might
   address zfsonlinux/zfs#1334.

3. The initialization of aclsize in zfs_log_create() differs because
   vsecp is a NULL pointer on ZFSOnLinux.

4. The changes to zfs_register_callbacks() were dropped because it
   has diverged and needs to be resynced.
This commit is contained in:
George Wilson 2013-02-10 22:21:05 -08:00 committed by Brian Behlendorf
parent a35beedfb3
commit a117a6d66e
12 changed files with 31 additions and 22 deletions

View File

@ -3089,7 +3089,7 @@ top:
uint64_t size = BP_GET_LSIZE(bp); uint64_t size = BP_GET_LSIZE(bp);
arc_callback_t *acb; arc_callback_t *acb;
vdev_t *vd = NULL; vdev_t *vd = NULL;
uint64_t addr = -1; uint64_t addr = 0;
boolean_t devw = B_FALSE; boolean_t devw = B_FALSE;
if (hdr == NULL) { if (hdr == NULL) {
@ -3210,6 +3210,10 @@ top:
cb->l2rcb_flags = zio_flags; cb->l2rcb_flags = zio_flags;
cb->l2rcb_compress = hdr->b_l2hdr->b_compress; cb->l2rcb_compress = hdr->b_l2hdr->b_compress;
ASSERT(addr >= VDEV_LABEL_START_SIZE &&
addr + size < vd->vdev_psize -
VDEV_LABEL_END_SIZE);
/* /*
* l2arc read. The SCL_L2ARC lock will be * l2arc read. The SCL_L2ARC lock will be
* released by l2arc_read_done(). * released by l2arc_read_done().
@ -3480,8 +3484,8 @@ arc_release(arc_buf_t *buf, void *tag)
if (l2hdr) { if (l2hdr) {
mutex_enter(&l2arc_buflist_mtx); mutex_enter(&l2arc_buflist_mtx);
hdr->b_l2hdr = NULL; hdr->b_l2hdr = NULL;
buf_size = hdr->b_size;
} }
buf_size = hdr->b_size;
/* /*
* Do we have more than one buf? * Do we have more than one buf?

View File

@ -400,8 +400,7 @@ dmu_buf_hold_array_by_dnode(dnode_t *dn, uint64_t offset, uint64_t length,
if (dn->dn_objset->os_dsl_dataset) if (dn->dn_objset->os_dsl_dataset)
dp = dn->dn_objset->os_dsl_dataset->ds_dir->dd_pool; dp = dn->dn_objset->os_dsl_dataset->ds_dir->dd_pool;
if (dp && dsl_pool_sync_context(dp)) start = gethrtime();
start = gethrtime();
zio = zio_root(dn->dn_objset->os_spa, NULL, NULL, ZIO_FLAG_CANFAIL); zio = zio_root(dn->dn_objset->os_spa, NULL, NULL, ZIO_FLAG_CANFAIL);
blkid = dbuf_whichblock(dn, offset); blkid = dbuf_whichblock(dn, offset);
for (i = 0; i < nblks; i++) { for (i = 0; i < nblks; i++) {

View File

@ -1198,7 +1198,8 @@ dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx)
objset_t *os = dn->dn_objset; objset_t *os = dn->dn_objset;
void *data = NULL; void *data = NULL;
dmu_buf_impl_t *db = NULL; dmu_buf_impl_t *db = NULL;
uint64_t *user = NULL, *group = NULL; uint64_t *user = NULL;
uint64_t *group = NULL;
int flags = dn->dn_id_flags; int flags = dn->dn_id_flags;
int error; int error;
boolean_t have_spill = B_FALSE; boolean_t have_spill = B_FALSE;

View File

@ -431,11 +431,8 @@ dsl_dataset_hold_obj(dsl_pool_t *dp, uint64_t dsobj, void *tag,
ds->ds_reserved = ds->ds_quota = 0; ds->ds_reserved = ds->ds_quota = 0;
} }
if (err == 0) { if (err != 0 || (winner = dmu_buf_set_user_ie(dbuf, ds,
winner = dmu_buf_set_user_ie(dbuf, ds, &ds->ds_phys, &ds->ds_phys, dsl_dataset_evict)) != NULL) {
dsl_dataset_evict);
}
if (err || winner) {
bplist_destroy(&ds->ds_pending_deadlist); bplist_destroy(&ds->ds_pending_deadlist);
dsl_deadlist_close(&ds->ds_deadlist); dsl_deadlist_close(&ds->ds_deadlist);
if (ds->ds_prev) if (ds->ds_prev)

View File

@ -1644,7 +1644,8 @@ dsl_scan_scrub_cb(dsl_pool_t *dp,
zio_priority = ZIO_PRIORITY_SCRUB; zio_priority = ZIO_PRIORITY_SCRUB;
needs_io = B_TRUE; needs_io = B_TRUE;
scan_delay = zfs_scrub_delay; scan_delay = zfs_scrub_delay;
} else if (scn->scn_phys.scn_func == POOL_SCAN_RESILVER) { } else {
ASSERT3U(scn->scn_phys.scn_func, ==, POOL_SCAN_RESILVER);
zio_flags |= ZIO_FLAG_RESILVER; zio_flags |= ZIO_FLAG_RESILVER;
zio_priority = ZIO_PRIORITY_RESILVER; zio_priority = ZIO_PRIORITY_RESILVER;
needs_io = B_FALSE; needs_io = B_FALSE;

View File

@ -50,7 +50,8 @@ lzjb_compress(void *s_start, void *d_start, size_t s_len, size_t d_len, int n)
{ {
uchar_t *src = s_start; uchar_t *src = s_start;
uchar_t *dst = d_start; uchar_t *dst = d_start;
uchar_t *cpy, *copymap = NULL; uchar_t *cpy;
uchar_t *copymap = NULL;
int copymask = 1 << (NBBY - 1); int copymask = 1 << (NBBY - 1);
int mlen, offset, hash; int mlen, offset, hash;
uint16_t *hp; uint16_t *hp;
@ -104,7 +105,8 @@ lzjb_decompress(void *s_start, void *d_start, size_t s_len, size_t d_len, int n)
uchar_t *src = s_start; uchar_t *src = s_start;
uchar_t *dst = d_start; uchar_t *dst = d_start;
uchar_t *d_end = (uchar_t *)d_start + d_len; uchar_t *d_end = (uchar_t *)d_start + d_len;
uchar_t *cpy, copymap = 0; uchar_t *cpy;
uchar_t copymap = 0;
int copymask = 1 << (NBBY - 1); int copymask = 1 << (NBBY - 1);
while (dst < d_end) { while (dst < d_end) {

View File

@ -679,7 +679,8 @@ sa_build_layouts(sa_handle_t *hdl, sa_bulk_attr_t *attr_desc, int attr_count,
int buf_space; int buf_space;
sa_attr_type_t *attrs, *attrs_start; sa_attr_type_t *attrs, *attrs_start;
int i, lot_count; int i, lot_count;
int hdrsize, spillhdrsize = 0; int hdrsize;
int spillhdrsize = 0;
int used; int used;
dmu_object_type_t bonustype; dmu_object_type_t bonustype;
sa_lot_t *lot; sa_lot_t *lot;

View File

@ -1443,7 +1443,7 @@ spa_load_l2cache(spa_t *spa)
uint_t nl2cache; uint_t nl2cache;
int i, j, oldnvdevs; int i, j, oldnvdevs;
uint64_t guid; uint64_t guid;
vdev_t *vd, **oldvdevs, **newvdevs = NULL; vdev_t *vd, **oldvdevs, **newvdevs;
spa_aux_vdev_t *sav = &spa->spa_l2cache; spa_aux_vdev_t *sav = &spa->spa_l2cache;
ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL); ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
@ -1454,6 +1454,7 @@ spa_load_l2cache(spa_t *spa)
newvdevs = kmem_alloc(nl2cache * sizeof (void *), KM_PUSHPAGE); newvdevs = kmem_alloc(nl2cache * sizeof (void *), KM_PUSHPAGE);
} else { } else {
nl2cache = 0; nl2cache = 0;
newvdevs = NULL;
} }
oldvdevs = sav->sav_vdevs; oldvdevs = sav->sav_vdevs;

View File

@ -1190,7 +1190,8 @@ vdev_raidz_matrix_reconstruct(raidz_map_t *rm, int n, int nmissing,
uint64_t ccount; uint64_t ccount;
uint8_t *dst[VDEV_RAIDZ_MAXPARITY]; uint8_t *dst[VDEV_RAIDZ_MAXPARITY];
uint64_t dcount[VDEV_RAIDZ_MAXPARITY]; uint64_t dcount[VDEV_RAIDZ_MAXPARITY];
uint8_t log = 0, val; uint8_t log = 0;
uint8_t val;
int ll; int ll;
uint8_t *invlog[VDEV_RAIDZ_MAXPARITY]; uint8_t *invlog[VDEV_RAIDZ_MAXPARITY];
uint8_t *p, *pp; uint8_t *p, *pp;

View File

@ -565,9 +565,9 @@ zfs_fuid_create(zfs_sb_t *zsb, uint64_t id, cred_t *cr,
uint32_t fuid_idx = FUID_INDEX(id); uint32_t fuid_idx = FUID_INDEX(id);
uint32_t rid; uint32_t rid;
idmap_stat status; idmap_stat status;
uint64_t idx; uint64_t idx = 0;
zfs_fuid_t *zfuid = NULL; zfs_fuid_t *zfuid = NULL;
zfs_fuid_info_t *fuidp; zfs_fuid_info_t *fuidp = NULL;
/* /*
* If POSIX ID, or entry is already a FUID then * If POSIX ID, or entry is already a FUID then
@ -592,6 +592,9 @@ zfs_fuid_create(zfs_sb_t *zsb, uint64_t id, cred_t *cr,
if (fuidp == NULL) if (fuidp == NULL)
return (UID_NOBODY); return (UID_NOBODY);
VERIFY3U(type, >=, ZFS_OWNER);
VERIFY3U(type, <=, ZFS_ACE_GROUP);
switch (type) { switch (type) {
case ZFS_ACE_USER: case ZFS_ACE_USER:
case ZFS_ACE_GROUP: case ZFS_ACE_GROUP:
@ -608,7 +611,7 @@ zfs_fuid_create(zfs_sb_t *zsb, uint64_t id, cred_t *cr,
idx = FUID_INDEX(fuidp->z_fuid_group); idx = FUID_INDEX(fuidp->z_fuid_group);
break; break;
}; };
domain = fuidp->z_domain_table[idx -1]; domain = fuidp->z_domain_table[idx - 1];
} else { } else {
if (type == ZFS_OWNER || type == ZFS_ACE_USER) if (type == ZFS_OWNER || type == ZFS_ACE_USER)
status = kidmap_getsidbyuid(crgetzone(cr), id, status = kidmap_getsidbyuid(crgetzone(cr), id,

View File

@ -239,10 +239,10 @@ zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
itx_t *itx; itx_t *itx;
lr_create_t *lr; lr_create_t *lr;
lr_acl_create_t *lracl; lr_acl_create_t *lracl;
xvattr_t *xvap = (xvattr_t *)vap;
size_t aclsize = 0; size_t aclsize = 0;
size_t xvatsize = 0; size_t xvatsize = 0;
size_t txsize; size_t txsize;
xvattr_t *xvap = (xvattr_t *)vap;
void *end; void *end;
size_t lrsize; size_t lrsize;
size_t namesize = strlen(name) + 1; size_t namesize = strlen(name) + 1;
@ -269,7 +269,6 @@ zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
txsize = sizeof (*lr) + namesize + fuidsz + xvatsize; txsize = sizeof (*lr) + namesize + fuidsz + xvatsize;
lrsize = sizeof (*lr); lrsize = sizeof (*lr);
} else { } else {
aclsize = (vsecp) ? vsecp->vsa_aclentsz : 0;
txsize = txsize =
sizeof (lr_acl_create_t) + namesize + fuidsz + sizeof (lr_acl_create_t) + namesize + fuidsz +
ZIL_ACE_LENGTH(aclsize) + xvatsize; ZIL_ACE_LENGTH(aclsize) + xvatsize;

View File

@ -2434,7 +2434,7 @@ zfs_setattr(struct inode *ip, vattr_t *vap, int flags, cred_t *cr)
vattr_t oldva; vattr_t oldva;
xvattr_t *tmpxvattr; xvattr_t *tmpxvattr;
uint_t mask = vap->va_mask; uint_t mask = vap->va_mask;
uint_t saved_mask; uint_t saved_mask = 0;
int trim_mask = 0; int trim_mask = 0;
uint64_t new_mode; uint64_t new_mode;
uint64_t new_uid, new_gid; uint64_t new_uid, new_gid;