cregit-Linux how code gets into the kernel

Release 4.10 arch/arm/kernel/return_address.c

Directory: arch/arm/kernel
/*
 * arch/arm/kernel/return_address.c
 *
 * Copyright (C) 2009 Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
 * for Pengutronix
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 */
#include <linux/export.h>
#include <linux/ftrace.h>

#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
#include <linux/sched.h>

#include <asm/stacktrace.h>


struct return_address_data {
	
unsigned int level;
	
void *addr;
};


static int save_return_addr(struct stackframe *frame, void *d) { struct return_address_data *data = d; if (!data->level) { data->addr = (void *)frame->pc; return 1; } else { --data->level; return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
uwe kleine-koeniguwe kleine-koenig5698.25%150.00%
keun-o parkkeun-o park11.75%150.00%
Total57100.00%2100.00%


void *return_address(unsigned int level) { struct return_address_data data; struct stackframe frame; data.level = level + 2; data.addr = NULL; frame.fp = (unsigned long)__builtin_frame_address(0); frame.sp = current_stack_pointer; frame.lr = (unsigned long)__builtin_return_address(0); frame.pc = (unsigned long)return_address; walk_stackframe(&frame, save_return_addr, &data); if (!data.level) return data.addr; else return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
uwe kleine-koeniguwe kleine-koenig9392.08%133.33%
keun-o parkkeun-o park76.93%133.33%
behan websterbehan webster10.99%133.33%
Total101100.00%3100.00%

#endif /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) */ EXPORT_SYMBOL_GPL(return_address);

Overall Contributors

PersonTokensPropCommitsCommitProp
uwe kleine-koeniguwe kleine-koenig19193.63%233.33%
keun-o parkkeun-o park83.92%116.67%
russell kingrussell king31.47%116.67%
behan websterbehan webster10.49%116.67%
paul gortmakerpaul gortmaker10.49%116.67%
Total204100.00%6100.00%
Directory: arch/arm/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.