Ensure the next pointer is correct
[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*/
83a446dd
AR
17
18#ifndef _LIBNFS_PRIVATE_H_
19#define _LIBNFS_PRIVATE_H_
20
d7c6e9aa
RS
21#ifdef HAVE_CONFIG_H
22#include "config.h" /* HAVE_SOCKADDR_STORAGE ? */
23#endif
24
67a9f57e 25#ifndef WIN32
763cd6e3 26#include <sys/socket.h> /* struct sockaddr_storage */
67a9f57e 27#endif
763cd6e3
RS
28
29#include "libnfs-zdr.h"
84004dbf 30
324234ee
AR
31#ifdef __cplusplus
32extern "C" {
33#endif
67a9f57e
RS
34
35#if !defined(HAVE_SOCKADDR_STORAGE) && !defined(WIN32)
d7c6e9aa
RS
36/*
37 * RFC 2553: protocol-independent placeholder for socket addresses
38 */
39#define _SS_MAXSIZE 128
40#define _SS_ALIGNSIZE (sizeof(double))
41#define _SS_PAD1SIZE (_SS_ALIGNSIZE - sizeof(unsigned char) * 2)
42#define _SS_PAD2SIZE (_SS_MAXSIZE - sizeof(unsigned char) * 2 - \
43 _SS_PAD1SIZE - _SS_ALIGNSIZE)
44
45struct sockaddr_storage {
0f9fe7c6 46#ifdef HAVE_SOCKADDR_LEN
d7c6e9aa
RS
47 unsigned char ss_len; /* address length */
48 unsigned char ss_family; /* address family */
49#else
50 unsigned short ss_family;
51#endif
52 char __ss_pad1[_SS_PAD1SIZE];
53 double __ss_align; /* force desired structure storage alignment */
54 char __ss_pad2[_SS_PAD2SIZE];
55};
56#endif
57
58
d678b73e
RS
59struct rpc_fragment {
60 struct rpc_fragment *next;
183451cf 61 uint64_t size;
d678b73e
RS
62 char *data;
63};
64
f3a75078 65#define RPC_CONTEXT_MAGIC 0xc6e46435
1c8b4547 66#define RPC_PARAM_UNDEFINED -1
f3a75078 67
aec45c62
MH
68/*
69 * Queue is singly-linked but we hold on to the tail
70 */
71struct rpc_queue {
72 struct rpc_pdu *head, *tail;
73};
74
84004dbf 75struct rpc_context {
1c8b4547 76 uint32_t magic;
84004dbf
RS
77 int fd;
78 int is_connected;
79
80 char *error_string;
81
82 rpc_cb connect_cb;
83 void *connect_data;
84
67ba2239 85 struct AUTH *auth;
b93082da 86 uint32_t xid;
84004dbf 87
1c8b4547
PL
88 /* buffer used for encoding RPC PDU */
89 char *encodebuf;
90 int encodebuflen;
84004dbf 91
aec45c62 92 struct rpc_queue outqueue;
1c8b4547 93 struct sockaddr_storage udp_src;
aec45c62 94 struct rpc_queue waitpdu;
84004dbf 95
1c8b4547
PL
96 uint32_t inpos;
97 uint32_t insize;
98 char *inbuf;
d16a3ca4 99
1c8b4547
PL
100 /* special fields for UDP, which can sometimes be BROADCASTed */
101 int is_udp;
102 struct sockaddr *udp_dest;
103 int is_broadcast;
1744ef90 104
1c8b4547
PL
105 /* track the address we connect to so we can auto-reconnect on session failure */
106 struct sockaddr_storage s;
107 int auto_reconnect;
d678b73e
RS
108
109 /* fragment reassembly */
110 struct rpc_fragment *fragments;
83a446dd 111
1c8b4547
PL
112 /* parameters passable via URL */
113 int tcp_syncnt;
9126c9c0
PL
114 int uid;
115 int gid;
84004dbf
RS
116};
117
118struct rpc_pdu {
119 struct rpc_pdu *next;
120
b93082da 121 uint32_t xid;
763cd6e3 122 ZDR zdr;
84004dbf 123
d14e2838 124 uint32_t written;
84004dbf
RS
125 struct rpc_data outdata;
126
127 rpc_cb cb;
128 void *private_data;
129
763cd6e3
RS
130 /* function to decode the zdr reply data and buffer to decode into */
131 zdrproc_t zdr_decode_fn;
132 caddr_t zdr_decode_buf;
d14e2838 133 uint32_t zdr_decode_bufsize;
84004dbf
RS
134};
135
aec45c62
MH
136void rpc_reset_queue(struct rpc_queue *q);
137void rpc_enqueue(struct rpc_queue *q, struct rpc_pdu *pdu);
138void rpc_return_to_queue(struct rpc_queue *q, struct rpc_pdu *pdu);
139
763cd6e3 140struct 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
141void rpc_free_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
142int rpc_queue_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
143int rpc_get_pdu_size(char *buf);
144int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size);
145void rpc_error_all_pdus(struct rpc_context *rpc, char *error);
146
8406bfe4
AR
147void rpc_set_error(struct rpc_context *rpc, char *error_string, ...)
148#ifdef __GNUC__
149 __attribute__((format(printf, 2, 3)))
150#endif
151;
152
153void nfs_set_error(struct nfs_context *nfs, char *error_string, ...)
154#ifdef __GNUC__
155 __attribute__((format(printf, 2, 3)))
156#endif
157;
1896d37b 158
b077fdeb
RS
159const char *nfs_get_server(struct nfs_context *nfs);
160const char *nfs_get_export(struct nfs_context *nfs);
1896d37b 161
485bc9b9
RS
162/* we dont want to expose UDP to normal applications/users this is private to libnfs to use exclusively for broadcast RPC */
163int rpc_bind_udp(struct rpc_context *rpc, char *addr, int port);
5bf60dc6 164int rpc_set_udp_destination(struct rpc_context *rpc, char *addr, int port, int is_broadcast);
9e00b8c6 165struct rpc_context *rpc_init_udp_context(void);
c481da67
RS
166struct sockaddr *rpc_get_recv_sockaddr(struct rpc_context *rpc);
167
1744ef90
RS
168void rpc_set_autoreconnect(struct rpc_context *rpc);
169void rpc_unset_autoreconnect(struct rpc_context *rpc);
170
1c8b4547 171void rpc_set_tcp_syncnt(struct rpc_context *rpc, int v);
9126c9c0
PL
172void rpc_set_uid(struct rpc_context *rpc, int uid);
173void rpc_set_gid(struct rpc_context *rpc, int gid);
1c8b4547 174
183451cf 175int rpc_add_fragment(struct rpc_context *rpc, char *data, uint64_t size);
d678b73e
RS
176void rpc_free_all_fragments(struct rpc_context *rpc);
177
8724c833 178const struct nfs_fh3 *nfs_get_rootfh(struct nfs_context *nfs);
83a446dd 179
324234ee
AR
180#ifdef __cplusplus
181}
182#endif
183
83a446dd 184#endif /* !_LIBNFS_PRIVATE_H_ */