Whamcloud - gitweb
LU-3751 ost: disable OUT_PORTAL request handler on OST.
[fs/lustre-release.git] / lustre / ost / ost_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ost/ost_handler.c
37  *
38  * Author: Peter J. Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_OST
43
44 #include <linux/module.h>
45 #include <obd_cksum.h>
46 #include <obd_ost.h>
47 #include <lustre_net.h>
48 #include <lustre_dlm.h>
49 #include <lustre_export.h>
50 #include <lustre_debug.h>
51 #include <lustre_fid.h>
52 #include <lustre_fld.h>
53 #include <linux/init.h>
54 #include <lprocfs_status.h>
55 #include <libcfs/list.h>
56 #include <lustre_quota.h>
57 #include <lustre_fid.h>
58 #include "ost_internal.h"
59 #include <lustre_fid.h>
60
61 static int oss_num_threads;
62 CFS_MODULE_PARM(oss_num_threads, "i", int, 0444,
63                 "number of OSS service threads to start");
64
65 static int ost_num_threads;
66 CFS_MODULE_PARM(ost_num_threads, "i", int, 0444,
67                 "number of OST service threads to start (deprecated)");
68
69 static int oss_num_create_threads;
70 CFS_MODULE_PARM(oss_num_create_threads, "i", int, 0444,
71                 "number of OSS create threads to start");
72
73 static char *oss_cpts;
74 CFS_MODULE_PARM(oss_cpts, "s", charp, 0444,
75                 "CPU partitions OSS threads should run on");
76
77 static char *oss_io_cpts;
78 CFS_MODULE_PARM(oss_io_cpts, "s", charp, 0444,
79                 "CPU partitions OSS IO threads should run on");
80
81 /*
82  * this page is allocated statically when module is initializing
83  * it is used to simulate data corruptions, see ost_checksum_bulk()
84  * for details. as the original pages provided by the layers below
85  * can be remain in the internal cache, we do not want to modify
86  * them.
87  */
88 static struct page *ost_page_to_corrupt = NULL;
89
90 /**
91  * Do not return server-side uid/gid to remote client
92  */
93 static void ost_drop_id(struct obd_export *exp, struct obdo *oa)
94 {
95         if (exp_connect_rmtclient(exp)) {
96                 oa->o_uid = -1;
97                 oa->o_gid = -1;
98                 oa->o_valid &= ~(OBD_MD_FLUID | OBD_MD_FLGID);
99         }
100 }
101
102 /**
103  * Validate oa from client.
104  * If the request comes from 2.0 clients, currently only RSVD seq and IDIF
105  * req are valid.
106  *    a. objects in Single MDT FS  seq = FID_SEQ_OST_MDT0, oi_id != 0
107  *    b. Echo objects(seq = 2), old echo client still use oi_id/oi_seq to
108  *       pack ost_id. Because non-zero oi_seq will make it diffcult to tell
109  *       whether this is oi_fid or real ostid. So it will check
110  *       OBD_CONNECT_FID, then convert the ostid to FID for old client.
111  *    c. Old FID-disable osc will send IDIF.
112  *    d. new FID-enable osc/osp will send normal FID.
113  *
114  * And also oi_id/f_oid should always start from 1. oi_id/f_oid = 0 will
115  * be used for LAST_ID file, and only being accessed inside OST now.
116  */
117 static int ost_validate_obdo(struct obd_export *exp, struct obdo *oa,
118                              struct obd_ioobj *ioobj)
119 {
120         int rc = 0;
121
122         if (unlikely(!(exp_connect_flags(exp) & OBD_CONNECT_FID) &&
123                      fid_seq_is_echo(oa->o_oi.oi.oi_seq) && oa != NULL)) {
124                 /* Sigh 2.[123] client still sends echo req with oi_id = 0
125                  * during create, and we will reset this to 1, since this
126                  * oi_id is basically useless in the following create process,
127                  * but oi_id == 0 will make it difficult to tell whether it is
128                  * real FID or ost_id. */
129                 oa->o_oi.oi_fid.f_oid = oa->o_oi.oi.oi_id ?: 1;
130                 oa->o_oi.oi_fid.f_seq = FID_SEQ_ECHO;
131                 oa->o_oi.oi_fid.f_ver = 0;
132         } else {
133                 if (unlikely((oa == NULL) || ostid_id(&oa->o_oi) == 0))
134                         GOTO(out, rc = -EPROTO);
135
136                 /* Note: this check might be forced in 2.5 or 2.6, i.e.
137                  * all of the requests are required to setup FLGROUP */
138                 if (unlikely(!(oa->o_valid & OBD_MD_FLGROUP))) {
139                         ostid_set_seq_mdt0(&oa->o_oi);
140                         if (ioobj)
141                                 ostid_set_seq_mdt0(&ioobj->ioo_oid);
142                         oa->o_valid |= OBD_MD_FLGROUP;
143                 }
144
145                 if (unlikely(!(fid_seq_is_idif(ostid_seq(&oa->o_oi)) ||
146                                fid_seq_is_mdt0(ostid_seq(&oa->o_oi)) ||
147                                fid_seq_is_norm(ostid_seq(&oa->o_oi)) ||
148                                fid_seq_is_echo(ostid_seq(&oa->o_oi)))))
149                         GOTO(out, rc = -EPROTO);
150         }
151
152         if (ioobj != NULL) {
153                 unsigned max_brw = ioobj_max_brw_get(ioobj);
154
155                 if (unlikely((max_brw & (max_brw - 1)) != 0)) {
156                         CERROR("%s: client %s sent bad ioobj max %u for "DOSTID
157                                ": rc = -EPROTO\n", exp->exp_obd->obd_name,
158                                obd_export_nid2str(exp), max_brw,
159                                POSTID(&oa->o_oi));
160                         GOTO(out, rc = -EPROTO);
161                 }
162                 ioobj->ioo_oid = oa->o_oi;
163         }
164
165 out:
166         if (rc != 0)
167                 CERROR("%s: client %s sent bad object "DOSTID": rc = %d\n",
168                        exp->exp_obd->obd_name, obd_export_nid2str(exp),
169                        oa ? ostid_seq(&oa->o_oi) : -1,
170                        oa ? ostid_id(&oa->o_oi) : -1, rc);
171         return rc;
172 }
173
174 void oti_to_request(struct obd_trans_info *oti, struct ptlrpc_request *req)
175 {
176         struct oti_req_ack_lock *ack_lock;
177         int i;
178
179         if (oti == NULL)
180                 return;
181
182         if (req->rq_repmsg) {
183                 __u64 versions[PTLRPC_NUM_VERSIONS] = { 0 };
184                 lustre_msg_set_transno(req->rq_repmsg, oti->oti_transno);
185                 versions[0] = oti->oti_pre_version;
186                 lustre_msg_set_versions(req->rq_repmsg, versions);
187         }
188         req->rq_transno = oti->oti_transno;
189
190         /* XXX 4 == entries in oti_ack_locks??? */
191         for (ack_lock = oti->oti_ack_locks, i = 0; i < 4; i++, ack_lock++) {
192                 if (!ack_lock->mode)
193                         break;
194                 /* XXX not even calling target_send_reply in some cases... */
195                 ptlrpc_save_lock (req, &ack_lock->lock, ack_lock->mode, 0);
196         }
197 }
198
199 static int ost_destroy(struct obd_export *exp, struct ptlrpc_request *req,
200                        struct obd_trans_info *oti)
201 {
202         struct ost_body *body, *repbody;
203         struct lustre_capa *capa = NULL;
204         int rc;
205         ENTRY;
206
207         /* Get the request body */
208         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
209         if (body == NULL)
210                 RETURN(-EFAULT);
211
212         if (ostid_id(&body->oa.o_oi) == 0)
213                 RETURN(-EPROTO);
214
215         rc = ost_validate_obdo(exp, &body->oa, NULL);
216         if (rc)
217                 RETURN(rc);
218
219         /* If there's a DLM request, cancel the locks mentioned in it*/
220         if (req_capsule_field_present(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT)) {
221                 struct ldlm_request *dlm;
222
223                 dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
224                 if (dlm == NULL)
225                         RETURN (-EFAULT);
226                 ldlm_request_cancel(req, dlm, 0);
227         }
228
229         /* If there's a capability, get it */
230         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
231                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
232                 if (capa == NULL) {
233                         CERROR("Missing capability for OST DESTROY");
234                         RETURN (-EFAULT);
235                 }
236         }
237
238         /* Prepare the reply */
239         rc = req_capsule_server_pack(&req->rq_pill);
240         if (rc)
241                 RETURN(rc);
242
243         /* Get the log cancellation cookie */
244         if (body->oa.o_valid & OBD_MD_FLCOOKIE)
245                 oti->oti_logcookies = &body->oa.o_lcookie;
246
247         /* Finish the reply */
248         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
249         memcpy(&repbody->oa, &body->oa, sizeof(body->oa));
250
251         /* Do the destroy and set the reply status accordingly  */
252         req->rq_status = obd_destroy(req->rq_svc_thread->t_env, exp,
253                                      &repbody->oa, NULL, oti, NULL, capa);
254         RETURN(0);
255 }
256
257 /**
258  * Helper function for getting server side [start, start+count] DLM lock
259  * if asked by client.
260  */
261 static int ost_lock_get(struct obd_export *exp, struct obdo *oa,
262                         __u64 start, __u64 count, struct lustre_handle *lh,
263                         int mode, __u64 flags)
264 {
265         struct ldlm_res_id res_id;
266         ldlm_policy_data_t policy;
267         __u64 end = start + count;
268
269         ENTRY;
270
271         LASSERT(!lustre_handle_is_used(lh));
272         /* o_id and o_gr are used for localizing resource, if client miss to set
273          * them, do not trigger ASSERTION. */
274         if (unlikely((oa->o_valid & (OBD_MD_FLID | OBD_MD_FLGROUP)) !=
275                      (OBD_MD_FLID | OBD_MD_FLGROUP)))
276                 RETURN(-EPROTO);
277
278         if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
279             !(oa->o_flags & OBD_FL_SRVLOCK))
280                 RETURN(0);
281
282         ostid_build_res_name(&oa->o_oi, &res_id);
283         CDEBUG(D_INODE, "OST-side extent lock.\n");
284
285         policy.l_extent.start = start & CFS_PAGE_MASK;
286
287         /* If ->o_blocks is EOF it means "lock till the end of the
288          * file". Otherwise, it's size of a hole being punched (in bytes) */
289         if (count == OBD_OBJECT_EOF || end < start)
290                 policy.l_extent.end = OBD_OBJECT_EOF;
291         else
292                 policy.l_extent.end = end | ~CFS_PAGE_MASK;
293
294         RETURN(ldlm_cli_enqueue_local(exp->exp_obd->obd_namespace, &res_id,
295                                       LDLM_EXTENT, &policy, mode, &flags,
296                                       ldlm_blocking_ast, ldlm_completion_ast,
297                                       ldlm_glimpse_ast, NULL, 0, LVB_T_NONE,
298                                       NULL, lh));
299 }
300
301 /* Helper function: release lock, if any. */
302 static void ost_lock_put(struct obd_export *exp,
303                          struct lustre_handle *lh, int mode)
304 {
305         ENTRY;
306         if (lustre_handle_is_used(lh))
307                 ldlm_lock_decref(lh, mode);
308         EXIT;
309 }
310
311 static int ost_getattr(struct obd_export *exp, struct ptlrpc_request *req)
312 {
313         struct ost_body *body, *repbody;
314         struct obd_info *oinfo;
315         struct lustre_handle lh = { 0 };
316         struct lustre_capa *capa = NULL;
317         int rc;
318         ENTRY;
319
320         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
321         if (body == NULL)
322                 RETURN(-EFAULT);
323
324         rc = ost_validate_obdo(exp, &body->oa, NULL);
325         if (rc)
326                 RETURN(rc);
327
328         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
329                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
330                 if (capa == NULL) {
331                         CERROR("Missing capability for OST GETATTR");
332                         RETURN(-EFAULT);
333                 }
334         }
335
336         rc = req_capsule_server_pack(&req->rq_pill);
337         if (rc)
338                 RETURN(rc);
339
340         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
341         repbody->oa = body->oa;
342
343         rc = ost_lock_get(exp, &repbody->oa, 0, OBD_OBJECT_EOF, &lh, LCK_PR, 0);
344         if (rc)
345                 RETURN(rc);
346
347         OBD_ALLOC_PTR(oinfo);
348         if (!oinfo)
349                 GOTO(unlock, rc = -ENOMEM);
350         oinfo->oi_oa = &repbody->oa;
351         oinfo->oi_capa = capa;
352
353         req->rq_status = obd_getattr(req->rq_svc_thread->t_env, exp, oinfo);
354
355         OBD_FREE_PTR(oinfo);
356
357         ost_drop_id(exp, &repbody->oa);
358
359 unlock:
360         ost_lock_put(exp, &lh, LCK_PR);
361         RETURN(rc);
362 }
363
364 static int ost_statfs(struct ptlrpc_request *req)
365 {
366         struct obd_statfs *osfs;
367         int rc;
368         ENTRY;
369
370         rc = req_capsule_server_pack(&req->rq_pill);
371         if (rc)
372                 RETURN(rc);
373
374         osfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
375
376         req->rq_status = obd_statfs(req->rq_svc_thread->t_env, req->rq_export,
377                                     osfs,
378                                     cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
379                                     0);
380         if (req->rq_status != 0)
381                 CERROR("ost: statfs failed: rc %d\n", req->rq_status);
382
383         if (OBD_FAIL_CHECK(OBD_FAIL_OST_STATFS_EINPROGRESS))
384                 req->rq_status = -EINPROGRESS;
385
386         RETURN(0);
387 }
388
389 static int ost_create(struct obd_export *exp, struct ptlrpc_request *req,
390                       struct obd_trans_info *oti)
391 {
392         struct ost_body *body, *repbody;
393         int rc;
394         ENTRY;
395
396         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
397         if (body == NULL)
398                 RETURN(-EFAULT);
399
400         rc = ost_validate_obdo(req->rq_export, &body->oa, NULL);
401         if (rc)
402                 RETURN(rc);
403
404         rc = req_capsule_server_pack(&req->rq_pill);
405         if (rc)
406                 RETURN(rc);
407
408         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
409         repbody->oa = body->oa;
410         oti->oti_logcookies = &body->oa.o_lcookie;
411
412         req->rq_status = obd_create(req->rq_svc_thread->t_env, exp,
413                                     &repbody->oa, NULL, oti);
414         //obd_log_cancel(conn, NULL, 1, oti->oti_logcookies, 0);
415         RETURN(0);
416 }
417
418 static int ost_punch(struct obd_export *exp, struct ptlrpc_request *req,
419                      struct obd_trans_info *oti)
420 {
421         struct ost_body *body, *repbody;
422         __u64 flags = 0;
423         struct lustre_handle lh = {0,};
424         int rc;
425         ENTRY;
426
427         /* check that we do support OBD_CONNECT_TRUNCLOCK. */
428         CLASSERT(OST_CONNECT_SUPPORTED & OBD_CONNECT_TRUNCLOCK);
429
430         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
431         if (body == NULL)
432                 RETURN(-EFAULT);
433
434         rc = ost_validate_obdo(exp, &body->oa, NULL);
435         if (rc)
436                 RETURN(rc);
437
438         if ((body->oa.o_valid & (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS)) !=
439             (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS))
440                 RETURN(-EPROTO);
441
442         rc = req_capsule_server_pack(&req->rq_pill);
443         if (rc)
444                 RETURN(rc);
445
446         /* standard truncate optimization: if file body is completely
447          * destroyed, don't send data back to the server. */
448         if (body->oa.o_size == 0)
449                 flags |= LDLM_FL_AST_DISCARD_DATA;
450
451         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
452         repbody->oa = body->oa;
453
454         rc = ost_lock_get(exp, &repbody->oa, repbody->oa.o_size,
455                           repbody->oa.o_blocks, &lh, LCK_PW, flags);
456         if (rc == 0) {
457                 struct obd_info *oinfo;
458                 struct lustre_capa *capa = NULL;
459
460                 if (repbody->oa.o_valid & OBD_MD_FLFLAGS &&
461                     repbody->oa.o_flags == OBD_FL_SRVLOCK)
462                         /*
463                          * If OBD_FL_SRVLOCK is the only bit set in
464                          * ->o_flags, clear OBD_MD_FLFLAGS to avoid falling
465                          * through filter_setattr() to filter_iocontrol().
466                          */
467                         repbody->oa.o_valid &= ~OBD_MD_FLFLAGS;
468
469                 if (repbody->oa.o_valid & OBD_MD_FLOSSCAPA) {
470                         capa = req_capsule_client_get(&req->rq_pill,
471                                                       &RMF_CAPA1);
472                         if (capa == NULL) {
473                                 CERROR("Missing capability for OST PUNCH");
474                                 GOTO(unlock, rc = -EFAULT);
475                         }
476                 }
477
478                 OBD_ALLOC_PTR(oinfo);
479                 if (!oinfo)
480                         GOTO(unlock, rc = -ENOMEM);
481                 oinfo->oi_oa = &repbody->oa;
482                 oinfo->oi_policy.l_extent.start = oinfo->oi_oa->o_size;
483                 oinfo->oi_policy.l_extent.end = oinfo->oi_oa->o_blocks;
484                 oinfo->oi_capa = capa;
485                 oinfo->oi_flags = OBD_FL_PUNCH;
486
487                 req->rq_status = obd_punch(req->rq_svc_thread->t_env, exp,
488                                            oinfo, oti, NULL);
489                 OBD_FREE_PTR(oinfo);
490 unlock:
491                 ost_lock_put(exp, &lh, LCK_PW);
492         }
493
494         ost_drop_id(exp, &repbody->oa);
495         RETURN(rc);
496 }
497
498 static int ost_sync(struct obd_export *exp, struct ptlrpc_request *req,
499                     struct obd_trans_info *oti)
500 {
501         struct ost_body *body, *repbody;
502         struct obd_info *oinfo;
503         struct lustre_capa *capa = NULL;
504         int rc;
505         ENTRY;
506
507         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
508         if (body == NULL)
509                 RETURN(-EFAULT);
510
511         rc = ost_validate_obdo(exp, &body->oa, NULL);
512         if (rc)
513                 RETURN(rc);
514
515         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
516                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
517                 if (capa == NULL) {
518                         CERROR("Missing capability for OST SYNC");
519                         RETURN (-EFAULT);
520                 }
521         }
522
523         rc = req_capsule_server_pack(&req->rq_pill);
524         if (rc)
525                 RETURN(rc);
526
527         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
528         repbody->oa = body->oa;
529
530         OBD_ALLOC_PTR(oinfo);
531         if (!oinfo)
532                 RETURN(-ENOMEM);
533
534         oinfo->oi_oa = &repbody->oa;
535         oinfo->oi_capa = capa;
536         oinfo->oi_jobid = oti->oti_jobid;
537         req->rq_status = obd_sync(req->rq_svc_thread->t_env, exp, oinfo,
538                                   repbody->oa.o_size, repbody->oa.o_blocks,
539                                   NULL);
540         OBD_FREE_PTR(oinfo);
541
542         ost_drop_id(exp, &repbody->oa);
543         RETURN(0);
544 }
545
546 static int ost_setattr(struct obd_export *exp, struct ptlrpc_request *req,
547                        struct obd_trans_info *oti)
548 {
549         struct ost_body *body, *repbody;
550         struct obd_info *oinfo;
551         struct lustre_capa *capa = NULL;
552         int rc;
553         ENTRY;
554
555         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
556         if (body == NULL)
557                 RETURN(-EFAULT);
558
559         rc = ost_validate_obdo(req->rq_export, &body->oa, NULL);
560         if (rc)
561                 RETURN(rc);
562
563         rc = req_capsule_server_pack(&req->rq_pill);
564         if (rc)
565                 RETURN(rc);
566
567         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
568                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
569                 if (capa == NULL) {
570                         CERROR("Missing capability for OST SETATTR");
571                         RETURN (-EFAULT);
572                 }
573         }
574
575         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
576         repbody->oa = body->oa;
577
578         OBD_ALLOC_PTR(oinfo);
579         if (!oinfo)
580                 RETURN(-ENOMEM);
581         oinfo->oi_oa = &repbody->oa;
582         oinfo->oi_capa = capa;
583
584         req->rq_status = obd_setattr(req->rq_svc_thread->t_env, exp, oinfo,
585                                      oti);
586
587         OBD_FREE_PTR(oinfo);
588
589         ost_drop_id(exp, &repbody->oa);
590         RETURN(0);
591 }
592
593 static __u32 ost_checksum_bulk(struct ptlrpc_bulk_desc *desc, int opc,
594                                cksum_type_t cksum_type)
595 {
596         struct cfs_crypto_hash_desc     *hdesc;
597         unsigned int                    bufsize;
598         int                             i, err;
599         unsigned char                   cfs_alg = cksum_obd2cfs(cksum_type);
600         __u32                           cksum;
601
602         hdesc = cfs_crypto_hash_init(cfs_alg, NULL, 0);
603         if (IS_ERR(hdesc)) {
604                 CERROR("Unable to initialize checksum hash %s\n",
605                        cfs_crypto_hash_name(cfs_alg));
606                 return PTR_ERR(hdesc);
607         }
608         CDEBUG(D_INFO, "Checksum for algo %s\n", cfs_crypto_hash_name(cfs_alg));
609         for (i = 0; i < desc->bd_iov_count; i++) {
610
611                 /* corrupt the data before we compute the checksum, to
612                  * simulate a client->OST data error */
613                 if (i == 0 && opc == OST_WRITE &&
614                     OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_RECEIVE)) {
615                         int off = desc->bd_iov[i].kiov_offset & ~CFS_PAGE_MASK;
616                         int len = desc->bd_iov[i].kiov_len;
617                         struct page *np = ost_page_to_corrupt;
618                         char *ptr = kmap(desc->bd_iov[i].kiov_page) + off;
619
620                         if (np) {
621                                 char *ptr2 = kmap(np) + off;
622
623                                 memcpy(ptr2, ptr, len);
624                                 memcpy(ptr2, "bad3", min(4, len));
625                                 kunmap(np);
626                                 desc->bd_iov[i].kiov_page = np;
627                         } else {
628                                 CERROR("can't alloc page for corruption\n");
629                         }
630                 }
631                 cfs_crypto_hash_update_page(hdesc, desc->bd_iov[i].kiov_page,
632                                   desc->bd_iov[i].kiov_offset & ~CFS_PAGE_MASK,
633                                   desc->bd_iov[i].kiov_len);
634
635                  /* corrupt the data after we compute the checksum, to
636                  * simulate an OST->client data error */
637                 if (i == 0 && opc == OST_READ &&
638                     OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_SEND)) {
639                         int off = desc->bd_iov[i].kiov_offset & ~CFS_PAGE_MASK;
640                         int len = desc->bd_iov[i].kiov_len;
641                         struct page *np = ost_page_to_corrupt;
642                         char *ptr = kmap(desc->bd_iov[i].kiov_page) + off;
643
644                         if (np) {
645                                 char *ptr2 = kmap(np) + off;
646
647                                 memcpy(ptr2, ptr, len);
648                                 memcpy(ptr2, "bad4", min(4, len));
649                                 kunmap(np);
650                                 desc->bd_iov[i].kiov_page = np;
651                         } else {
652                                 CERROR("can't alloc page for corruption\n");
653                         }
654                 }
655         }
656
657         bufsize = 4;
658         err = cfs_crypto_hash_final(hdesc, (unsigned char *)&cksum, &bufsize);
659         if (err)
660                 cfs_crypto_hash_final(hdesc, NULL, NULL);
661
662         return cksum;
663 }
664
665 static int ost_brw_lock_get(int mode, struct obd_export *exp,
666                             struct obd_ioobj *obj, struct niobuf_remote *nb,
667                             struct lustre_handle *lh)
668 {
669         __u64 flags               = 0;
670         int nrbufs                = obj->ioo_bufcnt;
671         struct ldlm_res_id res_id;
672         ldlm_policy_data_t policy;
673         int i;
674         ENTRY;
675
676         ostid_build_res_name(&obj->ioo_oid, &res_id);
677         LASSERT(mode == LCK_PR || mode == LCK_PW);
678         LASSERT(!lustre_handle_is_used(lh));
679
680         if (nrbufs == 0 || !(nb[0].flags & OBD_BRW_SRVLOCK))
681                 RETURN(0);
682
683         for (i = 1; i < nrbufs; i ++)
684                 if ((nb[0].flags & OBD_BRW_SRVLOCK) !=
685                     (nb[i].flags & OBD_BRW_SRVLOCK))
686                         RETURN(-EFAULT);
687
688         policy.l_extent.start = nb[0].offset & CFS_PAGE_MASK;
689         policy.l_extent.end   = (nb[nrbufs - 1].offset +
690                                  nb[nrbufs - 1].len - 1) | ~CFS_PAGE_MASK;
691
692         RETURN(ldlm_cli_enqueue_local(exp->exp_obd->obd_namespace, &res_id,
693                                       LDLM_EXTENT, &policy, mode, &flags,
694                                       ldlm_blocking_ast, ldlm_completion_ast,
695                                       ldlm_glimpse_ast, NULL, 0, LVB_T_NONE,
696                                       NULL, lh));
697 }
698
699 static void ost_brw_lock_put(int mode,
700                              struct obd_ioobj *obj, struct niobuf_remote *niob,
701                              struct lustre_handle *lh)
702 {
703         ENTRY;
704         LASSERT(mode == LCK_PR || mode == LCK_PW);
705         LASSERT((obj->ioo_bufcnt > 0 && (niob[0].flags & OBD_BRW_SRVLOCK)) ==
706                 lustre_handle_is_used(lh));
707         if (lustre_handle_is_used(lh))
708                 ldlm_lock_decref(lh, mode);
709         EXIT;
710 }
711
712 /* Allocate thread local buffers if needed */
713 static struct ost_thread_local_cache *ost_tls_get(struct ptlrpc_request *r)
714 {
715         struct ost_thread_local_cache *tls =
716                 (struct ost_thread_local_cache *)(r->rq_svc_thread->t_data);
717
718         /* In normal mode of operation an I/O request is serviced only
719          * by ll_ost_io threads each of them has own tls buffers allocated by
720          * ost_io_thread_init().
721          * During recovery, an I/O request may be queued until any of the ost
722          * service threads process it. Not necessary it should be one of
723          * ll_ost_io threads. In that case we dynamically allocating tls
724          * buffers for the request service time. */
725         if (unlikely(tls == NULL)) {
726                 LASSERT(r->rq_export->exp_in_recovery);
727                 OBD_ALLOC_PTR(tls);
728                 if (tls != NULL) {
729                         tls->temporary = 1;
730                         r->rq_svc_thread->t_data = tls;
731                 }
732         }
733         return  tls;
734 }
735
736 /* Free thread local buffers if they were allocated only for servicing
737  * this one request */
738 static void ost_tls_put(struct ptlrpc_request *r)
739 {
740         struct ost_thread_local_cache *tls =
741                 (struct ost_thread_local_cache *)(r->rq_svc_thread->t_data);
742
743         if (unlikely(tls->temporary)) {
744                 OBD_FREE_PTR(tls);
745                 r->rq_svc_thread->t_data = NULL;
746         }
747 }
748
749 static int ost_brw_read(struct ptlrpc_request *req, struct obd_trans_info *oti)
750 {
751         struct ptlrpc_bulk_desc *desc = NULL;
752         struct obd_export *exp = req->rq_export;
753         struct niobuf_remote *remote_nb;
754         struct niobuf_local *local_nb;
755         struct obd_ioobj *ioo;
756         struct ost_body *body, *repbody;
757         struct lustre_capa *capa = NULL;
758         struct l_wait_info lwi;
759         struct lustre_handle lockh = { 0 };
760         int niocount, npages, nob = 0, rc, i;
761         int no_reply = 0;
762         struct ost_thread_local_cache *tls;
763         ENTRY;
764
765         req->rq_bulk_read = 1;
766
767         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_READ_BULK))
768                 GOTO(out, rc = -EIO);
769
770         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK, (obd_timeout + 1) / 4);
771
772         /* Check if there is eviction in progress, and if so, wait for it to
773          * finish */
774         if (unlikely(cfs_atomic_read(&exp->exp_obd->obd_evict_inprogress))) {
775                 lwi = LWI_INTR(NULL, NULL); // We do not care how long it takes
776                 rc = l_wait_event(exp->exp_obd->obd_evict_inprogress_waitq,
777                         !cfs_atomic_read(&exp->exp_obd->obd_evict_inprogress),
778                         &lwi);
779         }
780         if (exp->exp_failed)
781                 GOTO(out, rc = -ENOTCONN);
782
783         /* ost_body, ioobj & noibuf_remote are verified and swabbed in
784          * ost_rw_hpreq_check(). */
785         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
786         if (body == NULL)
787                 GOTO(out, rc = -EFAULT);
788
789         /*
790          * A req_capsule_X_get_array(pill, field, ptr_to_element_count) function
791          * would be useful here and wherever we get &RMF_OBD_IOOBJ and
792          * &RMF_NIOBUF_REMOTE.
793          */
794         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
795         if (ioo == NULL)
796                 GOTO(out, rc = -EFAULT);
797
798         rc = ost_validate_obdo(exp, &body->oa, ioo);
799         if (rc)
800                 RETURN(rc);
801
802         niocount = ioo->ioo_bufcnt;
803         remote_nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
804         if (remote_nb == NULL)
805                 GOTO(out, rc = -EFAULT);
806
807         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
808                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
809                 if (capa == NULL) {
810                         CERROR("Missing capability for OST BRW READ");
811                         GOTO(out, rc = -EFAULT);
812                 }
813         }
814
815         rc = req_capsule_server_pack(&req->rq_pill);
816         if (rc)
817                 GOTO(out, rc);
818
819         tls = ost_tls_get(req);
820         if (tls == NULL)
821                 GOTO(out_bulk, rc = -ENOMEM);
822         local_nb = tls->local;
823
824         rc = ost_brw_lock_get(LCK_PR, exp, ioo, remote_nb, &lockh);
825         if (rc != 0)
826                 GOTO(out_tls, rc);
827
828         /*
829          * If getting the lock took more time than
830          * client was willing to wait, drop it. b=11330
831          */
832         if (cfs_time_current_sec() > req->rq_deadline ||
833             OBD_FAIL_CHECK(OBD_FAIL_OST_DROP_REQ)) {
834                 no_reply = 1;
835                 CERROR("Dropping timed-out read from %s because locking"
836                        "object "DOSTID" took %ld seconds (limit was %ld).\n",
837                        libcfs_id2str(req->rq_peer), POSTID(&ioo->ioo_oid),
838                        cfs_time_current_sec() - req->rq_arrival_time.tv_sec,
839                        req->rq_deadline - req->rq_arrival_time.tv_sec);
840                 GOTO(out_lock, rc = -ETIMEDOUT);
841         }
842
843         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
844         memcpy(&repbody->oa, &body->oa, sizeof(repbody->oa));
845
846         npages = OST_THREAD_POOL_SIZE;
847         rc = obd_preprw(req->rq_svc_thread->t_env, OBD_BRW_READ, exp,
848                         &repbody->oa, 1, ioo, remote_nb, &npages, local_nb,
849                         oti, capa);
850         if (rc != 0)
851                 GOTO(out_lock, rc);
852
853         desc = ptlrpc_prep_bulk_exp(req, npages, ioobj_max_brw_get(ioo),
854                                     BULK_PUT_SOURCE, OST_BULK_PORTAL);
855         if (desc == NULL)
856                 GOTO(out_commitrw, rc = -ENOMEM);
857
858         nob = 0;
859         for (i = 0; i < npages; i++) {
860                 int page_rc = local_nb[i].rc;
861
862                 if (page_rc < 0) {              /* error */
863                         rc = page_rc;
864                         break;
865                 }
866
867                 nob += page_rc;
868                 if (page_rc != 0) {             /* some data! */
869                         LASSERT (local_nb[i].page != NULL);
870                         ptlrpc_prep_bulk_page_nopin(desc, local_nb[i].page,
871                                                     local_nb[i].lnb_page_offset,
872                                                     page_rc);
873                 }
874
875                 if (page_rc != local_nb[i].len) { /* short read */
876                         /* All subsequent pages should be 0 */
877                         while(++i < npages)
878                                 LASSERT(local_nb[i].rc == 0);
879                         break;
880                 }
881         }
882
883         if (body->oa.o_valid & OBD_MD_FLCKSUM) {
884                 cksum_type_t cksum_type =
885                         cksum_type_unpack(repbody->oa.o_valid & OBD_MD_FLFLAGS ?
886                                           repbody->oa.o_flags : 0);
887                 repbody->oa.o_flags = cksum_type_pack(cksum_type);
888                 repbody->oa.o_valid = OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
889                 repbody->oa.o_cksum = ost_checksum_bulk(desc, OST_READ,cksum_type);
890                 CDEBUG(D_PAGE, "checksum at read origin: %x\n",
891                        repbody->oa.o_cksum);
892         } else {
893                 repbody->oa.o_valid = 0;
894         }
895         /* We're finishing using body->oa as an input variable */
896
897         /* Check if client was evicted while we were doing i/o before touching
898            network */
899         if (rc == 0) {
900                 if (likely(!CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2)))
901                         rc = target_bulk_io(exp, desc, &lwi);
902                 no_reply = rc != 0;
903         }
904
905 out_commitrw:
906         /* Must commit after prep above in all cases */
907         rc = obd_commitrw(req->rq_svc_thread->t_env, OBD_BRW_READ, exp,
908                           &repbody->oa, 1, ioo, remote_nb, npages, local_nb,
909                           oti, rc);
910
911         if (rc == 0)
912                 ost_drop_id(exp, &repbody->oa);
913
914 out_lock:
915         ost_brw_lock_put(LCK_PR, ioo, remote_nb, &lockh);
916 out_tls:
917         ost_tls_put(req);
918 out_bulk:
919         if (desc && !CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2))
920                 ptlrpc_free_bulk_nopin(desc);
921 out:
922         LASSERT(rc <= 0);
923         if (rc == 0) {
924                 req->rq_status = nob;
925                 ptlrpc_lprocfs_brw(req, nob);
926                 target_committed_to_req(req);
927                 ptlrpc_reply(req);
928         } else if (!no_reply) {
929                 /* Only reply if there was no comms problem with bulk */
930                 target_committed_to_req(req);
931                 req->rq_status = rc;
932                 ptlrpc_error(req);
933         } else {
934                 /* reply out callback would free */
935                 ptlrpc_req_drop_rs(req);
936                 LCONSOLE_WARN("%s: Bulk IO read error with %s (at %s), "
937                               "client will retry: rc %d\n",
938                               exp->exp_obd->obd_name,
939                               obd_uuid2str(&exp->exp_client_uuid),
940                               obd_export_nid2str(exp), rc);
941         }
942         /* send a bulk after reply to simulate a network delay or reordering
943          * by a router */
944         if (unlikely(CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2))) {
945                 cfs_waitq_t              waitq;
946                 struct l_wait_info       lwi1;
947
948                 CDEBUG(D_INFO, "reorder BULK\n");
949                 cfs_waitq_init(&waitq);
950
951                 lwi1 = LWI_TIMEOUT_INTR(cfs_time_seconds(3), NULL, NULL, NULL);
952                 l_wait_event(waitq, 0, &lwi1);
953                 rc = target_bulk_io(exp, desc, &lwi);
954                 ptlrpc_free_bulk_nopin(desc);
955         }
956
957         RETURN(rc);
958 }
959
960 static void ost_warn_on_cksum(struct ptlrpc_request *req,
961                               struct ptlrpc_bulk_desc *desc,
962                               struct niobuf_local *local_nb, int npages,
963                               obd_count client_cksum, obd_count server_cksum,
964                               int mmap)
965 {
966         struct obd_export *exp = req->rq_export;
967         struct ost_body *body;
968         char *router;
969         char *via;
970
971         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
972         LASSERT (body != NULL);
973
974         if (req->rq_peer.nid == desc->bd_sender) {
975                 via = router = "";
976         } else {
977                 via = " via ";
978                 router = libcfs_nid2str(desc->bd_sender);
979         }
980
981         if (mmap) {
982                 CDEBUG_LIMIT(D_INFO, "client csum %x, server csum %x\n",
983                              client_cksum, server_cksum);
984                 return;
985         }
986
987         LCONSOLE_ERROR_MSG(0x168, "BAD WRITE CHECKSUM: %s from %s%s%s inode "
988                            DFID" object "DOSTID" extent ["LPU64"-"LPU64
989                            "]: client csum %x, server csum %x\n",
990                            exp->exp_obd->obd_name, libcfs_id2str(req->rq_peer),
991                            via, router,
992                            body->oa.o_valid & OBD_MD_FLFID ?
993                            body->oa.o_parent_seq : (__u64)0,
994                            body->oa.o_valid & OBD_MD_FLFID ?
995                            body->oa.o_parent_oid : 0,
996                            body->oa.o_valid & OBD_MD_FLFID ?
997                            body->oa.o_parent_ver : 0,
998                            POSTID(&body->oa.o_oi),
999                            local_nb[0].lnb_file_offset,
1000                            local_nb[npages-1].lnb_file_offset +
1001                            local_nb[npages-1].len - 1,
1002                            client_cksum, server_cksum);
1003 }
1004
1005 static int ost_brw_write(struct ptlrpc_request *req, struct obd_trans_info *oti)
1006 {
1007         struct ptlrpc_bulk_desc *desc = NULL;
1008         struct obd_export       *exp = req->rq_export;
1009         struct niobuf_remote    *remote_nb;
1010         struct niobuf_local     *local_nb;
1011         struct obd_ioobj        *ioo;
1012         struct ost_body         *body, *repbody;
1013         struct l_wait_info       lwi;
1014         struct lustre_handle     lockh = {0};
1015         struct lustre_capa      *capa = NULL;
1016         __u32                   *rcs;
1017         int objcount, niocount, npages;
1018         int rc, i, j;
1019         obd_count                client_cksum = 0, server_cksum = 0;
1020         cksum_type_t             cksum_type = OBD_CKSUM_CRC32;
1021         int                      no_reply = 0, mmap = 0;
1022         __u32                    o_uid = 0, o_gid = 0;
1023         struct ost_thread_local_cache *tls;
1024         ENTRY;
1025
1026         req->rq_bulk_write = 1;
1027
1028         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_WRITE_BULK))
1029                 GOTO(out, rc = -EIO);
1030         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_WRITE_BULK2))
1031                 GOTO(out, rc = -EFAULT);
1032
1033         /* pause before transaction has been started */
1034         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK, (obd_timeout + 1) / 4);
1035
1036         /* ost_body, ioobj & noibuf_remote are verified and swabbed in
1037          * ost_rw_hpreq_check(). */
1038         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
1039         if (body == NULL)
1040                 GOTO(out, rc = -EFAULT);
1041
1042         objcount = req_capsule_get_size(&req->rq_pill, &RMF_OBD_IOOBJ,
1043                                         RCL_CLIENT) / sizeof(*ioo);
1044         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
1045         if (ioo == NULL)
1046                 GOTO(out, rc = -EFAULT);
1047
1048         rc = ost_validate_obdo(exp, &body->oa, ioo);
1049         if (rc)
1050                 RETURN(rc);
1051
1052         for (niocount = i = 0; i < objcount; i++)
1053                 niocount += ioo[i].ioo_bufcnt;
1054
1055         /*
1056          * It'd be nice to have a capsule function to indicate how many elements
1057          * there were in a buffer for an RMF that's declared to be an array.
1058          * It's easy enough to compute the number of elements here though.
1059          */
1060         remote_nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
1061         if (remote_nb == NULL || niocount != (req_capsule_get_size(&req->rq_pill,
1062             &RMF_NIOBUF_REMOTE, RCL_CLIENT) / sizeof(*remote_nb)))
1063                 GOTO(out, rc = -EFAULT);
1064
1065         if ((remote_nb[0].flags & OBD_BRW_MEMALLOC) &&
1066             (exp->exp_connection->c_peer.nid == exp->exp_connection->c_self))
1067                 memory_pressure_set();
1068
1069         if (body->oa.o_valid & OBD_MD_FLOSSCAPA) {
1070                 capa = req_capsule_client_get(&req->rq_pill, &RMF_CAPA1);
1071                 if (capa == NULL) {
1072                         CERROR("Missing capability for OST BRW WRITE");
1073                         GOTO(out, rc = -EFAULT);
1074                 }
1075         }
1076
1077         req_capsule_set_size(&req->rq_pill, &RMF_RCS, RCL_SERVER,
1078                              niocount * sizeof(*rcs));
1079         rc = req_capsule_server_pack(&req->rq_pill);
1080         if (rc != 0)
1081                 GOTO(out, rc);
1082         CFS_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_PACK, cfs_fail_val);
1083         rcs = req_capsule_server_get(&req->rq_pill, &RMF_RCS);
1084
1085         tls = ost_tls_get(req);
1086         if (tls == NULL)
1087                 GOTO(out_bulk, rc = -ENOMEM);
1088         local_nb = tls->local;
1089
1090         rc = ost_brw_lock_get(LCK_PW, exp, ioo, remote_nb, &lockh);
1091         if (rc != 0)
1092                 GOTO(out_tls, rc);
1093
1094         /*
1095          * If getting the lock took more time than
1096          * client was willing to wait, drop it. b=11330
1097          */
1098         if (cfs_time_current_sec() > req->rq_deadline ||
1099             OBD_FAIL_CHECK(OBD_FAIL_OST_DROP_REQ)) {
1100                 no_reply = 1;
1101                 CERROR("Dropping timed-out write from %s because locking "
1102                        "object "DOSTID" took %ld seconds (limit was %ld).\n",
1103                        libcfs_id2str(req->rq_peer), POSTID(&ioo->ioo_oid),
1104                        cfs_time_current_sec() - req->rq_arrival_time.tv_sec,
1105                        req->rq_deadline - req->rq_arrival_time.tv_sec);
1106                 GOTO(out_lock, rc = -ETIMEDOUT);
1107         }
1108
1109         /* obd_preprw clobbers oa->valid, so save what we need */
1110         if (body->oa.o_valid & OBD_MD_FLCKSUM) {
1111                 client_cksum = body->oa.o_cksum;
1112                 if (body->oa.o_valid & OBD_MD_FLFLAGS)
1113                         cksum_type = cksum_type_unpack(body->oa.o_flags);
1114         }
1115         if (body->oa.o_valid & OBD_MD_FLFLAGS && body->oa.o_flags & OBD_FL_MMAP)
1116                 mmap = 1;
1117
1118         /* Because we already sync grant info with client when reconnect,
1119          * grant info will be cleared for resent req, then fed_grant and
1120          * total_grant will not be modified in following preprw_write */
1121         if (lustre_msg_get_flags(req->rq_reqmsg) & (MSG_RESENT | MSG_REPLAY)) {
1122                 DEBUG_REQ(D_CACHE, req, "clear resent/replay req grant info");
1123                 body->oa.o_valid &= ~OBD_MD_FLGRANT;
1124         }
1125
1126         if (exp_connect_rmtclient(exp)) {
1127                 o_uid = body->oa.o_uid;
1128                 o_gid = body->oa.o_gid;
1129         }
1130
1131         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
1132         memcpy(&repbody->oa, &body->oa, sizeof(repbody->oa));
1133
1134         npages = OST_THREAD_POOL_SIZE;
1135         rc = obd_preprw(req->rq_svc_thread->t_env, OBD_BRW_WRITE, exp,
1136                         &repbody->oa, objcount, ioo, remote_nb, &npages,
1137                         local_nb, oti, capa);
1138         if (rc != 0)
1139                 GOTO(out_lock, rc);
1140
1141         desc = ptlrpc_prep_bulk_exp(req, npages, ioobj_max_brw_get(ioo),
1142                                     BULK_GET_SINK, OST_BULK_PORTAL);
1143         if (desc == NULL)
1144                 GOTO(skip_transfer, rc = -ENOMEM);
1145
1146         /* NB Having prepped, we must commit... */
1147         for (i = 0; i < npages; i++)
1148                 ptlrpc_prep_bulk_page_nopin(desc, local_nb[i].page,
1149                                             local_nb[i].lnb_page_offset,
1150                                             local_nb[i].len);
1151
1152         rc = sptlrpc_svc_prep_bulk(req, desc);
1153         if (rc != 0)
1154                 GOTO(out_lock, rc);
1155
1156         rc = target_bulk_io(exp, desc, &lwi);
1157         no_reply = rc != 0;
1158
1159 skip_transfer:
1160         if (client_cksum != 0 && rc == 0) {
1161                 static int cksum_counter;
1162                 repbody->oa.o_valid |= OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
1163                 repbody->oa.o_flags &= ~OBD_FL_CKSUM_ALL;
1164                 repbody->oa.o_flags |= cksum_type_pack(cksum_type);
1165                 server_cksum = ost_checksum_bulk(desc, OST_WRITE, cksum_type);
1166                 repbody->oa.o_cksum = server_cksum;
1167                 cksum_counter++;
1168                 if (unlikely(client_cksum != server_cksum)) {
1169                         ost_warn_on_cksum(req, desc, local_nb, npages,
1170                                           client_cksum, server_cksum, mmap);
1171                         cksum_counter = 0;
1172
1173                 } else if ((cksum_counter & (-cksum_counter)) == cksum_counter){
1174                         CDEBUG(D_INFO, "Checksum %u from %s OK: %x\n",
1175                                cksum_counter, libcfs_id2str(req->rq_peer),
1176                                server_cksum);
1177                 }
1178         }
1179
1180         /* Must commit after prep above in all cases */
1181         rc = obd_commitrw(req->rq_svc_thread->t_env, OBD_BRW_WRITE, exp,
1182                           &repbody->oa, objcount, ioo, remote_nb, npages,
1183                           local_nb, oti, rc);
1184         if (rc == -ENOTCONN)
1185                 /* quota acquire process has been given up because
1186                  * either the client has been evicted or the client
1187                  * has timed out the request already */
1188                 no_reply = 1;
1189
1190         if (exp_connect_rmtclient(exp)) {
1191                 repbody->oa.o_uid = o_uid;
1192                 repbody->oa.o_gid = o_gid;
1193         }
1194
1195         /*
1196          * Disable sending mtime back to the client. If the client locked the
1197          * whole object, then it has already updated the mtime on its side,
1198          * otherwise it will have to glimpse anyway (see bug 21489, comment 32)
1199          */
1200         repbody->oa.o_valid &= ~(OBD_MD_FLMTIME | OBD_MD_FLATIME);
1201
1202         if (rc == 0) {
1203                 int nob = 0;
1204
1205                 /* set per-requested niobuf return codes */
1206                 for (i = j = 0; i < niocount; i++) {
1207                         int len = remote_nb[i].len;
1208
1209                         nob += len;
1210                         rcs[i] = 0;
1211                         do {
1212                                 LASSERT(j < npages);
1213                                 if (local_nb[j].rc < 0)
1214                                         rcs[i] = local_nb[j].rc;
1215                                 len -= local_nb[j].len;
1216                                 j++;
1217                         } while (len > 0);
1218                         LASSERT(len == 0);
1219                 }
1220                 LASSERT(j == npages);
1221                 ptlrpc_lprocfs_brw(req, nob);
1222         }
1223
1224 out_lock:
1225         ost_brw_lock_put(LCK_PW, ioo, remote_nb, &lockh);
1226 out_tls:
1227         ost_tls_put(req);
1228 out_bulk:
1229         if (desc)
1230                 ptlrpc_free_bulk_nopin(desc);
1231 out:
1232         if (rc == 0) {
1233                 oti_to_request(oti, req);
1234                 target_committed_to_req(req);
1235                 rc = ptlrpc_reply(req);
1236         } else if (!no_reply) {
1237                 /* Only reply if there was no comms problem with bulk */
1238                 target_committed_to_req(req);
1239                 req->rq_status = rc;
1240                 ptlrpc_error(req);
1241         } else {
1242                 /* reply out callback would free */
1243                 ptlrpc_req_drop_rs(req);
1244                 LCONSOLE_WARN("%s: Bulk IO write error with %s (at %s), "
1245                               "client will retry: rc %d\n",
1246                               exp->exp_obd->obd_name,
1247                               obd_uuid2str(&exp->exp_client_uuid),
1248                               obd_export_nid2str(exp), rc);
1249         }
1250         memory_pressure_clr();
1251         RETURN(rc);
1252 }
1253
1254 /**
1255  * Implementation of OST_SET_INFO.
1256  *
1257  * OST_SET_INFO is like ioctl(): heavily overloaded.  Specifically, it takes a
1258  * "key" and a value RPC buffers as arguments, with the value's contents
1259  * interpreted according to the key.
1260  *
1261  * Value types that need swabbing have swabbing done explicitly, either here or
1262  * in functions called from here.  This should be corrected: all swabbing should
1263  * be done in the capsule abstraction, as that will then allow us to move
1264  * swabbing exclusively to the client without having to modify server code
1265  * outside the capsule abstraction's implementation itself.  To correct this
1266  * will require minor changes to the capsule abstraction; see the comments for
1267  * req_capsule_extend() in layout.c.
1268  */
1269 static int ost_set_info(struct obd_export *exp, struct ptlrpc_request *req)
1270 {
1271         struct ost_body *body = NULL, *repbody;
1272         char *key, *val = NULL;
1273         int keylen, vallen, rc = 0;
1274         int is_grant_shrink = 0;
1275         ENTRY;
1276
1277         key = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1278         if (key == NULL) {
1279                 DEBUG_REQ(D_HA, req, "no set_info key");
1280                 RETURN(-EFAULT);
1281         }
1282         keylen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_KEY,
1283                                       RCL_CLIENT);
1284
1285         vallen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_VAL,
1286                                       RCL_CLIENT);
1287
1288         if ((is_grant_shrink = KEY_IS(KEY_GRANT_SHRINK)))
1289                 /* In this case the value is actually an RMF_OST_BODY, so we
1290                  * transmutate the type of this PTLRPC */
1291                 req_capsule_extend(&req->rq_pill, &RQF_OST_SET_GRANT_INFO);
1292
1293         rc = req_capsule_server_pack(&req->rq_pill);
1294         if (rc)
1295                 RETURN(rc);
1296
1297         if (vallen) {
1298                 if (is_grant_shrink) {
1299                         body = req_capsule_client_get(&req->rq_pill,
1300                                                       &RMF_OST_BODY);
1301                         if (!body)
1302                                 RETURN(-EFAULT);
1303
1304                         repbody = req_capsule_server_get(&req->rq_pill,
1305                                                          &RMF_OST_BODY);
1306                         memcpy(repbody, body, sizeof(*body));
1307                         val = (char*)repbody;
1308                 } else {
1309                         val = req_capsule_client_get(&req->rq_pill,
1310                                                      &RMF_SETINFO_VAL);
1311                 }
1312         }
1313
1314         if (KEY_IS(KEY_EVICT_BY_NID)) {
1315                 if (val && vallen)
1316                         obd_export_evict_by_nid(exp->exp_obd, val);
1317                 GOTO(out, rc = 0);
1318         } else if (KEY_IS(KEY_MDS_CONN) && ptlrpc_req_need_swab(req)) {
1319                 if (vallen < sizeof(__u32))
1320                         RETURN(-EFAULT);
1321                 __swab32s((__u32 *)val);
1322         }
1323
1324         /* OBD will also check if KEY_IS(KEY_GRANT_SHRINK), and will cast val to
1325          * a struct ost_body * value */
1326         rc = obd_set_info_async(req->rq_svc_thread->t_env, exp, keylen,
1327                                 key, vallen, val, NULL);
1328 out:
1329         lustre_msg_set_status(req->rq_repmsg, 0);
1330         RETURN(rc);
1331 }
1332
1333 struct locked_region {
1334         cfs_list_t  list;
1335         struct lustre_handle lh;
1336 };
1337
1338 static int lock_region(struct obd_export *exp, struct obdo *oa,
1339                        unsigned long long begin, unsigned long long end,
1340                        cfs_list_t *locked)
1341 {
1342         struct locked_region *region = NULL;
1343         int rc;
1344
1345         LASSERT(begin <= end);
1346         OBD_ALLOC_PTR(region);
1347         if (region == NULL)
1348                 return -ENOMEM;
1349
1350         rc = ost_lock_get(exp, oa, begin, end - begin, &region->lh, LCK_PR, 0);
1351         if (rc) {
1352                 OBD_FREE_PTR(region);
1353                 return rc;
1354         }
1355
1356         CDEBUG(D_OTHER, "ost lock [%llu,%llu], lh=%p\n",
1357                begin, end, &region->lh);
1358         cfs_list_add(&region->list, locked);
1359
1360         return 0;
1361 }
1362
1363 static int lock_zero_regions(struct obd_export *exp, struct obdo *oa,
1364                              struct ll_user_fiemap *fiemap,
1365                              cfs_list_t *locked)
1366 {
1367         __u64 begin = fiemap->fm_start;
1368         unsigned int i;
1369         int rc = 0;
1370         struct ll_fiemap_extent *fiemap_start = fiemap->fm_extents;
1371         ENTRY;
1372
1373         CDEBUG(D_OTHER, "extents count %u\n", fiemap->fm_mapped_extents);
1374         for (i = 0; i < fiemap->fm_mapped_extents; i++) {
1375                 if (fiemap_start[i].fe_logical > begin) {
1376                         CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
1377                                begin, fiemap_start[i].fe_logical);
1378                         rc = lock_region(exp, oa, begin,
1379                                     fiemap_start[i].fe_logical, locked);
1380                         if (rc)
1381                                 RETURN(rc);
1382                 }
1383
1384                 begin = fiemap_start[i].fe_logical + fiemap_start[i].fe_length;
1385         }
1386
1387         if (begin < (fiemap->fm_start + fiemap->fm_length)) {
1388                 CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
1389                        begin, fiemap->fm_start + fiemap->fm_length);
1390                 rc = lock_region(exp, oa, begin,
1391                                  fiemap->fm_start + fiemap->fm_length, locked);
1392         }
1393
1394         RETURN(rc);
1395 }
1396
1397 static void unlock_zero_regions(struct obd_export *exp, cfs_list_t *locked)
1398 {
1399         struct locked_region *entry, *temp;
1400         cfs_list_for_each_entry_safe(entry, temp, locked, list) {
1401                 CDEBUG(D_OTHER, "ost unlock lh=%p\n", &entry->lh);
1402                 ost_lock_put(exp, &entry->lh, LCK_PR);
1403                 cfs_list_del(&entry->list);
1404                 OBD_FREE_PTR(entry);
1405         }
1406 }
1407
1408 static int ost_get_info(struct obd_export *exp, struct ptlrpc_request *req)
1409 {
1410         void *key, *reply;
1411         int keylen, replylen, rc = 0;
1412         struct req_capsule *pill = &req->rq_pill;
1413         cfs_list_t locked = CFS_LIST_HEAD_INIT(locked);
1414         struct ll_fiemap_info_key *fm_key = NULL;
1415         struct ll_user_fiemap *fiemap;
1416         ENTRY;
1417
1418         /* this common part for get_info rpc */
1419         key = req_capsule_client_get(pill, &RMF_SETINFO_KEY);
1420         if (key == NULL) {
1421                 DEBUG_REQ(D_HA, req, "no get_info key");
1422                 RETURN(-EFAULT);
1423         }
1424         keylen = req_capsule_get_size(pill, &RMF_SETINFO_KEY, RCL_CLIENT);
1425
1426         if (KEY_IS(KEY_FIEMAP)) {
1427                 fm_key = key;
1428                 rc = ost_validate_obdo(exp, &fm_key->oa, NULL);
1429                 if (rc)
1430                         RETURN(rc);
1431         }
1432
1433         rc = obd_get_info(req->rq_svc_thread->t_env, exp, keylen, key,
1434                           &replylen, NULL, NULL);
1435         if (rc)
1436                 RETURN(rc);
1437
1438         req_capsule_set_size(pill, &RMF_GENERIC_DATA,
1439                              RCL_SERVER, replylen);
1440
1441         rc = req_capsule_server_pack(pill);
1442         if (rc)
1443                 RETURN(rc);
1444
1445         reply = req_capsule_server_get(pill, &RMF_GENERIC_DATA);
1446         if (reply == NULL)
1447                 RETURN(-ENOMEM);
1448
1449         if (KEY_IS(KEY_LAST_FID)) {
1450                 void *val;
1451                 int vallen;
1452
1453                 req_capsule_extend(pill, &RQF_OST_GET_INFO_LAST_FID);
1454                 val = req_capsule_client_get(pill, &RMF_SETINFO_VAL);
1455                 vallen = req_capsule_get_size(pill, &RMF_SETINFO_VAL,
1456                                               RCL_CLIENT);
1457                 if (val != NULL && vallen > 0 && replylen >= vallen) {
1458                         memcpy(reply, val, vallen);
1459                 } else {
1460                         CERROR("%s: invalid req val %p vallen %d replylen %d\n",
1461                                exp->exp_obd->obd_name, val, vallen, replylen);
1462                         RETURN(-EINVAL);
1463                 }
1464         }
1465
1466         /* call again to fill in the reply buffer */
1467         rc = obd_get_info(req->rq_svc_thread->t_env, exp, keylen, key,
1468                           &replylen, reply, NULL);
1469
1470         /* LU-3219: Lock the sparse areas to make sure dirty flushed back
1471          * from client, then call fiemap again. */
1472         if (KEY_IS(KEY_FIEMAP) && (fm_key->oa.o_valid & OBD_MD_FLFLAGS) &&
1473             (fm_key->oa.o_flags & OBD_FL_SRVLOCK)) {
1474                 fiemap = (struct ll_user_fiemap *)reply;
1475                 fm_key = key;
1476
1477                 rc = lock_zero_regions(exp, &fm_key->oa, fiemap, &locked);
1478                 if (rc == 0 && !cfs_list_empty(&locked))
1479                         rc = obd_get_info(req->rq_svc_thread->t_env, exp,
1480                                           keylen, key, &replylen, reply, NULL);
1481                 unlock_zero_regions(exp, &locked);
1482                 if (rc)
1483                         RETURN(rc);
1484         }
1485
1486         lustre_msg_set_status(req->rq_repmsg, 0);
1487
1488         RETURN(rc);
1489 }
1490
1491 static int ost_handle_quotactl(struct ptlrpc_request *req)
1492 {
1493         struct obd_quotactl *oqctl, *repoqc;
1494         int rc;
1495         ENTRY;
1496
1497         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1498         if (oqctl == NULL)
1499                 GOTO(out, rc = -EPROTO);
1500
1501         rc = req_capsule_server_pack(&req->rq_pill);
1502         if (rc)
1503                 GOTO(out, rc);
1504
1505         repoqc = req_capsule_server_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1506         req->rq_status = obd_quotactl(req->rq_export, oqctl);
1507         *repoqc = *oqctl;
1508
1509 out:
1510         RETURN(rc);
1511 }
1512
1513 static int ost_handle_quotacheck(struct ptlrpc_request *req)
1514 {
1515         struct obd_quotactl *oqctl;
1516         int rc;
1517         ENTRY;
1518
1519         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1520         if (oqctl == NULL)
1521                 RETURN(-EPROTO);
1522
1523         rc = req_capsule_server_pack(&req->rq_pill);
1524         if (rc)
1525                 RETURN(-ENOMEM);
1526
1527         /* deprecated, not used any more */
1528         req->rq_status = -EOPNOTSUPP;
1529         RETURN(-EOPNOTSUPP);
1530 }
1531
1532 static int ost_llog_handle_connect(struct obd_export *exp,
1533                                    struct ptlrpc_request *req)
1534 {
1535         struct llogd_conn_body *body;
1536         int rc;
1537         ENTRY;
1538
1539         body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_CONN_BODY);
1540         rc = obd_llog_connect(exp, body);
1541         RETURN(rc);
1542 }
1543
1544 #define ost_init_sec_none(reply, exp)                                   \
1545 do {                                                                    \
1546         reply->ocd_connect_flags &= ~(OBD_CONNECT_RMT_CLIENT |          \
1547                                       OBD_CONNECT_RMT_CLIENT_FORCE |    \
1548                                       OBD_CONNECT_OSS_CAPA);            \
1549         spin_lock(&exp->exp_lock);                                      \
1550         *exp_connect_flags_ptr(exp) = reply->ocd_connect_flags;         \
1551         spin_unlock(&exp->exp_lock);                                    \
1552 } while (0)
1553
1554 static int ost_init_sec_level(struct ptlrpc_request *req)
1555 {
1556         struct obd_export *exp = req->rq_export;
1557         struct req_capsule *pill = &req->rq_pill;
1558         struct obd_device *obd = exp->exp_obd;
1559         struct filter_obd *filter = &obd->u.filter;
1560         char *client = libcfs_nid2str(req->rq_peer.nid);
1561         struct obd_connect_data *data, *reply;
1562         int rc = 0, remote;
1563         ENTRY;
1564
1565         data = req_capsule_client_get(pill, &RMF_CONNECT_DATA);
1566         reply = req_capsule_server_get(pill, &RMF_CONNECT_DATA);
1567         if (data == NULL || reply == NULL)
1568                 RETURN(-EFAULT);
1569
1570         /* connection from MDT is always trusted */
1571         if (req->rq_auth_usr_mdt) {
1572                 ost_init_sec_none(reply, exp);
1573                 RETURN(0);
1574         }
1575
1576         /* no GSS support case */
1577         if (!req->rq_auth_gss) {
1578                 if (filter->fo_sec_level > LUSTRE_SEC_NONE) {
1579                         CWARN("client %s -> target %s does not user GSS, "
1580                               "can not run under security level %d.\n",
1581                               client, obd->obd_name, filter->fo_sec_level);
1582                         RETURN(-EACCES);
1583                 } else {
1584                         ost_init_sec_none(reply, exp);
1585                         RETURN(0);
1586                 }
1587         }
1588
1589         /* old version case */
1590         if (unlikely(!(data->ocd_connect_flags & OBD_CONNECT_RMT_CLIENT) ||
1591                      !(data->ocd_connect_flags & OBD_CONNECT_OSS_CAPA))) {
1592                 if (filter->fo_sec_level > LUSTRE_SEC_NONE) {
1593                         CWARN("client %s -> target %s uses old version, "
1594                               "can not run under security level %d.\n",
1595                               client, obd->obd_name, filter->fo_sec_level);
1596                         RETURN(-EACCES);
1597                 } else {
1598                         CWARN("client %s -> target %s uses old version, "
1599                               "run under security level %d.\n",
1600                               client, obd->obd_name, filter->fo_sec_level);
1601                         ost_init_sec_none(reply, exp);
1602                         RETURN(0);
1603                 }
1604         }
1605
1606         remote = data->ocd_connect_flags & OBD_CONNECT_RMT_CLIENT_FORCE;
1607         if (remote) {
1608                 if (!req->rq_auth_remote)
1609                         CDEBUG(D_SEC, "client (local realm) %s -> target %s "
1610                                "asked to be remote.\n", client, obd->obd_name);
1611         } else if (req->rq_auth_remote) {
1612                 remote = 1;
1613                 CDEBUG(D_SEC, "client (remote realm) %s -> target %s is set "
1614                        "as remote by default.\n", client, obd->obd_name);
1615         }
1616
1617         if (remote) {
1618                 if (!filter->fo_fl_oss_capa) {
1619                         CDEBUG(D_SEC, "client %s -> target %s is set as remote,"
1620                                " but OSS capabilities are not enabled: %d.\n",
1621                                client, obd->obd_name, filter->fo_fl_oss_capa);
1622                         RETURN(-EACCES);
1623                 }
1624         }
1625
1626         switch (filter->fo_sec_level) {
1627         case LUSTRE_SEC_NONE:
1628                 if (!remote) {
1629                         ost_init_sec_none(reply, exp);
1630                         break;
1631                 } else {
1632                         CDEBUG(D_SEC, "client %s -> target %s is set as remote, "
1633                                "can not run under security level %d.\n",
1634                                client, obd->obd_name, filter->fo_sec_level);
1635                         RETURN(-EACCES);
1636                 }
1637         case LUSTRE_SEC_REMOTE:
1638                 if (!remote)
1639                         ost_init_sec_none(reply, exp);
1640                 break;
1641         case LUSTRE_SEC_ALL:
1642                 if (!remote) {
1643                         reply->ocd_connect_flags &= ~(OBD_CONNECT_RMT_CLIENT |
1644                                                       OBD_CONNECT_RMT_CLIENT_FORCE);
1645                         if (!filter->fo_fl_oss_capa)
1646                                 reply->ocd_connect_flags &= ~OBD_CONNECT_OSS_CAPA;
1647
1648                         spin_lock(&exp->exp_lock);
1649                         *exp_connect_flags_ptr(exp) = reply->ocd_connect_flags;
1650                         spin_unlock(&exp->exp_lock);
1651                 }
1652                 break;
1653         default:
1654                 RETURN(-EINVAL);
1655         }
1656
1657         RETURN(rc);
1658 }
1659
1660 /*
1661  * FIXME
1662  * this should be done in filter_connect()/filter_reconnect(), but
1663  * we can't obtain information like NID, which stored in incoming
1664  * request, thus can't decide what flavor to use. so we do it here.
1665  *
1666  * This hack should be removed after the OST stack be rewritten, just
1667  * like what we are doing in mdt_obd_connect()/mdt_obd_reconnect().
1668  */
1669 static int ost_connect_check_sptlrpc(struct ptlrpc_request *req)
1670 {
1671         struct obd_export     *exp = req->rq_export;
1672         struct filter_obd     *filter = &exp->exp_obd->u.filter;
1673         struct sptlrpc_flavor  flvr;
1674         int                    rc = 0;
1675
1676         if (unlikely(strcmp(exp->exp_obd->obd_type->typ_name,
1677                             LUSTRE_ECHO_NAME) == 0)) {
1678                 exp->exp_flvr.sf_rpc = SPTLRPC_FLVR_ANY;
1679                 return 0;
1680         }
1681
1682         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
1683                 read_lock(&filter->fo_sptlrpc_lock);
1684                 sptlrpc_target_choose_flavor(&filter->fo_sptlrpc_rset,
1685                                              req->rq_sp_from,
1686                                              req->rq_peer.nid,
1687                                              &flvr);
1688                 read_unlock(&filter->fo_sptlrpc_lock);
1689
1690                 spin_lock(&exp->exp_lock);
1691
1692                 exp->exp_sp_peer = req->rq_sp_from;
1693                 exp->exp_flvr = flvr;
1694
1695                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
1696                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
1697                         CERROR("unauthorized rpc flavor %x from %s, "
1698                                "expect %x\n", req->rq_flvr.sf_rpc,
1699                                libcfs_nid2str(req->rq_peer.nid),
1700                                exp->exp_flvr.sf_rpc);
1701                         rc = -EACCES;
1702                 }
1703
1704                 spin_unlock(&exp->exp_lock);
1705         } else {
1706                 if (exp->exp_sp_peer != req->rq_sp_from) {
1707                         CERROR("RPC source %s doesn't match %s\n",
1708                                sptlrpc_part2name(req->rq_sp_from),
1709                                sptlrpc_part2name(exp->exp_sp_peer));
1710                         rc = -EACCES;
1711                 } else {
1712                         rc = sptlrpc_target_export_check(exp, req);
1713                 }
1714         }
1715
1716         return rc;
1717 }
1718
1719 /* Ensure that data and metadata are synced to the disk when lock is cancelled
1720  * (if requested) */
1721 int ost_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1722                      void *data, int flag)
1723 {
1724         struct lu_env   env;
1725         __u32           sync_lock_cancel = 0;
1726         __u32           len = sizeof(sync_lock_cancel);
1727         int             rc = 0;
1728
1729         ENTRY;
1730
1731         rc = lu_env_init(&env, LCT_DT_THREAD);
1732         if (unlikely(rc != 0))
1733                 RETURN(rc);
1734
1735         rc = obd_get_info(&env, lock->l_export, sizeof(KEY_SYNC_LOCK_CANCEL),
1736                           KEY_SYNC_LOCK_CANCEL, &len, &sync_lock_cancel, NULL);
1737         if (rc == 0 && flag == LDLM_CB_CANCELING &&
1738             (lock->l_granted_mode & (LCK_PW|LCK_GROUP)) &&
1739             (sync_lock_cancel == ALWAYS_SYNC_ON_CANCEL ||
1740              (sync_lock_cancel == BLOCKING_SYNC_ON_CANCEL &&
1741               lock->l_flags & LDLM_FL_CBPENDING))) {
1742                 struct obd_info *oinfo;
1743                 struct obdo     *oa;
1744                 int              rc;
1745
1746                 OBD_ALLOC_PTR(oinfo);
1747                 if (!oinfo)
1748                         GOTO(out_env, rc = -ENOMEM);
1749                 OBDO_ALLOC(oa);
1750                 if (!oa) {
1751                         OBD_FREE_PTR(oinfo);
1752                         GOTO(out_env, rc = -ENOMEM);
1753                 }
1754
1755                 ostid_res_name_to_id(&oa->o_oi, &lock->l_resource->lr_name);
1756                 oa->o_valid = OBD_MD_FLID|OBD_MD_FLGROUP;
1757                 oinfo->oi_oa = oa;
1758                 oinfo->oi_capa = BYPASS_CAPA;
1759
1760                 rc = obd_sync(&env, lock->l_export, oinfo,
1761                               lock->l_policy_data.l_extent.start,
1762                               lock->l_policy_data.l_extent.end, NULL);
1763                 if (rc)
1764                         CERROR("Error %d syncing data on lock cancel\n", rc);
1765
1766                 OBDO_FREE(oa);
1767                 OBD_FREE_PTR(oinfo);
1768         }
1769
1770         rc = ldlm_server_blocking_ast(lock, desc, data, flag);
1771 out_env:
1772         lu_env_fini(&env);
1773         RETURN(rc);
1774 }
1775
1776 static int ost_filter_recovery_request(struct ptlrpc_request *req,
1777                                        struct obd_device *obd, int *process)
1778 {
1779         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
1780         case OST_CONNECT: /* This will never get here, but for completeness. */
1781         case OST_DISCONNECT:
1782                *process = 1;
1783                RETURN(0);
1784
1785         case OBD_PING:
1786         case OST_CREATE:
1787         case OST_DESTROY:
1788         case OST_PUNCH:
1789         case OST_SETATTR:
1790         case OST_SYNC:
1791         case OST_WRITE:
1792         case OBD_LOG_CANCEL:
1793         case LDLM_ENQUEUE:
1794                 *process = target_queue_recovery_request(req, obd);
1795                 RETURN(0);
1796
1797         default:
1798                 DEBUG_REQ(D_WARNING, req, "not permitted during recovery");
1799                 *process = -EAGAIN;
1800                 RETURN(0);
1801         }
1802 }
1803
1804 int ost_msg_check_version(struct lustre_msg *msg)
1805 {
1806         int rc;
1807
1808         switch(lustre_msg_get_opc(msg)) {
1809         case OST_CONNECT:
1810         case OST_DISCONNECT:
1811         case OBD_PING:
1812         case SEC_CTX_INIT:
1813         case SEC_CTX_INIT_CONT:
1814         case SEC_CTX_FINI:
1815                 rc = lustre_msg_check_version(msg, LUSTRE_OBD_VERSION);
1816                 if (rc)
1817                         CERROR("bad opc %u version %08x, expecting %08x\n",
1818                                lustre_msg_get_opc(msg),
1819                                lustre_msg_get_version(msg),
1820                                LUSTRE_OBD_VERSION);
1821                 break;
1822         case OST_CREATE:
1823         case OST_DESTROY:
1824         case OST_GETATTR:
1825         case OST_SETATTR:
1826         case OST_WRITE:
1827         case OST_READ:
1828         case OST_PUNCH:
1829         case OST_STATFS:
1830         case OST_SYNC:
1831         case OST_SET_INFO:
1832         case OST_GET_INFO:
1833         case OST_QUOTACHECK:
1834         case OST_QUOTACTL:
1835                 rc = lustre_msg_check_version(msg, LUSTRE_OST_VERSION);
1836                 if (rc)
1837                         CERROR("bad opc %u version %08x, expecting %08x\n",
1838                                lustre_msg_get_opc(msg),
1839                                lustre_msg_get_version(msg),
1840                                LUSTRE_OST_VERSION);
1841                 break;
1842         case LDLM_ENQUEUE:
1843         case LDLM_CONVERT:
1844         case LDLM_CANCEL:
1845         case LDLM_BL_CALLBACK:
1846         case LDLM_CP_CALLBACK:
1847                 rc = lustre_msg_check_version(msg, LUSTRE_DLM_VERSION);
1848                 if (rc)
1849                         CERROR("bad opc %u version %08x, expecting %08x\n",
1850                                lustre_msg_get_opc(msg),
1851                                lustre_msg_get_version(msg),
1852                                LUSTRE_DLM_VERSION);
1853                 break;
1854         case LLOG_ORIGIN_CONNECT:
1855         case OBD_LOG_CANCEL:
1856                 rc = lustre_msg_check_version(msg, LUSTRE_LOG_VERSION);
1857                 if (rc)
1858                         CERROR("bad opc %u version %08x, expecting %08x\n",
1859                                lustre_msg_get_opc(msg),
1860                                lustre_msg_get_version(msg),
1861                                LUSTRE_LOG_VERSION);
1862                 break;
1863         case OST_QUOTA_ADJUST_QUNIT:
1864                 rc = -ENOTSUPP;
1865                 CERROR("Quota adjust is deprecated as of 2.4.0\n");
1866                 break;
1867         default:
1868                 CERROR("Unexpected opcode %d\n", lustre_msg_get_opc(msg));
1869                 rc = -ENOTSUPP;
1870         }
1871         return rc;
1872 }
1873
1874 struct ost_prolong_data {
1875         struct ptlrpc_request *opd_req;
1876         struct obd_export     *opd_exp;
1877         struct obdo           *opd_oa;
1878         struct ldlm_res_id     opd_resid;
1879         struct ldlm_extent     opd_extent;
1880         ldlm_mode_t            opd_mode;
1881         unsigned int           opd_locks;
1882         int                    opd_timeout;
1883 };
1884
1885 /* prolong locks for the current service time of the corresponding
1886  * portal (= OST_IO_PORTAL)
1887  */
1888 static inline int prolong_timeout(struct ptlrpc_request *req)
1889 {
1890         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1891
1892         if (AT_OFF)
1893                 return obd_timeout / 2;
1894
1895         return max(at_est2timeout(at_get(&svcpt->scp_at_estimate)),
1896                    ldlm_timeout);
1897 }
1898
1899 static void ost_prolong_lock_one(struct ost_prolong_data *opd,
1900                                  struct ldlm_lock *lock)
1901 {
1902         LASSERT(lock->l_export == opd->opd_exp);
1903
1904         if (lock->l_flags & LDLM_FL_DESTROYED) /* lock already cancelled */
1905                 return;
1906
1907         /* XXX: never try to grab resource lock here because we're inside
1908          * exp_bl_list_lock; in ldlm_lockd.c to handle waiting list we take
1909          * res lock and then exp_bl_list_lock. */
1910
1911         if (!(lock->l_flags & LDLM_FL_AST_SENT))
1912                 /* ignore locks not being cancelled */
1913                 return;
1914
1915         LDLM_DEBUG(lock,
1916                    "refreshed for req x"LPU64" ext("LPU64"->"LPU64") to %ds.\n",
1917                    opd->opd_req->rq_xid, opd->opd_extent.start,
1918                    opd->opd_extent.end, opd->opd_timeout);
1919
1920         /* OK. this is a possible lock the user holds doing I/O
1921          * let's refresh eviction timer for it */
1922         ldlm_refresh_waiting_lock(lock, opd->opd_timeout);
1923         ++opd->opd_locks;
1924 }
1925
1926 static void ost_prolong_locks(struct ost_prolong_data *data)
1927 {
1928         struct obd_export *exp = data->opd_exp;
1929         struct obdo       *oa  = data->opd_oa;
1930         struct ldlm_lock  *lock;
1931         ENTRY;
1932
1933         if (oa->o_valid & OBD_MD_FLHANDLE) {
1934                 /* mostly a request should be covered by only one lock, try
1935                  * fast path. */
1936                 lock = ldlm_handle2lock(&oa->o_handle);
1937                 if (lock != NULL) {
1938                         /* Fast path to check if the lock covers the whole IO
1939                          * region exclusively. */
1940                         if (lock->l_granted_mode == LCK_PW &&
1941                             ldlm_extent_contain(&lock->l_policy_data.l_extent,
1942                                                 &data->opd_extent)) {
1943                                 /* bingo */
1944                                 ost_prolong_lock_one(data, lock);
1945                                 LDLM_LOCK_PUT(lock);
1946                                 RETURN_EXIT;
1947                         }
1948                         LDLM_LOCK_PUT(lock);
1949                 }
1950         }
1951
1952
1953         spin_lock_bh(&exp->exp_bl_list_lock);
1954         cfs_list_for_each_entry(lock, &exp->exp_bl_list, l_exp_list) {
1955                 LASSERT(lock->l_flags & LDLM_FL_AST_SENT);
1956                 LASSERT(lock->l_resource->lr_type == LDLM_EXTENT);
1957
1958                 if (!ldlm_res_eq(&data->opd_resid, &lock->l_resource->lr_name))
1959                         continue;
1960
1961                 if (!ldlm_extent_overlap(&lock->l_policy_data.l_extent,
1962                                          &data->opd_extent))
1963                         continue;
1964
1965                 ost_prolong_lock_one(data, lock);
1966         }
1967         spin_unlock_bh(&exp->exp_bl_list_lock);
1968
1969         EXIT;
1970 }
1971
1972 /**
1973  * Returns 1 if the given PTLRPC matches the given LDLM locks, or 0 if it does
1974  * not.
1975  */
1976 static int ost_rw_hpreq_lock_match(struct ptlrpc_request *req,
1977                                    struct ldlm_lock *lock)
1978 {
1979         struct niobuf_remote *nb;
1980         struct obd_ioobj *ioo;
1981         int mode, opc;
1982         struct ldlm_extent ext;
1983         ENTRY;
1984
1985         opc = lustre_msg_get_opc(req->rq_reqmsg);
1986         LASSERT(opc == OST_READ || opc == OST_WRITE);
1987
1988         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
1989         LASSERT(ioo != NULL);
1990
1991         nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
1992         LASSERT(nb != NULL);
1993
1994         ext.start = nb->offset;
1995         nb += ioo->ioo_bufcnt - 1;
1996         ext.end = nb->offset + nb->len - 1;
1997
1998         LASSERT(lock->l_resource != NULL);
1999         if (!ostid_res_name_eq(&ioo->ioo_oid, &lock->l_resource->lr_name))
2000                 RETURN(0);
2001
2002         mode = LCK_PW;
2003         if (opc == OST_READ)
2004                 mode |= LCK_PR;
2005         if (!(lock->l_granted_mode & mode))
2006                 RETURN(0);
2007
2008         RETURN(ldlm_extent_overlap(&lock->l_policy_data.l_extent, &ext));
2009 }
2010
2011 /**
2012  * High-priority queue request check for whether the given PTLRPC request (\a
2013  * req) is blocking an LDLM lock cancel.
2014  *
2015  * Returns 1 if the given given PTLRPC request (\a req) is blocking an LDLM lock
2016  * cancel, 0 if it is not, and -EFAULT if the request is malformed.
2017  *
2018  * Only OST_READs, OST_WRITEs and OST_PUNCHes go on the h-p RPC queue.  This
2019  * function looks only at OST_READs and OST_WRITEs.
2020  */
2021 static int ost_rw_hpreq_check(struct ptlrpc_request *req)
2022 {
2023         struct obd_device *obd = req->rq_export->exp_obd;
2024         struct ost_body *body;
2025         struct obd_ioobj *ioo;
2026         struct niobuf_remote *nb;
2027         struct ost_prolong_data opd = { 0 };
2028         int mode, opc;
2029         ENTRY;
2030
2031         /*
2032          * Use LASSERT to do sanity check because malformed RPCs should have
2033          * been filtered out in ost_hpreq_handler().
2034          */
2035         opc = lustre_msg_get_opc(req->rq_reqmsg);
2036         LASSERT(opc == OST_READ || opc == OST_WRITE);
2037
2038         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
2039         LASSERT(body != NULL);
2040
2041         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
2042         LASSERT(ioo != NULL);
2043
2044         nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
2045         LASSERT(nb != NULL);
2046         LASSERT(!(nb->flags & OBD_BRW_SRVLOCK));
2047
2048         ostid_build_res_name(&ioo->ioo_oid, &opd.opd_resid);
2049
2050         opd.opd_req = req;
2051         mode = LCK_PW;
2052         if (opc == OST_READ)
2053                 mode |= LCK_PR;
2054         opd.opd_mode = mode;
2055         opd.opd_exp = req->rq_export;
2056         opd.opd_oa  = &body->oa;
2057         opd.opd_extent.start = nb->offset;
2058         nb += ioo->ioo_bufcnt - 1;
2059         opd.opd_extent.end = nb->offset + nb->len - 1;
2060         opd.opd_timeout = prolong_timeout(req);
2061
2062         DEBUG_REQ(D_RPCTRACE, req,
2063                "%s %s: refresh rw locks: " LPU64"/"LPU64" ("LPU64"->"LPU64")\n",
2064                obd->obd_name, cfs_current()->comm,
2065                opd.opd_resid.name[0], opd.opd_resid.name[1],
2066                opd.opd_extent.start, opd.opd_extent.end);
2067
2068         ost_prolong_locks(&opd);
2069
2070         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p.\n",
2071                obd->obd_name, opd.opd_locks, req);
2072
2073         RETURN(opd.opd_locks > 0);
2074 }
2075
2076 static void ost_rw_hpreq_fini(struct ptlrpc_request *req)
2077 {
2078         (void)ost_rw_hpreq_check(req);
2079 }
2080
2081 /**
2082  * Like ost_rw_hpreq_lock_match(), but for OST_PUNCH RPCs.
2083  */
2084 static int ost_punch_hpreq_lock_match(struct ptlrpc_request *req,
2085                                       struct ldlm_lock *lock)
2086 {
2087         struct ost_body *body;
2088         ENTRY;
2089
2090         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
2091         LASSERT(body != NULL);
2092
2093         if (body->oa.o_valid & OBD_MD_FLHANDLE &&
2094             body->oa.o_handle.cookie == lock->l_handle.h_cookie)
2095                 RETURN(1);
2096
2097         RETURN(0);
2098 }
2099
2100 /**
2101  * Like ost_rw_hpreq_check(), but for OST_PUNCH RPCs.
2102  */
2103 static int ost_punch_hpreq_check(struct ptlrpc_request *req)
2104 {
2105         struct obd_device *obd = req->rq_export->exp_obd;
2106         struct ost_body *body;
2107         struct obdo *oa;
2108         struct ost_prolong_data opd = { 0 };
2109         __u64 start, end;
2110         ENTRY;
2111
2112         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
2113         LASSERT(body != NULL);
2114
2115         oa = &body->oa;
2116         LASSERT(!(oa->o_valid & OBD_MD_FLFLAGS) ||
2117                 !(oa->o_flags & OBD_FL_SRVLOCK));
2118
2119         start = oa->o_size;
2120         end = start + oa->o_blocks;
2121
2122         opd.opd_req = req;
2123         opd.opd_mode = LCK_PW;
2124         opd.opd_exp = req->rq_export;
2125         opd.opd_oa  = oa;
2126         opd.opd_extent.start = start;
2127         opd.opd_extent.end   = end;
2128         if (oa->o_blocks == OBD_OBJECT_EOF)
2129                 opd.opd_extent.end = OBD_OBJECT_EOF;
2130         opd.opd_timeout = prolong_timeout(req);
2131
2132         ostid_build_res_name(&oa->o_oi, &opd.opd_resid);
2133
2134         CDEBUG(D_DLMTRACE,
2135                "%s: refresh locks: "LPU64"/"LPU64" ("LPU64"->"LPU64")\n",
2136                obd->obd_name,
2137                opd.opd_resid.name[0], opd.opd_resid.name[1],
2138                opd.opd_extent.start, opd.opd_extent.end);
2139
2140         ost_prolong_locks(&opd);
2141
2142         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p.\n",
2143                obd->obd_name, opd.opd_locks, req);
2144
2145         RETURN(opd.opd_locks > 0);
2146 }
2147
2148 static void ost_punch_hpreq_fini(struct ptlrpc_request *req)
2149 {
2150         (void)ost_punch_hpreq_check(req);
2151 }
2152
2153 struct ptlrpc_hpreq_ops ost_hpreq_rw = {
2154         .hpreq_lock_match = ost_rw_hpreq_lock_match,
2155         .hpreq_check      = ost_rw_hpreq_check,
2156         .hpreq_fini       = ost_rw_hpreq_fini
2157 };
2158
2159 struct ptlrpc_hpreq_ops ost_hpreq_punch = {
2160         .hpreq_lock_match = ost_punch_hpreq_lock_match,
2161         .hpreq_check      = ost_punch_hpreq_check,
2162         .hpreq_fini       = ost_punch_hpreq_fini
2163 };
2164
2165 /** Assign high priority operations to the request if needed. */
2166 static int ost_io_hpreq_handler(struct ptlrpc_request *req)
2167 {
2168         ENTRY;
2169         if (req->rq_export) {
2170                 int opc = lustre_msg_get_opc(req->rq_reqmsg);
2171                 struct ost_body *body;
2172
2173                 if (opc == OST_READ || opc == OST_WRITE) {
2174                         struct niobuf_remote *nb;
2175                         struct obd_ioobj *ioo;
2176                         int objcount, niocount;
2177                         int rc;
2178                         int i;
2179
2180                         /* RPCs on the H-P queue can be inspected before
2181                          * ost_handler() initializes their pills, so we
2182                          * initialize that here.  Capsule initialization is
2183                          * idempotent, as is setting the pill's format (provided
2184                          * it doesn't change).
2185                          */
2186                         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2187                         if (opc == OST_READ)
2188                                 req_capsule_set(&req->rq_pill,
2189                                                 &RQF_OST_BRW_READ);
2190                         else
2191                                 req_capsule_set(&req->rq_pill,
2192                                                 &RQF_OST_BRW_WRITE);
2193
2194                         body = req_capsule_client_get(&req->rq_pill,
2195                                                       &RMF_OST_BODY);
2196                         if (body == NULL) {
2197                                 CERROR("Missing/short ost_body\n");
2198                                 RETURN(-EFAULT);
2199                         }
2200
2201                         objcount = req_capsule_get_size(&req->rq_pill,
2202                                                         &RMF_OBD_IOOBJ,
2203                                                         RCL_CLIENT) /
2204                                                         sizeof(*ioo);
2205                         if (objcount == 0) {
2206                                 CERROR("Missing/short ioobj\n");
2207                                 RETURN(-EFAULT);
2208                         }
2209                         if (objcount > 1) {
2210                                 CERROR("too many ioobjs (%d)\n", objcount);
2211                                 RETURN(-EFAULT);
2212                         }
2213
2214                         ioo = req_capsule_client_get(&req->rq_pill,
2215                                                      &RMF_OBD_IOOBJ);
2216                         if (ioo == NULL) {
2217                                 CERROR("Missing/short ioobj\n");
2218                                 RETURN(-EFAULT);
2219                         }
2220
2221                         rc = ost_validate_obdo(req->rq_export, &body->oa, ioo);
2222                         if (rc) {
2223                                 CERROR("invalid object ids\n");
2224                                 RETURN(rc);
2225                         }
2226
2227                         for (niocount = i = 0; i < objcount; i++) {
2228                                 if (ioo[i].ioo_bufcnt == 0) {
2229                                         CERROR("ioo[%d] has zero bufcnt\n", i);
2230                                         RETURN(-EFAULT);
2231                                 }
2232                                 niocount += ioo[i].ioo_bufcnt;
2233                         }
2234                         if (niocount > PTLRPC_MAX_BRW_PAGES) {
2235                                 DEBUG_REQ(D_RPCTRACE, req,
2236                                           "bulk has too many pages (%d)",
2237                                           niocount);
2238                                 RETURN(-EFAULT);
2239                         }
2240
2241                         nb = req_capsule_client_get(&req->rq_pill,
2242                                                     &RMF_NIOBUF_REMOTE);
2243                         if (nb == NULL) {
2244                                 CERROR("Missing/short niobuf\n");
2245                                 RETURN(-EFAULT);
2246                         }
2247
2248                         if (niocount == 0 || !(nb[0].flags & OBD_BRW_SRVLOCK))
2249                                 req->rq_ops = &ost_hpreq_rw;
2250                 } else if (opc == OST_PUNCH) {
2251                         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2252                         req_capsule_set(&req->rq_pill, &RQF_OST_PUNCH);
2253
2254                         body = req_capsule_client_get(&req->rq_pill,
2255                                                       &RMF_OST_BODY);
2256                         if (body == NULL) {
2257                                 CERROR("Missing/short ost_body\n");
2258                                 RETURN(-EFAULT);
2259                         }
2260
2261                         if (!(body->oa.o_valid & OBD_MD_FLFLAGS) ||
2262                             !(body->oa.o_flags & OBD_FL_SRVLOCK))
2263                                 req->rq_ops = &ost_hpreq_punch;
2264                 }
2265         }
2266         RETURN(0);
2267 }
2268
2269 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
2270 int ost_handle(struct ptlrpc_request *req)
2271 {
2272         struct obd_trans_info trans_info = { 0, };
2273         struct obd_trans_info *oti = &trans_info;
2274         int should_process, fail = OBD_FAIL_OST_ALL_REPLY_NET, rc = 0;
2275         struct obd_device *obd = NULL;
2276         __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
2277         ENTRY;
2278
2279         /* OST module is kept between remounts, but the last reference
2280          * to specific module (say, osd or ofd) kills all related keys
2281          * from the environment. so we have to refill it until the root
2282          * cause is fixed properly */
2283         lu_env_refill(req->rq_svc_thread->t_env);
2284
2285         LASSERT(current->journal_info == NULL);
2286
2287         /* primordial rpcs don't affect server recovery */
2288         switch (opc) {
2289         case SEC_CTX_INIT:
2290         case SEC_CTX_INIT_CONT:
2291         case SEC_CTX_FINI:
2292                 GOTO(out, rc = 0);
2293         }
2294
2295         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2296
2297         if (opc != OST_CONNECT) {
2298                 if (!class_connected_export(req->rq_export)) {
2299                         CDEBUG(D_HA,"operation %d on unconnected OST from %s\n",
2300                                opc, libcfs_id2str(req->rq_peer));
2301                         req->rq_status = -ENOTCONN;
2302                         GOTO(out, rc = -ENOTCONN);
2303                 }
2304
2305                 obd = req->rq_export->exp_obd;
2306
2307                 /* Check for aborted recovery. */
2308                 if (obd->obd_recovering) {
2309                         rc = ost_filter_recovery_request(req, obd,
2310                                                          &should_process);
2311                         if (rc || !should_process)
2312                                 RETURN(rc);
2313                         else if (should_process < 0) {
2314                                 req->rq_status = should_process;
2315                                 rc = ptlrpc_error(req);
2316                                 RETURN(rc);
2317                         }
2318                 }
2319         }
2320
2321         oti_init(oti, req);
2322
2323         rc = ost_msg_check_version(req->rq_reqmsg);
2324         if (rc)
2325                 RETURN(rc);
2326
2327         if (req && req->rq_reqmsg && req->rq_export &&
2328             (exp_connect_flags(req->rq_export) & OBD_CONNECT_JOBSTATS))
2329                 oti->oti_jobid = lustre_msg_get_jobid(req->rq_reqmsg);
2330
2331         switch (opc) {
2332         case OST_CONNECT: {
2333                 CDEBUG(D_INODE, "connect\n");
2334                 req_capsule_set(&req->rq_pill, &RQF_OST_CONNECT);
2335                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_CONNECT_NET))
2336                         RETURN(0);
2337                 rc = target_handle_connect(req);
2338                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_CONNECT_NET2))
2339                         RETURN(0);
2340                 if (!rc) {
2341                         rc = ost_init_sec_level(req);
2342                         if (!rc)
2343                                 rc = ost_connect_check_sptlrpc(req);
2344                 }
2345                 break;
2346         }
2347         case OST_DISCONNECT:
2348                 CDEBUG(D_INODE, "disconnect\n");
2349                 req_capsule_set(&req->rq_pill, &RQF_OST_DISCONNECT);
2350                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_DISCONNECT_NET))
2351                         RETURN(0);
2352                 rc = target_handle_disconnect(req);
2353                 break;
2354         case OST_CREATE:
2355                 CDEBUG(D_INODE, "create\n");
2356                 req_capsule_set(&req->rq_pill, &RQF_OST_CREATE);
2357                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_CREATE_NET))
2358                         RETURN(0);
2359                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
2360                         GOTO(out, rc = -EROFS);
2361                 rc = ost_create(req->rq_export, req, oti);
2362                 break;
2363         case OST_DESTROY:
2364                 CDEBUG(D_INODE, "destroy\n");
2365                 req_capsule_set(&req->rq_pill, &RQF_OST_DESTROY);
2366                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_DESTROY_NET))
2367                         RETURN(0);
2368                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
2369                         GOTO(out, rc = -EROFS);
2370                 rc = ost_destroy(req->rq_export, req, oti);
2371                 break;
2372         case OST_GETATTR:
2373                 CDEBUG(D_INODE, "getattr\n");
2374                 req_capsule_set(&req->rq_pill, &RQF_OST_GETATTR);
2375                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_GETATTR_NET))
2376                         RETURN(0);
2377                 rc = ost_getattr(req->rq_export, req);
2378                 break;
2379         case OST_SETATTR:
2380                 CDEBUG(D_INODE, "setattr\n");
2381                 req_capsule_set(&req->rq_pill, &RQF_OST_SETATTR);
2382                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_SETATTR_NET))
2383                         RETURN(0);
2384                 rc = ost_setattr(req->rq_export, req, oti);
2385                 break;
2386         case OST_WRITE:
2387                 req_capsule_set(&req->rq_pill, &RQF_OST_BRW_WRITE);
2388                 CDEBUG(D_INODE, "write\n");
2389                 /* req->rq_request_portal would be nice, if it was set */
2390                 if (ptlrpc_req2svc(req)->srv_req_portal != OST_IO_PORTAL) {
2391                         CERROR("%s: deny write request from %s to portal %u\n",
2392                                req->rq_export->exp_obd->obd_name,
2393                                obd_export_nid2str(req->rq_export),
2394                                ptlrpc_req2svc(req)->srv_req_portal);
2395                         GOTO(out, rc = -EPROTO);
2396                 }
2397                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_NET))
2398                         RETURN(0);
2399                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOSPC))
2400                         GOTO(out, rc = -ENOSPC);
2401                 if (OBD_FAIL_TIMEOUT(OBD_FAIL_OST_EROFS, 1))
2402                         GOTO(out, rc = -EROFS);
2403                 rc = ost_brw_write(req, oti);
2404                 LASSERT(current->journal_info == NULL);
2405                 /* ost_brw_write sends its own replies */
2406                 RETURN(rc);
2407         case OST_READ:
2408                 req_capsule_set(&req->rq_pill, &RQF_OST_BRW_READ);
2409                 CDEBUG(D_INODE, "read\n");
2410                 /* req->rq_request_portal would be nice, if it was set */
2411                 if (ptlrpc_req2svc(req)->srv_req_portal != OST_IO_PORTAL) {
2412                         CERROR("%s: deny read request from %s to portal %u\n",
2413                                req->rq_export->exp_obd->obd_name,
2414                                obd_export_nid2str(req->rq_export),
2415                                ptlrpc_req2svc(req)->srv_req_portal);
2416                         GOTO(out, rc = -EPROTO);
2417                 }
2418                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_NET))
2419                         RETURN(0);
2420                 rc = ost_brw_read(req, oti);
2421                 LASSERT(current->journal_info == NULL);
2422                 /* ost_brw_read sends its own replies */
2423                 RETURN(rc);
2424         case OST_PUNCH:
2425                 CDEBUG(D_INODE, "punch\n");
2426                 req_capsule_set(&req->rq_pill, &RQF_OST_PUNCH);
2427                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_PUNCH_NET))
2428                         RETURN(0);
2429                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
2430                         GOTO(out, rc = -EROFS);
2431                 rc = ost_punch(req->rq_export, req, oti);
2432                 break;
2433         case OST_STATFS:
2434                 CDEBUG(D_INODE, "statfs\n");
2435                 req_capsule_set(&req->rq_pill, &RQF_OST_STATFS);
2436                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_STATFS_NET))
2437                         RETURN(0);
2438                 rc = ost_statfs(req);
2439                 break;
2440         case OST_SYNC:
2441                 CDEBUG(D_INODE, "sync\n");
2442                 req_capsule_set(&req->rq_pill, &RQF_OST_SYNC);
2443                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_SYNC_NET))
2444                         RETURN(0);
2445                 rc = ost_sync(req->rq_export, req, oti);
2446                 break;
2447         case OST_SET_INFO:
2448                 DEBUG_REQ(D_INODE, req, "set_info");
2449                 req_capsule_set(&req->rq_pill, &RQF_OBD_SET_INFO);
2450                 rc = ost_set_info(req->rq_export, req);
2451                 break;
2452         case OST_GET_INFO:
2453                 DEBUG_REQ(D_INODE, req, "get_info");
2454                 req_capsule_set(&req->rq_pill, &RQF_OST_GET_INFO_GENERIC);
2455                 rc = ost_get_info(req->rq_export, req);
2456                 break;
2457         case OST_QUOTACHECK:
2458                 CDEBUG(D_INODE, "quotacheck\n");
2459                 req_capsule_set(&req->rq_pill, &RQF_OST_QUOTACHECK);
2460                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_QUOTACHECK_NET))
2461                         RETURN(0);
2462                 rc = ost_handle_quotacheck(req);
2463                 break;
2464         case OST_QUOTACTL:
2465                 CDEBUG(D_INODE, "quotactl\n");
2466                 req_capsule_set(&req->rq_pill, &RQF_OST_QUOTACTL);
2467                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_QUOTACTL_NET))
2468                         RETURN(0);
2469                 rc = ost_handle_quotactl(req);
2470                 break;
2471         case OBD_PING:
2472                 DEBUG_REQ(D_INODE, req, "ping");
2473                 req_capsule_set(&req->rq_pill, &RQF_OBD_PING);
2474                 rc = target_handle_ping(req);
2475                 break;
2476         /* FIXME - just reply status */
2477         case LLOG_ORIGIN_CONNECT:
2478                 DEBUG_REQ(D_INODE, req, "log connect");
2479                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_CONNECT);
2480                 rc = ost_llog_handle_connect(req->rq_export, req);
2481                 req->rq_status = rc;
2482                 rc = req_capsule_server_pack(&req->rq_pill);
2483                 if (rc)
2484                         RETURN(rc);
2485                 RETURN(ptlrpc_reply(req));
2486         case LDLM_ENQUEUE:
2487                 CDEBUG(D_INODE, "enqueue\n");
2488                 req_capsule_set(&req->rq_pill, &RQF_LDLM_ENQUEUE);
2489                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_NET))
2490                         RETURN(0);
2491                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
2492                                          ost_blocking_ast,
2493                                          ldlm_server_glimpse_ast);
2494                 fail = OBD_FAIL_OST_LDLM_REPLY_NET;
2495                 break;
2496         case LDLM_CONVERT:
2497                 CDEBUG(D_INODE, "convert\n");
2498                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CONVERT);
2499                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CONVERT_NET))
2500                         RETURN(0);
2501                 rc = ldlm_handle_convert(req);
2502                 break;
2503         case LDLM_CANCEL:
2504                 CDEBUG(D_INODE, "cancel\n");
2505                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2506                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_NET))
2507                         RETURN(0);
2508                 rc = ldlm_handle_cancel(req);
2509                 break;
2510         case LDLM_BL_CALLBACK:
2511         case LDLM_CP_CALLBACK:
2512                 CDEBUG(D_INODE, "callback\n");
2513                 CERROR("callbacks should not happen on OST\n");
2514                 /* fall through */
2515         default:
2516                 CERROR("Unexpected opcode %d\n", opc);
2517                 req->rq_status = -ENOTSUPP;
2518                 rc = ptlrpc_error(req);
2519                 RETURN(rc);
2520         }
2521
2522         LASSERT(current->journal_info == NULL);
2523
2524         EXIT;
2525         /* If we're DISCONNECTing, the export_data is already freed */
2526         if (!rc && opc != OST_DISCONNECT)
2527                 target_committed_to_req(req);
2528
2529 out:
2530         if (!rc)
2531                 oti_to_request(oti, req);
2532
2533         target_send_reply(req, rc, fail);
2534         return 0;
2535 }
2536 EXPORT_SYMBOL(ost_handle);
2537
2538 /*
2539  * free per-thread pool created by ost_io_thread_init().
2540  */
2541 static void ost_io_thread_done(struct ptlrpc_thread *thread)
2542 {
2543         struct ost_thread_local_cache *tls; /* TLS stands for Thread-Local
2544                                              * Storage */
2545
2546         ENTRY;
2547
2548         LASSERT(thread != NULL);
2549
2550         /*
2551          * be prepared to handle partially-initialized pools (because this is
2552          * called from ost_io_thread_init() for cleanup.
2553          */
2554         tls = thread->t_data;
2555         if (tls != NULL) {
2556                 OBD_FREE_PTR(tls);
2557                 thread->t_data = NULL;
2558         }
2559         EXIT;
2560 }
2561
2562 /*
2563  * initialize per-thread page pool (bug 5137).
2564  */
2565 static int ost_io_thread_init(struct ptlrpc_thread *thread)
2566 {
2567         struct ost_thread_local_cache *tls;
2568
2569         ENTRY;
2570
2571         LASSERT(thread != NULL);
2572         LASSERT(thread->t_data == NULL);
2573
2574         OBD_ALLOC_PTR(tls);
2575         if (tls == NULL)
2576                 RETURN(-ENOMEM);
2577         thread->t_data = tls;
2578         RETURN(0);
2579 }
2580
2581 #define OST_WATCHDOG_TIMEOUT (obd_timeout * 1000)
2582
2583 static struct cfs_cpt_table     *ost_io_cptable;
2584
2585 /* Sigh - really, this is an OSS, the _server_, not the _target_ */
2586 static int ost_setup(struct obd_device *obd, struct lustre_cfg* lcfg)
2587 {
2588         static struct ptlrpc_service_conf       svc_conf;
2589         struct ost_obd *ost = &obd->u.ost;
2590         struct lprocfs_static_vars lvars;
2591         nodemask_t              *mask;
2592         int rc;
2593         ENTRY;
2594
2595         rc = cfs_cleanup_group_info();
2596         if (rc)
2597                 RETURN(rc);
2598
2599         lprocfs_ost_init_vars(&lvars);
2600         lprocfs_obd_setup(obd, lvars.obd_vars);
2601
2602         mutex_init(&ost->ost_health_mutex);
2603
2604         svc_conf = (typeof(svc_conf)) {
2605                 .psc_name               = LUSTRE_OSS_NAME,
2606                 .psc_watchdog_factor    = OSS_SERVICE_WATCHDOG_FACTOR,
2607                 .psc_buf                = {
2608                         .bc_nbufs               = OST_NBUFS,
2609                         .bc_buf_size            = OST_BUFSIZE,
2610                         .bc_req_max_size        = OST_MAXREQSIZE,
2611                         .bc_rep_max_size        = OST_MAXREPSIZE,
2612                         .bc_req_portal          = OST_REQUEST_PORTAL,
2613                         .bc_rep_portal          = OSC_REPLY_PORTAL,
2614                 },
2615                 .psc_thr                = {
2616                         .tc_thr_name            = "ll_ost",
2617                         .tc_thr_factor          = OSS_THR_FACTOR,
2618                         .tc_nthrs_init          = OSS_NTHRS_INIT,
2619                         .tc_nthrs_base          = OSS_NTHRS_BASE,
2620                         .tc_nthrs_max           = OSS_NTHRS_MAX,
2621                         .tc_nthrs_user          = oss_num_threads,
2622                         .tc_cpu_affinity        = 1,
2623                         .tc_ctx_tags            = LCT_DT_THREAD,
2624                 },
2625                 .psc_cpt                = {
2626                         .cc_pattern             = oss_cpts,
2627                 },
2628                 .psc_ops                = {
2629                         .so_req_handler         = ost_handle,
2630                         .so_req_printer         = target_print_req,
2631                         .so_hpreq_handler       = ptlrpc_hpreq_handler,
2632                 },
2633         };
2634         ost->ost_service = ptlrpc_register_service(&svc_conf,
2635                                                    obd->obd_proc_entry);
2636         if (IS_ERR(ost->ost_service)) {
2637                 rc = PTR_ERR(ost->ost_service);
2638                 CERROR("failed to start service: %d\n", rc);
2639                 GOTO(out_lprocfs, rc);
2640         }
2641
2642         memset(&svc_conf, 0, sizeof(svc_conf));
2643         svc_conf = (typeof(svc_conf)) {
2644                 .psc_name               = "ost_create",
2645                 .psc_watchdog_factor    = OSS_SERVICE_WATCHDOG_FACTOR,
2646                 .psc_buf                = {
2647                         .bc_nbufs               = OST_NBUFS,
2648                         .bc_buf_size            = OST_BUFSIZE,
2649                         .bc_req_max_size        = OST_MAXREQSIZE,
2650                         .bc_rep_max_size        = OST_MAXREPSIZE,
2651                         .bc_req_portal          = OST_CREATE_PORTAL,
2652                         .bc_rep_portal          = OSC_REPLY_PORTAL,
2653                 },
2654                 .psc_thr                = {
2655                         .tc_thr_name            = "ll_ost_create",
2656                         .tc_thr_factor          = OSS_CR_THR_FACTOR,
2657                         .tc_nthrs_init          = OSS_CR_NTHRS_INIT,
2658                         .tc_nthrs_base          = OSS_CR_NTHRS_BASE,
2659                         .tc_nthrs_max           = OSS_CR_NTHRS_MAX,
2660                         .tc_nthrs_user          = oss_num_create_threads,
2661                         .tc_cpu_affinity        = 1,
2662                         .tc_ctx_tags            = LCT_DT_THREAD,
2663                 },
2664                 .psc_cpt                = {
2665                         .cc_pattern             = oss_cpts,
2666                 },
2667                 .psc_ops                = {
2668                         .so_req_handler         = ost_handle,
2669                         .so_req_printer         = target_print_req,
2670                 },
2671         };
2672         ost->ost_create_service = ptlrpc_register_service(&svc_conf,
2673                                                           obd->obd_proc_entry);
2674         if (IS_ERR(ost->ost_create_service)) {
2675                 rc = PTR_ERR(ost->ost_create_service);
2676                 CERROR("failed to start OST create service: %d\n", rc);
2677                 GOTO(out_service, rc);
2678         }
2679
2680         mask = cfs_cpt_table->ctb_nodemask;
2681         /* event CPT feature is disabled in libcfs level by set partition
2682          * number to 1, we still want to set node affinity for io service */
2683         if (cfs_cpt_number(cfs_cpt_table) == 1 && nodes_weight(*mask) > 1) {
2684                 int     cpt = 0;
2685                 int     i;
2686
2687                 ost_io_cptable = cfs_cpt_table_alloc(nodes_weight(*mask));
2688                 for_each_node_mask(i, *mask) {
2689                         if (ost_io_cptable == NULL) {
2690                                 CWARN("OSS failed to create CPT table\n");
2691                                 break;
2692                         }
2693
2694                         rc = cfs_cpt_set_node(ost_io_cptable, cpt++, i);
2695                         if (!rc) {
2696                                 CWARN("OSS Failed to set node %d for"
2697                                       "IO CPT table\n", i);
2698                                 cfs_cpt_table_free(ost_io_cptable);
2699                                 ost_io_cptable = NULL;
2700                                 break;
2701                         }
2702                 }
2703         }
2704
2705         memset(&svc_conf, 0, sizeof(svc_conf));
2706         svc_conf = (typeof(svc_conf)) {
2707                 .psc_name               = "ost_io",
2708                 .psc_watchdog_factor    = OSS_SERVICE_WATCHDOG_FACTOR,
2709                 .psc_buf                = {
2710                         .bc_nbufs               = OST_NBUFS,
2711                         .bc_buf_size            = OST_IO_BUFSIZE,
2712                         .bc_req_max_size        = OST_IO_MAXREQSIZE,
2713                         .bc_rep_max_size        = OST_IO_MAXREPSIZE,
2714                         .bc_req_portal          = OST_IO_PORTAL,
2715                         .bc_rep_portal          = OSC_REPLY_PORTAL,
2716                 },
2717                 .psc_thr                = {
2718                         .tc_thr_name            = "ll_ost_io",
2719                         .tc_thr_factor          = OSS_THR_FACTOR,
2720                         .tc_nthrs_init          = OSS_NTHRS_INIT,
2721                         .tc_nthrs_base          = OSS_NTHRS_BASE,
2722                         .tc_nthrs_max           = OSS_NTHRS_MAX,
2723                         .tc_nthrs_user          = oss_num_threads,
2724                         .tc_cpu_affinity        = 1,
2725                         .tc_ctx_tags            = LCT_DT_THREAD,
2726                 },
2727                 .psc_cpt                = {
2728                         .cc_cptable             = ost_io_cptable,
2729                         .cc_pattern             = ost_io_cptable == NULL ?
2730                                                   oss_io_cpts : NULL,
2731                 },
2732                 .psc_ops                = {
2733                         .so_thr_init            = ost_io_thread_init,
2734                         .so_thr_done            = ost_io_thread_done,
2735                         .so_req_handler         = ost_handle,
2736                         .so_hpreq_handler       = ost_io_hpreq_handler,
2737                         .so_req_printer         = target_print_req,
2738                 },
2739         };
2740         ost->ost_io_service = ptlrpc_register_service(&svc_conf,
2741                                                       obd->obd_proc_entry);
2742         if (IS_ERR(ost->ost_io_service)) {
2743                 rc = PTR_ERR(ost->ost_io_service);
2744                 CERROR("failed to start OST I/O service: %d\n", rc);
2745                 ost->ost_io_service = NULL;
2746                 GOTO(out_create, rc);
2747         }
2748
2749         memset(&svc_conf, 0, sizeof(svc_conf));
2750         svc_conf = (typeof(svc_conf)) {
2751                 .psc_name               = "ost_seq",
2752                 .psc_watchdog_factor    = OSS_SERVICE_WATCHDOG_FACTOR,
2753                 .psc_buf                = {
2754                         .bc_nbufs               = OST_NBUFS,
2755                         .bc_buf_size            = OST_BUFSIZE,
2756                         .bc_req_max_size        = OST_MAXREQSIZE,
2757                         .bc_rep_max_size        = OST_MAXREPSIZE,
2758                         .bc_req_portal          = SEQ_DATA_PORTAL,
2759                         .bc_rep_portal          = OSC_REPLY_PORTAL,
2760                 },
2761                 .psc_thr                = {
2762                         .tc_thr_name            = "ll_ost_seq",
2763                         .tc_thr_factor          = OSS_CR_THR_FACTOR,
2764                         .tc_nthrs_init          = OSS_CR_NTHRS_INIT,
2765                         .tc_nthrs_base          = OSS_CR_NTHRS_BASE,
2766                         .tc_nthrs_max           = OSS_CR_NTHRS_MAX,
2767                         .tc_nthrs_user          = oss_num_create_threads,
2768                         .tc_cpu_affinity        = 1,
2769                         .tc_ctx_tags            = LCT_DT_THREAD,
2770                 },
2771
2772                 .psc_cpt                = {
2773                         .cc_pattern          = oss_cpts,
2774                 },
2775                 .psc_ops                = {
2776                         .so_req_handler         = tgt_request_handle,
2777                         .so_req_printer         = target_print_req,
2778                         .so_hpreq_handler       = NULL,
2779                 },
2780         };
2781         ost->ost_seq_service = ptlrpc_register_service(&svc_conf,
2782                                                       obd->obd_proc_entry);
2783         if (IS_ERR(ost->ost_seq_service)) {
2784                 rc = PTR_ERR(ost->ost_seq_service);
2785                 CERROR("failed to start OST seq service: %d\n", rc);
2786                 ost->ost_seq_service = NULL;
2787                 GOTO(out_io, rc);
2788         }
2789
2790 #if 0
2791         /* Object update service */
2792         memset(&svc_conf, 0, sizeof(svc_conf));
2793         svc_conf = (typeof(svc_conf)) {
2794                 .psc_name               = "ost_out",
2795                 .psc_watchdog_factor    = OSS_SERVICE_WATCHDOG_FACTOR,
2796                 .psc_buf                = {
2797                         .bc_nbufs               = OST_NBUFS,
2798                         .bc_buf_size            = OUT_BUFSIZE,
2799                         .bc_req_max_size        = OUT_MAXREQSIZE,
2800                         .bc_rep_max_size        = OUT_MAXREPSIZE,
2801                         .bc_req_portal          = OUT_PORTAL,
2802                         .bc_rep_portal          = OSC_REPLY_PORTAL,
2803                 },
2804                 /*
2805                  * We'd like to have a mechanism to set this on a per-device
2806                  * basis, but alas...
2807                  */
2808                 .psc_thr                = {
2809                         .tc_thr_name            = "ll_ost_out",
2810                         .tc_thr_factor          = OSS_CR_THR_FACTOR,
2811                         .tc_nthrs_init          = OSS_CR_NTHRS_INIT,
2812                         .tc_nthrs_base          = OSS_CR_NTHRS_BASE,
2813                         .tc_nthrs_max           = OSS_CR_NTHRS_MAX,
2814                         .tc_nthrs_user          = oss_num_create_threads,
2815                         .tc_cpu_affinity        = 1,
2816                         .tc_ctx_tags            = LCT_DT_THREAD,
2817                 },
2818                 .psc_cpt                = {
2819                         .cc_pattern             = oss_cpts,
2820                 },
2821                 .psc_ops                = {
2822                         .so_req_handler         = tgt_request_handle,
2823                         .so_req_printer         = target_print_req,
2824                         .so_hpreq_handler       = NULL,
2825                 },
2826         };
2827         ost->ost_out_service = ptlrpc_register_service(&svc_conf,
2828                                                        obd->obd_proc_entry);
2829         if (IS_ERR(ost->ost_out_service)) {
2830                 rc = PTR_ERR(ost->ost_out_service);
2831                 CERROR("failed to start out service: %d\n", rc);
2832                 ost->ost_out_service = NULL;
2833                 GOTO(out_seq, rc);
2834         }
2835 #endif
2836         ping_evictor_start();
2837
2838         RETURN(0);
2839 out_io:
2840         ptlrpc_unregister_service(ost->ost_io_service);
2841         ost->ost_io_service = NULL;
2842 out_create:
2843         ptlrpc_unregister_service(ost->ost_create_service);
2844         ost->ost_create_service = NULL;
2845 out_service:
2846         ptlrpc_unregister_service(ost->ost_service);
2847         ost->ost_service = NULL;
2848 out_lprocfs:
2849         lprocfs_obd_cleanup(obd);
2850         RETURN(rc);
2851 }
2852
2853 static int ost_cleanup(struct obd_device *obd)
2854 {
2855         struct ost_obd *ost = &obd->u.ost;
2856         int err = 0;
2857         ENTRY;
2858
2859         ping_evictor_stop();
2860
2861         /* there is no recovery for OST OBD, all recovery is controlled by
2862          * obdfilter OBD */
2863         LASSERT(obd->obd_recovering == 0);
2864         mutex_lock(&ost->ost_health_mutex);
2865         ptlrpc_unregister_service(ost->ost_service);
2866         ptlrpc_unregister_service(ost->ost_create_service);
2867         ptlrpc_unregister_service(ost->ost_io_service);
2868         ptlrpc_unregister_service(ost->ost_seq_service);
2869 #if 0
2870         ptlrpc_unregister_service(ost->ost_out_service);
2871 #endif
2872         ost->ost_service = NULL;
2873         ost->ost_create_service = NULL;
2874         ost->ost_io_service = NULL;
2875         ost->ost_seq_service = NULL;
2876         ost->ost_out_service = NULL;
2877
2878         mutex_unlock(&ost->ost_health_mutex);
2879
2880         lprocfs_obd_cleanup(obd);
2881
2882         if (ost_io_cptable != NULL) {
2883                 cfs_cpt_table_free(ost_io_cptable);
2884                 ost_io_cptable = NULL;
2885         }
2886
2887         RETURN(err);
2888 }
2889
2890 static int ost_health_check(const struct lu_env *env, struct obd_device *obd)
2891 {
2892         struct ost_obd *ost = &obd->u.ost;
2893         int rc = 0;
2894
2895         mutex_lock(&ost->ost_health_mutex);
2896         rc |= ptlrpc_service_health_check(ost->ost_service);
2897         rc |= ptlrpc_service_health_check(ost->ost_create_service);
2898         rc |= ptlrpc_service_health_check(ost->ost_io_service);
2899         mutex_unlock(&ost->ost_health_mutex);
2900
2901         /*
2902          * health_check to return 0 on healthy
2903          * and 1 on unhealthy.
2904          */
2905         if( rc != 0)
2906                 rc = 1;
2907
2908         return rc;
2909 }
2910
2911 struct ost_thread_local_cache *ost_tls(struct ptlrpc_request *r)
2912 {
2913         return (struct ost_thread_local_cache *)(r->rq_svc_thread->t_data);
2914 }
2915
2916 /* use obd ops to offer management infrastructure */
2917 static struct obd_ops ost_obd_ops = {
2918         .o_owner        = THIS_MODULE,
2919         .o_setup        = ost_setup,
2920         .o_cleanup      = ost_cleanup,
2921         .o_health_check = ost_health_check,
2922 };
2923
2924
2925 static int __init ost_init(void)
2926 {
2927         struct lprocfs_static_vars lvars;
2928         int rc;
2929         ENTRY;
2930
2931         ost_page_to_corrupt = alloc_page(GFP_IOFS);
2932
2933         lprocfs_ost_init_vars(&lvars);
2934         rc = class_register_type(&ost_obd_ops, NULL, lvars.module_vars,
2935                                  LUSTRE_OSS_NAME, NULL);
2936
2937         if (ost_num_threads != 0 && oss_num_threads == 0) {
2938                 LCONSOLE_INFO("ost_num_threads module parameter is deprecated, "
2939                               "use oss_num_threads instead or unset both for "
2940                               "dynamic thread startup\n");
2941                 oss_num_threads = ost_num_threads;
2942         }
2943
2944         RETURN(rc);
2945 }
2946
2947 static void /*__exit*/ ost_exit(void)
2948 {
2949         if (ost_page_to_corrupt)
2950                 page_cache_release(ost_page_to_corrupt);
2951
2952         class_unregister_type(LUSTRE_OSS_NAME);
2953 }
2954
2955 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
2956 MODULE_DESCRIPTION("Lustre Object Storage Target (OST) v0.01");
2957 MODULE_LICENSE("GPL");
2958
2959 module_init(ost_init);
2960 module_exit(ost_exit);