@@ -836,7 +836,27 @@ static unsigned long mremap_to(unsigned long addr, unsigned long old_len,
if ((mm->map_count + 2) >= sysctl_max_map_count - 3)
return -ENOMEM;
+ /*
+ * Check src address for sealing.
+ *
+ * Note: mremap_to() currently called from one place:
+ * SYSCALL_DEFINE4(pkey_mprotect, ...)
+ * and not in any other places.
+ * Therefore, omit changing the signature of mremap_to()
+ * Otherwise, we might need to add checkSeals and pass it
+ * from all callers of mremap_to().
+ */
+ if (!can_modify_mm(mm, addr, addr + old_len, MM_SEAL_MREMAP))
+ return -EACCES;
+
if (flags & MREMAP_FIXED) {
+ /*
+ * Check dest address for sealing.
+ */
+ if (!can_modify_mm(mm, new_addr, new_addr + new_len,
+ MM_SEAL_MREMAP))
+ return -EACCES;
+
ret = do_munmap(mm, new_addr, new_len, uf_unmap_early);
if (ret)
goto out;
@@ -995,6 +1015,11 @@ SYSCALL_DEFINE5(mremap, unsigned long, addr, unsigned long, old_len,
goto out;
}
+ if (!can_modify_mm(mm, addr, addr + old_len, MM_SEAL_MREMAP)) {
+ ret = -EACCES;
+ goto out;
+ }
+
/*
* Always allow a shrinking remap: that just unmaps
* the unnecessary pages..