From: Roland Dreier on
> ib_conn->login_buf = kmalloc(ISER_RX_LOGIN_SIZE, GFP_KERNEL);
> if (!ib_conn->login_buf) {
> - goto alloc_err;
> ret = -ENOMEM;
> + goto alloc_err;
> }

This looks like a valid fix but it's the same part of the code that Dan
found more extensive bugs in. Or, can I assume you'll sort this out and
make sure a final patch is sorted out?

Thanks,
Roland
--
Roland Dreier <rolandd(a)cisco.com>
For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Roland Dreier on
So looking at merging this finally, I think I see one problem with the
proposed patch. We have:

> @@ -183,7 +180,7 @@ static int iser_create_ib_conn_res(struct iser_conn *ib_conn)
> ib_conn->fmr_pool = ib_create_fmr_pool(device->pd, &params);
> if (IS_ERR(ib_conn->fmr_pool)) {
> ret = PTR_ERR(ib_conn->fmr_pool);
> - goto fmr_pool_err;
> + goto out_err;
> }

and

> @@ -209,12 +206,7 @@ static int iser_create_ib_conn_res(struct iser_conn *ib_conn)
> ib_conn->fmr_pool, ib_conn->cma_id->qp);
> return ret;
>
> -qp_err:
> - (void)ib_destroy_fmr_pool(ib_conn->fmr_pool);
> -fmr_pool_err:
> - kfree(ib_conn->page_vec);
> - kfree(ib_conn->login_buf);
> -alloc_err:
> +out_err:
> iser_err("unable to alloc mem or create resource, err %d\n", ret);
> return ret;
> }

so if ib_create_fmr_pool() fails, we're left with ib_conn->fmr_pool
holding an error pointer, right? But we're relying on
iser_free_ib_conn_res() to clean up after us, and that has:

if (ib_conn->fmr_pool != NULL)
ib_destroy_fmr_pool(ib_conn->fmr_pool);

so we're going to end up trying to free an error pointer, which will
probably crash.

I think.

Dan or Or, am I wrong here or do we need another iteration of this
patch? (the login_buf and page_vec changes do look correct to me, since
a failed kmalloc() will leave us with a NULL pointer that it is safe to
kfree() later)

- R.
--
Roland Dreier <rolandd(a)cisco.com> || For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/