Skip to content

Commit 6ca014c

Browse files
committed
Merge branch 'keys-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs
Pull watch_queue fixes from David Howells: "Here are fixes for a couple more watch_queue bugs, both found by syzbot: - Fix error cleanup in watch_queue_set_size() where it tries to clean up all the pointers in the page list, even if they've not been allocated yet[1]. Unfortunately, __free_page() doesn't treat a NULL pointer as being "do nothing". A second report[2] looks like it's probably the same bug, but on arm64 rather than x86_64, but there's no reproducer. - Fix a missing kfree in free_watch() to actually free the watch[3]" Link: https://lore.kernel.org/r/000000000000b1807c05daad8f98@google.com/ [1] Link: https://lore.kernel.org/r/000000000000035b9c05daae8a5e@google.com/ [2] Link: https://lore.kernel.org/r/000000000000bc8eaf05dab91c63@google.com/ [3] * 'keys-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs: watch_queue: Actually free the watch watch_queue: Fix NULL dereference in error cleanup
2 parents 8565d64 + 3d8dcf2 commit 6ca014c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

kernel/watch_queue.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ long watch_queue_set_size(struct pipe_inode_info *pipe, unsigned int nr_notes)
271271
return 0;
272272

273273
error_p:
274-
for (i = 0; i < nr_pages; i++)
274+
while (--i >= 0)
275275
__free_page(pages[i]);
276276
kfree(pages);
277277
error:
@@ -395,6 +395,7 @@ static void free_watch(struct rcu_head *rcu)
395395
put_watch_queue(rcu_access_pointer(watch->queue));
396396
atomic_dec(&watch->cred->user->nr_watches);
397397
put_cred(watch->cred);
398+
kfree(watch);
398399
}
399400

400401
static void __put_watch(struct kref *kref)

0 commit comments

Comments
 (0)