Rearrange the header files.
[deb_libnfs.git] / include / nfsc / libnfs-zdr.h
CommitLineData
763cd6e3
RS
1/*
2 Copyright (C) 2012 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
16*/
17/*
18 * This file contains definitions for the built in ZDR implementation.
19 * This is a very limited ZDR subset that can only marshal to/from a momory buffer,
20 * i.e. zdrmem_create() buffers.
21 * It aims to be compatible with normal rpcgen generated functions.
22 */
23
aab6538b
RS
24/************************************************************
25 * Definitions copied from RFC 5531
26 * and slightly modified.
27 ************************************************************/
28
763cd6e3
RS
29#include "config.h"
30
31#ifndef _LIBNFS_ZDR_H_
32#define _LIBNFS_ZDR_H_
33
34#include <stdio.h>
35#include <assert.h>
36#include <stdint.h>
37#include <sys/types.h>
38
39#define _RPC_RPC_H 1
40#define _RPC_ZDR_H 1
41#define _RPC_AUTH_H 1
42
43/* we dont need these */
44typedef void CLIENT;
45struct svc_req {
46};
47typedef void SVCXPRT;
48
49
50
51
52
53#define ZDR_INLINE(...) NULL
54#define IZDR_PUT_U_LONG(...) assert(0)
55#define IZDR_GET_U_LONG(...) (assert(0), 0)
56#define IZDR_PUT_LONG(...) assert(0)
57#define IZDR_GET_LONG(...) (assert(0), 0)
58#define IZDR_PUT_BOOL(...) assert(0)
59#define IZDR_GET_BOOL(...) (assert(0), 0)
60
61#define TRUE 1
62#define FALSE 0
63
64enum zdr_op {
65 ZDR_ENCODE = 0,
66 ZDR_DECODE = 1
67};
68
69struct zdr_mem {
70 struct zdr_mem *next;
71 caddr_t buf;
72 uint32_t size;
73};
74
75struct ZDR {
76 enum zdr_op x_op;
77 caddr_t buf;
78 int size;
79 int pos;
80 struct zdr_mem *mem;
81};
82typedef struct ZDR ZDR;
83
84
85typedef uint32_t u_int;
86typedef uint32_t enum_t;
87typedef uint32_t bool_t;
88
89typedef int (*zdrproc_t) (ZDR *, void *,...);
90
91/* XXX find out what we can get rid of */
92
93#define AUTH_NONE 0
94#define AUTH_NULL 0
95#define AUTH_UNIX 1
aab6538b 96
763cd6e3
RS
97struct opaque_auth {
98 uint32_t oa_flavor;
99 caddr_t oa_base;
100 uint32_t oa_length;
101};
102extern struct opaque_auth _null_auth;
103
67ba2239 104struct AUTH {
763cd6e3
RS
105 struct opaque_auth ah_cred;
106 struct opaque_auth ah_verf;
107 caddr_t ah_private;
67ba2239 108};
763cd6e3 109
763cd6e3
RS
110#define RPC_MSG_VERSION 2
111
aab6538b
RS
112enum msg_type {
113 CALL = 0,
114 REPLY = 1
763cd6e3
RS
115};
116
aab6538b
RS
117enum reply_stat {
118 MSG_ACCEPTED=0,
119 MSG_DENIED=1
763cd6e3
RS
120};
121
aab6538b
RS
122enum accept_stat {
123 SUCCESS = 0,
124 PROG_UNAVAIL = 1,
125 PROG_MISMATCH = 2,
126 PROC_UNAVAIL = 3,
127 GARBAGE_ARGS = 4,
128 SYSTEM_ERR = 5
763cd6e3
RS
129};
130
131enum reject_stat {
aab6538b
RS
132 RPC_MISMATCH = 0,
133 AUTH_ERROR = 1
763cd6e3
RS
134};
135
136enum auth_stat {
137 AUTH_OK=0,
138 /*
139 * failed at remote end
140 */
aab6538b
RS
141 AUTH_BADCRED = 1, /* bogus credentials (seal broken) */
142 AUTH_REJECTEDCRED = 2, /* client should begin new session */
143 AUTH_BADVERF = 3, /* bogus verifier (seal broken) */
144 AUTH_REJECTEDVERF = 4, /* verifier expired or was replayed */
145 AUTH_TOOWEAK = 5, /* rejected due to security reasons */
763cd6e3
RS
146 /*
147 * failed locally
148 */
aab6538b
RS
149 AUTH_INVALIDRESP = 6, /* bogus response verifier */
150 AUTH_FAILED = 7 /* some unknown reason */
151};
152
153struct call_body {
154 uint32_t rpcvers;
155 uint32_t prog;
156 uint32_t vers;
157 uint32_t proc;
158 struct opaque_auth cred;
159 struct opaque_auth verf;
160};
161
162struct accepted_reply {
163 struct opaque_auth verf;
164 uint32_t stat;
165 union {
166 struct {
167 caddr_t where;
168 zdrproc_t proc;
169 } results;
170 struct {
171 uint32_t low;
172 uint32_t high;
173 } mismatch_info;
174 } reply_data;
763cd6e3
RS
175};
176
177struct rejected_reply {
aab6538b 178 enum reject_stat stat;
763cd6e3
RS
179 union {
180 struct {
181 u_long low;
182 u_long high;
aab6538b
RS
183 } mismatch_info;
184 enum auth_stat stat;
185 } reject_data;
763cd6e3
RS
186};
187
763cd6e3 188struct reply_body {
aab6538b 189 uint32_t stat;
763cd6e3 190 union {
aab6538b
RS
191 struct accepted_reply areply;
192 struct rejected_reply rreply;
193 } reply;
763cd6e3
RS
194};
195
196struct rpc_msg {
aab6538b 197 uint32_t xid;
763cd6e3 198
aab6538b 199 uint32_t direction;
763cd6e3 200 union {
aab6538b
RS
201 struct call_body cbody;
202 struct reply_body rbody;
203 } body;
763cd6e3 204};
763cd6e3
RS
205
206#define zdrmem_create libnfs_zdrmem_create
207void libnfs_zdrmem_create(ZDR *zdrs, const caddr_t addr, uint32_t size, enum zdr_op xop);
208
209#define zdr_destroy libnfs_zdr_destroy
210void libnfs_zdr_destroy(ZDR *zdrs);
211
212#define zdr_bytes libnfs_zdr_bytes
213bool_t libnfs_zdr_bytes(ZDR *zdrs, char **bufp, uint32_t *size, uint32_t maxsize);
214
215#define zdr_u_int libnfs_zdr_u_int
216bool_t libnfs_zdr_u_int(ZDR *zdrs, uint32_t *u);
217
218#define zdr_int libnfs_zdr_int
219bool_t libnfs_zdr_int(ZDR *zdrs, int32_t *i);
220
221#define zdr_u_quad_t libnfs_zdr_u_quad_t
222bool_t libnfs_zdr_u_quad_t(ZDR *zdrs, uint64_t *u);
223
224#define zdr_quad_t libnfs_zdr_quad_t
225bool_t libnfs_zdr_quad_t(ZDR *zdrs, int64_t *i);
226
227#define zdr_enum libnfs_zdr_enum
442b829a 228bool_t libnfs_zdr_enum(ZDR *zdrs, enum_t *e);
763cd6e3
RS
229
230#define zdr_bool libnfs_zdr_bool
231bool_t libnfs_zdr_bool(ZDR *zdrs, bool_t *b);
232
233#define zdr_void libnfs_zdr_void
234bool_t libnfs_zdr_void(void);
235
236#define zdr_pointer libnfs_zdr_pointer
237bool_t libnfs_zdr_pointer(ZDR *zdrs, char **objp, uint32_t size, zdrproc_t proc);
238
239#define zdr_opaque libnfs_zdr_opaque
240bool_t libnfs_zdr_opaque(ZDR *zdrs, char *objp, uint32_t size);
241
242#define zdr_string libnfs_zdr_string
243bool_t libnfs_zdr_string(ZDR *zdrs, char **strp, uint32_t maxsize);
244
245#define zdr_array libnfs_zdr_array
246bool_t libnfs_zdr_array(ZDR *zdrs, char **arrp, uint32_t *size, uint32_t maxsize, uint32_t elsize, zdrproc_t proc);
247
248#define zdr_setpos libnfs_zdr_setpos
249bool_t libnfs_zdr_setpos(ZDR *zdrs, uint32_t pos);
250
251#define zdr_getpos libnfs_zdr_getpos
252uint32_t libnfs_zdr_getpos(ZDR *zdrs);
253
254#define zdr_free libnfs_zdr_free
255void libnfs_zdr_free(zdrproc_t proc, char *objp);
256
257#define zdr_callmsg libnfs_zdr_callmsg
258bool_t libnfs_zdr_callmsg(ZDR *zdrs, struct rpc_msg *msg);
259
260#define zdr_replymsg libnfs_zdr_replymsg
261bool_t libnfs_zdr_replymsg(ZDR *zdrs, struct rpc_msg *msg);
262
263#define authnone_create libnfs_authnone_create
67ba2239 264struct AUTH *libnfs_authnone_create(void);
763cd6e3
RS
265
266#define authunix_create libnfs_authunix_create
67ba2239 267struct AUTH *libnfs_authunix_create(char *host, uint32_t uid, uint32_t gid, uint32_t len, uint32_t *groups);
763cd6e3
RS
268
269#define authunix_create_default libnfs_authunix_create_default
67ba2239 270struct AUTH *libnfs_authunix_create_default(void);
763cd6e3
RS
271
272#define auth_destroy libnfs_auth_destroy
67ba2239 273void libnfs_auth_destroy(struct AUTH *auth);
763cd6e3
RS
274
275#endif