futex_compat.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * linux/kernel/futex_compat.c
  3. *
  4. * Futex compatibililty routines.
  5. *
  6. * Copyright 2006, Red Hat, Inc., Ingo Molnar
  7. */
  8. #include <linux/linkage.h>
  9. #include <linux/compat.h>
  10. #include <linux/nsproxy.h>
  11. #include <linux/futex.h>
  12. #include <asm/uaccess.h>
  13. /*
  14. * Fetch a robust-list pointer. Bit 0 signals PI futexes:
  15. */
  16. static inline int
  17. fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
  18. compat_uptr_t __user *head, int *pi)
  19. {
  20. if (get_user(*uentry, head))
  21. return -EFAULT;
  22. *entry = compat_ptr((*uentry) & ~1);
  23. *pi = (unsigned int)(*uentry) & 1;
  24. return 0;
  25. }
  26. /*
  27. * Walk curr->robust_list (very carefully, it's a userspace list!)
  28. * and mark any locks found there dead, and notify any waiters.
  29. *
  30. * We silently return on any sign of list-walking problem.
  31. */
  32. void compat_exit_robust_list(struct task_struct *curr)
  33. {
  34. struct compat_robust_list_head __user *head = curr->compat_robust_list;
  35. struct robust_list __user *entry, *next_entry, *pending;
  36. unsigned int limit = ROBUST_LIST_LIMIT, pi, next_pi, pip;
  37. compat_uptr_t uentry, next_uentry, upending;
  38. compat_long_t futex_offset;
  39. int rc;
  40. /*
  41. * Fetch the list head (which was registered earlier, via
  42. * sys_set_robust_list()):
  43. */
  44. if (fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
  45. return;
  46. /*
  47. * Fetch the relative futex offset:
  48. */
  49. if (get_user(futex_offset, &head->futex_offset))
  50. return;
  51. /*
  52. * Fetch any possibly pending lock-add first, and handle it
  53. * if it exists:
  54. */
  55. if (fetch_robust_entry(&upending, &pending,
  56. &head->list_op_pending, &pip))
  57. return;
  58. next_entry = NULL; /* avoid warning with gcc */
  59. while (entry != (struct robust_list __user *) &head->list) {
  60. /*
  61. * Fetch the next entry in the list before calling
  62. * handle_futex_death:
  63. */
  64. rc = fetch_robust_entry(&next_uentry, &next_entry,
  65. (compat_uptr_t __user *)&entry->next, &next_pi);
  66. /*
  67. * A pending lock might already be on the list, so
  68. * dont process it twice:
  69. */
  70. if (entry != pending)
  71. if (handle_futex_death((void __user *)entry + futex_offset,
  72. curr, pi))
  73. return;
  74. if (rc)
  75. return;
  76. uentry = next_uentry;
  77. entry = next_entry;
  78. pi = next_pi;
  79. /*
  80. * Avoid excessively long or circular lists:
  81. */
  82. if (!--limit)
  83. break;
  84. cond_resched();
  85. }
  86. if (pending)
  87. handle_futex_death((void __user *)pending + futex_offset,
  88. curr, pip);
  89. }
  90. asmlinkage long
  91. compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
  92. compat_size_t len)
  93. {
  94. if (unlikely(len != sizeof(*head)))
  95. return -EINVAL;
  96. current->compat_robust_list = head;
  97. return 0;
  98. }
  99. asmlinkage long
  100. compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
  101. compat_size_t __user *len_ptr)
  102. {
  103. struct compat_robust_list_head __user *head;
  104. unsigned long ret;
  105. if (!pid)
  106. head = current->compat_robust_list;
  107. else {
  108. struct task_struct *p;
  109. ret = -ESRCH;
  110. read_lock(&tasklist_lock);
  111. p = find_task_by_vpid(pid);
  112. if (!p)
  113. goto err_unlock;
  114. ret = -EPERM;
  115. if ((current->euid != p->euid) && (current->euid != p->uid) &&
  116. !capable(CAP_SYS_PTRACE))
  117. goto err_unlock;
  118. head = p->compat_robust_list;
  119. read_unlock(&tasklist_lock);
  120. }
  121. if (put_user(sizeof(*head), len_ptr))
  122. return -EFAULT;
  123. return put_user(ptr_to_compat(head), head_ptr);
  124. err_unlock:
  125. read_unlock(&tasklist_lock);
  126. return ret;
  127. }
  128. asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
  129. struct compat_timespec __user *utime, u32 __user *uaddr2,
  130. u32 val3)
  131. {
  132. struct timespec ts;
  133. ktime_t t, *tp = NULL;
  134. int val2 = 0;
  135. int cmd = op & FUTEX_CMD_MASK;
  136. if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI)) {
  137. if (get_compat_timespec(&ts, utime))
  138. return -EFAULT;
  139. if (!timespec_valid(&ts))
  140. return -EINVAL;
  141. t = timespec_to_ktime(ts);
  142. if (cmd == FUTEX_WAIT)
  143. t = ktime_add(ktime_get(), t);
  144. tp = &t;
  145. }
  146. if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE)
  147. val2 = (int) (unsigned long) utime;
  148. return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
  149. }