Elena Reshetova
0896cade12
fs, nfs: convert nfs_cache_defer_req.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 nfs_cache_defer_req.count is used as pure reference counter.
Convert it to refcount_t and fix up the operations.
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: Anna Schumaker <Anna.Schumaker@Netapp.com>
2017-11-17 13:48:00 -05:00
..
2017-10-11 09:30:08 -07:00
2016-10-10 20:16:43 -07:00
2017-09-14 18:54:01 -07:00
2017-09-06 20:49:49 -07:00
2017-09-14 18:13:32 -07:00
2017-07-17 08:45:34 +01:00
2017-07-12 16:26:00 -07:00
2017-10-06 09:03:08 -07:00
2017-07-17 08:45:34 +01:00
2017-10-02 16:18:16 +02:00
2017-09-22 19:47:17 -05:00
2017-09-04 19:05:15 -04:00
2017-06-12 13:20:20 +02:00
2017-08-23 12:49:55 -06:00
2017-07-15 12:00:42 -07:00
2017-08-24 13:23:03 -07:00
2017-09-06 13:43:26 -07:00
2017-09-14 18:54:01 -07:00
2017-07-11 06:09:21 -04:00
2017-07-17 08:45:34 +01:00
2017-09-07 11:59:42 -07:00
2017-03-03 11:38:56 -08:00
2017-09-14 18:54:01 -07:00
2017-09-14 19:29:55 -07:00
2017-10-03 08:06:05 -07:00
2017-09-14 18:54:01 -07:00
2017-09-13 18:53:15 -07:00
2017-09-13 10:10:19 -07:00
2017-09-25 15:41:56 -07:00
2017-09-14 18:54:01 -07:00
2017-09-14 18:54:01 -07:00
2017-08-01 08:39:29 -04:00
2017-09-14 18:54:01 -07:00
2017-09-08 18:26:49 -07:00
2017-09-18 12:24:26 +02:00
2017-07-07 19:38:17 -07:00
2017-09-14 18:54:01 -07:00
2017-09-14 18:54:01 -07:00
2017-09-07 11:59:42 -07:00
2017-09-11 22:01:44 -07:00
2017-07-17 08:45:34 +01:00
2017-08-01 08:39:29 -04:00
2017-11-17 13:48:00 -05:00
2016-11-18 10:59:15 -05:00
2017-10-05 14:45:25 -04:00
2017-09-14 18:54:01 -07:00
2017-08-30 16:02:48 +02:00
2017-09-14 18:54:01 -07:00
2017-09-14 18:54:01 -07:00
2017-07-06 03:31:46 -04:00
2016-12-24 11:46:01 -08:00
2017-09-14 14:58:31 -04:00
2017-10-05 15:53:18 +02:00
2017-09-29 11:02:57 +02:00
2017-08-17 16:29:19 -07:00
2017-10-10 17:24:46 +02:00
2017-09-06 17:27:26 -07:00
2017-09-14 18:54:01 -07:00
2017-01-24 16:26:14 -08:00
2017-09-08 19:33:25 -07:00
2017-04-08 17:33:32 +02:00
2017-07-17 08:45:34 +01:00
2017-07-06 03:31:46 -04:00
2017-09-14 18:54:01 -07:00
2017-09-14 18:54:01 -07:00
2017-07-17 08:45:34 +01:00
2017-10-11 10:21:07 -07:00
2017-09-14 19:29:55 -07:00
2016-12-24 11:46:01 -08:00
2017-03-02 08:42:29 +01:00
2017-03-02 20:51:15 -05:00
2017-09-04 19:05:15 -04:00
2017-09-14 18:13:32 -07:00
2017-09-14 18:13:32 -07:00
2017-09-14 18:13:32 -07:00
2017-10-13 16:18:33 -07:00
2017-10-03 17:54:25 -07:00
2017-10-13 16:18:33 -07:00
2017-09-07 11:59:42 -07:00
2017-07-17 15:28:50 +02:00
2017-02-01 09:13:51 +01:00
2017-09-05 08:25:07 -04:00
2017-04-17 12:52:27 -04:00
2017-09-13 18:53:16 -07:00
2017-09-14 13:43:16 -07:00
2017-07-15 12:00:42 -07:00
2016-12-24 11:46:01 -08:00
2017-10-10 23:10:02 -04:00
2017-07-03 21:13:25 -07:00
2017-09-08 18:26:49 -07:00
2017-10-03 17:54:25 -07:00
2017-09-18 22:51:14 -05:00
2017-04-17 12:52:26 -04:00
2017-08-28 00:50:23 -04:00
2017-07-06 16:24:30 -07:00
2017-07-15 12:00:42 -07:00
2017-06-20 12:19:14 +02:00
2017-03-02 08:42:35 +01:00
2017-07-12 16:26:05 -07:00
2017-09-13 09:11:44 -07:00
2017-09-13 09:11:44 -07:00
2017-03-02 08:42:37 +01:00
2017-09-28 13:27:23 -07:00
2017-07-12 16:26:00 -07:00
2016-10-24 08:12:35 -02:00
2017-07-06 07:02:29 -04:00
2017-07-21 13:57:31 -04:00
2016-12-14 23:48:11 -05:00
2017-06-22 11:44:55 -04:00
2017-07-19 08:55:18 -07:00
2017-10-13 16:18:33 -07:00
2017-09-14 18:54:01 -07:00
2017-10-05 15:53:18 +02:00
2017-07-06 03:27:09 -04:00
2017-09-05 12:53:12 +02:00
2017-07-06 03:27:09 -04:00
2017-05-23 08:41:17 -05:00
2017-02-04 00:01:06 +13:00
2017-03-02 08:42:31 +01:00
2017-07-17 08:45:34 +01:00
2017-09-26 13:46:06 -07:00
2017-04-17 12:52:24 -04:00
2017-08-28 16:09:19 -07:00
2017-05-08 17:15:12 -07:00
2017-07-24 14:30:28 -05:00
2017-09-04 19:05:15 -04:00
2017-08-17 22:06:03 +02:00
2017-07-08 10:50:54 -07:00
2017-09-14 18:54:01 -07:00
2017-09-14 18:54:01 -07:00
2017-06-30 04:14:38 -04:00
2017-10-03 17:54:25 -07:00
2017-09-03 20:24:30 -04:00
2017-10-04 18:03:15 +11:00