blob: c48859f16e7b1fd9887bcd2edb73aaf4b4d55464 [file] [log] [blame]
Mike Marshall1182fca2015-07-17 10:38:15 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -05008#include "orangefs-kernel.h"
9#include "orangefs-bufmap.h"
Mike Marshall1182fca2015-07-17 10:38:15 -040010
11#include <linux/parser.h>
12
Yi Liu8bb8aef2015-11-24 15:12:14 -050013/* a cache for orangefs-inode objects (i.e. orangefs inode private data) */
14static struct kmem_cache *orangefs_inode_cache;
Mike Marshall1182fca2015-07-17 10:38:15 -040015
Yi Liu8bb8aef2015-11-24 15:12:14 -050016/* list for storing orangefs specific superblocks in use */
17LIST_HEAD(orangefs_superblocks);
Mike Marshall1182fca2015-07-17 10:38:15 -040018
Yi Liu8bb8aef2015-11-24 15:12:14 -050019DEFINE_SPINLOCK(orangefs_superblocks_lock);
Mike Marshall1182fca2015-07-17 10:38:15 -040020
21enum {
22 Opt_intr,
23 Opt_acl,
24 Opt_local_lock,
25
26 Opt_err
27};
28
29static const match_table_t tokens = {
30 { Opt_acl, "acl" },
31 { Opt_intr, "intr" },
32 { Opt_local_lock, "local_lock" },
33 { Opt_err, NULL }
34};
35
Martin Brandenburg482664d2016-08-12 12:02:31 -040036uint64_t orangefs_features;
Mike Marshall1182fca2015-07-17 10:38:15 -040037
38static int parse_mount_options(struct super_block *sb, char *options,
39 int silent)
40{
Yi Liu8bb8aef2015-11-24 15:12:14 -050041 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(sb);
Mike Marshall1182fca2015-07-17 10:38:15 -040042 substring_t args[MAX_OPT_ARGS];
43 char *p;
44
45 /*
46 * Force any potential flags that might be set from the mount
47 * to zero, ie, initialize to unset.
48 */
49 sb->s_flags &= ~MS_POSIXACL;
Yi Liu8bb8aef2015-11-24 15:12:14 -050050 orangefs_sb->flags &= ~ORANGEFS_OPT_INTR;
51 orangefs_sb->flags &= ~ORANGEFS_OPT_LOCAL_LOCK;
Mike Marshall1182fca2015-07-17 10:38:15 -040052
53 while ((p = strsep(&options, ",")) != NULL) {
54 int token;
55
56 if (!*p)
57 continue;
58
59 token = match_token(p, tokens, args);
60 switch (token) {
61 case Opt_acl:
62 sb->s_flags |= MS_POSIXACL;
63 break;
64 case Opt_intr:
Yi Liu8bb8aef2015-11-24 15:12:14 -050065 orangefs_sb->flags |= ORANGEFS_OPT_INTR;
Mike Marshall1182fca2015-07-17 10:38:15 -040066 break;
67 case Opt_local_lock:
Yi Liu8bb8aef2015-11-24 15:12:14 -050068 orangefs_sb->flags |= ORANGEFS_OPT_LOCAL_LOCK;
Mike Marshall1182fca2015-07-17 10:38:15 -040069 break;
70 default:
71 goto fail;
72 }
73 }
74
75 return 0;
76fail:
77 if (!silent)
78 gossip_err("Error: mount option [%s] is not supported.\n", p);
79 return -EINVAL;
80}
81
Yi Liu8bb8aef2015-11-24 15:12:14 -050082static void orangefs_inode_cache_ctor(void *req)
Mike Marshall1182fca2015-07-17 10:38:15 -040083{
Yi Liu8bb8aef2015-11-24 15:12:14 -050084 struct orangefs_inode_s *orangefs_inode = req;
Mike Marshall1182fca2015-07-17 10:38:15 -040085
Yi Liu8bb8aef2015-11-24 15:12:14 -050086 inode_init_once(&orangefs_inode->vfs_inode);
87 init_rwsem(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -040088
Yi Liu8bb8aef2015-11-24 15:12:14 -050089 orangefs_inode->vfs_inode.i_version = 1;
Mike Marshall1182fca2015-07-17 10:38:15 -040090}
91
Yi Liu8bb8aef2015-11-24 15:12:14 -050092static struct inode *orangefs_alloc_inode(struct super_block *sb)
Mike Marshall1182fca2015-07-17 10:38:15 -040093{
Yi Liu8bb8aef2015-11-24 15:12:14 -050094 struct orangefs_inode_s *orangefs_inode;
Mike Marshall1182fca2015-07-17 10:38:15 -040095
Mike Marshall2d4cae02016-02-04 13:48:16 -050096 orangefs_inode = kmem_cache_alloc(orangefs_inode_cache, GFP_KERNEL);
Yi Liu8bb8aef2015-11-24 15:12:14 -050097 if (orangefs_inode == NULL) {
98 gossip_err("Failed to allocate orangefs_inode\n");
Mike Marshall1182fca2015-07-17 10:38:15 -040099 return NULL;
100 }
101
102 /*
103 * We want to clear everything except for rw_semaphore and the
104 * vfs_inode.
105 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500106 memset(&orangefs_inode->refn.khandle, 0, 16);
107 orangefs_inode->refn.fs_id = ORANGEFS_FS_ID_NULL;
108 orangefs_inode->last_failed_block_index_read = 0;
109 memset(orangefs_inode->link_target, 0, sizeof(orangefs_inode->link_target));
110 orangefs_inode->pinode_flags = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400111
112 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500113 "orangefs_alloc_inode: allocated %p\n",
114 &orangefs_inode->vfs_inode);
115 return &orangefs_inode->vfs_inode;
Mike Marshall1182fca2015-07-17 10:38:15 -0400116}
117
Yi Liu8bb8aef2015-11-24 15:12:14 -0500118static void orangefs_destroy_inode(struct inode *inode)
Mike Marshall1182fca2015-07-17 10:38:15 -0400119{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500120 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Mike Marshall1182fca2015-07-17 10:38:15 -0400121
122 gossip_debug(GOSSIP_SUPER_DEBUG,
123 "%s: deallocated %p destroying inode %pU\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500124 __func__, orangefs_inode, get_khandle_from_ino(inode));
Mike Marshall1182fca2015-07-17 10:38:15 -0400125
Yi Liu8bb8aef2015-11-24 15:12:14 -0500126 kmem_cache_free(orangefs_inode_cache, orangefs_inode);
Mike Marshall1182fca2015-07-17 10:38:15 -0400127}
128
129/*
130 * NOTE: information filled in here is typically reflected in the
131 * output of the system command 'df'
132*/
Yi Liu8bb8aef2015-11-24 15:12:14 -0500133static int orangefs_statfs(struct dentry *dentry, struct kstatfs *buf)
Mike Marshall1182fca2015-07-17 10:38:15 -0400134{
135 int ret = -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500136 struct orangefs_kernel_op_s *new_op = NULL;
Mike Marshall1182fca2015-07-17 10:38:15 -0400137 int flags = 0;
138 struct super_block *sb = NULL;
139
140 sb = dentry->d_sb;
141
142 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500143 "orangefs_statfs: called on sb %p (fs_id is %d)\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400144 sb,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500145 (int)(ORANGEFS_SB(sb)->fs_id));
Mike Marshall1182fca2015-07-17 10:38:15 -0400146
Yi Liu8bb8aef2015-11-24 15:12:14 -0500147 new_op = op_alloc(ORANGEFS_VFS_OP_STATFS);
Mike Marshall1182fca2015-07-17 10:38:15 -0400148 if (!new_op)
149 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500150 new_op->upcall.req.statfs.fs_id = ORANGEFS_SB(sb)->fs_id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400151
Yi Liu8bb8aef2015-11-24 15:12:14 -0500152 if (ORANGEFS_SB(sb)->flags & ORANGEFS_OPT_INTR)
153 flags = ORANGEFS_OP_INTERRUPTIBLE;
Mike Marshall1182fca2015-07-17 10:38:15 -0400154
Yi Liu8bb8aef2015-11-24 15:12:14 -0500155 ret = service_operation(new_op, "orangefs_statfs", flags);
Mike Marshall1182fca2015-07-17 10:38:15 -0400156
157 if (new_op->downcall.status < 0)
158 goto out_op_release;
159
160 gossip_debug(GOSSIP_SUPER_DEBUG,
Mike Marshallbe573662016-01-13 11:38:14 -0500161 "%s: got %ld blocks available | "
162 "%ld blocks total | %ld block size | "
163 "%ld files total | %ld files avail\n",
164 __func__,
Mike Marshall1182fca2015-07-17 10:38:15 -0400165 (long)new_op->downcall.resp.statfs.blocks_avail,
166 (long)new_op->downcall.resp.statfs.blocks_total,
Mike Marshallbe573662016-01-13 11:38:14 -0500167 (long)new_op->downcall.resp.statfs.block_size,
168 (long)new_op->downcall.resp.statfs.files_total,
169 (long)new_op->downcall.resp.statfs.files_avail);
Mike Marshall1182fca2015-07-17 10:38:15 -0400170
171 buf->f_type = sb->s_magic;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500172 memcpy(&buf->f_fsid, &ORANGEFS_SB(sb)->fs_id, sizeof(buf->f_fsid));
Mike Marshall1182fca2015-07-17 10:38:15 -0400173 buf->f_bsize = new_op->downcall.resp.statfs.block_size;
Martin Brandenburg47b49482016-02-20 14:22:40 -0500174 buf->f_namelen = ORANGEFS_NAME_MAX;
Mike Marshall1182fca2015-07-17 10:38:15 -0400175
176 buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total;
177 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
178 buf->f_bavail = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
179 buf->f_files = (sector_t) new_op->downcall.resp.statfs.files_total;
180 buf->f_ffree = (sector_t) new_op->downcall.resp.statfs.files_avail;
181 buf->f_frsize = sb->s_blocksize;
182
183out_op_release:
184 op_release(new_op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500185 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_statfs: returning %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400186 return ret;
187}
188
189/*
190 * Remount as initiated by VFS layer. We just need to reparse the mount
191 * options, no need to signal pvfs2-client-core about it.
192 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500193static int orangefs_remount_fs(struct super_block *sb, int *flags, char *data)
Mike Marshall1182fca2015-07-17 10:38:15 -0400194{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500195 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount_fs: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400196 return parse_mount_options(sb, data, 1);
197}
198
199/*
200 * Remount as initiated by pvfs2-client-core on restart. This is used to
201 * repopulate mount information left from previous pvfs2-client-core.
202 *
203 * the idea here is that given a valid superblock, we're
204 * re-initializing the user space client with the initial mount
205 * information specified when the super block was first initialized.
206 * this is very different than the first initialization/creation of a
207 * superblock. we use the special service_priority_operation to make
208 * sure that the mount gets ahead of any other pending operation that
209 * is waiting for servicing. this means that the pvfs2-client won't
210 * fail to start several times for all other pending operations before
211 * the client regains all of the mount information from us.
212 * NOTE: this function assumes that the request_mutex is already acquired!
213 */
Al Viro45996492016-03-25 19:56:34 -0400214int orangefs_remount(struct orangefs_sb_info_s *orangefs_sb)
Mike Marshall1182fca2015-07-17 10:38:15 -0400215{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500216 struct orangefs_kernel_op_s *new_op;
Mike Marshall1182fca2015-07-17 10:38:15 -0400217 int ret = -EINVAL;
218
Yi Liu8bb8aef2015-11-24 15:12:14 -0500219 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400220
Yi Liu8bb8aef2015-11-24 15:12:14 -0500221 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
Mike Marshall1182fca2015-07-17 10:38:15 -0400222 if (!new_op)
223 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500224 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
Al Viro45996492016-03-25 19:56:34 -0400225 orangefs_sb->devname,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500226 ORANGEFS_MAX_SERVER_ADDR_LEN);
Mike Marshall1182fca2015-07-17 10:38:15 -0400227
228 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500229 "Attempting ORANGEFS Remount via host %s\n",
230 new_op->upcall.req.fs_mount.orangefs_config_server);
Mike Marshall1182fca2015-07-17 10:38:15 -0400231
232 /*
Mike Marshalladcf34a2016-02-24 16:54:27 -0500233 * we assume that the calling function has already acquired the
Mike Marshall1182fca2015-07-17 10:38:15 -0400234 * request_mutex to prevent other operations from bypassing
235 * this one
236 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500237 ret = service_operation(new_op, "orangefs_remount",
Mike Marshalladcf34a2016-02-24 16:54:27 -0500238 ORANGEFS_OP_PRIORITY | ORANGEFS_OP_NO_MUTEX);
Mike Marshall1182fca2015-07-17 10:38:15 -0400239 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500240 "orangefs_remount: mount got return value of %d\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400241 ret);
242 if (ret == 0) {
243 /*
244 * store the id assigned to this sb -- it's just a
245 * short-lived mapping that the system interface uses
246 * to map this superblock to a particular mount entry
247 */
Al Viro45996492016-03-25 19:56:34 -0400248 orangefs_sb->id = new_op->downcall.resp.fs_mount.id;
249 orangefs_sb->mount_pending = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400250 }
251
252 op_release(new_op);
Martin Brandenburg482664d2016-08-12 12:02:31 -0400253
Mike Marshallf60fbdb2016-10-03 15:07:36 -0400254 if (orangefs_userspace_version >= 20906) {
Martin Brandenburg482664d2016-08-12 12:02:31 -0400255 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
256 if (!new_op)
257 return -ENOMEM;
258 new_op->upcall.req.features.features = 0;
259 ret = service_operation(new_op, "orangefs_features", 0);
260 orangefs_features = new_op->downcall.resp.features.features;
261 op_release(new_op);
262 } else {
263 orangefs_features = 0;
264 }
265
Mike Marshall1182fca2015-07-17 10:38:15 -0400266 return ret;
267}
268
269int fsid_key_table_initialize(void)
270{
271 return 0;
272}
273
274void fsid_key_table_finalize(void)
275{
276}
277
278/* Called whenever the VFS dirties the inode in response to atime updates */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500279static void orangefs_dirty_inode(struct inode *inode, int flags)
Mike Marshall1182fca2015-07-17 10:38:15 -0400280{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500281 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Mike Marshall1182fca2015-07-17 10:38:15 -0400282
283 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500284 "orangefs_dirty_inode: %pU\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400285 get_khandle_from_ino(inode));
Yi Liu8bb8aef2015-11-24 15:12:14 -0500286 SetAtimeFlag(orangefs_inode);
Mike Marshall1182fca2015-07-17 10:38:15 -0400287}
288
Yi Liu8bb8aef2015-11-24 15:12:14 -0500289static const struct super_operations orangefs_s_ops = {
290 .alloc_inode = orangefs_alloc_inode,
291 .destroy_inode = orangefs_destroy_inode,
292 .dirty_inode = orangefs_dirty_inode,
Mike Marshall1182fca2015-07-17 10:38:15 -0400293 .drop_inode = generic_delete_inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500294 .statfs = orangefs_statfs,
295 .remount_fs = orangefs_remount_fs,
Mike Marshall1182fca2015-07-17 10:38:15 -0400296 .show_options = generic_show_options,
297};
298
Yi Liu8bb8aef2015-11-24 15:12:14 -0500299static struct dentry *orangefs_fh_to_dentry(struct super_block *sb,
Mike Marshall1182fca2015-07-17 10:38:15 -0400300 struct fid *fid,
301 int fh_len,
302 int fh_type)
303{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500304 struct orangefs_object_kref refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400305
306 if (fh_len < 5 || fh_type > 2)
307 return NULL;
308
Yi Liu8bb8aef2015-11-24 15:12:14 -0500309 ORANGEFS_khandle_from(&(refn.khandle), fid->raw, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400310 refn.fs_id = (u32) fid->raw[4];
311 gossip_debug(GOSSIP_SUPER_DEBUG,
312 "fh_to_dentry: handle %pU, fs_id %d\n",
313 &refn.khandle,
314 refn.fs_id);
315
Yi Liu8bb8aef2015-11-24 15:12:14 -0500316 return d_obtain_alias(orangefs_iget(sb, &refn));
Mike Marshall1182fca2015-07-17 10:38:15 -0400317}
318
Yi Liu8bb8aef2015-11-24 15:12:14 -0500319static int orangefs_encode_fh(struct inode *inode,
Mike Marshall1182fca2015-07-17 10:38:15 -0400320 __u32 *fh,
321 int *max_len,
322 struct inode *parent)
323{
324 int len = parent ? 10 : 5;
325 int type = 1;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500326 struct orangefs_object_kref refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400327
328 if (*max_len < len) {
329 gossip_lerr("fh buffer is too small for encoding\n");
330 *max_len = len;
331 type = 255;
332 goto out;
333 }
334
Yi Liu8bb8aef2015-11-24 15:12:14 -0500335 refn = ORANGEFS_I(inode)->refn;
336 ORANGEFS_khandle_to(&refn.khandle, fh, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400337 fh[4] = refn.fs_id;
338
339 gossip_debug(GOSSIP_SUPER_DEBUG,
340 "Encoding fh: handle %pU, fsid %u\n",
341 &refn.khandle,
342 refn.fs_id);
343
344
345 if (parent) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500346 refn = ORANGEFS_I(parent)->refn;
347 ORANGEFS_khandle_to(&refn.khandle, (char *) fh + 20, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400348 fh[9] = refn.fs_id;
349
350 type = 2;
351 gossip_debug(GOSSIP_SUPER_DEBUG,
352 "Encoding parent: handle %pU, fsid %u\n",
353 &refn.khandle,
354 refn.fs_id);
355 }
356 *max_len = len;
357
358out:
359 return type;
360}
361
Julia Lawallacaca362016-01-01 10:01:52 +0100362static const struct export_operations orangefs_export_ops = {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500363 .encode_fh = orangefs_encode_fh,
364 .fh_to_dentry = orangefs_fh_to_dentry,
Mike Marshall1182fca2015-07-17 10:38:15 -0400365};
366
Yi Liu8bb8aef2015-11-24 15:12:14 -0500367static int orangefs_fill_sb(struct super_block *sb,
368 struct orangefs_fs_mount_response *fs_mount,
Al Viro5c0dbbc2015-10-08 20:22:43 -0400369 void *data, int silent)
Mike Marshall1182fca2015-07-17 10:38:15 -0400370{
371 int ret = -EINVAL;
372 struct inode *root = NULL;
373 struct dentry *root_dentry = NULL;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500374 struct orangefs_object_kref root_object;
Mike Marshall1182fca2015-07-17 10:38:15 -0400375
Yi Liu8bb8aef2015-11-24 15:12:14 -0500376 /* alloc and init our private orangefs sb info */
Martin Brandenburg05d31c52016-03-18 13:36:45 -0400377 sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500378 if (!ORANGEFS_SB(sb))
Mike Marshall1182fca2015-07-17 10:38:15 -0400379 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500380 ORANGEFS_SB(sb)->sb = sb;
Mike Marshall1182fca2015-07-17 10:38:15 -0400381
Yi Liu8bb8aef2015-11-24 15:12:14 -0500382 ORANGEFS_SB(sb)->root_khandle = fs_mount->root_khandle;
383 ORANGEFS_SB(sb)->fs_id = fs_mount->fs_id;
384 ORANGEFS_SB(sb)->id = fs_mount->id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400385
Al Viro5c0dbbc2015-10-08 20:22:43 -0400386 if (data) {
387 ret = parse_mount_options(sb, data, silent);
Mike Marshall1182fca2015-07-17 10:38:15 -0400388 if (ret)
389 return ret;
390 }
391
392 /* Hang the xattr handlers off the superblock */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500393 sb->s_xattr = orangefs_xattr_handlers;
394 sb->s_magic = ORANGEFS_SUPER_MAGIC;
395 sb->s_op = &orangefs_s_ops;
396 sb->s_d_op = &orangefs_dentry_operations;
Mike Marshall1182fca2015-07-17 10:38:15 -0400397
Yi Liu8bb8aef2015-11-24 15:12:14 -0500398 sb->s_blocksize = orangefs_bufmap_size_query();
399 sb->s_blocksize_bits = orangefs_bufmap_shift_query();
Mike Marshall1182fca2015-07-17 10:38:15 -0400400 sb->s_maxbytes = MAX_LFS_FILESIZE;
401
Yi Liu8bb8aef2015-11-24 15:12:14 -0500402 root_object.khandle = ORANGEFS_SB(sb)->root_khandle;
403 root_object.fs_id = ORANGEFS_SB(sb)->fs_id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400404 gossip_debug(GOSSIP_SUPER_DEBUG,
405 "get inode %pU, fsid %d\n",
406 &root_object.khandle,
407 root_object.fs_id);
408
Yi Liu8bb8aef2015-11-24 15:12:14 -0500409 root = orangefs_iget(sb, &root_object);
Mike Marshall1182fca2015-07-17 10:38:15 -0400410 if (IS_ERR(root))
411 return PTR_ERR(root);
412
413 gossip_debug(GOSSIP_SUPER_DEBUG,
414 "Allocated root inode [%p] with mode %x\n",
415 root,
416 root->i_mode);
417
418 /* allocates and places root dentry in dcache */
419 root_dentry = d_make_root(root);
Al Virob05a7852015-10-08 20:18:00 -0400420 if (!root_dentry)
Mike Marshall1182fca2015-07-17 10:38:15 -0400421 return -ENOMEM;
Mike Marshall1182fca2015-07-17 10:38:15 -0400422
Yi Liu8bb8aef2015-11-24 15:12:14 -0500423 sb->s_export_op = &orangefs_export_ops;
Mike Marshall1182fca2015-07-17 10:38:15 -0400424 sb->s_root = root_dentry;
425 return 0;
426}
427
Yi Liu8bb8aef2015-11-24 15:12:14 -0500428struct dentry *orangefs_mount(struct file_system_type *fst,
Mike Marshall1182fca2015-07-17 10:38:15 -0400429 int flags,
430 const char *devname,
431 void *data)
432{
433 int ret = -EINVAL;
434 struct super_block *sb = ERR_PTR(-EINVAL);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500435 struct orangefs_kernel_op_s *new_op;
Mike Marshall1be21f82015-09-29 15:26:37 -0400436 struct dentry *d = ERR_PTR(-EINVAL);
Mike Marshall1182fca2015-07-17 10:38:15 -0400437
438 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500439 "orangefs_mount: called with devname %s\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400440 devname);
441
442 if (!devname) {
443 gossip_err("ERROR: device name not specified.\n");
444 return ERR_PTR(-EINVAL);
445 }
446
Yi Liu8bb8aef2015-11-24 15:12:14 -0500447 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
Mike Marshall1182fca2015-07-17 10:38:15 -0400448 if (!new_op)
449 return ERR_PTR(-ENOMEM);
450
Yi Liu8bb8aef2015-11-24 15:12:14 -0500451 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
Mike Marshall1182fca2015-07-17 10:38:15 -0400452 devname,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500453 ORANGEFS_MAX_SERVER_ADDR_LEN);
Mike Marshall1182fca2015-07-17 10:38:15 -0400454
455 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500456 "Attempting ORANGEFS Mount via host %s\n",
457 new_op->upcall.req.fs_mount.orangefs_config_server);
Mike Marshall1182fca2015-07-17 10:38:15 -0400458
Yi Liu8bb8aef2015-11-24 15:12:14 -0500459 ret = service_operation(new_op, "orangefs_mount", 0);
Mike Marshall1182fca2015-07-17 10:38:15 -0400460 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500461 "orangefs_mount: mount got return value of %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400462 if (ret)
463 goto free_op;
464
Yi Liu8bb8aef2015-11-24 15:12:14 -0500465 if (new_op->downcall.resp.fs_mount.fs_id == ORANGEFS_FS_ID_NULL) {
Mike Marshall1182fca2015-07-17 10:38:15 -0400466 gossip_err("ERROR: Retrieved null fs_id\n");
467 ret = -EINVAL;
468 goto free_op;
469 }
470
Mike Marshall1be21f82015-09-29 15:26:37 -0400471 sb = sget(fst, NULL, set_anon_super, flags, NULL);
472
473 if (IS_ERR(sb)) {
474 d = ERR_CAST(sb);
Mike Marshall1182fca2015-07-17 10:38:15 -0400475 goto free_op;
476 }
477
Yi Liu8bb8aef2015-11-24 15:12:14 -0500478 ret = orangefs_fill_sb(sb,
Al Viro5c0dbbc2015-10-08 20:22:43 -0400479 &new_op->downcall.resp.fs_mount, data,
Mike Marshall1be21f82015-09-29 15:26:37 -0400480 flags & MS_SILENT ? 1 : 0);
481
482 if (ret) {
483 d = ERR_PTR(ret);
484 goto free_op;
485 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400486
487 /*
488 * on successful mount, store the devname and data
489 * used
490 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500491 strncpy(ORANGEFS_SB(sb)->devname,
Mike Marshall1182fca2015-07-17 10:38:15 -0400492 devname,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500493 ORANGEFS_MAX_SERVER_ADDR_LEN);
Mike Marshall1182fca2015-07-17 10:38:15 -0400494
495 /* mount_pending must be cleared */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500496 ORANGEFS_SB(sb)->mount_pending = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400497
498 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500499 * finally, add this sb to our list of known orangefs
Mike Marshall1182fca2015-07-17 10:38:15 -0400500 * sb's
501 */
Al Viro45996492016-03-25 19:56:34 -0400502 gossip_debug(GOSSIP_SUPER_DEBUG,
503 "Adding SB %p to orangefs superblocks\n",
504 ORANGEFS_SB(sb));
505 spin_lock(&orangefs_superblocks_lock);
506 list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks);
507 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall1182fca2015-07-17 10:38:15 -0400508 op_release(new_op);
Martin Brandenburg482664d2016-08-12 12:02:31 -0400509
Mike Marshallf60fbdb2016-10-03 15:07:36 -0400510 if (orangefs_userspace_version >= 20906) {
Martin Brandenburg482664d2016-08-12 12:02:31 -0400511 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
512 if (!new_op)
513 return ERR_PTR(-ENOMEM);
514 new_op->upcall.req.features.features = 0;
515 ret = service_operation(new_op, "orangefs_features", 0);
516 orangefs_features = new_op->downcall.resp.features.features;
517 op_release(new_op);
518 } else {
519 orangefs_features = 0;
520 }
521
Mike Marshall1be21f82015-09-29 15:26:37 -0400522 return dget(sb->s_root);
Mike Marshall1182fca2015-07-17 10:38:15 -0400523
524free_op:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500525 gossip_err("orangefs_mount: mount request failed with %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400526 if (ret == -EINVAL) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500527 gossip_err("Ensure that all orangefs-servers have the same FS configuration files\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400528 gossip_err("Look at pvfs2-client-core log file (typically /tmp/pvfs2-client.log) for more details\n");
529 }
530
531 op_release(new_op);
532
Mike Marshall1be21f82015-09-29 15:26:37 -0400533 return d;
Mike Marshall1182fca2015-07-17 10:38:15 -0400534}
535
Yi Liu8bb8aef2015-11-24 15:12:14 -0500536void orangefs_kill_sb(struct super_block *sb)
Mike Marshall1182fca2015-07-17 10:38:15 -0400537{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500538 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_kill_sb: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400539
Al Viro524b1d32016-02-16 21:08:29 -0500540 /* provided sb cleanup */
541 kill_anon_super(sb);
542
Mike Marshall1182fca2015-07-17 10:38:15 -0400543 /*
544 * issue the unmount to userspace to tell it to remove the
545 * dynamic mount info it has for this superblock
546 */
Al Viro45996492016-03-25 19:56:34 -0400547 orangefs_unmount_sb(sb);
Mike Marshall1182fca2015-07-17 10:38:15 -0400548
Yi Liu8bb8aef2015-11-24 15:12:14 -0500549 /* remove the sb from our list of orangefs specific sb's */
Al Viro45996492016-03-25 19:56:34 -0400550
551 spin_lock(&orangefs_superblocks_lock);
552 __list_del_entry(&ORANGEFS_SB(sb)->list); /* not list_del_init */
553 ORANGEFS_SB(sb)->list.prev = NULL;
554 spin_unlock(&orangefs_superblocks_lock);
555
556 /*
557 * make sure that ORANGEFS_DEV_REMOUNT_ALL loop that might've seen us
558 * gets completed before we free the dang thing.
559 */
Martin Brandenburg1d503612016-08-16 11:38:14 -0400560 mutex_lock(&orangefs_request_mutex);
561 mutex_unlock(&orangefs_request_mutex);
Mike Marshall1182fca2015-07-17 10:38:15 -0400562
Yi Liu8bb8aef2015-11-24 15:12:14 -0500563 /* free the orangefs superblock private data */
564 kfree(ORANGEFS_SB(sb));
Mike Marshall1182fca2015-07-17 10:38:15 -0400565}
566
Yi Liu8bb8aef2015-11-24 15:12:14 -0500567int orangefs_inode_cache_initialize(void)
Mike Marshall1182fca2015-07-17 10:38:15 -0400568{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500569 orangefs_inode_cache = kmem_cache_create("orangefs_inode_cache",
570 sizeof(struct orangefs_inode_s),
Mike Marshall1182fca2015-07-17 10:38:15 -0400571 0,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500572 ORANGEFS_CACHE_CREATE_FLAGS,
573 orangefs_inode_cache_ctor);
Mike Marshall1182fca2015-07-17 10:38:15 -0400574
Yi Liu8bb8aef2015-11-24 15:12:14 -0500575 if (!orangefs_inode_cache) {
576 gossip_err("Cannot create orangefs_inode_cache\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400577 return -ENOMEM;
578 }
579 return 0;
580}
581
Yi Liu8bb8aef2015-11-24 15:12:14 -0500582int orangefs_inode_cache_finalize(void)
Mike Marshall1182fca2015-07-17 10:38:15 -0400583{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500584 kmem_cache_destroy(orangefs_inode_cache);
Mike Marshall1182fca2015-07-17 10:38:15 -0400585 return 0;
586}