Whamcloud - gitweb
- b_size_on_mds landed on HEAD:
[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 #ifndef __KERNEL__
25 #include <liblustre.h>
26 #include <libcfs/kp30.h>
27 #endif
28 #include <linux/obd_support.h>
29 #include <linux/obd_class.h>
30 #include <linux/lustre_net.h>
31 #include <linux/lustre_sec.h>
32 #include <linux/lustre_log.h>
33 #include <portals/types.h>
34 #include "ptlrpc_internal.h"
35
36 /* forward ref */
37 static int ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc);
38
39
40 static LIST_HEAD (ptlrpc_all_services);
41 static spinlock_t ptlrpc_all_services_lock = SPIN_LOCK_UNLOCKED;
42
43 static void
44 ptlrpc_free_server_req (struct ptlrpc_request *req)
45 {
46         if (req->rq_svcsec) {
47                 svcsec_cleanup_req(req);
48                 svcsec_put(req->rq_svcsec);
49                 req->rq_svcsec = NULL;
50         }
51
52         /* The last request to be received into a request buffer uses space
53          * in the request buffer descriptor, otherwise requests are
54          * allocated dynamically in the incoming reply event handler */
55         if (req == &req->rq_rqbd->rqbd_req)
56                 return;
57
58         OBD_FREE(req, sizeof(*req));
59 }
60
61 static char *
62 ptlrpc_alloc_request_buffer (int size)
63 {
64         char *ptr;
65
66         if (size > SVC_BUF_VMALLOC_THRESHOLD)
67                 OBD_VMALLOC(ptr, size);
68         else
69                 OBD_ALLOC(ptr, size);
70
71         return (ptr);
72 }
73
74 static void
75 ptlrpc_free_request_buffer (char *ptr, int size)
76 {
77         if (size > SVC_BUF_VMALLOC_THRESHOLD)
78                 OBD_VFREE(ptr, size);
79         else
80                 OBD_FREE(ptr, size);
81 }
82
83 struct ptlrpc_request_buffer_desc *
84 ptlrpc_alloc_rqbd (struct ptlrpc_srv_ni *srv_ni)
85 {
86         struct ptlrpc_service             *svc = srv_ni->sni_service;
87         unsigned long                      flags;
88         struct ptlrpc_request_buffer_desc *rqbd;
89
90         OBD_ALLOC(rqbd, sizeof (*rqbd));
91         if (rqbd == NULL)
92                 return (NULL);
93
94         rqbd->rqbd_srv_ni = srv_ni;
95         rqbd->rqbd_refcount = 0;
96         rqbd->rqbd_cbid.cbid_fn = request_in_callback;
97         rqbd->rqbd_cbid.cbid_arg = rqbd;
98         rqbd->rqbd_buffer = ptlrpc_alloc_request_buffer(svc->srv_buf_size);
99
100         if (rqbd->rqbd_buffer == NULL) {
101                 OBD_FREE(rqbd, sizeof (*rqbd));
102                 return (NULL);
103         }
104
105         spin_lock_irqsave (&svc->srv_lock, flags);
106         list_add(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
107         svc->srv_nbufs++;
108         spin_unlock_irqrestore (&svc->srv_lock, flags);
109
110         return (rqbd);
111 }
112
113 void
114 ptlrpc_free_rqbd(struct ptlrpc_request_buffer_desc *rqbd) 
115 {
116         struct ptlrpc_srv_ni  *sni = rqbd->rqbd_srv_ni;
117         struct ptlrpc_service *svc = sni->sni_service;
118         unsigned long          flags;
119         
120         LASSERT (rqbd->rqbd_refcount == 0);
121
122         spin_lock_irqsave(&svc->srv_lock, flags);
123         list_del(&rqbd->rqbd_list);
124         svc->srv_nbufs--;
125         spin_unlock_irqrestore(&svc->srv_lock, flags);
126
127         ptlrpc_free_request_buffer (rqbd->rqbd_buffer, svc->srv_buf_size);
128         OBD_FREE (rqbd, sizeof (*rqbd));
129 }
130
131 int
132 ptlrpc_grow_req_bufs(struct ptlrpc_srv_ni *srv_ni)
133 {
134         struct ptlrpc_service             *svc = srv_ni->sni_service;
135         struct ptlrpc_request_buffer_desc *rqbd;
136         int                                i;
137
138         CDEBUG(D_RPCTRACE, "%s: allocate %d new %d-byte reqbufs (%d/%d left)\n",
139                svc->srv_name, svc->srv_nbuf_per_group, svc->srv_buf_size,
140                srv_ni->sni_nrqbd_receiving, svc->srv_nbufs);
141         for (i = 0; i < svc->srv_nbuf_per_group; i++) {
142                 rqbd = ptlrpc_alloc_rqbd(srv_ni);
143
144                 if (rqbd == NULL) {
145                         CERROR ("%s/%s: Can't allocate request buffer\n",
146                                 svc->srv_name, srv_ni->sni_ni->pni_name);
147                         return (-ENOMEM);
148                 }
149
150                 if (ptlrpc_server_post_idle_rqbds(svc) < 0)
151                         return (-EAGAIN);
152         }
153
154         return (0);
155 }
156
157 void
158 ptlrpc_save_llog_lock(struct ptlrpc_request *req, struct llog_create_locks *lcl)
159 {
160         struct ptlrpc_reply_state *rs = req->rq_reply_state;
161         LASSERT (rs != NULL);
162         LASSERT (rs->rs_llog_locks == NULL);
163
164         rs->rs_llog_locks = lcl;
165 }
166
167 void
168 ptlrpc_require_repack(struct ptlrpc_request *req)
169 {
170         struct ptlrpc_reply_state *rs = req->rq_reply_state;
171         LASSERT (rs != NULL);
172         rs->rs_difficult = 1;
173 }
174
175 void
176 ptlrpc_save_lock (struct ptlrpc_request *req, 
177                   struct lustre_handle *lock, int mode)
178 {
179         struct ptlrpc_reply_state *rs = req->rq_reply_state;
180         int                        idx;
181
182         if (!lock->cookie)
183                 return;
184
185         LASSERT (rs != NULL);
186         LASSERT (rs->rs_nlocks < RS_MAX_LOCKS);
187
188         idx = rs->rs_nlocks++;
189         rs->rs_locks[idx] = *lock;
190         rs->rs_modes[idx] = mode;
191         rs->rs_difficult = 1;
192 }
193
194 void
195 ptlrpc_schedule_difficult_reply (struct ptlrpc_reply_state *rs)
196 {
197         struct ptlrpc_service *svc = rs->rs_srv_ni->sni_service;
198
199 #ifdef CONFIG_SMP
200         LASSERT (spin_is_locked (&svc->srv_lock));
201 #endif
202         LASSERT (rs->rs_difficult);
203         rs->rs_scheduled_ever = 1;              /* flag any notification attempt */
204
205         if (rs->rs_scheduled)                   /* being set up or already notified */
206                 return;
207
208         rs->rs_scheduled = 1;
209         list_del (&rs->rs_list);
210         list_add (&rs->rs_list, &svc->srv_reply_queue);
211         wake_up (&svc->srv_waitq);
212 }
213
214 void 
215 ptlrpc_commit_replies (struct obd_device *obd)
216 {
217         struct list_head   *tmp;
218         struct list_head   *nxt;
219         unsigned long       flags;
220         
221         /* Find any replies that have been committed and get their service
222          * to attend to complete them. */
223
224         /* CAVEAT EMPTOR: spinlock ordering!!! */
225         spin_lock_irqsave (&obd->obd_uncommitted_replies_lock, flags);
226
227         list_for_each_safe (tmp, nxt, &obd->obd_uncommitted_replies) {
228                 struct ptlrpc_reply_state *rs =
229                         list_entry (tmp, struct ptlrpc_reply_state, rs_obd_list);
230                 struct llog_create_locks *lcl = rs->rs_llog_locks;
231
232                 rs->rs_llog_locks = NULL; 
233                 LASSERT (rs->rs_difficult);
234
235                 if (rs->rs_transno <= obd->obd_last_committed) {
236                         struct ptlrpc_service *svc = rs->rs_srv_ni->sni_service;
237
238                         spin_lock (&svc->srv_lock);
239                         list_del_init (&rs->rs_obd_list);
240                         ptlrpc_schedule_difficult_reply (rs);
241                         spin_unlock (&svc->srv_lock);
242
243                         if (lcl != NULL)
244                                 llog_create_lock_free(lcl);
245                 }
246         }
247         
248         spin_unlock_irqrestore (&obd->obd_uncommitted_replies_lock, flags);
249 }
250
251 static long
252 timeval_sub(struct timeval *large, struct timeval *small)
253 {
254         return (large->tv_sec - small->tv_sec) * 1000000 +
255                 (large->tv_usec - small->tv_usec);
256 }
257
258 static int
259 ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc)
260 {
261         struct ptlrpc_srv_ni              *srv_ni;
262         struct ptlrpc_request_buffer_desc *rqbd;
263         unsigned long                      flags;
264         int                                rc;
265         int                                posted = 0;
266
267         for (;;) {
268                 spin_lock_irqsave(&svc->srv_lock, flags);
269                 if (list_empty (&svc->srv_idle_rqbds)) {
270                         spin_unlock_irqrestore(&svc->srv_lock, flags);
271                         return (posted);
272                 }
273                 rqbd = list_entry(svc->srv_idle_rqbds.next,
274                                   struct ptlrpc_request_buffer_desc,
275                                   rqbd_list);
276                 list_del (&rqbd->rqbd_list);
277
278                 /* assume we will post successfully */
279                 srv_ni = rqbd->rqbd_srv_ni;
280                 srv_ni->sni_nrqbd_receiving++;
281                 list_add (&rqbd->rqbd_list, &srv_ni->sni_active_rqbds);
282                 spin_unlock_irqrestore(&svc->srv_lock, flags);
283
284                 rc = ptlrpc_register_rqbd(rqbd);
285                 if (rc != 0)
286                         break;
287
288                 posted = 1;
289         }
290
291
292         spin_lock_irqsave(&svc->srv_lock, flags);
293
294         srv_ni->sni_nrqbd_receiving--;
295         list_del(&rqbd->rqbd_list);
296         list_add_tail(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
297
298         if (srv_ni->sni_nrqbd_receiving == 0) {
299                 /* This service is off-air on this interface because all
300                  * its request buffers are busy.  Portals will have started
301                  * dropping incoming requests until more buffers get
302                  * posted */
303                 CERROR("All %s %s request buffers busy\n",
304                        svc->srv_name, srv_ni->sni_ni->pni_name);
305         }
306
307         spin_unlock_irqrestore (&svc->srv_lock, flags);
308
309         return (-1);
310 }
311
312 struct ptlrpc_service *
313 ptlrpc_init_svc(int nbufs, int bufsize, int max_req_size,
314                 int req_portal, int rep_portal, int watchdog_timeout,
315                 svc_handler_t handler, char *name,
316                 struct proc_dir_entry *proc_entry)
317 {
318         int                                i;
319         int                                rc;
320         int                                ssize;
321         struct ptlrpc_service             *service;
322         struct ptlrpc_srv_ni              *srv_ni;
323         ENTRY;
324
325         LASSERT (ptlrpc_ninterfaces > 0);
326         LASSERT (nbufs > 0);
327         LASSERT (bufsize >= max_req_size);
328         
329         ssize = offsetof (struct ptlrpc_service,
330                           srv_interfaces[ptlrpc_ninterfaces]);
331         OBD_ALLOC(service, ssize);
332         if (service == NULL)
333                 RETURN(NULL);
334
335         service->srv_name = name;
336         spin_lock_init(&service->srv_lock);
337         INIT_LIST_HEAD(&service->srv_threads);
338         init_waitqueue_head(&service->srv_waitq);
339
340         service->srv_nbuf_per_group = nbufs;
341         service->srv_max_req_size = max_req_size;
342         service->srv_buf_size = bufsize;
343         service->srv_rep_portal = rep_portal;
344         service->srv_req_portal = req_portal;
345         service->srv_watchdog_timeout = watchdog_timeout;
346         service->srv_handler = handler;
347
348         INIT_LIST_HEAD(&service->srv_request_queue);
349         INIT_LIST_HEAD(&service->srv_idle_rqbds);
350         INIT_LIST_HEAD(&service->srv_reply_queue);
351
352         /* First initialise enough for early teardown */
353         for (i = 0; i < ptlrpc_ninterfaces; i++) {
354                 srv_ni = &service->srv_interfaces[i];
355
356                 srv_ni->sni_service = service;
357                 srv_ni->sni_ni = &ptlrpc_interfaces[i];
358                 INIT_LIST_HEAD(&srv_ni->sni_active_rqbds);
359                 INIT_LIST_HEAD(&srv_ni->sni_active_replies);
360         }
361
362         spin_lock (&ptlrpc_all_services_lock);
363         list_add (&service->srv_list, &ptlrpc_all_services);
364         spin_unlock (&ptlrpc_all_services_lock);
365         
366         /* Now allocate the request buffers, assuming all interfaces require
367          * the same number. */
368         for (i = 0; i < ptlrpc_ninterfaces; i++) {
369                 srv_ni = &service->srv_interfaces[i];
370                 CDEBUG (D_NET, "%s: initialising interface %s\n", name,
371                         srv_ni->sni_ni->pni_name);
372
373                 rc = ptlrpc_grow_req_bufs(srv_ni);
374                 /* We shouldn't be under memory pressure at startup, so
375                  * fail if we can't post all our buffers at this time. */
376                 if (rc != 0)
377                         GOTO(failed, NULL);
378         }
379
380         if (proc_entry != NULL)
381                 ptlrpc_lprocfs_register_service(proc_entry, service);
382
383         CDEBUG(D_NET, "%s: Started on %d interfaces, listening on portal %d\n",
384                service->srv_name, ptlrpc_ninterfaces, service->srv_req_portal);
385
386         RETURN(service);
387 failed:
388         ptlrpc_unregister_service(service);
389         return NULL;
390 }
391
392 static void
393 ptlrpc_server_free_request(struct ptlrpc_service *svc, struct ptlrpc_request *req)
394 {
395         unsigned long  flags;
396         int            refcount;
397         
398         spin_lock_irqsave(&svc->srv_lock, flags);
399         svc->srv_n_active_reqs--;
400         refcount = --(req->rq_rqbd->rqbd_refcount);
401         if (refcount == 0) {
402                 /* request buffer is now idle */
403                 list_del(&req->rq_rqbd->rqbd_list);
404                 list_add_tail(&req->rq_rqbd->rqbd_list,
405                               &svc->srv_idle_rqbds);
406         }
407         spin_unlock_irqrestore(&svc->srv_lock, flags);
408
409         ptlrpc_free_server_req(req);
410 }
411
412 static int 
413 ptlrpc_server_handle_request (struct ptlrpc_service *svc)
414 {
415         struct obd_export     *export = NULL;
416         struct ptlrpc_request *request;
417         unsigned long          flags;
418         struct timeval         work_start;
419         struct timeval         work_end;
420         long                   timediff;
421         enum ptlrpcs_error     sec_err;
422         int                    secrc, rc;
423         ENTRY;
424
425         spin_lock_irqsave (&svc->srv_lock, flags);
426         if (list_empty (&svc->srv_request_queue) ||
427             (svc->srv_n_difficult_replies != 0 &&
428              svc->srv_n_active_reqs >= (svc->srv_nthreads - 1))) {
429                 /* If all the other threads are handling requests, I must
430                  * remain free to handle any 'difficult' reply that might
431                  * block them */
432                 spin_unlock_irqrestore (&svc->srv_lock, flags);
433                 RETURN(0);
434         }
435
436         request = list_entry (svc->srv_request_queue.next,
437                               struct ptlrpc_request, rq_list);
438         list_del_init (&request->rq_list);
439         svc->srv_n_queued_reqs--;
440         svc->srv_n_active_reqs++;
441
442         spin_unlock_irqrestore (&svc->srv_lock, flags);
443
444         do_gettimeofday(&work_start);
445         timediff = timeval_sub(&work_start, &request->rq_arrival_time);
446         if (svc->srv_stats != NULL) {
447                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQWAIT_CNTR,
448                                     timediff);
449                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQQDEPTH_CNTR,
450                                     svc->srv_n_queued_reqs);
451                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQACTIVE_CNTR,
452                                     svc->srv_n_active_reqs);
453         }
454
455 #if SWAB_PARANOIA
456         /* Clear request swab mask; this is a new request */
457         request->rq_req_swab_mask = 0;
458 #endif
459
460         /* go through security check/transform */
461         request->rq_auth_uid = -1;
462         request->rq_mapped_uid = -1;
463         request->rq_remote_realm = 0;
464         request->rq_auth_usr_mds = 0;
465         request->rq_auth_usr_oss = 0;
466
467         secrc = svcsec_accept(request, &sec_err);
468         switch(secrc) {
469         case SVC_OK:
470                 CDEBUG(D_SEC, "request accepted ok\n");
471                 break;
472         case SVC_COMPLETE:
473                 target_send_reply(request, 0, OBD_FAIL_MDS_ALL_REPLY_NET);
474                 goto put_conn;
475         case SVC_LOGIN:
476         case SVC_LOGOUT:
477                 break;
478         case SVC_DROP:
479                 goto out;
480         default:
481                 LBUG();
482         }
483
484         rc = lustre_unpack_msg(request->rq_reqmsg, request->rq_reqlen);
485         if (rc != 0) {
486                 CERROR ("error unpacking request: ptl %d from %s"
487                         " xid "LPU64"\n", svc->srv_req_portal,
488                         request->rq_peerstr, request->rq_xid);
489                 goto out;
490         }
491
492         rc = -EINVAL;
493         if (request->rq_reqmsg->type != PTL_RPC_MSG_REQUEST) {
494                 CERROR("wrong packet type received (type=%u) from %s\n",
495                        request->rq_reqmsg->type, request->rq_peerstr);
496                 goto out;
497         }
498
499         CDEBUG(D_NET, "got req "LPD64"\n", request->rq_xid);
500
501         /* Discard requests queued for longer than my timeout.  If the
502          * client's timeout is similar to mine, she'll be timing out this
503          * REQ anyway (bug 1502) */
504         if (timediff / 1000000 > (long)obd_timeout) {
505                 CERROR("Dropping timed-out opc %d request from %s"
506                        ": %ld seconds old\n", request->rq_reqmsg->opc,
507                        request->rq_peerstr,
508                        timediff / 1000000);
509                 goto out;
510         }
511
512         request->rq_export = class_conn2export(&request->rq_reqmsg->handle);
513
514         if (request->rq_export) {
515                 if (request->rq_reqmsg->conn_cnt <
516                     request->rq_export->exp_conn_cnt) {
517                         DEBUG_REQ(D_ERROR, request,
518                                   "DROPPING req from old connection %d < %d",
519                                   request->rq_reqmsg->conn_cnt,
520                                   request->rq_export->exp_conn_cnt);
521                         goto put_conn;
522                 }
523                 
524                 export = class_export_rpc_get(request->rq_export);
525                 request->rq_export->exp_last_request_time =
526                         LTIME_S(CURRENT_TIME);
527         }
528
529         CDEBUG(D_RPCTRACE, "Handling RPC pname:cluuid+ref:pid:xid:ni:nid:opc "
530                "%s:%s+%d:%d:"LPU64":%s:%s:%d\n", current->comm,
531                (request->rq_export ?
532                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
533                (request->rq_export ?
534                 atomic_read(&request->rq_export->exp_refcount) : -99),
535                request->rq_reqmsg->status, request->rq_xid,
536                request->rq_peer.peer_ni->pni_name,
537                request->rq_peerstr,
538                request->rq_reqmsg->opc);
539
540         request->rq_svc = svc;
541         rc = svc->srv_handler(request);
542         request->rq_svc = NULL;
543
544         CDEBUG(D_RPCTRACE, "Handled RPC pname:cluuid+ref:pid:xid:ni:nid:opc "
545                "%s:%s+%d:%d:"LPU64":%s:%s:%d\n", current->comm,
546                (request->rq_export ?
547                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
548                (request->rq_export ?
549                 atomic_read(&request->rq_export->exp_refcount) : -99),
550                request->rq_reqmsg->status, request->rq_xid,
551                request->rq_peer.peer_ni->pni_name,
552                request->rq_peerstr,
553                request->rq_reqmsg->opc);
554
555         if (export != NULL)
556                 class_export_rpc_put(export);
557
558 put_conn:
559         if (request->rq_export != NULL)
560                 class_export_put(request->rq_export);
561
562  out:
563         do_gettimeofday(&work_end);
564
565         timediff = timeval_sub(&work_end, &work_start);
566
567         CDEBUG((timediff / 1000000 > (long)obd_timeout) ? D_ERROR : D_HA,
568                "request "LPU64" opc %u from NID %s processed in %ldus "
569                "(%ldus total)\n", request->rq_xid, 
570                request->rq_reqmsg ? request->rq_reqmsg->opc : 0,
571                request->rq_peerstr,
572                timediff, timeval_sub(&work_end, &request->rq_arrival_time));
573
574         if (svc->srv_stats != NULL && request->rq_reqmsg != NULL) {
575                 int opc = opcode_offset(request->rq_reqmsg->opc);
576                 if (opc > 0) {
577                         LASSERT(opc < LUSTRE_MAX_OPCODES);
578                         lprocfs_counter_add(svc->srv_stats,
579                                             opc + PTLRPC_LAST_CNTR,
580                                             timediff);
581                 }
582         }
583
584         ptlrpc_server_free_request(svc, request);
585         
586         RETURN(1);
587 }
588
589 static int
590 ptlrpc_server_handle_reply (struct ptlrpc_service *svc) 
591 {
592         struct ptlrpc_reply_state *rs;
593         unsigned long              flags;
594         struct obd_export         *exp;
595         struct obd_device         *obd;
596         struct llog_create_locks  *lcl;
597         int                        nlocks;
598         int                        been_handled;
599         ENTRY;
600
601         spin_lock_irqsave (&svc->srv_lock, flags);
602         if (list_empty (&svc->srv_reply_queue)) {
603                 spin_unlock_irqrestore (&svc->srv_lock, flags);
604                 RETURN(0);
605         }
606         
607         rs = list_entry (svc->srv_reply_queue.next,
608                          struct ptlrpc_reply_state, rs_list);
609
610         exp = rs->rs_export;
611         obd = exp->exp_obd;
612
613         LASSERT (rs->rs_difficult);
614         LASSERT (rs->rs_scheduled);
615
616         list_del_init (&rs->rs_list);
617
618         /* Disengage from notifiers carefully (lock ordering!) */
619         spin_unlock(&svc->srv_lock);
620
621         spin_lock (&obd->obd_uncommitted_replies_lock);
622         /* Noop if removed already */
623         list_del_init (&rs->rs_obd_list);
624         spin_unlock (&obd->obd_uncommitted_replies_lock);
625
626         spin_lock (&exp->exp_lock);
627         /* Noop if removed already */
628         list_del_init (&rs->rs_exp_list);
629         spin_unlock (&exp->exp_lock);
630
631         spin_lock(&svc->srv_lock);
632
633         been_handled = rs->rs_handled;
634         rs->rs_handled = 1;
635         
636         nlocks = rs->rs_nlocks;                 /* atomic "steal", but */
637         rs->rs_nlocks = 0;                      /* locks still on rs_locks! */
638
639         lcl = rs->rs_llog_locks;
640         rs->rs_llog_locks = NULL;
641
642         if (nlocks == 0 && !been_handled) {
643                 /* If we see this, we should already have seen the warning
644                  * in mds_steal_ack_locks()  */
645 #if 0   
646                 char str[PTL_NALFMT_SIZE];
647                 /* CMD may ask to save request with no DLM locks -bzzz */
648                 CWARN("All locks stolen from rs %p x"LPD64".t"LPD64
649                       " o%d NID %s\n",
650                       rs, 
651                       rs->rs_xid, rs->rs_transno,
652                       rs->rs_msg->opc, 
653                       ptlrpc_peernid2str(&exp->exp_connection->c_peer, str));
654 #endif
655         }
656
657         if ((!been_handled && rs->rs_on_net) || 
658             nlocks > 0 || lcl != NULL) {
659                 spin_unlock_irqrestore(&svc->srv_lock, flags);
660                 
661                 if (!been_handled && rs->rs_on_net) {
662                         PtlMDUnlink(rs->rs_md_h);
663                         /* Ignore return code; we're racing with
664                          * completion... */
665                 }
666
667                 while (nlocks-- > 0)
668                         ldlm_lock_decref(&rs->rs_locks[nlocks], 
669                                          rs->rs_modes[nlocks]);
670
671                 if (lcl != NULL)
672                         llog_create_lock_free(lcl);         
673
674                 spin_lock_irqsave(&svc->srv_lock, flags);
675         }
676
677         rs->rs_scheduled = 0;
678
679         if (!rs->rs_on_net) {
680                 /* Off the net */
681                 svc->srv_n_difficult_replies--;
682                 spin_unlock_irqrestore(&svc->srv_lock, flags);
683                 
684                 class_export_put (exp);
685                 rs->rs_export = NULL;
686                 lustre_free_reply_state (rs);
687                 atomic_dec (&svc->srv_outstanding_replies);
688                 RETURN(1);
689         }
690         
691         /* still on the net; callback will schedule */
692         spin_unlock_irqrestore (&svc->srv_lock, flags);
693         RETURN(1);
694 }
695
696 #ifndef __KERNEL__
697 /* FIXME make use of timeout later */
698 int
699 liblustre_check_services (void *arg) 
700 {
701         int  did_something = 0;
702         int  rc;
703         struct list_head *tmp, *nxt;
704         ENTRY;
705         
706         /* I'm relying on being single threaded, not to have to lock
707          * ptlrpc_all_services etc */
708         list_for_each_safe (tmp, nxt, &ptlrpc_all_services) {
709                 struct ptlrpc_service *svc =
710                         list_entry (tmp, struct ptlrpc_service, srv_list);
711                 
712                 if (svc->srv_nthreads != 0)     /* I've recursed */
713                         continue;
714
715                 /* service threads can block for bulk, so this limits us
716                  * (arbitrarily) to recursing 1 stack frame per service.
717                  * Note that the problem with recursion is that we have to
718                  * unwind completely before our caller can resume. */
719                 
720                 svc->srv_nthreads++;
721                 
722                 do {
723                         rc = ptlrpc_server_handle_reply(svc);
724                         rc |= ptlrpc_server_handle_request(svc);
725                         rc |= (ptlrpc_server_post_idle_rqbds(svc) > 0);
726                         did_something |= rc;
727                 } while (rc);
728                 
729                 svc->srv_nthreads--;
730         }
731
732         RETURN(did_something);
733 }
734
735 #else /* __KERNEL__ */
736
737 /* Don't use daemonize, it removes fs struct from new thread (bug 418) */
738 void ptlrpc_daemonize(void)
739 {
740         exit_mm(current);
741         lustre_daemonize_helper();
742         exit_files(current);
743         reparent_to_init();
744 }
745
746 static void
747 ptlrpc_check_rqbd_pools(struct ptlrpc_service *svc)
748 {
749         struct ptlrpc_srv_ni  *sni;
750         int                    i;
751         int                    avail = 0;
752         int                    low_water = svc->srv_nbuf_per_group/2;
753
754         for (i = 0; i < ptlrpc_ninterfaces; i++) {
755                 sni = &svc->srv_interfaces[i];
756
757                 avail += sni->sni_nrqbd_receiving;
758                 /* NB I'm not locking; just looking. */
759                 if (sni->sni_nrqbd_receiving <= low_water)
760                         ptlrpc_grow_req_bufs(sni);
761         }
762
763         lprocfs_counter_add(svc->srv_stats, PTLRPC_REQBUF_AVAIL_CNTR, avail);
764 }
765
766 static int
767 ptlrpc_retry_rqbds(void *arg)
768 {
769         struct ptlrpc_service *svc = (struct ptlrpc_service *)arg;
770         
771         svc->srv_rqbd_timeout = 0;
772         return (-ETIMEDOUT);
773 }
774
775 static int ptlrpc_main(void *arg)
776 {
777         struct ptlrpc_svc_data *data = (struct ptlrpc_svc_data *)arg;
778         struct ptlrpc_service  *svc = data->svc;
779         struct ptlrpc_thread   *thread = data->thread;
780         struct lc_watchdog     *watchdog;
781         unsigned long           flags;
782 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
783         struct group_info *ginfo = NULL;
784 #endif
785         ENTRY;
786
787         lock_kernel();
788         ptlrpc_daemonize();
789
790         SIGNAL_MASK_LOCK(current, flags);
791         sigfillset(&current->blocked);
792         RECALC_SIGPENDING;
793         SIGNAL_MASK_UNLOCK(current, flags);
794
795         LASSERTF(strlen(data->name) < sizeof(current->comm),
796                  "name %d > len %d\n",
797                  (int)strlen(data->name), (int)sizeof(current->comm));
798         THREAD_NAME(current->comm, sizeof(current->comm) - 1, "%s", data->name);
799         
800         unlock_kernel();
801
802 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
803         ginfo = groups_alloc(0);
804         if (!ginfo) {
805                 thread->t_flags = SVC_RUNNING;
806                 wake_up(&thread->t_ctl_waitq);
807                 return (-ENOMEM);
808         }
809         set_current_groups(ginfo);
810         put_group_info(ginfo);
811 #endif
812
813         /* Record that the thread is running */
814         thread->t_flags = SVC_RUNNING;
815         wake_up(&thread->t_ctl_waitq);
816
817         watchdog = lc_watchdog_add(svc->srv_watchdog_timeout,
818                                    LC_WATCHDOG_DEFAULT_CB, NULL);
819
820         spin_lock_irqsave(&svc->srv_lock, flags);
821         svc->srv_nthreads++;
822         spin_unlock_irqrestore(&svc->srv_lock, flags);
823
824         /* XXX maintain a list of all managed devices: insert here */
825
826         while ((thread->t_flags & SVC_STOPPING) == 0 ||
827                svc->srv_n_difficult_replies != 0) {
828                 /* Don't exit while there are replies to be handled */
829                 struct l_wait_info lwi = LWI_TIMEOUT(svc->srv_rqbd_timeout,
830                                                      ptlrpc_retry_rqbds, svc);
831
832                 lc_watchdog_disable(watchdog);
833
834                 l_wait_event_exclusive (svc->srv_waitq,
835                               ((thread->t_flags & SVC_STOPPING) != 0 &&
836                                svc->srv_n_difficult_replies == 0) ||
837                               (!list_empty(&svc->srv_idle_rqbds) &&
838                                svc->srv_rqbd_timeout == 0) ||
839                               !list_empty (&svc->srv_reply_queue) ||
840                               (!list_empty (&svc->srv_request_queue) &&
841                                (svc->srv_n_difficult_replies == 0 ||
842                                 svc->srv_n_active_reqs <
843                                 (svc->srv_nthreads - 1))),
844                               &lwi);
845
846 #if 0
847                 /* disable watchdog: with CMD server can issue request
848                  * to another server to satisfy the request -bzzz */
849                 lc_watchdog_touch(watchdog);
850 #endif
851                 ptlrpc_check_rqbd_pools(svc);
852                 
853                 if (!list_empty (&svc->srv_reply_queue))
854                         ptlrpc_server_handle_reply (svc);
855
856                 /* only handle requests if there are no difficult replies
857                  * outstanding, or I'm not the last thread handling
858                  * requests */
859                 if (!list_empty (&svc->srv_request_queue) &&
860                     (svc->srv_n_difficult_replies == 0 ||
861                      svc->srv_n_active_reqs < (svc->srv_nthreads - 1)))
862                         ptlrpc_server_handle_request (svc);
863
864                 if (!list_empty(&svc->srv_idle_rqbds) &&
865                     ptlrpc_server_post_idle_rqbds(svc) < 0) {
866                         /* I just failed to repost request buffers.  Wait
867                          * for a timeout (unless something else happens)
868                          * before I try again */
869                         svc->srv_rqbd_timeout = HZ/10;
870                 }
871         }
872
873         spin_lock_irqsave(&svc->srv_lock, flags);
874
875         svc->srv_nthreads--;                    /* must know immediately */
876         thread->t_flags = SVC_STOPPED;
877         wake_up(&thread->t_ctl_waitq);
878
879         spin_unlock_irqrestore(&svc->srv_lock, flags);
880
881         lc_watchdog_delete(watchdog);
882
883         CDEBUG(D_NET, "service thread exiting, process %d\n", current->pid);
884         return 0;
885 }
886
887 static void ptlrpc_stop_thread(struct ptlrpc_service *svc,
888                                struct ptlrpc_thread *thread)
889 {
890         struct l_wait_info lwi = { 0 };
891         unsigned long      flags;
892
893         spin_lock_irqsave(&svc->srv_lock, flags);
894         thread->t_flags = SVC_STOPPING;
895         spin_unlock_irqrestore(&svc->srv_lock, flags);
896
897         wake_up_all(&svc->srv_waitq);
898         l_wait_event(thread->t_ctl_waitq, (thread->t_flags & SVC_STOPPED),
899                      &lwi);
900
901         spin_lock_irqsave(&svc->srv_lock, flags);
902         list_del(&thread->t_link);
903         spin_unlock_irqrestore(&svc->srv_lock, flags);
904
905         OBD_FREE(thread, sizeof(*thread));
906 }
907
908 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
909 {
910         unsigned long flags;
911         struct ptlrpc_thread *thread;
912
913         spin_lock_irqsave(&svc->srv_lock, flags);
914         while (!list_empty(&svc->srv_threads)) {
915                 thread = list_entry(svc->srv_threads.next,
916                                     struct ptlrpc_thread, t_link);
917
918                 spin_unlock_irqrestore(&svc->srv_lock, flags);
919                 ptlrpc_stop_thread(svc, thread);
920                 spin_lock_irqsave(&svc->srv_lock, flags);
921         }
922
923         spin_unlock_irqrestore(&svc->srv_lock, flags);
924 }
925
926 /* @base_name should be 12 characters or less - 3 will be added on */
927 int ptlrpc_start_n_threads(struct obd_device *dev, struct ptlrpc_service *svc,
928                            int num_threads, char *base_name)
929 {
930         int i, rc = 0;
931         ENTRY;
932
933         for (i = 0; i < num_threads; i++) {
934                 char name[32];
935                 sprintf(name, "%s_%02d", base_name, i);
936                 rc = ptlrpc_start_thread(dev, svc, name);
937                 if (rc) {
938                         CERROR("cannot start %s thread #%d: rc %d\n", base_name,
939                                i, rc);
940                         ptlrpc_stop_all_threads(svc);
941                 }
942         }
943         RETURN(rc);
944 }
945
946 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc,
947                         char *name)
948 {
949         struct l_wait_info lwi = { 0 };
950         struct ptlrpc_svc_data d;
951         struct ptlrpc_thread *thread;
952         unsigned long flags;
953         int rc;
954         ENTRY;
955
956         OBD_ALLOC(thread, sizeof(*thread));
957         if (thread == NULL)
958                 RETURN(-ENOMEM);
959         init_waitqueue_head(&thread->t_ctl_waitq);
960         
961         d.dev = dev;
962         d.svc = svc;
963         d.name = name;
964         d.thread = thread;
965
966         spin_lock_irqsave(&svc->srv_lock, flags);
967         list_add(&thread->t_link, &svc->srv_threads);
968         spin_unlock_irqrestore(&svc->srv_lock, flags);
969
970         /* CLONE_VM and CLONE_FILES just avoid a needless copy, because we
971          * just drop the VM and FILES in ptlrpc_daemonize() right away.
972          */
973         rc = kernel_thread(ptlrpc_main, &d, CLONE_VM | CLONE_FILES);
974         if (rc < 0) {
975                 CERROR("cannot start thread: %d\n", rc);
976                 OBD_FREE(thread, sizeof(*thread));
977                 RETURN(rc);
978         }
979         l_wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_RUNNING, &lwi);
980
981         RETURN(0);
982 }
983 #endif
984
985 int ptlrpc_unregister_service(struct ptlrpc_service *service)
986 {
987         int                   i;
988         int                   rc;
989         unsigned long         flags;
990         struct ptlrpc_srv_ni *srv_ni;
991         struct l_wait_info    lwi;
992         struct list_head     *tmp;
993
994         LASSERT(list_empty(&service->srv_threads));
995
996         spin_lock (&ptlrpc_all_services_lock);
997         list_del_init (&service->srv_list);
998         spin_unlock (&ptlrpc_all_services_lock);
999
1000         ptlrpc_lprocfs_unregister_service(service);
1001
1002         for (i = 0; i < ptlrpc_ninterfaces; i++) {
1003                 srv_ni = &service->srv_interfaces[i];
1004                 CDEBUG(D_NET, "%s: tearing down interface %s\n",
1005                        service->srv_name, srv_ni->sni_ni->pni_name);
1006
1007                 /* Unlink all the request buffers.  This forces a 'final'
1008                  * event with its 'unlink' flag set for each posted rqbd */
1009                 list_for_each(tmp, &srv_ni->sni_active_rqbds) {
1010                         struct ptlrpc_request_buffer_desc *rqbd =
1011                                 list_entry(tmp, struct ptlrpc_request_buffer_desc, 
1012                                            rqbd_list);
1013
1014                         rc = PtlMDUnlink(rqbd->rqbd_md_h);
1015                         LASSERT (rc == PTL_OK || rc == PTL_MD_INVALID);
1016                 }
1017
1018                 /* Wait for the network to release any buffers it's
1019                  * currently filling */
1020                 for (;;) {
1021                         spin_lock_irqsave(&service->srv_lock, flags);
1022                         rc = srv_ni->sni_nrqbd_receiving;
1023                         spin_unlock_irqrestore(&service->srv_lock, flags);
1024
1025                         if (rc == 0)
1026                                 break;
1027                         
1028                         /* Network access will complete in finite time but
1029                          * the HUGE timeout lets us CWARN for visibility of
1030                          * sluggish NALs */
1031                         lwi = LWI_TIMEOUT(300 * HZ, NULL, NULL);
1032                         rc = l_wait_event(service->srv_waitq,
1033                                           srv_ni->sni_nrqbd_receiving == 0,
1034                                           &lwi);
1035                         if (rc == -ETIMEDOUT)
1036                                 CWARN("Waiting for request buffers on "
1037                                       "service %s on interface %s ",
1038                                       service->srv_name, srv_ni->sni_ni->pni_name);
1039                 }
1040
1041                 /* schedule all outstanding replies to terminate them */
1042                 spin_lock_irqsave(&service->srv_lock, flags);
1043                 while (!list_empty(&srv_ni->sni_active_replies)) {
1044                         struct ptlrpc_reply_state *rs =
1045                                 list_entry(srv_ni->sni_active_replies.next,
1046                                            struct ptlrpc_reply_state,
1047                                            rs_list);
1048                         ptlrpc_schedule_difficult_reply(rs);
1049                 }
1050                 spin_unlock_irqrestore(&service->srv_lock, flags);
1051         }
1052
1053         /* purge the request queue.  NB No new replies (rqbds all unlinked)
1054          * and no service threads, so I'm the only thread noodling the
1055          * request queue now */
1056         while (!list_empty(&service->srv_request_queue)) {
1057                 struct ptlrpc_request *req =
1058                         list_entry(service->srv_request_queue.next,
1059                                    struct ptlrpc_request,
1060                                    rq_list);
1061                 
1062                 list_del(&req->rq_list);
1063                 service->srv_n_queued_reqs--;
1064                 service->srv_n_active_reqs++;
1065
1066                 ptlrpc_server_free_request(service, req);
1067         }
1068         LASSERT(service->srv_n_queued_reqs == 0);
1069         LASSERT(service->srv_n_active_reqs == 0);
1070
1071         for (i = 0; i < ptlrpc_ninterfaces; i++) {
1072                 srv_ni = &service->srv_interfaces[i];
1073                 LASSERT(list_empty(&srv_ni->sni_active_rqbds));
1074         }
1075
1076         /* Now free all the request buffers since nothing references them
1077          * any more... */
1078         while (!list_empty(&service->srv_idle_rqbds)) {
1079                 struct ptlrpc_request_buffer_desc *rqbd =
1080                         list_entry(service->srv_idle_rqbds.next,
1081                                    struct ptlrpc_request_buffer_desc, 
1082                                    rqbd_list);
1083
1084                 ptlrpc_free_rqbd(rqbd);
1085         }
1086
1087         /* wait for all outstanding replies to complete (they were
1088          * scheduled having been flagged to abort above) */
1089         while (atomic_read(&service->srv_outstanding_replies) != 0) {
1090                 struct l_wait_info lwi = LWI_TIMEOUT(10 * HZ, NULL, NULL);
1091
1092                 rc = l_wait_event(service->srv_waitq,
1093                                   !list_empty(&service->srv_reply_queue), &lwi);
1094                 LASSERT(rc == 0 || rc == -ETIMEDOUT);
1095
1096                 if (rc == 0) {
1097                         ptlrpc_server_handle_reply(service);
1098                         continue;
1099                 }
1100                 CWARN("Unexpectedly long timeout %p\n", service);
1101         }
1102
1103         OBD_FREE(service,
1104                  offsetof(struct ptlrpc_service,
1105                           srv_interfaces[ptlrpc_ninterfaces]));
1106         return 0;
1107 }