blob: 67a0d5030c96d3f0cc8c5a97311a25a5e786fe8a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * bin.c - binary file operations for sysfs.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Matthew Wilcox
6 * Copyright (c) 2004 Silicon Graphics, Inc.
7 */
8
9#undef DEBUG
10
11#include <linux/errno.h>
12#include <linux/fs.h>
Randy.Dunlap995982c2006-07-10 23:05:25 -070013#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kobject.h>
15#include <linux/module.h>
16#include <linux/slab.h>
17
18#include <asm/uaccess.h>
Oliver Neukum94bebf42006-12-20 10:52:44 +010019#include <asm/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "sysfs.h"
22
23static int
24fill_read(struct dentry *dentry, char *buffer, loff_t off, size_t count)
25{
Tejun Heo3e519032007-06-14 03:45:15 +090026 struct sysfs_dirent *attr_sd = dentry->d_fsdata;
27 struct bin_attribute *attr = attr_sd->s_elem.bin_attr.bin_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct kobject * kobj = to_kobj(dentry->d_parent);
29
30 if (!attr->read)
Dmitry Torokhovc76d0ab2005-04-29 01:22:00 -050031 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 return attr->read(kobj, buffer, off, count);
34}
35
36static ssize_t
Tejun Heo93e3cd82007-06-14 03:45:13 +090037read(struct file *file, char __user *userbuf, size_t bytes, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 char *buffer = file->private_data;
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -080040 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 int size = dentry->d_inode->i_size;
42 loff_t offs = *off;
Tejun Heo93e3cd82007-06-14 03:45:13 +090043 int count = min_t(size_t, bytes, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if (size) {
46 if (offs > size)
47 return 0;
48 if (offs + count > size)
49 count = size - offs;
50 }
51
Tejun Heo93e3cd82007-06-14 03:45:13 +090052 count = fill_read(dentry, buffer, offs, count);
53 if (count < 0)
54 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 if (copy_to_user(userbuf, buffer, count))
57 return -EFAULT;
58
Tejun Heo93e3cd82007-06-14 03:45:13 +090059 pr_debug("offs = %lld, *off = %lld, count = %d\n", offs, *off, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 *off = offs + count;
62
63 return count;
64}
65
66static int
67flush_write(struct dentry *dentry, char *buffer, loff_t offset, size_t count)
68{
Tejun Heo3e519032007-06-14 03:45:15 +090069 struct sysfs_dirent *attr_sd = dentry->d_fsdata;
70 struct bin_attribute *attr = attr_sd->s_elem.bin_attr.bin_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct kobject *kobj = to_kobj(dentry->d_parent);
72
73 if (!attr->write)
Dmitry Torokhovc76d0ab2005-04-29 01:22:00 -050074 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 return attr->write(kobj, buffer, offset, count);
77}
78
Tejun Heo93e3cd82007-06-14 03:45:13 +090079static ssize_t write(struct file *file, const char __user *userbuf,
80 size_t bytes, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 char *buffer = file->private_data;
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -080083 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 int size = dentry->d_inode->i_size;
85 loff_t offs = *off;
Tejun Heo93e3cd82007-06-14 03:45:13 +090086 int count = min_t(size_t, bytes, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (size) {
89 if (offs > size)
90 return 0;
91 if (offs + count > size)
92 count = size - offs;
93 }
94
95 if (copy_from_user(buffer, userbuf, count))
96 return -EFAULT;
97
98 count = flush_write(dentry, buffer, offs, count);
99 if (count > 0)
100 *off = offs + count;
101 return count;
102}
103
104static int mmap(struct file *file, struct vm_area_struct *vma)
105{
Tejun Heo3e519032007-06-14 03:45:15 +0900106 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
107 struct bin_attribute *attr = attr_sd->s_elem.bin_attr.bin_attr;
108 struct kobject *kobj = to_kobj(file->f_path.dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (!attr->mmap)
111 return -EINVAL;
112
113 return attr->mmap(kobj, attr, vma);
114}
115
116static int open(struct inode * inode, struct file * file)
117{
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800118 struct kobject *kobj = sysfs_get_kobject(file->f_path.dentry->d_parent);
Tejun Heo3e519032007-06-14 03:45:15 +0900119 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
120 struct bin_attribute *attr = attr_sd->s_elem.bin_attr.bin_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 int error = -EINVAL;
122
123 if (!kobj || !attr)
124 goto Done;
125
126 /* Grab the module reference for this attribute if we have one */
127 error = -ENODEV;
128 if (!try_module_get(attr->attr.owner))
129 goto Done;
130
131 error = -EACCES;
132 if ((file->f_mode & FMODE_WRITE) && !(attr->write || attr->mmap))
133 goto Error;
134 if ((file->f_mode & FMODE_READ) && !(attr->read || attr->mmap))
135 goto Error;
136
137 error = -ENOMEM;
138 file->private_data = kmalloc(PAGE_SIZE, GFP_KERNEL);
139 if (!file->private_data)
140 goto Error;
141
142 error = 0;
143 goto Done;
144
145 Error:
146 module_put(attr->attr.owner);
147 Done:
Mariusz Kozlowskif7506532007-01-02 13:41:10 +0100148 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 kobject_put(kobj);
150 return error;
151}
152
153static int release(struct inode * inode, struct file * file)
154{
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -0800155 struct kobject * kobj = to_kobj(file->f_path.dentry->d_parent);
Tejun Heo3e519032007-06-14 03:45:15 +0900156 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
157 struct bin_attribute *attr = attr_sd->s_elem.bin_attr.bin_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 u8 * buffer = file->private_data;
159
Mariusz Kozlowskif7506532007-01-02 13:41:10 +0100160 kobject_put(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 module_put(attr->attr.owner);
162 kfree(buffer);
163 return 0;
164}
165
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800166const struct file_operations bin_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .read = read,
168 .write = write,
169 .mmap = mmap,
170 .llseek = generic_file_llseek,
171 .open = open,
172 .release = release,
173};
174
175/**
176 * sysfs_create_bin_file - create binary file for object.
177 * @kobj: object.
178 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
180
181int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr)
182{
183 BUG_ON(!kobj || !kobj->dentry || !attr);
184
185 return sysfs_add_file(kobj->dentry, &attr->attr, SYSFS_KOBJ_BIN_ATTR);
186}
187
188
189/**
190 * sysfs_remove_bin_file - remove binary file for object.
191 * @kobj: object.
192 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
194
Randy.Dunlap995982c2006-07-10 23:05:25 -0700195void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Randy.Dunlap995982c2006-07-10 23:05:25 -0700197 if (sysfs_hash_and_remove(kobj->dentry, attr->attr.name) < 0) {
198 printk(KERN_ERR "%s: "
199 "bad dentry or inode or no such file: \"%s\"\n",
200 __FUNCTION__, attr->attr.name);
201 dump_stack();
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
206EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);