blob: c8b74126ddaa86c4de9ab9233f3ce3552d7e5edf [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#ifndef NFSD_EXPORT_H
6#define NFSD_EXPORT_H
7
Christoph Hellwig9c69de42014-05-06 19:37:13 +02008#include <linux/sunrpc/cache.h>
David Howells616d1ca2012-10-09 09:49:02 +01009#include <uapi/linux/nfsd/export.h>
Jeff Layton4bc66032015-07-30 09:52:13 -040010#include <linux/nfs4.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Christoph Hellwig9c69de42014-05-06 19:37:13 +020012struct knfsd_fh;
13struct svc_fh;
14struct svc_rqst;
15
Manoj Naik933469192006-10-04 02:16:18 -070016/*
17 * FS Locations
18 */
19
20#define MAX_FS_LOCATIONS 128
21
22struct nfsd4_fs_location {
23 char *hosts; /* colon separated list of hosts */
24 char *path; /* slash separated list of path components */
25};
26
27struct nfsd4_fs_locations {
28 uint32_t locations_count;
29 struct nfsd4_fs_location *locations;
30/* If we're not actually serving this data ourselves (only providing a
31 * list of replicas that do serve it) then we set "migrated": */
32 int migrated;
33};
34
Andy Adamsone677bfe2007-07-17 04:04:42 -070035/*
36 * We keep an array of pseudoflavors with the export, in order from most
Lucas De Marchi25985ed2011-03-30 22:57:33 -030037 * to least preferred. For the foreseeable future, we don't expect more
Andy Adamsone677bfe2007-07-17 04:04:42 -070038 * than the eight pseudoflavors null, unix, krb5, krb5i, krb5p, skpm3,
39 * spkm3i, and spkm3p (and using all 8 at once should be rare).
40 */
41#define MAX_SECINFO_LIST 8
Kinglong Mee94eb3682014-05-23 20:00:19 +080042#define EX_UUID_LEN 16
Andy Adamsone677bfe2007-07-17 04:04:42 -070043
44struct exp_flavor_info {
45 u32 pseudoflavor;
46 u32 flags;
47};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct svc_export {
50 struct cache_head h;
51 struct auth_domain * ex_client;
52 int ex_flags;
Jan Blunck54775492008-02-14 19:38:39 -080053 struct path ex_path;
Eric W. Biederman4c1e1b32013-02-02 06:42:53 -080054 kuid_t ex_anon_uid;
55 kgid_t ex_anon_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int ex_fsid;
NeilBrownaf6a4e22007-02-14 00:33:12 -080057 unsigned char * ex_uuid; /* 16 byte fsid */
Manoj Naik933469192006-10-04 02:16:18 -070058 struct nfsd4_fs_locations ex_fslocs;
Kinglong Mee1f531462014-05-24 11:26:49 +080059 uint32_t ex_nflavors;
Andy Adamsone677bfe2007-07-17 04:04:42 -070060 struct exp_flavor_info ex_flavors[MAX_SECINFO_LIST];
Jeff Layton8a4c3922016-07-10 15:55:58 -040061 u32 ex_layout_types;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020062 struct nfsd4_deviceid_map *ex_devid_map;
Stanislav Kinsburskydb3a3532012-03-28 19:09:08 +040063 struct cache_detail *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/* an "export key" (expkey) maps a filehandlefragement to an
NeilBrownaf6a4e22007-02-14 00:33:12 -080067 * svc_export for a given client. There can be several per export,
68 * for the different fsid types.
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 */
70struct svc_expkey {
71 struct cache_head h;
72
73 struct auth_domain * ek_client;
74 int ek_fsidtype;
NeilBrownaf6a4e22007-02-14 00:33:12 -080075 u32 ek_fsid[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jan Bluncke83aece2008-02-14 19:38:41 -080077 struct path ek_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define EX_ISSYNC(exp) (!((exp)->ex_flags & NFSEXP_ASYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE)
82#define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES)
83
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -070084int nfsexp_flags(struct svc_rqst *rqstp, struct svc_export *exp);
Andy Adamson32c1eb02007-07-17 04:04:48 -070085__be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/*
88 * Function declarations
89 */
Stanislav Kinsburskyb89109b2012-04-11 15:13:14 +040090int nfsd_export_init(struct net *);
91void nfsd_export_shutdown(struct net *);
Stanislav Kinsburskyb3853e02012-04-11 15:13:21 +040092void nfsd_export_flush(struct net *);
J. Bruce Fields0989a782007-07-17 04:04:44 -070093struct svc_export * rqst_exp_get_by_name(struct svc_rqst *,
Al Viro91c9fa82009-04-18 02:42:05 -040094 struct path *);
J. Bruce Fields0989a782007-07-17 04:04:44 -070095struct svc_export * rqst_exp_parent(struct svc_rqst *,
Al Viroe64c3902009-04-18 03:00:46 -040096 struct path *);
Trond Myklebusted748aa2011-09-12 19:37:06 -040097struct svc_export * rqst_find_fsidzero_export(struct svc_rqst *);
Stanislav Kinsburskyb3853e02012-04-11 15:13:21 +040098int exp_rootfh(struct net *, struct auth_domain *,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *path, struct knfsd_fh *, int maxsize);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700100__be32 exp_pseudoroot(struct svc_rqst *, struct svc_fh *);
Al Viro63f103112006-10-19 23:28:54 -0700101__be32 nfserrno(int errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static inline void exp_put(struct svc_export *exp)
104{
Stanislav Kinsbursky71234972012-03-28 19:09:15 +0400105 cache_put(&exp->h, exp->cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Kinglong Meebf18f162014-06-10 22:06:44 +0800108static inline struct svc_export *exp_get(struct svc_export *exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 cache_get(&exp->h);
Kinglong Meebf18f162014-06-10 22:06:44 +0800111 return exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
J. Bruce Fields0989a782007-07-17 04:04:44 -0700113struct svc_export * rqst_exp_find(struct svc_rqst *, int, u32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif /* NFSD_EXPORT_H */