blob: ea7cca3a64b7655bae55af6647603cdc9b51cde8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
J. Bruce Fields7663dac2009-12-04 19:49:00 -05002/* XDR types for nfsd. This is mainly a typing exercise. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4#ifndef LINUX_NFSD_H
5#define LINUX_NFSD_H
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/vfs.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +02008#include "nfsd.h"
J. Bruce Fields1557aca2009-12-04 19:36:06 -05009#include "nfsfh.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11struct nfsd_fhandle {
12 struct svc_fh fh;
13};
14
15struct nfsd_sattrargs {
16 struct svc_fh fh;
17 struct iattr attrs;
18};
19
20struct nfsd_diropargs {
21 struct svc_fh fh;
22 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040023 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
25
26struct nfsd_readargs {
27 struct svc_fh fh;
28 __u32 offset;
29 __u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 int vlen;
31};
32
33struct nfsd_writeargs {
34 svc_fh fh;
35 __u32 offset;
36 int len;
Chuck Lever8154ef22018-03-27 10:54:07 -040037 struct kvec first;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
40struct nfsd_createargs {
41 struct svc_fh fh;
42 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040043 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct iattr attrs;
45};
46
47struct nfsd_renameargs {
48 struct svc_fh ffh;
49 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040050 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct svc_fh tfh;
52 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040053 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56struct nfsd_readlinkargs {
57 struct svc_fh fh;
58 char * buffer;
59};
60
61struct nfsd_linkargs {
62 struct svc_fh ffh;
63 struct svc_fh tfh;
64 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040065 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
68struct nfsd_symlinkargs {
69 struct svc_fh ffh;
70 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040071 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 char * tname;
Chuck Lever48b4ba32007-11-01 16:57:25 -040073 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct iattr attrs;
Chuck Lever38a70312018-03-27 10:54:21 -040075 struct kvec first;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78struct nfsd_readdirargs {
79 struct svc_fh fh;
80 __u32 cookie;
81 __u32 count;
Al Viro131a21c2006-10-19 23:28:56 -070082 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85struct nfsd_attrstat {
86 struct svc_fh fh;
David Shawa334de22006-01-06 00:19:58 -080087 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90struct nfsd_diropres {
91 struct svc_fh fh;
David Shawa334de22006-01-06 00:19:58 -080092 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
95struct nfsd_readlinkres {
96 int len;
97};
98
99struct nfsd_readres {
100 struct svc_fh fh;
101 unsigned long count;
David Shawa334de22006-01-06 00:19:58 -0800102 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
105struct nfsd_readdirres {
106 int count;
107
108 struct readdir_cd common;
Al Viro131a21c2006-10-19 23:28:56 -0700109 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 int buflen;
Al Viro131a21c2006-10-19 23:28:56 -0700111 __be32 * offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114struct nfsd_statfsres {
115 struct kstatfs stats;
116};
117
118/*
119 * Storage requirements for XDR arguments and results.
120 */
121union nfsd_xdrstore {
122 struct nfsd_sattrargs sattr;
123 struct nfsd_diropargs dirop;
124 struct nfsd_readargs read;
125 struct nfsd_writeargs write;
126 struct nfsd_createargs create;
127 struct nfsd_renameargs rename;
128 struct nfsd_linkargs link;
129 struct nfsd_symlinkargs symlink;
130 struct nfsd_readdirargs readdir;
131};
132
133#define NFS2_SVC_XDRSIZE sizeof(union nfsd_xdrstore)
134
135
Christoph Hellwig026fec72017-05-08 19:01:48 +0200136int nfssvc_decode_void(struct svc_rqst *, __be32 *);
137int nfssvc_decode_fhandle(struct svc_rqst *, __be32 *);
138int nfssvc_decode_sattrargs(struct svc_rqst *, __be32 *);
139int nfssvc_decode_diropargs(struct svc_rqst *, __be32 *);
140int nfssvc_decode_readargs(struct svc_rqst *, __be32 *);
141int nfssvc_decode_writeargs(struct svc_rqst *, __be32 *);
142int nfssvc_decode_createargs(struct svc_rqst *, __be32 *);
143int nfssvc_decode_renameargs(struct svc_rqst *, __be32 *);
144int nfssvc_decode_readlinkargs(struct svc_rqst *, __be32 *);
145int nfssvc_decode_linkargs(struct svc_rqst *, __be32 *);
146int nfssvc_decode_symlinkargs(struct svc_rqst *, __be32 *);
147int nfssvc_decode_readdirargs(struct svc_rqst *, __be32 *);
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200148int nfssvc_encode_void(struct svc_rqst *, __be32 *);
149int nfssvc_encode_attrstat(struct svc_rqst *, __be32 *);
150int nfssvc_encode_diropres(struct svc_rqst *, __be32 *);
151int nfssvc_encode_readlinkres(struct svc_rqst *, __be32 *);
152int nfssvc_encode_readres(struct svc_rqst *, __be32 *);
153int nfssvc_encode_statfsres(struct svc_rqst *, __be32 *);
154int nfssvc_encode_readdirres(struct svc_rqst *, __be32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
NeilBrowna0ad13e2007-01-26 00:57:10 -0800156int nfssvc_encode_entry(void *, const char *name,
157 int namlen, loff_t offset, u64 ino, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Christoph Hellwig85374882017-05-08 18:48:24 +0200159void nfssvc_release_fhandle(struct svc_rqst *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000161/* Helper functions for NFSv2 ACL code */
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500162__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat);
Al Viro131a21c2006-10-19 23:28:56 -0700163__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#endif /* LINUX_NFSD_H */