sid.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * AppArmor security module
  3. *
  4. * This file contains AppArmor security identifier (sid) manipulation fns
  5. *
  6. * Copyright 2009-2010 Canonical Ltd.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation, version 2 of the
  11. * License.
  12. *
  13. *
  14. * AppArmor allocates a unique sid for every profile loaded. If a profile
  15. * is replaced it receives the sid of the profile it is replacing.
  16. *
  17. * The sid value of 0 is invalid.
  18. */
  19. #include <linux/spinlock.h>
  20. #include <linux/errno.h>
  21. #include <linux/err.h>
  22. #include "include/sid.h"
  23. /* global counter from which sids are allocated */
  24. static u32 global_sid;
  25. static DEFINE_SPINLOCK(sid_lock);
  26. /* TODO FIXME: add sid to profile mapping, and sid recycling */
  27. /**
  28. * aa_alloc_sid - allocate a new sid for a profile
  29. */
  30. u32 aa_alloc_sid(void)
  31. {
  32. u32 sid;
  33. /*
  34. * TODO FIXME: sid recycling - part of profile mapping table
  35. */
  36. spin_lock(&sid_lock);
  37. sid = (++global_sid);
  38. spin_unlock(&sid_lock);
  39. return sid;
  40. }
  41. /**
  42. * aa_free_sid - free a sid
  43. * @sid: sid to free
  44. */
  45. void aa_free_sid(u32 sid)
  46. {
  47. ; /* NOP ATM */
  48. }