Commit 7c9d845f authored by Trond Myklebust's avatar Trond Myklebust

NFSv4/pNFS: Fix another issue with a list iterator pointing to the head

In nfs4_callback_devicenotify(), if we don't find a matching entry for
the deviceid, we're left with a pointer to 'struct nfs_server' that
actually points to the list of super blocks associated with our struct
nfs_client.
Furthermore, even if we have a valid pointer, nothing pins the super
block, and so the struct nfs_server could end up getting freed while
we're using it.

Since all we want is a pointer to the struct pnfs_layoutdriver_type,
let's skip all the iteration over super blocks, and just use APIs to
find the layout driver directly.
Reported-by: default avatarXiaomeng Tong <xiam0nd.tong@gmail.com>
Fixes: 1be5683b ("pnfs: CB_NOTIFY_DEVICEID")
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent d02d81ef
...@@ -358,12 +358,11 @@ __be32 nfs4_callback_devicenotify(void *argp, void *resp, ...@@ -358,12 +358,11 @@ __be32 nfs4_callback_devicenotify(void *argp, void *resp,
struct cb_process_state *cps) struct cb_process_state *cps)
{ {
struct cb_devicenotifyargs *args = argp; struct cb_devicenotifyargs *args = argp;
const struct pnfs_layoutdriver_type *ld = NULL;
uint32_t i; uint32_t i;
__be32 res = 0; __be32 res = 0;
struct nfs_client *clp = cps->clp;
struct nfs_server *server = NULL;
if (!clp) { if (!cps->clp) {
res = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION); res = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION);
goto out; goto out;
} }
...@@ -371,23 +370,15 @@ __be32 nfs4_callback_devicenotify(void *argp, void *resp, ...@@ -371,23 +370,15 @@ __be32 nfs4_callback_devicenotify(void *argp, void *resp,
for (i = 0; i < args->ndevs; i++) { for (i = 0; i < args->ndevs; i++) {
struct cb_devicenotifyitem *dev = &args->devs[i]; struct cb_devicenotifyitem *dev = &args->devs[i];
if (!server || if (!ld || ld->id != dev->cbd_layout_type) {
server->pnfs_curr_ld->id != dev->cbd_layout_type) { pnfs_put_layoutdriver(ld);
rcu_read_lock(); ld = pnfs_find_layoutdriver(dev->cbd_layout_type);
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) if (!ld)
if (server->pnfs_curr_ld &&
server->pnfs_curr_ld->id == dev->cbd_layout_type) {
rcu_read_unlock();
goto found;
}
rcu_read_unlock();
continue; continue;
} }
nfs4_delete_deviceid(ld, cps->clp, &dev->cbd_dev_id);
found:
nfs4_delete_deviceid(server->pnfs_curr_ld, clp, &dev->cbd_dev_id);
} }
pnfs_put_layoutdriver(ld);
out: out:
kfree(args->devs); kfree(args->devs);
return res; return res;
......
...@@ -92,6 +92,17 @@ find_pnfs_driver(u32 id) ...@@ -92,6 +92,17 @@ find_pnfs_driver(u32 id)
return local; return local;
} }
const struct pnfs_layoutdriver_type *pnfs_find_layoutdriver(u32 id)
{
return find_pnfs_driver(id);
}
void pnfs_put_layoutdriver(const struct pnfs_layoutdriver_type *ld)
{
if (ld)
module_put(ld->owner);
}
void void
unset_pnfs_layoutdriver(struct nfs_server *nfss) unset_pnfs_layoutdriver(struct nfs_server *nfss)
{ {
......
...@@ -234,6 +234,8 @@ struct pnfs_devicelist { ...@@ -234,6 +234,8 @@ struct pnfs_devicelist {
extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *); extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *);
extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *); extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *);
extern const struct pnfs_layoutdriver_type *pnfs_find_layoutdriver(u32 id);
extern void pnfs_put_layoutdriver(const struct pnfs_layoutdriver_type *ld);
/* nfs4proc.c */ /* nfs4proc.c */
extern size_t max_response_pages(struct nfs_server *server); extern size_t max_response_pages(struct nfs_server *server);
......
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