blob: 730f15eeb7ed561fb50b5485af00f2a5a8aca2f7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#ifndef NFSD_EXPORT_H
5#define NFSD_EXPORT_H
6
Christoph Hellwig9c69de42014-05-06 19:37:13 +02007#include <linux/sunrpc/cache.h>
David Howells616d1ca2012-10-09 09:49:02 +01008#include <uapi/linux/nfsd/export.h>
Jeff Layton4bc66032015-07-30 09:52:13 -04009#include <linux/nfs4.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Christoph Hellwig9c69de42014-05-06 19:37:13 +020011struct knfsd_fh;
12struct svc_fh;
13struct svc_rqst;
14
Manoj Naik933469192006-10-04 02:16:18 -070015/*
16 * FS Locations
17 */
18
19#define MAX_FS_LOCATIONS 128
20
21struct nfsd4_fs_location {
22 char *hosts; /* colon separated list of hosts */
23 char *path; /* slash separated list of path components */
24};
25
26struct nfsd4_fs_locations {
27 uint32_t locations_count;
28 struct nfsd4_fs_location *locations;
29/* If we're not actually serving this data ourselves (only providing a
30 * list of replicas that do serve it) then we set "migrated": */
31 int migrated;
32};
33
Andy Adamsone677bfe2007-07-17 04:04:42 -070034/*
35 * We keep an array of pseudoflavors with the export, in order from most
Lucas De Marchi25985ed2011-03-30 22:57:33 -030036 * to least preferred. For the foreseeable future, we don't expect more
Andy Adamsone677bfe2007-07-17 04:04:42 -070037 * than the eight pseudoflavors null, unix, krb5, krb5i, krb5p, skpm3,
38 * spkm3i, and spkm3p (and using all 8 at once should be rare).
39 */
40#define MAX_SECINFO_LIST 8
Kinglong Mee94eb3682014-05-23 20:00:19 +080041#define EX_UUID_LEN 16
Andy Adamsone677bfe2007-07-17 04:04:42 -070042
43struct exp_flavor_info {
44 u32 pseudoflavor;
45 u32 flags;
46};
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048struct svc_export {
49 struct cache_head h;
50 struct auth_domain * ex_client;
51 int ex_flags;
Jan Blunck54775492008-02-14 19:38:39 -080052 struct path ex_path;
Eric W. Biederman4c1e1b32013-02-02 06:42:53 -080053 kuid_t ex_anon_uid;
54 kgid_t ex_anon_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int ex_fsid;
NeilBrownaf6a4e22007-02-14 00:33:12 -080056 unsigned char * ex_uuid; /* 16 byte fsid */
Manoj Naik933469192006-10-04 02:16:18 -070057 struct nfsd4_fs_locations ex_fslocs;
Kinglong Mee1f531462014-05-24 11:26:49 +080058 uint32_t ex_nflavors;
Andy Adamsone677bfe2007-07-17 04:04:42 -070059 struct exp_flavor_info ex_flavors[MAX_SECINFO_LIST];
Jeff Layton8a4c3922016-07-10 15:55:58 -040060 u32 ex_layout_types;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020061 struct nfsd4_deviceid_map *ex_devid_map;
Stanislav Kinsburskydb3a3532012-03-28 19:09:08 +040062 struct cache_detail *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/* an "export key" (expkey) maps a filehandlefragement to an
NeilBrownaf6a4e22007-02-14 00:33:12 -080066 * svc_export for a given client. There can be several per export,
67 * for the different fsid types.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69struct svc_expkey {
70 struct cache_head h;
71
72 struct auth_domain * ek_client;
73 int ek_fsidtype;
NeilBrownaf6a4e22007-02-14 00:33:12 -080074 u32 ek_fsid[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jan Bluncke83aece2008-02-14 19:38:41 -080076 struct path ek_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define EX_ISSYNC(exp) (!((exp)->ex_flags & NFSEXP_ASYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE)
81#define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES)
82
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -070083int nfsexp_flags(struct svc_rqst *rqstp, struct svc_export *exp);
Andy Adamson32c1eb02007-07-17 04:04:48 -070084__be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/*
87 * Function declarations
88 */
Stanislav Kinsburskyb89109b2012-04-11 15:13:14 +040089int nfsd_export_init(struct net *);
90void nfsd_export_shutdown(struct net *);
Stanislav Kinsburskyb3853e02012-04-11 15:13:21 +040091void nfsd_export_flush(struct net *);
J. Bruce Fields0989a782007-07-17 04:04:44 -070092struct svc_export * rqst_exp_get_by_name(struct svc_rqst *,
Al Viro91c9fa82009-04-18 02:42:05 -040093 struct path *);
J. Bruce Fields0989a782007-07-17 04:04:44 -070094struct svc_export * rqst_exp_parent(struct svc_rqst *,
Al Viroe64c3902009-04-18 03:00:46 -040095 struct path *);
Trond Myklebusted748aa2011-09-12 19:37:06 -040096struct svc_export * rqst_find_fsidzero_export(struct svc_rqst *);
Stanislav Kinsburskyb3853e02012-04-11 15:13:21 +040097int exp_rootfh(struct net *, struct auth_domain *,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 char *path, struct knfsd_fh *, int maxsize);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -070099__be32 exp_pseudoroot(struct svc_rqst *, struct svc_fh *);
Al Viro63f103112006-10-19 23:28:54 -0700100__be32 nfserrno(int errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static inline void exp_put(struct svc_export *exp)
103{
Stanislav Kinsbursky71234972012-03-28 19:09:15 +0400104 cache_put(&exp->h, exp->cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Kinglong Meebf18f162014-06-10 22:06:44 +0800107static inline struct svc_export *exp_get(struct svc_export *exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 cache_get(&exp->h);
Kinglong Meebf18f162014-06-10 22:06:44 +0800110 return exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
J. Bruce Fields0989a782007-07-17 04:04:44 -0700112struct svc_export * rqst_exp_find(struct svc_rqst *, int, u32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif /* NFSD_EXPORT_H */