Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
89ae9753
Commit
89ae9753
authored
Mar 22, 2010
by
Michal Simek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
microblaze: uaccess: Sync strlen, strnlen, copy_to/from_user
Last sync. Signed-off-by:
Michal Simek
<
monstr@monstr.eu
>
parent
94804a9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
56 deletions
+32
-56
arch/microblaze/include/asm/uaccess.h
arch/microblaze/include/asm/uaccess.h
+32
-56
No files found.
arch/microblaze/include/asm/uaccess.h
View file @
89ae9753
...
...
@@ -294,40 +294,6 @@ extern long __user_bad(void);
#define put_user(x, ptr) __put_user((x), (ptr))
static
inline
long
strnlen_user
(
const
char
__user
*
src
,
long
count
)
{
return
strlen
(
src
)
+
1
;
}
#define __do_strncpy_from_user(dst, src, count, res) \
do { \
char *tmp; \
strncpy(dst, src, count); \
for (tmp = dst; *tmp && count > 0; tmp++, count--) \
; \
res = (tmp - dst); \
} while (0)
static
inline
long
__strncpy_from_user
(
char
*
dst
,
const
char
__user
*
src
,
long
count
)
{
long
res
;
__do_strncpy_from_user
(
dst
,
src
,
count
,
res
);
return
res
;
}
static
inline
long
strncpy_from_user
(
char
*
dst
,
const
char
__user
*
src
,
long
count
)
{
long
res
=
-
EFAULT
;
if
(
access_ok
(
VERIFY_READ
,
src
,
1
))
__do_strncpy_from_user
(
dst
,
src
,
count
,
res
);
return
res
;
}
extern
long
strncpy_from_user
(
char
*
dst
,
const
char
*
src
,
long
count
);
extern
long
strnlen_user
(
const
char
*
src
,
long
count
);
#else
/* CONFIG_MMU */
#define put_user(x, ptr) \
...
...
@@ -335,26 +301,9 @@ extern long strnlen_user(const char *src, long count);
access_ok(VERIFY_WRITE, (ptr), sizeof(*(ptr))) \
? __put_user((x), (ptr)) : -EFAULT; \
})
extern
int
__strncpy_user
(
char
*
to
,
const
char
__user
*
from
,
int
len
);
#define __strncpy_from_user __strncpy_user
static
inline
long
strncpy_from_user
(
char
*
dst
,
const
char
__user
*
src
,
long
count
)
{
if
(
!
access_ok
(
VERIFY_READ
,
src
,
1
))
return
-
EFAULT
;
return
__strncpy_from_user
(
dst
,
src
,
count
);
}
extern
int
__strnlen_user
(
const
char
__user
*
sstr
,
int
len
);
#define strnlen_user(str, len) \
(access_ok(VERIFY_READ, str, 1) ? __strnlen_user(str, len) : 0)
#endif
/* CONFIG_MMU */
/* copy_to_from_user */
#define __copy_from_user(to, from, n) \
__copy_tofrom_user((__force void __user *)(to), \
(void __user *)(from), (n))
...
...
@@ -367,8 +316,7 @@ static inline long copy_from_user(void *to,
might_sleep
();
if
(
access_ok
(
VERIFY_READ
,
from
,
n
))
return
__copy_from_user
(
to
,
from
,
n
);
else
return
n
;
return
n
;
}
#define __copy_to_user(to, from, n) \
...
...
@@ -382,8 +330,36 @@ static inline long copy_to_user(void __user *to,
might_sleep
();
if
(
access_ok
(
VERIFY_WRITE
,
to
,
n
))
return
__copy_to_user
(
to
,
from
,
n
);
else
return
n
;
return
n
;
}
/*
* Copy a null terminated string from userspace.
*/
extern
int
__strncpy_user
(
char
*
to
,
const
char
__user
*
from
,
int
len
);
#define __strncpy_from_user __strncpy_user
static
inline
long
strncpy_from_user
(
char
*
dst
,
const
char
__user
*
src
,
long
count
)
{
if
(
!
access_ok
(
VERIFY_READ
,
src
,
1
))
return
-
EFAULT
;
return
__strncpy_from_user
(
dst
,
src
,
count
);
}
/*
* Return the size of a string (including the ending 0)
*
* Return 0 on exception, a value greater than N if too long
*/
extern
int
__strnlen_user
(
const
char
__user
*
sstr
,
int
len
);
static
inline
long
strnlen_user
(
const
char
__user
*
src
,
long
n
)
{
if
(
!
access_ok
(
VERIFY_READ
,
src
,
1
))
return
0
;
return
__strnlen_user
(
src
,
n
);
}
#endif
/* __ASSEMBLY__ */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment