aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/mds_client.c
diff options
context:
space:
mode:
authorNathaniel Yazdani <n1ght.4nd.d4y@gmail.com>2013-08-04 21:04:30 -0700
committerSage Weil <sage@inktank.com>2013-08-09 17:52:58 -0700
commitc338c07c51e3106711fad5eb599e375eadb6855d (patch)
tree8045873c76f120c3beca96a6db7d8fa316cf3eb2 /fs/ceph/mds_client.c
parentlibceph: unregister request in __map_request failed and nofail == false (diff)
downloadlinux-dev-c338c07c51e3106711fad5eb599e375eadb6855d.tar.xz
linux-dev-c338c07c51e3106711fad5eb599e375eadb6855d.zip
ceph: fix null pointer dereference
When register_session() is given an out-of-range argument for mds, ceph_mdsmap_get_addr() will return a null pointer, which would be given to ceph_con_open() & be dereferenced, causing a kernel oops. This fixes bug #4685 in the Ceph bug tracker <http://tracker.ceph.com/issues/4685>. Signed-off-by: Nathaniel Yazdani <n1ght.4nd.d4y@gmail.com> Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'fs/ceph/mds_client.c')
-rw-r--r--fs/ceph/mds_client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 3eb1b4470c85..6b40d8112c64 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -414,6 +414,9 @@ static struct ceph_mds_session *register_session(struct ceph_mds_client *mdsc,
{
struct ceph_mds_session *s;
+ if (mds >= mdsc->mdsmap->m_max_mds)
+ return ERR_PTR(-EINVAL);
+
s = kzalloc(sizeof(*s), GFP_NOFS);
if (!s)
return ERR_PTR(-ENOMEM);