blob: ac84060189626ccb07f24b366594d36372717cbb [file] [log] [blame]
Bryan Schumakera38a9ea2012-07-16 16:39:16 -04001/*
2* Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
3* Written by David Howells (dhowells@redhat.com)
4*/
5
6#include <linux/nfs_fs.h>
7#include "nfs4_fs.h"
Trond Myklebustd6aa6a82012-10-16 12:32:24 -04008#include "internal.h"
Bryan Schumakera38a9ea2012-07-16 16:39:16 -04009
10#define NFSDBG_FACILITY NFSDBG_CLIENT
11
Trond Myklebust5e6b1992013-09-07 12:58:57 -040012int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh, bool auth_probe)
Bryan Schumakera38a9ea2012-07-16 16:39:16 -040013{
14 struct nfs_fsinfo fsinfo;
15 int ret = -ENOMEM;
16
Bryan Schumakera38a9ea2012-07-16 16:39:16 -040017 fsinfo.fattr = nfs_alloc_fattr();
18 if (fsinfo.fattr == NULL)
19 goto out;
20
21 /* Start by getting the root filehandle from the server */
Trond Myklebust5e6b1992013-09-07 12:58:57 -040022 ret = nfs4_proc_get_rootfh(server, mntfh, &fsinfo, auth_probe);
Bryan Schumakera38a9ea2012-07-16 16:39:16 -040023 if (ret < 0) {
24 dprintk("nfs4_get_rootfh: getroot error = %d\n", -ret);
25 goto out;
26 }
27
28 if (!(fsinfo.fattr->valid & NFS_ATTR_FATTR_TYPE)
29 || !S_ISDIR(fsinfo.fattr->mode)) {
30 printk(KERN_ERR "nfs4_get_rootfh:"
31 " getroot encountered non-directory\n");
32 ret = -ENOTDIR;
33 goto out;
34 }
35
Bryan Schumakera38a9ea2012-07-16 16:39:16 -040036 memcpy(&server->fsid, &fsinfo.fattr->fsid, sizeof(server->fsid));
37out:
38 nfs_free_fattr(fsinfo.fattr);
Bryan Schumakera38a9ea2012-07-16 16:39:16 -040039 return ret;
40}