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