aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Reshetova <elena.reshetova@intel.com>2017-11-29 06:15:44 -0500
committerJ. Bruce Fields <bfields@redhat.com>2017-12-21 15:24:18 -0500
commitbe819f7b66031c4a21fdc8edc47a3ecd4cac635d (patch)
treeff1891ade5cae50d98dced607382c7a7b46118d3
parent81833de1a46edce9ca20cfe079872ac1c20ef359 (diff)
lockd: convert nsm_handle.sm_count from atomic_t to refcount_t
atomic_t variables are currently used to implement reference counters with the following properties: - counter is initialized to 1 using atomic_set() - a resource is freed upon counter reaching zero - once counter reaches zero, its further increments aren't allowed - counter schema uses basic atomic operations (set, inc, inc_not_zero, dec_and_test, etc.) Such atomic variables should be converted to a newly provided refcount_t type and API that prevents accidental counter overflows and underflows. This is important since overflows and underflows can lead to use-after-free situation and be exploitable. The variable nsm_handle.sm_count is used as pure reference counter. Convert it to refcount_t and fix up the operations. **Important note for maintainers: Some functions from refcount_t API defined in lib/refcount.c have different memory ordering guarantees than their atomic counterparts. The full comparison can be seen in https://lkml.org/lkml/2017/11/15/57 and it is hopefully soon in state to be merged to the documentation tree. Normally the differences should not matter since refcount_t provides enough guarantees to satisfy the refcounting use cases, but in some rare cases it might matter. Please double check that you don't have some undocumented memory guarantees for this variable usage. For the nsm_handle.sm_count it might make a difference in following places: - nsm_release(): decrement in refcount_dec_and_lock() only provides RELEASE ordering, control dependency on success and holds a spin lock on success vs. fully ordered atomic counterpart. No change for the spin lock guarantees. Suggested-by: Kees Cook <keescook@chromium.org> Reviewed-by: David Windsor <dwindsor@gmail.com> Reviewed-by: Hans Liljestrand <ishkamiel@gmail.com> Signed-off-by: Elena Reshetova <elena.reshetova@intel.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r--fs/lockd/host.c2
-rw-r--r--fs/lockd/mon.c14
-rw-r--r--include/linux/lockd/lockd.h2
3 files changed, 9 insertions, 9 deletions
diff --git a/fs/lockd/host.c b/fs/lockd/host.c
index 826a89184f90..063095ee39ec 100644
--- a/fs/lockd/host.c
+++ b/fs/lockd/host.c
@@ -114,7 +114,7 @@ static struct nlm_host *nlm_alloc_host(struct nlm_lookup_host_info *ni,
114 unsigned long now = jiffies; 114 unsigned long now = jiffies;
115 115
116 if (nsm != NULL) 116 if (nsm != NULL)
117 atomic_inc(&nsm->sm_count); 117 refcount_inc(&nsm->sm_count);
118 else { 118 else {
119 host = NULL; 119 host = NULL;
120 nsm = nsm_get_handle(ni->net, ni->sap, ni->salen, 120 nsm = nsm_get_handle(ni->net, ni->sap, ni->salen,
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
index 96cfb2967ac7..654594ef4f94 100644
--- a/fs/lockd/mon.c
+++ b/fs/lockd/mon.c
@@ -191,7 +191,7 @@ void nsm_unmonitor(const struct nlm_host *host)
191 struct nsm_res res; 191 struct nsm_res res;
192 int status; 192 int status;
193 193
194 if (atomic_read(&nsm->sm_count) == 1 194 if (refcount_read(&nsm->sm_count) == 1
195 && nsm->sm_monitored && !nsm->sm_sticky) { 195 && nsm->sm_monitored && !nsm->sm_sticky) {
196 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name); 196 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
197 197
@@ -279,7 +279,7 @@ static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap,
279 if (unlikely(new == NULL)) 279 if (unlikely(new == NULL))
280 return NULL; 280 return NULL;
281 281
282 atomic_set(&new->sm_count, 1); 282 refcount_set(&new->sm_count, 1);
283 new->sm_name = (char *)(new + 1); 283 new->sm_name = (char *)(new + 1);
284 memcpy(nsm_addr(new), sap, salen); 284 memcpy(nsm_addr(new), sap, salen);
285 new->sm_addrlen = salen; 285 new->sm_addrlen = salen;
@@ -337,13 +337,13 @@ retry:
337 cached = nsm_lookup_addr(&ln->nsm_handles, sap); 337 cached = nsm_lookup_addr(&ln->nsm_handles, sap);
338 338
339 if (cached != NULL) { 339 if (cached != NULL) {
340 atomic_inc(&cached->sm_count); 340 refcount_inc(&cached->sm_count);
341 spin_unlock(&nsm_lock); 341 spin_unlock(&nsm_lock);
342 kfree(new); 342 kfree(new);
343 dprintk("lockd: found nsm_handle for %s (%s), " 343 dprintk("lockd: found nsm_handle for %s (%s), "
344 "cnt %d\n", cached->sm_name, 344 "cnt %d\n", cached->sm_name,
345 cached->sm_addrbuf, 345 cached->sm_addrbuf,
346 atomic_read(&cached->sm_count)); 346 refcount_read(&cached->sm_count));
347 return cached; 347 return cached;
348 } 348 }
349 349
@@ -388,12 +388,12 @@ struct nsm_handle *nsm_reboot_lookup(const struct net *net,
388 return cached; 388 return cached;
389 } 389 }
390 390
391 atomic_inc(&cached->sm_count); 391 refcount_inc(&cached->sm_count);
392 spin_unlock(&nsm_lock); 392 spin_unlock(&nsm_lock);
393 393
394 dprintk("lockd: host %s (%s) rebooted, cnt %d\n", 394 dprintk("lockd: host %s (%s) rebooted, cnt %d\n",
395 cached->sm_name, cached->sm_addrbuf, 395 cached->sm_name, cached->sm_addrbuf,
396 atomic_read(&cached->sm_count)); 396 refcount_read(&cached->sm_count));
397 return cached; 397 return cached;
398} 398}
399 399
@@ -404,7 +404,7 @@ struct nsm_handle *nsm_reboot_lookup(const struct net *net,
404 */ 404 */
405void nsm_release(struct nsm_handle *nsm) 405void nsm_release(struct nsm_handle *nsm)
406{ 406{
407 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) { 407 if (refcount_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
408 list_del(&nsm->sm_link); 408 list_del(&nsm->sm_link);
409 spin_unlock(&nsm_lock); 409 spin_unlock(&nsm_lock);
410 dprintk("lockd: destroyed nsm_handle for %s (%s)\n", 410 dprintk("lockd: destroyed nsm_handle for %s (%s)\n",
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h
index d7d313fb9cd4..809619553e9b 100644
--- a/include/linux/lockd/lockd.h
+++ b/include/linux/lockd/lockd.h
@@ -83,7 +83,7 @@ struct nlm_host {
83 83
84struct nsm_handle { 84struct nsm_handle {
85 struct list_head sm_link; 85 struct list_head sm_link;
86 atomic_t sm_count; 86 refcount_t sm_count;
87 char *sm_mon_name; 87 char *sm_mon_name;
88 char *sm_name; 88 char *sm_name;
89 struct sockaddr_storage sm_addr; 89 struct sockaddr_storage sm_addr;