• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/

Lines Matching refs:bprm

64 extern int cap_bprm_set_creds(struct linux_binprm *bprm);
65 extern int cap_bprm_secureexec(struct linux_binprm *bprm);
127 /* bprm->unsafe reasons */
189 * Save security information in the bprm->security field, typically based
190 * on information about the bprm->file, for later use by the apply_creds
195 * checking to see if @bprm->security is non-NULL. If so, then the hook
198 * @bprm contains the linux_binprm structure.
202 * begin. It allows a check the @bprm->security value which is set in the
204 * that the argv list and envp list are reliably available in @bprm. This
207 * @bprm contains the linux_binprm structure.
212 * pointed to by @current->cred and the information set in @bprm->cred by
213 * the bprm_set_creds hook. @bprm points to the linux_binprm structure.
221 * have, by this point, been set to @current->cred. @bprm points to the
230 * @bprm contains the linux_binprm structure.
1385 int (*bprm_set_creds) (struct linux_binprm *bprm);
1386 int (*bprm_check_security) (struct linux_binprm *bprm);
1387 int (*bprm_secureexec) (struct linux_binprm *bprm);
1388 void (*bprm_committing_creds) (struct linux_binprm *bprm);
1389 void (*bprm_committed_creds) (struct linux_binprm *bprm);
1667 int security_bprm_set_creds(struct linux_binprm *bprm);
1668 int security_bprm_check(struct linux_binprm *bprm);
1669 void security_bprm_committing_creds(struct linux_binprm *bprm);
1670 void security_bprm_committed_creds(struct linux_binprm *bprm);
1671 int security_bprm_secureexec(struct linux_binprm *bprm);
1922 static inline int security_bprm_set_creds(struct linux_binprm *bprm)
1924 return cap_bprm_set_creds(bprm);
1927 static inline int security_bprm_check(struct linux_binprm *bprm)
1932 static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1936 static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1940 static inline int security_bprm_secureexec(struct linux_binprm *bprm)
1942 return cap_bprm_secureexec(bprm);