[NETEM]: spelling errors
[linux-2.6/linux-2.6-openrd.git] / arch / um / include / um_uaccess.h
blob5126a99b59612a4dd3ac9b6818aed574e67fa438
1 /*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #ifndef __ARCH_UM_UACCESS_H
7 #define __ARCH_UM_UACCESS_H
9 #include "choose-mode.h"
11 #ifdef CONFIG_MODE_TT
12 #include "uaccess-tt.h"
13 #endif
15 #ifdef CONFIG_MODE_SKAS
16 #include "uaccess-skas.h"
17 #endif
19 #include "asm/fixmap.h"
21 #define __under_task_size(addr, size) \
22 (((unsigned long) (addr) < TASK_SIZE) && \
23 (((unsigned long) (addr) + (size)) < TASK_SIZE))
25 #define __access_ok_vsyscall(type, addr, size) \
26 ((type == VERIFY_READ) && \
27 ((unsigned long) (addr) >= FIXADDR_USER_START) && \
28 ((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
29 ((unsigned long) (addr) + (size) >= (unsigned long)(addr)))
31 #define __addr_range_nowrap(addr, size) \
32 ((unsigned long) (addr) <= ((unsigned long) (addr) + (size)))
34 #define access_ok(type, addr, size) \
35 (__addr_range_nowrap(addr, size) && \
36 (__under_task_size(addr, size) || \
37 __access_ok_vsyscall(type, addr, size) || \
38 segment_eq(get_fs(), KERNEL_DS) || \
39 CHOOSE_MODE_PROC(access_ok_tt, access_ok_skas, type, addr, size)))
41 static inline int copy_from_user(void *to, const void __user *from, int n)
43 return(CHOOSE_MODE_PROC(copy_from_user_tt, copy_from_user_skas, to,
44 from, n));
47 static inline int copy_to_user(void __user *to, const void *from, int n)
49 return(CHOOSE_MODE_PROC(copy_to_user_tt, copy_to_user_skas, to,
50 from, n));
54 * strncpy_from_user: - Copy a NUL terminated string from userspace.
55 * @dst: Destination address, in kernel space. This buffer must be at
56 * least @count bytes long.
57 * @src: Source address, in user space.
58 * @count: Maximum number of bytes to copy, including the trailing NUL.
60 * Copies a NUL-terminated string from userspace to kernel space.
62 * On success, returns the length of the string (not including the trailing
63 * NUL).
65 * If access to userspace fails, returns -EFAULT (some data may have been
66 * copied).
68 * If @count is smaller than the length of the string, copies @count bytes
69 * and returns @count.
72 static inline int strncpy_from_user(char *dst, const char __user *src, int count)
74 return(CHOOSE_MODE_PROC(strncpy_from_user_tt, strncpy_from_user_skas,
75 dst, src, count));
79 * __clear_user: - Zero a block of memory in user space, with less checking.
80 * @to: Destination address, in user space.
81 * @n: Number of bytes to zero.
83 * Zero a block of memory in user space. Caller must check
84 * the specified block with access_ok() before calling this function.
86 * Returns number of bytes that could not be cleared.
87 * On success, this will be zero.
89 static inline int __clear_user(void *mem, int len)
91 return(CHOOSE_MODE_PROC(__clear_user_tt, __clear_user_skas, mem, len));
95 * clear_user: - Zero a block of memory in user space.
96 * @to: Destination address, in user space.
97 * @n: Number of bytes to zero.
99 * Zero a block of memory in user space.
101 * Returns number of bytes that could not be cleared.
102 * On success, this will be zero.
104 static inline int clear_user(void __user *mem, int len)
106 return(CHOOSE_MODE_PROC(clear_user_tt, clear_user_skas, mem, len));
110 * strlen_user: - Get the size of a string in user space.
111 * @str: The string to measure.
112 * @n: The maximum valid length
114 * Get the size of a NUL-terminated string in user space.
116 * Returns the size of the string INCLUDING the terminating NUL.
117 * On exception, returns 0.
118 * If the string is too long, returns a value greater than @n.
120 static inline int strnlen_user(const void __user *str, long len)
122 return(CHOOSE_MODE_PROC(strnlen_user_tt, strnlen_user_skas, str, len));
125 #endif
128 * Overrides for Emacs so that we follow Linus's tabbing style.
129 * Emacs will notice this stuff at the end of the file and automatically
130 * adjust the settings for this buffer only. This must remain at the end
131 * of the file.
132 * ---------------------------------------------------------------------------
133 * Local variables:
134 * c-file-style: "linux"
135 * End: