ceph_fs.c 1.57 KB
Newer Older
Sage Weil's avatar
Sage Weil committed
1 2 3 4 5
/*
 * Some non-inline ceph helpers
 */
#include "types.h"

Sage Weil's avatar
Sage Weil committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * return true if @layout appears to be valid
 */
int ceph_file_layout_is_valid(const struct ceph_file_layout *layout)
{
	__u32 su = le32_to_cpu(layout->fl_stripe_unit);
	__u32 sc = le32_to_cpu(layout->fl_stripe_count);
	__u32 os = le32_to_cpu(layout->fl_object_size);

	/* stripe unit, object size must be non-zero, 64k increment */
	if (!su || (su & (CEPH_MIN_STRIPE_UNIT-1)))
		return 0;
	if (!os || (os & (CEPH_MIN_STRIPE_UNIT-1)))
		return 0;
	/* object size must be a multiple of stripe unit */
	if (os < su || os % su)
		return 0;
	/* stripe count must be non-zero */
	if (!sc)
		return 0;
	return 1;
}


Sage Weil's avatar
Sage Weil committed
30 31
int ceph_flags_to_mode(int flags)
{
32 33
	int mode;

Sage Weil's avatar
Sage Weil committed
34 35 36 37
#ifdef O_DIRECTORY  /* fixme */
	if ((flags & O_DIRECTORY) == O_DIRECTORY)
		return CEPH_FILE_MODE_PIN;
#endif
38 39 40 41 42 43 44 45 46 47
	if ((flags & O_APPEND) == O_APPEND)
		flags |= O_WRONLY;

	if ((flags & O_ACCMODE) == O_RDWR)
		mode = CEPH_FILE_MODE_RDWR;
	else if ((flags & O_ACCMODE) == O_WRONLY)
		mode = CEPH_FILE_MODE_WR;
	else
		mode = CEPH_FILE_MODE_RD;

Sage Weil's avatar
Sage Weil committed
48 49
#ifdef O_LAZY
	if (flags & O_LAZY)
50
		mode |= CEPH_FILE_MODE_LAZY;
Sage Weil's avatar
Sage Weil committed
51 52
#endif

53
	return mode;
Sage Weil's avatar
Sage Weil committed
54 55 56 57
}

int ceph_caps_for_mode(int mode)
{
58 59 60 61
	int caps = CEPH_CAP_PIN;

	if (mode & CEPH_FILE_MODE_RD)
		caps |= CEPH_CAP_FILE_SHARED |
Sage Weil's avatar
Sage Weil committed
62
			CEPH_CAP_FILE_RD | CEPH_CAP_FILE_CACHE;
63 64
	if (mode & CEPH_FILE_MODE_WR)
		caps |= CEPH_CAP_FILE_EXCL |
Sage Weil's avatar
Sage Weil committed
65 66 67
			CEPH_CAP_FILE_WR | CEPH_CAP_FILE_BUFFER |
			CEPH_CAP_AUTH_SHARED | CEPH_CAP_AUTH_EXCL |
			CEPH_CAP_XATTR_SHARED | CEPH_CAP_XATTR_EXCL;
68 69 70 71
	if (mode & CEPH_FILE_MODE_LAZY)
		caps |= CEPH_CAP_FILE_LAZYIO;

	return caps;
Sage Weil's avatar
Sage Weil committed
72
}