fix: Use 'kernel_read' to read from procfs
authorMichael Jeanson <mjeanson@efficios.com>
Thu, 24 Sep 2020 19:38:35 +0000 (15:38 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 30 Sep 2020 16:06:05 +0000 (12:06 -0400)
Use the 'kernel_read' helper to read files in procfs, it's present in
the kernel since the 2.6 series and does the right thing on kernels that
require the set_fs dance and newer one which don't.

Change-Id: I1a53fda379e0bb9acc79331626925bbdba63d727
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
wrapper/random.c

index eb41769c650f54d1ddb569f207a1bc45e0765292..d7e53cd140f0a7517fb6ce66b1c492e9959882c8 100644 (file)
@@ -28,21 +28,12 @@ int wrapper_get_bootid(char *bootid)
        struct file *file;
        int ret;
        ssize_t len;
-       mm_segment_t old_fs;
 
        file = filp_open("/proc/sys/kernel/random/boot_id", O_RDONLY, 0);
        if (IS_ERR(file))
                return PTR_ERR(file);
 
-       old_fs = get_fs();
-       set_fs(KERNEL_DS);
-
-       if (!file->f_op || !file->f_op->read) {
-               ret = -EINVAL;
-               goto end;
-       }
-
-       len = file->f_op->read(file, bootid, BOOT_ID_LEN - 1, &file->f_pos);
+       len = kernel_read(file, bootid, BOOT_ID_LEN - 1, &file->f_pos);
        if (len != BOOT_ID_LEN - 1) {
                ret = -EINVAL;
                goto end;
@@ -51,7 +42,6 @@ int wrapper_get_bootid(char *bootid)
        bootid[BOOT_ID_LEN - 1] = '\0';
        ret = 0;
 end:
-       set_fs(old_fs);
        filp_close(file, current->files);
        return ret;
 }
This page took 0.02636 seconds and 4 git commands to generate.