]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/time/posix-clock.c
ptp: fix the race between the release of ptp_clock and cdev
[mirror_ubuntu-bionic-kernel.git] / kernel / time / posix-clock.c
CommitLineData
0606f422
RC
1/*
2 * posix-clock.c - support for dynamic clock devices
3 *
4 * Copyright (C) 2010 OMICRON electronics GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#include <linux/device.h>
6e5fdeed 21#include <linux/export.h>
0606f422 22#include <linux/file.h>
0606f422
RC
23#include <linux/posix-clock.h>
24#include <linux/slab.h>
25#include <linux/syscalls.h>
26#include <linux/uaccess.h>
27
bab0aae9
TG
28#include "posix-timers.h"
29
0606f422
RC
30/*
31 * Returns NULL if the posix_clock instance attached to 'fp' is old and stale.
32 */
33static struct posix_clock *get_posix_clock(struct file *fp)
34{
35 struct posix_clock *clk = fp->private_data;
36
1791f881 37 down_read(&clk->rwsem);
0606f422
RC
38
39 if (!clk->zombie)
40 return clk;
41
1791f881 42 up_read(&clk->rwsem);
0606f422
RC
43
44 return NULL;
45}
46
47static void put_posix_clock(struct posix_clock *clk)
48{
1791f881 49 up_read(&clk->rwsem);
0606f422
RC
50}
51
52static ssize_t posix_clock_read(struct file *fp, char __user *buf,
53 size_t count, loff_t *ppos)
54{
55 struct posix_clock *clk = get_posix_clock(fp);
56 int err = -EINVAL;
57
58 if (!clk)
59 return -ENODEV;
60
61 if (clk->ops.read)
62 err = clk->ops.read(clk, fp->f_flags, buf, count);
63
64 put_posix_clock(clk);
65
66 return err;
67}
68
69static unsigned int posix_clock_poll(struct file *fp, poll_table *wait)
70{
71 struct posix_clock *clk = get_posix_clock(fp);
1b9f2372 72 unsigned int result = 0;
0606f422
RC
73
74 if (!clk)
1b9f2372 75 return POLLERR;
0606f422
RC
76
77 if (clk->ops.poll)
78 result = clk->ops.poll(clk, fp, wait);
79
80 put_posix_clock(clk);
81
82 return result;
83}
84
0606f422
RC
85static long posix_clock_ioctl(struct file *fp,
86 unsigned int cmd, unsigned long arg)
87{
88 struct posix_clock *clk = get_posix_clock(fp);
89 int err = -ENOTTY;
90
91 if (!clk)
92 return -ENODEV;
93
94 if (clk->ops.ioctl)
95 err = clk->ops.ioctl(clk, cmd, arg);
96
97 put_posix_clock(clk);
98
99 return err;
100}
101
102#ifdef CONFIG_COMPAT
103static long posix_clock_compat_ioctl(struct file *fp,
104 unsigned int cmd, unsigned long arg)
105{
106 struct posix_clock *clk = get_posix_clock(fp);
107 int err = -ENOTTY;
108
109 if (!clk)
110 return -ENODEV;
111
112 if (clk->ops.ioctl)
113 err = clk->ops.ioctl(clk, cmd, arg);
114
115 put_posix_clock(clk);
116
117 return err;
118}
119#endif
120
121static int posix_clock_open(struct inode *inode, struct file *fp)
122{
123 int err;
124 struct posix_clock *clk =
125 container_of(inode->i_cdev, struct posix_clock, cdev);
126
1791f881 127 down_read(&clk->rwsem);
0606f422
RC
128
129 if (clk->zombie) {
130 err = -ENODEV;
131 goto out;
132 }
133 if (clk->ops.open)
134 err = clk->ops.open(clk, fp->f_mode);
135 else
136 err = 0;
137
138 if (!err) {
72eb0567 139 get_device(clk->dev);
0606f422
RC
140 fp->private_data = clk;
141 }
142out:
1791f881 143 up_read(&clk->rwsem);
0606f422
RC
144 return err;
145}
146
147static int posix_clock_release(struct inode *inode, struct file *fp)
148{
149 struct posix_clock *clk = fp->private_data;
150 int err = 0;
151
152 if (clk->ops.release)
153 err = clk->ops.release(clk);
154
72eb0567 155 put_device(clk->dev);
0606f422
RC
156
157 fp->private_data = NULL;
158
159 return err;
160}
161
162static const struct file_operations posix_clock_file_operations = {
163 .owner = THIS_MODULE,
164 .llseek = no_llseek,
165 .read = posix_clock_read,
166 .poll = posix_clock_poll,
167 .unlocked_ioctl = posix_clock_ioctl,
168 .open = posix_clock_open,
169 .release = posix_clock_release,
0606f422
RC
170#ifdef CONFIG_COMPAT
171 .compat_ioctl = posix_clock_compat_ioctl,
172#endif
173};
174
72eb0567 175int posix_clock_register(struct posix_clock *clk, struct device *dev)
0606f422
RC
176{
177 int err;
178
1791f881 179 init_rwsem(&clk->rwsem);
0606f422
RC
180
181 cdev_init(&clk->cdev, &posix_clock_file_operations);
72eb0567
VD
182 err = cdev_device_add(&clk->cdev, dev);
183 if (err) {
184 pr_err("%s unable to add device %d:%d\n",
185 dev_name(dev), MAJOR(dev->devt), MINOR(dev->devt));
186 return err;
187 }
0606f422 188 clk->cdev.owner = clk->ops.owner;
72eb0567 189 clk->dev = dev;
0606f422 190
72eb0567 191 return 0;
0606f422
RC
192}
193EXPORT_SYMBOL_GPL(posix_clock_register);
194
0606f422
RC
195void posix_clock_unregister(struct posix_clock *clk)
196{
72eb0567 197 cdev_device_del(&clk->cdev, clk->dev);
0606f422 198
1791f881 199 down_write(&clk->rwsem);
0606f422 200 clk->zombie = true;
1791f881 201 up_write(&clk->rwsem);
0606f422 202
72eb0567 203 put_device(clk->dev);
0606f422
RC
204}
205EXPORT_SYMBOL_GPL(posix_clock_unregister);
206
207struct posix_clock_desc {
208 struct file *fp;
209 struct posix_clock *clk;
210};
211
212static int get_clock_desc(const clockid_t id, struct posix_clock_desc *cd)
213{
214 struct file *fp = fget(CLOCKID_TO_FD(id));
215 int err = -EINVAL;
216
217 if (!fp)
218 return err;
219
220 if (fp->f_op->open != posix_clock_open || !fp->private_data)
221 goto out;
222
223 cd->fp = fp;
224 cd->clk = get_posix_clock(fp);
225
226 err = cd->clk ? 0 : -ENODEV;
227out:
228 if (err)
229 fput(fp);
230 return err;
231}
232
233static void put_clock_desc(struct posix_clock_desc *cd)
234{
235 put_posix_clock(cd->clk);
236 fput(cd->fp);
237}
238
239static int pc_clock_adjtime(clockid_t id, struct timex *tx)
240{
241 struct posix_clock_desc cd;
242 int err;
243
244 err = get_clock_desc(id, &cd);
245 if (err)
246 return err;
247
6e6823d1
TH
248 if ((cd.fp->f_mode & FMODE_WRITE) == 0) {
249 err = -EACCES;
250 goto out;
251 }
252
0606f422
RC
253 if (cd.clk->ops.clock_adjtime)
254 err = cd.clk->ops.clock_adjtime(cd.clk, tx);
255 else
256 err = -EOPNOTSUPP;
6e6823d1 257out:
0606f422
RC
258 put_clock_desc(&cd);
259
260 return err;
261}
262
3c9c12f4 263static int pc_clock_gettime(clockid_t id, struct timespec64 *ts)
0606f422
RC
264{
265 struct posix_clock_desc cd;
266 int err;
267
268 err = get_clock_desc(id, &cd);
269 if (err)
270 return err;
271
3c9c12f4
DD
272 if (cd.clk->ops.clock_gettime)
273 err = cd.clk->ops.clock_gettime(cd.clk, ts);
0606f422
RC
274 else
275 err = -EOPNOTSUPP;
276
277 put_clock_desc(&cd);
278
279 return err;
280}
281
d2e3e0ca 282static int pc_clock_getres(clockid_t id, struct timespec64 *ts)
0606f422
RC
283{
284 struct posix_clock_desc cd;
285 int err;
286
287 err = get_clock_desc(id, &cd);
288 if (err)
289 return err;
290
d2e3e0ca
DD
291 if (cd.clk->ops.clock_getres)
292 err = cd.clk->ops.clock_getres(cd.clk, ts);
0606f422
RC
293 else
294 err = -EOPNOTSUPP;
295
296 put_clock_desc(&cd);
297
298 return err;
299}
300
0fe6afe3 301static int pc_clock_settime(clockid_t id, const struct timespec64 *ts)
0606f422
RC
302{
303 struct posix_clock_desc cd;
304 int err;
305
306 err = get_clock_desc(id, &cd);
307 if (err)
308 return err;
309
6e6823d1
TH
310 if ((cd.fp->f_mode & FMODE_WRITE) == 0) {
311 err = -EACCES;
312 goto out;
313 }
314
0606f422 315 if (cd.clk->ops.clock_settime)
0fe6afe3 316 err = cd.clk->ops.clock_settime(cd.clk, ts);
0606f422
RC
317 else
318 err = -EOPNOTSUPP;
6e6823d1 319out:
0606f422
RC
320 put_clock_desc(&cd);
321
322 return err;
323}
324
d3ba5a9a 325const struct k_clock clock_posix_dynamic = {
0606f422
RC
326 .clock_getres = pc_clock_getres,
327 .clock_set = pc_clock_settime,
328 .clock_get = pc_clock_gettime,
329 .clock_adj = pc_clock_adjtime,
0606f422 330};