is_single_threaded.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Function to determine if a thread group is single threaded or not
  2. *
  3. * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. * - Derived from security/selinux/hooks.c
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public Licence
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the Licence, or (at your option) any later version.
  11. */
  12. #include <linux/sched.h>
  13. /*
  14. * Returns true if the task does not share ->mm with another thread/process.
  15. */
  16. bool is_single_threaded(struct task_struct *task)
  17. {
  18. struct mm_struct *mm = task->mm;
  19. struct task_struct *p, *t;
  20. bool ret;
  21. might_sleep();
  22. if (atomic_read(&task->signal->live) != 1)
  23. return false;
  24. if (atomic_read(&mm->mm_users) == 1)
  25. return true;
  26. ret = false;
  27. down_write(&mm->mmap_sem);
  28. rcu_read_lock();
  29. for_each_process(p) {
  30. if (unlikely(p->flags & PF_KTHREAD))
  31. continue;
  32. if (unlikely(p == task->group_leader))
  33. continue;
  34. t = p;
  35. do {
  36. if (unlikely(t->mm == mm))
  37. goto found;
  38. if (likely(t->mm))
  39. break;
  40. } while_each_thread(p, t);
  41. }
  42. ret = true;
  43. found:
  44. rcu_read_unlock();
  45. up_write(&mm->mmap_sem);
  46. return ret;
  47. }