1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/*
Copyright (c) 2010 Gluster, Inc. <http://www.gluster.com>
This file is part of GlusterFS.
GlusterFS is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.
GlusterFS is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.
*/
#ifndef _RPC_CLNT_H
#define _RPC_CLNT_H
#include "stack.h"
#include "rpc-transport.h"
#include "timer.h"
#include "xdr-common.h"
typedef enum {
RPC_CLNT_CONNECT,
RPC_CLNT_DISCONNECT,
RPC_CLNT_MSG
} rpc_clnt_event_t;
#define AUTH_GLUSTERFS 5
struct xptr_clnt;
struct rpc_req;
struct rpc_clnt;
struct rpc_clnt_config;
struct rpc_clnt_program;
typedef int (*rpc_clnt_notify_t) (struct rpc_clnt *rpc, void *mydata,
rpc_clnt_event_t fn, void *data);
typedef int (*fop_cbk_fn_t) (struct rpc_req *req, struct iovec *iov, int count,
void *myframe);
typedef int (*clnt_fn_t) (call_frame_t *, xlator_t *,
struct rpc_clnt_program *, void *args);
struct saved_frame {
union {
struct list_head list;
struct {
struct saved_frame *frame_next;
struct saved_frame *frame_prev;
};
};
void *capital_this;
void *frame;
struct timeval saved_at;
int32_t procnum;
struct rpc_clnt_program *prog;
uint64_t callid;
rpc_transport_rsp_t rsp;
};
struct saved_frames {
int64_t count;
struct saved_frame sf;
};
/* TODO: */
struct xptr_clnt {
int remote_port;
char * remote_host;
/* xptr specific */
peer_info_t peerinfo;
};
/* Initialized by procnum */
typedef struct rpc_clnt_procedure {
char *procname;
clnt_fn_t fn;
fop_cbk_fn_t cbkfn;
} rpc_clnt_procedure_t;
typedef struct rpc_clnt_program {
char *progname;
int prognum;
int progver;
rpc_clnt_procedure_t *actor;
int numproc;
} rpc_clnt_prog_t;
#define RPC_MAX_AUTH_BYTES 400
typedef struct rpc_auth_data {
int flavour;
int datalen;
char authdata[RPC_MAX_AUTH_BYTES];
} rpc_auth_data_t;
#define rpc_auth_flavour(au) ((au).flavour)
struct rpc_clnt_connection {
pthread_mutex_t lock;
rpc_transport_t *trans;
gf_timer_t *reconnect;
gf_timer_t *timer;
gf_timer_t *ping_timer;
struct rpc_clnt *rpc_clnt;
char connected;
struct saved_frames *saved_frames;
int32_t frame_timeout;
struct timeval last_sent;
struct timeval last_received;
int32_t ping_started;
};
typedef struct rpc_clnt_connection rpc_clnt_connection_t;
struct rpc_req {
rpc_clnt_connection_t *conn;
uint32_t xid;
struct iovec req[2];
int reqcnt;
struct iovec rsp[2];
int rspcnt;
struct iobuf *rsp_prochdr;
struct iobuf *rsp_procpayload;
int rpc_status;
rpc_auth_data_t verf;
rpc_clnt_prog_t *prog;
int procnum;
};
struct rpc_clnt {
pthread_mutex_t lock;
rpc_clnt_notify_t notifyfn;
rpc_clnt_connection_t conn;
void *mydata;
uint64_t xid;
glusterfs_ctx_t *ctx;
};
struct rpc_clnt_config {
int rpc_timeout;
int remote_port;
char * remote_host;
};
struct rpc_clnt * rpc_clnt_init (struct rpc_clnt_config *config,
dict_t *options, glusterfs_ctx_t *ctx,
char *name);
int rpc_clnt_register_notify (struct rpc_clnt *rpc, rpc_clnt_notify_t fn,
void *mydata);
int rpc_clnt_submit (struct rpc_clnt *rpc, rpc_clnt_prog_t *prog, int procnum,
struct iovec *proghdr, int proghdrcount,
struct iovec *progpayload, int progpayloadcount,
struct iobref *iobref, void *frame);
void rpc_clnt_destroy (struct rpc_clnt *rpc);
void rpc_clnt_set_connected (rpc_clnt_connection_t *conn);
void rpc_clnt_unset_connected (rpc_clnt_connection_t *conn);
void rpc_clnt_reconnect (void *trans_ptr);
#endif /* !_RPC_CLNT_H */
|