ZDR: New builtin replacement for RPC/XDR called ZDR
[deb_libnfs.git] / include / libnfs-private.h
CommitLineData
84004dbf
RS
1/*
2 Copyright (C) 2010 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*/
763cd6e3
RS
17#include <sys/socket.h> /* struct sockaddr_storage */
18
19#include "libnfs-zdr.h"
84004dbf 20
d678b73e
RS
21struct rpc_fragment {
22 struct rpc_fragment *next;
183451cf 23 uint64_t size;
d678b73e
RS
24 char *data;
25};
26
84004dbf
RS
27struct rpc_context {
28 int fd;
29 int is_connected;
30
31 char *error_string;
32
33 rpc_cb connect_cb;
34 void *connect_data;
35
36 AUTH *auth;
37 unsigned long xid;
38
39 /* buffer used for encoding RPC PDU */
40 char *encodebuf;
41 int encodebuflen;
42
43 struct rpc_pdu *outqueue;
2d0c44ce 44 struct sockaddr_storage udp_src;
84004dbf
RS
45 struct rpc_pdu *waitpdu;
46
84004dbf 47 int inpos;
cdb19ec1 48 int insize;
84004dbf 49 char *inbuf;
d16a3ca4
RS
50
51 /* special fields for UDP, which can sometimes be BROADCASTed */
52 int is_udp;
a9b24162 53 struct sockaddr *udp_dest;
2ae46066 54 int is_broadcast;
1744ef90
RS
55
56 /* track the address we connect to so we can auto-reconnect on session failure */
57 struct sockaddr_storage s;
58 int auto_reconnect;
d678b73e
RS
59
60 /* fragment reassembly */
61 struct rpc_fragment *fragments;
84004dbf
RS
62};
63
64struct rpc_pdu {
65 struct rpc_pdu *next;
66
67 unsigned long xid;
763cd6e3 68 ZDR zdr;
84004dbf
RS
69
70 int written;
71 struct rpc_data outdata;
72
73 rpc_cb cb;
74 void *private_data;
75
763cd6e3
RS
76 /* function to decode the zdr reply data and buffer to decode into */
77 zdrproc_t zdr_decode_fn;
78 caddr_t zdr_decode_buf;
79 int zdr_decode_bufsize;
84004dbf
RS
80};
81
763cd6e3 82struct rpc_pdu *rpc_allocate_pdu(struct rpc_context *rpc, int program, int version, int procedure, rpc_cb cb, void *private_data, zdrproc_t zdr_decode_fn, int zdr_bufsize);
84004dbf
RS
83void rpc_free_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
84int rpc_queue_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
85int rpc_get_pdu_size(char *buf);
86int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size);
87void rpc_error_all_pdus(struct rpc_context *rpc, char *error);
88
1896d37b
RS
89void rpc_set_error(struct rpc_context *rpc, char *error_string, ...);
90void nfs_set_error(struct nfs_context *nfs, char *error_string, ...);
91
b077fdeb
RS
92const char *nfs_get_server(struct nfs_context *nfs);
93const char *nfs_get_export(struct nfs_context *nfs);
1896d37b 94
485bc9b9
RS
95/* we dont want to expose UDP to normal applications/users this is private to libnfs to use exclusively for broadcast RPC */
96int rpc_bind_udp(struct rpc_context *rpc, char *addr, int port);
5bf60dc6 97int rpc_set_udp_destination(struct rpc_context *rpc, char *addr, int port, int is_broadcast);
9e00b8c6 98struct rpc_context *rpc_init_udp_context(void);
c481da67
RS
99struct sockaddr *rpc_get_recv_sockaddr(struct rpc_context *rpc);
100
1744ef90
RS
101void rpc_set_autoreconnect(struct rpc_context *rpc);
102void rpc_unset_autoreconnect(struct rpc_context *rpc);
103
183451cf 104int rpc_add_fragment(struct rpc_context *rpc, char *data, uint64_t size);
d678b73e
RS
105void rpc_free_all_fragments(struct rpc_context *rpc);
106
8724c833 107const struct nfs_fh3 *nfs_get_rootfh(struct nfs_context *nfs);