blob: 8bb0a53a658b061b4dc0dc5c47fa191c660ce038 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Mike Marshall1182fca2015-07-17 10:38:15 -04002/*
3 * (C) 2001 Clemson University and The University of Chicago
4 *
5 * See COPYING in top-level directory.
6 */
7
8#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -05009#include "orangefs-kernel.h"
10#include "orangefs-bufmap.h"
Mike Marshall1182fca2015-07-17 10:38:15 -040011
12#include <linux/parser.h>
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -050013#include <linux/hashtable.h>
Christoph Hellwige41d12f2021-09-20 14:33:13 +020014#include <linux/seq_file.h>
Mike Marshall1182fca2015-07-17 10:38:15 -040015
Yi Liu8bb8aef2015-11-24 15:12:14 -050016/* a cache for orangefs-inode objects (i.e. orangefs inode private data) */
17static struct kmem_cache *orangefs_inode_cache;
Mike Marshall1182fca2015-07-17 10:38:15 -040018
Yi Liu8bb8aef2015-11-24 15:12:14 -050019/* list for storing orangefs specific superblocks in use */
20LIST_HEAD(orangefs_superblocks);
Mike Marshall1182fca2015-07-17 10:38:15 -040021
Yi Liu8bb8aef2015-11-24 15:12:14 -050022DEFINE_SPINLOCK(orangefs_superblocks_lock);
Mike Marshall1182fca2015-07-17 10:38:15 -040023
24enum {
25 Opt_intr,
26 Opt_acl,
27 Opt_local_lock,
28
29 Opt_err
30};
31
32static const match_table_t tokens = {
33 { Opt_acl, "acl" },
34 { Opt_intr, "intr" },
35 { Opt_local_lock, "local_lock" },
36 { Opt_err, NULL }
37};
38
Martin Brandenburg482664d2016-08-12 12:02:31 -040039uint64_t orangefs_features;
Mike Marshall1182fca2015-07-17 10:38:15 -040040
David Howells4dfdb712017-07-05 16:25:45 +010041static int orangefs_show_options(struct seq_file *m, struct dentry *root)
42{
43 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(root->d_sb);
44
Linus Torvalds1751e8a2017-11-27 13:05:09 -080045 if (root->d_sb->s_flags & SB_POSIXACL)
David Howells4dfdb712017-07-05 16:25:45 +010046 seq_puts(m, ",acl");
47 if (orangefs_sb->flags & ORANGEFS_OPT_INTR)
48 seq_puts(m, ",intr");
49 if (orangefs_sb->flags & ORANGEFS_OPT_LOCAL_LOCK)
50 seq_puts(m, ",local_lock");
51 return 0;
52}
53
Mike Marshall1182fca2015-07-17 10:38:15 -040054static int parse_mount_options(struct super_block *sb, char *options,
55 int silent)
56{
Yi Liu8bb8aef2015-11-24 15:12:14 -050057 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(sb);
Mike Marshall1182fca2015-07-17 10:38:15 -040058 substring_t args[MAX_OPT_ARGS];
59 char *p;
60
61 /*
62 * Force any potential flags that might be set from the mount
63 * to zero, ie, initialize to unset.
64 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -080065 sb->s_flags &= ~SB_POSIXACL;
Yi Liu8bb8aef2015-11-24 15:12:14 -050066 orangefs_sb->flags &= ~ORANGEFS_OPT_INTR;
67 orangefs_sb->flags &= ~ORANGEFS_OPT_LOCAL_LOCK;
Mike Marshall1182fca2015-07-17 10:38:15 -040068
69 while ((p = strsep(&options, ",")) != NULL) {
70 int token;
71
72 if (!*p)
73 continue;
74
75 token = match_token(p, tokens, args);
76 switch (token) {
77 case Opt_acl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -080078 sb->s_flags |= SB_POSIXACL;
Mike Marshall1182fca2015-07-17 10:38:15 -040079 break;
80 case Opt_intr:
Yi Liu8bb8aef2015-11-24 15:12:14 -050081 orangefs_sb->flags |= ORANGEFS_OPT_INTR;
Mike Marshall1182fca2015-07-17 10:38:15 -040082 break;
83 case Opt_local_lock:
Yi Liu8bb8aef2015-11-24 15:12:14 -050084 orangefs_sb->flags |= ORANGEFS_OPT_LOCAL_LOCK;
Mike Marshall1182fca2015-07-17 10:38:15 -040085 break;
86 default:
87 goto fail;
88 }
89 }
90
91 return 0;
92fail:
93 if (!silent)
94 gossip_err("Error: mount option [%s] is not supported.\n", p);
95 return -EINVAL;
96}
97
Yi Liu8bb8aef2015-11-24 15:12:14 -050098static void orangefs_inode_cache_ctor(void *req)
Mike Marshall1182fca2015-07-17 10:38:15 -040099{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500100 struct orangefs_inode_s *orangefs_inode = req;
Mike Marshall1182fca2015-07-17 10:38:15 -0400101
Yi Liu8bb8aef2015-11-24 15:12:14 -0500102 inode_init_once(&orangefs_inode->vfs_inode);
103 init_rwsem(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400104}
105
Yi Liu8bb8aef2015-11-24 15:12:14 -0500106static struct inode *orangefs_alloc_inode(struct super_block *sb)
Mike Marshall1182fca2015-07-17 10:38:15 -0400107{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500108 struct orangefs_inode_s *orangefs_inode;
Mike Marshall1182fca2015-07-17 10:38:15 -0400109
Mike Marshall2d4cae02016-02-04 13:48:16 -0500110 orangefs_inode = kmem_cache_alloc(orangefs_inode_cache, GFP_KERNEL);
Markus Elfring07a25852017-08-17 21:00:07 +0200111 if (!orangefs_inode)
Mike Marshall1182fca2015-07-17 10:38:15 -0400112 return NULL;
Mike Marshall1182fca2015-07-17 10:38:15 -0400113
114 /*
115 * We want to clear everything except for rw_semaphore and the
116 * vfs_inode.
117 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500118 memset(&orangefs_inode->refn.khandle, 0, 16);
119 orangefs_inode->refn.fs_id = ORANGEFS_FS_ID_NULL;
120 orangefs_inode->last_failed_block_index_read = 0;
121 memset(orangefs_inode->link_target, 0, sizeof(orangefs_inode->link_target));
Mike Marshall1182fca2015-07-17 10:38:15 -0400122
123 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500124 "orangefs_alloc_inode: allocated %p\n",
125 &orangefs_inode->vfs_inode);
126 return &orangefs_inode->vfs_inode;
Mike Marshall1182fca2015-07-17 10:38:15 -0400127}
128
Al Virof276ae02019-04-16 11:43:02 -0400129static void orangefs_free_inode(struct inode *inode)
Peter Zijlstra0695d7d2017-02-24 16:43:36 +0100130{
Peter Zijlstra0695d7d2017-02-24 16:43:36 +0100131 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500132 struct orangefs_cached_xattr *cx;
133 struct hlist_node *tmp;
134 int i;
135
136 hash_for_each_safe(orangefs_inode->xattr_cache, i, tmp, cx, node) {
137 hlist_del(&cx->node);
138 kfree(cx);
139 }
140
Peter Zijlstra0695d7d2017-02-24 16:43:36 +0100141 kmem_cache_free(orangefs_inode_cache, orangefs_inode);
142}
143
Yi Liu8bb8aef2015-11-24 15:12:14 -0500144static void orangefs_destroy_inode(struct inode *inode)
Mike Marshall1182fca2015-07-17 10:38:15 -0400145{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500146 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Mike Marshall1182fca2015-07-17 10:38:15 -0400147
148 gossip_debug(GOSSIP_SUPER_DEBUG,
149 "%s: deallocated %p destroying inode %pU\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500150 __func__, orangefs_inode, get_khandle_from_ino(inode));
Mike Marshall1182fca2015-07-17 10:38:15 -0400151}
152
Martin Brandenburgdf2d7332018-02-12 20:29:37 +0000153static int orangefs_write_inode(struct inode *inode,
154 struct writeback_control *wbc)
155{
Martin Brandenburgdf2d7332018-02-12 20:29:37 +0000156 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_write_inode\n");
Martin Brandenburgafd9fb22018-02-13 20:13:46 +0000157 return orangefs_inode_setattr(inode);
Martin Brandenburgdf2d7332018-02-12 20:29:37 +0000158}
159
Mike Marshall1182fca2015-07-17 10:38:15 -0400160/*
161 * NOTE: information filled in here is typically reflected in the
162 * output of the system command 'df'
163*/
Yi Liu8bb8aef2015-11-24 15:12:14 -0500164static int orangefs_statfs(struct dentry *dentry, struct kstatfs *buf)
Mike Marshall1182fca2015-07-17 10:38:15 -0400165{
166 int ret = -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500167 struct orangefs_kernel_op_s *new_op = NULL;
Mike Marshall1182fca2015-07-17 10:38:15 -0400168 int flags = 0;
169 struct super_block *sb = NULL;
170
171 sb = dentry->d_sb;
172
173 gossip_debug(GOSSIP_SUPER_DEBUG,
Mike Marshall95f5f882018-05-11 17:11:48 -0400174 "%s: called on sb %p (fs_id is %d)\n",
175 __func__,
176 sb,
177 (int)(ORANGEFS_SB(sb)->fs_id));
Mike Marshall1182fca2015-07-17 10:38:15 -0400178
Yi Liu8bb8aef2015-11-24 15:12:14 -0500179 new_op = op_alloc(ORANGEFS_VFS_OP_STATFS);
Mike Marshall1182fca2015-07-17 10:38:15 -0400180 if (!new_op)
181 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500182 new_op->upcall.req.statfs.fs_id = ORANGEFS_SB(sb)->fs_id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400183
Yi Liu8bb8aef2015-11-24 15:12:14 -0500184 if (ORANGEFS_SB(sb)->flags & ORANGEFS_OPT_INTR)
185 flags = ORANGEFS_OP_INTERRUPTIBLE;
Mike Marshall1182fca2015-07-17 10:38:15 -0400186
Yi Liu8bb8aef2015-11-24 15:12:14 -0500187 ret = service_operation(new_op, "orangefs_statfs", flags);
Mike Marshall1182fca2015-07-17 10:38:15 -0400188
189 if (new_op->downcall.status < 0)
190 goto out_op_release;
191
192 gossip_debug(GOSSIP_SUPER_DEBUG,
Mike Marshallbe573662016-01-13 11:38:14 -0500193 "%s: got %ld blocks available | "
194 "%ld blocks total | %ld block size | "
195 "%ld files total | %ld files avail\n",
196 __func__,
Mike Marshall1182fca2015-07-17 10:38:15 -0400197 (long)new_op->downcall.resp.statfs.blocks_avail,
198 (long)new_op->downcall.resp.statfs.blocks_total,
Mike Marshallbe573662016-01-13 11:38:14 -0500199 (long)new_op->downcall.resp.statfs.block_size,
200 (long)new_op->downcall.resp.statfs.files_total,
201 (long)new_op->downcall.resp.statfs.files_avail);
Mike Marshall1182fca2015-07-17 10:38:15 -0400202
203 buf->f_type = sb->s_magic;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500204 memcpy(&buf->f_fsid, &ORANGEFS_SB(sb)->fs_id, sizeof(buf->f_fsid));
Mike Marshall1182fca2015-07-17 10:38:15 -0400205 buf->f_bsize = new_op->downcall.resp.statfs.block_size;
Martin Brandenburg47b49482016-02-20 14:22:40 -0500206 buf->f_namelen = ORANGEFS_NAME_MAX;
Mike Marshall1182fca2015-07-17 10:38:15 -0400207
208 buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total;
209 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
210 buf->f_bavail = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
211 buf->f_files = (sector_t) new_op->downcall.resp.statfs.files_total;
212 buf->f_ffree = (sector_t) new_op->downcall.resp.statfs.files_avail;
Mike Marshall0fdec1b32021-05-18 08:09:13 -0400213 buf->f_frsize = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400214
215out_op_release:
216 op_release(new_op);
Mike Marshall95f5f882018-05-11 17:11:48 -0400217 gossip_debug(GOSSIP_SUPER_DEBUG, "%s: returning %d\n", __func__, ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400218 return ret;
219}
220
221/*
222 * Remount as initiated by VFS layer. We just need to reparse the mount
223 * options, no need to signal pvfs2-client-core about it.
224 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500225static int orangefs_remount_fs(struct super_block *sb, int *flags, char *data)
Mike Marshall1182fca2015-07-17 10:38:15 -0400226{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500227 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount_fs: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400228 return parse_mount_options(sb, data, 1);
229}
230
231/*
232 * Remount as initiated by pvfs2-client-core on restart. This is used to
233 * repopulate mount information left from previous pvfs2-client-core.
234 *
235 * the idea here is that given a valid superblock, we're
236 * re-initializing the user space client with the initial mount
237 * information specified when the super block was first initialized.
238 * this is very different than the first initialization/creation of a
239 * superblock. we use the special service_priority_operation to make
240 * sure that the mount gets ahead of any other pending operation that
241 * is waiting for servicing. this means that the pvfs2-client won't
242 * fail to start several times for all other pending operations before
243 * the client regains all of the mount information from us.
244 * NOTE: this function assumes that the request_mutex is already acquired!
245 */
Al Viro45996492016-03-25 19:56:34 -0400246int orangefs_remount(struct orangefs_sb_info_s *orangefs_sb)
Mike Marshall1182fca2015-07-17 10:38:15 -0400247{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500248 struct orangefs_kernel_op_s *new_op;
Mike Marshall1182fca2015-07-17 10:38:15 -0400249 int ret = -EINVAL;
250
Yi Liu8bb8aef2015-11-24 15:12:14 -0500251 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400252
Yi Liu8bb8aef2015-11-24 15:12:14 -0500253 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
Mike Marshall1182fca2015-07-17 10:38:15 -0400254 if (!new_op)
255 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500256 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
Al Viro45996492016-03-25 19:56:34 -0400257 orangefs_sb->devname,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500258 ORANGEFS_MAX_SERVER_ADDR_LEN);
Mike Marshall1182fca2015-07-17 10:38:15 -0400259
260 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500261 "Attempting ORANGEFS Remount via host %s\n",
262 new_op->upcall.req.fs_mount.orangefs_config_server);
Mike Marshall1182fca2015-07-17 10:38:15 -0400263
264 /*
Mike Marshalladcf34a2016-02-24 16:54:27 -0500265 * we assume that the calling function has already acquired the
Mike Marshall1182fca2015-07-17 10:38:15 -0400266 * request_mutex to prevent other operations from bypassing
267 * this one
268 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500269 ret = service_operation(new_op, "orangefs_remount",
Mike Marshalladcf34a2016-02-24 16:54:27 -0500270 ORANGEFS_OP_PRIORITY | ORANGEFS_OP_NO_MUTEX);
Mike Marshall1182fca2015-07-17 10:38:15 -0400271 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500272 "orangefs_remount: mount got return value of %d\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400273 ret);
274 if (ret == 0) {
275 /*
276 * store the id assigned to this sb -- it's just a
277 * short-lived mapping that the system interface uses
278 * to map this superblock to a particular mount entry
279 */
Al Viro45996492016-03-25 19:56:34 -0400280 orangefs_sb->id = new_op->downcall.resp.fs_mount.id;
281 orangefs_sb->mount_pending = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400282 }
283
284 op_release(new_op);
Martin Brandenburg482664d2016-08-12 12:02:31 -0400285
Mike Marshallf60fbdb2016-10-03 15:07:36 -0400286 if (orangefs_userspace_version >= 20906) {
Martin Brandenburg482664d2016-08-12 12:02:31 -0400287 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
288 if (!new_op)
289 return -ENOMEM;
290 new_op->upcall.req.features.features = 0;
Martin Brandenburgcefdc262017-04-06 18:11:00 -0400291 ret = service_operation(new_op, "orangefs_features",
292 ORANGEFS_OP_PRIORITY | ORANGEFS_OP_NO_MUTEX);
293 if (!ret)
294 orangefs_features =
295 new_op->downcall.resp.features.features;
296 else
297 orangefs_features = 0;
Martin Brandenburg482664d2016-08-12 12:02:31 -0400298 op_release(new_op);
299 } else {
300 orangefs_features = 0;
301 }
302
Mike Marshall1182fca2015-07-17 10:38:15 -0400303 return ret;
304}
305
306int fsid_key_table_initialize(void)
307{
308 return 0;
309}
310
311void fsid_key_table_finalize(void)
312{
313}
314
Yi Liu8bb8aef2015-11-24 15:12:14 -0500315static const struct super_operations orangefs_s_ops = {
316 .alloc_inode = orangefs_alloc_inode,
Al Virof276ae02019-04-16 11:43:02 -0400317 .free_inode = orangefs_free_inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500318 .destroy_inode = orangefs_destroy_inode,
Martin Brandenburgdf2d7332018-02-12 20:29:37 +0000319 .write_inode = orangefs_write_inode,
Mike Marshall1182fca2015-07-17 10:38:15 -0400320 .drop_inode = generic_delete_inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500321 .statfs = orangefs_statfs,
322 .remount_fs = orangefs_remount_fs,
David Howells4dfdb712017-07-05 16:25:45 +0100323 .show_options = orangefs_show_options,
Mike Marshall1182fca2015-07-17 10:38:15 -0400324};
325
Yi Liu8bb8aef2015-11-24 15:12:14 -0500326static struct dentry *orangefs_fh_to_dentry(struct super_block *sb,
Mike Marshall1182fca2015-07-17 10:38:15 -0400327 struct fid *fid,
328 int fh_len,
329 int fh_type)
330{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500331 struct orangefs_object_kref refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400332
333 if (fh_len < 5 || fh_type > 2)
334 return NULL;
335
Yi Liu8bb8aef2015-11-24 15:12:14 -0500336 ORANGEFS_khandle_from(&(refn.khandle), fid->raw, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400337 refn.fs_id = (u32) fid->raw[4];
338 gossip_debug(GOSSIP_SUPER_DEBUG,
339 "fh_to_dentry: handle %pU, fs_id %d\n",
340 &refn.khandle,
341 refn.fs_id);
342
Yi Liu8bb8aef2015-11-24 15:12:14 -0500343 return d_obtain_alias(orangefs_iget(sb, &refn));
Mike Marshall1182fca2015-07-17 10:38:15 -0400344}
345
Yi Liu8bb8aef2015-11-24 15:12:14 -0500346static int orangefs_encode_fh(struct inode *inode,
Mike Marshall1182fca2015-07-17 10:38:15 -0400347 __u32 *fh,
348 int *max_len,
349 struct inode *parent)
350{
351 int len = parent ? 10 : 5;
352 int type = 1;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500353 struct orangefs_object_kref refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400354
355 if (*max_len < len) {
Martin Brandenburg79d7cd62018-01-26 14:07:12 -0500356 gossip_err("fh buffer is too small for encoding\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400357 *max_len = len;
358 type = 255;
359 goto out;
360 }
361
Yi Liu8bb8aef2015-11-24 15:12:14 -0500362 refn = ORANGEFS_I(inode)->refn;
363 ORANGEFS_khandle_to(&refn.khandle, fh, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400364 fh[4] = refn.fs_id;
365
366 gossip_debug(GOSSIP_SUPER_DEBUG,
367 "Encoding fh: handle %pU, fsid %u\n",
368 &refn.khandle,
369 refn.fs_id);
370
371
372 if (parent) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500373 refn = ORANGEFS_I(parent)->refn;
374 ORANGEFS_khandle_to(&refn.khandle, (char *) fh + 20, 16);
Mike Marshall1182fca2015-07-17 10:38:15 -0400375 fh[9] = refn.fs_id;
376
377 type = 2;
378 gossip_debug(GOSSIP_SUPER_DEBUG,
379 "Encoding parent: handle %pU, fsid %u\n",
380 &refn.khandle,
381 refn.fs_id);
382 }
383 *max_len = len;
384
385out:
386 return type;
387}
388
Julia Lawallacaca362016-01-01 10:01:52 +0100389static const struct export_operations orangefs_export_ops = {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500390 .encode_fh = orangefs_encode_fh,
391 .fh_to_dentry = orangefs_fh_to_dentry,
Mike Marshall1182fca2015-07-17 10:38:15 -0400392};
393
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400394static int orangefs_unmount(int id, __s32 fs_id, const char *devname)
395{
396 struct orangefs_kernel_op_s *op;
397 int r;
398 op = op_alloc(ORANGEFS_VFS_OP_FS_UMOUNT);
399 if (!op)
400 return -ENOMEM;
401 op->upcall.req.fs_umount.id = id;
402 op->upcall.req.fs_umount.fs_id = fs_id;
403 strncpy(op->upcall.req.fs_umount.orangefs_config_server,
Xiongfeng Wang6bdfb482018-01-08 20:22:33 +0800404 devname, ORANGEFS_MAX_SERVER_ADDR_LEN - 1);
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400405 r = service_operation(op, "orangefs_fs_umount", 0);
406 /* Not much to do about an error here. */
407 if (r)
408 gossip_err("orangefs_unmount: service_operation %d\n", r);
409 op_release(op);
410 return r;
411}
412
Yi Liu8bb8aef2015-11-24 15:12:14 -0500413static int orangefs_fill_sb(struct super_block *sb,
414 struct orangefs_fs_mount_response *fs_mount,
Al Viro5c0dbbc2015-10-08 20:22:43 -0400415 void *data, int silent)
Mike Marshall1182fca2015-07-17 10:38:15 -0400416{
Martin Brandenburgf2d34c72018-02-12 20:28:42 +0000417 int ret;
418 struct inode *root;
419 struct dentry *root_dentry;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500420 struct orangefs_object_kref root_object;
Mike Marshall1182fca2015-07-17 10:38:15 -0400421
Yi Liu8bb8aef2015-11-24 15:12:14 -0500422 ORANGEFS_SB(sb)->sb = sb;
Mike Marshall1182fca2015-07-17 10:38:15 -0400423
Yi Liu8bb8aef2015-11-24 15:12:14 -0500424 ORANGEFS_SB(sb)->root_khandle = fs_mount->root_khandle;
425 ORANGEFS_SB(sb)->fs_id = fs_mount->fs_id;
426 ORANGEFS_SB(sb)->id = fs_mount->id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400427
Al Viro5c0dbbc2015-10-08 20:22:43 -0400428 if (data) {
429 ret = parse_mount_options(sb, data, silent);
Mike Marshall1182fca2015-07-17 10:38:15 -0400430 if (ret)
431 return ret;
432 }
433
434 /* Hang the xattr handlers off the superblock */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500435 sb->s_xattr = orangefs_xattr_handlers;
436 sb->s_magic = ORANGEFS_SUPER_MAGIC;
437 sb->s_op = &orangefs_s_ops;
438 sb->s_d_op = &orangefs_dentry_operations;
Mike Marshall1182fca2015-07-17 10:38:15 -0400439
Martin Brandenburg9f8fd532018-05-31 16:36:59 +0000440 sb->s_blocksize = PAGE_SIZE;
441 sb->s_blocksize_bits = PAGE_SHIFT;
Mike Marshall1182fca2015-07-17 10:38:15 -0400442 sb->s_maxbytes = MAX_LFS_FILESIZE;
443
Martin Brandenburgf2d34c72018-02-12 20:28:42 +0000444 ret = super_setup_bdi(sb);
445 if (ret)
446 return ret;
447
Yi Liu8bb8aef2015-11-24 15:12:14 -0500448 root_object.khandle = ORANGEFS_SB(sb)->root_khandle;
449 root_object.fs_id = ORANGEFS_SB(sb)->fs_id;
Mike Marshall1182fca2015-07-17 10:38:15 -0400450 gossip_debug(GOSSIP_SUPER_DEBUG,
451 "get inode %pU, fsid %d\n",
452 &root_object.khandle,
453 root_object.fs_id);
454
Yi Liu8bb8aef2015-11-24 15:12:14 -0500455 root = orangefs_iget(sb, &root_object);
Mike Marshall1182fca2015-07-17 10:38:15 -0400456 if (IS_ERR(root))
457 return PTR_ERR(root);
458
459 gossip_debug(GOSSIP_SUPER_DEBUG,
460 "Allocated root inode [%p] with mode %x\n",
461 root,
462 root->i_mode);
463
464 /* allocates and places root dentry in dcache */
465 root_dentry = d_make_root(root);
Al Virob05a7852015-10-08 20:18:00 -0400466 if (!root_dentry)
Mike Marshall1182fca2015-07-17 10:38:15 -0400467 return -ENOMEM;
Mike Marshall1182fca2015-07-17 10:38:15 -0400468
Yi Liu8bb8aef2015-11-24 15:12:14 -0500469 sb->s_export_op = &orangefs_export_ops;
Mike Marshall1182fca2015-07-17 10:38:15 -0400470 sb->s_root = root_dentry;
471 return 0;
472}
473
Yi Liu8bb8aef2015-11-24 15:12:14 -0500474struct dentry *orangefs_mount(struct file_system_type *fst,
Mike Marshall1182fca2015-07-17 10:38:15 -0400475 int flags,
476 const char *devname,
477 void *data)
478{
479 int ret = -EINVAL;
480 struct super_block *sb = ERR_PTR(-EINVAL);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500481 struct orangefs_kernel_op_s *new_op;
Mike Marshall1be21f82015-09-29 15:26:37 -0400482 struct dentry *d = ERR_PTR(-EINVAL);
Mike Marshall1182fca2015-07-17 10:38:15 -0400483
484 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500485 "orangefs_mount: called with devname %s\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400486 devname);
487
488 if (!devname) {
489 gossip_err("ERROR: device name not specified.\n");
490 return ERR_PTR(-EINVAL);
491 }
492
Yi Liu8bb8aef2015-11-24 15:12:14 -0500493 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
Mike Marshall1182fca2015-07-17 10:38:15 -0400494 if (!new_op)
495 return ERR_PTR(-ENOMEM);
496
Yi Liu8bb8aef2015-11-24 15:12:14 -0500497 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
Mike Marshall1182fca2015-07-17 10:38:15 -0400498 devname,
Xiongfeng Wang6bdfb482018-01-08 20:22:33 +0800499 ORANGEFS_MAX_SERVER_ADDR_LEN - 1);
Mike Marshall1182fca2015-07-17 10:38:15 -0400500
501 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500502 "Attempting ORANGEFS Mount via host %s\n",
503 new_op->upcall.req.fs_mount.orangefs_config_server);
Mike Marshall1182fca2015-07-17 10:38:15 -0400504
Yi Liu8bb8aef2015-11-24 15:12:14 -0500505 ret = service_operation(new_op, "orangefs_mount", 0);
Mike Marshall1182fca2015-07-17 10:38:15 -0400506 gossip_debug(GOSSIP_SUPER_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500507 "orangefs_mount: mount got return value of %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400508 if (ret)
509 goto free_op;
510
Yi Liu8bb8aef2015-11-24 15:12:14 -0500511 if (new_op->downcall.resp.fs_mount.fs_id == ORANGEFS_FS_ID_NULL) {
Mike Marshall1182fca2015-07-17 10:38:15 -0400512 gossip_err("ERROR: Retrieved null fs_id\n");
513 ret = -EINVAL;
514 goto free_op;
515 }
516
Mike Marshall1be21f82015-09-29 15:26:37 -0400517 sb = sget(fst, NULL, set_anon_super, flags, NULL);
518
519 if (IS_ERR(sb)) {
520 d = ERR_CAST(sb);
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400521 orangefs_unmount(new_op->downcall.resp.fs_mount.id,
522 new_op->downcall.resp.fs_mount.fs_id, devname);
Mike Marshall1182fca2015-07-17 10:38:15 -0400523 goto free_op;
524 }
525
Martin Brandenburgf2d34c72018-02-12 20:28:42 +0000526 /* alloc and init our private orangefs sb info */
527 sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
528 if (!ORANGEFS_SB(sb)) {
529 d = ERR_PTR(-ENOMEM);
530 goto free_op;
531 }
532
Yi Liu8bb8aef2015-11-24 15:12:14 -0500533 ret = orangefs_fill_sb(sb,
Al Viro5c0dbbc2015-10-08 20:22:43 -0400534 &new_op->downcall.resp.fs_mount, data,
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800535 flags & SB_SILENT ? 1 : 0);
Mike Marshall1be21f82015-09-29 15:26:37 -0400536
537 if (ret) {
538 d = ERR_PTR(ret);
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400539 goto free_sb_and_op;
Mike Marshall1be21f82015-09-29 15:26:37 -0400540 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400541
542 /*
543 * on successful mount, store the devname and data
544 * used
545 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500546 strncpy(ORANGEFS_SB(sb)->devname,
Mike Marshall1182fca2015-07-17 10:38:15 -0400547 devname,
Xiongfeng Wang6bdfb482018-01-08 20:22:33 +0800548 ORANGEFS_MAX_SERVER_ADDR_LEN - 1);
Mike Marshall1182fca2015-07-17 10:38:15 -0400549
550 /* mount_pending must be cleared */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500551 ORANGEFS_SB(sb)->mount_pending = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400552
553 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500554 * finally, add this sb to our list of known orangefs
Mike Marshall1182fca2015-07-17 10:38:15 -0400555 * sb's
556 */
Al Viro45996492016-03-25 19:56:34 -0400557 gossip_debug(GOSSIP_SUPER_DEBUG,
558 "Adding SB %p to orangefs superblocks\n",
559 ORANGEFS_SB(sb));
560 spin_lock(&orangefs_superblocks_lock);
561 list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks);
562 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall1182fca2015-07-17 10:38:15 -0400563 op_release(new_op);
Martin Brandenburg482664d2016-08-12 12:02:31 -0400564
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400565 /* Must be removed from the list now. */
566 ORANGEFS_SB(sb)->no_list = 0;
567
Mike Marshallf60fbdb2016-10-03 15:07:36 -0400568 if (orangefs_userspace_version >= 20906) {
Martin Brandenburg482664d2016-08-12 12:02:31 -0400569 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
570 if (!new_op)
571 return ERR_PTR(-ENOMEM);
572 new_op->upcall.req.features.features = 0;
573 ret = service_operation(new_op, "orangefs_features", 0);
574 orangefs_features = new_op->downcall.resp.features.features;
575 op_release(new_op);
576 } else {
577 orangefs_features = 0;
578 }
579
Mike Marshall1be21f82015-09-29 15:26:37 -0400580 return dget(sb->s_root);
Mike Marshall1182fca2015-07-17 10:38:15 -0400581
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400582free_sb_and_op:
583 /* Will call orangefs_kill_sb with sb not in list. */
584 ORANGEFS_SB(sb)->no_list = 1;
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400585 /* ORANGEFS_VFS_OP_FS_UMOUNT is done by orangefs_kill_sb. */
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400586 deactivate_locked_super(sb);
Mike Marshall1182fca2015-07-17 10:38:15 -0400587free_op:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500588 gossip_err("orangefs_mount: mount request failed with %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400589 if (ret == -EINVAL) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500590 gossip_err("Ensure that all orangefs-servers have the same FS configuration files\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400591 gossip_err("Look at pvfs2-client-core log file (typically /tmp/pvfs2-client.log) for more details\n");
592 }
593
594 op_release(new_op);
595
Mike Marshall1be21f82015-09-29 15:26:37 -0400596 return d;
Mike Marshall1182fca2015-07-17 10:38:15 -0400597}
598
Yi Liu8bb8aef2015-11-24 15:12:14 -0500599void orangefs_kill_sb(struct super_block *sb)
Mike Marshall1182fca2015-07-17 10:38:15 -0400600{
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400601 int r;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500602 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_kill_sb: called\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400603
Al Viro524b1d32016-02-16 21:08:29 -0500604 /* provided sb cleanup */
605 kill_anon_super(sb);
606
Al Viro65903842018-04-03 00:13:17 -0400607 if (!ORANGEFS_SB(sb)) {
608 mutex_lock(&orangefs_request_mutex);
609 mutex_unlock(&orangefs_request_mutex);
610 return;
611 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400612 /*
613 * issue the unmount to userspace to tell it to remove the
614 * dynamic mount info it has for this superblock
615 */
Martin Brandenburg9d286b02017-04-25 15:38:05 -0400616 r = orangefs_unmount(ORANGEFS_SB(sb)->id, ORANGEFS_SB(sb)->fs_id,
617 ORANGEFS_SB(sb)->devname);
618 if (!r)
619 ORANGEFS_SB(sb)->mount_pending = 1;
Mike Marshall1182fca2015-07-17 10:38:15 -0400620
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400621 if (!ORANGEFS_SB(sb)->no_list) {
622 /* remove the sb from our list of orangefs specific sb's */
623 spin_lock(&orangefs_superblocks_lock);
624 /* not list_del_init */
625 __list_del_entry(&ORANGEFS_SB(sb)->list);
626 ORANGEFS_SB(sb)->list.prev = NULL;
627 spin_unlock(&orangefs_superblocks_lock);
628 }
Al Viro45996492016-03-25 19:56:34 -0400629
630 /*
631 * make sure that ORANGEFS_DEV_REMOUNT_ALL loop that might've seen us
632 * gets completed before we free the dang thing.
633 */
Martin Brandenburg1d503612016-08-16 11:38:14 -0400634 mutex_lock(&orangefs_request_mutex);
635 mutex_unlock(&orangefs_request_mutex);
Mike Marshall1182fca2015-07-17 10:38:15 -0400636
Yi Liu8bb8aef2015-11-24 15:12:14 -0500637 /* free the orangefs superblock private data */
638 kfree(ORANGEFS_SB(sb));
Mike Marshall1182fca2015-07-17 10:38:15 -0400639}
640
Yi Liu8bb8aef2015-11-24 15:12:14 -0500641int orangefs_inode_cache_initialize(void)
Mike Marshall1182fca2015-07-17 10:38:15 -0400642{
David Windsor6b330622017-06-10 22:50:39 -0400643 orangefs_inode_cache = kmem_cache_create_usercopy(
644 "orangefs_inode_cache",
645 sizeof(struct orangefs_inode_s),
646 0,
647 ORANGEFS_CACHE_CREATE_FLAGS,
648 offsetof(struct orangefs_inode_s,
649 link_target),
650 sizeof_field(struct orangefs_inode_s,
651 link_target),
652 orangefs_inode_cache_ctor);
Mike Marshall1182fca2015-07-17 10:38:15 -0400653
Yi Liu8bb8aef2015-11-24 15:12:14 -0500654 if (!orangefs_inode_cache) {
655 gossip_err("Cannot create orangefs_inode_cache\n");
Mike Marshall1182fca2015-07-17 10:38:15 -0400656 return -ENOMEM;
657 }
658 return 0;
659}
660
Yi Liu8bb8aef2015-11-24 15:12:14 -0500661int orangefs_inode_cache_finalize(void)
Mike Marshall1182fca2015-07-17 10:38:15 -0400662{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500663 kmem_cache_destroy(orangefs_inode_cache);
Mike Marshall1182fca2015-07-17 10:38:15 -0400664 return 0;
665}