bin.c 10.8 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
	struct mutex			mutex;
	void				*buffer;
	int				mmapped;
43
	const struct vm_operations_struct *vm_ops;
44 45
	struct file			*file;
	struct hlist_node		list;
T
Tejun Heo 已提交
46 47
};

L
Linus Torvalds 已提交
48
static int
49
fill_read(struct file *file, char *buffer, loff_t off, size_t count)
L
Linus Torvalds 已提交
50
{
51
	struct sysfs_dirent *attr_sd = file->f_path.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
	int rc;

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

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

64
	sysfs_put_active(attr_sd);
65 66

	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
	int size = file->f_path.dentry->d_inode->i_size;
L
Linus Torvalds 已提交
74
	loff_t offs = *off;
75
	int count = min_t(size_t, bytes, PAGE_SIZE);
N
Nick Piggin 已提交
76
	char *temp;
L
Linus Torvalds 已提交
77

78 79 80
	if (!bytes)
		return 0;

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

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

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

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

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

	mutex_unlock(&bb->mutex);

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

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

	*off = offs + count;

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

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

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

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

134
	sysfs_put_active(attr_sd);
135 136

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

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

148 149 150
	if (!bytes)
		return 0;

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

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

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

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

166
	count = flush_write(file, bb->buffer, offs, count);
N
Nick Piggin 已提交
167 168
	mutex_unlock(&bb->mutex);

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

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

176 177 178 179 180 181
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;

182
	if (!bb->vm_ops)
183 184
		return;

185
	if (!sysfs_get_active(attr_sd))
186 187
		return;

188 189
	if (bb->vm_ops->open)
		bb->vm_ops->open(vma);
190

191
	sysfs_put_active(attr_sd);
192 193 194 195 196 197 198 199 200
}

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;

201
	if (!bb->vm_ops)
202 203
		return VM_FAULT_SIGBUS;

204
	if (!sysfs_get_active(attr_sd))
205 206
		return VM_FAULT_SIGBUS;

207 208 209
	ret = VM_FAULT_SIGBUS;
	if (bb->vm_ops->fault)
		ret = bb->vm_ops->fault(vma, vmf);
210

211
	sysfs_put_active(attr_sd);
212 213 214
	return ret;
}

215
static int bin_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
216 217 218 219 220 221
{
	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 已提交
222
	if (!bb->vm_ops)
223
		return VM_FAULT_SIGBUS;
224

225
	if (!sysfs_get_active(attr_sd))
226
		return VM_FAULT_SIGBUS;
227

228 229 230
	ret = 0;
	if (bb->vm_ops->page_mkwrite)
		ret = bb->vm_ops->page_mkwrite(vma, vmf);
231 232
	else
		file_update_time(file);
233

234
	sysfs_put_active(attr_sd);
235 236 237 238 239 240 241 242 243 244 245
	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;

246
	if (!bb->vm_ops)
247 248
		return -EINVAL;

249
	if (!sysfs_get_active(attr_sd))
250 251
		return -EINVAL;

252 253 254
	ret = -EINVAL;
	if (bb->vm_ops->access)
		ret = bb->vm_ops->access(vma, addr, buf, len, write);
255

256
	sysfs_put_active(attr_sd);
257 258 259
	return ret;
}

H
Hugh Dickins 已提交
260 261 262 263 264 265 266 267
#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;

268
	if (!bb->vm_ops)
H
Hugh Dickins 已提交
269 270
		return 0;

271
	if (!sysfs_get_active(attr_sd))
H
Hugh Dickins 已提交
272 273
		return -EINVAL;

274 275 276
	ret = 0;
	if (bb->vm_ops->set_policy)
		ret = bb->vm_ops->set_policy(vma, new);
H
Hugh Dickins 已提交
277

278
	sysfs_put_active(attr_sd);
H
Hugh Dickins 已提交
279 280 281 282 283 284 285 286 287 288 289
	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;

290
	if (!bb->vm_ops)
H
Hugh Dickins 已提交
291 292
		return vma->vm_policy;

293
	if (!sysfs_get_active(attr_sd))
H
Hugh Dickins 已提交
294 295
		return vma->vm_policy;

296 297 298
	pol = vma->vm_policy;
	if (bb->vm_ops->get_policy)
		pol = bb->vm_ops->get_policy(vma, addr);
H
Hugh Dickins 已提交
299

300
	sysfs_put_active(attr_sd);
H
Hugh Dickins 已提交
301 302 303 304 305 306 307 308 309 310 311
	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;

312
	if (!bb->vm_ops)
H
Hugh Dickins 已提交
313 314
		return 0;

315
	if (!sysfs_get_active(attr_sd))
H
Hugh Dickins 已提交
316 317
		return 0;

318 319 320
	ret = 0;
	if (bb->vm_ops->migrate)
		ret = bb->vm_ops->migrate(vma, from, to, flags);
H
Hugh Dickins 已提交
321

322
	sysfs_put_active(attr_sd);
H
Hugh Dickins 已提交
323 324 325 326
	return ret;
}
#endif

327
static const struct vm_operations_struct bin_vm_ops = {
328 329 330 331
	.open		= bin_vma_open,
	.fault		= bin_fault,
	.page_mkwrite	= bin_page_mkwrite,
	.access		= bin_access,
H
Hugh Dickins 已提交
332 333 334 335 336
#ifdef CONFIG_NUMA
	.set_policy	= bin_set_policy,
	.get_policy	= bin_get_policy,
	.migrate	= bin_migrate,
#endif
337 338
};

L
Linus Torvalds 已提交
339 340
static int mmap(struct file *file, struct vm_area_struct *vma)
{
T
Tejun Heo 已提交
341
	struct bin_buffer *bb = file->private_data;
342
	struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata;
T
Tejun Heo 已提交
343 344
	struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr;
	struct kobject *kobj = attr_sd->s_parent->s_dir.kobj;
T
Tejun Heo 已提交
345
	int rc;
L
Linus Torvalds 已提交
346

T
Tejun Heo 已提交
347
	mutex_lock(&bb->mutex);
348 349

	/* need attr_sd for attr, its parent for kobj */
350
	rc = -ENODEV;
351
	if (!sysfs_get_active(attr_sd))
352
		goto out_unlock;
353 354

	rc = -EINVAL;
355 356
	if (!attr->mmap)
		goto out_put;
357

358
	rc = attr->mmap(file, kobj, attr, vma);
359 360
	if (rc)
		goto out_put;
361

H
Hugh Dickins 已提交
362 363 364 365 366 367
	/*
	 * 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)
368 369 370
		goto out_put;

	rc = -EINVAL;
H
Hugh Dickins 已提交
371
	if (bb->mmapped && bb->vm_ops != vma->vm_ops)
372 373
		goto out_put;

374 375 376 377 378 379 380 381
	/*
	 * It is not possible to successfully wrap close.
	 * So error if someone is trying to use close.
	 */
	rc = -EINVAL;
	if (vma->vm_ops && vma->vm_ops->close)
		goto out_put;

382 383
	rc = 0;
	bb->mmapped = 1;
H
Hugh Dickins 已提交
384 385
	bb->vm_ops = vma->vm_ops;
	vma->vm_ops = &bin_vm_ops;
386
out_put:
387
	sysfs_put_active(attr_sd);
388
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
	/* binary file operations requires both @sd and its parent */
402
	if (!sysfs_get_active(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
	/* open succeeded, put active references */
429
	sysfs_put_active(attr_sd);
430
	return 0;
L
Linus Torvalds 已提交
431

432
 err_out:
433
	sysfs_put_active(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
/**
 *	sysfs_create_bin_file - create binary file for object.
 *	@kobj:	object.
 *	@attr:	attribute descriptor.
 */

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

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


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

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

EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);