cregit-Linux how code gets into the kernel

Release 4.10 arch/s390/kernel/jump_label.c

Directory: arch/s390/kernel
/*
 * Jump label s390 support
 *
 * Copyright IBM Corp. 2011
 * Author(s): Jan Glauber <jang@linux.vnet.ibm.com>
 */
#include <linux/module.h>
#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 carstensheiko carstens1965.52%150.00%
jan glauberjan 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 glauberjan glauber2666.67%150.00%
heiko carstensheiko 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 carstensheiko carstens8792.55%250.00%
jan glauberjan glauber44.26%125.00%
alexander kuleshovalexander 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 carstensheiko carstens14188.68%457.14%
jeremy fitzhardingejeremy fitzhardinge95.66%114.29%
jan glauberjan glauber85.03%114.29%
peter zijlstrapeter 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 fitzhardingejeremy fitzhardinge3193.94%150.00%
heiko carstensheiko 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(__sm_arch_jump_label_transform, &args, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
jeremy fitzhardingejeremy fitzhardinge2255.00%150.00%
jan glauberjan glauber1845.00%150.00%
Total40100.00%2100.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 fitzhardingejeremy fitzhardinge2191.30%150.00%
heiko carstensheiko carstens28.70%150.00%
Total23100.00%2100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
heiko carstensheiko carstens28358.59%450.00%
jan glauberjan glauber10822.36%112.50%
jeremy fitzhardingejeremy fitzhardinge8818.22%112.50%
alexander kuleshovalexander kuleshov30.62%112.50%
peter zijlstrapeter zijlstra10.21%112.50%
Total483100.00%8100.00%
Directory: arch/s390/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.