blob: d31d7b7d54261ada9e3ed3844654dcc8b817d3a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * fs/sysfs/bin.c - sysfs binary file implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Matthew Wilcox
6 * Copyright (c) 2004 Silicon Graphics, Inc.
Tejun Heo6d66f5c2007-09-20 17:31:38 +09007 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 *
10 * This file is released under the GPLv2.
11 *
12 * Please see Documentation/filesystems/sysfs.txt for more information.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#undef DEBUG
16
17#include <linux/errno.h>
18#include <linux/fs.h>
Randy.Dunlap995982c2006-07-10 23:05:25 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kobject.h>
21#include <linux/module.h>
22#include <linux/slab.h>
Dave Young869512a2007-07-26 14:53:53 +000023#include <linux/mutex.h>
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -080024#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/uaccess.h>
27
28#include "sysfs.h"
29
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -080030/*
31 * There's one bin_buffer for each open file.
32 *
33 * filp->private_data points to bin_buffer and
34 * sysfs_dirent->s_bin_attr.buffers points to a the bin_buffer s
35 * sysfs_dirent->s_bin_attr.buffers is protected by sysfs_bin_lock
36 */
37static DEFINE_MUTEX(sysfs_bin_lock);
38
Tejun Heoeb361652007-06-14 03:45:16 +090039struct bin_buffer {
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -080040 struct mutex mutex;
41 void *buffer;
42 int mmapped;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040043 const struct vm_operations_struct *vm_ops;
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -080044 struct file *file;
45 struct hlist_node list;
Tejun Heoeb361652007-06-14 03:45:16 +090046};
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static int
Chris Wright2c3c8be2010-05-12 18:28:57 -070049fill_read(struct file *file, char *buffer, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Chris Wright2c3c8be2010-05-12 18:28:57 -070051 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
Tejun Heob1fc3d62007-09-20 16:05:11 +090052 struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
53 struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
Tejun Heo0ab66082007-06-14 03:45:16 +090054 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Tejun Heo0ab66082007-06-14 03:45:16 +090056 /* need attr_sd for attr, its parent for kobj */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -080057 if (!sysfs_get_active(attr_sd))
Tejun Heo0ab66082007-06-14 03:45:16 +090058 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Tejun Heo0ab66082007-06-14 03:45:16 +090060 rc = -EIO;
61 if (attr->read)
Chris Wright2c3c8be2010-05-12 18:28:57 -070062 rc = attr->read(file, kobj, attr, buffer, off, count);
Tejun Heo0ab66082007-06-14 03:45:16 +090063
Eric W. Biedermane72ceb82010-02-11 15:18:38 -080064 sysfs_put_active(attr_sd);
Tejun Heo0ab66082007-06-14 03:45:16 +090065
66 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69static ssize_t
Tejun Heo93e3cd82007-06-14 03:45:13 +090070read(struct file *file, char __user *userbuf, size_t bytes, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Tejun Heoeb361652007-06-14 03:45:16 +090072 struct bin_buffer *bb = file->private_data;
Chris Wright2c3c8be2010-05-12 18:28:57 -070073 int size = file->f_path.dentry->d_inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 loff_t offs = *off;
Tejun Heo93e3cd82007-06-14 03:45:13 +090075 int count = min_t(size_t, bytes, PAGE_SIZE);
Nick Pigginb31ca3f2008-09-12 11:24:11 +020076 char *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Greg Kroah-Hartman4503efd2009-01-20 15:51:16 -080078 if (!bytes)
79 return 0;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (size) {
82 if (offs > size)
83 return 0;
84 if (offs + count > size)
85 count = size - offs;
86 }
87
Nick Pigginb31ca3f2008-09-12 11:24:11 +020088 temp = kmalloc(count, GFP_KERNEL);
89 if (!temp)
90 return -ENOMEM;
91
Tejun Heoeb361652007-06-14 03:45:16 +090092 mutex_lock(&bb->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Chris Wright2c3c8be2010-05-12 18:28:57 -070094 count = fill_read(file, bb->buffer, offs, count);
Nick Pigginb31ca3f2008-09-12 11:24:11 +020095 if (count < 0) {
96 mutex_unlock(&bb->mutex);
97 goto out_free;
98 }
Tejun Heoeb361652007-06-14 03:45:16 +090099
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200100 memcpy(temp, bb->buffer, count);
101
102 mutex_unlock(&bb->mutex);
103
104 if (copy_to_user(userbuf, temp, count)) {
Tejun Heoeb361652007-06-14 03:45:16 +0900105 count = -EFAULT;
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200106 goto out_free;
Tejun Heoeb361652007-06-14 03:45:16 +0900107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Tejun Heo93e3cd82007-06-14 03:45:13 +0900109 pr_debug("offs = %lld, *off = %lld, count = %d\n", offs, *off, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 *off = offs + count;
112
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200113 out_free:
114 kfree(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return count;
116}
117
118static int
Chris Wright2c3c8be2010-05-12 18:28:57 -0700119flush_write(struct file *file, char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Chris Wright2c3c8be2010-05-12 18:28:57 -0700121 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900122 struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
123 struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
Tejun Heo0ab66082007-06-14 03:45:16 +0900124 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Tejun Heo0ab66082007-06-14 03:45:16 +0900126 /* need attr_sd for attr, its parent for kobj */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800127 if (!sysfs_get_active(attr_sd))
Tejun Heo0ab66082007-06-14 03:45:16 +0900128 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Tejun Heo0ab66082007-06-14 03:45:16 +0900130 rc = -EIO;
131 if (attr->write)
Chris Wright2c3c8be2010-05-12 18:28:57 -0700132 rc = attr->write(file, kobj, attr, buffer, offset, count);
Tejun Heo0ab66082007-06-14 03:45:16 +0900133
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800134 sysfs_put_active(attr_sd);
Tejun Heo0ab66082007-06-14 03:45:16 +0900135
136 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Tejun Heo93e3cd82007-06-14 03:45:13 +0900139static ssize_t write(struct file *file, const char __user *userbuf,
140 size_t bytes, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Tejun Heoeb361652007-06-14 03:45:16 +0900142 struct bin_buffer *bb = file->private_data;
Chris Wright2c3c8be2010-05-12 18:28:57 -0700143 int size = file->f_path.dentry->d_inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 loff_t offs = *off;
Tejun Heo93e3cd82007-06-14 03:45:13 +0900145 int count = min_t(size_t, bytes, PAGE_SIZE);
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200146 char *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Greg Kroah-Hartman4503efd2009-01-20 15:51:16 -0800148 if (!bytes)
149 return 0;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (size) {
152 if (offs > size)
153 return 0;
154 if (offs + count > size)
155 count = size - offs;
156 }
157
Li Zefan1c8542c2009-04-08 15:07:30 +0800158 temp = memdup_user(userbuf, count);
159 if (IS_ERR(temp))
160 return PTR_ERR(temp);
Tejun Heoeb361652007-06-14 03:45:16 +0900161
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200162 mutex_lock(&bb->mutex);
163
164 memcpy(bb->buffer, temp, count);
165
Chris Wright2c3c8be2010-05-12 18:28:57 -0700166 count = flush_write(file, bb->buffer, offs, count);
Nick Pigginb31ca3f2008-09-12 11:24:11 +0200167 mutex_unlock(&bb->mutex);
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (count > 0)
170 *off = offs + count;
Tejun Heoeb361652007-06-14 03:45:16 +0900171
Catalin Marinasd5ce5b42009-07-08 11:17:34 +0100172 kfree(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return count;
174}
175
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800176static void bin_vma_open(struct vm_area_struct *vma)
177{
178 struct file *file = vma->vm_file;
179 struct bin_buffer *bb = file->private_data;
180 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
181
182 if (!bb->vm_ops || !bb->vm_ops->open)
183 return;
184
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800185 if (!sysfs_get_active(attr_sd))
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800186 return;
187
188 bb->vm_ops->open(vma);
189
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800190 sysfs_put_active(attr_sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800191}
192
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800193static int bin_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
194{
195 struct file *file = vma->vm_file;
196 struct bin_buffer *bb = file->private_data;
197 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
198 int ret;
199
200 if (!bb->vm_ops || !bb->vm_ops->fault)
201 return VM_FAULT_SIGBUS;
202
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800203 if (!sysfs_get_active(attr_sd))
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800204 return VM_FAULT_SIGBUS;
205
206 ret = bb->vm_ops->fault(vma, vmf);
207
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800208 sysfs_put_active(attr_sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800209 return ret;
210}
211
Hugh Dickins851a0392009-03-31 15:23:24 -0700212static int bin_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800213{
214 struct file *file = vma->vm_file;
215 struct bin_buffer *bb = file->private_data;
216 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
217 int ret;
218
Hugh Dickins095160a2009-03-23 01:41:27 +0000219 if (!bb->vm_ops)
Hugh Dickins851a0392009-03-31 15:23:24 -0700220 return VM_FAULT_SIGBUS;
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800221
Hugh Dickins095160a2009-03-23 01:41:27 +0000222 if (!bb->vm_ops->page_mkwrite)
223 return 0;
224
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800225 if (!sysfs_get_active(attr_sd))
Hugh Dickins851a0392009-03-31 15:23:24 -0700226 return VM_FAULT_SIGBUS;
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800227
Hugh Dickins851a0392009-03-31 15:23:24 -0700228 ret = bb->vm_ops->page_mkwrite(vma, vmf);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800229
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800230 sysfs_put_active(attr_sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800231 return ret;
232}
233
234static int bin_access(struct vm_area_struct *vma, unsigned long addr,
235 void *buf, int len, int write)
236{
237 struct file *file = vma->vm_file;
238 struct bin_buffer *bb = file->private_data;
239 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
240 int ret;
241
242 if (!bb->vm_ops || !bb->vm_ops->access)
243 return -EINVAL;
244
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800245 if (!sysfs_get_active(attr_sd))
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800246 return -EINVAL;
247
248 ret = bb->vm_ops->access(vma, addr, buf, len, write);
249
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800250 sysfs_put_active(attr_sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800251 return ret;
252}
253
Hugh Dickins095160a2009-03-23 01:41:27 +0000254#ifdef CONFIG_NUMA
255static int bin_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
256{
257 struct file *file = vma->vm_file;
258 struct bin_buffer *bb = file->private_data;
259 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
260 int ret;
261
262 if (!bb->vm_ops || !bb->vm_ops->set_policy)
263 return 0;
264
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800265 if (!sysfs_get_active(attr_sd))
Hugh Dickins095160a2009-03-23 01:41:27 +0000266 return -EINVAL;
267
268 ret = bb->vm_ops->set_policy(vma, new);
269
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800270 sysfs_put_active(attr_sd);
Hugh Dickins095160a2009-03-23 01:41:27 +0000271 return ret;
272}
273
274static struct mempolicy *bin_get_policy(struct vm_area_struct *vma,
275 unsigned long addr)
276{
277 struct file *file = vma->vm_file;
278 struct bin_buffer *bb = file->private_data;
279 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
280 struct mempolicy *pol;
281
282 if (!bb->vm_ops || !bb->vm_ops->get_policy)
283 return vma->vm_policy;
284
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800285 if (!sysfs_get_active(attr_sd))
Hugh Dickins095160a2009-03-23 01:41:27 +0000286 return vma->vm_policy;
287
288 pol = bb->vm_ops->get_policy(vma, addr);
289
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800290 sysfs_put_active(attr_sd);
Hugh Dickins095160a2009-03-23 01:41:27 +0000291 return pol;
292}
293
294static int bin_migrate(struct vm_area_struct *vma, const nodemask_t *from,
295 const nodemask_t *to, unsigned long flags)
296{
297 struct file *file = vma->vm_file;
298 struct bin_buffer *bb = file->private_data;
299 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
300 int ret;
301
302 if (!bb->vm_ops || !bb->vm_ops->migrate)
303 return 0;
304
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800305 if (!sysfs_get_active(attr_sd))
Hugh Dickins095160a2009-03-23 01:41:27 +0000306 return 0;
307
308 ret = bb->vm_ops->migrate(vma, from, to, flags);
309
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800310 sysfs_put_active(attr_sd);
Hugh Dickins095160a2009-03-23 01:41:27 +0000311 return ret;
312}
313#endif
314
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400315static const struct vm_operations_struct bin_vm_ops = {
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800316 .open = bin_vma_open,
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800317 .fault = bin_fault,
318 .page_mkwrite = bin_page_mkwrite,
319 .access = bin_access,
Hugh Dickins095160a2009-03-23 01:41:27 +0000320#ifdef CONFIG_NUMA
321 .set_policy = bin_set_policy,
322 .get_policy = bin_get_policy,
323 .migrate = bin_migrate,
324#endif
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800325};
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static int mmap(struct file *file, struct vm_area_struct *vma)
328{
Tejun Heoeb361652007-06-14 03:45:16 +0900329 struct bin_buffer *bb = file->private_data;
Tejun Heo3e519032007-06-14 03:45:15 +0900330 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900331 struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
332 struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
Tejun Heoeb361652007-06-14 03:45:16 +0900333 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Tejun Heoeb361652007-06-14 03:45:16 +0900335 mutex_lock(&bb->mutex);
Tejun Heo0ab66082007-06-14 03:45:16 +0900336
337 /* need attr_sd for attr, its parent for kobj */
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800338 rc = -ENODEV;
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800339 if (!sysfs_get_active(attr_sd))
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800340 goto out_unlock;
Tejun Heo0ab66082007-06-14 03:45:16 +0900341
342 rc = -EINVAL;
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800343 if (!attr->mmap)
344 goto out_put;
Tejun Heo0ab66082007-06-14 03:45:16 +0900345
Chris Wright2c3c8be2010-05-12 18:28:57 -0700346 rc = attr->mmap(file, kobj, attr, vma);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800347 if (rc)
348 goto out_put;
Tejun Heo0ab66082007-06-14 03:45:16 +0900349
Hugh Dickins095160a2009-03-23 01:41:27 +0000350 /*
351 * PowerPC's pci_mmap of legacy_mem uses shmem_zero_setup()
352 * to satisfy versions of X which crash if the mmap fails: that
353 * substitutes a new vm_file, and we don't then want bin_vm_ops.
354 */
355 if (vma->vm_file != file)
356 goto out_put;
357
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800358 rc = -EINVAL;
359 if (bb->mmapped && bb->vm_ops != vma->vm_ops)
360 goto out_put;
361
Eric W. Biedermana6849fa2010-09-20 00:56:27 -0700362 /*
363 * It is not possible to successfully wrap close.
364 * So error if someone is trying to use close.
365 */
366 rc = -EINVAL;
367 if (vma->vm_ops && vma->vm_ops->close)
368 goto out_put;
369
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800370 rc = 0;
371 bb->mmapped = 1;
Hugh Dickins095160a2009-03-23 01:41:27 +0000372 bb->vm_ops = vma->vm_ops;
373 vma->vm_ops = &bin_vm_ops;
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800374out_put:
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800375 sysfs_put_active(attr_sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800376out_unlock:
Tejun Heoeb361652007-06-14 03:45:16 +0900377 mutex_unlock(&bb->mutex);
378
379 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
382static int open(struct inode * inode, struct file * file)
383{
Tejun Heo3e519032007-06-14 03:45:15 +0900384 struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900385 struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
Tejun Heoeb361652007-06-14 03:45:16 +0900386 struct bin_buffer *bb = NULL;
Tejun Heo0ab66082007-06-14 03:45:16 +0900387 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Tejun Heo078ce642007-09-20 16:05:10 +0900389 /* binary file operations requires both @sd and its parent */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800390 if (!sysfs_get_active(attr_sd))
Tejun Heo0ab66082007-06-14 03:45:16 +0900391 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 error = -EACCES;
394 if ((file->f_mode & FMODE_WRITE) && !(attr->write || attr->mmap))
Tejun Heo7b595752007-06-14 03:45:17 +0900395 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if ((file->f_mode & FMODE_READ) && !(attr->read || attr->mmap))
Tejun Heo7b595752007-06-14 03:45:17 +0900397 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 error = -ENOMEM;
Tejun Heoeb361652007-06-14 03:45:16 +0900400 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
401 if (!bb)
Tejun Heo7b595752007-06-14 03:45:17 +0900402 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Tejun Heoeb361652007-06-14 03:45:16 +0900404 bb->buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
405 if (!bb->buffer)
Tejun Heo7b595752007-06-14 03:45:17 +0900406 goto err_out;
Tejun Heoeb361652007-06-14 03:45:16 +0900407
408 mutex_init(&bb->mutex);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800409 bb->file = file;
Tejun Heoeb361652007-06-14 03:45:16 +0900410 file->private_data = bb;
411
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800412 mutex_lock(&sysfs_bin_lock);
413 hlist_add_head(&bb->list, &attr_sd->s_bin_attr.buffers);
414 mutex_unlock(&sysfs_bin_lock);
415
Tejun Heo078ce642007-09-20 16:05:10 +0900416 /* open succeeded, put active references */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800417 sysfs_put_active(attr_sd);
Tejun Heo0ab66082007-06-14 03:45:16 +0900418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Tejun Heo7b595752007-06-14 03:45:17 +0900420 err_out:
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800421 sysfs_put_active(attr_sd);
Tejun Heo0ab66082007-06-14 03:45:16 +0900422 kfree(bb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return error;
424}
425
426static int release(struct inode * inode, struct file * file)
427{
Tejun Heoeb361652007-06-14 03:45:16 +0900428 struct bin_buffer *bb = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800430 mutex_lock(&sysfs_bin_lock);
431 hlist_del(&bb->list);
432 mutex_unlock(&sysfs_bin_lock);
433
Tejun Heoeb361652007-06-14 03:45:16 +0900434 kfree(bb->buffer);
435 kfree(bb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800439const struct file_operations bin_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 .read = read,
441 .write = write,
442 .mmap = mmap,
443 .llseek = generic_file_llseek,
444 .open = open,
445 .release = release,
446};
447
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800448
449void unmap_bin_file(struct sysfs_dirent *attr_sd)
450{
451 struct bin_buffer *bb;
452 struct hlist_node *tmp;
453
454 if (sysfs_type(attr_sd) != SYSFS_KOBJ_BIN_ATTR)
455 return;
456
457 mutex_lock(&sysfs_bin_lock);
458
459 hlist_for_each_entry(bb, tmp, &attr_sd->s_bin_attr.buffers, list) {
460 struct inode *inode = bb->file->f_path.dentry->d_inode;
461
462 unmap_mapping_range(inode->i_mapping, 0, 0, 1);
463 }
464
465 mutex_unlock(&sysfs_bin_lock);
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/**
469 * sysfs_create_bin_file - create binary file for object.
470 * @kobj: object.
471 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
473
Phil Carmody66ecb922009-12-18 15:34:20 +0200474int sysfs_create_bin_file(struct kobject *kobj,
475 const struct bin_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Tejun Heo608e2662007-06-14 04:27:22 +0900477 BUG_ON(!kobj || !kobj->sd || !attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Tejun Heo608e2662007-06-14 04:27:22 +0900479 return sysfs_add_file(kobj->sd, &attr->attr, SYSFS_KOBJ_BIN_ATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482
483/**
484 * sysfs_remove_bin_file - remove binary file for object.
485 * @kobj: object.
486 * @attr: attribute descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
488
Phil Carmody66ecb922009-12-18 15:34:20 +0200489void sysfs_remove_bin_file(struct kobject *kobj,
490 const struct bin_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700492 sysfs_hash_and_remove(kobj->sd, NULL, attr->attr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
496EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);