-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 24663 b: refs/heads/master c: 6c6bd75 h: refs/heads/master i: 24661: 4afd87a 24659: 4da0576 24655: 37041c0 v: v3
- Loading branch information
Brian Rogan
authored and
Paul Mackerras
committed
Mar 29, 2006
1 parent
af2dd2e
commit 069521f
Showing
6 changed files
with
133 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b848e0a07dd5a874821bb587bb724fac4aa45bad | ||
refs/heads/master: 6c6bd754bf43d59756f094de144ecac239629dda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/** | ||
* Copyright (C) 2005 Brian Rogan <bcr6@cornell.edu>, IBM | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the License, or (at your option) any later version. | ||
**/ | ||
|
||
#include <linux/oprofile.h> | ||
#include <linux/sched.h> | ||
#include <asm/processor.h> | ||
#include <asm/uaccess.h> | ||
|
||
#define STACK_SP(STACK) *(STACK) | ||
|
||
#define STACK_LR64(STACK) *((unsigned long *)(STACK) + 2) | ||
#define STACK_LR32(STACK) *((unsigned int *)(STACK) + 1) | ||
|
||
#ifdef CONFIG_PPC64 | ||
#define STACK_LR(STACK) STACK_LR64(STACK) | ||
#else | ||
#define STACK_LR(STACK) STACK_LR32(STACK) | ||
#endif | ||
|
||
static unsigned int user_getsp32(unsigned int sp, int is_first) | ||
{ | ||
unsigned int stack_frame[2]; | ||
|
||
if (!access_ok(VERIFY_READ, sp, sizeof(stack_frame))) | ||
return 0; | ||
|
||
/* | ||
* The most likely reason for this is that we returned -EFAULT, | ||
* which means that we've done all that we can do from | ||
* interrupt context. | ||
*/ | ||
if (__copy_from_user_inatomic(stack_frame, (void *)(long)sp, | ||
sizeof(stack_frame))) | ||
return 0; | ||
|
||
if (!is_first) | ||
oprofile_add_trace(STACK_LR32(stack_frame)); | ||
|
||
/* | ||
* We do not enforce increasing stack addresses here because | ||
* we may transition to a different stack, eg a signal handler. | ||
*/ | ||
return STACK_SP(stack_frame); | ||
} | ||
|
||
#ifdef CONFIG_PPC64 | ||
static unsigned long user_getsp64(unsigned long sp, int is_first) | ||
{ | ||
unsigned long stack_frame[3]; | ||
|
||
if (!access_ok(VERIFY_READ, sp, sizeof(stack_frame))) | ||
return 0; | ||
|
||
if (__copy_from_user_inatomic(stack_frame, (void *)sp, | ||
sizeof(stack_frame))) | ||
return 0; | ||
|
||
if (!is_first) | ||
oprofile_add_trace(STACK_LR64(stack_frame)); | ||
|
||
return STACK_SP(stack_frame); | ||
} | ||
#endif | ||
|
||
static unsigned long kernel_getsp(unsigned long sp, int is_first) | ||
{ | ||
unsigned long *stack_frame = (unsigned long *)sp; | ||
|
||
if (!validate_sp(sp, current, STACK_FRAME_OVERHEAD)) | ||
return 0; | ||
|
||
if (!is_first) | ||
oprofile_add_trace(STACK_LR(stack_frame)); | ||
|
||
/* | ||
* We do not enforce increasing stack addresses here because | ||
* we might be transitioning from an interrupt stack to a kernel | ||
* stack. validate_sp() is designed to understand this, so just | ||
* use it. | ||
*/ | ||
return STACK_SP(stack_frame); | ||
} | ||
|
||
void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth) | ||
{ | ||
unsigned long sp = regs->gpr[1]; | ||
int first_frame = 1; | ||
|
||
/* We ditch the top stackframe so need to loop through an extra time */ | ||
depth += 1; | ||
|
||
if (!user_mode(regs)) { | ||
while (depth--) { | ||
sp = kernel_getsp(sp, first_frame); | ||
if (!sp) | ||
break; | ||
first_frame = 0; | ||
} | ||
} else { | ||
#ifdef CONFIG_PPC64 | ||
if (!test_thread_flag(TIF_32BIT)) { | ||
while (depth--) { | ||
sp = user_getsp64(sp, first_frame); | ||
if (!sp) | ||
break; | ||
first_frame = 0; | ||
} | ||
|
||
return; | ||
} | ||
#endif | ||
|
||
while (depth--) { | ||
sp = user_getsp32(sp, first_frame); | ||
if (!sp) | ||
break; | ||
first_frame = 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters