Skip to content

Commit 0393b87

Browse files
nefigtutgregkh
authored andcommitted
ptp: fix the race between the release of ptp_clock and cdev
[ Upstream commit a33121e ] In a case when a ptp chardev (like /dev/ptp0) is open but an underlying device is removed, closing this file leads to a race. This reproduces easily in a kvm virtual machine: ts# cat openptp0.c int main() { ... fp = fopen("/dev/ptp0", "r"); ... sleep(10); } ts# uname -r 5.5.0-rc3-46cf053e ts# cat /proc/cmdline ... slub_debug=FZP ts# modprobe ptp_kvm ts# ./openptp0 & [1] 670 opened /dev/ptp0, sleeping 10s... ts# rmmod ptp_kvm ts# ls /dev/ptp* ls: cannot access '/dev/ptp*': No such file or directory ts# ...woken up [ 48.010809] general protection fault: 0000 [#1] SMP [ 48.012502] CPU: 6 PID: 658 Comm: openptp0 Not tainted 5.5.0-rc3-46cf053e #25 [ 48.014624] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), ... [ 48.016270] RIP: 0010:module_put.part.0+0x7/0x80 [ 48.017939] RSP: 0018:ffffb3850073be00 EFLAGS: 00010202 [ 48.018339] RAX: 000000006b6b6b6b RBX: 6b6b6b6b6b6b6b6b RCX: ffff89a476c00ad0 [ 48.018936] RDX: fffff65a08d3ea08 RSI: 0000000000000247 RDI: 6b6b6b6b6b6b6b6b [ 48.019470] ... ^^^ a slub poison [ 48.023854] Call Trace: [ 48.024050] __fput+0x21f/0x240 [ 48.024288] task_work_run+0x79/0x90 [ 48.024555] do_exit+0x2af/0xab0 [ 48.024799] ? vfs_write+0x16a/0x190 [ 48.025082] do_group_exit+0x35/0x90 [ 48.025387] __x64_sys_exit_group+0xf/0x10 [ 48.025737] do_syscall_64+0x3d/0x130 [ 48.026056] entry_SYSCALL_64_after_hwframe+0x44/0xa9 [ 48.026479] RIP: 0033:0x7f53b12082f6 [ 48.026792] ... [ 48.030945] Modules linked in: ptp i6300esb watchdog [last unloaded: ptp_kvm] [ 48.045001] Fixing recursive fault but reboot is needed! This happens in: static void __fput(struct file *file) { ... if (file->f_op->release) file->f_op->release(inode, file); <<< cdev is kfree'd here if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL && !(mode & FMODE_PATH))) { cdev_put(inode->i_cdev); <<< cdev fields are accessed here Namely: __fput() posix_clock_release() kref_put(&clk->kref, delete_clock) <<< the last reference delete_clock() delete_ptp_clock() kfree(ptp) <<< cdev is embedded in ptp cdev_put module_put(p->owner) <<< *p is kfree'd, bang! Here cdev is embedded in posix_clock which is embedded in ptp_clock. The race happens because ptp_clock's lifetime is controlled by two refcounts: kref and cdev.kobj in posix_clock. This is wrong. Make ptp_clock's sysfs device a parent of cdev with cdev_device_add() created especially for such cases. This way the parent device with its ptp_clock is not released until all references to the cdev are released. This adds a requirement that an initialized but not exposed struct device should be provided to posix_clock_register() by a caller instead of a simple dev_t. This approach was adopted from the commit 72139df ("watchdog: Fix the race between the release of watchdog_core_data and cdev"). See details of the implementation in the commit 233ed09 ("chardev: add helper function to register char devs with a struct device"). Link: https://lore.kernel.org/linux-fsdevel/20191125125342.6189-1-vdronov@redhat.com/T/#u Analyzed-by: Stephen Johnston <sjohnsto@redhat.com> Analyzed-by: Vern Lovejoy <vlovejoy@redhat.com> Signed-off-by: Vladis Dronov <vdronov@redhat.com> Acked-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent bd52fa8 commit 0393b87

File tree

4 files changed

+39
-44
lines changed

4 files changed

+39
-44
lines changed

drivers/ptp/ptp_clock.c

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ static struct posix_clock_operations ptp_clock_ops = {
175175
.read = ptp_read,
176176
};
177177

178-
static void delete_ptp_clock(struct posix_clock *pc)
178+
static void ptp_clock_release(struct device *dev)
179179
{
180-
struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
180+
struct ptp_clock *ptp = container_of(dev, struct ptp_clock, dev);
181181

182182
mutex_destroy(&ptp->tsevq_mux);
183183
mutex_destroy(&ptp->pincfg_mux);
@@ -222,7 +222,6 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
222222
}
223223

224224
ptp->clock.ops = ptp_clock_ops;
225-
ptp->clock.release = delete_ptp_clock;
226225
ptp->info = info;
227226
ptp->devid = MKDEV(major, index);
228227
ptp->index = index;
@@ -249,15 +248,6 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
249248
if (err)
250249
goto no_pin_groups;
251250

252-
/* Create a new device in our class. */
253-
ptp->dev = device_create_with_groups(ptp_class, parent, ptp->devid,
254-
ptp, ptp->pin_attr_groups,
255-
"ptp%d", ptp->index);
256-
if (IS_ERR(ptp->dev)) {
257-
err = PTR_ERR(ptp->dev);
258-
goto no_device;
259-
}
260-
261251
/* Register a new PPS source. */
262252
if (info->pps) {
263253
struct pps_source_info pps;
@@ -273,8 +263,18 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
273263
}
274264
}
275265

276-
/* Create a posix clock. */
277-
err = posix_clock_register(&ptp->clock, ptp->devid);
266+
/* Initialize a new device of our class in our clock structure. */
267+
device_initialize(&ptp->dev);
268+
ptp->dev.devt = ptp->devid;
269+
ptp->dev.class = ptp_class;
270+
ptp->dev.parent = parent;
271+
ptp->dev.groups = ptp->pin_attr_groups;
272+
ptp->dev.release = ptp_clock_release;
273+
dev_set_drvdata(&ptp->dev, ptp);
274+
dev_set_name(&ptp->dev, "ptp%d", ptp->index);
275+
276+
/* Create a posix clock and link it to the device. */
277+
err = posix_clock_register(&ptp->clock, &ptp->dev);
278278
if (err) {
279279
pr_err("failed to create posix clock\n");
280280
goto no_clock;
@@ -286,8 +286,6 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
286286
if (ptp->pps_source)
287287
pps_unregister_source(ptp->pps_source);
288288
no_pps:
289-
device_destroy(ptp_class, ptp->devid);
290-
no_device:
291289
ptp_cleanup_pin_groups(ptp);
292290
no_pin_groups:
293291
if (ptp->kworker)
@@ -317,7 +315,6 @@ int ptp_clock_unregister(struct ptp_clock *ptp)
317315
if (ptp->pps_source)
318316
pps_unregister_source(ptp->pps_source);
319317

320-
device_destroy(ptp_class, ptp->devid);
321318
ptp_cleanup_pin_groups(ptp);
322319

323320
posix_clock_unregister(&ptp->clock);

drivers/ptp/ptp_private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct timestamp_event_queue {
4141

4242
struct ptp_clock {
4343
struct posix_clock clock;
44-
struct device *dev;
44+
struct device dev;
4545
struct ptp_clock_info *info;
4646
dev_t devid;
4747
int index; /* index into clocks.map */

include/linux/posix-clock.h

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,29 +82,32 @@ struct posix_clock_operations {
8282
*
8383
* @ops: Functional interface to the clock
8484
* @cdev: Character device instance for this clock
85-
* @kref: Reference count.
85+
* @dev: Pointer to the clock's device.
8686
* @rwsem: Protects the 'zombie' field from concurrent access.
8787
* @zombie: If 'zombie' is true, then the hardware has disappeared.
88-
* @release: A function to free the structure when the reference count reaches
89-
* zero. May be NULL if structure is statically allocated.
9088
*
9189
* Drivers should embed their struct posix_clock within a private
9290
* structure, obtaining a reference to it during callbacks using
9391
* container_of().
92+
*
93+
* Drivers should supply an initialized but not exposed struct device
94+
* to posix_clock_register(). It is used to manage lifetime of the
95+
* driver's private structure. It's 'release' field should be set to
96+
* a release function for this private structure.
9497
*/
9598
struct posix_clock {
9699
struct posix_clock_operations ops;
97100
struct cdev cdev;
98-
struct kref kref;
101+
struct device *dev;
99102
struct rw_semaphore rwsem;
100103
bool zombie;
101-
void (*release)(struct posix_clock *clk);
102104
};
103105

104106
/**
105107
* posix_clock_register() - register a new clock
106-
* @clk: Pointer to the clock. Caller must provide 'ops' and 'release'
107-
* @devid: Allocated device id
108+
* @clk: Pointer to the clock. Caller must provide 'ops' field
109+
* @dev: Pointer to the initialized device. Caller must provide
110+
* 'release' field
108111
*
109112
* A clock driver calls this function to register itself with the
110113
* clock device subsystem. If 'clk' points to dynamically allocated
@@ -113,7 +116,7 @@ struct posix_clock {
113116
*
114117
* Returns zero on success, non-zero otherwise.
115118
*/
116-
int posix_clock_register(struct posix_clock *clk, dev_t devid);
119+
int posix_clock_register(struct posix_clock *clk, struct device *dev);
117120

118121
/**
119122
* posix_clock_unregister() - unregister a clock

kernel/time/posix-clock.c

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
#include "posix-timers.h"
2929

30-
static void delete_clock(struct kref *kref);
31-
3230
/*
3331
* Returns NULL if the posix_clock instance attached to 'fp' is old and stale.
3432
*/
@@ -138,7 +136,7 @@ static int posix_clock_open(struct inode *inode, struct file *fp)
138136
err = 0;
139137

140138
if (!err) {
141-
kref_get(&clk->kref);
139+
get_device(clk->dev);
142140
fp->private_data = clk;
143141
}
144142
out:
@@ -154,7 +152,7 @@ static int posix_clock_release(struct inode *inode, struct file *fp)
154152
if (clk->ops.release)
155153
err = clk->ops.release(clk);
156154

157-
kref_put(&clk->kref, delete_clock);
155+
put_device(clk->dev);
158156

159157
fp->private_data = NULL;
160158

@@ -174,38 +172,35 @@ static const struct file_operations posix_clock_file_operations = {
174172
#endif
175173
};
176174

177-
int posix_clock_register(struct posix_clock *clk, dev_t devid)
175+
int posix_clock_register(struct posix_clock *clk, struct device *dev)
178176
{
179177
int err;
180178

181-
kref_init(&clk->kref);
182179
init_rwsem(&clk->rwsem);
183180

184181
cdev_init(&clk->cdev, &posix_clock_file_operations);
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+
}
185188
clk->cdev.owner = clk->ops.owner;
186-
err = cdev_add(&clk->cdev, devid, 1);
189+
clk->dev = dev;
187190

188-
return err;
191+
return 0;
189192
}
190193
EXPORT_SYMBOL_GPL(posix_clock_register);
191194

192-
static void delete_clock(struct kref *kref)
193-
{
194-
struct posix_clock *clk = container_of(kref, struct posix_clock, kref);
195-
196-
if (clk->release)
197-
clk->release(clk);
198-
}
199-
200195
void posix_clock_unregister(struct posix_clock *clk)
201196
{
202-
cdev_del(&clk->cdev);
197+
cdev_device_del(&clk->cdev, clk->dev);
203198

204199
down_write(&clk->rwsem);
205200
clk->zombie = true;
206201
up_write(&clk->rwsem);
207202

208-
kref_put(&clk->kref, delete_clock);
203+
put_device(clk->dev);
209204
}
210205
EXPORT_SYMBOL_GPL(posix_clock_unregister);
211206

0 commit comments

Comments
 (0)