2019-06-04 11:11:33 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2013-08-17 20:46:00 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Richard Weinberger <richrd@nod.at>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <os.h>
|
|
|
|
|
2020-06-17 10:37:53 +03:00
|
|
|
bool copy_from_kernel_nofault_allowed(const void *src, size_t size)
|
2013-08-17 20:46:00 +04:00
|
|
|
{
|
|
|
|
void *psrc = (void *)rounddown((unsigned long)src, PAGE_SIZE);
|
|
|
|
|
|
|
|
if ((unsigned long)src < PAGE_SIZE || size <= 0)
|
2020-06-09 07:34:27 +03:00
|
|
|
return false;
|
2013-08-17 20:46:00 +04:00
|
|
|
if (os_mincore(psrc, size + src - psrc) <= 0)
|
2020-06-09 07:34:27 +03:00
|
|
|
return false;
|
|
|
|
return true;
|
2013-08-17 20:46:00 +04:00
|
|
|
}
|