Whamcloud - gitweb
Avoid allocating 'event' and 'request' on the stack (saving some 350 bytes),
[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 %d xid %d\n",
173                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 not supported\n", PTL_MD_MAX_IOV);
200                 RETURN(-EINVAL);
201         }
202
203         iov = ptlrpc_get_bulk_iov (desc);
204         if (iov == NULL)
205                 return (-ENOMEM);
206
207         desc->bd_md.start = iov;
208         desc->bd_md.niov = 0;
209         desc->bd_md.length = 0;
210         desc->bd_md.threshold = 1;
211         desc->bd_md.options = PTL_MD_OP_PUT | PTL_MD_IOV;
212         desc->bd_md.user_ptr = desc;
213         desc->bd_md.eventq = bulk_sink_eq;
214
215         list_for_each_safe(tmp, next, &desc->bd_page_list) {
216                 struct ptlrpc_bulk_page *bulk;
217                 bulk = list_entry(tmp, struct ptlrpc_bulk_page, bp_link);
218
219                 LASSERT (desc->bd_md.niov < desc->bd_page_count);
220
221                 if (desc->bd_md.niov == 0)
222                         xid = bulk->bp_xid;
223                 LASSERT (xid == bulk->bp_xid);   /* should all be the same */
224
225                 iov[desc->bd_md.niov].iov_base = bulk->bp_buf;
226                 iov[desc->bd_md.niov].iov_len = bulk->bp_buflen;
227                 desc->bd_md.niov++;
228                 desc->bd_md.length += bulk->bp_buflen;
229         }
230
231         LASSERT (desc->bd_md.niov == desc->bd_page_count);
232         LASSERT (desc->bd_md.niov != 0);
233
234         source_id.nid = desc->bd_connection->c_peer.peer_nid;
235         source_id.pid = PTL_PID_ANY;
236
237         rc = PtlMEAttach(desc->bd_connection->c_peer.peer_ni,
238                          desc->bd_portal, source_id, xid, 0,
239                          PTL_UNLINK, PTL_INS_AFTER, &desc->bd_me_h);
240
241         ptlrpc_put_bulk_iov (desc, iov);
242
243         if (rc != PTL_OK) {
244                 CERROR("PtlMEAttach failed: %d\n", rc);
245                 LBUG();
246                 GOTO(cleanup, rc);
247         }
248
249         rc = PtlMDAttach(desc->bd_me_h, desc->bd_md, PTL_UNLINK,
250                          &desc->bd_md_h);
251         if (rc != PTL_OK) {
252                 CERROR("PtlMDAttach failed: %d\n", rc);
253                 LBUG();
254                 GOTO(cleanup, rc);
255         }
256
257         CDEBUG(D_NET, "Setup bulk sink buffers: %u pages %u bytes, xid %u, "
258                "portal %u\n", desc->bd_md.niov, desc->bd_md.length,
259                xid, desc->bd_portal);
260
261         RETURN(0);
262
263  cleanup:
264         ptlrpc_abort_bulk(desc);
265
266         return rc;
267 }
268
269 int ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc)
270 {
271         /* This should be safe: these handles are initialized to be
272          * invalid in ptlrpc_prep_bulk() */
273         PtlMDUnlink(desc->bd_md_h);
274         PtlMEUnlink(desc->bd_me_h);
275
276         return 0;
277 }
278
279 int ptlrpc_reply(struct ptlrpc_service *svc, struct ptlrpc_request *req)
280 {
281         if (req->rq_repmsg == NULL) {
282                 CERROR("bad: someone called ptlrpc_reply when they meant "
283                        "ptlrpc_error\n");
284                 return -EINVAL;
285         }
286
287         /* FIXME: we need to increment the count of handled events */
288         if (req->rq_type != PTL_RPC_MSG_ERR)
289                 req->rq_type = PTL_RPC_MSG_REPLY;
290         //req->rq_repmsg->conn = req->rq_connection->c_remote_conn;
291         //req->rq_repmsg->token = req->rq_connection->c_remote_token;
292         req->rq_repmsg->status = HTON__u32(req->rq_status);
293         return ptl_send_buf(req, req->rq_connection, svc->srv_rep_portal);
294 }
295
296 int ptlrpc_error(struct ptlrpc_service *svc, struct ptlrpc_request *req)
297 {
298         int rc;
299         ENTRY;
300
301         if (req->rq_repmsg) {
302                 CERROR("req already has repmsg\n");
303                 LBUG();
304         }
305
306         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
307         if (rc)
308                 RETURN(rc);
309
310         req->rq_type = PTL_RPC_MSG_ERR;
311
312         rc = ptlrpc_reply(svc, req);
313         RETURN(rc);
314 }
315
316 int ptl_send_rpc(struct ptlrpc_request *request)
317 {
318         int rc;
319         char *repbuf;
320         ptl_process_id_t source_id;
321
322         ENTRY;
323
324         if (request->rq_type != PTL_RPC_MSG_REQUEST) {
325                 CERROR("wrong packet type sent %d\n",
326                        NTOH__u32(request->rq_reqmsg->type));
327                 LBUG();
328                 RETURN(EINVAL);
329         }
330         if (request->rq_replen == 0) {
331                 CERROR("request->rq_replen is 0!\n");
332                 RETURN(EINVAL);
333         }
334
335         /* request->rq_repmsg is set only when the reply comes in, in
336          * client_packet_callback() */
337         if (request->rq_reply_md.start)
338                 OBD_FREE(request->rq_reply_md.start, request->rq_replen);
339
340         OBD_ALLOC(repbuf, request->rq_replen);
341         if (!repbuf) {
342                 LBUG();
343                 RETURN(ENOMEM);
344         }
345
346         // down(&request->rq_client->cli_rpc_sem);
347
348         source_id.nid = request->rq_connection->c_peer.peer_nid;
349         source_id.pid = PTL_PID_ANY;
350
351         rc = PtlMEAttach(request->rq_connection->c_peer.peer_ni,
352                          request->rq_import->imp_client->cli_reply_portal,
353                          source_id, request->rq_xid, 0, PTL_UNLINK,
354                          PTL_INS_AFTER, &request->rq_reply_me_h);
355         if (rc != PTL_OK) {
356                 CERROR("PtlMEAttach failed: %d\n", rc);
357                 LBUG();
358                 GOTO(cleanup, rc);
359         }
360
361         request->rq_reply_md.start = repbuf;
362         request->rq_reply_md.length = request->rq_replen;
363         request->rq_reply_md.threshold = 1;
364         request->rq_reply_md.options = PTL_MD_OP_PUT;
365         request->rq_reply_md.user_ptr = request;
366         request->rq_reply_md.eventq = reply_in_eq;
367
368         rc = PtlMDAttach(request->rq_reply_me_h, request->rq_reply_md,
369                          PTL_UNLINK, &request->rq_reply_md_h);
370         if (rc != PTL_OK) {
371                 CERROR("PtlMDAttach failed: %d\n", rc);
372                 LBUG();
373                 GOTO(cleanup2, rc);
374         }
375
376         CDEBUG(D_NET, "Setup reply buffer: %u bytes, xid "LPU64", portal %u\n",
377                request->rq_replen, request->rq_xid,
378                request->rq_import->imp_client->cli_reply_portal);
379
380         rc = ptl_send_buf(request, request->rq_connection,
381                           request->rq_import->imp_client->cli_request_portal);
382         RETURN(rc);
383
384  cleanup2:
385         PtlMEUnlink(request->rq_reply_me_h);
386  cleanup:
387         OBD_FREE(repbuf, request->rq_replen);
388         // up(&request->rq_client->cli_rpc_sem);
389
390         return rc;
391 }
392
393 void ptlrpc_link_svc_me(struct ptlrpc_request_buffer_desc *rqbd)
394 {
395         struct ptlrpc_service *service = rqbd->rqbd_service;
396         static ptl_process_id_t match_id = {PTL_NID_ANY, PTL_PID_ANY};
397         int rc;
398         ptl_md_t dummy;
399         ptl_handle_md_t md_h;
400
401         /* Attach the leading ME on which we build the ring */
402         rc = PtlMEAttach(service->srv_self.peer_ni, service->srv_req_portal,
403                          match_id, 0, ~0,
404                          PTL_UNLINK, PTL_INS_AFTER, &rqbd->rqbd_me_h);
405         if (rc != PTL_OK) {
406                 CERROR("PtlMEAttach failed: %d\n", rc);
407                 LBUG();
408         }
409
410         dummy.start         = rqbd->rqbd_buffer;
411         dummy.length        = service->srv_buf_size;
412         dummy.max_offset    = service->srv_buf_size;
413         dummy.threshold     = 1;
414         dummy.options       = PTL_MD_OP_PUT;
415         dummy.user_ptr      = rqbd;
416         dummy.eventq        = service->srv_eq_h;
417
418         rc = PtlMDAttach(rqbd->rqbd_me_h, dummy, PTL_UNLINK, &md_h);
419         if (rc != PTL_OK) {
420                 /* cleanup */
421                 CERROR("PtlMDAttach failed: %d\n", rc);
422                 LBUG();
423         }
424 }