blob: 16f39c30b091dcfcdc22a4ee4ef4a97fff3b0216 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * file.c - operations for regular (text) files.
3 */
4
5#include <linux/module.h>
Robert Love0eeca282005-07-12 17:06:03 -04006#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/kobject.h>
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -07008#include <linux/namei.h>
NeilBrown4508a7a2006-03-20 17:53:53 +11009#include <linux/poll.h>
Oliver Neukum94bebf42006-12-20 10:52:44 +010010#include <linux/list.h>
Dave Young52e8c202007-07-26 11:03:54 +000011#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include "sysfs.h"
15
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070016#define to_sattr(a) container_of(a,struct subsys_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Martin Waitz3d410882005-06-23 22:05:21 -070018/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Subsystem file operations.
20 * These operations allow subsystems to have files that can be
21 * read/written.
22 */
23static ssize_t
24subsys_attr_show(struct kobject * kobj, struct attribute * attr, char * page)
25{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070026 struct kset *kset = to_kset(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 struct subsys_attribute * sattr = to_sattr(attr);
Dmitry Torokhovc76d0ab2005-04-29 01:22:00 -050028 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30 if (sattr->show)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070031 ret = sattr->show(kset, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return ret;
33}
34
35static ssize_t
36subsys_attr_store(struct kobject * kobj, struct attribute * attr,
37 const char * page, size_t count)
38{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070039 struct kset *kset = to_kset(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct subsys_attribute * sattr = to_sattr(attr);
Dmitry Torokhovc76d0ab2005-04-29 01:22:00 -050041 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 if (sattr->store)
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070044 ret = sattr->store(kset, page, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 return ret;
46}
47
48static struct sysfs_ops subsys_sysfs_ops = {
49 .show = subsys_attr_show,
50 .store = subsys_attr_store,
51};
52
Tejun Heo73107cb2007-06-14 03:45:16 +090053struct sysfs_buffer {
54 size_t count;
55 loff_t pos;
56 char * page;
57 struct sysfs_ops * ops;
Dave Young52e8c202007-07-26 11:03:54 +000058 struct mutex mutex;
Tejun Heo73107cb2007-06-14 03:45:16 +090059 int needs_read_fill;
60 int event;
61};
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/**
64 * fill_read_buffer - allocate and fill buffer from object.
65 * @dentry: dentry pointer.
66 * @buffer: data buffer for file.
67 *
68 * Allocate @buffer->page, if it hasn't been already, then call the
69 * kobject's show() method to fill the buffer with this attribute's
70 * data.
Oliver Neukum82244b12007-01-02 08:48:08 +010071 * This is called only once, on the file's first read unless an error
72 * is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74static int fill_read_buffer(struct dentry * dentry, struct sysfs_buffer * buffer)
75{
Tejun Heo0ab66082007-06-14 03:45:16 +090076 struct sysfs_dirent *attr_sd = dentry->d_fsdata;
77 struct kobject *kobj = attr_sd->s_parent->s_elem.dir.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct sysfs_ops * ops = buffer->ops;
79 int ret = 0;
80 ssize_t count;
81
82 if (!buffer->page)
83 buffer->page = (char *) get_zeroed_page(GFP_KERNEL);
84 if (!buffer->page)
85 return -ENOMEM;
86
Tejun Heo0ab66082007-06-14 03:45:16 +090087 /* need attr_sd for attr and ops, its parent for kobj */
88 if (!sysfs_get_active_two(attr_sd))
89 return -ENODEV;
90
91 buffer->event = atomic_read(&attr_sd->s_event);
92 count = ops->show(kobj, attr_sd->s_elem.attr.attr, buffer->page);
93
94 sysfs_put_active_two(attr_sd);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 BUG_ON(count > (ssize_t)PAGE_SIZE);
Oliver Neukum82244b12007-01-02 08:48:08 +010097 if (count >= 0) {
98 buffer->needs_read_fill = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 buffer->count = count;
Oliver Neukum82244b12007-01-02 08:48:08 +0100100 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 ret = count;
Oliver Neukum82244b12007-01-02 08:48:08 +0100102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return ret;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/**
107 * sysfs_read_file - read an attribute.
108 * @file: file pointer.
109 * @buf: buffer to fill.
110 * @count: number of bytes to read.
111 * @ppos: starting offset in file.
112 *
113 * Userspace wants to read an attribute file. The attribute descriptor
114 * is in the file's ->d_fsdata. The target object is in the directory's
115 * ->d_fsdata.
116 *
117 * We call fill_read_buffer() to allocate and fill the buffer from the
118 * object's show() method exactly once (if the read is happening from
119 * the beginning of the file). That should fill the entire buffer with
120 * all the data the object has to offer for that attribute.
121 * We then call flush_read_buffer() to copy the buffer to userspace
122 * in the increments specified.
123 */
124
125static ssize_t
126sysfs_read_file(struct file *file, char __user *buf, size_t count, loff_t *ppos)
127{
128 struct sysfs_buffer * buffer = file->private_data;
129 ssize_t retval = 0;
130
Dave Young52e8c202007-07-26 11:03:54 +0000131 mutex_lock(&buffer->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (buffer->needs_read_fill) {
Tejun Heo73107cb2007-06-14 03:45:16 +0900133 retval = fill_read_buffer(file->f_path.dentry,buffer);
Alan Sterne7b0d262007-03-15 15:51:28 -0400134 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto out;
136 }
Zach Brown5c1fdf42006-10-03 01:16:06 -0700137 pr_debug("%s: count = %zd, ppos = %lld, buf = %s\n",
138 __FUNCTION__, count, *ppos, buffer->page);
Akinobu Mita92f4c702007-05-09 02:33:32 -0700139 retval = simple_read_from_buffer(buf, count, ppos, buffer->page,
140 buffer->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141out:
Dave Young52e8c202007-07-26 11:03:54 +0000142 mutex_unlock(&buffer->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return retval;
144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/**
147 * fill_write_buffer - copy buffer from userspace.
148 * @buffer: data buffer for file.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700149 * @buf: data from user.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * @count: number of bytes in @userbuf.
151 *
152 * Allocate @buffer->page if it hasn't been already, then
153 * copy the user-supplied buffer into it.
154 */
155
156static int
157fill_write_buffer(struct sysfs_buffer * buffer, const char __user * buf, size_t count)
158{
159 int error;
160
161 if (!buffer->page)
162 buffer->page = (char *)get_zeroed_page(GFP_KERNEL);
163 if (!buffer->page)
164 return -ENOMEM;
165
166 if (count >= PAGE_SIZE)
Greg Kroah-Hartman6e0dd742006-03-31 15:37:06 -0800167 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 error = copy_from_user(buffer->page,buf,count);
169 buffer->needs_read_fill = 1;
Thomas Maier035ed7a2006-10-22 19:17:47 +0200170 /* if buf is assumed to contain a string, terminate it by \0,
171 so e.g. sscanf() can scan the string easily */
172 buffer->page[count] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return error ? -EFAULT : count;
174}
175
176
177/**
178 * flush_write_buffer - push buffer to kobject.
Martin Waitz3d410882005-06-23 22:05:21 -0700179 * @dentry: dentry to the attribute
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * @buffer: data buffer for file.
Martin Waitz3d410882005-06-23 22:05:21 -0700181 * @count: number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *
183 * Get the correct pointers for the kobject and the attribute we're
184 * dealing with, then call the store() method for the attribute,
185 * passing the buffer that we acquired in fill_write_buffer().
186 */
187
Tejun Heo0ab66082007-06-14 03:45:16 +0900188static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189flush_write_buffer(struct dentry * dentry, struct sysfs_buffer * buffer, size_t count)
190{
Tejun Heo3e519032007-06-14 03:45:15 +0900191 struct sysfs_dirent *attr_sd = dentry->d_fsdata;
Tejun Heo0ab66082007-06-14 03:45:16 +0900192 struct kobject *kobj = attr_sd->s_parent->s_elem.dir.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct sysfs_ops * ops = buffer->ops;
Tejun Heo0ab66082007-06-14 03:45:16 +0900194 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Tejun Heo0ab66082007-06-14 03:45:16 +0900196 /* need attr_sd for attr and ops, its parent for kobj */
197 if (!sysfs_get_active_two(attr_sd))
198 return -ENODEV;
199
200 rc = ops->store(kobj, attr_sd->s_elem.attr.attr, buffer->page, count);
201
202 sysfs_put_active_two(attr_sd);
203
204 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207
208/**
209 * sysfs_write_file - write an attribute.
210 * @file: file pointer
211 * @buf: data to write
212 * @count: number of bytes
213 * @ppos: starting offset
214 *
215 * Similar to sysfs_read_file(), though working in the opposite direction.
216 * We allocate and fill the data from the user in fill_write_buffer(),
217 * then push it to the kobject in flush_write_buffer().
218 * There is no easy way for us to know if userspace is only doing a partial
219 * write, so we don't support them. We expect the entire buffer to come
220 * on the first write.
221 * Hint: if you're writing a value, first read the file, modify only the
222 * the value you're changing, then write entire buffer back.
223 */
224
225static ssize_t
226sysfs_write_file(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
227{
228 struct sysfs_buffer * buffer = file->private_data;
229 ssize_t len;
230
Dave Young52e8c202007-07-26 11:03:54 +0000231 mutex_lock(&buffer->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 len = fill_write_buffer(buffer, buf, count);
233 if (len > 0)
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800234 len = flush_write_buffer(file->f_path.dentry, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (len > 0)
236 *ppos += len;
Dave Young52e8c202007-07-26 11:03:54 +0000237 mutex_unlock(&buffer->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return len;
239}
240
Oliver Neukum94bebf42006-12-20 10:52:44 +0100241static int sysfs_open_file(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Tejun Heo3e519032007-06-14 03:45:15 +0900243 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
Tejun Heo0ab66082007-06-14 03:45:16 +0900244 struct kobject *kobj = attr_sd->s_parent->s_elem.dir.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct sysfs_buffer * buffer;
246 struct sysfs_ops * ops = NULL;
Tejun Heo0ab66082007-06-14 03:45:16 +0900247 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Tejun Heo0ab66082007-06-14 03:45:16 +0900249 /* need attr_sd for attr and ops, its parent for kobj */
250 if (!sysfs_get_active_two(attr_sd))
251 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* if the kobject has no ktype, then we assume that it is a subsystem
254 * itself, and use ops for it.
255 */
256 if (kobj->kset && kobj->kset->ktype)
257 ops = kobj->kset->ktype->sysfs_ops;
258 else if (kobj->ktype)
259 ops = kobj->ktype->sysfs_ops;
260 else
261 ops = &subsys_sysfs_ops;
262
Tejun Heo73107cb2007-06-14 03:45:16 +0900263 error = -EACCES;
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /* No sysfs operations, either from having no subsystem,
266 * or the subsystem have no operations.
267 */
268 if (!ops)
Tejun Heo7b595752007-06-14 03:45:17 +0900269 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* File needs write support.
272 * The inode's perms must say it's ok,
273 * and we must have a store method.
274 */
275 if (file->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (!(inode->i_mode & S_IWUGO) || !ops->store)
Tejun Heo7b595752007-06-14 03:45:17 +0900277 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
280 /* File needs read support.
281 * The inode's perms must say it's ok, and we there
282 * must be a show method for it.
283 */
284 if (file->f_mode & FMODE_READ) {
285 if (!(inode->i_mode & S_IRUGO) || !ops->show)
Tejun Heo7b595752007-06-14 03:45:17 +0900286 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
289 /* No error? Great, allocate a buffer for the file, and store it
290 * it in file->private_data for easy access.
291 */
Tejun Heo0ab66082007-06-14 03:45:16 +0900292 error = -ENOMEM;
Eric Sesterhenn58d49282006-02-22 11:18:15 +0100293 buffer = kzalloc(sizeof(struct sysfs_buffer), GFP_KERNEL);
Tejun Heo0ab66082007-06-14 03:45:16 +0900294 if (!buffer)
Tejun Heo7b595752007-06-14 03:45:17 +0900295 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Dave Young52e8c202007-07-26 11:03:54 +0000297 mutex_init(&buffer->mutex);
Tejun Heo0ab66082007-06-14 03:45:16 +0900298 buffer->needs_read_fill = 1;
299 buffer->ops = ops;
Tejun Heo0ab66082007-06-14 03:45:16 +0900300 file->private_data = buffer;
301
302 /* open succeeded, put active references and pin attr_sd */
303 sysfs_put_active_two(attr_sd);
304 sysfs_get(attr_sd);
305 return 0;
306
Tejun Heo7b595752007-06-14 03:45:17 +0900307 err_out:
Tejun Heo0ab66082007-06-14 03:45:16 +0900308 sysfs_put_active_two(attr_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return error;
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int sysfs_release(struct inode * inode, struct file * filp)
313{
Tejun Heo3e519032007-06-14 03:45:15 +0900314 struct sysfs_dirent *attr_sd = filp->f_path.dentry->d_fsdata;
Tejun Heo73107cb2007-06-14 03:45:16 +0900315 struct sysfs_buffer *buffer = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Tejun Heo0ab66082007-06-14 03:45:16 +0900317 sysfs_put(attr_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (buffer) {
320 if (buffer->page)
321 free_page((unsigned long)buffer->page);
322 kfree(buffer);
323 }
324 return 0;
325}
326
NeilBrown4508a7a2006-03-20 17:53:53 +1100327/* Sysfs attribute files are pollable. The idea is that you read
328 * the content and then you use 'poll' or 'select' to wait for
329 * the content to change. When the content changes (assuming the
330 * manager for the kobject supports notification), poll will
331 * return POLLERR|POLLPRI, and select will return the fd whether
332 * it is waiting for read, write, or exceptions.
333 * Once poll/select indicates that the value has changed, you
334 * need to close and re-open the file, as simply seeking and reading
335 * again will not get new data, or reset the state of 'poll'.
336 * Reminder: this only works for attributes which actively support
337 * it, and it is not possible to test an attribute from userspace
Rolf Eike Beera93720e2007-08-10 13:51:07 -0700338 * to see if it supports poll (Neither 'poll' nor 'select' return
NeilBrown4508a7a2006-03-20 17:53:53 +1100339 * an appropriate error code). When in doubt, set a suitable timeout value.
340 */
341static unsigned int sysfs_poll(struct file *filp, poll_table *wait)
342{
343 struct sysfs_buffer * buffer = filp->private_data;
Tejun Heo0ab66082007-06-14 03:45:16 +0900344 struct sysfs_dirent *attr_sd = filp->f_path.dentry->d_fsdata;
345 struct kobject *kobj = attr_sd->s_parent->s_elem.dir.kobj;
346
347 /* need parent for the kobj, grab both */
348 if (!sysfs_get_active_two(attr_sd))
349 goto trigger;
NeilBrown4508a7a2006-03-20 17:53:53 +1100350
351 poll_wait(filp, &kobj->poll, wait);
352
Tejun Heo0ab66082007-06-14 03:45:16 +0900353 sysfs_put_active_two(attr_sd);
NeilBrown4508a7a2006-03-20 17:53:53 +1100354
Tejun Heo0ab66082007-06-14 03:45:16 +0900355 if (buffer->event != atomic_read(&attr_sd->s_event))
356 goto trigger;
357
358 return 0;
359
360 trigger:
361 buffer->needs_read_fill = 1;
362 return POLLERR|POLLPRI;
NeilBrown4508a7a2006-03-20 17:53:53 +1100363}
364
Tejun Heo51225032007-06-14 04:27:25 +0900365void sysfs_notify(struct kobject *k, char *dir, char *attr)
NeilBrown4508a7a2006-03-20 17:53:53 +1100366{
Tejun Heo51225032007-06-14 04:27:25 +0900367 struct sysfs_dirent *sd = k->sd;
NeilBrown4508a7a2006-03-20 17:53:53 +1100368
Tejun Heo51225032007-06-14 04:27:25 +0900369 mutex_lock(&sysfs_mutex);
NeilBrown4508a7a2006-03-20 17:53:53 +1100370
Tejun Heo51225032007-06-14 04:27:25 +0900371 if (sd && dir)
372 sd = sysfs_find_dirent(sd, dir);
373 if (sd && attr)
374 sd = sysfs_find_dirent(sd, attr);
375 if (sd) {
376 atomic_inc(&sd->s_event);
NeilBrown4508a7a2006-03-20 17:53:53 +1100377 wake_up_interruptible(&k->poll);
NeilBrown4508a7a2006-03-20 17:53:53 +1100378 }
Tejun Heo51225032007-06-14 04:27:25 +0900379
380 mutex_unlock(&sysfs_mutex);
NeilBrown4508a7a2006-03-20 17:53:53 +1100381}
382EXPORT_SYMBOL_GPL(sysfs_notify);
383
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800384const struct file_operations sysfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .read = sysfs_read_file,
386 .write = sysfs_write_file,
387 .llseek = generic_file_llseek,
388 .open = sysfs_open_file,
389 .release = sysfs_release,
NeilBrown4508a7a2006-03-20 17:53:53 +1100390 .poll = sysfs_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
393
Tejun Heo608e2662007-06-14 04:27:22 +0900394int sysfs_add_file(struct sysfs_dirent *dir_sd, const struct attribute *attr,
395 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 umode_t mode = (attr->mode & S_IALLUGO) | S_IFREG;
Tejun Heofb6896d2007-06-14 04:27:24 +0900398 struct sysfs_addrm_cxt acxt;
Tejun Heoa26cd722007-06-14 03:45:14 +0900399 struct sysfs_dirent *sd;
Tejun Heo23dc2792007-08-02 21:38:03 +0900400 int rc;
Tejun Heoa26cd722007-06-14 03:45:14 +0900401
Tejun Heo3e519032007-06-14 03:45:15 +0900402 sd = sysfs_new_dirent(attr->name, mode, type);
Tejun Heo3007e992007-06-14 04:27:23 +0900403 if (!sd)
404 return -ENOMEM;
Tejun Heo3e519032007-06-14 03:45:15 +0900405 sd->s_elem.attr.attr = (void *)attr;
Tejun Heoa26cd722007-06-14 03:45:14 +0900406
Tejun Heofb6896d2007-06-14 04:27:24 +0900407 sysfs_addrm_start(&acxt, dir_sd);
Tejun Heo23dc2792007-08-02 21:38:03 +0900408 rc = sysfs_add_one(&acxt, sd);
409 sysfs_addrm_finish(&acxt);
Tejun Heo3007e992007-06-14 04:27:23 +0900410
Tejun Heo23dc2792007-08-02 21:38:03 +0900411 if (rc)
Tejun Heo967e35d2007-07-18 16:38:11 +0900412 sysfs_put(sd);
Tejun Heo3007e992007-06-14 04:27:23 +0900413
Tejun Heo23dc2792007-08-02 21:38:03 +0900414 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
417
418/**
419 * sysfs_create_file - create an attribute file for an object.
420 * @kobj: object we're creating for.
421 * @attr: atrribute descriptor.
422 */
423
424int sysfs_create_file(struct kobject * kobj, const struct attribute * attr)
425{
Tejun Heo608e2662007-06-14 04:27:22 +0900426 BUG_ON(!kobj || !kobj->sd || !attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Tejun Heo608e2662007-06-14 04:27:22 +0900428 return sysfs_add_file(kobj->sd, attr, SYSFS_KOBJ_ATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430}
431
432
433/**
Alan Sterndfa87c82007-02-20 15:02:44 -0500434 * sysfs_add_file_to_group - add an attribute file to a pre-existing group.
435 * @kobj: object we're acting for.
436 * @attr: attribute descriptor.
437 * @group: group name.
438 */
439int sysfs_add_file_to_group(struct kobject *kobj,
440 const struct attribute *attr, const char *group)
441{
Tejun Heo608e2662007-06-14 04:27:22 +0900442 struct sysfs_dirent *dir_sd;
Alan Sterndfa87c82007-02-20 15:02:44 -0500443 int error;
444
Tejun Heo608e2662007-06-14 04:27:22 +0900445 dir_sd = sysfs_get_dirent(kobj->sd, group);
446 if (!dir_sd)
447 return -ENOENT;
448
449 error = sysfs_add_file(dir_sd, attr, SYSFS_KOBJ_ATTR);
450 sysfs_put(dir_sd);
451
Alan Sterndfa87c82007-02-20 15:02:44 -0500452 return error;
453}
454EXPORT_SYMBOL_GPL(sysfs_add_file_to_group);
455
456
457/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * sysfs_update_file - update the modified timestamp on an object attribute.
459 * @kobj: object we're acting for.
460 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
462int sysfs_update_file(struct kobject * kobj, const struct attribute * attr)
463{
Tejun Heo51225032007-06-14 04:27:25 +0900464 struct sysfs_dirent *victim_sd = NULL;
465 struct dentry *victim = NULL;
466 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Tejun Heo51225032007-06-14 04:27:25 +0900468 rc = -ENOENT;
469 victim_sd = sysfs_get_dirent(kobj->sd, attr->name);
470 if (!victim_sd)
471 goto out;
472
473 victim = sysfs_get_dentry(victim_sd);
474 if (IS_ERR(victim)) {
475 rc = PTR_ERR(victim);
476 victim = NULL;
477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Tejun Heo51225032007-06-14 04:27:25 +0900480 mutex_lock(&victim->d_inode->i_mutex);
481 victim->d_inode->i_mtime = CURRENT_TIME;
482 fsnotify_modify(victim);
483 mutex_unlock(&victim->d_inode->i_mutex);
484 rc = 0;
485 out:
486 dput(victim);
487 sysfs_put(victim_sd);
488 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491
492/**
Kay Sievers31e5abe2005-04-18 21:57:32 -0700493 * sysfs_chmod_file - update the modified mode value on an object attribute.
494 * @kobj: object we're acting for.
495 * @attr: attribute descriptor.
496 * @mode: file permissions.
497 *
498 */
499int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
500{
Tejun Heo51225032007-06-14 04:27:25 +0900501 struct sysfs_dirent *victim_sd = NULL;
502 struct dentry *victim = NULL;
Maneesh Sonibc062b12005-07-29 12:13:35 -0700503 struct inode * inode;
504 struct iattr newattrs;
Tejun Heo51225032007-06-14 04:27:25 +0900505 int rc;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700506
Tejun Heo51225032007-06-14 04:27:25 +0900507 rc = -ENOENT;
508 victim_sd = sysfs_get_dirent(kobj->sd, attr->name);
509 if (!victim_sd)
510 goto out;
511
512 victim = sysfs_get_dentry(victim_sd);
513 if (IS_ERR(victim)) {
514 rc = PTR_ERR(victim);
515 victim = NULL;
516 goto out;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700517 }
Kay Sievers31e5abe2005-04-18 21:57:32 -0700518
Tejun Heo51225032007-06-14 04:27:25 +0900519 inode = victim->d_inode;
520 mutex_lock(&inode->i_mutex);
521 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
522 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
523 rc = notify_change(victim, &newattrs);
524 mutex_unlock(&inode->i_mutex);
525 out:
526 dput(victim);
527 sysfs_put(victim_sd);
528 return rc;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700529}
530EXPORT_SYMBOL_GPL(sysfs_chmod_file);
531
532
533/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 * sysfs_remove_file - remove an object attribute.
535 * @kobj: object we're acting for.
536 * @attr: attribute descriptor.
537 *
538 * Hash the attribute name and kill the victim.
539 */
540
541void sysfs_remove_file(struct kobject * kobj, const struct attribute * attr)
542{
Tejun Heo608e2662007-06-14 04:27:22 +0900543 sysfs_hash_and_remove(kobj->sd, attr->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546
Alan Sterndfa87c82007-02-20 15:02:44 -0500547/**
548 * sysfs_remove_file_from_group - remove an attribute file from a group.
549 * @kobj: object we're acting for.
550 * @attr: attribute descriptor.
551 * @group: group name.
552 */
553void sysfs_remove_file_from_group(struct kobject *kobj,
554 const struct attribute *attr, const char *group)
555{
Tejun Heo608e2662007-06-14 04:27:22 +0900556 struct sysfs_dirent *dir_sd;
Alan Sterndfa87c82007-02-20 15:02:44 -0500557
Tejun Heo608e2662007-06-14 04:27:22 +0900558 dir_sd = sysfs_get_dirent(kobj->sd, group);
559 if (dir_sd) {
560 sysfs_hash_and_remove(dir_sd, attr->name);
561 sysfs_put(dir_sd);
Alan Sterndfa87c82007-02-20 15:02:44 -0500562 }
563}
564EXPORT_SYMBOL_GPL(sysfs_remove_file_from_group);
565
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400566struct sysfs_schedule_callback_struct {
567 struct kobject *kobj;
568 void (*func)(void *);
569 void *data;
Alan Stern523ded72007-04-26 00:12:04 -0700570 struct module *owner;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400571 struct work_struct work;
572};
573
574static void sysfs_schedule_callback_work(struct work_struct *work)
575{
576 struct sysfs_schedule_callback_struct *ss = container_of(work,
577 struct sysfs_schedule_callback_struct, work);
578
579 (ss->func)(ss->data);
580 kobject_put(ss->kobj);
Alan Stern523ded72007-04-26 00:12:04 -0700581 module_put(ss->owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400582 kfree(ss);
583}
584
585/**
586 * sysfs_schedule_callback - helper to schedule a callback for a kobject
587 * @kobj: object we're acting for.
588 * @func: callback function to invoke later.
589 * @data: argument to pass to @func.
Alan Stern523ded72007-04-26 00:12:04 -0700590 * @owner: module owning the callback code
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400591 *
592 * sysfs attribute methods must not unregister themselves or their parent
593 * kobject (which would amount to the same thing). Attempts to do so will
594 * deadlock, since unregistration is mutually exclusive with driver
595 * callbacks.
596 *
597 * Instead methods can call this routine, which will attempt to allocate
598 * and schedule a workqueue request to call back @func with @data as its
599 * argument in the workqueue's process context. @kobj will be pinned
600 * until @func returns.
601 *
602 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700603 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400604 */
605int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
Alan Stern523ded72007-04-26 00:12:04 -0700606 void *data, struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400607{
608 struct sysfs_schedule_callback_struct *ss;
609
Alan Stern523ded72007-04-26 00:12:04 -0700610 if (!try_module_get(owner))
611 return -ENODEV;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400612 ss = kmalloc(sizeof(*ss), GFP_KERNEL);
Alan Stern523ded72007-04-26 00:12:04 -0700613 if (!ss) {
614 module_put(owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400615 return -ENOMEM;
Alan Stern523ded72007-04-26 00:12:04 -0700616 }
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400617 kobject_get(kobj);
618 ss->kobj = kobj;
619 ss->func = func;
620 ss->data = data;
Alan Stern523ded72007-04-26 00:12:04 -0700621 ss->owner = owner;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400622 INIT_WORK(&ss->work, sysfs_schedule_callback_work);
623 schedule_work(&ss->work);
624 return 0;
625}
626EXPORT_SYMBOL_GPL(sysfs_schedule_callback);
627
Alan Sterndfa87c82007-02-20 15:02:44 -0500628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629EXPORT_SYMBOL_GPL(sysfs_create_file);
630EXPORT_SYMBOL_GPL(sysfs_remove_file);
631EXPORT_SYMBOL_GPL(sysfs_update_file);