Whamcloud - gitweb
79c7d02505d367e6b42ecd82d4d2ae7630f8a4d9
[fs/lustre-release.git] / lustre / include / linux / lustre_net.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef _LUSTRE_NET_H
24 #define _LUSTRE_NET_H
25
26 #include <linux/tqueue.h>
27 #include <linux/kp30.h>
28 // #include <linux/obd.h>
29 #include <portals/p30.h>
30 #include <linux/lustre_idl.h>
31 #include <linux/lustre_ha.h>
32 #include <linux/lustre_import.h>
33
34 /* default rpc ring length */
35 //#define RPC_RING_LENGTH    10
36 #define RPC_REQUEST_QUEUE_DEPTH 1024
37
38 struct ptlrpc_connection {
39         struct list_head        c_link;
40         struct lustre_peer      c_peer;
41         __u8                    c_local_uuid[37];  /* XXX do we need this? */
42         __u8                    c_remote_uuid[37];
43
44         int                     c_level;
45         __u32                   c_generation;  /* changes upon new connection */
46         __u32                   c_epoch;       /* changes when peer changes */
47         __u32                   c_bootcount;   /* peer's boot count */
48
49         spinlock_t              c_lock;        /* also protects req->rq_list */
50         __u32                   c_xid_in;
51         __u32                   c_xid_out;
52
53         atomic_t                c_refcount;
54         __u64                   c_token;
55         __u64                   c_remote_conn;
56         __u64                   c_remote_token;
57
58         __u64                   c_last_xid;    /* protected by c_lock */
59         __u64                   c_last_committed;/* protected by c_lock */
60         struct list_head        c_delayed_head;/* delayed until post-recovery */
61         struct list_head        c_sending_head;/* protected by c_lock */
62         struct list_head        c_dying_head;  /* protected by c_lock */
63         struct recovd_data      c_recovd_data;
64
65         struct list_head        c_clients; /* XXXshaver will be c_imports */
66         struct list_head        c_exports;
67
68 };
69
70 struct ptlrpc_client {
71         __u32                     cli_request_portal;
72         __u32                     cli_reply_portal;
73
74         __u32                     cli_target_devno;
75
76         void                     *cli_data;
77         // struct semaphore          cli_rpc_sem; /* limits outstanding requests */
78
79         char                     *cli_name;
80 };
81
82 /* state flags of requests */
83 #define PTL_RPC_FL_INTR      (1 << 0)
84 #define PTL_RPC_FL_REPLIED   (1 << 1)  /* reply was received */
85 #define PTL_RPC_FL_SENT      (1 << 2)
86 #define PTL_BULK_FL_SENT     (1 << 3)
87 #define PTL_BULK_FL_RCVD     (1 << 4)
88 #define PTL_RPC_FL_ERR       (1 << 5)
89 #define PTL_RPC_FL_TIMEOUT   (1 << 6)
90 #define PTL_RPC_FL_RESEND    (1 << 7)
91 #define PTL_RPC_FL_RECOVERY  (1 << 8)  /* retransmission for recovery */
92 #define PTL_RPC_FL_FINISHED  (1 << 9)
93 #define PTL_RPC_FL_RETAIN    (1 << 10) /* retain for replay after reply */
94 #define PTL_RPC_FL_REPLAY    (1 << 11) /* replay upon recovery */
95 #define PTL_RPC_FL_ALLOCREP  (1 << 12) /* reply buffer allocated */
96
97 struct ptlrpc_request { 
98         int rq_type; /* one of PTL_RPC_MSG_* */
99         struct list_head rq_list;
100         struct list_head rq_multi;
101         struct obd_device *rq_obd;
102         int rq_status;
103         int rq_flags; 
104         __u32 rq_connid;
105         atomic_t rq_refcount;
106
107         int rq_reqlen;
108         struct lustre_msg *rq_reqmsg;
109
110         int rq_replen;
111         struct lustre_msg *rq_repmsg;
112         __u64 rq_transno;
113         __u64 rq_xid;
114
115         char *rq_bulkbuf;
116         int rq_bulklen;
117
118         int rq_level;
119         time_t rq_time;
120         time_t rq_timeout;
121         //        void * rq_reply_handle;
122         wait_queue_head_t rq_wait_for_rep;
123
124         /* incoming reply */
125         ptl_md_t rq_reply_md;
126         ptl_handle_md_t rq_reply_md_h;
127         ptl_handle_me_t rq_reply_me_h;
128
129         /* outgoing req/rep */
130         ptl_md_t rq_req_md;
131         ptl_handle_md_t rq_req_md_h;
132
133         struct lustre_peer rq_peer; /* XXX see service.c can this be factored away? */
134         struct obd_export *rq_export;
135         struct ptlrpc_connection *rq_connection;
136         struct obd_import *rq_import;
137         struct ptlrpc_service *rq_svc;
138 };
139
140 struct ptlrpc_bulk_page {
141         struct ptlrpc_bulk_desc *bp_desc;
142         struct list_head bp_link;
143         void *bp_buf;
144         int bp_buflen;
145         struct page *bp_page;
146         __u32 bp_xid;
147         __u32 bp_flags;
148         struct dentry *bp_dentry;
149         int (*bp_cb)(struct ptlrpc_bulk_page *);
150 };
151
152 struct ptlrpc_bulk_desc {
153         int bd_flags;
154         struct ptlrpc_connection *bd_connection;
155         struct ptlrpc_client *bd_client;
156         __u32 bd_portal;
157         struct lustre_handle bd_conn;
158         void (*bd_cb)(struct ptlrpc_bulk_desc *, void *);
159         void *bd_cb_data;
160
161         wait_queue_head_t bd_waitq;
162         struct list_head bd_page_list;
163         __u32 bd_page_count;
164         atomic_t bd_refcount;
165         void *bd_desc_private;
166         struct tq_struct bd_queue;
167
168         ptl_md_t bd_md;
169         ptl_handle_md_t bd_md_h;
170         ptl_handle_me_t bd_me_h;
171
172         struct iovec bd_iov[16];    /* self-sized pre-allocated iov */
173 };
174
175 struct ptlrpc_thread {
176         struct list_head t_link;
177
178         __u32 t_flags; 
179         wait_queue_head_t t_ctl_waitq;
180 };
181
182 struct ptlrpc_request_buffer_desc {
183         struct ptlrpc_service *rqbd_service;
184         ptl_handle_me_t        rqbd_me_h;
185         char                  *rqbd_buffer;
186 };
187
188 struct ptlrpc_service {
189         time_t srv_time;
190         time_t srv_timeout;
191
192         /* incoming request buffers */
193         /* FIXME: perhaps a list of EQs, if multiple NIs are used? */
194
195         struct ptlrpc_request_buffer_desc *srv_rqbds; /* all the request buffer descriptors */
196
197         __u32 srv_buf_size;                     /* # bytes in a request buffer */
198         __u32 srv_nbuffs;                       /* # request buffers */
199         __u32 srv_req_portal;
200         __u32 srv_rep_portal;
201
202         __u32 srv_xid;
203
204         /* event queue */
205         ptl_handle_eq_t srv_eq_h;
206
207         struct lustre_peer srv_self;
208
209         wait_queue_head_t srv_waitq; /* all threads sleep on this */
210
211         spinlock_t srv_lock;
212         struct list_head srv_reqs;
213         struct list_head srv_threads;
214         int (*srv_handler)(struct ptlrpc_request *req);
215         char *srv_name;  /* only statically allocated strings here; we don't clean them */
216 };
217
218 static inline void ptlrpc_hdl2req(struct ptlrpc_request *req, struct lustre_handle *h)
219 {
220         req->rq_reqmsg->addr = h->addr;
221         req->rq_reqmsg->cookie = h->cookie;
222 }
223
224 typedef void (*bulk_callback_t)(struct ptlrpc_bulk_desc *, void *);
225
226 typedef int (*svc_handler_t)(struct ptlrpc_request *req);
227
228 /* rpc/connection.c */
229 void ptlrpc_readdress_connection(struct ptlrpc_connection *conn, char *uuid);
230 struct ptlrpc_connection *ptlrpc_get_connection(struct lustre_peer *peer,
231                                                 char *uuid);
232 int ptlrpc_put_connection(struct ptlrpc_connection *c);
233 struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *);
234 void ptlrpc_init_connection(void);
235 void ptlrpc_cleanup_connection(void);
236
237 /* rpc/niobuf.c */
238 int ptlrpc_check_bulk_sent(struct ptlrpc_bulk_desc *bulk);
239 int ptlrpc_check_bulk_received(struct ptlrpc_bulk_desc *bulk);
240 int ptlrpc_send_bulk(struct ptlrpc_bulk_desc *);
241 int ptlrpc_register_bulk(struct ptlrpc_bulk_desc *);
242 int ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *bulk);
243 int ptlrpc_reply(struct ptlrpc_service *svc, struct ptlrpc_request *req);
244 int ptlrpc_error(struct ptlrpc_service *svc, struct ptlrpc_request *req);
245 void ptlrpc_resend_req(struct ptlrpc_request *request);
246 int ptl_send_rpc(struct ptlrpc_request *request);
247 void ptlrpc_link_svc_me(struct ptlrpc_request_buffer_desc *rqbd);
248
249 /* rpc/client.c */
250 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
251                         struct ptlrpc_client *);
252 void ptlrpc_cleanup_client(struct obd_import *imp);
253 __u8 *ptlrpc_req_to_uuid(struct ptlrpc_request *req);
254 struct ptlrpc_connection *ptlrpc_uuid_to_connection(char *uuid);
255
256 int ptlrpc_queue_wait(struct ptlrpc_request *req);
257 void ptlrpc_continue_req(struct ptlrpc_request *req);
258 int ptlrpc_replay_req(struct ptlrpc_request *req);
259 void ptlrpc_restart_req(struct ptlrpc_request *req);
260
261 struct ptlrpc_request *ptlrpc_prep_req(struct obd_import *imp, int opcode,
262                                        int count, int *lengths, char **bufs);
263 void ptlrpc_free_req(struct ptlrpc_request *request);
264 void ptlrpc_req_finished(struct ptlrpc_request *request);
265 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk(struct ptlrpc_connection *);
266 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *bulk);
267 struct ptlrpc_bulk_page *ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc);
268 void ptlrpc_free_bulk_page(struct ptlrpc_bulk_page *page);
269 int ptlrpc_check_status(struct ptlrpc_request *req, int err);
270
271 /* rpc/service.c */
272 struct ptlrpc_service *
273 ptlrpc_init_svc(__u32 bufsize, int nbuffs, int req_portal, int rep_portal, 
274                 char *uuid, svc_handler_t, char *name);
275 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc);
276 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
277                         char *name);
278 int ptlrpc_unregister_service(struct ptlrpc_service *service);
279
280 struct ptlrpc_svc_data { 
281         char *name;
282         struct ptlrpc_service *svc; 
283         struct ptlrpc_thread *thread;
284         struct obd_device *dev;
285 }; 
286
287 /* rpc/pack_generic.c */
288 int lustre_pack_msg(int count, int *lens, char **bufs, int *len,
289                     struct lustre_msg **msg);
290 int lustre_msg_size(int count, int *lengths);
291 int lustre_unpack_msg(struct lustre_msg *m, int len);
292 void *lustre_msg_buf(struct lustre_msg *m, int n);
293
294 static inline void ptlrpc_bulk_decref(struct ptlrpc_bulk_desc *desc)
295 {
296         if (atomic_dec_and_test(&desc->bd_refcount)) {
297                 CDEBUG(D_PAGE, "Released last ref on %p, freeing\n", desc);
298                 ptlrpc_free_bulk(desc);
299         } else {
300                 CDEBUG(D_PAGE, "%p -> %d\n", desc,
301                        atomic_read(&desc->bd_refcount));
302         }
303 }
304
305 static inline void ptlrpc_bulk_addref(struct ptlrpc_bulk_desc *desc)
306 {
307         atomic_inc(&desc->bd_refcount);
308         CDEBUG(D_PAGE, "Set refcount of %p to %d\n", desc,
309                atomic_read(&desc->bd_refcount));
310 }
311
312 #endif