blob: 083b05f5f5ab6f9b48d4028c2e8ec402e2e01af9 [file] [log] [blame]
Jan Glauber5373db82011-03-16 15:58:30 -04001/*
2 * Jump label s390 support
3 *
4 * Copyright IBM Corp. 2011
5 * Author(s): Jan Glauber <jang@linux.vnet.ibm.com>
6 */
7#include <linux/module.h>
8#include <linux/uaccess.h>
9#include <linux/stop_machine.h>
10#include <linux/jump_label.h>
11#include <asm/ipl.h>
12
13#ifdef HAVE_JUMP_LABEL
14
15struct insn {
16 u16 opcode;
17 s32 offset;
18} __packed;
19
20struct insn_args {
Jeremy Fitzhardinge61f42182011-09-29 10:58:46 -070021 struct jump_entry *entry;
22 enum jump_label_type type;
Jan Glauber5373db82011-03-16 15:58:30 -040023};
24
Heiko Carstens5c6497c2015-01-29 13:45:35 +010025static void jump_label_make_nop(struct jump_entry *entry, struct insn *insn)
Jan Glauber5373db82011-03-16 15:58:30 -040026{
Heiko Carstens5c6497c2015-01-29 13:45:35 +010027 /* brcl 0,0 */
28 insn->opcode = 0xc004;
29 insn->offset = 0;
30}
31
32static void jump_label_make_branch(struct jump_entry *entry, struct insn *insn)
33{
34 /* brcl 15,offset */
35 insn->opcode = 0xc0f4;
36 insn->offset = (entry->target - entry->code) >> 1;
37}
38
Heiko Carstens72dace92015-02-20 08:33:31 +010039static void jump_label_bug(struct jump_entry *entry, struct insn *expected,
40 struct insn *new)
Heiko Carstens5c6497c2015-01-29 13:45:35 +010041{
42 unsigned char *ipc = (unsigned char *)entry->code;
Heiko Carstens72dace92015-02-20 08:33:31 +010043 unsigned char *ipe = (unsigned char *)expected;
44 unsigned char *ipn = (unsigned char *)new;
Heiko Carstens5c6497c2015-01-29 13:45:35 +010045
46 pr_emerg("Jump label code mismatch at %pS [%p]\n", ipc, ipc);
Alexander Kuleshove4ec7352015-08-27 01:17:46 +060047 pr_emerg("Found: %6ph\n", ipc);
48 pr_emerg("Expected: %6ph\n", ipe);
49 pr_emerg("New: %6ph\n", ipn);
Heiko Carstens5c6497c2015-01-29 13:45:35 +010050 panic("Corrupted kernel text");
51}
52
Heiko Carstensd5caa4d2015-01-29 14:10:22 +010053static struct insn orignop = {
54 .opcode = 0xc004,
55 .offset = JUMP_LABEL_NOP_OFFSET >> 1,
56};
57
Heiko Carstens5c6497c2015-01-29 13:45:35 +010058static void __jump_label_transform(struct jump_entry *entry,
59 enum jump_label_type type,
60 int init)
61{
62 struct insn old, new;
Jan Glauber5373db82011-03-16 15:58:30 -040063
Peter Zijlstra76b235c2015-07-24 14:45:44 +020064 if (type == JUMP_LABEL_JMP) {
Heiko Carstens5c6497c2015-01-29 13:45:35 +010065 jump_label_make_nop(entry, &old);
66 jump_label_make_branch(entry, &new);
Jan Glauber5373db82011-03-16 15:58:30 -040067 } else {
Heiko Carstensd5caa4d2015-01-29 14:10:22 +010068 jump_label_make_branch(entry, &old);
Heiko Carstens5c6497c2015-01-29 13:45:35 +010069 jump_label_make_nop(entry, &new);
Jan Glauber5373db82011-03-16 15:58:30 -040070 }
Heiko Carstensd5caa4d2015-01-29 14:10:22 +010071 if (init) {
72 if (memcmp((void *)entry->code, &orignop, sizeof(orignop)))
Heiko Carstens72dace92015-02-20 08:33:31 +010073 jump_label_bug(entry, &orignop, &new);
Heiko Carstensd5caa4d2015-01-29 14:10:22 +010074 } else {
75 if (memcmp((void *)entry->code, &old, sizeof(old)))
Heiko Carstens72dace92015-02-20 08:33:31 +010076 jump_label_bug(entry, &old, &new);
Heiko Carstensd5caa4d2015-01-29 14:10:22 +010077 }
Heiko Carstens8a5d8472015-03-13 12:55:56 +010078 s390_kernel_write((void *)entry->code, &new, sizeof(new));
Jeremy Fitzhardinge61f42182011-09-29 10:58:46 -070079}
Jan Glauber5373db82011-03-16 15:58:30 -040080
Jeremy Fitzhardinge61f42182011-09-29 10:58:46 -070081static int __sm_arch_jump_label_transform(void *data)
82{
83 struct insn_args *args = data;
84
Heiko Carstens5c6497c2015-01-29 13:45:35 +010085 __jump_label_transform(args->entry, args->type, 0);
Jeremy Fitzhardinge61f42182011-09-29 10:58:46 -070086 return 0;
87}
88
89void arch_jump_label_transform(struct jump_entry *entry,
90 enum jump_label_type type)
91{
92 struct insn_args args;
93
94 args.entry = entry;
95 args.type = type;
96
97 stop_machine(__sm_arch_jump_label_transform, &args, NULL);
98}
99
100void arch_jump_label_transform_static(struct jump_entry *entry,
101 enum jump_label_type type)
102{
Heiko Carstens5c6497c2015-01-29 13:45:35 +0100103 __jump_label_transform(entry, type, 1);
Jan Glauber5373db82011-03-16 15:58:30 -0400104}
105
106#endif