blob: c8436c26ed6ab3012218020bf7528a0b1604860a [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * driver.c - centralized device driver management
4 *
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -08007 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
8 * Copyright (c) 2007 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Greg Kroah-Hartman4c002c92019-12-09 20:33:03 +010011#include <linux/device/driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/device.h>
13#include <linux/module.h>
14#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Greg Kroah-Hartman63967682013-08-27 10:24:15 -070017#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "base.h"
19
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080020static struct device *next_device(struct klist_iter *i)
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080021{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080022 struct klist_node *n = klist_next(i);
Greg Kroah-Hartman8940b4f2008-12-16 12:25:49 -080023 struct device *dev = NULL;
24 struct device_private *dev_prv;
25
26 if (n) {
27 dev_prv = to_device_private_driver(n);
28 dev = dev_prv->device;
29 }
30 return dev;
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -080031}
32
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -080033/**
Krzysztof Kozlowski6c2f42112022-04-19 13:34:24 +020034 * driver_set_override() - Helper to set or clear driver override.
35 * @dev: Device to change
36 * @override: Address of string to change (e.g. &device->driver_override);
37 * The contents will be freed and hold newly allocated override.
38 * @s: NUL-terminated string, new driver name to force a match, pass empty
39 * string to clear it ("" or "\n", where the latter is only for sysfs
40 * interface).
41 * @len: length of @s
42 *
43 * Helper to set or clear driver override in a device, intended for the cases
44 * when the driver_override field is allocated by driver/bus code.
45 *
46 * Returns: 0 on success or a negative error code on failure.
47 */
48int driver_set_override(struct device *dev, const char **override,
49 const char *s, size_t len)
50{
51 const char *new, *old;
52 char *cp;
53
54 if (!override || !s)
55 return -EINVAL;
56
57 /*
58 * The stored value will be used in sysfs show callback (sysfs_emit()),
59 * which has a length limit of PAGE_SIZE and adds a trailing newline.
60 * Thus we can store one character less to avoid truncation during sysfs
61 * show.
62 */
63 if (len >= (PAGE_SIZE - 1))
64 return -EINVAL;
65
Greg Kroah-Hartman5666a272022-09-01 18:37:34 +020066 /*
67 * Compute the real length of the string in case userspace sends us a
68 * bunch of \0 characters like python likes to do.
69 */
70 len = strlen(s);
71
Krzysztof Kozlowski6c2f42112022-04-19 13:34:24 +020072 if (!len) {
73 /* Empty string passed - clear override */
74 device_lock(dev);
75 old = *override;
76 *override = NULL;
77 device_unlock(dev);
78 kfree(old);
79
80 return 0;
81 }
82
83 cp = strnchr(s, len, '\n');
84 if (cp)
85 len = cp - s;
86
87 new = kstrndup(s, len, GFP_KERNEL);
88 if (!new)
89 return -ENOMEM;
90
91 device_lock(dev);
92 old = *override;
93 if (cp != s) {
94 *override = new;
95 } else {
96 /* "\n" passed - clear override */
97 kfree(new);
98 *override = NULL;
99 }
100 device_unlock(dev);
101
102 kfree(old);
103
104 return 0;
105}
106EXPORT_SYMBOL_GPL(driver_set_override);
107
108/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800109 * driver_for_each_device - Iterator for devices bound to a driver.
110 * @drv: Driver we're iterating.
111 * @start: Device to begin with
112 * @data: Data to pass to the callback.
113 * @fn: Function to call for each device.
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800114 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800115 * Iterate over the @drv's list of devices calling @fn for each one.
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800116 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800117int driver_for_each_device(struct device_driver *drv, struct device *start,
118 void *data, int (*fn)(struct device *, void *))
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800119{
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -0800120 struct klist_iter i;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800121 struct device *dev;
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800122 int error = 0;
123
mochel@digitalimplant.org94e7b1c52005-03-21 12:25:36 -0800124 if (!drv)
125 return -EINVAL;
126
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700127 klist_iter_init_node(&drv->p->klist_devices, &i,
128 start ? &start->p->knode_driver : NULL);
Gimcuan Hui93ead7c2017-11-11 05:52:54 +0000129 while (!error && (dev = next_device(&i)))
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700130 error = fn(dev, data);
131 klist_iter_exit(&i);
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800132 return error;
133}
gregkh@suse.de126eddf2005-03-22 12:17:13 -0800134EXPORT_SYMBOL_GPL(driver_for_each_device);
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/**
Cornelia Huck0edb5862005-06-22 16:59:51 +0200137 * driver_find_device - device iterator for locating a particular device.
Randy Dunlapc41455f2005-10-23 11:59:14 -0700138 * @drv: The device's driver
Cornelia Huck0edb5862005-06-22 16:59:51 +0200139 * @start: Device to begin with
140 * @data: Data to pass to match function
141 * @match: Callback function to check device
142 *
143 * This is similar to the driver_for_each_device() function above, but
144 * it returns a reference to a device that is 'found' for later use, as
145 * determined by the @match callback.
146 *
147 * The callback should return 0 if the device doesn't match and non-zero
148 * if it does. If the callback returns non-zero, this function will
149 * return to the caller and not iterate over any more devices.
150 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800151struct device *driver_find_device(struct device_driver *drv,
Suzuki K Poulose92ce7e82019-06-14 18:54:00 +0100152 struct device *start, const void *data,
153 int (*match)(struct device *dev, const void *data))
Cornelia Huck0edb5862005-06-22 16:59:51 +0200154{
155 struct klist_iter i;
156 struct device *dev;
157
Hiroshi DOYU094e47e2012-05-11 11:03:09 +0300158 if (!drv || !drv->p)
Cornelia Huck0edb5862005-06-22 16:59:51 +0200159 return NULL;
160
Greg Kroah-Hartman7cd9c9b2012-04-19 19:17:30 -0700161 klist_iter_init_node(&drv->p->klist_devices, &i,
162 (start ? &start->p->knode_driver : NULL));
Cornelia Huck0edb5862005-06-22 16:59:51 +0200163 while ((dev = next_device(&i)))
164 if (match(dev, data) && get_device(dev))
165 break;
166 klist_iter_exit(&i);
167 return dev;
168}
169EXPORT_SYMBOL_GPL(driver_find_device);
170
171/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800172 * driver_create_file - create sysfs file for driver.
173 * @drv: driver.
174 * @attr: driver attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800176int driver_create_file(struct device_driver *drv,
Phil Carmody099c2f22009-12-18 15:34:21 +0200177 const struct driver_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 int error;
Lavinia Tache74642c62015-03-08 12:48:55 +0200180
Cornelia Huck0c98b192008-01-31 10:39:38 +0100181 if (drv)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800182 error = sysfs_create_file(&drv->p->kobj, &attr->attr);
Cornelia Huck0c98b192008-01-31 10:39:38 +0100183 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 error = -EINVAL;
185 return error;
186}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800187EXPORT_SYMBOL_GPL(driver_create_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800190 * driver_remove_file - remove sysfs file for driver.
191 * @drv: driver.
192 * @attr: driver attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800194void driver_remove_file(struct device_driver *drv,
Phil Carmody099c2f22009-12-18 15:34:21 +0200195 const struct driver_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Cornelia Huck0c98b192008-01-31 10:39:38 +0100197 if (drv)
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800198 sysfs_remove_file(&drv->p->kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800200EXPORT_SYMBOL_GPL(driver_remove_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700202int driver_add_groups(struct device_driver *drv,
203 const struct attribute_group **groups)
Cornelia Huck57c74532007-12-05 12:50:23 +0100204{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700205 return sysfs_create_groups(&drv->p->kobj, groups);
Cornelia Huck57c74532007-12-05 12:50:23 +0100206}
207
Greg Kroah-Hartmaned0617b2013-08-08 15:22:56 -0700208void driver_remove_groups(struct device_driver *drv,
209 const struct attribute_group **groups)
Cornelia Huck57c74532007-12-05 12:50:23 +0100210{
Greg Kroah-Hartman3e9b2ba2013-08-21 13:47:50 -0700211 sysfs_remove_groups(&drv->p->kobj, groups);
Cornelia Huck57c74532007-12-05 12:50:23 +0100212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800215 * driver_register - register driver with bus
216 * @drv: driver to register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800218 * We pass off most of the work to the bus_add_driver() call,
219 * since most of the things we have to do deal with the bus
220 * structures.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800222int driver_register(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Cornelia Huck57c74532007-12-05 12:50:23 +0100224 int ret;
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400225 struct device_driver *other;
Cornelia Huck57c74532007-12-05 12:50:23 +0100226
Greg Kroah-Hartman63b823d2023-02-08 12:13:25 +0100227 if (!bus_is_registered(drv->bus)) {
Florian Schmaus0dda2bb2018-05-23 17:59:11 +0200228 pr_err("Driver '%s' was unable to register with bus_type '%s' because the bus was not initialized.\n",
229 drv->name, drv->bus->name);
230 return -EINVAL;
231 }
Dave Youngf48f3fe2009-02-14 21:23:22 +0800232
Russell King594c8282006-01-05 14:29:51 +0000233 if ((drv->bus->probe && drv->probe) ||
234 (drv->bus->remove && drv->remove) ||
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800235 (drv->bus->shutdown && drv->shutdown))
Matthias Brugger5962b8b2020-06-08 11:52:17 +0200236 pr_warn("Driver '%s' needs updating - please use "
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800237 "bus_type methods\n", drv->name);
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400238
239 other = driver_find(drv->name, drv->bus);
240 if (other) {
Matthias Brugger5962b8b2020-06-08 11:52:17 +0200241 pr_err("Error: Driver '%s' is already registered, "
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400242 "aborting...\n", drv->name);
Stas Sergeev39acbc12009-10-18 00:31:38 +0400243 return -EBUSY;
Stas Sergeev16dc42e02008-04-26 19:52:35 +0400244 }
245
Cornelia Huck57c74532007-12-05 12:50:23 +0100246 ret = bus_add_driver(drv);
247 if (ret)
248 return ret;
249 ret = driver_add_groups(drv, drv->groups);
Sebastian Otta14af322012-07-17 10:39:10 +0200250 if (ret) {
Cornelia Huck57c74532007-12-05 12:50:23 +0100251 bus_remove_driver(drv);
Sebastian Otta14af322012-07-17 10:39:10 +0200252 return ret;
253 }
Sebastian Ott5a7689f2012-07-02 19:08:15 +0200254 kobject_uevent(&drv->p->kobj, KOBJ_ADD);
Saravana Kannan2b28a1a2022-04-29 15:09:32 -0700255 deferred_probe_extend_timeout();
Sebastian Ott5a7689f2012-07-02 19:08:15 +0200256
Cornelia Huck57c74532007-12-05 12:50:23 +0100257 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800259EXPORT_SYMBOL_GPL(driver_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800262 * driver_unregister - remove driver from system.
263 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800265 * Again, we pass off most of the work to the bus-level call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800267void driver_unregister(struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Kay Sievers5c8563d2009-05-28 14:24:07 -0700269 if (!drv || !drv->p) {
270 WARN(1, "Unexpected driver unregister!\n");
271 return;
272 }
Cornelia Huck57c74532007-12-05 12:50:23 +0100273 driver_remove_groups(drv, drv->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 bus_remove_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800276EXPORT_SYMBOL_GPL(driver_unregister);