2 * bin.c - binary file operations for sysfs.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Matthew Wilcox
6 * Copyright (c) 2004 Silicon Graphics, Inc.
11 #include <linux/errno.h>
13 #include <linux/kernel.h>
14 #include <linux/kobject.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
18 #include <asm/uaccess.h>
19 #include <asm/semaphore.h>
24 fill_read(struct dentry *dentry, char *buffer, loff_t off, size_t count)
26 struct bin_attribute * attr = to_bin_attr(dentry);
27 struct kobject * kobj = to_kobj(dentry->d_parent);
32 return attr->read(kobj, buffer, off, count);
36 read(struct file * file, char __user * userbuf, size_t count, loff_t * off)
38 char *buffer = file->private_data;
39 struct dentry *dentry = file->f_path.dentry;
40 int size = dentry->d_inode->i_size;
44 if (count > PAGE_SIZE)
50 if (offs + count > size)
54 ret = fill_read(dentry, buffer, offs, count);
59 if (copy_to_user(userbuf, buffer, count))
62 pr_debug("offs = %lld, *off = %lld, count = %zd\n", offs, *off, count);
70 flush_write(struct dentry *dentry, char *buffer, loff_t offset, size_t count)
72 struct bin_attribute *attr = to_bin_attr(dentry);
73 struct kobject *kobj = to_kobj(dentry->d_parent);
78 return attr->write(kobj, buffer, offset, count);
81 static ssize_t write(struct file * file, const char __user * userbuf,
82 size_t count, loff_t * off)
84 char *buffer = file->private_data;
85 struct dentry *dentry = file->f_path.dentry;
86 int size = dentry->d_inode->i_size;
89 if (count > PAGE_SIZE)
94 if (offs + count > size)
98 if (copy_from_user(buffer, userbuf, count))
101 count = flush_write(dentry, buffer, offs, count);
107 static int mmap(struct file *file, struct vm_area_struct *vma)
109 struct dentry *dentry = file->f_path.dentry;
110 struct bin_attribute *attr = to_bin_attr(dentry);
111 struct kobject *kobj = to_kobj(dentry->d_parent);
116 return attr->mmap(kobj, attr, vma);
119 static int open(struct inode * inode, struct file * file)
121 struct kobject *kobj = sysfs_get_kobject(file->f_path.dentry->d_parent);
122 struct bin_attribute * attr = to_bin_attr(file->f_path.dentry);
128 /* Grab the module reference for this attribute if we have one */
130 if (!try_module_get(attr->attr.owner))
134 if ((file->f_mode & FMODE_WRITE) && !(attr->write || attr->mmap))
136 if ((file->f_mode & FMODE_READ) && !(attr->read || attr->mmap))
140 file->private_data = kmalloc(PAGE_SIZE, GFP_KERNEL);
141 if (!file->private_data)
148 module_put(attr->attr.owner);
155 static int release(struct inode * inode, struct file * file)
157 struct kobject * kobj = to_kobj(file->f_path.dentry->d_parent);
158 struct bin_attribute * attr = to_bin_attr(file->f_path.dentry);
159 u8 * buffer = file->private_data;
162 module_put(attr->attr.owner);
167 const struct file_operations bin_fops = {
171 .llseek = generic_file_llseek,
177 * sysfs_create_bin_file - create binary file for object.
179 * @attr: attribute descriptor.
182 int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr)
184 BUG_ON(!kobj || !kobj->dentry || !attr);
186 return sysfs_add_file(kobj->dentry, &attr->attr, SYSFS_KOBJ_BIN_ATTR);
191 * sysfs_remove_bin_file - remove binary file for object.
193 * @attr: attribute descriptor.
196 void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr)
198 if (sysfs_hash_and_remove(kobj->dentry, attr->attr.name) < 0) {
199 printk(KERN_ERR "%s: "
200 "bad dentry or inode or no such file: \"%s\"\n",
201 __FUNCTION__, attr->attr.name);
206 EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
207 EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);