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

L
Linus Torvalds 已提交
174 175 176
	return count;
}

177 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
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;
}

230
static int bin_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
231 232 233 234 235 236
{
	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 已提交
237
	if (!bb->vm_ops)
238
		return VM_FAULT_SIGBUS;
239

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

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

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

	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 已提交
272 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
#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

333 334 335 336 337 338
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 已提交
339 340 341 342 343
#ifdef CONFIG_NUMA
	.set_policy	= bin_set_policy,
	.get_policy	= bin_get_policy,
	.migrate	= bin_migrate,
#endif
344 345
};

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

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

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

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

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

H
Hugh Dickins 已提交
369 370 371 372 373 374
	/*
	 * 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)
375 376 377
		goto out_put;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 已提交
479 480 481 482 483 484 485 486
/**
 *	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)
{
487
	BUG_ON(!kobj || !kobj->sd || !attr);
L
Linus Torvalds 已提交
488

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


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

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

EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);