blob: 0e637adc2b872c31d43aecae810c767c31b79e56 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/uaccess.h>
12#include <asm/semaphore.h>
13
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
Oliver Neukum94bebf42006-12-20 10:52:44 +010053/**
54 * add_to_collection - add buffer to a collection
55 * @buffer: buffer to be added
Randy Dunlapf95d8822007-02-10 14:41:56 -080056 * @node: inode of set to add to
Oliver Neukum94bebf42006-12-20 10:52:44 +010057 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Oliver Neukum94bebf42006-12-20 10:52:44 +010059static inline void
60add_to_collection(struct sysfs_buffer *buffer, struct inode *node)
61{
62 struct sysfs_buffer_collection *set = node->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Oliver Neukum94bebf42006-12-20 10:52:44 +010064 mutex_lock(&node->i_mutex);
65 list_add(&buffer->associates, &set->associates);
66 mutex_unlock(&node->i_mutex);
67}
68
69static inline void
70remove_from_collection(struct sysfs_buffer *buffer, struct inode *node)
71{
72 mutex_lock(&node->i_mutex);
73 list_del(&buffer->associates);
74 mutex_unlock(&node->i_mutex);
75}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/**
78 * fill_read_buffer - allocate and fill buffer from object.
79 * @dentry: dentry pointer.
80 * @buffer: data buffer for file.
81 *
82 * Allocate @buffer->page, if it hasn't been already, then call the
83 * kobject's show() method to fill the buffer with this attribute's
84 * data.
Oliver Neukum82244b12007-01-02 08:48:08 +010085 * This is called only once, on the file's first read unless an error
86 * is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88static int fill_read_buffer(struct dentry * dentry, struct sysfs_buffer * buffer)
89{
NeilBrown4508a7a2006-03-20 17:53:53 +110090 struct sysfs_dirent * sd = dentry->d_fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct attribute * attr = to_attr(dentry);
92 struct kobject * kobj = to_kobj(dentry->d_parent);
93 struct sysfs_ops * ops = buffer->ops;
94 int ret = 0;
95 ssize_t count;
96
97 if (!buffer->page)
98 buffer->page = (char *) get_zeroed_page(GFP_KERNEL);
99 if (!buffer->page)
100 return -ENOMEM;
101
NeilBrown4508a7a2006-03-20 17:53:53 +1100102 buffer->event = atomic_read(&sd->s_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 count = ops->show(kobj,attr,buffer->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 BUG_ON(count > (ssize_t)PAGE_SIZE);
Oliver Neukum82244b12007-01-02 08:48:08 +0100105 if (count >= 0) {
106 buffer->needs_read_fill = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 buffer->count = count;
Oliver Neukum82244b12007-01-02 08:48:08 +0100108 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ret = count;
Oliver Neukum82244b12007-01-02 08:48:08 +0100110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return ret;
112}
113
114
115/**
116 * flush_read_buffer - push buffer to userspace.
117 * @buffer: data buffer for file.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700118 * @buf: user-passed buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * @count: number of bytes requested.
120 * @ppos: file position.
121 *
122 * Copy the buffer we filled in fill_read_buffer() to userspace.
123 * This is done at the reader's leisure, copying and advancing
124 * the amount they specify each time.
125 * This may be called continuously until the buffer is empty.
126 */
127static int flush_read_buffer(struct sysfs_buffer * buffer, char __user * buf,
128 size_t count, loff_t * ppos)
129{
130 int error;
131
132 if (*ppos > buffer->count)
133 return 0;
134
135 if (count > (buffer->count - *ppos))
136 count = buffer->count - *ppos;
137
138 error = copy_to_user(buf,buffer->page + *ppos,count);
139 if (!error)
140 *ppos += count;
141 return error ? -EFAULT : count;
142}
143
144/**
145 * sysfs_read_file - read an attribute.
146 * @file: file pointer.
147 * @buf: buffer to fill.
148 * @count: number of bytes to read.
149 * @ppos: starting offset in file.
150 *
151 * Userspace wants to read an attribute file. The attribute descriptor
152 * is in the file's ->d_fsdata. The target object is in the directory's
153 * ->d_fsdata.
154 *
155 * We call fill_read_buffer() to allocate and fill the buffer from the
156 * object's show() method exactly once (if the read is happening from
157 * the beginning of the file). That should fill the entire buffer with
158 * all the data the object has to offer for that attribute.
159 * We then call flush_read_buffer() to copy the buffer to userspace
160 * in the increments specified.
161 */
162
163static ssize_t
164sysfs_read_file(struct file *file, char __user *buf, size_t count, loff_t *ppos)
165{
166 struct sysfs_buffer * buffer = file->private_data;
167 ssize_t retval = 0;
168
169 down(&buffer->sem);
170 if (buffer->needs_read_fill) {
Alan Sterne7b0d262007-03-15 15:51:28 -0400171 if (buffer->orphaned)
172 retval = -ENODEV;
173 else
174 retval = fill_read_buffer(file->f_path.dentry,buffer);
175 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 goto out;
177 }
Zach Brown5c1fdf42006-10-03 01:16:06 -0700178 pr_debug("%s: count = %zd, ppos = %lld, buf = %s\n",
179 __FUNCTION__, count, *ppos, buffer->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 retval = flush_read_buffer(buffer,buf,count,ppos);
181out:
182 up(&buffer->sem);
183 return retval;
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/**
187 * fill_write_buffer - copy buffer from userspace.
188 * @buffer: data buffer for file.
Martin Waitz67be2dd2005-05-01 08:59:26 -0700189 * @buf: data from user.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * @count: number of bytes in @userbuf.
191 *
192 * Allocate @buffer->page if it hasn't been already, then
193 * copy the user-supplied buffer into it.
194 */
195
196static int
197fill_write_buffer(struct sysfs_buffer * buffer, const char __user * buf, size_t count)
198{
199 int error;
200
201 if (!buffer->page)
202 buffer->page = (char *)get_zeroed_page(GFP_KERNEL);
203 if (!buffer->page)
204 return -ENOMEM;
205
206 if (count >= PAGE_SIZE)
Greg Kroah-Hartman6e0dd742006-03-31 15:37:06 -0800207 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 error = copy_from_user(buffer->page,buf,count);
209 buffer->needs_read_fill = 1;
Thomas Maier035ed7a2006-10-22 19:17:47 +0200210 /* if buf is assumed to contain a string, terminate it by \0,
211 so e.g. sscanf() can scan the string easily */
212 buffer->page[count] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return error ? -EFAULT : count;
214}
215
216
217/**
218 * flush_write_buffer - push buffer to kobject.
Martin Waitz3d410882005-06-23 22:05:21 -0700219 * @dentry: dentry to the attribute
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * @buffer: data buffer for file.
Martin Waitz3d410882005-06-23 22:05:21 -0700221 * @count: number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * Get the correct pointers for the kobject and the attribute we're
224 * dealing with, then call the store() method for the attribute,
225 * passing the buffer that we acquired in fill_write_buffer().
226 */
227
228static int
229flush_write_buffer(struct dentry * dentry, struct sysfs_buffer * buffer, size_t count)
230{
231 struct attribute * attr = to_attr(dentry);
232 struct kobject * kobj = to_kobj(dentry->d_parent);
233 struct sysfs_ops * ops = buffer->ops;
234
235 return ops->store(kobj,attr,buffer->page,count);
236}
237
238
239/**
240 * sysfs_write_file - write an attribute.
241 * @file: file pointer
242 * @buf: data to write
243 * @count: number of bytes
244 * @ppos: starting offset
245 *
246 * Similar to sysfs_read_file(), though working in the opposite direction.
247 * We allocate and fill the data from the user in fill_write_buffer(),
248 * then push it to the kobject in flush_write_buffer().
249 * There is no easy way for us to know if userspace is only doing a partial
250 * write, so we don't support them. We expect the entire buffer to come
251 * on the first write.
252 * Hint: if you're writing a value, first read the file, modify only the
253 * the value you're changing, then write entire buffer back.
254 */
255
256static ssize_t
257sysfs_write_file(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
258{
259 struct sysfs_buffer * buffer = file->private_data;
260 ssize_t len;
261
262 down(&buffer->sem);
Oliver Neukum94bebf42006-12-20 10:52:44 +0100263 if (buffer->orphaned) {
264 len = -ENODEV;
265 goto out;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 len = fill_write_buffer(buffer, buf, count);
268 if (len > 0)
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800269 len = flush_write_buffer(file->f_path.dentry, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (len > 0)
271 *ppos += len;
Oliver Neukum94bebf42006-12-20 10:52:44 +0100272out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 up(&buffer->sem);
274 return len;
275}
276
Oliver Neukum94bebf42006-12-20 10:52:44 +0100277static int sysfs_open_file(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800279 struct kobject *kobj = sysfs_get_kobject(file->f_path.dentry->d_parent);
280 struct attribute * attr = to_attr(file->f_path.dentry);
Oliver Neukum94bebf42006-12-20 10:52:44 +0100281 struct sysfs_buffer_collection *set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct sysfs_buffer * buffer;
283 struct sysfs_ops * ops = NULL;
284 int error = 0;
285
286 if (!kobj || !attr)
287 goto Einval;
288
289 /* Grab the module reference for this attribute if we have one */
290 if (!try_module_get(attr->owner)) {
291 error = -ENODEV;
292 goto Done;
293 }
294
295 /* if the kobject has no ktype, then we assume that it is a subsystem
296 * itself, and use ops for it.
297 */
298 if (kobj->kset && kobj->kset->ktype)
299 ops = kobj->kset->ktype->sysfs_ops;
300 else if (kobj->ktype)
301 ops = kobj->ktype->sysfs_ops;
302 else
303 ops = &subsys_sysfs_ops;
304
305 /* No sysfs operations, either from having no subsystem,
306 * or the subsystem have no operations.
307 */
308 if (!ops)
309 goto Eaccess;
310
Oliver Neukum94bebf42006-12-20 10:52:44 +0100311 /* make sure we have a collection to add our buffers to */
312 mutex_lock(&inode->i_mutex);
313 if (!(set = inode->i_private)) {
314 if (!(set = inode->i_private = kmalloc(sizeof(struct sysfs_buffer_collection), GFP_KERNEL))) {
315 error = -ENOMEM;
316 goto Done;
317 } else {
318 INIT_LIST_HEAD(&set->associates);
319 }
320 }
321 mutex_unlock(&inode->i_mutex);
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* File needs write support.
324 * The inode's perms must say it's ok,
325 * and we must have a store method.
326 */
327 if (file->f_mode & FMODE_WRITE) {
328
329 if (!(inode->i_mode & S_IWUGO) || !ops->store)
330 goto Eaccess;
331
332 }
333
334 /* File needs read support.
335 * The inode's perms must say it's ok, and we there
336 * must be a show method for it.
337 */
338 if (file->f_mode & FMODE_READ) {
339 if (!(inode->i_mode & S_IRUGO) || !ops->show)
340 goto Eaccess;
341 }
342
343 /* No error? Great, allocate a buffer for the file, and store it
344 * it in file->private_data for easy access.
345 */
Eric Sesterhenn58d49282006-02-22 11:18:15 +0100346 buffer = kzalloc(sizeof(struct sysfs_buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (buffer) {
Oliver Neukum94bebf42006-12-20 10:52:44 +0100348 INIT_LIST_HEAD(&buffer->associates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 init_MUTEX(&buffer->sem);
350 buffer->needs_read_fill = 1;
351 buffer->ops = ops;
Oliver Neukum94bebf42006-12-20 10:52:44 +0100352 add_to_collection(buffer, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 file->private_data = buffer;
354 } else
355 error = -ENOMEM;
356 goto Done;
357
358 Einval:
359 error = -EINVAL;
360 goto Done;
361 Eaccess:
362 error = -EACCES;
363 module_put(attr->owner);
364 Done:
Mariusz Kozlowskif7506532007-01-02 13:41:10 +0100365 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 kobject_put(kobj);
367 return error;
368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static int sysfs_release(struct inode * inode, struct file * filp)
371{
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800372 struct kobject * kobj = to_kobj(filp->f_path.dentry->d_parent);
373 struct attribute * attr = to_attr(filp->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 struct module * owner = attr->owner;
375 struct sysfs_buffer * buffer = filp->private_data;
376
Oliver Neukum94bebf42006-12-20 10:52:44 +0100377 if (buffer)
378 remove_from_collection(buffer, inode);
Mariusz Kozlowskif7506532007-01-02 13:41:10 +0100379 kobject_put(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* After this point, attr should not be accessed. */
381 module_put(owner);
382
383 if (buffer) {
384 if (buffer->page)
385 free_page((unsigned long)buffer->page);
386 kfree(buffer);
387 }
388 return 0;
389}
390
NeilBrown4508a7a2006-03-20 17:53:53 +1100391/* Sysfs attribute files are pollable. The idea is that you read
392 * the content and then you use 'poll' or 'select' to wait for
393 * the content to change. When the content changes (assuming the
394 * manager for the kobject supports notification), poll will
395 * return POLLERR|POLLPRI, and select will return the fd whether
396 * it is waiting for read, write, or exceptions.
397 * Once poll/select indicates that the value has changed, you
398 * need to close and re-open the file, as simply seeking and reading
399 * again will not get new data, or reset the state of 'poll'.
400 * Reminder: this only works for attributes which actively support
401 * it, and it is not possible to test an attribute from userspace
402 * to see if it supports poll (Nether 'poll' or 'select' return
403 * an appropriate error code). When in doubt, set a suitable timeout value.
404 */
405static unsigned int sysfs_poll(struct file *filp, poll_table *wait)
406{
407 struct sysfs_buffer * buffer = filp->private_data;
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800408 struct kobject * kobj = to_kobj(filp->f_path.dentry->d_parent);
409 struct sysfs_dirent * sd = filp->f_path.dentry->d_fsdata;
NeilBrown4508a7a2006-03-20 17:53:53 +1100410 int res = 0;
411
412 poll_wait(filp, &kobj->poll, wait);
413
414 if (buffer->event != atomic_read(&sd->s_event)) {
415 res = POLLERR|POLLPRI;
416 buffer->needs_read_fill = 1;
417 }
418
419 return res;
420}
421
422
423static struct dentry *step_down(struct dentry *dir, const char * name)
424{
425 struct dentry * de;
426
427 if (dir == NULL || dir->d_inode == NULL)
428 return NULL;
429
430 mutex_lock(&dir->d_inode->i_mutex);
431 de = lookup_one_len(name, dir, strlen(name));
432 mutex_unlock(&dir->d_inode->i_mutex);
433 dput(dir);
434 if (IS_ERR(de))
435 return NULL;
436 if (de->d_inode == NULL) {
437 dput(de);
438 return NULL;
439 }
440 return de;
441}
442
443void sysfs_notify(struct kobject * k, char *dir, char *attr)
444{
445 struct dentry *de = k->dentry;
446 if (de)
447 dget(de);
448 if (de && dir)
449 de = step_down(de, dir);
450 if (de && attr)
451 de = step_down(de, attr);
452 if (de) {
453 struct sysfs_dirent * sd = de->d_fsdata;
454 if (sd)
455 atomic_inc(&sd->s_event);
456 wake_up_interruptible(&k->poll);
457 dput(de);
458 }
459}
460EXPORT_SYMBOL_GPL(sysfs_notify);
461
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800462const struct file_operations sysfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 .read = sysfs_read_file,
464 .write = sysfs_write_file,
465 .llseek = generic_file_llseek,
466 .open = sysfs_open_file,
467 .release = sysfs_release,
NeilBrown4508a7a2006-03-20 17:53:53 +1100468 .poll = sysfs_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469};
470
471
472int sysfs_add_file(struct dentry * dir, const struct attribute * attr, int type)
473{
474 struct sysfs_dirent * parent_sd = dir->d_fsdata;
475 umode_t mode = (attr->mode & S_IALLUGO) | S_IFREG;
Maneesh Sonic5168652006-03-09 19:40:14 +0530476 int error = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800478 mutex_lock(&dir->d_inode->i_mutex);
Maneesh Sonic5168652006-03-09 19:40:14 +0530479 if (!sysfs_dirent_exist(parent_sd, attr->name))
480 error = sysfs_make_dirent(parent_sd, NULL, (void *)attr,
481 mode, type);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800482 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 return error;
485}
486
487
488/**
489 * sysfs_create_file - create an attribute file for an object.
490 * @kobj: object we're creating for.
491 * @attr: atrribute descriptor.
492 */
493
494int sysfs_create_file(struct kobject * kobj, const struct attribute * attr)
495{
496 BUG_ON(!kobj || !kobj->dentry || !attr);
497
498 return sysfs_add_file(kobj->dentry, attr, SYSFS_KOBJ_ATTR);
499
500}
501
502
503/**
Alan Sterndfa87c82007-02-20 15:02:44 -0500504 * sysfs_add_file_to_group - add an attribute file to a pre-existing group.
505 * @kobj: object we're acting for.
506 * @attr: attribute descriptor.
507 * @group: group name.
508 */
509int sysfs_add_file_to_group(struct kobject *kobj,
510 const struct attribute *attr, const char *group)
511{
512 struct dentry *dir;
513 int error;
514
515 dir = lookup_one_len(group, kobj->dentry, strlen(group));
516 if (IS_ERR(dir))
517 error = PTR_ERR(dir);
518 else {
519 error = sysfs_add_file(dir, attr, SYSFS_KOBJ_ATTR);
520 dput(dir);
521 }
522 return error;
523}
524EXPORT_SYMBOL_GPL(sysfs_add_file_to_group);
525
526
527/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * sysfs_update_file - update the modified timestamp on an object attribute.
529 * @kobj: object we're acting for.
530 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
532int sysfs_update_file(struct kobject * kobj, const struct attribute * attr)
533{
534 struct dentry * dir = kobj->dentry;
535 struct dentry * victim;
536 int res = -ENOENT;
537
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800538 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -0700539 victim = lookup_one_len(attr->name, dir, strlen(attr->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (!IS_ERR(victim)) {
541 /* make sure dentry is really there */
542 if (victim->d_inode &&
543 (victim->d_parent->d_inode == dir->d_inode)) {
544 victim->d_inode->i_mtime = CURRENT_TIME;
Robert Love0eeca282005-07-12 17:06:03 -0400545 fsnotify_modify(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 res = 0;
547 } else
548 d_drop(victim);
549
550 /**
Hidetoshi Seto97a50182006-09-20 16:49:02 +0900551 * Drop the reference acquired from lookup_one_len() above.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
553 dput(victim);
554 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800555 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 return res;
558}
559
560
561/**
Kay Sievers31e5abe2005-04-18 21:57:32 -0700562 * sysfs_chmod_file - update the modified mode value on an object attribute.
563 * @kobj: object we're acting for.
564 * @attr: attribute descriptor.
565 * @mode: file permissions.
566 *
567 */
568int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
569{
570 struct dentry *dir = kobj->dentry;
571 struct dentry *victim;
Maneesh Sonibc062b12005-07-29 12:13:35 -0700572 struct inode * inode;
573 struct iattr newattrs;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700574 int res = -ENOENT;
575
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800576 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -0700577 victim = lookup_one_len(attr->name, dir, strlen(attr->name));
Kay Sievers31e5abe2005-04-18 21:57:32 -0700578 if (!IS_ERR(victim)) {
579 if (victim->d_inode &&
580 (victim->d_parent->d_inode == dir->d_inode)) {
Maneesh Sonibc062b12005-07-29 12:13:35 -0700581 inode = victim->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800582 mutex_lock(&inode->i_mutex);
Maneesh Sonibc062b12005-07-29 12:13:35 -0700583 newattrs.ia_mode = (mode & S_IALLUGO) |
584 (inode->i_mode & ~S_IALLUGO);
585 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
586 res = notify_change(victim, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800587 mutex_unlock(&inode->i_mutex);
Kay Sievers31e5abe2005-04-18 21:57:32 -0700588 }
Maneesh Sonibc062b12005-07-29 12:13:35 -0700589 dput(victim);
Kay Sievers31e5abe2005-04-18 21:57:32 -0700590 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800591 mutex_unlock(&dir->d_inode->i_mutex);
Kay Sievers31e5abe2005-04-18 21:57:32 -0700592
593 return res;
594}
595EXPORT_SYMBOL_GPL(sysfs_chmod_file);
596
597
598/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * sysfs_remove_file - remove an object attribute.
600 * @kobj: object we're acting for.
601 * @attr: attribute descriptor.
602 *
603 * Hash the attribute name and kill the victim.
604 */
605
606void sysfs_remove_file(struct kobject * kobj, const struct attribute * attr)
607{
Oliver Neukum94bebf42006-12-20 10:52:44 +0100608 sysfs_hash_and_remove(kobj->dentry, attr->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611
Alan Sterndfa87c82007-02-20 15:02:44 -0500612/**
613 * sysfs_remove_file_from_group - remove an attribute file from a group.
614 * @kobj: object we're acting for.
615 * @attr: attribute descriptor.
616 * @group: group name.
617 */
618void sysfs_remove_file_from_group(struct kobject *kobj,
619 const struct attribute *attr, const char *group)
620{
621 struct dentry *dir;
622
623 dir = lookup_one_len(group, kobj->dentry, strlen(group));
624 if (!IS_ERR(dir)) {
625 sysfs_hash_and_remove(dir, attr->name);
626 dput(dir);
627 }
628}
629EXPORT_SYMBOL_GPL(sysfs_remove_file_from_group);
630
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400631struct sysfs_schedule_callback_struct {
632 struct kobject *kobj;
633 void (*func)(void *);
634 void *data;
Alan Stern523ded72007-04-26 00:12:04 -0700635 struct module *owner;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400636 struct work_struct work;
637};
638
639static void sysfs_schedule_callback_work(struct work_struct *work)
640{
641 struct sysfs_schedule_callback_struct *ss = container_of(work,
642 struct sysfs_schedule_callback_struct, work);
643
644 (ss->func)(ss->data);
645 kobject_put(ss->kobj);
Alan Stern523ded72007-04-26 00:12:04 -0700646 module_put(ss->owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400647 kfree(ss);
648}
649
650/**
651 * sysfs_schedule_callback - helper to schedule a callback for a kobject
652 * @kobj: object we're acting for.
653 * @func: callback function to invoke later.
654 * @data: argument to pass to @func.
Alan Stern523ded72007-04-26 00:12:04 -0700655 * @owner: module owning the callback code
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400656 *
657 * sysfs attribute methods must not unregister themselves or their parent
658 * kobject (which would amount to the same thing). Attempts to do so will
659 * deadlock, since unregistration is mutually exclusive with driver
660 * callbacks.
661 *
662 * Instead methods can call this routine, which will attempt to allocate
663 * and schedule a workqueue request to call back @func with @data as its
664 * argument in the workqueue's process context. @kobj will be pinned
665 * until @func returns.
666 *
667 * Returns 0 if the request was submitted, -ENOMEM if storage could not
Alan Stern523ded72007-04-26 00:12:04 -0700668 * be allocated, -ENODEV if a reference to @owner isn't available.
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400669 */
670int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
Alan Stern523ded72007-04-26 00:12:04 -0700671 void *data, struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400672{
673 struct sysfs_schedule_callback_struct *ss;
674
Alan Stern523ded72007-04-26 00:12:04 -0700675 if (!try_module_get(owner))
676 return -ENODEV;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400677 ss = kmalloc(sizeof(*ss), GFP_KERNEL);
Alan Stern523ded72007-04-26 00:12:04 -0700678 if (!ss) {
679 module_put(owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400680 return -ENOMEM;
Alan Stern523ded72007-04-26 00:12:04 -0700681 }
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400682 kobject_get(kobj);
683 ss->kobj = kobj;
684 ss->func = func;
685 ss->data = data;
Alan Stern523ded72007-04-26 00:12:04 -0700686 ss->owner = owner;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400687 INIT_WORK(&ss->work, sysfs_schedule_callback_work);
688 schedule_work(&ss->work);
689 return 0;
690}
691EXPORT_SYMBOL_GPL(sysfs_schedule_callback);
692
Alan Sterndfa87c82007-02-20 15:02:44 -0500693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694EXPORT_SYMBOL_GPL(sysfs_create_file);
695EXPORT_SYMBOL_GPL(sysfs_remove_file);
696EXPORT_SYMBOL_GPL(sysfs_update_file);