Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux-2.6-block.git] / include / linux / time_namespace.h
CommitLineData
769071ac
AV
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _LINUX_TIMENS_H
3#define _LINUX_TIMENS_H
4
5
6#include <linux/sched.h>
769071ac
AV
7#include <linux/nsproxy.h>
8#include <linux/ns_common.h>
9#include <linux/err.h>
10
11struct user_namespace;
12extern struct user_namespace init_user_ns;
13
af993f58
AV
14struct timens_offsets {
15 struct timespec64 monotonic;
16 struct timespec64 boottime;
17};
18
769071ac 19struct time_namespace {
769071ac
AV
20 struct user_namespace *user_ns;
21 struct ucounts *ucounts;
22 struct ns_common ns;
af993f58 23 struct timens_offsets offsets;
afaa7b5a
DS
24 struct page *vvar_page;
25 /* If set prevents changing offsets after any task joined namespace. */
26 bool frozen_offsets;
769071ac
AV
27} __randomize_layout;
28
29extern struct time_namespace init_time_ns;
30
31#ifdef CONFIG_TIME_NS
70ddf651
DS
32extern int vdso_join_timens(struct task_struct *task,
33 struct time_namespace *ns);
76c12881 34extern void timens_commit(struct task_struct *tsk, struct time_namespace *ns);
70ddf651 35
769071ac
AV
36static inline struct time_namespace *get_time_ns(struct time_namespace *ns)
37{
28c41efd 38 refcount_inc(&ns->ns.count);
769071ac
AV
39 return ns;
40}
41
42struct time_namespace *copy_time_ns(unsigned long flags,
43 struct user_namespace *user_ns,
44 struct time_namespace *old_ns);
28c41efd 45void free_time_ns(struct time_namespace *ns);
5c62634f 46void timens_on_fork(struct nsproxy *nsproxy, struct task_struct *tsk);
d6c494e8 47struct page *find_timens_vvar_page(struct vm_area_struct *vma);
769071ac
AV
48
49static inline void put_time_ns(struct time_namespace *ns)
50{
28c41efd
KT
51 if (refcount_dec_and_test(&ns->ns.count))
52 free_time_ns(ns);
769071ac
AV
53}
54
04a8682a
AV
55void proc_timens_show_offsets(struct task_struct *p, struct seq_file *m);
56
57struct proc_timens_offset {
58 int clockid;
59 struct timespec64 val;
60};
61
62int proc_timens_set_offset(struct file *file, struct task_struct *p,
63 struct proc_timens_offset *offsets, int n);
64
af993f58
AV
65static inline void timens_add_monotonic(struct timespec64 *ts)
66{
67 struct timens_offsets *ns_offsets = &current->nsproxy->time_ns->offsets;
68
69 *ts = timespec64_add(*ts, ns_offsets->monotonic);
70}
71
72static inline void timens_add_boottime(struct timespec64 *ts)
73{
74 struct timens_offsets *ns_offsets = &current->nsproxy->time_ns->offsets;
75
76 *ts = timespec64_add(*ts, ns_offsets->boottime);
77}
78
31909e33
MW
79static inline u64 timens_add_boottime_ns(u64 nsec)
80{
81 struct timens_offsets *ns_offsets = &current->nsproxy->time_ns->offsets;
82
83 return nsec + timespec64_to_ns(&ns_offsets->boottime);
84}
85
86static inline void timens_sub_boottime(struct timespec64 *ts)
87{
88 struct timens_offsets *ns_offsets = &current->nsproxy->time_ns->offsets;
89
90 *ts = timespec64_sub(*ts, ns_offsets->boottime);
91}
92
89dd8eec
AV
93ktime_t do_timens_ktime_to_host(clockid_t clockid, ktime_t tim,
94 struct timens_offsets *offsets);
95
96static inline ktime_t timens_ktime_to_host(clockid_t clockid, ktime_t tim)
97{
98 struct time_namespace *ns = current->nsproxy->time_ns;
99
100 if (likely(ns == &init_time_ns))
101 return tim;
102
103 return do_timens_ktime_to_host(clockid, tim, &ns->offsets);
104}
105
769071ac 106#else
70ddf651
DS
107static inline int vdso_join_timens(struct task_struct *task,
108 struct time_namespace *ns)
109{
110 return 0;
111}
112
76c12881
CB
113static inline void timens_commit(struct task_struct *tsk,
114 struct time_namespace *ns)
115{
116}
117
769071ac
AV
118static inline struct time_namespace *get_time_ns(struct time_namespace *ns)
119{
120 return NULL;
121}
122
123static inline void put_time_ns(struct time_namespace *ns)
124{
125}
126
127static inline
128struct time_namespace *copy_time_ns(unsigned long flags,
129 struct user_namespace *user_ns,
130 struct time_namespace *old_ns)
131{
132 if (flags & CLONE_NEWTIME)
133 return ERR_PTR(-EINVAL);
134
135 return old_ns;
136}
137
5c62634f 138static inline void timens_on_fork(struct nsproxy *nsproxy,
769071ac
AV
139 struct task_struct *tsk)
140{
5c62634f 141 return;
769071ac
AV
142}
143
d6c494e8
JH
144static inline struct page *find_timens_vvar_page(struct vm_area_struct *vma)
145{
146 return NULL;
147}
148
af993f58
AV
149static inline void timens_add_monotonic(struct timespec64 *ts) { }
150static inline void timens_add_boottime(struct timespec64 *ts) { }
31909e33
MW
151
152static inline u64 timens_add_boottime_ns(u64 nsec)
153{
154 return nsec;
155}
156
157static inline void timens_sub_boottime(struct timespec64 *ts) { }
158
89dd8eec
AV
159static inline ktime_t timens_ktime_to_host(clockid_t clockid, ktime_t tim)
160{
161 return tim;
162}
769071ac
AV
163#endif
164
b7a7ce1b
AB
165struct vdso_data *arch_get_vdso_data(void *vvar_page);
166
769071ac 167#endif /* _LINUX_TIMENS_H */