cregit-Linux how code gets into the kernel

Release 4.14 arch/s390/kernel/jump_label.c

Directory: arch/s390/kernel
// SPDX-License-Identifier: GPL-2.0
/*
 * Jump label s390 support
 *
 * Copyright IBM Corp. 2011
 * Author(s): Jan Glauber <jang@linux.vnet.ibm.com>
 */
#include <linux/uaccess.h>
#include <linux/stop_machine.h>
#include <linux/jump_label.h>
#include <asm/ipl.h>

#ifdef HAVE_JUMP_LABEL


struct insn {
	
u16 opcode;
	
s32 offset;

} __packed;


struct insn_args {
	
struct jump_entry *entry;
	
enum jump_label_type type;
};


static void jump_label_make_nop(struct jump_entry *entry, struct insn *insn) { /* brcl 0,0 */ insn->opcode = 0xc004; insn->offset = 0; }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens1965.52%150.00%
Jan Glauber1034.48%150.00%
Total29100.00%2100.00%


static void jump_label_make_branch(struct jump_entry *entry, struct insn *insn) { /* brcl 15,offset */ insn->opcode = 0xc0f4; insn->offset = (entry->target - entry->code) >> 1; }

Contributors

PersonTokensPropCommitsCommitProp
Jan Glauber2666.67%150.00%
Heiko Carstens1333.33%150.00%
Total39100.00%2100.00%


static void jump_label_bug(struct jump_entry *entry, struct insn *expected, struct insn *new) { unsigned char *ipc = (unsigned char *)entry->code; unsigned char *ipe = (unsigned char *)expected; unsigned char *ipn = (unsigned char *)new; pr_emerg("Jump label code mismatch at %pS [%p]\n", ipc, ipc); pr_emerg("Found: %6ph\n", ipc); pr_emerg("Expected: %6ph\n", ipe); pr_emerg("New: %6ph\n", ipn); panic("Corrupted kernel text"); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens8792.55%250.00%
Jan Glauber44.26%125.00%
Alexander Kuleshov33.19%125.00%
Total94100.00%4100.00%

static struct insn orignop = { .opcode = 0xc004, .offset = JUMP_LABEL_NOP_OFFSET >> 1, };
static void __jump_label_transform(struct jump_entry *entry, enum jump_label_type type, int init) { struct insn old, new; if (type == JUMP_LABEL_JMP) { jump_label_make_nop(entry, &old); jump_label_make_branch(entry, &new); } else { jump_label_make_branch(entry, &old); jump_label_make_nop(entry, &new); } if (init) { if (memcmp((void *)entry->code, &orignop, sizeof(orignop))) jump_label_bug(entry, &orignop, &new); } else { if (memcmp((void *)entry->code, &old, sizeof(old))) jump_label_bug(entry, &old, &new); } s390_kernel_write((void *)entry->code, &new, sizeof(new)); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens14188.68%457.14%
Jeremy Fitzhardinge95.66%114.29%
Jan Glauber85.03%114.29%
Peter Zijlstra10.63%114.29%
Total159100.00%7100.00%


static int __sm_arch_jump_label_transform(void *data) { struct insn_args *args = data; __jump_label_transform(args->entry, args->type, 0); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge3193.94%150.00%
Heiko Carstens26.06%150.00%
Total33100.00%2100.00%


void arch_jump_label_transform(struct jump_entry *entry, enum jump_label_type type) { struct insn_args args; args.entry = entry; args.type = type; stop_machine_cpuslocked(__sm_arch_jump_label_transform, &args, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge2255.00%133.33%
Jan Glauber1742.50%133.33%
Thomas Gleixner12.50%133.33%
Total40100.00%3100.00%


void arch_jump_label_transform_static(struct jump_entry *entry, enum jump_label_type type) { __jump_label_transform(entry, type, 1); }

Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge2191.30%150.00%
Heiko Carstens28.70%150.00%
Total23100.00%2100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens28358.84%440.00%
Jan Glauber10421.62%110.00%
Jeremy Fitzhardinge8818.30%110.00%
Alexander Kuleshov30.62%110.00%
Peter Zijlstra10.21%110.00%
Greg Kroah-Hartman10.21%110.00%
Thomas Gleixner10.21%110.00%
Total481100.00%10100.00%
Directory: arch/s390/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.