2 * fs/sysfs/file.c - sysfs regular (text) file implementation
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * This file is released under the GPLv2.
10 * Please see Documentation/filesystems/sysfs.txt for more information.
13 #include <linux/module.h>
14 #include <linux/kobject.h>
15 #include <linux/kallsyms.h>
16 #include <linux/slab.h>
17 #include <linux/fsnotify.h>
18 #include <linux/namei.h>
19 #include <linux/poll.h>
20 #include <linux/list.h>
21 #include <linux/mutex.h>
22 #include <linux/limits.h>
23 #include <linux/uaccess.h>
24 #include <linux/seq_file.h>
29 * There's one sysfs_open_file for each open file and one sysfs_open_dirent
30 * for each sysfs_dirent with one or more open files.
32 * sysfs_dirent->s_attr.open points to sysfs_open_dirent. s_attr.open is
33 * protected by sysfs_open_dirent_lock.
35 * filp->private_data points to seq_file whose ->private points to
36 * sysfs_open_file. sysfs_open_files are chained at
37 * sysfs_open_dirent->files, which is protected by sysfs_open_file_mutex.
39 static DEFINE_SPINLOCK(sysfs_open_dirent_lock);
40 static DEFINE_MUTEX(sysfs_open_file_mutex);
42 struct sysfs_open_dirent {
45 wait_queue_head_t poll;
46 struct list_head files; /* goes through sysfs_open_file.list */
49 struct sysfs_open_file {
50 struct sysfs_dirent *sd;
54 struct list_head list;
57 static struct sysfs_open_file *sysfs_of(struct file *file)
59 return ((struct seq_file *)file->private_data)->private;
63 * Determine ktype->sysfs_ops for the given sysfs_dirent. This function
64 * must be called while holding an active reference.
66 static const struct sysfs_ops *sysfs_file_ops(struct sysfs_dirent *sd)
68 struct kobject *kobj = sd->s_parent->s_dir.kobj;
70 lockdep_assert_held(sd);
71 return kobj->ktype ? kobj->ktype->sysfs_ops : NULL;
75 * Reads on sysfs are handled through seq_file, which takes care of hairy
76 * details like buffering and seeking. The following function pipes
77 * sysfs_ops->show() result through seq_file.
79 static int sysfs_seq_show(struct seq_file *sf, void *v)
81 struct sysfs_open_file *of = sf->private;
82 struct kobject *kobj = of->sd->s_parent->s_dir.kobj;
83 const struct sysfs_ops *ops;
87 /* acquire buffer and ensure that it's >= PAGE_SIZE */
88 count = seq_get_buf(sf, &buf);
89 if (count < PAGE_SIZE) {
95 * Need @of->sd for attr and ops, its parent for kobj. @of->mutex
96 * nests outside active ref and is just to ensure that the ops
97 * aren't called concurrently for the same open file.
99 mutex_lock(&of->mutex);
100 if (!sysfs_get_active(of->sd)) {
101 mutex_unlock(&of->mutex);
105 of->event = atomic_read(&of->sd->s_attr.open->event);
108 * Lookup @ops and invoke show(). Control may reach here via seq
109 * file lseek even if @ops->show() isn't implemented.
111 ops = sysfs_file_ops(of->sd);
113 count = ops->show(kobj, of->sd->s_attr.attr, buf);
117 sysfs_put_active(of->sd);
118 mutex_unlock(&of->mutex);
124 * The code works fine with PAGE_SIZE return but it's likely to
125 * indicate truncated result or overflow in normal use cases.
127 if (count >= (ssize_t)PAGE_SIZE) {
128 print_symbol("fill_read_buffer: %s returned bad count\n",
129 (unsigned long)ops->show);
130 /* Try to struggle along */
131 count = PAGE_SIZE - 1;
133 seq_commit(sf, count);
138 * flush_write_buffer - push buffer to kobject
140 * @buf: data buffer for file
141 * @count: number of bytes
143 * Get the correct pointers for the kobject and the attribute we're dealing
144 * with, then call the store() method for it with @buf.
146 static int flush_write_buffer(struct sysfs_open_file *of, char *buf,
149 struct kobject *kobj = of->sd->s_parent->s_dir.kobj;
150 const struct sysfs_ops *ops;
154 * Need @of->sd for attr and ops, its parent for kobj. @of->mutex
155 * nests outside active ref and is just to ensure that the ops
156 * aren't called concurrently for the same open file.
158 mutex_lock(&of->mutex);
159 if (!sysfs_get_active(of->sd)) {
160 mutex_unlock(&of->mutex);
164 ops = sysfs_file_ops(of->sd);
165 rc = ops->store(kobj, of->sd->s_attr.attr, buf, count);
167 sysfs_put_active(of->sd);
168 mutex_unlock(&of->mutex);
174 * sysfs_write_file - write an attribute
175 * @file: file pointer
176 * @user_buf: data to write
177 * @count: number of bytes
178 * @ppos: starting offset
180 * Copy data in from userland and pass it to the matching
181 * sysfs_ops->store() by invoking flush_write_buffer().
183 * There is no easy way for us to know if userspace is only doing a partial
184 * write, so we don't support them. We expect the entire buffer to come on
185 * the first write. Hint: if you're writing a value, first read the file,
186 * modify only the the value you're changing, then write entire buffer
189 static ssize_t sysfs_write_file(struct file *file, const char __user *user_buf,
190 size_t count, loff_t *ppos)
192 struct sysfs_open_file *of = sysfs_of(file);
193 ssize_t len = min_t(size_t, count, PAGE_SIZE - 1);
199 buf = kmalloc(len + 1, GFP_KERNEL);
203 if (copy_from_user(buf, user_buf, len)) {
207 buf[len] = '\0'; /* guarantee string termination */
209 len = flush_write_buffer(of, buf, len);
218 * sysfs_get_open_dirent - get or create sysfs_open_dirent
219 * @sd: target sysfs_dirent
220 * @of: sysfs_open_file for this instance of open
222 * If @sd->s_attr.open exists, increment its reference count;
223 * otherwise, create one. @of is chained to the files list.
226 * Kernel thread context (may sleep).
229 * 0 on success, -errno on failure.
231 static int sysfs_get_open_dirent(struct sysfs_dirent *sd,
232 struct sysfs_open_file *of)
234 struct sysfs_open_dirent *od, *new_od = NULL;
237 mutex_lock(&sysfs_open_file_mutex);
238 spin_lock_irq(&sysfs_open_dirent_lock);
240 if (!sd->s_attr.open && new_od) {
241 sd->s_attr.open = new_od;
245 od = sd->s_attr.open;
247 atomic_inc(&od->refcnt);
248 list_add_tail(&of->list, &od->files);
251 spin_unlock_irq(&sysfs_open_dirent_lock);
252 mutex_unlock(&sysfs_open_file_mutex);
259 /* not there, initialize a new one and retry */
260 new_od = kmalloc(sizeof(*new_od), GFP_KERNEL);
264 atomic_set(&new_od->refcnt, 0);
265 atomic_set(&new_od->event, 1);
266 init_waitqueue_head(&new_od->poll);
267 INIT_LIST_HEAD(&new_od->files);
272 * sysfs_put_open_dirent - put sysfs_open_dirent
273 * @sd: target sysfs_dirent
274 * @of: associated sysfs_open_file
276 * Put @sd->s_attr.open and unlink @of from the files list. If
277 * reference count reaches zero, disassociate and free it.
282 static void sysfs_put_open_dirent(struct sysfs_dirent *sd,
283 struct sysfs_open_file *of)
285 struct sysfs_open_dirent *od = sd->s_attr.open;
288 mutex_lock(&sysfs_open_file_mutex);
289 spin_lock_irqsave(&sysfs_open_dirent_lock, flags);
292 if (atomic_dec_and_test(&od->refcnt))
293 sd->s_attr.open = NULL;
297 spin_unlock_irqrestore(&sysfs_open_dirent_lock, flags);
298 mutex_unlock(&sysfs_open_file_mutex);
303 static int sysfs_open_file(struct inode *inode, struct file *file)
305 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
306 struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
307 struct sysfs_open_file *of;
308 const struct sysfs_ops *ops;
311 /* need attr_sd for attr and ops, its parent for kobj */
312 if (!sysfs_get_active(attr_sd))
315 /* every kobject with an attribute needs a ktype assigned */
316 ops = sysfs_file_ops(attr_sd);
317 if (WARN(!ops, KERN_ERR
318 "missing sysfs attribute operations for kobject: %s\n",
322 /* File needs write support.
323 * The inode's perms must say it's ok,
324 * and we must have a store method.
326 if (file->f_mode & FMODE_WRITE) {
327 if (!(inode->i_mode & S_IWUGO) || !ops->store)
331 /* File needs read support.
332 * The inode's perms must say it's ok, and we there
333 * must be a show method for it.
335 if (file->f_mode & FMODE_READ) {
336 if (!(inode->i_mode & S_IRUGO) || !ops->show)
340 /* allocate a sysfs_open_file for the file */
342 of = kzalloc(sizeof(struct sysfs_open_file), GFP_KERNEL);
346 mutex_init(&of->mutex);
351 * Always instantiate seq_file even if read access is not
352 * implemented or requested. This unifies private data access and
353 * most files are readable anyway.
355 error = single_open(file, sysfs_seq_show, of);
359 /* seq_file clears PWRITE unconditionally, restore it if WRITE */
360 if (file->f_mode & FMODE_WRITE)
361 file->f_mode |= FMODE_PWRITE;
363 /* make sure we have open dirent struct */
364 error = sysfs_get_open_dirent(attr_sd, of);
368 /* open succeeded, put active references */
369 sysfs_put_active(attr_sd);
373 single_release(inode, file);
377 sysfs_put_active(attr_sd);
381 static int sysfs_release(struct inode *inode, struct file *filp)
383 struct sysfs_dirent *sd = filp->f_path.dentry->d_fsdata;
384 struct sysfs_open_file *of = sysfs_of(filp);
386 sysfs_put_open_dirent(sd, of);
387 single_release(inode, filp);
393 /* Sysfs attribute files are pollable. The idea is that you read
394 * the content and then you use 'poll' or 'select' to wait for
395 * the content to change. When the content changes (assuming the
396 * manager for the kobject supports notification), poll will
397 * return POLLERR|POLLPRI, and select will return the fd whether
398 * it is waiting for read, write, or exceptions.
399 * Once poll/select indicates that the value has changed, you
400 * need to close and re-open the file, or seek to 0 and read again.
401 * Reminder: this only works for attributes which actively support
402 * it, and it is not possible to test an attribute from userspace
403 * to see if it supports poll (Neither 'poll' nor 'select' return
404 * an appropriate error code). When in doubt, set a suitable timeout value.
406 static unsigned int sysfs_poll(struct file *filp, poll_table *wait)
408 struct sysfs_open_file *of = sysfs_of(filp);
409 struct sysfs_dirent *attr_sd = filp->f_path.dentry->d_fsdata;
410 struct sysfs_open_dirent *od = attr_sd->s_attr.open;
412 /* need parent for the kobj, grab both */
413 if (!sysfs_get_active(attr_sd))
416 poll_wait(filp, &od->poll, wait);
418 sysfs_put_active(attr_sd);
420 if (of->event != atomic_read(&od->event))
423 return DEFAULT_POLLMASK;
426 return DEFAULT_POLLMASK|POLLERR|POLLPRI;
429 void sysfs_notify_dirent(struct sysfs_dirent *sd)
431 struct sysfs_open_dirent *od;
434 spin_lock_irqsave(&sysfs_open_dirent_lock, flags);
436 if (!WARN_ON(sysfs_type(sd) != SYSFS_KOBJ_ATTR)) {
437 od = sd->s_attr.open;
439 atomic_inc(&od->event);
440 wake_up_interruptible(&od->poll);
444 spin_unlock_irqrestore(&sysfs_open_dirent_lock, flags);
446 EXPORT_SYMBOL_GPL(sysfs_notify_dirent);
448 void sysfs_notify(struct kobject *k, const char *dir, const char *attr)
450 struct sysfs_dirent *sd = k->sd;
452 mutex_lock(&sysfs_mutex);
455 sd = sysfs_find_dirent(sd, dir, NULL);
457 sd = sysfs_find_dirent(sd, attr, NULL);
459 sysfs_notify_dirent(sd);
461 mutex_unlock(&sysfs_mutex);
463 EXPORT_SYMBOL_GPL(sysfs_notify);
465 const struct file_operations sysfs_file_operations = {
467 .write = sysfs_write_file,
469 .open = sysfs_open_file,
470 .release = sysfs_release,
474 int sysfs_add_file_mode_ns(struct sysfs_dirent *dir_sd,
475 const struct attribute *attr, int type,
476 umode_t amode, const void *ns)
478 umode_t mode = (amode & S_IALLUGO) | S_IFREG;
479 struct sysfs_addrm_cxt acxt;
480 struct sysfs_dirent *sd;
483 sd = sysfs_new_dirent(attr->name, mode, type);
488 sd->s_attr.attr = (void *)attr;
489 sysfs_dirent_init_lockdep(sd);
491 sysfs_addrm_start(&acxt);
492 rc = sysfs_add_one(&acxt, sd, dir_sd);
493 sysfs_addrm_finish(&acxt);
502 int sysfs_add_file(struct sysfs_dirent *dir_sd, const struct attribute *attr,
505 return sysfs_add_file_mode_ns(dir_sd, attr, type, attr->mode, NULL);
509 * sysfs_create_file_ns - create an attribute file for an object with custom ns
510 * @kobj: object we're creating for
511 * @attr: attribute descriptor
512 * @ns: namespace the new file should belong to
514 int sysfs_create_file_ns(struct kobject *kobj, const struct attribute *attr,
517 BUG_ON(!kobj || !kobj->sd || !attr);
519 return sysfs_add_file_mode_ns(kobj->sd, attr, SYSFS_KOBJ_ATTR,
523 EXPORT_SYMBOL_GPL(sysfs_create_file_ns);
525 int sysfs_create_files(struct kobject *kobj, const struct attribute **ptr)
530 for (i = 0; ptr[i] && !err; i++)
531 err = sysfs_create_file(kobj, ptr[i]);
534 sysfs_remove_file(kobj, ptr[i]);
537 EXPORT_SYMBOL_GPL(sysfs_create_files);
540 * sysfs_add_file_to_group - add an attribute file to a pre-existing group.
541 * @kobj: object we're acting for.
542 * @attr: attribute descriptor.
543 * @group: group name.
545 int sysfs_add_file_to_group(struct kobject *kobj,
546 const struct attribute *attr, const char *group)
548 struct sysfs_dirent *dir_sd;
552 dir_sd = sysfs_get_dirent(kobj->sd, group);
554 dir_sd = sysfs_get(kobj->sd);
559 error = sysfs_add_file(dir_sd, attr, SYSFS_KOBJ_ATTR);
564 EXPORT_SYMBOL_GPL(sysfs_add_file_to_group);
567 * sysfs_chmod_file - update the modified mode value on an object attribute.
568 * @kobj: object we're acting for.
569 * @attr: attribute descriptor.
570 * @mode: file permissions.
573 int sysfs_chmod_file(struct kobject *kobj, const struct attribute *attr,
576 struct sysfs_dirent *sd;
577 struct iattr newattrs;
580 mutex_lock(&sysfs_mutex);
583 sd = sysfs_find_dirent(kobj->sd, attr->name, NULL);
587 newattrs.ia_mode = (mode & S_IALLUGO) | (sd->s_mode & ~S_IALLUGO);
588 newattrs.ia_valid = ATTR_MODE;
589 rc = sysfs_sd_setattr(sd, &newattrs);
592 mutex_unlock(&sysfs_mutex);
595 EXPORT_SYMBOL_GPL(sysfs_chmod_file);
598 * sysfs_remove_file_ns - remove an object attribute with a custom ns tag
599 * @kobj: object we're acting for
600 * @attr: attribute descriptor
601 * @ns: namespace tag of the file to remove
603 * Hash the attribute name and namespace tag and kill the victim.
605 void sysfs_remove_file_ns(struct kobject *kobj, const struct attribute *attr,
608 struct sysfs_dirent *dir_sd = kobj->sd;
610 sysfs_hash_and_remove(dir_sd, attr->name, ns);
612 EXPORT_SYMBOL_GPL(sysfs_remove_file_ns);
614 void sysfs_remove_files(struct kobject *kobj, const struct attribute **ptr)
617 for (i = 0; ptr[i]; i++)
618 sysfs_remove_file(kobj, ptr[i]);
620 EXPORT_SYMBOL_GPL(sysfs_remove_files);
623 * sysfs_remove_file_from_group - remove an attribute file from a group.
624 * @kobj: object we're acting for.
625 * @attr: attribute descriptor.
626 * @group: group name.
628 void sysfs_remove_file_from_group(struct kobject *kobj,
629 const struct attribute *attr, const char *group)
631 struct sysfs_dirent *dir_sd;
634 dir_sd = sysfs_get_dirent(kobj->sd, group);
636 dir_sd = sysfs_get(kobj->sd);
638 sysfs_hash_and_remove(dir_sd, attr->name, NULL);
642 EXPORT_SYMBOL_GPL(sysfs_remove_file_from_group);
644 struct sysfs_schedule_callback_struct {
645 struct list_head workq_list;
646 struct kobject *kobj;
647 void (*func)(void *);
649 struct module *owner;
650 struct work_struct work;
653 static struct workqueue_struct *sysfs_workqueue;
654 static DEFINE_MUTEX(sysfs_workq_mutex);
655 static LIST_HEAD(sysfs_workq);
656 static void sysfs_schedule_callback_work(struct work_struct *work)
658 struct sysfs_schedule_callback_struct *ss = container_of(work,
659 struct sysfs_schedule_callback_struct, work);
661 (ss->func)(ss->data);
662 kobject_put(ss->kobj);
663 module_put(ss->owner);
664 mutex_lock(&sysfs_workq_mutex);
665 list_del(&ss->workq_list);
666 mutex_unlock(&sysfs_workq_mutex);
671 * sysfs_schedule_callback - helper to schedule a callback for a kobject
672 * @kobj: object we're acting for.
673 * @func: callback function to invoke later.
674 * @data: argument to pass to @func.
675 * @owner: module owning the callback code
677 * sysfs attribute methods must not unregister themselves or their parent
678 * kobject (which would amount to the same thing). Attempts to do so will
679 * deadlock, since unregistration is mutually exclusive with driver
682 * Instead methods can call this routine, which will attempt to allocate
683 * and schedule a workqueue request to call back @func with @data as its
684 * argument in the workqueue's process context. @kobj will be pinned
685 * until @func returns.
687 * Returns 0 if the request was submitted, -ENOMEM if storage could not
688 * be allocated, -ENODEV if a reference to @owner isn't available,
689 * -EAGAIN if a callback has already been scheduled for @kobj.
691 int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
692 void *data, struct module *owner)
694 struct sysfs_schedule_callback_struct *ss, *tmp;
696 if (!try_module_get(owner))
699 mutex_lock(&sysfs_workq_mutex);
700 list_for_each_entry_safe(ss, tmp, &sysfs_workq, workq_list)
701 if (ss->kobj == kobj) {
703 mutex_unlock(&sysfs_workq_mutex);
706 mutex_unlock(&sysfs_workq_mutex);
708 if (sysfs_workqueue == NULL) {
709 sysfs_workqueue = create_singlethread_workqueue("sysfsd");
710 if (sysfs_workqueue == NULL) {
716 ss = kmalloc(sizeof(*ss), GFP_KERNEL);
726 INIT_WORK(&ss->work, sysfs_schedule_callback_work);
727 INIT_LIST_HEAD(&ss->workq_list);
728 mutex_lock(&sysfs_workq_mutex);
729 list_add_tail(&ss->workq_list, &sysfs_workq);
730 mutex_unlock(&sysfs_workq_mutex);
731 queue_work(sysfs_workqueue, &ss->work);
734 EXPORT_SYMBOL_GPL(sysfs_schedule_callback);