Skip to content

Commit

Permalink
usercopy: Move enum for arch_within_stack_frames()
Browse files Browse the repository at this point in the history
This patch moves the arch_within_stack_frames() return value enum up in
the header files so that per-architecture implementations can reuse the
same return values.

Signed-off-by: Sahara <[email protected]>
Signed-off-by: James Morse <[email protected]>
[kees: adjusted naming and commit log]
Signed-off-by: Kees Cook <[email protected]>
  • Loading branch information
Sahara74 authored and kees committed Apr 4, 2017
1 parent 4495c08 commit 96dc4f9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
13 changes: 7 additions & 6 deletions arch/x86/include/asm/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ static inline unsigned long current_stack_pointer(void)
* entirely contained by a single stack frame.
*
* Returns:
* 1 if within a frame
* -1 if placed across a frame boundary (or outside stack)
* 0 unable to determine (no frame pointers, etc)
* GOOD_FRAME if within a frame
* BAD_STACK if placed across a frame boundary (or outside stack)
* NOT_STACK unable to determine (no frame pointers, etc)
*/
static inline int arch_within_stack_frames(const void * const stack,
const void * const stackend,
Expand All @@ -197,13 +197,14 @@ static inline int arch_within_stack_frames(const void * const stack,
* the copy as invalid.
*/
if (obj + len <= frame)
return obj >= oldframe + 2 * sizeof(void *) ? 1 : -1;
return obj >= oldframe + 2 * sizeof(void *) ?
GOOD_FRAME : BAD_STACK;
oldframe = frame;
frame = *(const void * const *)frame;
}
return -1;
return BAD_STACK;
#else
return 0;
return NOT_STACK;
#endif
}

Expand Down
12 changes: 12 additions & 0 deletions include/linux/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@
#endif

#include <linux/bitops.h>

/*
* For per-arch arch_within_stack_frames() implementations, defined in
* asm/thread_info.h.
*/
enum {
BAD_STACK = -1,
NOT_STACK = 0,
GOOD_FRAME,
GOOD_STACK,
};

#include <asm/thread_info.h>

#ifdef __KERNEL__
Expand Down
8 changes: 1 addition & 7 deletions mm/usercopy.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,9 @@
#include <linux/sched.h>
#include <linux/sched/task.h>
#include <linux/sched/task_stack.h>
#include <linux/thread_info.h>
#include <asm/sections.h>

enum {
BAD_STACK = -1,
NOT_STACK = 0,
GOOD_FRAME,
GOOD_STACK,
};

/*
* Checks if a given pointer and length is contained by the current
* stack frame (if possible).
Expand Down

0 comments on commit 96dc4f9

Please sign in to comment.