Whamcloud - gitweb
- Convert version to flags -- a few days earlier than I said, but I'll back it
[fs/lustre-release.git] / lustre / ptlrpc / niobuf.c
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 #define DEBUG_SUBSYSTEM S_RPC
24
25 #include <linux/obd_support.h>
26 #include <linux/lustre_net.h>
27 #include <linux/lustre_lib.h>
28 #include <linux/obd.h>
29
30 extern ptl_handle_eq_t request_out_eq, reply_in_eq, reply_out_eq,
31         bulk_source_eq, bulk_sink_eq;
32
33 static int ptl_send_buf(struct ptlrpc_request *request,
34                         struct ptlrpc_connection *conn, int portal)
35 {
36         int rc;
37         ptl_process_id_t remote_id;
38         ptl_handle_md_t md_h;
39
40         LASSERT(conn);
41
42         request->rq_req_md.user_ptr = request;
43
44         switch (request->rq_type) {
45         case PTL_RPC_MSG_REQUEST:
46                 request->rq_reqmsg->type = HTON__u32(request->rq_type);
47                 request->rq_req_md.start = request->rq_reqmsg;
48                 request->rq_req_md.length = request->rq_reqlen;
49                 request->rq_req_md.eventq = request_out_eq;
50                 break;
51         case PTL_RPC_MSG_ERR:
52         case PTL_RPC_MSG_REPLY:
53                 request->rq_repmsg->type = HTON__u32(request->rq_type);
54                 request->rq_req_md.start = request->rq_repmsg;
55                 request->rq_req_md.length = request->rq_replen;
56                 request->rq_req_md.eventq = reply_out_eq;
57                 break;
58         default:
59                 LBUG();
60                 return -1; /* notreached */
61         }
62         request->rq_req_md.threshold = 1;
63         request->rq_req_md.options = PTL_MD_OP_PUT;
64         request->rq_req_md.user_ptr = request;
65
66         rc = PtlMDBind(conn->c_peer.peer_ni, request->rq_req_md, &md_h);
67         if (rc != 0) {
68                 CERROR("PtlMDBind failed: %d\n", rc);
69                 LBUG();
70                 return rc;
71         }
72
73         remote_id.nid = conn->c_peer.peer_nid;
74         remote_id.pid = 0;
75
76         CDEBUG(D_NET, "Sending %d bytes to portal %d, xid "LPD64"\n",
77                request->rq_req_md.length, portal, request->rq_xid);
78
79         if (!portal)
80                 LBUG();
81         rc = PtlPut(md_h, PTL_NOACK_REQ, remote_id, portal, 0, request->rq_xid,
82                     0, 0);
83         if (rc != PTL_OK) {
84                 CERROR("PtlPut("LPU64", %d, "LPD64") failed: %d\n",
85                        remote_id.nid, portal, request->rq_xid, rc);
86                 PtlMDUnlink(md_h);
87         }
88
89         return rc;
90 }
91
92 static inline struct iovec *
93 ptlrpc_get_bulk_iov (struct ptlrpc_bulk_desc *desc)
94 {
95         struct iovec *iov;
96
97         if (desc->bd_page_count <= sizeof (desc->bd_iov)/sizeof (struct iovec))
98                 return (desc->bd_iov);
99
100         OBD_ALLOC (iov, desc->bd_page_count * sizeof (struct iovec));
101         if (iov == NULL)
102                 LBUG();
103
104         return (iov);
105 }
106
107 static inline void
108 ptlrpc_put_bulk_iov (struct ptlrpc_bulk_desc *desc, struct iovec *iov)
109 {
110         if (desc->bd_page_count <= sizeof (desc->bd_iov)/sizeof (struct iovec))
111                 return;
112
113         OBD_FREE (iov, desc->bd_page_count * sizeof (struct iovec));
114 }
115
116 int ptlrpc_send_bulk(struct ptlrpc_bulk_desc *desc)
117 {
118         int rc;
119         struct list_head *tmp, *next;
120         ptl_process_id_t remote_id;
121         __u32 xid = 0;
122         struct iovec *iov;
123         ENTRY;
124
125         iov = ptlrpc_get_bulk_iov (desc);
126         if (iov == NULL)
127                 RETURN (-ENOMEM);
128
129         desc->bd_md.start = iov;
130         desc->bd_md.niov = 0;
131         desc->bd_md.length = 0;
132         desc->bd_md.eventq = bulk_source_eq;
133         desc->bd_md.threshold = 2; /* SENT and ACK */
134         desc->bd_md.options = PTL_MD_OP_PUT | PTL_MD_IOV;
135         desc->bd_md.user_ptr = desc;
136
137         atomic_set (&desc->bd_source_callback_count, 2);
138
139         list_for_each_safe(tmp, next, &desc->bd_page_list) {
140                 struct ptlrpc_bulk_page *bulk;
141                 bulk = list_entry(tmp, struct ptlrpc_bulk_page, bp_link);
142
143                 LASSERT (desc->bd_md.niov < desc->bd_page_count);
144
145                 if (desc->bd_md.niov == 0)
146                         xid = bulk->bp_xid;
147                 LASSERT (xid == bulk->bp_xid);   /* should all be the same */
148
149                 iov[desc->bd_md.niov].iov_base = bulk->bp_buf;
150                 iov[desc->bd_md.niov].iov_len = bulk->bp_buflen;
151                 desc->bd_md.niov++;
152                 desc->bd_md.length += bulk->bp_buflen;
153         }
154
155         LASSERT (desc->bd_md.niov == desc->bd_page_count);
156         LASSERT (desc->bd_md.niov != 0);
157
158         rc = PtlMDBind(desc->bd_connection->c_peer.peer_ni, desc->bd_md,
159                        &desc->bd_md_h);
160
161         ptlrpc_put_bulk_iov (desc, iov); /*move down to reduce latency to send*/
162
163         if (rc != PTL_OK) {
164                 CERROR("PtlMDBind failed: %d\n", rc);
165                 LBUG();
166                 RETURN(rc);
167         }
168
169         remote_id.nid = desc->bd_connection->c_peer.peer_nid;
170         remote_id.pid = 0;
171
172         CDEBUG(D_NET, "Sending %u pages %u bytes to portal %d nid "LPX64" pid "
173                "%d xid %d\n", desc->bd_md.niov, desc->bd_md.length,
174                desc->bd_portal, remote_id.nid, remote_id.pid, xid);
175
176         rc = PtlPut(desc->bd_md_h, PTL_ACK_REQ, remote_id,
177                     desc->bd_portal, 0, xid, 0, 0);
178         if (rc != PTL_OK) {
179                 CERROR("PtlPut("LPU64", %d, %d) failed: %d\n",
180                        remote_id.nid, desc->bd_portal, xid, rc);
181                 PtlMDUnlink(desc->bd_md_h);
182                 LBUG();
183                 RETURN(rc);
184         }
185
186         RETURN(0);
187 }
188
189 int ptlrpc_register_bulk(struct ptlrpc_bulk_desc *desc)
190 {
191         struct list_head *tmp, *next;
192         int rc;
193         __u32 xid = 0;
194         struct iovec *iov;
195         ptl_process_id_t source_id;
196         ENTRY;
197
198         if (desc->bd_page_count > PTL_MD_MAX_IOV) {
199                 CERROR("iov longer than %d pages not supported (count=%d)\n",
200                        PTL_MD_MAX_IOV, desc->bd_page_count);
201                 RETURN(-EINVAL);
202         }
203
204         iov = ptlrpc_get_bulk_iov (desc);
205         if (iov == NULL)
206                 return (-ENOMEM);
207
208         desc->bd_md.start = iov;
209         desc->bd_md.niov = 0;
210         desc->bd_md.length = 0;
211         desc->bd_md.threshold = 1;
212         desc->bd_md.options = PTL_MD_OP_PUT | PTL_MD_IOV;
213         desc->bd_md.user_ptr = desc;
214         desc->bd_md.eventq = bulk_sink_eq;
215
216         list_for_each_safe(tmp, next, &desc->bd_page_list) {
217                 struct ptlrpc_bulk_page *bulk;
218                 bulk = list_entry(tmp, struct ptlrpc_bulk_page, bp_link);
219
220                 LASSERT (desc->bd_md.niov < desc->bd_page_count);
221
222                 if (desc->bd_md.niov == 0)
223                         xid = bulk->bp_xid;
224                 LASSERT (xid == bulk->bp_xid);   /* should all be the same */
225
226                 iov[desc->bd_md.niov].iov_base = bulk->bp_buf;
227                 iov[desc->bd_md.niov].iov_len = bulk->bp_buflen;
228                 desc->bd_md.niov++;
229                 desc->bd_md.length += bulk->bp_buflen;
230         }
231
232         LASSERT (desc->bd_md.niov == desc->bd_page_count);
233         LASSERT (desc->bd_md.niov != 0);
234
235         source_id.nid = desc->bd_connection->c_peer.peer_nid;
236         source_id.pid = PTL_PID_ANY;
237
238         rc = PtlMEAttach(desc->bd_connection->c_peer.peer_ni,
239                          desc->bd_portal, source_id, xid, 0,
240                          PTL_UNLINK, PTL_INS_AFTER, &desc->bd_me_h);
241
242         if (rc != PTL_OK) {
243                 CERROR("PtlMEAttach failed: %d\n", rc);
244                 LBUG();
245                 GOTO(cleanup, rc);
246         }
247
248         rc = PtlMDAttach(desc->bd_me_h, desc->bd_md, PTL_UNLINK,
249                          &desc->bd_md_h);
250         if (rc != PTL_OK) {
251                 CERROR("PtlMDAttach failed: %d\n", rc);
252                 LBUG();
253                 GOTO(cleanup, rc);
254         }
255
256         ptlrpc_put_bulk_iov (desc, iov);
257
258         CDEBUG(D_NET, "Setup bulk sink buffers: %u pages %u bytes, xid %u, "
259                "portal %u\n", desc->bd_md.niov, desc->bd_md.length,
260                xid, desc->bd_portal);
261
262         RETURN(0);
263
264  cleanup:
265         ptlrpc_put_bulk_iov (desc, iov);
266         ptlrpc_abort_bulk(desc);
267
268         return rc;
269 }
270
271 int ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc)
272 {
273         /* This should be safe: these handles are initialized to be
274          * invalid in ptlrpc_prep_bulk() */
275         PtlMDUnlink(desc->bd_md_h);
276         PtlMEUnlink(desc->bd_me_h);
277
278         return 0;
279 }
280
281 int ptlrpc_reply(struct ptlrpc_service *svc, struct ptlrpc_request *req)
282 {
283         if (req->rq_repmsg == NULL) {
284                 CERROR("bad: someone called ptlrpc_reply when they meant "
285                        "ptlrpc_error\n");
286                 return -EINVAL;
287         }
288
289         /* FIXME: we need to increment the count of handled events */
290         if (req->rq_type != PTL_RPC_MSG_ERR)
291                 req->rq_type = PTL_RPC_MSG_REPLY;
292         //req->rq_repmsg->conn = req->rq_connection->c_remote_conn;
293         //req->rq_repmsg->token = req->rq_connection->c_remote_token;
294         req->rq_repmsg->status = HTON__u32(req->rq_status);
295         return ptl_send_buf(req, req->rq_connection, svc->srv_rep_portal);
296 }
297
298 int ptlrpc_error(struct ptlrpc_service *svc, struct ptlrpc_request *req)
299 {
300         int rc;
301         ENTRY;
302
303         if (req->rq_repmsg) {
304                 CERROR("req already has repmsg\n");
305                 LBUG();
306         }
307
308         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
309         if (rc)
310                 RETURN(rc);
311
312         req->rq_type = PTL_RPC_MSG_ERR;
313
314         rc = ptlrpc_reply(svc, req);
315         RETURN(rc);
316 }
317
318 int ptl_send_rpc(struct ptlrpc_request *request)
319 {
320         int rc;
321         char *repbuf;
322         ptl_process_id_t source_id;
323
324         ENTRY;
325
326         if (request->rq_type != PTL_RPC_MSG_REQUEST) {
327                 CERROR("wrong packet type sent %d\n",
328                        NTOH__u32(request->rq_reqmsg->type));
329                 LBUG();
330                 RETURN(EINVAL);
331         }
332
333         source_id.nid = request->rq_connection->c_peer.peer_nid;
334         source_id.pid = PTL_PID_ANY;
335
336         /* add a ref, which will be balanced in request_out_callback */
337         atomic_inc(&request->rq_refcount);
338         if (request->rq_replen != 0) {
339                 /* request->rq_repmsg is set only when the reply comes in, in
340                  * client_packet_callback() */
341                 if (request->rq_reply_md.start) {
342                         PtlMEUnlink(request->rq_reply_me_h);
343                         OBD_FREE(request->rq_reply_md.start,
344                                  request->rq_replen);
345                         /* If we're resending, rq_repmsg needs to be NULLed out
346                          * again so that ptlrpc_check_reply doesn't trip early.
347                          */
348                         request->rq_repmsg = NULL;
349                 }
350                 OBD_ALLOC(repbuf, request->rq_replen);
351                 if (!repbuf) {
352                         LBUG();
353                         RETURN(ENOMEM);
354                 }
355
356                 rc = PtlMEAttach(request->rq_connection->c_peer.peer_ni,
357                              request->rq_reply_portal,/* XXX FIXME bug 625069 */
358                                  source_id, request->rq_xid, 0, PTL_UNLINK,
359                                  PTL_INS_AFTER, &request->rq_reply_me_h);
360                 if (rc != PTL_OK) {
361                         CERROR("PtlMEAttach failed: %d\n", rc);
362                         LBUG();
363                         GOTO(cleanup, rc);
364                 }
365
366                 request->rq_reply_md.start = repbuf;
367                 request->rq_reply_md.length = request->rq_replen;
368                 request->rq_reply_md.threshold = 1;
369                 request->rq_reply_md.options = PTL_MD_OP_PUT;
370                 request->rq_reply_md.user_ptr = request;
371                 request->rq_reply_md.eventq = reply_in_eq;
372
373                 rc = PtlMDAttach(request->rq_reply_me_h, request->rq_reply_md,
374                                  PTL_UNLINK, NULL);
375                 if (rc != PTL_OK) {
376                         CERROR("PtlMDAttach failed: %d\n", rc);
377                         LBUG();
378                         GOTO(cleanup2, rc);
379                 }
380
381                 CDEBUG(D_NET, "Setup reply buffer: %u bytes, xid "LPU64
382                        ", portal %u\n",
383                        request->rq_replen, request->rq_xid,
384                        request->rq_reply_portal);
385         }
386
387         /* Clear any flags that may be present from previous sends,
388          * except for REPLAY. */
389         request->rq_flags &= PTL_RPC_FL_REPLAY;
390         rc = ptl_send_buf(request, request->rq_connection,
391                           request->rq_request_portal);
392         RETURN(rc);
393
394  cleanup2:
395         PtlMEUnlink(request->rq_reply_me_h);
396  cleanup:
397         OBD_FREE(repbuf, request->rq_replen);
398         // up(&request->rq_client->cli_rpc_sem);
399
400         return rc;
401 }
402
403 void ptlrpc_link_svc_me(struct ptlrpc_request_buffer_desc *rqbd)
404 {
405         struct ptlrpc_service *service = rqbd->rqbd_service;
406         static ptl_process_id_t match_id = {PTL_NID_ANY, PTL_PID_ANY};
407         int rc;
408         ptl_md_t dummy;
409         ptl_handle_md_t md_h;
410
411         LASSERT (atomic_read (&rqbd->rqbd_refcount) == 0);
412
413         /* Attach the leading ME on which we build the ring */
414         rc = PtlMEAttach(service->srv_self.peer_ni, service->srv_req_portal,
415                          match_id, 0, ~0,
416                          PTL_UNLINK, PTL_INS_AFTER, &rqbd->rqbd_me_h);
417         if (rc != PTL_OK) {
418                 CERROR("PtlMEAttach failed: %d\n", rc);
419                 LBUG();
420         }
421
422         dummy.start      = rqbd->rqbd_buffer;
423         dummy.length     = service->srv_buf_size;
424         dummy.max_size   = service->srv_max_req_size;
425         dummy.threshold  = PTL_MD_THRESH_INF;
426         dummy.options    = PTL_MD_OP_PUT | PTL_MD_MAX_SIZE | PTL_MD_AUTO_UNLINK;
427         dummy.user_ptr   = rqbd;
428         dummy.eventq     = service->srv_eq_h;
429
430         atomic_inc (&service->srv_nrqbds_receiving);
431         atomic_set (&rqbd->rqbd_refcount, 1);   /* 1 ref for portals */
432
433         rc = PtlMDAttach(rqbd->rqbd_me_h, dummy, PTL_UNLINK, &md_h);
434         if (rc != PTL_OK) {
435                 CERROR("PtlMDAttach failed: %d\n", rc);
436                 LBUG();
437 #warning proper cleanup required
438                 PtlMEUnlink (rqbd->rqbd_me_h);
439                 atomic_set (&rqbd->rqbd_refcount, 0);
440                 atomic_dec (&service->srv_nrqbds_receiving);
441         }
442 }