blob: 77c0c2370b6d1d994e5752b05fe5e8aae395a75b [file] [log] [blame]
Thomas Gleixner35728b82018-10-31 19:21:09 +01001// SPDX-License-Identifier: GPL-2.0+
Richard Cochran0606f422011-02-01 13:52:35 +00002/*
Thomas Gleixner58c5fc22018-10-31 19:21:08 +01003 * Support for dynamic clock devices
Richard Cochran0606f422011-02-01 13:52:35 +00004 *
5 * Copyright (C) 2010 OMICRON electronics GmbH
Richard Cochran0606f422011-02-01 13:52:35 +00006 */
7#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -04008#include <linux/export.h>
Richard Cochran0606f422011-02-01 13:52:35 +00009#include <linux/file.h>
Richard Cochran0606f422011-02-01 13:52:35 +000010#include <linux/posix-clock.h>
11#include <linux/slab.h>
12#include <linux/syscalls.h>
13#include <linux/uaccess.h>
14
Thomas Gleixnerbab0aae2017-05-30 23:15:41 +020015#include "posix-timers.h"
16
Richard Cochran0606f422011-02-01 13:52:35 +000017/*
18 * Returns NULL if the posix_clock instance attached to 'fp' is old and stale.
19 */
20static struct posix_clock *get_posix_clock(struct file *fp)
21{
22 struct posix_clock *clk = fp->private_data;
23
Richard Cochran1791f882011-03-30 15:24:21 +020024 down_read(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +000025
26 if (!clk->zombie)
27 return clk;
28
Richard Cochran1791f882011-03-30 15:24:21 +020029 up_read(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +000030
31 return NULL;
32}
33
34static void put_posix_clock(struct posix_clock *clk)
35{
Richard Cochran1791f882011-03-30 15:24:21 +020036 up_read(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +000037}
38
39static ssize_t posix_clock_read(struct file *fp, char __user *buf,
40 size_t count, loff_t *ppos)
41{
42 struct posix_clock *clk = get_posix_clock(fp);
43 int err = -EINVAL;
44
45 if (!clk)
46 return -ENODEV;
47
48 if (clk->ops.read)
49 err = clk->ops.read(clk, fp->f_flags, buf, count);
50
51 put_posix_clock(clk);
52
53 return err;
54}
55
Al Viro9dd95742017-07-03 00:42:43 -040056static __poll_t posix_clock_poll(struct file *fp, poll_table *wait)
Richard Cochran0606f422011-02-01 13:52:35 +000057{
58 struct posix_clock *clk = get_posix_clock(fp);
Al Viro9dd95742017-07-03 00:42:43 -040059 __poll_t result = 0;
Richard Cochran0606f422011-02-01 13:52:35 +000060
61 if (!clk)
Linus Torvaldsa9a08842018-02-11 14:34:03 -080062 return EPOLLERR;
Richard Cochran0606f422011-02-01 13:52:35 +000063
64 if (clk->ops.poll)
65 result = clk->ops.poll(clk, fp, wait);
66
67 put_posix_clock(clk);
68
69 return result;
70}
71
Richard Cochran0606f422011-02-01 13:52:35 +000072static long posix_clock_ioctl(struct file *fp,
73 unsigned int cmd, unsigned long arg)
74{
75 struct posix_clock *clk = get_posix_clock(fp);
76 int err = -ENOTTY;
77
78 if (!clk)
79 return -ENODEV;
80
81 if (clk->ops.ioctl)
82 err = clk->ops.ioctl(clk, cmd, arg);
83
84 put_posix_clock(clk);
85
86 return err;
87}
88
89#ifdef CONFIG_COMPAT
90static long posix_clock_compat_ioctl(struct file *fp,
91 unsigned int cmd, unsigned long arg)
92{
93 struct posix_clock *clk = get_posix_clock(fp);
94 int err = -ENOTTY;
95
96 if (!clk)
97 return -ENODEV;
98
99 if (clk->ops.ioctl)
100 err = clk->ops.ioctl(clk, cmd, arg);
101
102 put_posix_clock(clk);
103
104 return err;
105}
106#endif
107
108static int posix_clock_open(struct inode *inode, struct file *fp)
109{
110 int err;
111 struct posix_clock *clk =
112 container_of(inode->i_cdev, struct posix_clock, cdev);
113
Richard Cochran1791f882011-03-30 15:24:21 +0200114 down_read(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +0000115
116 if (clk->zombie) {
117 err = -ENODEV;
118 goto out;
119 }
120 if (clk->ops.open)
121 err = clk->ops.open(clk, fp->f_mode);
122 else
123 err = 0;
124
125 if (!err) {
Vladis Dronova33121e2019-12-27 03:26:27 +0100126 get_device(clk->dev);
Richard Cochran0606f422011-02-01 13:52:35 +0000127 fp->private_data = clk;
128 }
129out:
Richard Cochran1791f882011-03-30 15:24:21 +0200130 up_read(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +0000131 return err;
132}
133
134static int posix_clock_release(struct inode *inode, struct file *fp)
135{
136 struct posix_clock *clk = fp->private_data;
137 int err = 0;
138
139 if (clk->ops.release)
140 err = clk->ops.release(clk);
141
Vladis Dronova33121e2019-12-27 03:26:27 +0100142 put_device(clk->dev);
Richard Cochran0606f422011-02-01 13:52:35 +0000143
144 fp->private_data = NULL;
145
146 return err;
147}
148
149static const struct file_operations posix_clock_file_operations = {
150 .owner = THIS_MODULE,
151 .llseek = no_llseek,
152 .read = posix_clock_read,
153 .poll = posix_clock_poll,
154 .unlocked_ioctl = posix_clock_ioctl,
155 .open = posix_clock_open,
156 .release = posix_clock_release,
Richard Cochran0606f422011-02-01 13:52:35 +0000157#ifdef CONFIG_COMPAT
158 .compat_ioctl = posix_clock_compat_ioctl,
159#endif
160};
161
Vladis Dronova33121e2019-12-27 03:26:27 +0100162int posix_clock_register(struct posix_clock *clk, struct device *dev)
Richard Cochran0606f422011-02-01 13:52:35 +0000163{
164 int err;
165
Richard Cochran1791f882011-03-30 15:24:21 +0200166 init_rwsem(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +0000167
168 cdev_init(&clk->cdev, &posix_clock_file_operations);
Vladis Dronova33121e2019-12-27 03:26:27 +0100169 err = cdev_device_add(&clk->cdev, dev);
170 if (err) {
171 pr_err("%s unable to add device %d:%d\n",
172 dev_name(dev), MAJOR(dev->devt), MINOR(dev->devt));
173 return err;
174 }
Richard Cochran0606f422011-02-01 13:52:35 +0000175 clk->cdev.owner = clk->ops.owner;
Vladis Dronova33121e2019-12-27 03:26:27 +0100176 clk->dev = dev;
Richard Cochran0606f422011-02-01 13:52:35 +0000177
Vladis Dronova33121e2019-12-27 03:26:27 +0100178 return 0;
Richard Cochran0606f422011-02-01 13:52:35 +0000179}
180EXPORT_SYMBOL_GPL(posix_clock_register);
181
Richard Cochran0606f422011-02-01 13:52:35 +0000182void posix_clock_unregister(struct posix_clock *clk)
183{
Vladis Dronova33121e2019-12-27 03:26:27 +0100184 cdev_device_del(&clk->cdev, clk->dev);
Richard Cochran0606f422011-02-01 13:52:35 +0000185
Richard Cochran1791f882011-03-30 15:24:21 +0200186 down_write(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +0000187 clk->zombie = true;
Richard Cochran1791f882011-03-30 15:24:21 +0200188 up_write(&clk->rwsem);
Richard Cochran0606f422011-02-01 13:52:35 +0000189
Vladis Dronova33121e2019-12-27 03:26:27 +0100190 put_device(clk->dev);
Richard Cochran0606f422011-02-01 13:52:35 +0000191}
192EXPORT_SYMBOL_GPL(posix_clock_unregister);
193
194struct posix_clock_desc {
195 struct file *fp;
196 struct posix_clock *clk;
197};
198
199static int get_clock_desc(const clockid_t id, struct posix_clock_desc *cd)
200{
Nick Desaulniers29f1b2b2017-12-28 22:11:36 -0500201 struct file *fp = fget(clockid_to_fd(id));
Richard Cochran0606f422011-02-01 13:52:35 +0000202 int err = -EINVAL;
203
204 if (!fp)
205 return err;
206
207 if (fp->f_op->open != posix_clock_open || !fp->private_data)
208 goto out;
209
210 cd->fp = fp;
211 cd->clk = get_posix_clock(fp);
212
213 err = cd->clk ? 0 : -ENODEV;
214out:
215 if (err)
216 fput(fp);
217 return err;
218}
219
220static void put_clock_desc(struct posix_clock_desc *cd)
221{
222 put_posix_clock(cd->clk);
223 fput(cd->fp);
224}
225
Deepa Dinamaniead25412018-07-02 22:44:21 -0700226static int pc_clock_adjtime(clockid_t id, struct __kernel_timex *tx)
Richard Cochran0606f422011-02-01 13:52:35 +0000227{
228 struct posix_clock_desc cd;
229 int err;
230
231 err = get_clock_desc(id, &cd);
232 if (err)
233 return err;
234
Torben Hohn6e6823d2011-03-03 18:26:14 +0100235 if ((cd.fp->f_mode & FMODE_WRITE) == 0) {
236 err = -EACCES;
237 goto out;
238 }
239
Richard Cochran0606f422011-02-01 13:52:35 +0000240 if (cd.clk->ops.clock_adjtime)
241 err = cd.clk->ops.clock_adjtime(cd.clk, tx);
242 else
243 err = -EOPNOTSUPP;
Torben Hohn6e6823d2011-03-03 18:26:14 +0100244out:
Richard Cochran0606f422011-02-01 13:52:35 +0000245 put_clock_desc(&cd);
246
247 return err;
248}
249
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700250static int pc_clock_gettime(clockid_t id, struct timespec64 *ts)
Richard Cochran0606f422011-02-01 13:52:35 +0000251{
252 struct posix_clock_desc cd;
253 int err;
254
255 err = get_clock_desc(id, &cd);
256 if (err)
257 return err;
258
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700259 if (cd.clk->ops.clock_gettime)
260 err = cd.clk->ops.clock_gettime(cd.clk, ts);
Richard Cochran0606f422011-02-01 13:52:35 +0000261 else
262 err = -EOPNOTSUPP;
263
264 put_clock_desc(&cd);
265
266 return err;
267}
268
Deepa Dinamanid2e3e0c2017-03-26 12:04:15 -0700269static int pc_clock_getres(clockid_t id, struct timespec64 *ts)
Richard Cochran0606f422011-02-01 13:52:35 +0000270{
271 struct posix_clock_desc cd;
272 int err;
273
274 err = get_clock_desc(id, &cd);
275 if (err)
276 return err;
277
Deepa Dinamanid2e3e0c2017-03-26 12:04:15 -0700278 if (cd.clk->ops.clock_getres)
279 err = cd.clk->ops.clock_getres(cd.clk, ts);
Richard Cochran0606f422011-02-01 13:52:35 +0000280 else
281 err = -EOPNOTSUPP;
282
283 put_clock_desc(&cd);
284
285 return err;
286}
287
Deepa Dinamani0fe6afe2017-03-26 12:04:16 -0700288static int pc_clock_settime(clockid_t id, const struct timespec64 *ts)
Richard Cochran0606f422011-02-01 13:52:35 +0000289{
290 struct posix_clock_desc cd;
291 int err;
292
293 err = get_clock_desc(id, &cd);
294 if (err)
295 return err;
296
Torben Hohn6e6823d2011-03-03 18:26:14 +0100297 if ((cd.fp->f_mode & FMODE_WRITE) == 0) {
298 err = -EACCES;
299 goto out;
300 }
301
Richard Cochran0606f422011-02-01 13:52:35 +0000302 if (cd.clk->ops.clock_settime)
Deepa Dinamani0fe6afe2017-03-26 12:04:16 -0700303 err = cd.clk->ops.clock_settime(cd.clk, ts);
Richard Cochran0606f422011-02-01 13:52:35 +0000304 else
305 err = -EOPNOTSUPP;
Torben Hohn6e6823d2011-03-03 18:26:14 +0100306out:
Richard Cochran0606f422011-02-01 13:52:35 +0000307 put_clock_desc(&cd);
308
309 return err;
310}
311
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300312const struct k_clock clock_posix_dynamic = {
Andrei Vagin819a95f2019-11-12 01:26:54 +0000313 .clock_getres = pc_clock_getres,
314 .clock_set = pc_clock_settime,
315 .clock_get_timespec = pc_clock_gettime,
316 .clock_adj = pc_clock_adjtime,
Richard Cochran0606f422011-02-01 13:52:35 +0000317};