cregit-Linux how code gets into the kernel

Release 4.18 include/linux/pkeys.h

Directory: include/linux
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_PKEYS_H

#define _LINUX_PKEYS_H

#include <linux/mm.h>

#ifdef CONFIG_ARCH_HAS_PKEYS
#include <asm/pkeys.h>
#else /* ! CONFIG_ARCH_HAS_PKEYS */

#define arch_max_pkey() (1)

#define execute_only_pkey(mm) (0)

#define arch_override_mprotect_pkey(vma, prot, pkey) (0)

#define PKEY_DEDICATED_EXECUTE_ONLY 0

#define ARCH_VM_PKEY_FLAGS 0


static inline int vma_pkey(struct vm_area_struct *vma) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Michael Ellerman15100.00%1100.00%
Total15100.00%1100.00%


static inline bool mm_pkey_is_allocated(struct mm_struct *mm, int pkey) { return (pkey == 0); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen22100.00%1100.00%
Total22100.00%1100.00%


static inline int mm_pkey_alloc(struct mm_struct *mm) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen16100.00%1100.00%
Total16100.00%1100.00%


static inline int mm_pkey_free(struct mm_struct *mm, int pkey) { return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen19100.00%1100.00%
Total19100.00%1100.00%


static inline int arch_set_user_pkey_access(struct task_struct *tsk, int pkey, unsigned long init_val) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen22100.00%1100.00%
Total22100.00%1100.00%


static inline bool arch_pkeys_enabled(void) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Michael Ellerman12100.00%1100.00%
Total12100.00%1100.00%


static inline void copy_init_pkru_to_fpregs(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen8100.00%1100.00%
Total8100.00%1100.00%

#endif /* ! CONFIG_ARCH_HAS_PKEYS */ #endif /* _LINUX_PKEYS_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen14182.94%555.56%
Michael Ellerman2816.47%333.33%
Greg Kroah-Hartman10.59%111.11%
Total170100.00%9100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.