orangefs-utils.c 31.6 KB
Newer Older
M
Mike Marshall 已提交
1 2 3 4 5 6
/*
 * (C) 2001 Clemson University and The University of Chicago
 *
 * See COPYING in top-level directory.
 */
#include "protocol.h"
7 8 9
#include "orangefs-kernel.h"
#include "orangefs-dev-proto.h"
#include "orangefs-bufmap.h"
M
Mike Marshall 已提交
10

11
__s32 fsid_of_op(struct orangefs_kernel_op_s *op)
M
Mike Marshall 已提交
12
{
13
	__s32 fsid = ORANGEFS_FS_ID_NULL;
M
Mike Marshall 已提交
14 15 16

	if (op) {
		switch (op->upcall.type) {
17
		case ORANGEFS_VFS_OP_FILE_IO:
M
Mike Marshall 已提交
18 19
			fsid = op->upcall.req.io.refn.fs_id;
			break;
20
		case ORANGEFS_VFS_OP_LOOKUP:
M
Mike Marshall 已提交
21 22
			fsid = op->upcall.req.lookup.parent_refn.fs_id;
			break;
23
		case ORANGEFS_VFS_OP_CREATE:
M
Mike Marshall 已提交
24 25
			fsid = op->upcall.req.create.parent_refn.fs_id;
			break;
26
		case ORANGEFS_VFS_OP_GETATTR:
M
Mike Marshall 已提交
27 28
			fsid = op->upcall.req.getattr.refn.fs_id;
			break;
29
		case ORANGEFS_VFS_OP_REMOVE:
M
Mike Marshall 已提交
30 31
			fsid = op->upcall.req.remove.parent_refn.fs_id;
			break;
32
		case ORANGEFS_VFS_OP_MKDIR:
M
Mike Marshall 已提交
33 34
			fsid = op->upcall.req.mkdir.parent_refn.fs_id;
			break;
35
		case ORANGEFS_VFS_OP_READDIR:
M
Mike Marshall 已提交
36 37
			fsid = op->upcall.req.readdir.refn.fs_id;
			break;
38
		case ORANGEFS_VFS_OP_SETATTR:
M
Mike Marshall 已提交
39 40
			fsid = op->upcall.req.setattr.refn.fs_id;
			break;
41
		case ORANGEFS_VFS_OP_SYMLINK:
M
Mike Marshall 已提交
42 43
			fsid = op->upcall.req.sym.parent_refn.fs_id;
			break;
44
		case ORANGEFS_VFS_OP_RENAME:
M
Mike Marshall 已提交
45 46
			fsid = op->upcall.req.rename.old_parent_refn.fs_id;
			break;
47
		case ORANGEFS_VFS_OP_STATFS:
M
Mike Marshall 已提交
48 49
			fsid = op->upcall.req.statfs.fs_id;
			break;
50
		case ORANGEFS_VFS_OP_TRUNCATE:
M
Mike Marshall 已提交
51 52
			fsid = op->upcall.req.truncate.refn.fs_id;
			break;
53
		case ORANGEFS_VFS_OP_MMAP_RA_FLUSH:
M
Mike Marshall 已提交
54 55
			fsid = op->upcall.req.ra_cache_flush.refn.fs_id;
			break;
56
		case ORANGEFS_VFS_OP_FS_UMOUNT:
M
Mike Marshall 已提交
57 58
			fsid = op->upcall.req.fs_umount.fs_id;
			break;
59
		case ORANGEFS_VFS_OP_GETXATTR:
M
Mike Marshall 已提交
60 61
			fsid = op->upcall.req.getxattr.refn.fs_id;
			break;
62
		case ORANGEFS_VFS_OP_SETXATTR:
M
Mike Marshall 已提交
63 64
			fsid = op->upcall.req.setxattr.refn.fs_id;
			break;
65
		case ORANGEFS_VFS_OP_LISTXATTR:
M
Mike Marshall 已提交
66 67
			fsid = op->upcall.req.listxattr.refn.fs_id;
			break;
68
		case ORANGEFS_VFS_OP_REMOVEXATTR:
M
Mike Marshall 已提交
69 70
			fsid = op->upcall.req.removexattr.refn.fs_id;
			break;
71
		case ORANGEFS_VFS_OP_FSYNC:
M
Mike Marshall 已提交
72 73 74 75 76 77 78 79 80
			fsid = op->upcall.req.fsync.refn.fs_id;
			break;
		default:
			break;
		}
	}
	return fsid;
}

81
static int orangefs_inode_flags(struct ORANGEFS_sys_attr_s *attrs)
M
Mike Marshall 已提交
82
{
83
	int flags = 0;
84
	if (attrs->flags & ORANGEFS_IMMUTABLE_FL)
85
		flags |= S_IMMUTABLE;
M
Mike Marshall 已提交
86
	else
87
		flags &= ~S_IMMUTABLE;
88
	if (attrs->flags & ORANGEFS_APPEND_FL)
89
		flags |= S_APPEND;
M
Mike Marshall 已提交
90
	else
91
		flags &= ~S_APPEND;
92
	if (attrs->flags & ORANGEFS_NOATIME_FL)
93
		flags |= S_NOATIME;
M
Mike Marshall 已提交
94
	else
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
		flags &= ~S_NOATIME;
	return flags;
}

static int orangefs_inode_perms(struct ORANGEFS_sys_attr_s *attrs)
{
	int perm_mode = 0;

	if (attrs->perms & ORANGEFS_O_EXECUTE)
		perm_mode |= S_IXOTH;
	if (attrs->perms & ORANGEFS_O_WRITE)
		perm_mode |= S_IWOTH;
	if (attrs->perms & ORANGEFS_O_READ)
		perm_mode |= S_IROTH;

	if (attrs->perms & ORANGEFS_G_EXECUTE)
		perm_mode |= S_IXGRP;
	if (attrs->perms & ORANGEFS_G_WRITE)
		perm_mode |= S_IWGRP;
	if (attrs->perms & ORANGEFS_G_READ)
		perm_mode |= S_IRGRP;
M
Mike Marshall 已提交
116

117 118 119 120 121 122 123 124 125 126 127 128 129
	if (attrs->perms & ORANGEFS_U_EXECUTE)
		perm_mode |= S_IXUSR;
	if (attrs->perms & ORANGEFS_U_WRITE)
		perm_mode |= S_IWUSR;
	if (attrs->perms & ORANGEFS_U_READ)
		perm_mode |= S_IRUSR;

	if (attrs->perms & ORANGEFS_G_SGID)
		perm_mode |= S_ISGID;
	if (attrs->perms & ORANGEFS_U_SUID)
		perm_mode |= S_ISUID;

	return perm_mode;
M
Mike Marshall 已提交
130 131 132 133
}

/* NOTE: symname is ignored unless the inode is a sym link */
static int copy_attributes_to_inode(struct inode *inode,
134
				    struct ORANGEFS_sys_attr_s *attrs,
M
Mike Marshall 已提交
135 136 137
				    char *symname)
{
	int ret = -1;
138
	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
M
Mike Marshall 已提交
139 140 141 142 143
	loff_t inode_size = 0;
	loff_t rounded_up_size = 0;


	/*
144 145 146 147 148 149 150 151 152 153 154 155
	 * arbitrarily set the inode block size; FIXME: we need to
	 * resolve the difference between the reported inode blocksize
	 * and the PAGE_CACHE_SIZE, since our block count will always
	 * be wrong.
	 *
	 * For now, we're setting the block count to be the proper
	 * number assuming the block size is 512 bytes, and the size is
	 * rounded up to the nearest 4K.  This is apparently required
	 * to get proper size reports from the 'du' shell utility.
	 *
	 * changing the inode->i_blkbits to something other than
	 * PAGE_CACHE_SHIFT breaks mmap/execution as we depend on that.
M
Mike Marshall 已提交
156 157 158 159
	 */
	gossip_debug(GOSSIP_UTILS_DEBUG,
		     "attrs->mask = %x (objtype = %s)\n",
		     attrs->mask,
160 161 162
		     attrs->objtype == ORANGEFS_TYPE_METAFILE ? "file" :
		     attrs->objtype == ORANGEFS_TYPE_DIRECTORY ? "directory" :
		     attrs->objtype == ORANGEFS_TYPE_SYMLINK ? "symlink" :
M
Mike Marshall 已提交
163 164 165
			"invalid/unknown");

	switch (attrs->objtype) {
166
	case ORANGEFS_TYPE_METAFILE:
167
		inode->i_flags = orangefs_inode_flags(attrs);
168
		if (attrs->mask & ORANGEFS_ATTR_SYS_SIZE) {
M
Mike Marshall 已提交
169 170 171 172
			inode_size = (loff_t) attrs->size;
			rounded_up_size =
			    (inode_size + (4096 - (inode_size % 4096)));

173
			orangefs_lock_inode(inode);
M
Mike Marshall 已提交
174 175 176
			inode->i_bytes = inode_size;
			inode->i_blocks =
			    (unsigned long)(rounded_up_size / 512);
177
			orangefs_unlock_inode(inode);
M
Mike Marshall 已提交
178 179 180 181 182 183 184 185 186 187

			/*
			 * NOTE: make sure all the places we're called
			 * from have the inode->i_sem lock. We're fine
			 * in 99% of the cases since we're mostly
			 * called from a lookup.
			 */
			inode->i_size = inode_size;
		}
		break;
188
	case ORANGEFS_TYPE_SYMLINK:
M
Mike Marshall 已提交
189 190 191 192 193 194
		if (symname != NULL) {
			inode->i_size = (loff_t) strlen(symname);
			break;
		}
		/*FALLTHRU*/
	default:
195 196
		inode->i_size = PAGE_CACHE_SIZE;

197
		orangefs_lock_inode(inode);
198
		inode_set_bytes(inode, inode->i_size);
199
		orangefs_unlock_inode(inode);
M
Mike Marshall 已提交
200 201 202 203 204 205 206 207 208 209 210 211
		break;
	}

	inode->i_uid = make_kuid(&init_user_ns, attrs->owner);
	inode->i_gid = make_kgid(&init_user_ns, attrs->group);
	inode->i_atime.tv_sec = (time_t) attrs->atime;
	inode->i_mtime.tv_sec = (time_t) attrs->mtime;
	inode->i_ctime.tv_sec = (time_t) attrs->ctime;
	inode->i_atime.tv_nsec = 0;
	inode->i_mtime.tv_nsec = 0;
	inode->i_ctime.tv_nsec = 0;

212
	inode->i_mode = orangefs_inode_perms(attrs);
M
Mike Marshall 已提交
213 214 215 216 217 218 219 220 221 222

	if (is_root_handle(inode)) {
		/* special case: mark the root inode as sticky */
		inode->i_mode |= S_ISVTX;
		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "Marking inode %pU as sticky\n",
			     get_khandle_from_ino(inode));
	}

	switch (attrs->objtype) {
223
	case ORANGEFS_TYPE_METAFILE:
M
Mike Marshall 已提交
224 225 226
		inode->i_mode |= S_IFREG;
		ret = 0;
		break;
227
	case ORANGEFS_TYPE_DIRECTORY:
M
Mike Marshall 已提交
228 229 230 231 232 233 234 235 236
		inode->i_mode |= S_IFDIR;
		/* NOTE: we have no good way to keep nlink consistent
		 * for directories across clients; keep constant at 1.
		 * Why 1?  If we go with 2, then find(1) gets confused
		 * and won't work properly withouth the -noleaf option
		 */
		set_nlink(inode, 1);
		ret = 0;
		break;
237
	case ORANGEFS_TYPE_SYMLINK:
M
Mike Marshall 已提交
238 239 240
		inode->i_mode |= S_IFLNK;

		/* copy link target to inode private data */
241 242
		if (orangefs_inode && symname) {
			strncpy(orangefs_inode->link_target,
M
Mike Marshall 已提交
243
				symname,
244
				ORANGEFS_NAME_MAX);
M
Mike Marshall 已提交
245 246
			gossip_debug(GOSSIP_UTILS_DEBUG,
				     "Copied attr link target %s\n",
247
				     orangefs_inode->link_target);
M
Mike Marshall 已提交
248 249 250 251 252 253 254
		}
		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "symlink mode %o\n",
			     inode->i_mode);
		ret = 0;
		break;
	default:
255
		gossip_err("orangefs: copy_attributes_to_inode: got invalid attribute type %x\n",
M
Mike Marshall 已提交
256 257 258 259
			attrs->objtype);
	}

	gossip_debug(GOSSIP_UTILS_DEBUG,
260
		     "orangefs: copy_attributes_to_inode: setting i_mode to %o, i_size to %lu\n",
M
Mike Marshall 已提交
261 262 263 264 265 266 267 268 269 270 271
		     inode->i_mode,
		     (unsigned long)i_size_read(inode));

	return ret;
}

/*
 * NOTE: in kernel land, we never use the sys_attr->link_target for
 * anything, so don't bother copying it into the sys_attr object here.
 */
static inline int copy_attributes_from_inode(struct inode *inode,
272
					     struct ORANGEFS_sys_attr_s *attrs,
M
Mike Marshall 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
					     struct iattr *iattr)
{
	umode_t tmp_mode;

	if (!iattr || !inode || !attrs) {
		gossip_err("NULL iattr (%p), inode (%p), attrs (%p) "
			   "in copy_attributes_from_inode!\n",
			   iattr,
			   inode,
			   attrs);
		return -EINVAL;
	}
	/*
	 * We need to be careful to only copy the attributes out of the
	 * iattr object that we know are valid.
	 */
	attrs->mask = 0;
	if (iattr->ia_valid & ATTR_UID) {
		attrs->owner = from_kuid(current_user_ns(), iattr->ia_uid);
292
		attrs->mask |= ORANGEFS_ATTR_SYS_UID;
M
Mike Marshall 已提交
293 294 295 296
		gossip_debug(GOSSIP_UTILS_DEBUG, "(UID) %d\n", attrs->owner);
	}
	if (iattr->ia_valid & ATTR_GID) {
		attrs->group = from_kgid(current_user_ns(), iattr->ia_gid);
297
		attrs->mask |= ORANGEFS_ATTR_SYS_GID;
M
Mike Marshall 已提交
298 299 300 301
		gossip_debug(GOSSIP_UTILS_DEBUG, "(GID) %d\n", attrs->group);
	}

	if (iattr->ia_valid & ATTR_ATIME) {
302
		attrs->mask |= ORANGEFS_ATTR_SYS_ATIME;
M
Mike Marshall 已提交
303 304
		if (iattr->ia_valid & ATTR_ATIME_SET) {
			attrs->atime =
305 306
			    orangefs_convert_time_field(&iattr->ia_atime);
			attrs->mask |= ORANGEFS_ATTR_SYS_ATIME_SET;
M
Mike Marshall 已提交
307 308 309
		}
	}
	if (iattr->ia_valid & ATTR_MTIME) {
310
		attrs->mask |= ORANGEFS_ATTR_SYS_MTIME;
M
Mike Marshall 已提交
311 312
		if (iattr->ia_valid & ATTR_MTIME_SET) {
			attrs->mtime =
313 314
			    orangefs_convert_time_field(&iattr->ia_mtime);
			attrs->mask |= ORANGEFS_ATTR_SYS_MTIME_SET;
M
Mike Marshall 已提交
315 316 317
		}
	}
	if (iattr->ia_valid & ATTR_CTIME)
318
		attrs->mask |= ORANGEFS_ATTR_SYS_CTIME;
M
Mike Marshall 已提交
319 320

	/*
321
	 * ORANGEFS cannot set size with a setattr operation.  Probably not likely
M
Mike Marshall 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
	 * to be requested through the VFS, but just in case, don't worry about
	 * ATTR_SIZE
	 */

	if (iattr->ia_valid & ATTR_MODE) {
		tmp_mode = iattr->ia_mode;
		if (tmp_mode & (S_ISVTX)) {
			if (is_root_handle(inode)) {
				/*
				 * allow sticky bit to be set on root (since
				 * it shows up that way by default anyhow),
				 * but don't show it to the server
				 */
				tmp_mode -= S_ISVTX;
			} else {
				gossip_debug(GOSSIP_UTILS_DEBUG,
					     "User attempted to set sticky bit on non-root directory; returning EINVAL.\n");
				return -EINVAL;
			}
		}

		if (tmp_mode & (S_ISUID)) {
			gossip_debug(GOSSIP_UTILS_DEBUG,
				     "Attempting to set setuid bit (not supported); returning EINVAL.\n");
			return -EINVAL;
		}

349 350
		attrs->perms = ORANGEFS_util_translate_mode(tmp_mode);
		attrs->mask |= ORANGEFS_ATTR_SYS_PERM;
M
Mike Marshall 已提交
351 352 353 354 355
	}

	return 0;
}

M
Martin Brandenburg 已提交
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
static int compare_attributes_to_inode(struct inode *inode,
				       struct ORANGEFS_sys_attr_s *attrs,
				       char *symname)
{
	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
	loff_t inode_size, rounded_up_size;

	/* Compare file size. */

	switch (attrs->objtype) {
	case ORANGEFS_TYPE_METAFILE:
		if(inode->i_flags != orangefs_inode_flags(attrs))
			return 0;
		inode_size = attrs->size;
		rounded_up_size = inode_size + (4096 - (inode_size % 4096));
		if (inode->i_bytes != inode_size ||
		    inode->i_blocks != rounded_up_size/512)
			return 0;
		break;
	case ORANGEFS_TYPE_SYMLINK:
		if (symname && strlen(symname) != inode->i_size)
			return 0;
		break;
	default:
		if (inode->i_size != PAGE_CACHE_SIZE &&
		    inode_get_bytes(inode) != PAGE_CACHE_SIZE)
			return 0;
	}

	/* Compare general attributes. */

	if (!uid_eq(inode->i_uid, make_kuid(&init_user_ns, attrs->owner)) ||
	    !gid_eq(inode->i_gid, make_kgid(&init_user_ns, attrs->group)) ||
	    inode->i_atime.tv_sec != attrs->atime ||
	    inode->i_mtime.tv_sec != attrs->mtime ||
	    inode->i_ctime.tv_sec != attrs->ctime ||
	    inode->i_atime.tv_nsec != 0 ||
	    inode->i_mtime.tv_nsec != 0 ||
	    inode->i_ctime.tv_nsec != 0)
		return 0;

	if ((inode->i_mode & ~(S_ISVTX|S_IFREG|S_IFDIR|S_IFLNK)) !=
	    orangefs_inode_perms(attrs))
		return 0;

	if (is_root_handle(inode))
		if (!(inode->i_mode & S_ISVTX))
			return 0;

	/* Compare file type. */

	switch (attrs->objtype) {
	case ORANGEFS_TYPE_METAFILE:
		if (!(inode->i_mode & S_IFREG))
			return 0;
		break;
	case ORANGEFS_TYPE_DIRECTORY:
		if (!(inode->i_mode & S_IFDIR))
			return 0;
		if (inode->i_nlink != 1)
			return 0;
		break;
	case ORANGEFS_TYPE_SYMLINK:
		if (!(inode->i_mode & S_IFLNK))
			return 0;
		if (orangefs_inode && symname)
			if (strcmp(orangefs_inode->link_target, symname))
				return 0;
		break;
	default:
		gossip_err("orangefs: compare_attributes_to_inode: got invalid attribute type %x\n",
		    attrs->objtype);

	}

	return 1;
}

M
Mike Marshall 已提交
434
/*
M
Martin Brandenburg 已提交
435 436 437 438
 * Issues a orangefs getattr request and fills in the appropriate inode
 * attributes if successful. When check is 0, returns 0 on success and -errno
 * otherwise. When check is 1, returns 1 on success where the inode is valid
 * and 0 on success where the inode is stale and -errno otherwise.
M
Mike Marshall 已提交
439
 */
M
Martin Brandenburg 已提交
440
int orangefs_inode_getattr(struct inode *inode, __u32 getattr_mask, int check)
M
Mike Marshall 已提交
441
{
442 443
	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
	struct orangefs_kernel_op_s *new_op;
M
Mike Marshall 已提交
444 445 446 447 448 449 450
	int ret = -EINVAL;

	gossip_debug(GOSSIP_UTILS_DEBUG,
		     "%s: called on inode %pU\n",
		     __func__,
		     get_khandle_from_ino(inode));

451
	new_op = op_alloc(ORANGEFS_VFS_OP_GETATTR);
M
Mike Marshall 已提交
452 453
	if (!new_op)
		return -ENOMEM;
454
	new_op->upcall.req.getattr.refn = orangefs_inode->refn;
M
Mike Marshall 已提交
455 456 457 458 459 460 461
	new_op->upcall.req.getattr.mask = getattr_mask;

	ret = service_operation(new_op, __func__,
				get_interruptible_flag(inode));
	if (ret != 0)
		goto out;

M
Martin Brandenburg 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474 475
	if (check) {
		ret = compare_attributes_to_inode(inode,
		    &new_op->downcall.resp.getattr.attributes,
		    new_op->downcall.resp.getattr.link_target);

		if (new_op->downcall.resp.getattr.attributes.objtype ==
		    ORANGEFS_TYPE_METAFILE) {
			if (orangefs_inode->blksize !=
			    new_op->downcall.resp.getattr.attributes.blksize)
				ret = 0;
		} else {
			if (orangefs_inode->blksize != 1 << inode->i_blkbits)
				ret = 0;
		}
M
Mike Marshall 已提交
476
	} else {
M
Martin Brandenburg 已提交
477 478 479 480 481 482 483
		if (copy_attributes_to_inode(inode,
				&new_op->downcall.resp.getattr.attributes,
				new_op->downcall.resp.getattr.link_target)) {
			gossip_err("%s: failed to copy attributes\n", __func__);
			ret = -ENOENT;
			goto out;
		}
M
Mike Marshall 已提交
484

M
Martin Brandenburg 已提交
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
		/*
		 * Store blksize in orangefs specific part of inode structure;
		 * we are only going to use this to report to stat to make sure
		 * it doesn't perturb any inode related code paths.
		 */
		if (new_op->downcall.resp.getattr.attributes.objtype ==
				ORANGEFS_TYPE_METAFILE) {
			orangefs_inode->blksize = new_op->downcall.resp.
			    getattr.attributes.blksize;
		} else {
			/*
			 * mimic behavior of generic_fillattr() for other file
			 * types.
			 */
			orangefs_inode->blksize = (1 << inode->i_blkbits);

		}
M
Mike Marshall 已提交
502 503 504 505 506 507
	}

out:
	gossip_debug(GOSSIP_UTILS_DEBUG,
		     "Getattr on handle %pU, "
		     "fsid %d\n  (inode ct = %d) returned %d\n",
508 509
		     &orangefs_inode->refn.khandle,
		     orangefs_inode->refn.fs_id,
M
Mike Marshall 已提交
510 511 512 513 514 515 516 517
		     (int)atomic_read(&inode->i_count),
		     ret);

	op_release(new_op);
	return ret;
}

/*
518
 * issues a orangefs setattr request to make sure the new attribute values
M
Mike Marshall 已提交
519 520
 * take effect if successful.  returns 0 on success; -errno otherwise
 */
521
int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr)
M
Mike Marshall 已提交
522
{
523 524
	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
	struct orangefs_kernel_op_s *new_op;
M
Mike Marshall 已提交
525 526
	int ret;

527
	new_op = op_alloc(ORANGEFS_VFS_OP_SETATTR);
M
Mike Marshall 已提交
528 529 530
	if (!new_op)
		return -ENOMEM;

531
	new_op->upcall.req.setattr.refn = orangefs_inode->refn;
M
Mike Marshall 已提交
532 533 534
	ret = copy_attributes_from_inode(inode,
		       &new_op->upcall.req.setattr.attributes,
		       iattr);
535 536
	if (ret >= 0) {
		ret = service_operation(new_op, __func__,
M
Mike Marshall 已提交
537 538
				get_interruptible_flag(inode));

539 540 541 542
		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "orangefs_inode_setattr: returning %d\n",
			     ret);
	}
M
Mike Marshall 已提交
543 544 545 546 547 548 549 550

	op_release(new_op);

	/*
	 * successful setattr should clear the atime, mtime and
	 * ctime flags.
	 */
	if (ret == 0) {
551 552 553 554
		ClearAtimeFlag(orangefs_inode);
		ClearMtimeFlag(orangefs_inode);
		ClearCtimeFlag(orangefs_inode);
		ClearModeFlag(orangefs_inode);
M
Mike Marshall 已提交
555 556 557 558 559
	}

	return ret;
}

560
int orangefs_flush_inode(struct inode *inode)
M
Mike Marshall 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573
{
	/*
	 * If it is a dirty inode, this function gets called.
	 * Gather all the information that needs to be setattr'ed
	 * Right now, this will only be used for mode, atime, mtime
	 * and/or ctime.
	 */
	struct iattr wbattr;
	int ret;
	int mtime_flag;
	int ctime_flag;
	int atime_flag;
	int mode_flag;
574
	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
M
Mike Marshall 已提交
575 576 577 578 579 580 581 582

	memset(&wbattr, 0, sizeof(wbattr));

	/*
	 * check inode flags up front, and clear them if they are set.  This
	 * will prevent multiple processes from all trying to flush the same
	 * inode if they call close() simultaneously
	 */
583 584 585 586 587 588 589 590
	mtime_flag = MtimeFlag(orangefs_inode);
	ClearMtimeFlag(orangefs_inode);
	ctime_flag = CtimeFlag(orangefs_inode);
	ClearCtimeFlag(orangefs_inode);
	atime_flag = AtimeFlag(orangefs_inode);
	ClearAtimeFlag(orangefs_inode);
	mode_flag = ModeFlag(orangefs_inode);
	ClearModeFlag(orangefs_inode);
M
Mike Marshall 已提交
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611

	/*  -- Lazy atime,mtime and ctime update --
	 * Note: all times are dictated by server in the new scheme
	 * and not by the clients
	 *
	 * Also mode updates are being handled now..
	 */

	if (mtime_flag)
		wbattr.ia_valid |= ATTR_MTIME;
	if (ctime_flag)
		wbattr.ia_valid |= ATTR_CTIME;
	if (atime_flag)
		wbattr.ia_valid |= ATTR_ATIME;

	if (mode_flag) {
		wbattr.ia_mode = inode->i_mode;
		wbattr.ia_valid |= ATTR_MODE;
	}

	gossip_debug(GOSSIP_UTILS_DEBUG,
612
		     "*********** orangefs_flush_inode: %pU "
M
Mike Marshall 已提交
613 614 615 616 617
		     "(ia_valid %d)\n",
		     get_khandle_from_ino(inode),
		     wbattr.ia_valid);
	if (wbattr.ia_valid == 0) {
		gossip_debug(GOSSIP_UTILS_DEBUG,
618
			     "orangefs_flush_inode skipping setattr()\n");
M
Mike Marshall 已提交
619 620 621 622
		return 0;
	}

	gossip_debug(GOSSIP_UTILS_DEBUG,
623
		     "orangefs_flush_inode (%pU) writing mode %o\n",
M
Mike Marshall 已提交
624 625 626
		     get_khandle_from_ino(inode),
		     inode->i_mode);

627
	ret = orangefs_inode_setattr(inode, &wbattr);
M
Mike Marshall 已提交
628 629 630 631

	return ret;
}

632
int orangefs_unmount_sb(struct super_block *sb)
M
Mike Marshall 已提交
633 634
{
	int ret = -EINVAL;
635
	struct orangefs_kernel_op_s *new_op = NULL;
M
Mike Marshall 已提交
636 637

	gossip_debug(GOSSIP_UTILS_DEBUG,
638
		     "orangefs_unmount_sb called on sb %p\n",
M
Mike Marshall 已提交
639 640
		     sb);

641
	new_op = op_alloc(ORANGEFS_VFS_OP_FS_UMOUNT);
M
Mike Marshall 已提交
642 643
	if (!new_op)
		return -ENOMEM;
644 645 646 647 648
	new_op->upcall.req.fs_umount.id = ORANGEFS_SB(sb)->id;
	new_op->upcall.req.fs_umount.fs_id = ORANGEFS_SB(sb)->fs_id;
	strncpy(new_op->upcall.req.fs_umount.orangefs_config_server,
		ORANGEFS_SB(sb)->devname,
		ORANGEFS_MAX_SERVER_ADDR_LEN);
M
Mike Marshall 已提交
649 650

	gossip_debug(GOSSIP_UTILS_DEBUG,
651 652
		     "Attempting ORANGEFS Unmount via host %s\n",
		     new_op->upcall.req.fs_umount.orangefs_config_server);
M
Mike Marshall 已提交
653

654
	ret = service_operation(new_op, "orangefs_fs_umount", 0);
M
Mike Marshall 已提交
655 656

	gossip_debug(GOSSIP_UTILS_DEBUG,
657
		     "orangefs_unmount: got return value of %d\n", ret);
M
Mike Marshall 已提交
658 659 660
	if (ret)
		sb = ERR_PTR(ret);
	else
661
		ORANGEFS_SB(sb)->mount_pending = 1;
M
Mike Marshall 已提交
662 663 664 665 666 667 668 669 670

	op_release(new_op);
	return ret;
}

/*
 * NOTE: on successful cancellation, be sure to return -EINTR, as
 * that's the return value the caller expects
 */
671
int orangefs_cancel_op_in_progress(__u64 tag)
M
Mike Marshall 已提交
672 673
{
	int ret = -EINVAL;
674
	struct orangefs_kernel_op_s *new_op = NULL;
M
Mike Marshall 已提交
675 676

	gossip_debug(GOSSIP_UTILS_DEBUG,
677
		     "orangefs_cancel_op_in_progress called on tag %llu\n",
M
Mike Marshall 已提交
678 679
		     llu(tag));

680
	new_op = op_alloc(ORANGEFS_VFS_OP_CANCEL);
M
Mike Marshall 已提交
681 682 683 684 685
	if (!new_op)
		return -ENOMEM;
	new_op->upcall.req.cancel.op_tag = tag;

	gossip_debug(GOSSIP_UTILS_DEBUG,
686
		     "Attempting ORANGEFS operation cancellation of tag %llu\n",
M
Mike Marshall 已提交
687 688
		     llu(new_op->upcall.req.cancel.op_tag));

689
	ret = service_operation(new_op, "orangefs_cancel", ORANGEFS_OP_CANCELLATION);
M
Mike Marshall 已提交
690 691

	gossip_debug(GOSSIP_UTILS_DEBUG,
692
		     "orangefs_cancel_op_in_progress: got return value of %d\n",
M
Mike Marshall 已提交
693 694 695 696 697 698
		     ret);

	op_release(new_op);
	return ret;
}

699
void orangefs_make_bad_inode(struct inode *inode)
M
Mike Marshall 已提交
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
{
	if (is_root_handle(inode)) {
		/*
		 * if this occurs, the pvfs2-client-core was killed but we
		 * can't afford to lose the inode operations and such
		 * associated with the root handle in any case.
		 */
		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "*** NOT making bad root inode %pU\n",
			     get_khandle_from_ino(inode));
	} else {
		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "*** making bad inode %pU\n",
			     get_khandle_from_ino(inode));
		make_bad_inode(inode);
	}
}

718
/* Block all blockable signals... */
719
void orangefs_block_signals(sigset_t *orig_sigset)
M
Mike Marshall 已提交
720
{
721 722 723 724 725 726 727 728 729 730
	sigset_t mask;

	/*
	 * Initialize all entries in the signal set to the
	 * inverse of the given mask.
	 */
	siginitsetinv(&mask, sigmask(SIGKILL));

	/* Block 'em Danno... */
	sigprocmask(SIG_BLOCK, &mask, orig_sigset);
M
Mike Marshall 已提交
731 732
}

733
/* set the signal mask to the given template... */
734
void orangefs_set_signals(sigset_t *sigset)
M
Mike Marshall 已提交
735
{
736
	sigprocmask(SIG_SETMASK, sigset, NULL);
M
Mike Marshall 已提交
737 738
}

739 740
/*
 * The following is a very dirty hack that is now a permanent part of the
741
 * ORANGEFS protocol. See protocol.h for more error definitions.
742
 */
743

744
/* The order matches include/orangefs-types.h in the OrangeFS source. */
745
static int PINT_errno_mapping[] = {
746 747 748 749 750 751 752 753 754 755
	0, EPERM, ENOENT, EINTR, EIO, ENXIO, EBADF, EAGAIN, ENOMEM,
	EFAULT, EBUSY, EEXIST, ENODEV, ENOTDIR, EISDIR, EINVAL, EMFILE,
	EFBIG, ENOSPC, EROFS, EMLINK, EPIPE, EDEADLK, ENAMETOOLONG,
	ENOLCK, ENOSYS, ENOTEMPTY, ELOOP, EWOULDBLOCK, ENOMSG, EUNATCH,
	EBADR, EDEADLOCK, ENODATA, ETIME, ENONET, EREMOTE, ECOMM,
	EPROTO, EBADMSG, EOVERFLOW, ERESTART, EMSGSIZE, EPROTOTYPE,
	ENOPROTOOPT, EPROTONOSUPPORT, EOPNOTSUPP, EADDRINUSE,
	EADDRNOTAVAIL, ENETDOWN, ENETUNREACH, ENETRESET, ENOBUFS,
	ETIMEDOUT, ECONNREFUSED, EHOSTDOWN, EHOSTUNREACH, EALREADY,
	EACCES, ECONNRESET, ERANGE
756
};
M
Mike Marshall 已提交
757

758
int orangefs_normalize_to_errno(__s32 error_code)
M
Mike Marshall 已提交
759
{
760 761
	__u32 i;

762 763 764
	/* Success */
	if (error_code == 0) {
		return 0;
765 766 767 768
	/*
	 * This shouldn't ever happen. If it does it should be fixed on the
	 * server.
	 */
769
	} else if (error_code > 0) {
770 771
		gossip_err("orangefs: error status receieved.\n");
		gossip_err("orangefs: assuming error code is inverted.\n");
M
Mike Marshall 已提交
772 773 774
		error_code = -error_code;
	}

775
	/*
776
	 * XXX: This is very bad since error codes from ORANGEFS may not be
777 778
	 * suitable for return into userspace.
	 */
779

780
	/*
781
	 * Convert ORANGEFS error values into errno values suitable for return
782 783
	 * from the kernel.
	 */
784
	if ((-error_code) & ORANGEFS_NON_ERRNO_ERROR_BIT) {
785
		if (((-error_code) &
786 787
		    (ORANGEFS_ERROR_NUMBER_BITS|ORANGEFS_NON_ERRNO_ERROR_BIT|
		    ORANGEFS_ERROR_BIT)) == ORANGEFS_ECANCEL) {
M
Mike Marshall 已提交
788 789 790 791 792 793 794
			/*
			 * cancellation error codes generally correspond to
			 * a timeout from the client's perspective
			 */
			error_code = -ETIMEDOUT;
		} else {
			/* assume a default error code */
795
			gossip_err("orangefs: warning: got error code without errno equivalent: %d.\n", error_code);
M
Mike Marshall 已提交
796 797
			error_code = -EINVAL;
		}
798

799 800 801
	/* Convert ORANGEFS encoded errno values into regular errno values. */
	} else if ((-error_code) & ORANGEFS_ERROR_BIT) {
		i = (-error_code) & ~(ORANGEFS_ERROR_BIT|ORANGEFS_ERROR_CLASS_BITS);
802
		if (i < sizeof(PINT_errno_mapping)/sizeof(*PINT_errno_mapping))
803 804 805 806
			error_code = -PINT_errno_mapping[i];
		else
			error_code = -EINVAL;

807
	/*
808
	 * Only ORANGEFS protocol error codes should ever come here. Otherwise
809 810
	 * there is a bug somewhere.
	 */
811
	} else {
812
		gossip_err("orangefs: orangefs_normalize_to_errno: got error code which is not from ORANGEFS.\n");
M
Mike Marshall 已提交
813 814 815 816 817
	}
	return error_code;
}

#define NUM_MODES 11
818
__s32 ORANGEFS_util_translate_mode(int mode)
M
Mike Marshall 已提交
819 820 821 822 823 824 825 826 827
{
	int ret = 0;
	int i = 0;
	static int modes[NUM_MODES] = {
		S_IXOTH, S_IWOTH, S_IROTH,
		S_IXGRP, S_IWGRP, S_IRGRP,
		S_IXUSR, S_IWUSR, S_IRUSR,
		S_ISGID, S_ISUID
	};
828 829 830 831 832
	static int orangefs_modes[NUM_MODES] = {
		ORANGEFS_O_EXECUTE, ORANGEFS_O_WRITE, ORANGEFS_O_READ,
		ORANGEFS_G_EXECUTE, ORANGEFS_G_WRITE, ORANGEFS_G_READ,
		ORANGEFS_U_EXECUTE, ORANGEFS_U_WRITE, ORANGEFS_U_READ,
		ORANGEFS_G_SGID, ORANGEFS_U_SUID
M
Mike Marshall 已提交
833 834 835 836
	};

	for (i = 0; i < NUM_MODES; i++)
		if (mode & modes[i])
837
			ret |= orangefs_modes[i];
M
Mike Marshall 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898

	return ret;
}
#undef NUM_MODES

/*
 * After obtaining a string representation of the client's debug
 * keywords and their associated masks, this function is called to build an
 * array of these values.
 */
int orangefs_prepare_cdm_array(char *debug_array_string)
{
	int i;
	int rc = -EINVAL;
	char *cds_head = NULL;
	char *cds_delimiter = NULL;
	int keyword_len = 0;

	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);

	/*
	 * figure out how many elements the cdm_array needs.
	 */
	for (i = 0; i < strlen(debug_array_string); i++)
		if (debug_array_string[i] == '\n')
			cdm_element_count++;

	if (!cdm_element_count) {
		pr_info("No elements in client debug array string!\n");
		goto out;
	}

	cdm_array =
		kzalloc(cdm_element_count * sizeof(struct client_debug_mask),
			GFP_KERNEL);
	if (!cdm_array) {
		pr_info("malloc failed for cdm_array!\n");
		rc = -ENOMEM;
		goto out;
	}

	cds_head = debug_array_string;

	for (i = 0; i < cdm_element_count; i++) {
		cds_delimiter = strchr(cds_head, '\n');
		*cds_delimiter = '\0';

		keyword_len = strcspn(cds_head, " ");

		cdm_array[i].keyword = kzalloc(keyword_len + 1, GFP_KERNEL);
		if (!cdm_array[i].keyword) {
			rc = -ENOMEM;
			goto out;
		}

		sscanf(cds_head,
		       "%s %llx %llx",
		       cdm_array[i].keyword,
		       (unsigned long long *)&(cdm_array[i].mask1),
		       (unsigned long long *)&(cdm_array[i].mask2));

899
		if (!strcmp(cdm_array[i].keyword, ORANGEFS_VERBOSE))
M
Mike Marshall 已提交
900 901
			client_verbose_index = i;

902
		if (!strcmp(cdm_array[i].keyword, ORANGEFS_ALL))
M
Mike Marshall 已提交
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
			client_all_index = i;

		cds_head = cds_delimiter + 1;
	}

	rc = cdm_element_count;

	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: rc:%d:\n", __func__, rc);

out:

	return rc;

}

/*
 * /sys/kernel/debug/orangefs/debug-help can be catted to
 * see all the available kernel and client debug keywords.
 *
 * When the kernel boots, we have no idea what keywords the
 * client supports, nor their associated masks.
 *
 * We pass through this function once at boot and stamp a
 * boilerplate "we don't know" message for the client in the
 * debug-help file. We pass through here again when the client
 * starts and then we can fill out the debug-help file fully.
 *
 * The client might be restarted any number of times between
 * reboots, we only build the debug-help file the first time.
 */
int orangefs_prepare_debugfs_help_string(int at_boot)
{
	int rc = -EINVAL;
	int i;
	int byte_count = 0;
	char *client_title = "Client Debug Keywords:\n";
	char *kernel_title = "Kernel Debug Keywords:\n";

	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);

	if (at_boot) {
		byte_count += strlen(HELP_STRING_UNINITIALIZED);
		client_title = HELP_STRING_UNINITIALIZED;
	} else {
		/*
		 * fill the client keyword/mask array and remember
		 * how many elements there were.
		 */
		cdm_element_count =
			orangefs_prepare_cdm_array(client_debug_array_string);
		if (cdm_element_count <= 0)
			goto out;

		/* Count the bytes destined for debug_help_string. */
		byte_count += strlen(client_title);

		for (i = 0; i < cdm_element_count; i++) {
			byte_count += strlen(cdm_array[i].keyword + 2);
			if (byte_count >= DEBUG_HELP_STRING_SIZE) {
				pr_info("%s: overflow 1!\n", __func__);
				goto out;
			}
		}

		gossip_debug(GOSSIP_UTILS_DEBUG,
			     "%s: cdm_element_count:%d:\n",
			     __func__,
			     cdm_element_count);
	}

	byte_count += strlen(kernel_title);
	for (i = 0; i < num_kmod_keyword_mask_map; i++) {
		byte_count +=
			strlen(s_kmod_keyword_mask_map[i].keyword + 2);
		if (byte_count >= DEBUG_HELP_STRING_SIZE) {
			pr_info("%s: overflow 2!\n", __func__);
			goto out;
		}
	}

	/* build debug_help_string. */
	debug_help_string = kzalloc(DEBUG_HELP_STRING_SIZE, GFP_KERNEL);
	if (!debug_help_string) {
		rc = -ENOMEM;
		goto out;
	}

	strcat(debug_help_string, client_title);

	if (!at_boot) {
		for (i = 0; i < cdm_element_count; i++) {
			strcat(debug_help_string, "\t");
			strcat(debug_help_string, cdm_array[i].keyword);
			strcat(debug_help_string, "\n");
		}
	}

	strcat(debug_help_string, "\n");
	strcat(debug_help_string, kernel_title);

	for (i = 0; i < num_kmod_keyword_mask_map; i++) {
		strcat(debug_help_string, "\t");
		strcat(debug_help_string, s_kmod_keyword_mask_map[i].keyword);
		strcat(debug_help_string, "\n");
	}

	rc = 0;

out:

	return rc;

}

/*
 * kernel = type 0
 * client = type 1
 */
void debug_mask_to_string(void *mask, int type)
{
	int i;
	int len = 0;
	char *debug_string;
	int element_count = 0;

	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);

	if (type) {
		debug_string = client_debug_string;
		element_count = cdm_element_count;
	} else {
		debug_string = kernel_debug_string;
		element_count = num_kmod_keyword_mask_map;
	}

1038
	memset(debug_string, 0, ORANGEFS_MAX_DEBUG_STRING_LEN);
M
Mike Marshall 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078

	/*
	 * Some keywords, like "all" or "verbose", are amalgams of
	 * numerous other keywords. Make a special check for those
	 * before grinding through the whole mask only to find out
	 * later...
	 */
	if (check_amalgam_keyword(mask, type))
		goto out;

	/* Build the debug string. */
	for (i = 0; i < element_count; i++)
		if (type)
			do_c_string(mask, i);
		else
			do_k_string(mask, i);

	len = strlen(debug_string);

	if ((len) && (type))
		client_debug_string[len - 1] = '\0';
	else if (len)
		kernel_debug_string[len - 1] = '\0';
	else if (type)
		strcpy(client_debug_string, "none");
	else
		strcpy(kernel_debug_string, "none");

out:
gossip_debug(GOSSIP_UTILS_DEBUG, "%s: string:%s:\n", __func__, debug_string);

	return;

}

void do_k_string(void *k_mask, int index)
{
	__u64 *mask = (__u64 *) k_mask;

	if (keyword_is_amalgam((char *) s_kmod_keyword_mask_map[index].keyword))
1079
		goto out;
M
Mike Marshall 已提交
1080 1081 1082 1083

	if (*mask & s_kmod_keyword_mask_map[index].mask_val) {
		if ((strlen(kernel_debug_string) +
		     strlen(s_kmod_keyword_mask_map[index].keyword))
1084
			< ORANGEFS_MAX_DEBUG_STRING_LEN - 1) {
M
Mike Marshall 已提交
1085 1086 1087 1088 1089
				strcat(kernel_debug_string,
				       s_kmod_keyword_mask_map[index].keyword);
				strcat(kernel_debug_string, ",");
			} else {
				gossip_err("%s: overflow!\n", __func__);
1090
				strcpy(kernel_debug_string, ORANGEFS_ALL);
M
Mike Marshall 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
				goto out;
			}
	}

out:

	return;
}

void do_c_string(void *c_mask, int index)
{
	struct client_debug_mask *mask = (struct client_debug_mask *) c_mask;

	if (keyword_is_amalgam(cdm_array[index].keyword))
		goto out;

	if ((mask->mask1 & cdm_array[index].mask1) ||
	    (mask->mask2 & cdm_array[index].mask2)) {
		if ((strlen(client_debug_string) +
		     strlen(cdm_array[index].keyword) + 1)
1111
			< ORANGEFS_MAX_DEBUG_STRING_LEN - 2) {
M
Mike Marshall 已提交
1112 1113 1114 1115 1116
				strcat(client_debug_string,
				       cdm_array[index].keyword);
				strcat(client_debug_string, ",");
			} else {
				gossip_err("%s: overflow!\n", __func__);
1117
				strcpy(client_debug_string, ORANGEFS_ALL);
M
Mike Marshall 已提交
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
				goto out;
			}
	}
out:
	return;
}

int keyword_is_amalgam(char *keyword)
{
	int rc = 0;

1129
	if ((!strcmp(keyword, ORANGEFS_ALL)) || (!strcmp(keyword, ORANGEFS_VERBOSE)))
M
Mike Marshall 已提交
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
		rc = 1;

	return rc;
}

/*
 * kernel = type 0
 * client = type 1
 *
 * return 1 if we found an amalgam.
 */
int check_amalgam_keyword(void *mask, int type)
{
	__u64 *k_mask;
	struct client_debug_mask *c_mask;
	int k_all_index = num_kmod_keyword_mask_map - 1;
	int rc = 0;

	if (type) {
		c_mask = (struct client_debug_mask *) mask;

		if ((c_mask->mask1 == cdm_array[client_all_index].mask1) &&
		    (c_mask->mask2 == cdm_array[client_all_index].mask2)) {
1153
			strcpy(client_debug_string, ORANGEFS_ALL);
M
Mike Marshall 已提交
1154 1155 1156 1157 1158 1159
			rc = 1;
			goto out;
		}

		if ((c_mask->mask1 == cdm_array[client_verbose_index].mask1) &&
		    (c_mask->mask2 == cdm_array[client_verbose_index].mask2)) {
1160
			strcpy(client_debug_string, ORANGEFS_VERBOSE);
M
Mike Marshall 已提交
1161 1162 1163 1164 1165 1166 1167 1168
			rc = 1;
			goto out;
		}

	} else {
		k_mask = (__u64 *) mask;

		if (*k_mask >= s_kmod_keyword_mask_map[k_all_index].mask_val) {
1169
			strcpy(kernel_debug_string, ORANGEFS_ALL);
M
Mike Marshall 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
			rc = 1;
			goto out;
		}
	}

out:

	return rc;
}

/*
 * kernel = type 0
 * client = type 1
 */
void debug_string_to_mask(char *debug_string, void *mask, int type)
{
	char *unchecked_keyword;
	int i;
	char *strsep_fodder = kstrdup(debug_string, GFP_KERNEL);
1189
	char *original_pointer;
M
Mike Marshall 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	int element_count = 0;
	struct client_debug_mask *c_mask;
	__u64 *k_mask;

	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);

	if (type) {
		c_mask = (struct client_debug_mask *)mask;
		element_count = cdm_element_count;
	} else {
		k_mask = (__u64 *)mask;
		*k_mask = 0;
		element_count = num_kmod_keyword_mask_map;
	}

1205
	original_pointer = strsep_fodder;
M
Mike Marshall 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
	while ((unchecked_keyword = strsep(&strsep_fodder, ",")))
		if (strlen(unchecked_keyword)) {
			for (i = 0; i < element_count; i++)
				if (type)
					do_c_mask(i,
						  unchecked_keyword,
						  &c_mask);
				else
					do_k_mask(i,
						  unchecked_keyword,
						  &k_mask);
		}

1219
	kfree(original_pointer);
M
Mike Marshall 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
}

void do_c_mask(int i,
	       char *unchecked_keyword,
	       struct client_debug_mask **sane_mask)
{

	if (!strcmp(cdm_array[i].keyword, unchecked_keyword)) {
		(**sane_mask).mask1 = (**sane_mask).mask1 | cdm_array[i].mask1;
		(**sane_mask).mask2 = (**sane_mask).mask2 | cdm_array[i].mask2;
	}
}

void do_k_mask(int i, char *unchecked_keyword, __u64 **sane_mask)
{

	if (!strcmp(s_kmod_keyword_mask_map[i].keyword, unchecked_keyword))
		**sane_mask = (**sane_mask) |
				s_kmod_keyword_mask_map[i].mask_val;
}