hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2013 Richard Weinberger <richrd@nod.at>
 */
 
#include <linux/uaccess.h>
#include <linux/kernel.h>
#include <os.h>
 
bool copy_from_kernel_nofault_allowed(const void *src, size_t size)
{
   void *psrc = (void *)rounddown((unsigned long)src, PAGE_SIZE);
 
   if ((unsigned long)src < PAGE_SIZE || size <= 0)
       return false;
   if (os_mincore(psrc, size + src - psrc) <= 0)
       return false;
   return true;
}