]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
IB/hfi: Protect against writable mmap
authorIra Weiny <ira.weiny@intel.com>
Sun, 9 Apr 2017 17:17:24 +0000 (10:17 -0700)
committerDoug Ledford <dledford@redhat.com>
Fri, 28 Apr 2017 17:56:23 +0000 (13:56 -0400)
The device/port status is not intended to be changed from user space.
Prevent a user from mapping them as write or execute.

Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hfi1/file_ops.c

index 60598867f94837b1bd80b1c1637ad32fc0011ffd..3d9bce4bfcc7ac26c7b60d5a002881d3face49c9 100644 (file)
@@ -597,6 +597,10 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
                vmf = 1;
                break;
        case STATUS:
+               if (flags & (unsigned long)(VM_WRITE | VM_EXEC)) {
+                       ret = -EPERM;
+                       goto done;
+               }
                memaddr = kvirt_to_phys((void *)dd->status);
                memlen = PAGE_SIZE;
                flags |= VM_IO | VM_DONTEXPAND;