aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2016-03-24 07:04:03 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2016-04-14 01:47:06 -0400
commitf63e6d89876034c21ecd18bb1cd0d6c5b8da11a5 (patch)
tree2ee1ed2c10c82001f382c2a9b0d3fcf7911fa51c
parent28e7cbd3e0f5fefec892842d1391ebd508fdb5ce (diff)
powerpc/livepatch: Add livepatch header
Add the powerpc specific livepatch definitions. In particular we provide a non-default implementation of klp_get_ftrace_location(). This is required because the location of the mcount call is not constant when using -mprofile-kernel (which we always do for live patching). Signed-off-by: Torsten Duwe <duwe@suse.de> Signed-off-by: Balbir Singh <bsingharora@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r--arch/powerpc/include/asm/livepatch.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/livepatch.h b/arch/powerpc/include/asm/livepatch.h
new file mode 100644
index 000000000000..ad36e8e34fa1
--- /dev/null
+++ b/arch/powerpc/include/asm/livepatch.h
@@ -0,0 +1,54 @@
1/*
2 * livepatch.h - powerpc-specific Kernel Live Patching Core
3 *
4 * Copyright (C) 2015-2016, SUSE, IBM Corp.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19#ifndef _ASM_POWERPC_LIVEPATCH_H
20#define _ASM_POWERPC_LIVEPATCH_H
21
22#include <linux/module.h>
23#include <linux/ftrace.h>
24
25#ifdef CONFIG_LIVEPATCH
26static inline int klp_check_compiler_support(void)
27{
28 return 0;
29}
30
31static inline int klp_write_module_reloc(struct module *mod, unsigned long
32 type, unsigned long loc, unsigned long value)
33{
34 /* This requires infrastructure changes; we need the loadinfos. */
35 return -ENOSYS;
36}
37
38static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
39{
40 regs->nip = ip;
41}
42
43#define klp_get_ftrace_location klp_get_ftrace_location
44static inline unsigned long klp_get_ftrace_location(unsigned long faddr)
45{
46 /*
47 * Live patch works only with -mprofile-kernel on PPC. In this case,
48 * the ftrace location is always within the first 16 bytes.
49 */
50 return ftrace_location_range(faddr, faddr + 16);
51}
52#endif /* CONFIG_LIVEPATCH */
53
54#endif /* _ASM_POWERPC_LIVEPATCH_H */