ioctl.c 13.1 KB
Newer Older
H
Herbert Poetzl 已提交
1 2 3 4 5 6 7 8 9
/*
 * linux/fs/ocfs2/ioctl.c
 *
 * Copyright (C) 2006 Herbert Poetzl
 * adapted from Remy Card's ext2/ioctl.c
 */

#include <linux/fs.h>
#include <linux/mount.h>
10
#include <linux/compat.h>
H
Herbert Poetzl 已提交
11 12 13 14 15 16

#include <cluster/masklog.h>

#include "ocfs2.h"
#include "alloc.h"
#include "dlmglue.h"
17
#include "file.h"
H
Herbert Poetzl 已提交
18 19 20 21
#include "inode.h"
#include "journal.h"

#include "ocfs2_fs.h"
22
#include "ioctl.h"
23
#include "resize.h"
T
Tao Ma 已提交
24
#include "refcounttree.h"
25

H
Herbert Poetzl 已提交
26 27
#include <linux/ext2_fs.h>

28 29 30 31 32 33 34 35 36 37
#define o2info_from_user(a, b)	\
		copy_from_user(&(a), (b), sizeof(a))
#define o2info_to_user(a, b)	\
		copy_to_user((typeof(a) __user *)b, &(a), sizeof(a))

/*
 * This call is void because we are already reporting an error that may
 * be -EFAULT.  The error will be returned from the ioctl(2) call.  It's
 * just a best-effort to tell userspace that this request caused the error.
 */
38
static inline void o2info_set_request_error(struct ocfs2_info_request *kreq,
39 40 41 42 43 44
					struct ocfs2_info_request __user *req)
{
	kreq->ir_flags |= OCFS2_INFO_FL_ERROR;
	(void)put_user(kreq->ir_flags, (__u32 __user *)&(req->ir_flags));
}

45
static inline void o2info_set_request_filled(struct ocfs2_info_request *req)
46 47 48 49
{
	req->ir_flags |= OCFS2_INFO_FL_FILLED;
}

50
static inline void o2info_clear_request_filled(struct ocfs2_info_request *req)
51 52 53 54
{
	req->ir_flags &= ~OCFS2_INFO_FL_FILLED;
}

H
Herbert Poetzl 已提交
55 56 57 58
static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags)
{
	int status;

M
Mark Fasheh 已提交
59
	status = ocfs2_inode_lock(inode, NULL, 0);
H
Herbert Poetzl 已提交
60 61 62 63
	if (status < 0) {
		mlog_errno(status);
		return status;
	}
64
	ocfs2_get_inode_flags(OCFS2_I(inode));
H
Herbert Poetzl 已提交
65
	*flags = OCFS2_I(inode)->ip_attr;
M
Mark Fasheh 已提交
66
	ocfs2_inode_unlock(inode, 0);
H
Herbert Poetzl 已提交
67 68 69 70 71 72 73 74 75

	return status;
}

static int ocfs2_set_inode_attr(struct inode *inode, unsigned flags,
				unsigned mask)
{
	struct ocfs2_inode_info *ocfs2_inode = OCFS2_I(inode);
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
76
	handle_t *handle = NULL;
H
Herbert Poetzl 已提交
77 78 79 80 81 82
	struct buffer_head *bh = NULL;
	unsigned oldflags;
	int status;

	mutex_lock(&inode->i_mutex);

M
Mark Fasheh 已提交
83
	status = ocfs2_inode_lock(inode, &bh, 1);
H
Herbert Poetzl 已提交
84 85 86 87 88 89
	if (status < 0) {
		mlog_errno(status);
		goto bail;
	}

	status = -EACCES;
90
	if (!inode_owner_or_capable(inode))
H
Herbert Poetzl 已提交
91 92 93 94 95
		goto bail_unlock;

	if (!S_ISDIR(inode->i_mode))
		flags &= ~OCFS2_DIRSYNC_FL;

96
	handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
H
Herbert Poetzl 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
	if (IS_ERR(handle)) {
		status = PTR_ERR(handle);
		mlog_errno(status);
		goto bail_unlock;
	}

	oldflags = ocfs2_inode->ip_attr;
	flags = flags & mask;
	flags |= oldflags & ~mask;

	/*
	 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
	 * the relevant capability.
	 */
	status = -EPERM;
	if ((oldflags & OCFS2_IMMUTABLE_FL) || ((flags ^ oldflags) &
		(OCFS2_APPEND_FL | OCFS2_IMMUTABLE_FL))) {
		if (!capable(CAP_LINUX_IMMUTABLE))
			goto bail_unlock;
	}

	ocfs2_inode->ip_attr = flags;
	ocfs2_set_inode_flags(inode);

	status = ocfs2_mark_inode_dirty(handle, inode, bh);
	if (status < 0)
		mlog_errno(status);

125
	ocfs2_commit_trans(osb, handle);
H
Herbert Poetzl 已提交
126
bail_unlock:
M
Mark Fasheh 已提交
127
	ocfs2_inode_unlock(inode, 1);
H
Herbert Poetzl 已提交
128 129 130
bail:
	mutex_unlock(&inode->i_mutex);

131
	brelse(bh);
H
Herbert Poetzl 已提交
132 133 134 135

	return status;
}

136 137 138 139 140 141 142 143 144 145
int ocfs2_info_handle_blocksize(struct inode *inode,
				struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_blocksize oib;

	if (o2info_from_user(oib, req))
		goto bail;

	oib.ib_blocksize = inode->i_sb->s_blocksize;
146

147
	o2info_set_request_filled(&oib.ib_req);
148 149 150 151 152 153 154

	if (o2info_to_user(oib, req))
		goto bail;

	status = 0;
bail:
	if (status)
155
		o2info_set_request_error(&oib.ib_req, req);
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170

	return status;
}

int ocfs2_info_handle_clustersize(struct inode *inode,
				  struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_clustersize oic;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oic, req))
		goto bail;

	oic.ic_clustersize = osb->s_clustersize;
171

172
	o2info_set_request_filled(&oic.ic_req);
173 174 175 176 177 178 179

	if (o2info_to_user(oic, req))
		goto bail;

	status = 0;
bail:
	if (status)
180
		o2info_set_request_error(&oic.ic_req, req);
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195

	return status;
}

int ocfs2_info_handle_maxslots(struct inode *inode,
			       struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_maxslots oim;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oim, req))
		goto bail;

	oim.im_max_slots = osb->max_slots;
196

197
	o2info_set_request_filled(&oim.im_req);
198 199 200 201 202 203 204

	if (o2info_to_user(oim, req))
		goto bail;

	status = 0;
bail:
	if (status)
205
		o2info_set_request_error(&oim.im_req, req);
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

	return status;
}

int ocfs2_info_handle_label(struct inode *inode,
			    struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_label oil;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oil, req))
		goto bail;

	memcpy(oil.il_label, osb->vol_label, OCFS2_MAX_VOL_LABEL_LEN);
221

222
	o2info_set_request_filled(&oil.il_req);
223 224 225 226 227 228 229

	if (o2info_to_user(oil, req))
		goto bail;

	status = 0;
bail:
	if (status)
230
		o2info_set_request_error(&oil.il_req, req);
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245

	return status;
}

int ocfs2_info_handle_uuid(struct inode *inode,
			   struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_uuid oiu;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oiu, req))
		goto bail;

	memcpy(oiu.iu_uuid_str, osb->uuid_str, OCFS2_TEXT_UUID_LEN + 1);
246

247
	o2info_set_request_filled(&oiu.iu_req);
248 249 250 251 252 253 254

	if (o2info_to_user(oiu, req))
		goto bail;

	status = 0;
bail:
	if (status)
255
		o2info_set_request_error(&oiu.iu_req, req);
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

	return status;
}

int ocfs2_info_handle_fs_features(struct inode *inode,
				  struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_fs_features oif;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oif, req))
		goto bail;

	oif.if_compat_features = osb->s_feature_compat;
	oif.if_incompat_features = osb->s_feature_incompat;
	oif.if_ro_compat_features = osb->s_feature_ro_compat;
273

274
	o2info_set_request_filled(&oif.if_req);
275 276 277 278 279 280 281

	if (o2info_to_user(oif, req))
		goto bail;

	status = 0;
bail:
	if (status)
282
		o2info_set_request_error(&oif.if_req, req);
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298

	return status;
}

int ocfs2_info_handle_journal_size(struct inode *inode,
				   struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_journal_size oij;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if (o2info_from_user(oij, req))
		goto bail;

	oij.ij_journal_size = osb->journal->j_inode->i_size;

299
	o2info_set_request_filled(&oij.ij_req);
300 301 302 303 304 305 306

	if (o2info_to_user(oij, req))
		goto bail;

	status = 0;
bail:
	if (status)
307
		o2info_set_request_error(&oij.ij_req, req);
308 309 310 311 312 313 314 315 316 317 318 319 320

	return status;
}

int ocfs2_info_handle_unknown(struct inode *inode,
			      struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_request oir;

	if (o2info_from_user(oir, req))
		goto bail;

321
	o2info_clear_request_filled(&oir);
322 323 324 325 326 327 328

	if (o2info_to_user(oir, req))
		goto bail;

	status = 0;
bail:
	if (status)
329
		o2info_set_request_error(&oir, req);
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

	return status;
}

/*
 * Validate and distinguish OCFS2_IOC_INFO requests.
 *
 * - validate the magic number.
 * - distinguish different requests.
 * - validate size of different requests.
 */
int ocfs2_info_handle_request(struct inode *inode,
			      struct ocfs2_info_request __user *req)
{
	int status = -EFAULT;
	struct ocfs2_info_request oir;

	if (o2info_from_user(oir, req))
		goto bail;

	status = -EINVAL;
	if (oir.ir_magic != OCFS2_INFO_MAGIC)
		goto bail;

	switch (oir.ir_code) {
	case OCFS2_INFO_BLOCKSIZE:
		if (oir.ir_size == sizeof(struct ocfs2_info_blocksize))
			status = ocfs2_info_handle_blocksize(inode, req);
		break;
	case OCFS2_INFO_CLUSTERSIZE:
		if (oir.ir_size == sizeof(struct ocfs2_info_clustersize))
			status = ocfs2_info_handle_clustersize(inode, req);
		break;
	case OCFS2_INFO_MAXSLOTS:
		if (oir.ir_size == sizeof(struct ocfs2_info_maxslots))
			status = ocfs2_info_handle_maxslots(inode, req);
		break;
	case OCFS2_INFO_LABEL:
		if (oir.ir_size == sizeof(struct ocfs2_info_label))
			status = ocfs2_info_handle_label(inode, req);
		break;
	case OCFS2_INFO_UUID:
		if (oir.ir_size == sizeof(struct ocfs2_info_uuid))
			status = ocfs2_info_handle_uuid(inode, req);
		break;
	case OCFS2_INFO_FS_FEATURES:
		if (oir.ir_size == sizeof(struct ocfs2_info_fs_features))
			status = ocfs2_info_handle_fs_features(inode, req);
		break;
	case OCFS2_INFO_JOURNAL_SIZE:
		if (oir.ir_size == sizeof(struct ocfs2_info_journal_size))
			status = ocfs2_info_handle_journal_size(inode, req);
		break;
	default:
		status = ocfs2_info_handle_unknown(inode, req);
		break;
	}

bail:
	return status;
}

int ocfs2_get_request_ptr(struct ocfs2_info *info, int idx,
			  u64 *req_addr, int compat_flag)
{
	int status = -EFAULT;
	u64 __user *bp = NULL;

	if (compat_flag) {
#ifdef CONFIG_COMPAT
		/*
		 * pointer bp stores the base address of a pointers array,
		 * which collects all addresses of separate request.
		 */
		bp = (u64 __user *)(unsigned long)compat_ptr(info->oi_requests);
#else
		BUG();
#endif
	} else
		bp = (u64 __user *)(unsigned long)(info->oi_requests);

	if (o2info_from_user(*req_addr, bp + idx))
		goto bail;

	status = 0;
bail:
	return status;
}

/*
 * OCFS2_IOC_INFO handles an array of requests passed from userspace.
 *
 * ocfs2_info_handle() recevies a large info aggregation, grab and
 * validate the request count from header, then break it into small
 * pieces, later specific handlers can handle them one by one.
 *
 * Idea here is to make each separate request small enough to ensure
 * a better backward&forward compatibility, since a small piece of
 * request will be less likely to be broken if disk layout get changed.
 */
int ocfs2_info_handle(struct inode *inode, struct ocfs2_info *info,
		      int compat_flag)
{
	int i, status = 0;
	u64 req_addr;
	struct ocfs2_info_request __user *reqp;

	if ((info->oi_count > OCFS2_INFO_MAX_REQUEST) ||
	    (!info->oi_requests)) {
		status = -EINVAL;
		goto bail;
	}

	for (i = 0; i < info->oi_count; i++) {

		status = ocfs2_get_request_ptr(info, i, &req_addr, compat_flag);
		if (status)
			break;

		reqp = (struct ocfs2_info_request *)(unsigned long)req_addr;
		if (!reqp) {
			status = -EINVAL;
			goto bail;
		}

		status = ocfs2_info_handle_request(inode, reqp);
		if (status)
			break;
	}

bail:
	return status;
}

464
long ocfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
H
Herbert Poetzl 已提交
465
{
466
	struct inode *inode = filp->f_path.dentry->d_inode;
H
Herbert Poetzl 已提交
467
	unsigned int flags;
468
	int new_clusters;
H
Herbert Poetzl 已提交
469
	int status;
470
	struct ocfs2_space_resv sr;
471
	struct ocfs2_new_group_input input;
T
Tao Ma 已提交
472 473 474
	struct reflink_arguments args;
	const char *old_path, *new_path;
	bool preserve;
475
	struct ocfs2_info info;
H
Herbert Poetzl 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488

	switch (cmd) {
	case OCFS2_IOC_GETFLAGS:
		status = ocfs2_get_inode_attr(inode, &flags);
		if (status < 0)
			return status;

		flags &= OCFS2_FL_VISIBLE;
		return put_user(flags, (int __user *) arg);
	case OCFS2_IOC_SETFLAGS:
		if (get_user(flags, (int __user *) arg))
			return -EFAULT;

489 490 491 492
		status = mnt_want_write(filp->f_path.mnt);
		if (status)
			return status;
		status = ocfs2_set_inode_attr(inode, flags,
H
Herbert Poetzl 已提交
493
			OCFS2_FL_MODIFIABLE);
494 495
		mnt_drop_write(filp->f_path.mnt);
		return status;
496 497 498 499 500 501 502 503
	case OCFS2_IOC_RESVSP:
	case OCFS2_IOC_RESVSP64:
	case OCFS2_IOC_UNRESVSP:
	case OCFS2_IOC_UNRESVSP64:
		if (copy_from_user(&sr, (int __user *) arg, sizeof(sr)))
			return -EFAULT;

		return ocfs2_change_file_space(filp, cmd, &sr);
504
	case OCFS2_IOC_GROUP_EXTEND:
505 506 507
		if (!capable(CAP_SYS_RESOURCE))
			return -EPERM;

508 509 510 511
		if (get_user(new_clusters, (int __user *)arg))
			return -EFAULT;

		return ocfs2_group_extend(inode, new_clusters);
512 513
	case OCFS2_IOC_GROUP_ADD:
	case OCFS2_IOC_GROUP_ADD64:
514 515 516
		if (!capable(CAP_SYS_RESOURCE))
			return -EPERM;

517 518 519 520
		if (copy_from_user(&input, (int __user *) arg, sizeof(input)))
			return -EFAULT;

		return ocfs2_group_add(inode, &input);
T
Tao Ma 已提交
521 522 523 524 525 526 527 528 529
	case OCFS2_IOC_REFLINK:
		if (copy_from_user(&args, (struct reflink_arguments *)arg,
				   sizeof(args)))
			return -EFAULT;
		old_path = (const char *)(unsigned long)args.old_path;
		new_path = (const char *)(unsigned long)args.new_path;
		preserve = (args.preserve != 0);

		return ocfs2_reflink_ioctl(inode, old_path, new_path, preserve);
530 531 532 533 534 535
	case OCFS2_IOC_INFO:
		if (copy_from_user(&info, (struct ocfs2_info __user *)arg,
				   sizeof(struct ocfs2_info)))
			return -EFAULT;

		return ocfs2_info_handle(inode, &info, 0);
H
Herbert Poetzl 已提交
536 537 538 539 540
	default:
		return -ENOTTY;
	}
}

M
Mark Fasheh 已提交
541 542 543
#ifdef CONFIG_COMPAT
long ocfs2_compat_ioctl(struct file *file, unsigned cmd, unsigned long arg)
{
544 545 546
	bool preserve;
	struct reflink_arguments args;
	struct inode *inode = file->f_path.dentry->d_inode;
547
	struct ocfs2_info info;
548

M
Mark Fasheh 已提交
549 550 551 552 553 554 555
	switch (cmd) {
	case OCFS2_IOC32_GETFLAGS:
		cmd = OCFS2_IOC_GETFLAGS;
		break;
	case OCFS2_IOC32_SETFLAGS:
		cmd = OCFS2_IOC_SETFLAGS;
		break;
556 557 558 559
	case OCFS2_IOC_RESVSP:
	case OCFS2_IOC_RESVSP64:
	case OCFS2_IOC_UNRESVSP:
	case OCFS2_IOC_UNRESVSP64:
560
	case OCFS2_IOC_GROUP_EXTEND:
561 562
	case OCFS2_IOC_GROUP_ADD:
	case OCFS2_IOC_GROUP_ADD64:
563
		break;
564 565 566 567 568 569 570 571
	case OCFS2_IOC_REFLINK:
		if (copy_from_user(&args, (struct reflink_arguments *)arg,
				   sizeof(args)))
			return -EFAULT;
		preserve = (args.preserve != 0);

		return ocfs2_reflink_ioctl(inode, compat_ptr(args.old_path),
					   compat_ptr(args.new_path), preserve);
572 573 574 575 576 577
	case OCFS2_IOC_INFO:
		if (copy_from_user(&info, (struct ocfs2_info __user *)arg,
				   sizeof(struct ocfs2_info)))
			return -EFAULT;

		return ocfs2_info_handle(inode, &info, 1);
M
Mark Fasheh 已提交
578 579 580 581
	default:
		return -ENOIOCTLCMD;
	}

582
	return ocfs2_ioctl(file, cmd, arg);
M
Mark Fasheh 已提交
583 584
}
#endif