eventpoll.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * include/linux/eventpoll.h ( Efficient event polling implementation )
  4. * Copyright (C) 2001,...,2006 Davide Libenzi
  5. *
  6. * Davide Libenzi <[email protected]>
  7. */
  8. #ifndef _LINUX_EVENTPOLL_H
  9. #define _LINUX_EVENTPOLL_H
  10. #include <uapi/linux/eventpoll.h>
  11. #include <uapi/linux/kcmp.h>
  12. /* Forward declarations to avoid compiler errors */
  13. struct file;
  14. #ifdef CONFIG_EPOLL
  15. #ifdef CONFIG_KCMP
  16. struct file *get_epoll_tfile_raw_ptr(struct file *file, int tfd, unsigned long toff);
  17. #endif
  18. /* Used to release the epoll bits inside the "struct file" */
  19. void eventpoll_release_file(struct file *file);
  20. /*
  21. * This is called from inside fs/file_table.c:__fput() to unlink files
  22. * from the eventpoll interface. We need to have this facility to cleanup
  23. * correctly files that are closed without being removed from the eventpoll
  24. * interface.
  25. */
  26. static inline void eventpoll_release(struct file *file)
  27. {
  28. /*
  29. * Fast check to avoid the get/release of the semaphore. Since
  30. * we're doing this outside the semaphore lock, it might return
  31. * false negatives, but we don't care. It'll help in 99.99% of cases
  32. * to avoid the semaphore lock. False positives simply cannot happen
  33. * because the file in on the way to be removed and nobody ( but
  34. * eventpoll ) has still a reference to this file.
  35. */
  36. if (likely(!file->f_ep))
  37. return;
  38. /*
  39. * The file is being closed while it is still linked to an epoll
  40. * descriptor. We need to handle this by correctly unlinking it
  41. * from its containers.
  42. */
  43. eventpoll_release_file(file);
  44. }
  45. int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds,
  46. bool nonblock);
  47. /* Tells if the epoll_ctl(2) operation needs an event copy from userspace */
  48. static inline int ep_op_has_event(int op)
  49. {
  50. return op != EPOLL_CTL_DEL;
  51. }
  52. #else
  53. static inline void eventpoll_release(struct file *file) {}
  54. #endif
  55. #if defined(CONFIG_ARM) && defined(CONFIG_OABI_COMPAT)
  56. /* ARM OABI has an incompatible struct layout and needs a special handler */
  57. extern struct epoll_event __user *
  58. epoll_put_uevent(__poll_t revents, __u64 data,
  59. struct epoll_event __user *uevent);
  60. #else
  61. static inline struct epoll_event __user *
  62. epoll_put_uevent(__poll_t revents, __u64 data,
  63. struct epoll_event __user *uevent)
  64. {
  65. if (__put_user(revents, &uevent->events) ||
  66. __put_user(data, &uevent->data))
  67. return NULL;
  68. return uevent+1;
  69. }
  70. #endif
  71. #endif /* #ifndef _LINUX_EVENTPOLL_H */