bin.c 10.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
T
Tejun Heo 已提交
2
 * fs/sysfs/bin.c - sysfs binary file implementation
L
Linus Torvalds 已提交
3 4 5 6
 *
 * Copyright (c) 2003 Patrick Mochel
 * Copyright (c) 2003 Matthew Wilcox
 * Copyright (c) 2004 Silicon Graphics, Inc.
T
Tejun Heo 已提交
7 8 9 10 11 12
 * Copyright (c) 2007 SUSE Linux Products GmbH
 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
 *
 * This file is released under the GPLv2.
 *
 * Please see Documentation/filesystems/sysfs.txt for more information.
L
Linus Torvalds 已提交
13 14 15 16 17 18
 */

#undef DEBUG

#include <linux/errno.h>
#include <linux/fs.h>
19
#include <linux/kernel.h>
L
Linus Torvalds 已提交
20 21 22
#include <linux/kobject.h>
#include <linux/module.h>
#include <linux/slab.h>
D
Dave Young 已提交
23
#include <linux/mutex.h>
24
#include <linux/mm.h>
L
Linus Torvalds 已提交
25 26 27 28 29

#include <asm/uaccess.h>

#include "sysfs.h"

30 31 32 33 34 35 36 37 38
/*
 * There's one bin_buffer for each open file.
 *
 * filp->private_data points to bin_buffer and
 * sysfs_dirent->s_bin_attr.buffers points to a the bin_buffer s
 * sysfs_dirent->s_bin_attr.buffers is protected by sysfs_bin_lock
 */
static DEFINE_MUTEX(sysfs_bin_lock);

T
Tejun Heo 已提交
39
struct bin_buffer {
40 41 42 43 44 45
	struct mutex			mutex;
	void				*buffer;
	int				mmapped;
	struct vm_operations_struct 	*vm_ops;
	struct file			*file;
	struct hlist_node		list;
T
Tejun Heo 已提交
46 47
};

L
Linus Torvalds 已提交
48 49 50
static int
fill_read(struct dentry *dentry, char *buffer, loff_t off, size_t count)
{
51
	struct sysfs_dirent *attr_sd = dentry->d_fsdata;
T
Tejun Heo 已提交
52 53
	struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
	struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
54 55 56 57 58
	int rc;

	/* need attr_sd for attr, its parent for kobj */
	if (!sysfs_get_active_two(attr_sd))
		return -ENODEV;
L
Linus Torvalds 已提交
59

60 61
	rc = -EIO;
	if (attr->read)
62
		rc = attr->read(kobj, attr, buffer, off, count);
L
Linus Torvalds 已提交
63

64 65 66
	sysfs_put_active_two(attr_sd);

	return rc;
L
Linus Torvalds 已提交
67 68 69
}

static ssize_t
70
read(struct file *file, char __user *userbuf, size_t bytes, loff_t *off)
L
Linus Torvalds 已提交
71
{
T
Tejun Heo 已提交
72
	struct bin_buffer *bb = file->private_data;
73
	struct dentry *dentry = file->f_path.dentry;
L
Linus Torvalds 已提交
74 75
	int size = dentry->d_inode->i_size;
	loff_t offs = *off;
76
	int count = min_t(size_t, bytes, PAGE_SIZE);
N
Nick Piggin 已提交
77
	char *temp;
L
Linus Torvalds 已提交
78

79 80 81
	if (!bytes)
		return 0;

L
Linus Torvalds 已提交
82 83 84 85 86 87 88
	if (size) {
		if (offs > size)
			return 0;
		if (offs + count > size)
			count = size - offs;
	}

N
Nick Piggin 已提交
89 90 91 92
	temp = kmalloc(count, GFP_KERNEL);
	if (!temp)
		return -ENOMEM;

T
Tejun Heo 已提交
93 94 95
	mutex_lock(&bb->mutex);

	count = fill_read(dentry, bb->buffer, offs, count);
N
Nick Piggin 已提交
96 97 98 99
	if (count < 0) {
		mutex_unlock(&bb->mutex);
		goto out_free;
	}
L
Linus Torvalds 已提交
100

N
Nick Piggin 已提交
101 102 103 104 105
	memcpy(temp, bb->buffer, count);

	mutex_unlock(&bb->mutex);

	if (copy_to_user(userbuf, temp, count)) {
T
Tejun Heo 已提交
106
		count = -EFAULT;
N
Nick Piggin 已提交
107
		goto out_free;
T
Tejun Heo 已提交
108
	}
L
Linus Torvalds 已提交
109

110
	pr_debug("offs = %lld, *off = %lld, count = %d\n", offs, *off, count);
L
Linus Torvalds 已提交
111 112 113

	*off = offs + count;

N
Nick Piggin 已提交
114 115
 out_free:
	kfree(temp);
L
Linus Torvalds 已提交
116 117 118 119 120 121
	return count;
}

static int
flush_write(struct dentry *dentry, char *buffer, loff_t offset, size_t count)
{
122
	struct sysfs_dirent *attr_sd = dentry->d_fsdata;
T
Tejun Heo 已提交
123 124
	struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
	struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
125 126 127 128 129
	int rc;

	/* need attr_sd for attr, its parent for kobj */
	if (!sysfs_get_active_two(attr_sd))
		return -ENODEV;
L
Linus Torvalds 已提交
130

131 132
	rc = -EIO;
	if (attr->write)
133
		rc = attr->write(kobj, attr, buffer, offset, count);
L
Linus Torvalds 已提交
134

135 136 137
	sysfs_put_active_two(attr_sd);

	return rc;
L
Linus Torvalds 已提交
138 139
}

140 141
static ssize_t write(struct file *file, const char __user *userbuf,
		     size_t bytes, loff_t *off)
L
Linus Torvalds 已提交
142
{
T
Tejun Heo 已提交
143
	struct bin_buffer *bb = file->private_data;
144
	struct dentry *dentry = file->f_path.dentry;
L
Linus Torvalds 已提交
145 146
	int size = dentry->d_inode->i_size;
	loff_t offs = *off;
147
	int count = min_t(size_t, bytes, PAGE_SIZE);
N
Nick Piggin 已提交
148
	char *temp;
L
Linus Torvalds 已提交
149

150 151 152
	if (!bytes)
		return 0;

L
Linus Torvalds 已提交
153 154 155 156 157 158 159
	if (size) {
		if (offs > size)
			return 0;
		if (offs + count > size)
			count = size - offs;
	}

L
Li Zefan 已提交
160 161 162
	temp = memdup_user(userbuf, count);
	if (IS_ERR(temp))
		return PTR_ERR(temp);
L
Linus Torvalds 已提交
163

N
Nick Piggin 已提交
164 165 166 167
	mutex_lock(&bb->mutex);

	memcpy(bb->buffer, temp, count);

T
Tejun Heo 已提交
168
	count = flush_write(dentry, bb->buffer, offs, count);
N
Nick Piggin 已提交
169 170
	mutex_unlock(&bb->mutex);

L
Linus Torvalds 已提交
171 172
	if (count > 0)
		*off = offs + count;
T
Tejun Heo 已提交
173

174
	kfree(temp);
L
Linus Torvalds 已提交
175 176 177
	return count;
}

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
static void bin_vma_open(struct vm_area_struct *vma)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;

	if (!bb->vm_ops || !bb->vm_ops->open)
		return;

	if (!sysfs_get_active_two(attr_sd))
		return;

	bb->vm_ops->open(vma);

	sysfs_put_active_two(attr_sd);
}

static void bin_vma_close(struct vm_area_struct *vma)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;

	if (!bb->vm_ops || !bb->vm_ops->close)
		return;

	if (!sysfs_get_active_two(attr_sd))
		return;

	bb->vm_ops->close(vma);

	sysfs_put_active_two(attr_sd);
}

static int bin_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	int ret;

	if (!bb->vm_ops || !bb->vm_ops->fault)
		return VM_FAULT_SIGBUS;

	if (!sysfs_get_active_two(attr_sd))
		return VM_FAULT_SIGBUS;

	ret = bb->vm_ops->fault(vma, vmf);

	sysfs_put_active_two(attr_sd);
	return ret;
}

231
static int bin_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
232 233 234 235 236 237
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	int ret;

H
Hugh Dickins 已提交
238
	if (!bb->vm_ops)
239
		return VM_FAULT_SIGBUS;
240

H
Hugh Dickins 已提交
241 242 243
	if (!bb->vm_ops->page_mkwrite)
		return 0;

244
	if (!sysfs_get_active_two(attr_sd))
245
		return VM_FAULT_SIGBUS;
246

247
	ret = bb->vm_ops->page_mkwrite(vma, vmf);
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

	sysfs_put_active_two(attr_sd);
	return ret;
}

static int bin_access(struct vm_area_struct *vma, unsigned long addr,
		  void *buf, int len, int write)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	int ret;

	if (!bb->vm_ops || !bb->vm_ops->access)
		return -EINVAL;

	if (!sysfs_get_active_two(attr_sd))
		return -EINVAL;

	ret = bb->vm_ops->access(vma, addr, buf, len, write);

	sysfs_put_active_two(attr_sd);
	return ret;
}

H
Hugh Dickins 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
#ifdef CONFIG_NUMA
static int bin_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	int ret;

	if (!bb->vm_ops || !bb->vm_ops->set_policy)
		return 0;

	if (!sysfs_get_active_two(attr_sd))
		return -EINVAL;

	ret = bb->vm_ops->set_policy(vma, new);

	sysfs_put_active_two(attr_sd);
	return ret;
}

static struct mempolicy *bin_get_policy(struct vm_area_struct *vma,
					unsigned long addr)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	struct mempolicy *pol;

	if (!bb->vm_ops || !bb->vm_ops->get_policy)
		return vma->vm_policy;

	if (!sysfs_get_active_two(attr_sd))
		return vma->vm_policy;

	pol = bb->vm_ops->get_policy(vma, addr);

	sysfs_put_active_two(attr_sd);
	return pol;
}

static int bin_migrate(struct vm_area_struct *vma, const nodemask_t *from,
			const nodemask_t *to, unsigned long flags)
{
	struct file *file = vma->vm_file;
	struct bin_buffer *bb = file->private_data;
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
	int ret;

	if (!bb->vm_ops || !bb->vm_ops->migrate)
		return 0;

	if (!sysfs_get_active_two(attr_sd))
		return 0;

	ret = bb->vm_ops->migrate(vma, from, to, flags);

	sysfs_put_active_two(attr_sd);
	return ret;
}
#endif

334 335 336 337 338 339
static struct vm_operations_struct bin_vm_ops = {
	.open		= bin_vma_open,
	.close		= bin_vma_close,
	.fault		= bin_fault,
	.page_mkwrite	= bin_page_mkwrite,
	.access		= bin_access,
H
Hugh Dickins 已提交
340 341 342 343 344
#ifdef CONFIG_NUMA
	.set_policy	= bin_set_policy,
	.get_policy	= bin_get_policy,
	.migrate	= bin_migrate,
#endif
345 346
};

L
Linus Torvalds 已提交
347 348
static int mmap(struct file *file, struct vm_area_struct *vma)
{
T
Tejun Heo 已提交
349
	struct bin_buffer *bb = file->private_data;
350
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
T
Tejun Heo 已提交
351 352
	struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
	struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
T
Tejun Heo 已提交
353
	int rc;
L
Linus Torvalds 已提交
354

T
Tejun Heo 已提交
355
	mutex_lock(&bb->mutex);
356 357

	/* need attr_sd for attr, its parent for kobj */
358
	rc = -ENODEV;
359
	if (!sysfs_get_active_two(attr_sd))
360
		goto out_unlock;
361 362

	rc = -EINVAL;
363 364
	if (!attr->mmap)
		goto out_put;
365

366 367 368
	rc = attr->mmap(kobj, attr, vma);
	if (rc)
		goto out_put;
369

H
Hugh Dickins 已提交
370 371 372 373 374 375
	/*
	 * PowerPC's pci_mmap of legacy_mem uses shmem_zero_setup()
	 * to satisfy versions of X which crash if the mmap fails: that
	 * substitutes a new vm_file, and we don't then want bin_vm_ops.
	 */
	if (vma->vm_file != file)
376 377 378
		goto out_put;

	rc = -EINVAL;
H
Hugh Dickins 已提交
379
	if (bb->mmapped && bb->vm_ops != vma->vm_ops)
380 381 382 383
		goto out_put;

	rc = 0;
	bb->mmapped = 1;
H
Hugh Dickins 已提交
384 385
	bb->vm_ops = vma->vm_ops;
	vma->vm_ops = &bin_vm_ops;
386 387 388
out_put:
	sysfs_put_active_two(attr_sd);
out_unlock:
T
Tejun Heo 已提交
389 390 391
	mutex_unlock(&bb->mutex);

	return rc;
L
Linus Torvalds 已提交
392 393 394 395
}

static int open(struct inode * inode, struct file * file)
{
396
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
T
Tejun Heo 已提交
397
	struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
T
Tejun Heo 已提交
398
	struct bin_buffer *bb = NULL;
399
	int error;
L
Linus Torvalds 已提交
400

401 402
	/* binary file operations requires both @sd and its parent */
	if (!sysfs_get_active_two(attr_sd))
403
		return -ENODEV;
L
Linus Torvalds 已提交
404 405 406

	error = -EACCES;
	if ((file->f_mode & FMODE_WRITE) && !(attr->write || attr->mmap))
407
		goto err_out;
L
Linus Torvalds 已提交
408
	if ((file->f_mode & FMODE_READ) && !(attr->read || attr->mmap))
409
		goto err_out;
L
Linus Torvalds 已提交
410 411

	error = -ENOMEM;
T
Tejun Heo 已提交
412 413
	bb = kzalloc(sizeof(*bb), GFP_KERNEL);
	if (!bb)
414
		goto err_out;
L
Linus Torvalds 已提交
415

T
Tejun Heo 已提交
416 417
	bb->buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
	if (!bb->buffer)
418
		goto err_out;
T
Tejun Heo 已提交
419 420

	mutex_init(&bb->mutex);
421
	bb->file = file;
T
Tejun Heo 已提交
422 423
	file->private_data = bb;

424 425 426 427
	mutex_lock(&sysfs_bin_lock);
	hlist_add_head(&bb->list, &attr_sd->s_bin_attr.buffers);
	mutex_unlock(&sysfs_bin_lock);

428 429
	/* open succeeded, put active references */
	sysfs_put_active_two(attr_sd);
430
	return 0;
L
Linus Torvalds 已提交
431

432
 err_out:
433
	sysfs_put_active_two(attr_sd);
434
	kfree(bb);
L
Linus Torvalds 已提交
435 436 437 438 439
	return error;
}

static int release(struct inode * inode, struct file * file)
{
T
Tejun Heo 已提交
440
	struct bin_buffer *bb = file->private_data;
L
Linus Torvalds 已提交
441

442 443 444 445
	mutex_lock(&sysfs_bin_lock);
	hlist_del(&bb->list);
	mutex_unlock(&sysfs_bin_lock);

T
Tejun Heo 已提交
446 447
	kfree(bb->buffer);
	kfree(bb);
L
Linus Torvalds 已提交
448 449 450
	return 0;
}

451
const struct file_operations bin_fops = {
L
Linus Torvalds 已提交
452 453 454 455 456 457 458 459
	.read		= read,
	.write		= write,
	.mmap		= mmap,
	.llseek		= generic_file_llseek,
	.open		= open,
	.release	= release,
};

460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479

void unmap_bin_file(struct sysfs_dirent *attr_sd)
{
	struct bin_buffer *bb;
	struct hlist_node *tmp;

	if (sysfs_type(attr_sd) != SYSFS_KOBJ_BIN_ATTR)
		return;

	mutex_lock(&sysfs_bin_lock);

	hlist_for_each_entry(bb, tmp, &attr_sd->s_bin_attr.buffers, list) {
		struct inode *inode = bb->file->f_path.dentry->d_inode;

		unmap_mapping_range(inode->i_mapping, 0, 0, 1);
	}

	mutex_unlock(&sysfs_bin_lock);
}

L
Linus Torvalds 已提交
480 481 482 483 484 485 486 487
/**
 *	sysfs_create_bin_file - create binary file for object.
 *	@kobj:	object.
 *	@attr:	attribute descriptor.
 */

int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr)
{
488
	BUG_ON(!kobj || !kobj->sd || !attr);
L
Linus Torvalds 已提交
489

490
	return sysfs_add_file(kobj->sd, &attr->attr, SYSFS_KOBJ_BIN_ATTR);
L
Linus Torvalds 已提交
491 492 493 494 495 496 497 498 499
}


/**
 *	sysfs_remove_bin_file - remove binary file for object.
 *	@kobj:	object.
 *	@attr:	attribute descriptor.
 */

500
void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr)
L
Linus Torvalds 已提交
501
{
502
	sysfs_hash_and_remove(kobj->sd, attr->attr.name);
L
Linus Torvalds 已提交
503 504 505 506
}

EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);