Whamcloud - gitweb
5af5c4f8e8aa494b4d6a1bd5e6e7bf5a36b91355
[fs/lustre-release.git] / lustre / ptlrpc / service.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/obd_class.h>
27 #include <linux/lustre_net.h>
28
29 extern int request_in_callback(ptl_event_t *ev);
30
31 static int ptlrpc_check_event(struct ptlrpc_service *svc,
32                               struct ptlrpc_thread *thread, ptl_event_t *event)
33 {
34         int rc;
35         ENTRY;
36
37         spin_lock(&svc->srv_lock);
38
39         if (thread->t_flags & SVC_STOPPING)
40                 GOTO(out, rc = 1);
41
42         LASSERT ((thread->t_flags & SVC_EVENT) == 0);
43         LASSERT (ptl_is_valid_handle (&svc->srv_eq_h));
44
45         rc = PtlEQGet(svc->srv_eq_h, event);
46         switch (rc)
47         {
48         case PTL_OK:
49                 thread->t_flags |= SVC_EVENT;
50                 GOTO(out, rc = 1);
51                 
52         case PTL_EQ_EMPTY:
53                 GOTO(out, rc = 0);
54                 
55         default:
56                 CERROR("BUG: PtlEQGet returned %d\n", rc);
57                 LBUG();
58         }
59  out:
60         spin_unlock(&svc->srv_lock);
61         return rc;
62 }
63
64 struct ptlrpc_service *
65 ptlrpc_init_svc(__u32 nevents, __u32 nbufs,
66                 __u32 bufsize, __u32 max_req_size,
67                 int req_portal, int rep_portal,
68                 obd_uuid_t uuid, svc_handler_t handler, char *name)
69 {
70         int err;
71         int rc, i;
72         struct ptlrpc_service *service;
73         ENTRY;
74
75         OBD_ALLOC(service, sizeof(*service));
76         if (!service)
77                 RETURN(NULL);
78
79         service->srv_name = name;
80         spin_lock_init(&service->srv_lock);
81         INIT_LIST_HEAD(&service->srv_threads);
82         init_waitqueue_head(&service->srv_waitq);
83
84         service->srv_max_req_size = max_req_size;
85         service->srv_buf_size = bufsize;
86         INIT_LIST_HEAD(&service->srv_rqbds);
87         service->srv_nrqbds = 0;
88         atomic_set(&service->srv_nrqbds_receiving, 0);
89
90         service->srv_rep_portal = rep_portal;
91         service->srv_req_portal = req_portal;
92         service->srv_handler = handler;
93
94         err = kportal_uuid_to_peer(uuid, &service->srv_self);
95         if (err) {
96                 CERROR("%s: cannot get peer for uuid '%s'\n", name, uuid);
97                 OBD_FREE(service, sizeof(*service));
98                 RETURN(NULL);
99         }
100
101         rc = PtlEQAlloc(service->srv_self.peer_ni, nevents,
102                         request_in_callback, &(service->srv_eq_h));
103
104         if (rc != PTL_OK) {
105                 CERROR("%s: PtlEQAlloc failed: %d\n", name, rc);
106                 OBD_FREE(service, sizeof(*service));
107                 RETURN(NULL);
108         }
109
110         for (i = 0; i < nbufs; i++) {
111                 struct ptlrpc_request_buffer_desc *rqbd;
112
113                 OBD_ALLOC(rqbd, sizeof(*rqbd));
114                 if (rqbd == NULL)
115                         GOTO(failed, NULL);
116
117                 rqbd->rqbd_service = service;
118                 ptl_set_inv_handle(&rqbd->rqbd_me_h);
119                 atomic_set(&rqbd->rqbd_refcount, 0);
120                 OBD_ALLOC(rqbd->rqbd_buffer, service->srv_buf_size);
121                 if (rqbd->rqbd_buffer == NULL) {
122                         OBD_FREE(rqbd, sizeof(*rqbd));
123                         GOTO(failed, NULL);
124                 }
125                 list_add(&rqbd->rqbd_list, &service->srv_rqbds);
126                 service->srv_nrqbds++;
127
128                 ptlrpc_link_svc_me(rqbd);
129         }
130
131         CDEBUG(D_NET, "Starting service listening on portal %d (eq: %p)\n",
132                service->srv_req_portal, service->srv_eq_h.handle_idx);
133
134         RETURN(service);
135 failed:
136         ptlrpc_unregister_service(service);
137         return NULL;
138 }
139
140 static int handle_incoming_request(struct obd_device *obddev,
141                                    struct ptlrpc_service *svc,
142                                    ptl_event_t *event,
143                                    struct ptlrpc_request *request)
144 {
145         struct ptlrpc_request_buffer_desc *rqbd = event->mem_desc.user_ptr;
146         int rc;
147
148         /* FIXME: If we move to an event-driven model, we should put the request
149          * on the stack of mds_handle instead. */
150
151         LASSERT (atomic_read (&rqbd->rqbd_refcount) > 0);
152         LASSERT ((event->mem_desc.options & PTL_MD_IOV) == 0);
153         LASSERT (rqbd->rqbd_service == svc);
154         LASSERT (rqbd->rqbd_buffer == event->mem_desc.start);
155         LASSERT (event->offset + event->mlength <= svc->srv_buf_size);
156
157         memset(request, 0, sizeof(*request));
158         request->rq_svc = svc;
159         request->rq_obd = obddev;
160         request->rq_xid = event->match_bits;
161         request->rq_reqmsg = event->mem_desc.start + event->offset;
162         request->rq_reqlen = event->mlength;
163
164         rc = -EINVAL;
165
166         if (request->rq_reqlen < sizeof(struct lustre_msg)) {
167                 CERROR("incomplete request (%d): ptl %d from "LPX64" xid "
168                        LPD64"\n",
169                        request->rq_reqlen, svc->srv_req_portal,
170                        event->initiator.nid, request->rq_xid);
171                 goto out;
172         }
173
174         if (NTOH__u32(request->rq_reqmsg->type) != PTL_RPC_MSG_REQUEST) {
175                 CERROR("wrong packet type received (type=%u)\n",
176                        request->rq_reqmsg->type);
177                 goto out;
178         }
179
180         if (request->rq_reqmsg->magic != PTLRPC_MSG_MAGIC) {
181                 CERROR("wrong lustre_msg magic %d: ptl %d from "LPX64" xid "
182                        LPD64"\n",
183                        request->rq_reqmsg->magic, svc->srv_req_portal,
184                        event->initiator.nid, request->rq_xid);
185                 goto out;
186         }
187
188         CDEBUG(D_NET, "got req "LPD64" (md: %p + %d)\n", request->rq_xid,
189                event->mem_desc.start, event->offset);
190
191         request->rq_peer.peer_nid = event->initiator.nid;
192         /* FIXME: this NI should be the incoming NI.
193          * We don't know how to find that from here. */
194         request->rq_peer.peer_ni = svc->srv_self.peer_ni;
195
196         request->rq_export = class_conn2export((struct lustre_handle *)
197                                                request->rq_reqmsg);
198
199         if (request->rq_export) {
200                 request->rq_connection = request->rq_export->exp_connection;
201                 ptlrpc_connection_addref(request->rq_connection);
202         } else {
203                 /* create a (hopefully temporary) connection that will be used
204                  * to send the reply if this call doesn't create an export.
205                  * XXX revisit this when we revamp ptlrpc */
206                 request->rq_connection =
207                         ptlrpc_get_connection(&request->rq_peer, NULL);
208         }
209
210         rc = svc->srv_handler(request);
211         ptlrpc_put_connection(request->rq_connection);
212
213  out:
214         if (atomic_dec_and_test (&rqbd->rqbd_refcount)) /* last reference? */
215                 ptlrpc_link_svc_me (rqbd);
216
217         return rc;
218 }
219
220 static int ptlrpc_main(void *arg)
221 {
222         struct ptlrpc_svc_data *data = (struct ptlrpc_svc_data *)arg;
223         struct obd_device *obddev = data->dev;
224         struct ptlrpc_service *svc = data->svc;
225         struct ptlrpc_thread *thread = data->thread;
226         struct ptlrpc_request *request;
227         ptl_event_t *event;
228         int rc = 0;
229
230         ENTRY;
231
232         lock_kernel();
233         daemonize();
234 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
235         sigfillset(&current->blocked);
236         recalc_sigpending();
237 #else
238         spin_lock_irq(&current->sigmask_lock);
239         sigfillset(&current->blocked);
240         recalc_sigpending(current);
241         spin_unlock_irq(&current->sigmask_lock);
242 #endif
243
244         strcpy(current->comm, data->name);
245         unlock_kernel();
246
247         OBD_ALLOC(event, sizeof(*event));
248         if (!event)
249                 GOTO(out, rc = -ENOMEM);
250         OBD_ALLOC(request, sizeof(*request));
251         if (!request)
252                 GOTO(out_event, rc = -ENOMEM);
253
254         /* Record that the thread is running */
255         thread->t_flags = SVC_RUNNING;
256         wake_up(&thread->t_ctl_waitq);
257
258         /* XXX maintain a list of all managed devices: insert here */
259
260         /* And now, loop forever on requests */
261         while (1) {
262                 wait_event(svc->srv_waitq,
263                            ptlrpc_check_event(svc, thread, event));
264
265                 if (thread->t_flags & SVC_STOPPING) {
266                         spin_lock(&svc->srv_lock);
267                         thread->t_flags &= ~SVC_STOPPING;
268                         spin_unlock(&svc->srv_lock);
269
270                         EXIT;
271                         break;
272                 }
273
274                 if (thread->t_flags & SVC_EVENT) {
275                         spin_lock(&svc->srv_lock);
276                         thread->t_flags &= ~SVC_EVENT;
277                         spin_unlock(&svc->srv_lock);
278
279                         rc = handle_incoming_request(obddev, svc, event,
280                                                      request);
281                         continue;
282                 }
283
284                 CERROR("unknown break in service");
285                 LBUG();
286                 EXIT;
287                 break;
288         }
289
290         OBD_FREE(request, sizeof(*request));
291 out_event:
292         OBD_FREE(event, sizeof(*event));
293 out:
294         thread->t_flags = SVC_STOPPED;
295         wake_up(&thread->t_ctl_waitq);
296
297         CDEBUG(D_NET, "service thread exiting, process %d: rc = %d\n",
298                current->pid, rc);
299         return rc;
300 }
301
302 static void ptlrpc_stop_thread(struct ptlrpc_service *svc,
303                                struct ptlrpc_thread *thread)
304 {
305         spin_lock(&svc->srv_lock);
306         thread->t_flags = SVC_STOPPING;
307         spin_unlock(&svc->srv_lock);
308
309         wake_up(&svc->srv_waitq);
310         wait_event(thread->t_ctl_waitq, (thread->t_flags & SVC_STOPPED));
311 }
312
313 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
314 {
315         spin_lock(&svc->srv_lock);
316         while (!list_empty(&svc->srv_threads)) {
317                 struct ptlrpc_thread *thread;
318                 thread = list_entry(svc->srv_threads.next, struct ptlrpc_thread,
319                                     t_link);
320                 spin_unlock(&svc->srv_lock);
321                 ptlrpc_stop_thread(svc, thread);
322                 spin_lock(&svc->srv_lock);
323                 list_del(&thread->t_link);
324                 OBD_FREE(thread, sizeof(*thread));
325         }
326         spin_unlock(&svc->srv_lock);
327 }
328
329 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
330                         char *name)
331 {
332         struct ptlrpc_svc_data d;
333         struct ptlrpc_thread *thread;
334         int rc;
335         ENTRY;
336
337         OBD_ALLOC(thread, sizeof(*thread));
338         if (thread == NULL) {
339                 LBUG();
340                 RETURN(-ENOMEM);
341         }
342         init_waitqueue_head(&thread->t_ctl_waitq);
343
344         d.dev = dev;
345         d.svc = svc;
346         d.name = name;
347         d.thread = thread;
348
349         spin_lock(&svc->srv_lock);
350         list_add(&thread->t_link, &svc->srv_threads);
351         spin_unlock(&svc->srv_lock);
352
353         /* XXX should we really be cloning open file handles here? */
354         rc = kernel_thread(ptlrpc_main, (void *) &d,
355                            CLONE_VM | CLONE_FS | CLONE_FILES);
356         if (rc < 0) {
357                 CERROR("cannot start thread\n");
358                 OBD_FREE(thread, sizeof(*thread));
359                 RETURN(rc);
360         }
361         wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_RUNNING);
362
363         RETURN(0);
364 }
365
366 int ptlrpc_unregister_service(struct ptlrpc_service *service)
367 {
368         int rc;
369
370         LASSERT (list_empty (&service->srv_threads));
371
372         /* XXX We could reply (with failure) to all buffered requests
373          * _after_ unlinking _all_ the request buffers, but _before_
374          * freeing them.
375          */
376
377         while (!list_empty (&service->srv_rqbds)) {
378                 struct ptlrpc_request_buffer_desc *rqbd =
379                         list_entry (service->srv_rqbds.next,
380                                     struct ptlrpc_request_buffer_desc,
381                                     rqbd_list);
382
383                 list_del (&rqbd->rqbd_list);
384
385                 LASSERT (atomic_read (&rqbd->rqbd_refcount) > 0);
386                 /* refcount could be anything; it's possible for the
387                  * buffers to continued to get filled after all the server
388                  * threads exited.  But we know they _have_ exited.
389                  */
390
391                 (void) PtlMEUnlink(rqbd->rqbd_me_h);
392                 /* The callback handler could have unlinked this ME already
393                  * (we're racing with her) but it's safe to ensure it _has_
394                  * been unlinked.
395                  */
396
397                 OBD_FREE (rqbd->rqbd_buffer, service->srv_buf_size);
398                 OBD_FREE (rqbd, sizeof (*rqbd));
399                 service->srv_nrqbds--;
400         }
401
402         LASSERT (service->srv_nrqbds == 0);
403
404         rc = PtlEQFree(service->srv_eq_h);
405         if (rc)
406                 CERROR("PtlEQFree failed: %d\n", rc);
407
408         OBD_FREE(service, sizeof(*service));
409         if (rc)
410                 LBUG();
411         return rc;
412 }