Whamcloud - gitweb
b2aa6b9a50ad40d781158a90827e7b88e0a300ec
[fs/lustre-release.git] / lustre / ptlrpc / events.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 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 #ifdef __KERNEL__
26 #include <linux/module.h>
27 #else
28 #include <liblustre.h>
29 #endif
30 #include <linux/obd_class.h>
31 #include <linux/lustre_net.h>
32
33 struct ptlrpc_ni  ptlrpc_interfaces[NAL_MAX_NR];
34 int               ptlrpc_ninterfaces;
35
36 /*  
37  *  Client's outgoing request callback
38  */
39 void request_out_callback(ptl_event_t *ev)
40 {
41         struct ptlrpc_cb_id   *cbid = ev->mem_desc.user_ptr;
42         struct ptlrpc_request *req = cbid->cbid_arg;
43         unsigned long          flags;
44         ENTRY;
45
46         LASSERT (ev->type == PTL_EVENT_SENT ||
47                  ev->type == PTL_EVENT_UNLINK);
48         LASSERT (ev->unlinked);
49
50         DEBUG_REQ((ev->status == PTL_OK) ? D_NET : D_ERROR, req,
51                   "type %d, status %d", ev->type, ev->status);
52
53         if (ev->type == PTL_EVENT_UNLINK ||
54             ev->status != PTL_OK) {
55
56                 /* Failed send: make it seem like the reply timed out, just
57                  * like failing sends in client.c does currently...  */
58
59                 spin_lock_irqsave(&req->rq_lock, flags);
60                 req->rq_timeout = 0;
61                 spin_unlock_irqrestore(&req->rq_lock, flags);
62                 
63                 ptlrpc_wake_client_req(req);
64         }
65
66         /* this balances the atomic_inc in ptl_send_rpc() */
67         ptlrpc_req_finished(req);
68         EXIT;
69 }
70
71 /*
72  * Client's incoming reply callback
73  */
74 void reply_in_callback(ptl_event_t *ev)
75 {
76         struct ptlrpc_cb_id   *cbid = ev->mem_desc.user_ptr;
77         struct ptlrpc_request *req = cbid->cbid_arg;
78         unsigned long flags;
79         ENTRY;
80
81         LASSERT (ev->type == PTL_EVENT_PUT ||
82                  ev->type == PTL_EVENT_UNLINK);
83         LASSERT (ev->unlinked);
84         LASSERT (ev->mem_desc.start == req->rq_repmsg);
85         LASSERT (ev->offset == 0);
86         LASSERT (ev->mlength <= req->rq_replen);
87         
88         DEBUG_REQ((ev->status == PTL_OK) ? D_NET : D_ERROR, req,
89                   "type %d, status %d", ev->type, ev->status);
90
91         spin_lock_irqsave (&req->rq_lock, flags);
92
93         LASSERT (req->rq_receiving_reply);
94         req->rq_receiving_reply = 0;
95
96         if (ev->type == PTL_EVENT_PUT &&
97             ev->status == PTL_OK) {
98                 req->rq_replied = 1;
99                 req->rq_nob_received = ev->mlength;
100         }
101
102         /* NB don't unlock till after wakeup; req can disappear under us
103          * since we don't have our own ref */
104         ptlrpc_wake_client_req(req);
105
106         spin_unlock_irqrestore (&req->rq_lock, flags);
107         EXIT;
108 }
109
110 /* 
111  * Client's bulk has been written/read
112  */
113 void client_bulk_callback (ptl_event_t *ev)
114 {
115         struct ptlrpc_cb_id     *cbid = ev->mem_desc.user_ptr;
116         struct ptlrpc_bulk_desc *desc = cbid->cbid_arg;
117         unsigned long            flags;
118         ENTRY;
119
120         LASSERT ((desc->bd_type == BULK_PUT_SINK && 
121                   ev->type == PTL_EVENT_PUT) ||
122                  (desc->bd_type == BULK_GET_SOURCE &&
123                   ev->type == PTL_EVENT_GET) ||
124                  ev->type == PTL_EVENT_UNLINK);
125         LASSERT (ev->unlinked);
126
127         CDEBUG((ev->status == PTL_OK) ? D_NET : D_ERROR,
128                "event type %d, status %d, desc %p\n", 
129                ev->type, ev->status, desc);
130
131         spin_lock_irqsave (&desc->bd_lock, flags);
132
133         LASSERT(desc->bd_network_rw);
134         desc->bd_network_rw = 0;
135
136         if (ev->type != PTL_EVENT_UNLINK &&
137             ev->status == PTL_OK) {
138                 desc->bd_success = 1;
139                 desc->bd_nob_transferred = ev->mlength;
140         }
141
142         /* NB don't unlock till after wakeup; desc can disappear under us
143          * otherwise */
144         ptlrpc_wake_client_req(desc->bd_req);
145
146         spin_unlock_irqrestore (&desc->bd_lock, flags);
147         EXIT;
148 }
149
150 /* 
151  * Server's incoming request callback
152  */
153 void request_in_callback(ptl_event_t *ev)
154 {
155         struct ptlrpc_cb_id               *cbid = ev->mem_desc.user_ptr;
156         struct ptlrpc_request_buffer_desc *rqbd = cbid->cbid_arg;
157         struct ptlrpc_srv_ni              *srv_ni = rqbd->rqbd_srv_ni;
158         struct ptlrpc_service             *service = srv_ni->sni_service;
159         struct ptlrpc_request             *req;
160         long                               flags;
161         ENTRY;
162
163         LASSERT (ev->type == PTL_EVENT_PUT ||
164                  ev->type == PTL_EVENT_UNLINK);
165         LASSERT ((char *)ev->mem_desc.start >= rqbd->rqbd_buffer);
166         LASSERT ((char *)ev->mem_desc.start + ev->offset + ev->mlength <=
167                  rqbd->rqbd_buffer + service->srv_buf_size);
168
169         CDEBUG((ev->status == PTL_OK) ? D_NET : D_ERROR,
170                "event type %d, status %d, service %s\n", 
171                ev->type, ev->status, service->srv_name);
172
173         if (ev->unlinked) {
174                 /* If this is the last request message to fit in the
175                  * request buffer we can use the request object embedded in
176                  * rqbd.  Note that if we failed to allocate a request,
177                  * we'd have to re-post the rqbd, which we can't do in this
178                  * context. */
179                 req = &rqbd->rqbd_req;
180                 memset(req, 0, sizeof (*req));
181         } else {
182                 LASSERT (ev->type == PTL_EVENT_PUT);
183                 if (ev->status != PTL_OK) {
184                         /* We moaned above already... */
185                         return;
186                 }
187                 OBD_ALLOC_GFP(req, sizeof(*req), GFP_ATOMIC);
188                 if (req == NULL) {
189                         CERROR("Can't allocate incoming request descriptor: "
190                                "Dropping %s RPC from "LPX64"\n",
191                                service->srv_name, ev->initiator.nid);
192                         return;
193                 }
194         }
195
196         /* NB we ABSOLUTELY RELY on req being zeroed, so pointers are NULL,
197          * flags are reset and scalars are zero.  We only set the message
198          * size to non-zero if this was a successful receive. */
199         req->rq_xid = ev->match_bits;
200         req->rq_reqmsg = ev->mem_desc.start + ev->offset;
201         if (ev->type == PTL_EVENT_PUT &&
202             ev->status == PTL_OK)
203                 req->rq_reqlen = ev->mlength;
204         req->rq_arrival_time = ev->arrival_time;
205         req->rq_peer.peer_nid = ev->initiator.nid;
206         req->rq_peer.peer_ni = rqbd->rqbd_srv_ni->sni_ni;
207         req->rq_rqbd = rqbd;
208
209         spin_lock_irqsave (&service->srv_lock, flags);
210
211         if (ev->unlinked) {
212                 srv_ni->sni_nrqbd_receiving--;
213                 if (ev->type != PTL_EVENT_UNLINK &&
214                     srv_ni->sni_nrqbd_receiving == 0) {
215                         /* This service is off-air on this interface because
216                          * all its request buffers are busy.  Portals will
217                          * start dropping incoming requests until more buffers
218                          * get posted.  NB don't moan if it's because we're
219                          * tearing down the service. */
220                         CWARN("All %s %s request buffers busy\n",
221                               service->srv_name, srv_ni->sni_ni->pni_name);
222                 }
223                 /* req takes over the network's ref on rqbd */
224         } else {
225                 /* req takes a ref on rqbd */
226                 rqbd->rqbd_refcount++;
227         }
228
229         list_add_tail(&req->rq_list, &service->srv_request_queue);
230         service->srv_n_queued_reqs++;
231         rqbd->rqbd_eventcount++;
232
233         /* NB everything can disappear under us once the request
234          * has been queued and we unlock, so do the wake now... */
235         wake_up(&service->srv_waitq);
236
237         spin_unlock_irqrestore(&service->srv_lock, flags);
238         EXIT;
239 }
240
241 /*  
242  *  Server's outgoing reply callback
243  */
244 void reply_out_callback(ptl_event_t *ev)
245 {
246         struct ptlrpc_cb_id       *cbid = ev->mem_desc.user_ptr;
247         struct ptlrpc_reply_state *rs = cbid->cbid_arg;
248         struct ptlrpc_srv_ni      *sni = rs->rs_srv_ni;
249         struct ptlrpc_service     *svc = sni->sni_service;
250         unsigned long              flags;
251         ENTRY;
252
253         LASSERT (ev->type == PTL_EVENT_SENT ||
254                  ev->type == PTL_EVENT_ACK ||
255                  ev->type == PTL_EVENT_UNLINK);
256
257         if (!rs->rs_difficult) {
258                 /* I'm totally responsible for freeing "easy" replies */
259                 LASSERT (ev->unlinked);
260                 lustre_free_reply_state (rs);
261                 atomic_dec (&svc->srv_outstanding_replies);
262                 EXIT;
263                 return;
264         }
265
266         LASSERT (rs->rs_on_net);
267
268         if (ev->unlinked) {
269                 /* Last network callback */
270                 spin_lock_irqsave (&svc->srv_lock, flags);
271                 rs->rs_on_net = 0;
272                 ptlrpc_schedule_difficult_reply (rs);
273                 spin_unlock_irqrestore (&svc->srv_lock, flags);
274         }
275
276         EXIT;
277 }
278
279 /*
280  * Server's bulk completion callback
281  */
282 void server_bulk_callback (ptl_event_t *ev)
283 {
284         struct ptlrpc_cb_id     *cbid = ev->mem_desc.user_ptr;
285         struct ptlrpc_bulk_desc *desc = cbid->cbid_arg;
286         unsigned long            flags;
287         ENTRY;
288
289         LASSERT (ev->type == PTL_EVENT_SENT ||
290                  ev->type == PTL_EVENT_UNLINK ||
291                  (desc->bd_type == BULK_PUT_SOURCE &&
292                   ev->type == PTL_EVENT_ACK) ||
293                  (desc->bd_type == BULK_GET_SINK &&
294                   ev->type == PTL_EVENT_REPLY));
295
296         CDEBUG((ev->status == PTL_OK) ? D_NET : D_ERROR,
297                "event type %d, status %d, desc %p\n", 
298                ev->type, ev->status, desc);
299
300         spin_lock_irqsave (&desc->bd_lock, flags);
301         
302         if ((ev->type == PTL_EVENT_ACK ||
303              ev->type == PTL_EVENT_REPLY) &&
304             ev->status == PTL_OK) {
305                 /* We heard back from the peer, so even if we get this
306                  * before the SENT event (oh yes we can), we know we
307                  * read/wrote the peer buffer and how much... */
308                 desc->bd_success = 1;
309                 desc->bd_nob_transferred = ev->mlength;
310         }
311
312         if (ev->unlinked) {
313                 /* This is the last callback no matter what... */
314                 desc->bd_network_rw = 0;
315                 wake_up(&desc->bd_waitq);
316         }
317
318         spin_unlock_irqrestore (&desc->bd_lock, flags);
319         EXIT;
320 }
321
322 static int ptlrpc_master_callback(ptl_event_t *ev)
323 {
324         struct ptlrpc_cb_id *cbid = ev->mem_desc.user_ptr;
325         void (*callback)(ptl_event_t *ev) = cbid->cbid_fn;
326
327         /* Honestly, it's best to find out early. */
328         LASSERT (cbid->cbid_arg != (void *)0x5a5a5a5a5a5a5a5a);
329         LASSERT (callback == request_out_callback ||
330                  callback == reply_in_callback ||
331                  callback == client_bulk_callback ||
332                  callback == request_in_callback ||
333                  callback == reply_out_callback ||
334                  callback == server_bulk_callback);
335         
336         callback (ev);
337         return (0);
338 }
339
340 int ptlrpc_uuid_to_peer (struct obd_uuid *uuid, struct ptlrpc_peer *peer)
341 {
342         struct ptlrpc_ni   *pni;
343         struct lustre_peer  lpeer;
344         int                 i;
345         int                 rc = lustre_uuid_to_peer (uuid->uuid, &lpeer);
346
347         if (rc != 0)
348                 RETURN (rc);
349
350         for (i = 0; i < ptlrpc_ninterfaces; i++) {
351                 pni = &ptlrpc_interfaces[i];
352
353                 if (!memcmp(&lpeer.peer_ni, &pni->pni_ni_h,
354                             sizeof (lpeer.peer_ni))) {
355                         peer->peer_nid = lpeer.peer_nid;
356                         peer->peer_ni = pni;
357                         return (0);
358                 }
359         }
360
361         CERROR("Can't find ptlrpc interface for "LPX64" ni handle %08lx."LPX64"\n",
362                lpeer.peer_nid, lpeer.peer_ni.nal_idx, lpeer.peer_ni.cookie);
363         return (-ENOENT);
364 }
365
366 void ptlrpc_ni_fini(struct ptlrpc_ni *pni)
367 {
368         PtlEQFree(pni->pni_eq_h);
369         kportal_put_ni (pni->pni_number);
370 }
371
372 int ptlrpc_ni_init(int number, char *name, struct ptlrpc_ni *pni)
373 {
374         int              rc;
375         ptl_handle_ni_t *nip = kportal_get_ni (number);
376
377         if (nip == NULL) {
378                 CDEBUG (D_NET, "Network interface %s not loaded\n", name);
379                 return (-ENOENT);
380         }
381
382         CDEBUG (D_NET, "init %d %s: nal_idx %ld\n", number, name, nip->nal_idx);
383
384         pni->pni_name = name;
385         pni->pni_number = number;
386         pni->pni_ni_h = *nip;
387
388         pni->pni_eq_h = PTL_HANDLE_NONE;
389
390 #ifdef __KERNEL__
391         /* kernel: portals calls the callback when the event is added to the
392          * queue, so we don't care if we lose events */
393         rc = PtlEQAlloc(pni->pni_ni_h, 1024, ptlrpc_master_callback,
394                         &pni->pni_eq_h);
395 #else
396         /* liblustre: no asynchronous callback and allocate a nice big event
397          * queue so we don't drop any events... */
398         rc = PtlEQAlloc(pni->pni_ni_h, 10240, NULL, &pni->pni_eq_h);
399 #endif
400         if (rc != PTL_OK)
401                 GOTO (fail, rc = -ENOMEM);
402
403         return (0);
404  fail:
405         CERROR ("Failed to initialise network interface %s: %d\n",
406                 name, rc);
407
408         /* OK to do complete teardown since we invalidated the handles above */
409         ptlrpc_ni_fini (pni);
410         return (rc);
411 }
412
413 #ifndef __KERNEL__
414 LIST_HEAD(liblustre_wait_callbacks);
415 void *liblustre_services_callback;
416
417 void *
418 liblustre_register_wait_callback (int (*fn)(void *arg), void *arg)
419 {
420         struct liblustre_wait_callback *llwc;
421         
422         OBD_ALLOC(llwc, sizeof(*llwc));
423         LASSERT (llwc != NULL);
424         
425         llwc->llwc_fn = fn;
426         llwc->llwc_arg = arg;
427         list_add_tail(&llwc->llwc_list, &liblustre_wait_callbacks);
428         
429         return (llwc);
430 }
431
432 void
433 liblustre_deregister_wait_callback (void *opaque)
434 {
435         struct liblustre_wait_callback *llwc = opaque;
436         
437         list_del(&llwc->llwc_list);
438         OBD_FREE(llwc, sizeof(*llwc));
439 }
440
441 int
442 liblustre_check_events (int timeout)
443 {
444         ptl_event_t ev;
445         int         rc;
446         ENTRY;
447
448         if (timeout) {
449                 rc = PtlEQWait_timeout(ptlrpc_interfaces[0].pni_eq_h, &ev, timeout);
450         } else {
451                 rc = PtlEQGet (ptlrpc_interfaces[0].pni_eq_h, &ev);
452         }
453         if (rc == PTL_EQ_EMPTY)
454                 RETURN(0);
455         
456         LASSERT (rc == PTL_EQ_DROPPED || rc == PTL_OK);
457         
458 #ifndef __KERNEL__
459         /* liblustre: no asynch callback so we can't affort to miss any
460          * events... */
461         if (rc == PTL_EQ_DROPPED) {
462                 CERROR ("Dropped an event!!!\n");
463                 abort();
464         }
465         
466         ptlrpc_master_callback (&ev);
467 #endif
468         RETURN(1);
469 }
470
471 int
472 liblustre_wait_event (int timeout)
473 {
474         struct list_head               *tmp;
475         struct liblustre_wait_callback *llwc;
476         int                             found_something = 0;
477
478         /* First check for any new events */
479         if (liblustre_check_events(0))
480                 found_something = 1;
481
482         /* Now give all registered callbacks a bite at the cherry */
483         list_for_each(tmp, &liblustre_wait_callbacks) {
484                 llwc = list_entry(tmp, struct liblustre_wait_callback, 
485                                   llwc_list);
486                 
487                 if (llwc->llwc_fn(llwc->llwc_arg))
488                         found_something = 1;
489         }
490
491         /* return to caller if something happened */
492         if (found_something)
493                 return 1;
494         
495         /* block for an event, returning immediately on timeout */
496         if (!liblustre_check_events(timeout))
497                 return 0;
498
499         /* an event occurred; let all registered callbacks progress... */
500         list_for_each(tmp, &liblustre_wait_callbacks) {
501                 llwc = list_entry(tmp, struct liblustre_wait_callback, 
502                                   llwc_list);
503                 
504                 if (llwc->llwc_fn(llwc->llwc_arg))
505                         found_something = 1;
506         }
507
508         /* ...and tell caller something happened */
509         return 1;
510 }
511 #endif
512
513 int ptlrpc_init_portals(void)
514 {
515         /* Add new portals network interfaces here.
516          * Order is irrelevent! */
517         static struct {
518                 int   number;
519                 char *name;
520         } ptl_nis[] = {
521                 {QSWNAL,  "qswnal"},
522                 {SOCKNAL, "socknal"},
523                 {GMNAL,   "gmnal"},
524                 {IBNAL,   "ibnal"},
525                 {TCPNAL,  "tcpnal"},
526                 {SCIMACNAL, "scimacnal"}};
527         int   rc;
528         int   i;
529
530         LASSERT(ptlrpc_ninterfaces == 0);
531
532         for (i = 0; i < sizeof (ptl_nis) / sizeof (ptl_nis[0]); i++) {
533                 LASSERT(ptlrpc_ninterfaces < (sizeof(ptlrpc_interfaces) /
534                                               sizeof(ptlrpc_interfaces[0])));
535
536                 rc = ptlrpc_ni_init(ptl_nis[i].number, ptl_nis[i].name,
537                                     &ptlrpc_interfaces[ptlrpc_ninterfaces]);
538                 if (rc == 0)
539                         ptlrpc_ninterfaces++;
540         }
541
542         if (ptlrpc_ninterfaces == 0) {
543                 CERROR("network initialisation failed: is a NAL module "
544                        "loaded?\n");
545                 return -EIO;
546         }
547 #ifndef __KERNEL__
548         liblustre_services_callback = 
549                 liblustre_register_wait_callback(&liblustre_check_services, NULL);
550 #endif
551         return 0;
552 }
553
554 void ptlrpc_exit_portals(void)
555 {
556 #ifndef __KERNEL__
557         liblustre_deregister_wait_callback(liblustre_services_callback);
558 #endif
559         while (ptlrpc_ninterfaces > 0)
560                 ptlrpc_ni_fini (&ptlrpc_interfaces[--ptlrpc_ninterfaces]);
561 }