domain.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * AppArmor security module
  3. *
  4. * This file contains AppArmor security domain transition function definitions.
  5. *
  6. * Copyright (C) 1998-2008 Novell/SUSE
  7. * Copyright 2009-2010 Canonical Ltd.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation, version 2 of the
  12. * License.
  13. */
  14. #include <linux/binfmts.h>
  15. #include <linux/types.h>
  16. #ifndef __AA_DOMAIN_H
  17. #define __AA_DOMAIN_H
  18. struct aa_domain {
  19. int size;
  20. char **table;
  21. };
  22. int apparmor_bprm_set_creds(struct linux_binprm *bprm);
  23. int apparmor_bprm_secureexec(struct linux_binprm *bprm);
  24. void apparmor_bprm_committing_creds(struct linux_binprm *bprm);
  25. void apparmor_bprm_committed_creds(struct linux_binprm *bprm);
  26. void aa_free_domain_entries(struct aa_domain *domain);
  27. int aa_change_hat(const char *hats[], int count, u64 token, bool permtest);
  28. int aa_change_profile(const char *ns_name, const char *name, bool onexec,
  29. bool permtest);
  30. #endif /* __AA_DOMAIN_H */