Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
92430dab
Commit
92430dab
authored
Mar 21, 2017
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm64: switch to RAW_COPY_USER
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
46583939
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
53 deletions
+9
-53
arch/arm64/Kconfig
arch/arm64/Kconfig
+1
-0
arch/arm64/include/asm/uaccess.h
arch/arm64/include/asm/uaccess.h
+5
-50
arch/arm64/kernel/arm64ksyms.c
arch/arm64/kernel/arm64ksyms.c
+1
-1
arch/arm64/lib/copy_in_user.S
arch/arm64/lib/copy_in_user.S
+2
-2
No files found.
arch/arm64/Kconfig
View file @
92430dab
...
@@ -115,6 +115,7 @@ config ARM64
...
@@ -115,6 +115,7 @@ config ARM64
select SPARSE_IRQ
select SPARSE_IRQ
select SYSCTL_EXCEPTION_TRACE
select SYSCTL_EXCEPTION_TRACE
select THREAD_INFO_IN_TASK
select THREAD_INFO_IN_TASK
select ARCH_HAS_RAW_COPY_USER
help
help
ARM 64-bit (AArch64) Linux support.
ARM 64-bit (AArch64) Linux support.
...
...
arch/arm64/include/asm/uaccess.h
View file @
92430dab
...
@@ -331,58 +331,13 @@ do { \
...
@@ -331,58 +331,13 @@ do { \
})
})
extern
unsigned
long
__must_check
__arch_copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
extern
unsigned
long
__must_check
__arch_copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
#define raw_copy_from_user __arch_copy_from_user
extern
unsigned
long
__must_check
__arch_copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
);
extern
unsigned
long
__must_check
__arch_copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
);
extern
unsigned
long
__must_check
__copy_in_user
(
void
__user
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
#define raw_copy_to_user __arch_copy_to_user
extern
unsigned
long
__must_check
raw_copy_in_user
(
void
__user
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
extern
unsigned
long
__must_check
__clear_user
(
void
__user
*
addr
,
unsigned
long
n
);
extern
unsigned
long
__must_check
__clear_user
(
void
__user
*
addr
,
unsigned
long
n
);
#define INLINE_COPY_TO_USER
static
inline
unsigned
long
__must_check
__copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
)
#define INLINE_COPY_FROM_USER
{
kasan_check_write
(
to
,
n
);
check_object_size
(
to
,
n
,
false
);
return
__arch_copy_from_user
(
to
,
from
,
n
);
}
static
inline
unsigned
long
__must_check
__copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
)
{
kasan_check_read
(
from
,
n
);
check_object_size
(
from
,
n
,
true
);
return
__arch_copy_to_user
(
to
,
from
,
n
);
}
static
inline
unsigned
long
__must_check
copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
)
{
unsigned
long
res
=
n
;
kasan_check_write
(
to
,
n
);
check_object_size
(
to
,
n
,
false
);
if
(
access_ok
(
VERIFY_READ
,
from
,
n
))
{
res
=
__arch_copy_from_user
(
to
,
from
,
n
);
}
if
(
unlikely
(
res
))
memset
(
to
+
(
n
-
res
),
0
,
res
);
return
res
;
}
static
inline
unsigned
long
__must_check
copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
)
{
kasan_check_read
(
from
,
n
);
check_object_size
(
from
,
n
,
true
);
if
(
access_ok
(
VERIFY_WRITE
,
to
,
n
))
{
n
=
__arch_copy_to_user
(
to
,
from
,
n
);
}
return
n
;
}
static
inline
unsigned
long
__must_check
copy_in_user
(
void
__user
*
to
,
const
void
__user
*
from
,
unsigned
long
n
)
{
if
(
access_ok
(
VERIFY_READ
,
from
,
n
)
&&
access_ok
(
VERIFY_WRITE
,
to
,
n
))
n
=
__copy_in_user
(
to
,
from
,
n
);
return
n
;
}
#define __copy_to_user_inatomic __copy_to_user
#define __copy_from_user_inatomic __copy_from_user
static
inline
unsigned
long
__must_check
clear_user
(
void
__user
*
to
,
unsigned
long
n
)
static
inline
unsigned
long
__must_check
clear_user
(
void
__user
*
to
,
unsigned
long
n
)
{
{
...
...
arch/arm64/kernel/arm64ksyms.c
View file @
92430dab
...
@@ -38,7 +38,7 @@ EXPORT_SYMBOL(clear_page);
...
@@ -38,7 +38,7 @@ EXPORT_SYMBOL(clear_page);
EXPORT_SYMBOL
(
__arch_copy_from_user
);
EXPORT_SYMBOL
(
__arch_copy_from_user
);
EXPORT_SYMBOL
(
__arch_copy_to_user
);
EXPORT_SYMBOL
(
__arch_copy_to_user
);
EXPORT_SYMBOL
(
__clear_user
);
EXPORT_SYMBOL
(
__clear_user
);
EXPORT_SYMBOL
(
_
_copy_in_user
);
EXPORT_SYMBOL
(
raw
_copy_in_user
);
/* physical memory */
/* physical memory */
EXPORT_SYMBOL
(
memstart_addr
);
EXPORT_SYMBOL
(
memstart_addr
);
...
...
arch/arm64/lib/copy_in_user.S
View file @
92430dab
...
@@ -64,14 +64,14 @@
...
@@ -64,14 +64,14 @@
.
endm
.
endm
end
.
req
x5
end
.
req
x5
ENTRY
(
_
_copy_in_user
)
ENTRY
(
raw
_copy_in_user
)
uaccess_enable_not_uao
x3
,
x4
uaccess_enable_not_uao
x3
,
x4
add
end
,
x0
,
x2
add
end
,
x0
,
x2
#include "copy_template.S"
#include "copy_template.S"
uaccess_disable_not_uao
x3
uaccess_disable_not_uao
x3
mov
x0
,
#
0
mov
x0
,
#
0
ret
ret
ENDPROC
(
_
_copy_in_user
)
ENDPROC
(
raw
_copy_in_user
)
.
section
.
fixup
,
"ax"
.
section
.
fixup
,
"ax"
.
align
2
.
align
2
...
...
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