diff options
author | Roland Dreier <rolandd@cisco.com> | 2007-10-19 23:01:43 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-10-19 23:01:43 -0400 |
commit | cbfb50e6e2e9c580848c0f51d37c24cdfb1cb704 (patch) | |
tree | ec7f484e83f348957a6cffa40a2c45821722612a /drivers/infiniband | |
parent | 839041329fd3410e07d614f81e75bb43367d8f89 (diff) |
IB/uverbs: Fix checking of userspace object ownership
Commit 9ead190b ("IB/uverbs: Don't serialize with ib_uverbs_idr_mutex")
rewrote how userspace objects are looked up in the uverbs module's
idrs, and introduced a severe bug in the process: there is no checking
that an operation is being performed by the right process any more.
Fix this by adding the missing check of uobj->context in __idr_get_uobj().
Apparently everyone is being very careful to only touch their own
objects, because this bug was introduced in June 2006 in 2.6.18, and
has gone undetected until now.
Cc: stable <stable@kernel.org>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/core/uverbs_cmd.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c index 01d70084aebe..495c803fb11d 100644 --- a/drivers/infiniband/core/uverbs_cmd.c +++ b/drivers/infiniband/core/uverbs_cmd.c | |||
@@ -147,8 +147,12 @@ static struct ib_uobject *__idr_get_uobj(struct idr *idr, int id, | |||
147 | 147 | ||
148 | spin_lock(&ib_uverbs_idr_lock); | 148 | spin_lock(&ib_uverbs_idr_lock); |
149 | uobj = idr_find(idr, id); | 149 | uobj = idr_find(idr, id); |
150 | if (uobj) | 150 | if (uobj) { |
151 | kref_get(&uobj->ref); | 151 | if (uobj->context == context) |
152 | kref_get(&uobj->ref); | ||
153 | else | ||
154 | uobj = NULL; | ||
155 | } | ||
152 | spin_unlock(&ib_uverbs_idr_lock); | 156 | spin_unlock(&ib_uverbs_idr_lock); |
153 | 157 | ||
154 | return uobj; | 158 | return uobj; |