Commit f683c80c authored by Michael J. Ruhl's avatar Michael J. Ruhl Committed by Doug Ledford

IB/hfi1: Resolve kernel panics by reference counting receive contexts

Base receive contexts can be used by sub contexts.  Because of this,
resources for the context cannot be completely freed until all sub
contexts are done using the base context.

Introduce a reference count so that the base receive context can be
freed only when all sub contexts are done with it.

Use the provided function call for setting default send context
integrity rather than the manual method.

The cleanup path does not set all variables back to NULL after freeing
resources.  Since the clean up code can get called more than once,
(e.g. during context close and on the error path), it is necessary to
make sure that all the variables are NULLed.

Possible crash are:

BUG: unable to handle kernel paging request at 0000000001908900
IP: read_csr+0x24/0x30 [hfi1]
RIP: 0010:read_csr+0x24/0x30 [hfi1]
Call Trace:
 sc_disable+0x40/0x110 [hfi1]
 hfi1_file_close+0x16f/0x360 [hfi1]
 __fput+0xe7/0x210
 ____fput+0xe/0x10

or

kernel BUG at mm/slub.c:3877!
RIP: 0010:kfree+0x14f/0x170
Call Trace:
 hfi1_free_ctxtdata+0x19a/0x2b0 [hfi1]
 ? hfi1_user_exp_rcv_grp_free+0x73/0x80 [hfi1]
 hfi1_file_close+0x20f/0x360 [hfi1]
 __fput+0xe7/0x210
 ____fput+0xe/0x10

Fixes: Commit 62239fc6 ("IB/hfi1: Clean up on context initialization failure")
Reviewed-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Reviewed-by: default avatarSebastian Sanchez <sebastian.sanchez@intel.com>
Signed-off-by: default avatarMichael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent fe4e74ee
...@@ -774,6 +774,8 @@ static int hfi1_file_close(struct inode *inode, struct file *fp) ...@@ -774,6 +774,8 @@ static int hfi1_file_close(struct inode *inode, struct file *fp)
*ev = 0; *ev = 0;
__clear_bit(fdata->subctxt, uctxt->in_use_ctxts); __clear_bit(fdata->subctxt, uctxt->in_use_ctxts);
fdata->uctxt = NULL;
hfi1_rcd_put(uctxt); /* fdata reference */
if (!bitmap_empty(uctxt->in_use_ctxts, HFI1_MAX_SHARED_CTXTS)) { if (!bitmap_empty(uctxt->in_use_ctxts, HFI1_MAX_SHARED_CTXTS)) {
mutex_unlock(&hfi1_mutex); mutex_unlock(&hfi1_mutex);
goto done; goto done;
...@@ -794,16 +796,15 @@ static int hfi1_file_close(struct inode *inode, struct file *fp) ...@@ -794,16 +796,15 @@ static int hfi1_file_close(struct inode *inode, struct file *fp)
/* Clear the context's J_KEY */ /* Clear the context's J_KEY */
hfi1_clear_ctxt_jkey(dd, uctxt->ctxt); hfi1_clear_ctxt_jkey(dd, uctxt->ctxt);
/* /*
* Reset context integrity checks to default. * If a send context is allocated, reset context integrity
* (writes to CSRs probably belong in chip.c) * checks to default and disable the send context.
*/ */
write_kctxt_csr(dd, uctxt->sc->hw_context, SEND_CTXT_CHECK_ENABLE, if (uctxt->sc) {
hfi1_pkt_default_send_ctxt_mask(dd, uctxt->sc->type)); set_pio_integrity(uctxt->sc);
sc_disable(uctxt->sc); sc_disable(uctxt->sc);
}
spin_unlock_irqrestore(&dd->uctxt_lock, flags); spin_unlock_irqrestore(&dd->uctxt_lock, flags);
dd->rcd[uctxt->ctxt] = NULL;
hfi1_free_ctxt_rcv_groups(uctxt); hfi1_free_ctxt_rcv_groups(uctxt);
hfi1_clear_ctxt_pkey(dd, uctxt); hfi1_clear_ctxt_pkey(dd, uctxt);
...@@ -816,8 +817,11 @@ static int hfi1_file_close(struct inode *inode, struct file *fp) ...@@ -816,8 +817,11 @@ static int hfi1_file_close(struct inode *inode, struct file *fp)
hfi1_stats.sps_ctxts--; hfi1_stats.sps_ctxts--;
if (++dd->freectxts == dd->num_user_contexts) if (++dd->freectxts == dd->num_user_contexts)
aspm_enable_all(dd); aspm_enable_all(dd);
/* _rcd_put() should be done after releasing mutex */
dd->rcd[uctxt->ctxt] = NULL;
mutex_unlock(&hfi1_mutex); mutex_unlock(&hfi1_mutex);
hfi1_free_ctxtdata(dd, uctxt); hfi1_rcd_put(uctxt); /* dd reference */
done: done:
mmdrop(fdata->mm); mmdrop(fdata->mm);
kobject_put(&dd->kobj); kobject_put(&dd->kobj);
...@@ -887,16 +891,17 @@ static int assign_ctxt(struct hfi1_filedata *fd, struct hfi1_user_info *uinfo) ...@@ -887,16 +891,17 @@ static int assign_ctxt(struct hfi1_filedata *fd, struct hfi1_user_info *uinfo)
ret = wait_event_interruptible(fd->uctxt->wait, !test_bit( ret = wait_event_interruptible(fd->uctxt->wait, !test_bit(
HFI1_CTXT_BASE_UNINIT, HFI1_CTXT_BASE_UNINIT,
&fd->uctxt->event_flags)); &fd->uctxt->event_flags));
if (test_bit(HFI1_CTXT_BASE_FAILED, &fd->uctxt->event_flags)) { if (test_bit(HFI1_CTXT_BASE_FAILED, &fd->uctxt->event_flags))
clear_bit(fd->subctxt, fd->uctxt->in_use_ctxts); ret = -ENOMEM;
return -ENOMEM;
}
/* The only thing a sub context needs is the user_xxx stuff */ /* The only thing a sub context needs is the user_xxx stuff */
if (!ret) if (!ret)
ret = init_user_ctxt(fd); ret = init_user_ctxt(fd);
if (ret) if (ret) {
clear_bit(fd->subctxt, fd->uctxt->in_use_ctxts); clear_bit(fd->subctxt, fd->uctxt->in_use_ctxts);
hfi1_rcd_put(fd->uctxt);
}
} else if (!ret) { } else if (!ret) {
ret = setup_base_ctxt(fd); ret = setup_base_ctxt(fd);
if (fd->uctxt->subctxt_cnt) { if (fd->uctxt->subctxt_cnt) {
...@@ -961,6 +966,8 @@ static int find_sub_ctxt(struct hfi1_filedata *fd, ...@@ -961,6 +966,8 @@ static int find_sub_ctxt(struct hfi1_filedata *fd,
fd->uctxt = uctxt; fd->uctxt = uctxt;
fd->subctxt = subctxt; fd->subctxt = subctxt;
hfi1_rcd_get(uctxt);
__set_bit(fd->subctxt, uctxt->in_use_ctxts); __set_bit(fd->subctxt, uctxt->in_use_ctxts);
return 1; return 1;
...@@ -1069,11 +1076,14 @@ static int allocate_ctxt(struct hfi1_filedata *fd, struct hfi1_devdata *dd, ...@@ -1069,11 +1076,14 @@ static int allocate_ctxt(struct hfi1_filedata *fd, struct hfi1_devdata *dd,
aspm_disable_all(dd); aspm_disable_all(dd);
fd->uctxt = uctxt; fd->uctxt = uctxt;
/* Count the reference for the fd */
hfi1_rcd_get(uctxt);
return 0; return 0;
ctxdata_free: ctxdata_free:
dd->rcd[ctxt] = NULL; dd->rcd[ctxt] = NULL;
hfi1_free_ctxtdata(dd, uctxt); hfi1_rcd_put(uctxt);
return ret; return ret;
} }
...@@ -1273,6 +1283,7 @@ static int setup_base_ctxt(struct hfi1_filedata *fd) ...@@ -1273,6 +1283,7 @@ static int setup_base_ctxt(struct hfi1_filedata *fd)
return 0; return 0;
setup_failed: setup_failed:
/* Call _free_ctxtdata, not _rcd_put(). We still need the context. */
hfi1_free_ctxtdata(dd, uctxt); hfi1_free_ctxtdata(dd, uctxt);
return ret; return ret;
} }
......
...@@ -213,11 +213,9 @@ struct hfi1_ctxtdata { ...@@ -213,11 +213,9 @@ struct hfi1_ctxtdata {
/* dynamic receive available interrupt timeout */ /* dynamic receive available interrupt timeout */
u32 rcvavail_timeout; u32 rcvavail_timeout;
/* /* Reference count the base context usage */
* number of opens (including slave sub-contexts) on this instance struct kref kref;
* (ignoring forks, dup, etc. for now)
*/
int cnt;
/* Device context index */ /* Device context index */
unsigned ctxt; unsigned ctxt;
/* /*
...@@ -1291,7 +1289,8 @@ struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, u32 ctxt, ...@@ -1291,7 +1289,8 @@ struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, u32 ctxt,
void hfi1_init_pportdata(struct pci_dev *pdev, struct hfi1_pportdata *ppd, void hfi1_init_pportdata(struct pci_dev *pdev, struct hfi1_pportdata *ppd,
struct hfi1_devdata *dd, u8 hw_pidx, u8 port); struct hfi1_devdata *dd, u8 hw_pidx, u8 port);
void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd); void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd);
int hfi1_rcd_put(struct hfi1_ctxtdata *rcd);
void hfi1_rcd_get(struct hfi1_ctxtdata *rcd);
int handle_receive_interrupt(struct hfi1_ctxtdata *rcd, int thread); int handle_receive_interrupt(struct hfi1_ctxtdata *rcd, int thread);
int handle_receive_interrupt_nodma_rtail(struct hfi1_ctxtdata *rcd, int thread); int handle_receive_interrupt_nodma_rtail(struct hfi1_ctxtdata *rcd, int thread);
int handle_receive_interrupt_dma_rtail(struct hfi1_ctxtdata *rcd, int thread); int handle_receive_interrupt_dma_rtail(struct hfi1_ctxtdata *rcd, int thread);
......
...@@ -191,15 +191,45 @@ int hfi1_create_ctxts(struct hfi1_devdata *dd) ...@@ -191,15 +191,45 @@ int hfi1_create_ctxts(struct hfi1_devdata *dd)
nomem: nomem:
ret = -ENOMEM; ret = -ENOMEM;
if (dd->rcd) { for (i = 0; dd->rcd && i < dd->first_dyn_alloc_ctxt; ++i)
for (i = 0; i < dd->num_rcv_contexts; ++i) hfi1_rcd_put(dd->rcd[i]);
hfi1_free_ctxtdata(dd, dd->rcd[i]);
} /* All the contexts should be freed, free the array */
kfree(dd->rcd); kfree(dd->rcd);
dd->rcd = NULL; dd->rcd = NULL;
return ret; return ret;
} }
/*
* Helper routines for the receive context reference count (rcd and uctxt)
*/
static void hfi1_rcd_init(struct hfi1_ctxtdata *rcd)
{
kref_init(&rcd->kref);
}
static void hfi1_rcd_free(struct kref *kref)
{
struct hfi1_ctxtdata *rcd =
container_of(kref, struct hfi1_ctxtdata, kref);
hfi1_free_ctxtdata(rcd->dd, rcd);
kfree(rcd);
}
int hfi1_rcd_put(struct hfi1_ctxtdata *rcd)
{
if (rcd)
return kref_put(&rcd->kref, hfi1_rcd_free);
return 0;
}
void hfi1_rcd_get(struct hfi1_ctxtdata *rcd)
{
kref_get(&rcd->kref);
}
/* /*
* Common code for user and kernel context setup. * Common code for user and kernel context setup.
*/ */
...@@ -332,6 +362,8 @@ struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, u32 ctxt, ...@@ -332,6 +362,8 @@ struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, u32 ctxt,
if (!rcd->opstats) if (!rcd->opstats)
goto bail; goto bail;
} }
hfi1_rcd_init(rcd);
} }
return rcd; return rcd;
bail: bail:
...@@ -931,14 +963,11 @@ static void shutdown_device(struct hfi1_devdata *dd) ...@@ -931,14 +963,11 @@ static void shutdown_device(struct hfi1_devdata *dd)
* @rcd: the ctxtdata structure * @rcd: the ctxtdata structure
* *
* free up any allocated data for a context * free up any allocated data for a context
* This should not touch anything that would affect a simultaneous
* re-allocation of context data, because it is called after hfi1_mutex
* is released (and can be called from reinit as well).
* It should never change any chip state, or global driver state. * It should never change any chip state, or global driver state.
*/ */
void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd) void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
{ {
unsigned e; u32 e;
if (!rcd) if (!rcd)
return; return;
...@@ -957,6 +986,7 @@ void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd) ...@@ -957,6 +986,7 @@ void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
/* all the RcvArray entries should have been cleared by now */ /* all the RcvArray entries should have been cleared by now */
kfree(rcd->egrbufs.rcvtids); kfree(rcd->egrbufs.rcvtids);
rcd->egrbufs.rcvtids = NULL;
for (e = 0; e < rcd->egrbufs.alloced; e++) { for (e = 0; e < rcd->egrbufs.alloced; e++) {
if (rcd->egrbufs.buffers[e].dma) if (rcd->egrbufs.buffers[e].dma)
...@@ -966,13 +996,21 @@ void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd) ...@@ -966,13 +996,21 @@ void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
rcd->egrbufs.buffers[e].dma); rcd->egrbufs.buffers[e].dma);
} }
kfree(rcd->egrbufs.buffers); kfree(rcd->egrbufs.buffers);
rcd->egrbufs.alloced = 0;
rcd->egrbufs.buffers = NULL;
sc_free(rcd->sc); sc_free(rcd->sc);
rcd->sc = NULL;
vfree(rcd->subctxt_uregbase); vfree(rcd->subctxt_uregbase);
vfree(rcd->subctxt_rcvegrbuf); vfree(rcd->subctxt_rcvegrbuf);
vfree(rcd->subctxt_rcvhdr_base); vfree(rcd->subctxt_rcvhdr_base);
kfree(rcd->opstats); kfree(rcd->opstats);
kfree(rcd);
rcd->subctxt_uregbase = NULL;
rcd->subctxt_rcvegrbuf = NULL;
rcd->subctxt_rcvhdr_base = NULL;
rcd->opstats = NULL;
} }
/* /*
...@@ -1366,7 +1404,7 @@ static void cleanup_device_data(struct hfi1_devdata *dd) ...@@ -1366,7 +1404,7 @@ static void cleanup_device_data(struct hfi1_devdata *dd)
tmp[ctxt] = NULL; /* debugging paranoia */ tmp[ctxt] = NULL; /* debugging paranoia */
if (rcd) { if (rcd) {
hfi1_clear_tids(rcd); hfi1_clear_tids(rcd);
hfi1_free_ctxtdata(dd, rcd); hfi1_rcd_put(rcd);
} }
} }
kfree(tmp); kfree(tmp);
......
...@@ -156,11 +156,11 @@ static int allocate_vnic_ctxt(struct hfi1_devdata *dd, ...@@ -156,11 +156,11 @@ static int allocate_vnic_ctxt(struct hfi1_devdata *dd,
return ret; return ret;
bail: bail:
/* /*
* hfi1_free_ctxtdata() also releases send_context * hfi1_rcd_put() will call hfi1_free_ctxtdata(), which will
* structure if uctxt->sc is not null * release send_context structure if uctxt->sc is not null
*/ */
dd->rcd[uctxt->ctxt] = NULL; dd->rcd[uctxt->ctxt] = NULL;
hfi1_free_ctxtdata(dd, uctxt); hfi1_rcd_put(uctxt);
dd_dev_dbg(dd, "vnic allocation failed. rc %d\n", ret); dd_dev_dbg(dd, "vnic allocation failed. rc %d\n", ret);
return ret; return ret;
} }
...@@ -208,7 +208,7 @@ static void deallocate_vnic_ctxt(struct hfi1_devdata *dd, ...@@ -208,7 +208,7 @@ static void deallocate_vnic_ctxt(struct hfi1_devdata *dd,
hfi1_clear_ctxt_pkey(dd, uctxt); hfi1_clear_ctxt_pkey(dd, uctxt);
hfi1_stats.sps_ctxts--; hfi1_stats.sps_ctxts--;
hfi1_free_ctxtdata(dd, uctxt); hfi1_rcd_put(uctxt);
} }
void hfi1_vnic_setup(struct hfi1_devdata *dd) void hfi1_vnic_setup(struct hfi1_devdata *dd)
...@@ -751,6 +751,7 @@ static int hfi1_vnic_init(struct hfi1_vnic_vport_info *vinfo) ...@@ -751,6 +751,7 @@ static int hfi1_vnic_init(struct hfi1_vnic_vport_info *vinfo)
rc = hfi1_vnic_allot_ctxt(dd, &dd->vnic.ctxt[i]); rc = hfi1_vnic_allot_ctxt(dd, &dd->vnic.ctxt[i]);
if (rc) if (rc)
break; break;
hfi1_rcd_get(dd->vnic.ctxt[i]);
dd->vnic.ctxt[i]->vnic_q_idx = i; dd->vnic.ctxt[i]->vnic_q_idx = i;
} }
...@@ -762,6 +763,7 @@ static int hfi1_vnic_init(struct hfi1_vnic_vport_info *vinfo) ...@@ -762,6 +763,7 @@ static int hfi1_vnic_init(struct hfi1_vnic_vport_info *vinfo)
*/ */
while (i-- > dd->vnic.num_ctxt) { while (i-- > dd->vnic.num_ctxt) {
deallocate_vnic_ctxt(dd, dd->vnic.ctxt[i]); deallocate_vnic_ctxt(dd, dd->vnic.ctxt[i]);
hfi1_rcd_put(dd->vnic.ctxt[i]);
dd->vnic.ctxt[i] = NULL; dd->vnic.ctxt[i] = NULL;
} }
goto alloc_fail; goto alloc_fail;
...@@ -791,6 +793,7 @@ static void hfi1_vnic_deinit(struct hfi1_vnic_vport_info *vinfo) ...@@ -791,6 +793,7 @@ static void hfi1_vnic_deinit(struct hfi1_vnic_vport_info *vinfo)
if (--dd->vnic.num_vports == 0) { if (--dd->vnic.num_vports == 0) {
for (i = 0; i < dd->vnic.num_ctxt; i++) { for (i = 0; i < dd->vnic.num_ctxt; i++) {
deallocate_vnic_ctxt(dd, dd->vnic.ctxt[i]); deallocate_vnic_ctxt(dd, dd->vnic.ctxt[i]);
hfi1_rcd_put(dd->vnic.ctxt[i]);
dd->vnic.ctxt[i] = NULL; dd->vnic.ctxt[i] = NULL;
} }
hfi1_deinit_vnic_rsm(dd); hfi1_deinit_vnic_rsm(dd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment