Whamcloud - gitweb
bd37fce2ef3e98023adaa80e4133fc3bbb0fa902
[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 #define LDLM_CLI_REQUEST_PORTAL 15
56 #define LDLM_CLI_REPLY_PORTAL   16
57
58 /* default rpc ring length */
59 #define RPC_RING_LENGTH    2
60
61 #define SVC_STOPPING 1
62 #define SVC_RUNNING  2
63 #define SVC_STOPPED  4
64 #define SVC_KILLED   8
65 #define SVC_EVENT   16
66 #define SVC_LIST    32
67 #define SVC_SIGNAL  64
68
69 struct ptlrpc_client {
70         struct obd_device *cli_obd;
71         struct list_head cli_sending_head;
72         struct list_head cli_sent_head;
73         __u32 cli_request_portal;
74         __u32 cli_reply_portal;
75
76         spinlock_t cli_lock;
77         __u32 cli_xid;
78         __u32 cli_generation;  /* changes upon new connection */
79         __u32 cli_epoch;       /* changes when peer changes */
80         __u32 cli_bootcount;   /* peer's boot count */ 
81         struct semaphore cli_rpc_sem;
82 };
83
84 /* These do double-duty in rq_type and rq_flags */
85 #define PTL_RPC_INTR    1
86 #define PTL_RPC_REQUEST 2
87 #define PTL_RPC_REPLY   3
88 #define PTL_RPC_BULK    4
89 #define PTL_RPC_SENT    5
90 #define PTL_BULK_SENT   6
91 #define PTL_BULK_RCVD   7
92 #define PTL_RPC_ERR     8
93
94 struct ptlrpc_request { 
95         int rq_type; /* one of PTL_RPC_REQUEST, PTL_RPC_REPLY, PTL_RPC_BULK */
96         spinlock_t rq_lock;
97         struct list_head rq_list;
98         struct obd_device *rq_obd;
99         int rq_status;
100         int rq_flags; 
101         __u32 rq_connid;
102         __u32 rq_xid;
103
104         int rq_reqlen;
105         char *rq_reqbuf;
106         struct lustre_msg *rq_reqmsg;
107
108         int rq_replen;
109         char *rq_repbuf;
110         struct lustre_msg *rq_repmsg;
111
112         char *rq_bulkbuf;
113         int rq_bulklen;
114
115         void * rq_reply_handle;
116         wait_queue_head_t rq_wait_for_rep;
117
118         /* incoming reply */
119         ptl_md_t rq_reply_md;
120         ptl_handle_md_t rq_reply_md_h;
121         ptl_handle_me_t rq_reply_me_h;
122
123         /* outgoing req/rep */
124         ptl_md_t rq_req_md;
125         ptl_handle_md_t rq_req_md_h;
126
127         __u32 rq_reply_portal;
128         __u32 rq_req_portal;
129
130         struct lustre_peer rq_peer;
131         struct ptlrpc_client *rq_client;
132 };
133
134 struct ptlrpc_bulk_desc {
135         int b_flags;
136         struct lustre_peer b_peer;
137         __u32 b_portal;
138         char *b_buf;
139         int b_buflen;
140         int (*b_cb)(struct ptlrpc_bulk_desc *, void *);
141         struct page *b_page;
142         struct obd_conn b_conn;
143         __u32 b_xid;
144
145         wait_queue_head_t b_waitq;
146
147         ptl_md_t b_md;
148         ptl_handle_md_t b_md_h;
149         ptl_handle_me_t b_me_h;
150 };
151
152 struct ptlrpc_service {
153         /* incoming request buffers */
154         /* FIXME: perhaps a list of EQs, if multiple NIs are used? */
155         char *srv_buf[RPC_RING_LENGTH];
156         __u32 srv_ref_count[RPC_RING_LENGTH];
157         ptl_handle_me_t srv_me_h[RPC_RING_LENGTH];
158         __u32 srv_buf_size;
159         __u32 srv_ring_length;
160         __u32 srv_req_portal;
161         __u32 srv_rep_portal;
162
163         __u32 srv_xid;
164
165         /* event queue */
166         ptl_handle_eq_t srv_eq_h;
167
168         __u32 srv_flags; 
169         struct lustre_peer srv_self;
170         ptl_process_id_t srv_id;
171
172         struct task_struct *srv_thread;
173         wait_queue_head_t srv_waitq;
174         wait_queue_head_t srv_ctl_waitq;
175
176         spinlock_t srv_lock;
177         struct list_head srv_reqs;
178         ptl_event_t  srv_ev;
179         int (*srv_handler)(struct obd_device *obddev, 
180                            struct ptlrpc_service *svc,
181                            struct ptlrpc_request *req);
182 };
183
184 typedef int (*svc_handler_t)(struct obd_device *obddev,
185                              struct ptlrpc_service *svc,
186                              struct ptlrpc_request *req);
187
188
189
190 /* rpc/niobuf.c */
191 int ptlrpc_check_bulk_sent(struct ptlrpc_bulk_desc *);
192 int ptlrpc_send_bulk(struct ptlrpc_bulk_desc *, int portal);
193 int ptl_send_buf(struct ptlrpc_request *, struct lustre_peer *, int portal);
194 int ptlrpc_register_bulk(struct ptlrpc_bulk_desc *);
195 int ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *bulk);
196 int ptlrpc_reply(struct ptlrpc_service *svc, struct ptlrpc_request *req);
197 int ptlrpc_error(struct ptlrpc_service *svc, struct ptlrpc_request *req);
198 int ptl_send_rpc(struct ptlrpc_request *request, struct ptlrpc_client *cl);
199 void ptlrpc_link_svc_me(struct ptlrpc_service *service, int i);
200
201 /* rpc/client.c */
202 void ptlrpc_init_client(int dev, int req_portal, int rep_portal,
203                         struct ptlrpc_client *cl);
204 int ptlrpc_connect_client(char *uuid, struct ptlrpc_client *cl,
205                           struct lustre_peer *peer);
206 int ptlrpc_queue_wait(struct ptlrpc_client *cl, struct ptlrpc_request *req);
207 int ptlrpc_queue_req(struct ptlrpc_client *peer, struct ptlrpc_request *req);
208 struct ptlrpc_request *ptlrpc_prep_req(struct ptlrpc_client *cl,
209                                        struct lustre_peer *peer, int opcode,
210                                        int count, int *lengths, char **bufs);
211 void ptlrpc_free_req(struct ptlrpc_request *request);
212 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk(struct lustre_peer *);
213 int ptlrpc_check_status(struct ptlrpc_request *req, int err);
214
215 /* rpc/service.c */
216 struct ptlrpc_service *
217 ptlrpc_init_svc(__u32 bufsize, int req_portal, int rep_portal, char *uuid,
218                 svc_handler_t);
219 void ptlrpc_stop_thread(struct ptlrpc_service *svc);
220 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
221                         char *name);
222 int rpc_unregister_service(struct ptlrpc_service *service);
223
224 struct ptlrpc_svc_data { 
225         char *name;
226         struct ptlrpc_service *svc; 
227         struct obd_device *dev;
228 }; 
229
230 /* rpc/pack_generic.c */
231 int lustre_pack_msg(int count, int *lens, char **bufs, int *len, char **buf);
232 int lustre_msg_size(int count, int *lengths);
233 int lustre_unpack_msg(char *buf, int len);
234 void *lustre_msg_buf(struct lustre_msg *m, int n);
235
236 #endif