Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _linux_POSIX_TIMERS_H |
| 3 | #define _linux_POSIX_TIMERS_H |
| 4 | |
| 5 | #include <linux/spinlock.h> |
| 6 | #include <linux/list.h> |
| 7 | #include <linux/sched.h> |
Richard Cochran | f1f1d5e | 2011-02-01 13:52:26 +0000 | [diff] [blame] | 8 | #include <linux/timex.h> |
John Stultz | 9a7adcf | 2011-01-11 09:54:33 -0800 | [diff] [blame] | 9 | #include <linux/alarmtimer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Christoph Hellwig | 31ea70e | 2017-06-03 21:01:00 +0200 | [diff] [blame] | 11 | struct siginfo; |
Frederic Weisbecker | 55ccb61 | 2013-06-28 00:06:42 +0000 | [diff] [blame] | 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | struct cpu_timer_list { |
| 14 | struct list_head entry; |
Frederic Weisbecker | ebd7e7f | 2017-01-31 04:09:34 +0100 | [diff] [blame] | 15 | u64 expires, incr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | struct task_struct *task; |
| 17 | int firing; |
| 18 | }; |
| 19 | |
Richard Cochran | 81e294c | 2011-02-01 13:52:32 +0000 | [diff] [blame] | 20 | /* |
| 21 | * Bit fields within a clockid: |
| 22 | * |
| 23 | * The most significant 29 bits hold either a pid or a file descriptor. |
| 24 | * |
| 25 | * Bit 2 indicates whether a cpu clock refers to a thread or a process. |
| 26 | * |
| 27 | * Bits 1 and 0 give the type: PROF=0, VIRT=1, SCHED=2, or FD=3. |
| 28 | * |
| 29 | * A clockid is invalid if bits 2, 1, and 0 are all set. |
| 30 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3)) |
| 32 | #define CPUCLOCK_PERTHREAD(clock) \ |
| 33 | (((clock) & (clockid_t) CPUCLOCK_PERTHREAD_MASK) != 0) |
Richard Cochran | 0606f42 | 2011-02-01 13:52:35 +0000 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #define CPUCLOCK_PERTHREAD_MASK 4 |
| 36 | #define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK) |
| 37 | #define CPUCLOCK_CLOCK_MASK 3 |
| 38 | #define CPUCLOCK_PROF 0 |
| 39 | #define CPUCLOCK_VIRT 1 |
| 40 | #define CPUCLOCK_SCHED 2 |
| 41 | #define CPUCLOCK_MAX 3 |
Richard Cochran | 81e294c | 2011-02-01 13:52:32 +0000 | [diff] [blame] | 42 | #define CLOCKFD CPUCLOCK_MAX |
| 43 | #define CLOCKFD_MASK (CPUCLOCK_PERTHREAD_MASK|CPUCLOCK_CLOCK_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Nick Desaulniers | 29f1b2b | 2017-12-28 22:11:36 -0500 | [diff] [blame] | 45 | static inline clockid_t make_process_cpuclock(const unsigned int pid, |
| 46 | const clockid_t clock) |
| 47 | { |
| 48 | return ((~pid) << 3) | clock; |
| 49 | } |
| 50 | static inline clockid_t make_thread_cpuclock(const unsigned int tid, |
| 51 | const clockid_t clock) |
| 52 | { |
| 53 | return make_process_cpuclock(tid, clock | CPUCLOCK_PERTHREAD_MASK); |
| 54 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Nick Desaulniers | 29f1b2b | 2017-12-28 22:11:36 -0500 | [diff] [blame] | 56 | static inline clockid_t fd_to_clockid(const int fd) |
| 57 | { |
| 58 | return make_process_cpuclock((unsigned int) fd, CLOCKFD); |
| 59 | } |
| 60 | |
| 61 | static inline int clockid_to_fd(const clockid_t clk) |
| 62 | { |
| 63 | return ~(clk >> 3); |
| 64 | } |
Richard Cochran | 0606f42 | 2011-02-01 13:52:35 +0000 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #define REQUEUE_PENDING 1 |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 67 | |
| 68 | /** |
| 69 | * struct k_itimer - POSIX.1b interval timer structure. |
| 70 | * @list: List head for binding the timer to signals->posix_timers |
| 71 | * @t_hash: Entry in the posix timer hash table |
| 72 | * @it_lock: Lock protecting the timer |
Thomas Gleixner | d97bb75 | 2017-05-30 23:15:44 +0200 | [diff] [blame] | 73 | * @kclock: Pointer to the k_clock struct handling this timer |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 74 | * @it_clock: The posix timer clock id |
| 75 | * @it_id: The posix timer id for identifying the timer |
Thomas Gleixner | 21e55c1 | 2017-05-30 23:15:48 +0200 | [diff] [blame] | 76 | * @it_active: Marker that timer is active |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 77 | * @it_overrun: The overrun counter for pending signals |
| 78 | * @it_overrun_last: The overrun at the time of the last delivered signal |
| 79 | * @it_requeue_pending: Indicator that timer waits for being requeued on |
| 80 | * signal delivery |
| 81 | * @it_sigev_notify: The notify word of sigevent struct for signal delivery |
Thomas Gleixner | 80105cd | 2017-05-30 23:15:43 +0200 | [diff] [blame] | 82 | * @it_interval: The interval for periodic timers |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 83 | * @it_signal: Pointer to the creators signal struct |
| 84 | * @it_pid: The pid of the process/task targeted by the signal |
| 85 | * @it_process: The task to wakeup on clock_nanosleep (CPU timers) |
| 86 | * @sigq: Pointer to preallocated sigqueue |
| 87 | * @it: Union representing the various posix timer type |
| 88 | * internals. Also used for rcu freeing the timer. |
| 89 | */ |
| 90 | struct k_itimer { |
| 91 | struct list_head list; |
| 92 | struct hlist_node t_hash; |
| 93 | spinlock_t it_lock; |
Thomas Gleixner | d97bb75 | 2017-05-30 23:15:44 +0200 | [diff] [blame] | 94 | const struct k_clock *kclock; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 95 | clockid_t it_clock; |
| 96 | timer_t it_id; |
Thomas Gleixner | 21e55c1 | 2017-05-30 23:15:48 +0200 | [diff] [blame] | 97 | int it_active; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 98 | int it_overrun; |
| 99 | int it_overrun_last; |
| 100 | int it_requeue_pending; |
| 101 | int it_sigev_notify; |
Thomas Gleixner | 80105cd | 2017-05-30 23:15:43 +0200 | [diff] [blame] | 102 | ktime_t it_interval; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 103 | struct signal_struct *it_signal; |
Oleg Nesterov | 27af424 | 2008-12-01 14:18:13 -0800 | [diff] [blame] | 104 | union { |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 105 | struct pid *it_pid; |
| 106 | struct task_struct *it_process; |
Oleg Nesterov | 27af424 | 2008-12-01 14:18:13 -0800 | [diff] [blame] | 107 | }; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 108 | struct sigqueue *sigq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | union { |
| 110 | struct { |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 111 | struct hrtimer timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } real; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 113 | struct cpu_timer_list cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | struct { |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 115 | struct alarm alarmtimer; |
John Stultz | 9e26476 | 2011-08-10 12:09:24 -0700 | [diff] [blame] | 116 | } alarm; |
Thomas Gleixner | 03676b4 | 2017-05-30 23:15:40 +0200 | [diff] [blame] | 117 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } it; |
| 119 | }; |
| 120 | |
Thomas Gleixner | 2a69897 | 2006-01-09 20:52:28 -0800 | [diff] [blame] | 121 | void run_posix_cpu_timers(struct task_struct *task); |
| 122 | void posix_cpu_timers_exit(struct task_struct *task); |
| 123 | void posix_cpu_timers_exit_group(struct task_struct *task); |
Thomas Gleixner | 2a69897 | 2006-01-09 20:52:28 -0800 | [diff] [blame] | 124 | void set_process_cpu_timer(struct task_struct *task, unsigned int clock_idx, |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 125 | u64 *newval, u64 *oldval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Jiri Slaby | 5ab46b3 | 2009-08-28 14:05:12 +0200 | [diff] [blame] | 127 | void update_rlimit_cpu(struct task_struct *task, unsigned long rlim_new); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 128 | |
Thomas Gleixner | 96fe3b0 | 2017-05-30 23:15:46 +0200 | [diff] [blame] | 129 | void posixtimer_rearm(struct siginfo *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | #endif |