[PATCH] Generic HID layer - hiddev
[linux-2.6-block.git] / fs / sysfs / file.c
CommitLineData
1da177e4
LT
1/*
2 * file.c - operations for regular (text) files.
3 */
4
5#include <linux/module.h>
0eeca283 6#include <linux/fsnotify.h>
1da177e4 7#include <linux/kobject.h>
5f45f1a7 8#include <linux/namei.h>
4508a7a7 9#include <linux/poll.h>
1da177e4
LT
10#include <asm/uaccess.h>
11#include <asm/semaphore.h>
12
13#include "sysfs.h"
14
15#define to_subsys(k) container_of(k,struct subsystem,kset.kobj)
16#define to_sattr(a) container_of(a,struct subsys_attribute,attr)
17
3d41088f 18/*
1da177e4
LT
19 * 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{
26 struct subsystem * s = to_subsys(kobj);
27 struct subsys_attribute * sattr = to_sattr(attr);
c76d0abd 28 ssize_t ret = -EIO;
1da177e4
LT
29
30 if (sattr->show)
31 ret = sattr->show(s,page);
32 return ret;
33}
34
35static ssize_t
36subsys_attr_store(struct kobject * kobj, struct attribute * attr,
37 const char * page, size_t count)
38{
39 struct subsystem * s = to_subsys(kobj);
40 struct subsys_attribute * sattr = to_sattr(attr);
c76d0abd 41 ssize_t ret = -EIO;
1da177e4
LT
42
43 if (sattr->store)
44 ret = sattr->store(s,page,count);
45 return ret;
46}
47
48static struct sysfs_ops subsys_sysfs_ops = {
49 .show = subsys_attr_show,
50 .store = subsys_attr_store,
51};
52
53
54struct sysfs_buffer {
55 size_t count;
56 loff_t pos;
57 char * page;
58 struct sysfs_ops * ops;
59 struct semaphore sem;
60 int needs_read_fill;
4508a7a7 61 int event;
1da177e4
LT
62};
63
64
65/**
66 * fill_read_buffer - allocate and fill buffer from object.
67 * @dentry: dentry pointer.
68 * @buffer: data buffer for file.
69 *
70 * Allocate @buffer->page, if it hasn't been already, then call the
71 * kobject's show() method to fill the buffer with this attribute's
72 * data.
73 * This is called only once, on the file's first read.
74 */
75static int fill_read_buffer(struct dentry * dentry, struct sysfs_buffer * buffer)
76{
4508a7a7 77 struct sysfs_dirent * sd = dentry->d_fsdata;
1da177e4
LT
78 struct attribute * attr = to_attr(dentry);
79 struct kobject * kobj = to_kobj(dentry->d_parent);
80 struct sysfs_ops * ops = buffer->ops;
81 int ret = 0;
82 ssize_t count;
83
84 if (!buffer->page)
85 buffer->page = (char *) get_zeroed_page(GFP_KERNEL);
86 if (!buffer->page)
87 return -ENOMEM;
88
4508a7a7 89 buffer->event = atomic_read(&sd->s_event);
1da177e4
LT
90 count = ops->show(kobj,attr,buffer->page);
91 buffer->needs_read_fill = 0;
92 BUG_ON(count > (ssize_t)PAGE_SIZE);
93 if (count >= 0)
94 buffer->count = count;
95 else
96 ret = count;
97 return ret;
98}
99
100
101/**
102 * flush_read_buffer - push buffer to userspace.
103 * @buffer: data buffer for file.
67be2dd1 104 * @buf: user-passed buffer.
1da177e4
LT
105 * @count: number of bytes requested.
106 * @ppos: file position.
107 *
108 * Copy the buffer we filled in fill_read_buffer() to userspace.
109 * This is done at the reader's leisure, copying and advancing
110 * the amount they specify each time.
111 * This may be called continuously until the buffer is empty.
112 */
113static int flush_read_buffer(struct sysfs_buffer * buffer, char __user * buf,
114 size_t count, loff_t * ppos)
115{
116 int error;
117
118 if (*ppos > buffer->count)
119 return 0;
120
121 if (count > (buffer->count - *ppos))
122 count = buffer->count - *ppos;
123
124 error = copy_to_user(buf,buffer->page + *ppos,count);
125 if (!error)
126 *ppos += count;
127 return error ? -EFAULT : count;
128}
129
130/**
131 * sysfs_read_file - read an attribute.
132 * @file: file pointer.
133 * @buf: buffer to fill.
134 * @count: number of bytes to read.
135 * @ppos: starting offset in file.
136 *
137 * Userspace wants to read an attribute file. The attribute descriptor
138 * is in the file's ->d_fsdata. The target object is in the directory's
139 * ->d_fsdata.
140 *
141 * We call fill_read_buffer() to allocate and fill the buffer from the
142 * object's show() method exactly once (if the read is happening from
143 * the beginning of the file). That should fill the entire buffer with
144 * all the data the object has to offer for that attribute.
145 * We then call flush_read_buffer() to copy the buffer to userspace
146 * in the increments specified.
147 */
148
149static ssize_t
150sysfs_read_file(struct file *file, char __user *buf, size_t count, loff_t *ppos)
151{
152 struct sysfs_buffer * buffer = file->private_data;
153 ssize_t retval = 0;
154
155 down(&buffer->sem);
156 if (buffer->needs_read_fill) {
f427f5d5 157 if ((retval = fill_read_buffer(file->f_path.dentry,buffer)))
1da177e4
LT
158 goto out;
159 }
5c1fdf41
ZB
160 pr_debug("%s: count = %zd, ppos = %lld, buf = %s\n",
161 __FUNCTION__, count, *ppos, buffer->page);
1da177e4
LT
162 retval = flush_read_buffer(buffer,buf,count,ppos);
163out:
164 up(&buffer->sem);
165 return retval;
166}
167
168
169/**
170 * fill_write_buffer - copy buffer from userspace.
171 * @buffer: data buffer for file.
67be2dd1 172 * @buf: data from user.
1da177e4
LT
173 * @count: number of bytes in @userbuf.
174 *
175 * Allocate @buffer->page if it hasn't been already, then
176 * copy the user-supplied buffer into it.
177 */
178
179static int
180fill_write_buffer(struct sysfs_buffer * buffer, const char __user * buf, size_t count)
181{
182 int error;
183
184 if (!buffer->page)
185 buffer->page = (char *)get_zeroed_page(GFP_KERNEL);
186 if (!buffer->page)
187 return -ENOMEM;
188
189 if (count >= PAGE_SIZE)
6e0dd741 190 count = PAGE_SIZE - 1;
1da177e4
LT
191 error = copy_from_user(buffer->page,buf,count);
192 buffer->needs_read_fill = 1;
035ed7a4
TM
193 /* if buf is assumed to contain a string, terminate it by \0,
194 so e.g. sscanf() can scan the string easily */
195 buffer->page[count] = 0;
1da177e4
LT
196 return error ? -EFAULT : count;
197}
198
199
200/**
201 * flush_write_buffer - push buffer to kobject.
3d41088f 202 * @dentry: dentry to the attribute
1da177e4 203 * @buffer: data buffer for file.
3d41088f 204 * @count: number of bytes
1da177e4
LT
205 *
206 * Get the correct pointers for the kobject and the attribute we're
207 * dealing with, then call the store() method for the attribute,
208 * passing the buffer that we acquired in fill_write_buffer().
209 */
210
211static int
212flush_write_buffer(struct dentry * dentry, struct sysfs_buffer * buffer, size_t count)
213{
214 struct attribute * attr = to_attr(dentry);
215 struct kobject * kobj = to_kobj(dentry->d_parent);
216 struct sysfs_ops * ops = buffer->ops;
217
218 return ops->store(kobj,attr,buffer->page,count);
219}
220
221
222/**
223 * sysfs_write_file - write an attribute.
224 * @file: file pointer
225 * @buf: data to write
226 * @count: number of bytes
227 * @ppos: starting offset
228 *
229 * Similar to sysfs_read_file(), though working in the opposite direction.
230 * We allocate and fill the data from the user in fill_write_buffer(),
231 * then push it to the kobject in flush_write_buffer().
232 * There is no easy way for us to know if userspace is only doing a partial
233 * write, so we don't support them. We expect the entire buffer to come
234 * on the first write.
235 * Hint: if you're writing a value, first read the file, modify only the
236 * the value you're changing, then write entire buffer back.
237 */
238
239static ssize_t
240sysfs_write_file(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
241{
242 struct sysfs_buffer * buffer = file->private_data;
243 ssize_t len;
244
245 down(&buffer->sem);
246 len = fill_write_buffer(buffer, buf, count);
247 if (len > 0)
f427f5d5 248 len = flush_write_buffer(file->f_path.dentry, buffer, len);
1da177e4
LT
249 if (len > 0)
250 *ppos += len;
251 up(&buffer->sem);
252 return len;
253}
254
255static int check_perm(struct inode * inode, struct file * file)
256{
f427f5d5
JJS
257 struct kobject *kobj = sysfs_get_kobject(file->f_path.dentry->d_parent);
258 struct attribute * attr = to_attr(file->f_path.dentry);
1da177e4
LT
259 struct sysfs_buffer * buffer;
260 struct sysfs_ops * ops = NULL;
261 int error = 0;
262
263 if (!kobj || !attr)
264 goto Einval;
265
266 /* Grab the module reference for this attribute if we have one */
267 if (!try_module_get(attr->owner)) {
268 error = -ENODEV;
269 goto Done;
270 }
271
272 /* if the kobject has no ktype, then we assume that it is a subsystem
273 * itself, and use ops for it.
274 */
275 if (kobj->kset && kobj->kset->ktype)
276 ops = kobj->kset->ktype->sysfs_ops;
277 else if (kobj->ktype)
278 ops = kobj->ktype->sysfs_ops;
279 else
280 ops = &subsys_sysfs_ops;
281
282 /* No sysfs operations, either from having no subsystem,
283 * or the subsystem have no operations.
284 */
285 if (!ops)
286 goto Eaccess;
287
288 /* File needs write support.
289 * The inode's perms must say it's ok,
290 * and we must have a store method.
291 */
292 if (file->f_mode & FMODE_WRITE) {
293
294 if (!(inode->i_mode & S_IWUGO) || !ops->store)
295 goto Eaccess;
296
297 }
298
299 /* File needs read support.
300 * The inode's perms must say it's ok, and we there
301 * must be a show method for it.
302 */
303 if (file->f_mode & FMODE_READ) {
304 if (!(inode->i_mode & S_IRUGO) || !ops->show)
305 goto Eaccess;
306 }
307
308 /* No error? Great, allocate a buffer for the file, and store it
309 * it in file->private_data for easy access.
310 */
58d49283 311 buffer = kzalloc(sizeof(struct sysfs_buffer), GFP_KERNEL);
1da177e4 312 if (buffer) {
1da177e4
LT
313 init_MUTEX(&buffer->sem);
314 buffer->needs_read_fill = 1;
315 buffer->ops = ops;
316 file->private_data = buffer;
317 } else
318 error = -ENOMEM;
319 goto Done;
320
321 Einval:
322 error = -EINVAL;
323 goto Done;
324 Eaccess:
325 error = -EACCES;
326 module_put(attr->owner);
327 Done:
328 if (error && kobj)
329 kobject_put(kobj);
330 return error;
331}
332
333static int sysfs_open_file(struct inode * inode, struct file * filp)
334{
335 return check_perm(inode,filp);
336}
337
338static int sysfs_release(struct inode * inode, struct file * filp)
339{
f427f5d5
JJS
340 struct kobject * kobj = to_kobj(filp->f_path.dentry->d_parent);
341 struct attribute * attr = to_attr(filp->f_path.dentry);
1da177e4
LT
342 struct module * owner = attr->owner;
343 struct sysfs_buffer * buffer = filp->private_data;
344
345 if (kobj)
346 kobject_put(kobj);
347 /* After this point, attr should not be accessed. */
348 module_put(owner);
349
350 if (buffer) {
351 if (buffer->page)
352 free_page((unsigned long)buffer->page);
353 kfree(buffer);
354 }
355 return 0;
356}
357
4508a7a7
N
358/* Sysfs attribute files are pollable. The idea is that you read
359 * the content and then you use 'poll' or 'select' to wait for
360 * the content to change. When the content changes (assuming the
361 * manager for the kobject supports notification), poll will
362 * return POLLERR|POLLPRI, and select will return the fd whether
363 * it is waiting for read, write, or exceptions.
364 * Once poll/select indicates that the value has changed, you
365 * need to close and re-open the file, as simply seeking and reading
366 * again will not get new data, or reset the state of 'poll'.
367 * Reminder: this only works for attributes which actively support
368 * it, and it is not possible to test an attribute from userspace
369 * to see if it supports poll (Nether 'poll' or 'select' return
370 * an appropriate error code). When in doubt, set a suitable timeout value.
371 */
372static unsigned int sysfs_poll(struct file *filp, poll_table *wait)
373{
374 struct sysfs_buffer * buffer = filp->private_data;
f427f5d5
JJS
375 struct kobject * kobj = to_kobj(filp->f_path.dentry->d_parent);
376 struct sysfs_dirent * sd = filp->f_path.dentry->d_fsdata;
4508a7a7
N
377 int res = 0;
378
379 poll_wait(filp, &kobj->poll, wait);
380
381 if (buffer->event != atomic_read(&sd->s_event)) {
382 res = POLLERR|POLLPRI;
383 buffer->needs_read_fill = 1;
384 }
385
386 return res;
387}
388
389
390static struct dentry *step_down(struct dentry *dir, const char * name)
391{
392 struct dentry * de;
393
394 if (dir == NULL || dir->d_inode == NULL)
395 return NULL;
396
397 mutex_lock(&dir->d_inode->i_mutex);
398 de = lookup_one_len(name, dir, strlen(name));
399 mutex_unlock(&dir->d_inode->i_mutex);
400 dput(dir);
401 if (IS_ERR(de))
402 return NULL;
403 if (de->d_inode == NULL) {
404 dput(de);
405 return NULL;
406 }
407 return de;
408}
409
410void sysfs_notify(struct kobject * k, char *dir, char *attr)
411{
412 struct dentry *de = k->dentry;
413 if (de)
414 dget(de);
415 if (de && dir)
416 de = step_down(de, dir);
417 if (de && attr)
418 de = step_down(de, attr);
419 if (de) {
420 struct sysfs_dirent * sd = de->d_fsdata;
421 if (sd)
422 atomic_inc(&sd->s_event);
423 wake_up_interruptible(&k->poll);
424 dput(de);
425 }
426}
427EXPORT_SYMBOL_GPL(sysfs_notify);
428
4b6f5d20 429const struct file_operations sysfs_file_operations = {
1da177e4
LT
430 .read = sysfs_read_file,
431 .write = sysfs_write_file,
432 .llseek = generic_file_llseek,
433 .open = sysfs_open_file,
434 .release = sysfs_release,
4508a7a7 435 .poll = sysfs_poll,
1da177e4
LT
436};
437
438
439int sysfs_add_file(struct dentry * dir, const struct attribute * attr, int type)
440{
441 struct sysfs_dirent * parent_sd = dir->d_fsdata;
442 umode_t mode = (attr->mode & S_IALLUGO) | S_IFREG;
c516865c 443 int error = -EEXIST;
1da177e4 444
1b1dcc1b 445 mutex_lock(&dir->d_inode->i_mutex);
c516865c
MS
446 if (!sysfs_dirent_exist(parent_sd, attr->name))
447 error = sysfs_make_dirent(parent_sd, NULL, (void *)attr,
448 mode, type);
1b1dcc1b 449 mutex_unlock(&dir->d_inode->i_mutex);
1da177e4
LT
450
451 return error;
452}
453
454
455/**
456 * sysfs_create_file - create an attribute file for an object.
457 * @kobj: object we're creating for.
458 * @attr: atrribute descriptor.
459 */
460
461int sysfs_create_file(struct kobject * kobj, const struct attribute * attr)
462{
463 BUG_ON(!kobj || !kobj->dentry || !attr);
464
465 return sysfs_add_file(kobj->dentry, attr, SYSFS_KOBJ_ATTR);
466
467}
468
469
470/**
471 * sysfs_update_file - update the modified timestamp on an object attribute.
472 * @kobj: object we're acting for.
473 * @attr: attribute descriptor.
1da177e4
LT
474 */
475int sysfs_update_file(struct kobject * kobj, const struct attribute * attr)
476{
477 struct dentry * dir = kobj->dentry;
478 struct dentry * victim;
479 int res = -ENOENT;
480
1b1dcc1b 481 mutex_lock(&dir->d_inode->i_mutex);
5f45f1a7 482 victim = lookup_one_len(attr->name, dir, strlen(attr->name));
1da177e4
LT
483 if (!IS_ERR(victim)) {
484 /* make sure dentry is really there */
485 if (victim->d_inode &&
486 (victim->d_parent->d_inode == dir->d_inode)) {
487 victim->d_inode->i_mtime = CURRENT_TIME;
0eeca283 488 fsnotify_modify(victim);
1da177e4
LT
489 res = 0;
490 } else
491 d_drop(victim);
492
493 /**
97a50184 494 * Drop the reference acquired from lookup_one_len() above.
1da177e4
LT
495 */
496 dput(victim);
497 }
1b1dcc1b 498 mutex_unlock(&dir->d_inode->i_mutex);
1da177e4
LT
499
500 return res;
501}
502
503
31e5abe9
KS
504/**
505 * sysfs_chmod_file - update the modified mode value on an object attribute.
506 * @kobj: object we're acting for.
507 * @attr: attribute descriptor.
508 * @mode: file permissions.
509 *
510 */
511int sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode)
512{
513 struct dentry *dir = kobj->dentry;
514 struct dentry *victim;
bc062b1b
MS
515 struct inode * inode;
516 struct iattr newattrs;
31e5abe9
KS
517 int res = -ENOENT;
518
1b1dcc1b 519 mutex_lock(&dir->d_inode->i_mutex);
5f45f1a7 520 victim = lookup_one_len(attr->name, dir, strlen(attr->name));
31e5abe9
KS
521 if (!IS_ERR(victim)) {
522 if (victim->d_inode &&
523 (victim->d_parent->d_inode == dir->d_inode)) {
bc062b1b 524 inode = victim->d_inode;
1b1dcc1b 525 mutex_lock(&inode->i_mutex);
bc062b1b
MS
526 newattrs.ia_mode = (mode & S_IALLUGO) |
527 (inode->i_mode & ~S_IALLUGO);
528 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
529 res = notify_change(victim, &newattrs);
1b1dcc1b 530 mutex_unlock(&inode->i_mutex);
31e5abe9 531 }
bc062b1b 532 dput(victim);
31e5abe9 533 }
1b1dcc1b 534 mutex_unlock(&dir->d_inode->i_mutex);
31e5abe9
KS
535
536 return res;
537}
538EXPORT_SYMBOL_GPL(sysfs_chmod_file);
539
540
1da177e4
LT
541/**
542 * sysfs_remove_file - remove an object attribute.
543 * @kobj: object we're acting for.
544 * @attr: attribute descriptor.
545 *
546 * Hash the attribute name and kill the victim.
547 */
548
549void sysfs_remove_file(struct kobject * kobj, const struct attribute * attr)
550{
551 sysfs_hash_and_remove(kobj->dentry,attr->name);
552}
553
554
555EXPORT_SYMBOL_GPL(sysfs_create_file);
556EXPORT_SYMBOL_GPL(sysfs_remove_file);
557EXPORT_SYMBOL_GPL(sysfs_update_file);