cregit-Linux how code gets into the kernel

Release 4.8 kernel/exec_domain.c

Directory: kernel
/*
 * Handling of different ABIs (personalities).
 *
 * We group personalities into execution domains which have their
 * own handlers for kernel entry points, signal mapping, etc...
 *
 * 2001-05-06   Complete rewrite,  Christoph Hellwig (hch@infradead.org)
 */

#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/kmod.h>
#include <linux/module.h>
#include <linux/personality.h>
#include <linux/proc_fs.h>
#include <linux/sched.h>
#include <linux/seq_file.h>
#include <linux/syscalls.h>
#include <linux/sysctl.h>
#include <linux/types.h>
#include <linux/fs_struct.h>

#ifdef CONFIG_PROC_FS

static int execdomains_proc_show(struct seq_file *m, void *v) { seq_puts(m, "0-0\tLinux \t[kernel]\n"); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
alexey dobriyanalexey dobriyan1352.00%125.00%
pre-gitpre-git1040.00%250.00%
richard weinbergerrichard weinberger28.00%125.00%
Total25100.00%4100.00%


static int execdomains_proc_open(struct inode *inode, struct file *file) { return single_open(file, execdomains_proc_show, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
alexey dobriyanalexey dobriyan26100.00%1100.00%
Total26100.00%1100.00%

static const struct file_operations execdomains_proc_fops = { .open = execdomains_proc_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, };
static int __init proc_execdomains_init(void) { proc_create("execdomains", 0, NULL, &execdomains_proc_fops); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
alexey dobriyanalexey dobriyan2291.67%150.00%
linus torvaldslinus torvalds28.33%150.00%
Total24100.00%2100.00%

module_init(proc_execdomains_init); #endif SYSCALL_DEFINE1(personality, unsigned int, personality) { unsigned int old = current->personality; if (personality != 0xffffffff) set_personality(personality); return old; }

Overall Contributors

PersonTokensPropCommitsCommitProp
alexey dobriyanalexey dobriyan10557.69%17.69%
linus torvaldslinus torvalds4323.63%215.38%
pre-gitpre-git158.24%430.77%
heiko carstensheiko carstens73.85%17.69%
al viroal viro31.65%17.69%
arnd bergmannarnd bergmann31.65%17.69%
oleg nesterovoleg nesterov31.65%17.69%
richard weinbergerrichard weinberger21.10%17.69%
dave jonesdave jones10.55%17.69%
Total182100.00%13100.00%
Directory: kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.