projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c165d89
)
binder: Validate the default binderfs device names.
author
Hridya Valsaraju
<hridya@google.com>
Wed, 4 Sep 2019 11:07:04 +0000
(13:07 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 4 Sep 2019 11:17:35 +0000
(13:17 +0200)
Length of a binderfs device name cannot exceed BINDERFS_MAX_NAME.
This patch adds a check in binderfs_init() to ensure the same
for the default binder devices that will be created in every
binderfs instance.
Co-developed-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Hridya Valsaraju <hridya@google.com>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Link:
https://lore.kernel.org/r/20190808222727.132744-3-hridya@google.com
Link:
https://lore.kernel.org/r/20190904110704.8606-3-christian.brauner@ubuntu.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/android/binderfs.c
patch
|
blob
|
history
diff --git
a/drivers/android/binderfs.c
b/drivers/android/binderfs.c
index
e773f45
..
d8307cc
100644
(file)
--- a/
drivers/android/binderfs.c
+++ b/
drivers/android/binderfs.c
@@
-553,6
+553,18
@@
static struct file_system_type binder_fs_type = {
int __init init_binderfs(void)
{
int ret;
+ const char *name;
+ size_t len;
+
+ /* Verify that the default binderfs device names are valid. */
+ name = binder_devices_param;
+ for (len = strcspn(name, ","); len > 0; len = strcspn(name, ",")) {
+ if (len > BINDERFS_MAX_NAME)
+ return -E2BIG;
+ name += len;
+ if (*name == ',')
+ name++;
+ }
/* Allocate new major number for binderfs. */
ret = alloc_chrdev_region(&binderfs_dev, 0, BINDERFS_MAX_MINOR,