]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/um/include/um_uaccess.h
uml: remove __u64 usage from physical memory subsystem
[mirror_ubuntu-artful-kernel.git] / arch / um / include / um_uaccess.h
CommitLineData
1da177e4 1/*
ae2587e4 2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
6#ifndef __ARCH_UM_UACCESS_H
7#define __ARCH_UM_UACCESS_H
8
bf001b26
PE
9#include "asm/fixmap.h"
10
7a590611
PBG
11#define __under_task_size(addr, size) \
12 (((unsigned long) (addr) < TASK_SIZE) && \
ae2587e4 13 (((unsigned long) (addr) + (size)) < TASK_SIZE))
7a590611
PBG
14
15#define __access_ok_vsyscall(type, addr, size) \
16 ((type == VERIFY_READ) && \
17 ((unsigned long) (addr) >= FIXADDR_USER_START) && \
18 ((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
19 ((unsigned long) (addr) + (size) >= (unsigned long)(addr)))
20
21#define __addr_range_nowrap(addr, size) \
22 ((unsigned long) (addr) <= ((unsigned long) (addr) + (size)))
23
1da177e4 24#define access_ok(type, addr, size) \
7a590611
PBG
25 (__addr_range_nowrap(addr, size) && \
26 (__under_task_size(addr, size) || \
27 __access_ok_vsyscall(type, addr, size) || \
6aa802ce 28 segment_eq(get_fs(), KERNEL_DS)))
1da177e4 29
6aa802ce
JD
30extern int copy_from_user(void *to, const void __user *from, int n);
31extern int copy_to_user(void __user *to, const void *from, int n);
1da177e4
LT
32
33/*
34 * strncpy_from_user: - Copy a NUL terminated string from userspace.
35 * @dst: Destination address, in kernel space. This buffer must be at
36 * least @count bytes long.
37 * @src: Source address, in user space.
38 * @count: Maximum number of bytes to copy, including the trailing NUL.
39 *
40 * Copies a NUL-terminated string from userspace to kernel space.
41 *
42 * On success, returns the length of the string (not including the trailing
43 * NUL).
44 *
45 * If access to userspace fails, returns -EFAULT (some data may have been
46 * copied).
47 *
48 * If @count is smaller than the length of the string, copies @count bytes
49 * and returns @count.
50 */
51
6aa802ce 52extern int strncpy_from_user(char *dst, const char __user *src, int count);
1da177e4
LT
53
54/*
55 * __clear_user: - Zero a block of memory in user space, with less checking.
56 * @to: Destination address, in user space.
57 * @n: Number of bytes to zero.
58 *
59 * Zero a block of memory in user space. Caller must check
60 * the specified block with access_ok() before calling this function.
61 *
62 * Returns number of bytes that could not be cleared.
63 * On success, this will be zero.
64 */
6aa802ce 65extern int __clear_user(void __user *mem, int len);
1da177e4
LT
66
67/*
68 * clear_user: - Zero a block of memory in user space.
69 * @to: Destination address, in user space.
70 * @n: Number of bytes to zero.
71 *
72 * Zero a block of memory in user space.
73 *
74 * Returns number of bytes that could not be cleared.
75 * On success, this will be zero.
76 */
6aa802ce 77extern int clear_user(void __user *mem, int len);
1da177e4
LT
78
79/*
80 * strlen_user: - Get the size of a string in user space.
81 * @str: The string to measure.
82 * @n: The maximum valid length
83 *
84 * Get the size of a NUL-terminated string in user space.
85 *
86 * Returns the size of the string INCLUDING the terminating NUL.
87 * On exception, returns 0.
88 * If the string is too long, returns a value greater than @n.
89 */
6aa802ce 90extern int strnlen_user(const void __user *str, int len);
1da177e4
LT
91
92#endif