Whamcloud - gitweb
cf2d56985f7bde710192e041a729d0ce3605bf17
[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/kp30.h>
27 #include <linux/obd_support.h>
28 #include <linux/obd_class.h>
29 #include <portals/p30.h>
30 #include <linux/lustre_idl.h>
31
32 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
33  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
34  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
35  */
36
37 #define OSC_REQUEST_PORTAL 1
38 #define OSC_REPLY_PORTAL   2
39 #define OSC_BULK_PORTAL    3
40
41 #define OST_REQUEST_PORTAL 4
42 #define OST_REPLY_PORTAL   5
43 #define OST_BULK_PORTAL    6
44
45 #define MDC_REQUEST_PORTAL 7
46 #define MDC_REPLY_PORTAL   8
47 #define MDC_BULK_PORTAL    9
48
49 #define MDS_REQUEST_PORTAL 10
50 #define MDS_REPLY_PORTAL   11
51 #define MDS_BULK_PORTAL    12
52
53 #define LDLM_REQUEST_PORTAL 13
54 #define LDLM_REPLY_PORTAL   14
55
56 /* default rpc ring length */
57 #define RPC_RING_LENGTH    2
58
59 #define SVC_STOPPING 1
60 #define SVC_RUNNING 2
61 #define SVC_STOPPED 4
62 #define SVC_KILLED  8
63 #define SVC_EVENT  16
64 #define SVC_LIST   32
65 #define SVC_SIGNAL 64
66
67 typedef int (*rep_unpack_t)(char *, int, struct ptlrep_hdr **, union ptl_rep *);
68 typedef int (*req_pack_t)(char *, int, char *, int, struct ptlreq_hdr **,
69                           union ptl_req*, int *, char **); 
70
71 typedef int (*req_unpack_t)(char *buf, int len, struct ptlreq_hdr **, 
72                             union ptl_req *);
73 typedef int (*rep_pack_t)(char *buf1, int len1, char *buf2, int len2,
74                           struct ptlrep_hdr **, union ptl_rep*, 
75                           int *replen, char **repbuf); 
76
77 struct ptlrpc_client {
78         struct lustre_peer cli_server;
79         struct obd_device *cli_obd;
80         __u32 cli_request_portal;
81         __u32 cli_reply_portal;
82         rep_unpack_t cli_rep_unpack;
83         req_pack_t cli_req_pack;
84
85         spinlock_t cli_lock;
86         __u32 cli_xid;
87         struct semaphore cli_rpc_sem;
88 };
89
90 /* These do double-duty in rq_type and rq_flags */
91 #define PTL_RPC_INTR    1
92 #define PTL_RPC_REQUEST 2
93 #define PTL_RPC_REPLY   3
94 #define PTL_RPC_BULK    4
95 #define PTL_RPC_SENT    5
96 #define PTL_BULK_SENT   6
97 #define PTL_BULK_RCVD   7
98 #define PTL_RPC_ERR     8
99
100 struct ptlrpc_request { 
101         int rq_type; /* one of PTL_RPC_REQUEST, PTL_RPC_REPLY, PTL_RPC_BULK */
102         spinlock_t rq_lock;
103         struct list_head rq_list;
104         struct obd_device *rq_obd;
105         int rq_status;
106         int rq_flags; 
107         __u32 rq_connid;
108         __u32 rq_xid;
109
110         char *rq_reqbuf;
111         int rq_reqlen;
112         struct ptlreq_hdr *rq_reqhdr;
113         union ptl_req rq_req;
114
115         char *rq_repbuf;
116         int rq_replen;
117         struct ptlrep_hdr *rq_rephdr;
118         union ptl_rep rq_rep;
119
120         char *rq_bulkbuf;
121         int rq_bulklen;
122
123         void * rq_reply_handle;
124         wait_queue_head_t rq_wait_for_rep;
125
126         /* incoming reply */
127         ptl_md_t rq_reply_md;
128         ptl_handle_md_t rq_reply_md_h;
129         ptl_handle_me_t rq_reply_me_h;
130
131         /* outgoing req/rep */
132         ptl_md_t rq_req_md;
133         ptl_handle_md_t rq_req_md_h;
134
135         __u32 rq_reply_portal;
136         __u32 rq_req_portal;
137
138         struct lustre_peer rq_peer;
139 };
140
141 struct ptlrpc_bulk_desc {
142         int b_flags;
143         struct lustre_peer b_peer;
144         __u32 b_portal;
145         char *b_buf;
146         int b_buflen;
147         int (*b_cb)(struct ptlrpc_bulk_desc *, void *);
148         struct page *b_page;
149         struct obd_conn b_conn;
150         __u32 b_xid;
151
152         wait_queue_head_t b_waitq;
153
154         ptl_md_t b_md;
155         ptl_handle_md_t b_md_h;
156         ptl_handle_me_t b_me_h;
157 };
158
159 struct ptlrpc_service {
160         /* incoming request buffers */
161         /* FIXME: perhaps a list of EQs, if multiple NIs are used? */
162         char *srv_buf[RPC_RING_LENGTH];
163         __u32 srv_ref_count[RPC_RING_LENGTH];
164         ptl_handle_me_t srv_me_h[RPC_RING_LENGTH];
165         __u32 srv_buf_size;
166         __u32 srv_ring_length;
167         __u32 srv_req_portal;
168         __u32 srv_rep_portal;
169
170         __u32 srv_xid;
171
172         /* event queue */
173         ptl_handle_eq_t srv_eq_h;
174
175         __u32 srv_flags; 
176         struct lustre_peer srv_self;
177         ptl_process_id_t srv_id;
178
179         struct task_struct *srv_thread;
180         wait_queue_head_t srv_waitq;
181         wait_queue_head_t srv_ctl_waitq;
182
183         spinlock_t srv_lock;
184         struct list_head srv_reqs;
185         ptl_event_t  srv_ev;
186         req_unpack_t      srv_req_unpack;
187         rep_pack_t        srv_rep_pack;
188         int (*srv_handler)(struct obd_device *obddev, 
189                            struct ptlrpc_service *svc,
190                            struct ptlrpc_request *req);
191 };
192
193 typedef int (*svc_handler_t)(struct obd_device *obddev,
194                              struct ptlrpc_service *svc,
195                              struct ptlrpc_request *req);
196
197
198
199 /* rpc/niobuf.c */
200 int ptlrpc_check_bulk_sent(struct ptlrpc_bulk_desc *);
201 int ptlrpc_send_bulk(struct ptlrpc_bulk_desc *, int portal);
202 int ptl_send_buf(struct ptlrpc_request *, struct lustre_peer *, int portal);
203 int ptlrpc_register_bulk(struct ptlrpc_bulk_desc *);
204 int ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *bulk);
205 int ptlrpc_reply(struct obd_device *obddev, struct ptlrpc_service *svc,
206                  struct ptlrpc_request *req);
207 int ptlrpc_error(struct obd_device *obddev, struct ptlrpc_service *svc,
208                  struct ptlrpc_request *req);
209 int ptl_send_rpc(struct ptlrpc_request *request, struct ptlrpc_client *cl);
210 void ptlrpc_link_svc_me(struct ptlrpc_service *service, int i);
211
212 /* rpc/client.c */
213 int ptlrpc_connect_client(int dev, char *uuid, int req_portal, int rep_portal, 
214                           req_pack_t req_pack, rep_unpack_t rep_unpack,
215                           struct ptlrpc_client *cl);
216 int ptlrpc_queue_wait(struct ptlrpc_client *cl, struct ptlrpc_request *req);
217 int ptlrpc_queue_req(struct ptlrpc_client *peer, struct ptlrpc_request *req);
218 struct ptlrpc_request *ptlrpc_prep_req(struct ptlrpc_client *cl, 
219                                        int opcode, int namelen, char *name,
220                                        int tgtlen, char *tgt);
221 void ptlrpc_free_req(struct ptlrpc_request *request);
222 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk(struct lustre_peer *);
223 int ptlrpc_check_status(struct ptlrpc_request *req, int err);
224
225 /* rpc/service.c */
226 struct ptlrpc_service *
227 ptlrpc_init_svc(__u32 bufsize, int req_portal, int rep_portal, char *uuid,
228                 svc_handler_t);
229 void ptlrpc_stop_thread(struct ptlrpc_service *svc);
230 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
231                         char *name);
232 int rpc_unregister_service(struct ptlrpc_service *service);
233
234 struct ptlrpc_svc_data { 
235         char *name;
236         struct ptlrpc_service *svc; 
237         struct obd_device *dev;
238 }; 
239
240 #endif