staging/lustre: Replace sun.com GPLv2 URL with gnu.org one.
[deliverable/linux.git] / drivers / staging / lustre / lustre / mdc / mdc_request.c
CommitLineData
d7e09d03
PT
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
6a5b99a4 18 * http://www.gnu.org/licenses/gpl-2.0.html
d7e09d03 19 *
d7e09d03
PT
20 * GPL HEADER END
21 */
22/*
23 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
25 *
1dc563a6 26 * Copyright (c) 2011, 2015, Intel Corporation.
d7e09d03
PT
27 */
28/*
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
31 */
32
33#define DEBUG_SUBSYSTEM S_MDC
34
35# include <linux/module.h>
36# include <linux/pagemap.h>
37# include <linux/miscdevice.h>
38# include <linux/init.h>
39# include <linux/utsname.h>
40
05932307
GKH
41#include "../include/lustre_acl.h"
42#include "../include/obd_class.h"
43#include "../include/lustre_fid.h"
44#include "../include/lprocfs_status.h"
45#include "../include/lustre_param.h"
46#include "../include/lustre_log.h"
e2780478 47#include "../include/lustre_kernelcomm.h"
d7e09d03
PT
48
49#include "mdc_internal.h"
50
51#define REQUEST_MINOR 244
52
d7e09d03
PT
53static int mdc_cleanup(struct obd_device *obd);
54
d7e09d03
PT
55static inline int mdc_queue_wait(struct ptlrpc_request *req)
56{
57 struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
58 int rc;
59
60 /* mdc_enter_request() ensures that this client has no more
61 * than cl_max_rpcs_in_flight RPCs simultaneously inf light
1df232ee
OD
62 * against an MDT.
63 */
d7e09d03
PT
64 rc = mdc_enter_request(cli);
65 if (rc != 0)
66 return rc;
67
68 rc = ptlrpc_queue_wait(req);
69 mdc_exit_request(cli);
70
71 return rc;
72}
73
ef2e0f55 74static int mdc_getstatus(struct obd_export *exp, struct lu_fid *rootfid)
d7e09d03
PT
75{
76 struct ptlrpc_request *req;
77 struct mdt_body *body;
78 int rc;
d7e09d03 79
ef2e0f55
OD
80 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
81 &RQF_MDS_GETSTATUS,
d7e09d03 82 LUSTRE_MDS_VERSION, MDS_GETSTATUS);
34e3ff96 83 if (!req)
0a3bdb00 84 return -ENOMEM;
d7e09d03 85
ef2e0f55
OD
86 mdc_pack_body(req, NULL, 0, 0, -1, 0);
87 req->rq_send_state = LUSTRE_IMP_FULL;
d7e09d03
PT
88
89 ptlrpc_request_set_replen(req);
90
91 rc = ptlrpc_queue_wait(req);
92 if (rc)
d5fdc207 93 goto out;
d7e09d03
PT
94
95 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
34e3ff96 96 if (!body) {
d5fdc207
JL
97 rc = -EPROTO;
98 goto out;
99 }
d7e09d03 100
d7e09d03
PT
101 *rootfid = body->fid1;
102 CDEBUG(D_NET,
b0f5aad5 103 "root fid="DFID", last_committed=%llu\n",
d7e09d03
PT
104 PFID(rootfid),
105 lustre_msg_get_last_committed(req->rq_repmsg));
d7e09d03
PT
106out:
107 ptlrpc_req_finished(req);
108 return rc;
109}
110
d7e09d03
PT
111/*
112 * This function now is known to always saying that it will receive 4 buffers
113 * from server. Even for cases when acl_size and md_size is zero, RPC header
114 * will contain 4 fields and RPC itself will contain zero size fields. This is
115 * because mdt_getattr*() _always_ returns 4 fields, but if acl is not needed
116 * and thus zero, it shrinks it, making zero size. The same story about
117 * md_size. And this is course of problem when client waits for smaller number
118 * of fields. This issue will be fixed later when client gets aware of RPC
119 * layouts. --umka
120 */
121static int mdc_getattr_common(struct obd_export *exp,
122 struct ptlrpc_request *req)
123{
124 struct req_capsule *pill = &req->rq_pill;
125 struct mdt_body *body;
126 void *eadata;
127 int rc;
d7e09d03
PT
128
129 /* Request message already built. */
130 rc = ptlrpc_queue_wait(req);
131 if (rc != 0)
0a3bdb00 132 return rc;
d7e09d03
PT
133
134 /* sanity check for the reply */
135 body = req_capsule_server_get(pill, &RMF_MDT_BODY);
34e3ff96 136 if (!body)
0a3bdb00 137 return -EPROTO;
d7e09d03
PT
138
139 CDEBUG(D_NET, "mode: %o\n", body->mode);
140
483eec0d 141 mdc_update_max_ea_from_body(exp, body);
d7e09d03 142 if (body->eadatasize != 0) {
d7e09d03
PT
143 eadata = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
144 body->eadatasize);
34e3ff96 145 if (!eadata)
0a3bdb00 146 return -EPROTO;
d7e09d03
PT
147 }
148
149 if (body->valid & OBD_MD_FLRMTPERM) {
150 struct mdt_remote_perm *perm;
151
152 LASSERT(client_is_remote(exp));
153 perm = req_capsule_server_swab_get(pill, &RMF_ACL,
154 lustre_swab_mdt_remote_perm);
34e3ff96 155 if (!perm)
0a3bdb00 156 return -EPROTO;
d7e09d03
PT
157 }
158
0a3bdb00 159 return 0;
d7e09d03
PT
160}
161
60ebee3b 162static int mdc_getattr(struct obd_export *exp, struct md_op_data *op_data,
22e0bc6a 163 struct ptlrpc_request **request)
d7e09d03
PT
164{
165 struct ptlrpc_request *req;
166 int rc;
d7e09d03
PT
167
168 /* Single MDS without an LMV case */
169 if (op_data->op_flags & MF_GET_MDT_IDX) {
170 op_data->op_mds = 0;
0a3bdb00 171 return 0;
d7e09d03
PT
172 }
173 *request = NULL;
174 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
34e3ff96 175 if (!req)
0a3bdb00 176 return -ENOMEM;
d7e09d03 177
d7e09d03
PT
178 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
179 if (rc) {
180 ptlrpc_request_free(req);
0a3bdb00 181 return rc;
d7e09d03
PT
182 }
183
ef2e0f55
OD
184 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
185 op_data->op_mode, -1, 0);
d7e09d03
PT
186
187 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
188 op_data->op_mode);
189 if (op_data->op_valid & OBD_MD_FLRMTPERM) {
190 LASSERT(client_is_remote(exp));
191 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
192 sizeof(struct mdt_remote_perm));
193 }
194 ptlrpc_request_set_replen(req);
195
196 rc = mdc_getattr_common(exp, req);
197 if (rc)
198 ptlrpc_req_finished(req);
199 else
200 *request = req;
0a3bdb00 201 return rc;
d7e09d03
PT
202}
203
60ebee3b 204static int mdc_getattr_name(struct obd_export *exp, struct md_op_data *op_data,
22e0bc6a 205 struct ptlrpc_request **request)
d7e09d03
PT
206{
207 struct ptlrpc_request *req;
208 int rc;
d7e09d03
PT
209
210 *request = NULL;
211 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
212 &RQF_MDS_GETATTR_NAME);
34e3ff96 213 if (!req)
0a3bdb00 214 return -ENOMEM;
d7e09d03 215
d7e09d03
PT
216 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
217 op_data->op_namelen + 1);
218
219 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR_NAME);
220 if (rc) {
221 ptlrpc_request_free(req);
0a3bdb00 222 return rc;
d7e09d03
PT
223 }
224
ef2e0f55
OD
225 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
226 op_data->op_mode, op_data->op_suppgids[0], 0);
d7e09d03
PT
227
228 if (op_data->op_name) {
229 char *name = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
7436d070 230
d7e09d03
PT
231 LASSERT(strnlen(op_data->op_name, op_data->op_namelen) ==
232 op_data->op_namelen);
233 memcpy(name, op_data->op_name, op_data->op_namelen);
234 }
235
236 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
237 op_data->op_mode);
238 ptlrpc_request_set_replen(req);
239
240 rc = mdc_getattr_common(exp, req);
241 if (rc)
242 ptlrpc_req_finished(req);
243 else
244 *request = req;
0a3bdb00 245 return rc;
d7e09d03
PT
246}
247
248static int mdc_is_subdir(struct obd_export *exp,
249 const struct lu_fid *pfid,
250 const struct lu_fid *cfid,
251 struct ptlrpc_request **request)
252{
253 struct ptlrpc_request *req;
254 int rc;
255
d7e09d03
PT
256 *request = NULL;
257 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
258 &RQF_MDS_IS_SUBDIR, LUSTRE_MDS_VERSION,
259 MDS_IS_SUBDIR);
34e3ff96 260 if (!req)
0a3bdb00 261 return -ENOMEM;
d7e09d03
PT
262
263 mdc_is_subdir_pack(req, pfid, cfid, 0);
264 ptlrpc_request_set_replen(req);
265
266 rc = ptlrpc_queue_wait(req);
267 if (rc && rc != -EREMOTE)
268 ptlrpc_req_finished(req);
269 else
270 *request = req;
0a3bdb00 271 return rc;
d7e09d03
PT
272}
273
301af906
SM
274static int mdc_xattr_common(struct obd_export *exp,
275 const struct req_format *fmt,
d7e09d03 276 const struct lu_fid *fid,
ef2e0f55 277 int opcode, u64 valid,
d7e09d03
PT
278 const char *xattr_name, const char *input,
279 int input_size, int output_size, int flags,
280 __u32 suppgid, struct ptlrpc_request **request)
281{
282 struct ptlrpc_request *req;
283 int xattr_namelen = 0;
284 char *tmp;
285 int rc;
d7e09d03
PT
286
287 *request = NULL;
288 req = ptlrpc_request_alloc(class_exp2cliimp(exp), fmt);
34e3ff96 289 if (!req)
0a3bdb00 290 return -ENOMEM;
d7e09d03 291
d7e09d03
PT
292 if (xattr_name) {
293 xattr_namelen = strlen(xattr_name) + 1;
294 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
295 xattr_namelen);
296 }
297 if (input_size) {
298 LASSERT(input);
299 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
300 input_size);
301 }
302
e93a3082
AP
303 /* Flush local XATTR locks to get rid of a possible cancel RPC */
304 if (opcode == MDS_REINT && fid_is_sane(fid) &&
305 exp->exp_connect_data.ocd_ibits_known & MDS_INODELOCK_XATTR) {
306 LIST_HEAD(cancels);
307 int count;
308
309 /* Without that packing would fail */
310 if (input_size == 0)
311 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
312 RCL_CLIENT, 0);
313
314 count = mdc_resource_get_unused(exp, fid,
315 &cancels, LCK_EX,
316 MDS_INODELOCK_XATTR);
317
318 rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
319 if (rc) {
320 ptlrpc_request_free(req);
321 return rc;
322 }
323 } else {
324 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, opcode);
325 if (rc) {
326 ptlrpc_request_free(req);
327 return rc;
328 }
d7e09d03
PT
329 }
330
331 if (opcode == MDS_REINT) {
332 struct mdt_rec_setxattr *rec;
333
334 CLASSERT(sizeof(struct mdt_rec_setxattr) ==
335 sizeof(struct mdt_rec_reint));
336 rec = req_capsule_client_get(&req->rq_pill, &RMF_REC_REINT);
337 rec->sx_opcode = REINT_SETXATTR;
4b1a25f0
PT
338 rec->sx_fsuid = from_kuid(&init_user_ns, current_fsuid());
339 rec->sx_fsgid = from_kgid(&init_user_ns, current_fsgid());
d7e09d03
PT
340 rec->sx_cap = cfs_curproc_cap_pack();
341 rec->sx_suppgid1 = suppgid;
342 rec->sx_suppgid2 = -1;
343 rec->sx_fid = *fid;
344 rec->sx_valid = valid | OBD_MD_FLCTIME;
14e3f92a 345 rec->sx_time = ktime_get_real_seconds();
d7e09d03
PT
346 rec->sx_size = output_size;
347 rec->sx_flags = flags;
348
d7e09d03 349 } else {
ef2e0f55 350 mdc_pack_body(req, fid, valid, output_size, suppgid, flags);
d7e09d03
PT
351 }
352
353 if (xattr_name) {
354 tmp = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
355 memcpy(tmp, xattr_name, xattr_namelen);
356 }
357 if (input_size) {
358 tmp = req_capsule_client_get(&req->rq_pill, &RMF_EADATA);
359 memcpy(tmp, input, input_size);
360 }
361
362 if (req_capsule_has_field(&req->rq_pill, &RMF_EADATA, RCL_SERVER))
363 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
364 RCL_SERVER, output_size);
365 ptlrpc_request_set_replen(req);
366
367 /* make rpc */
368 if (opcode == MDS_REINT)
369 mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
370
371 rc = ptlrpc_queue_wait(req);
372
373 if (opcode == MDS_REINT)
374 mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
375
376 if (rc)
377 ptlrpc_req_finished(req);
378 else
379 *request = req;
0a3bdb00 380 return rc;
d7e09d03
PT
381}
382
60ebee3b 383static int mdc_setxattr(struct obd_export *exp, const struct lu_fid *fid,
ef2e0f55
OD
384 u64 valid, const char *xattr_name,
385 const char *input, int input_size, int output_size,
386 int flags, __u32 suppgid,
387 struct ptlrpc_request **request)
d7e09d03
PT
388{
389 return mdc_xattr_common(exp, &RQF_MDS_REINT_SETXATTR,
ef2e0f55 390 fid, MDS_REINT, valid, xattr_name,
d7e09d03
PT
391 input, input_size, output_size, flags,
392 suppgid, request);
393}
394
60ebee3b 395static int mdc_getxattr(struct obd_export *exp, const struct lu_fid *fid,
ef2e0f55
OD
396 u64 valid, const char *xattr_name,
397 const char *input, int input_size, int output_size,
398 int flags, struct ptlrpc_request **request)
d7e09d03
PT
399{
400 return mdc_xattr_common(exp, &RQF_MDS_GETXATTR,
ef2e0f55 401 fid, MDS_GETXATTR, valid, xattr_name,
d7e09d03
PT
402 input, input_size, output_size, flags,
403 -1, request);
404}
405
406#ifdef CONFIG_FS_POSIX_ACL
407static int mdc_unpack_acl(struct ptlrpc_request *req, struct lustre_md *md)
408{
409 struct req_capsule *pill = &req->rq_pill;
410 struct mdt_body *body = md->body;
411 struct posix_acl *acl;
412 void *buf;
413 int rc;
d7e09d03
PT
414
415 if (!body->aclsize)
0a3bdb00 416 return 0;
d7e09d03
PT
417
418 buf = req_capsule_server_sized_get(pill, &RMF_ACL, body->aclsize);
419
420 if (!buf)
0a3bdb00 421 return -EPROTO;
d7e09d03
PT
422
423 acl = posix_acl_from_xattr(&init_user_ns, buf, body->aclsize);
34e3ff96 424 if (!acl)
f4289400
CM
425 return 0;
426
d7e09d03
PT
427 if (IS_ERR(acl)) {
428 rc = PTR_ERR(acl);
429 CERROR("convert xattr to acl: %d\n", rc);
0a3bdb00 430 return rc;
d7e09d03
PT
431 }
432
433 rc = posix_acl_valid(acl);
434 if (rc) {
435 CERROR("validate acl: %d\n", rc);
436 posix_acl_release(acl);
0a3bdb00 437 return rc;
d7e09d03
PT
438 }
439
440 md->posix_acl = acl;
0a3bdb00 441 return 0;
d7e09d03
PT
442}
443#else
444#define mdc_unpack_acl(req, md) 0
445#endif
446
358855b2
SB
447static int mdc_get_lustre_md(struct obd_export *exp,
448 struct ptlrpc_request *req,
449 struct obd_export *dt_exp,
450 struct obd_export *md_exp,
451 struct lustre_md *md)
d7e09d03
PT
452{
453 struct req_capsule *pill = &req->rq_pill;
454 int rc;
d7e09d03
PT
455
456 LASSERT(md);
457 memset(md, 0, sizeof(*md));
458
459 md->body = req_capsule_server_get(pill, &RMF_MDT_BODY);
d7e09d03
PT
460
461 if (md->body->valid & OBD_MD_FLEASIZE) {
462 int lmmsize;
463 struct lov_mds_md *lmm;
464
465 if (!S_ISREG(md->body->mode)) {
ee990b33
SM
466 CDEBUG(D_INFO,
467 "OBD_MD_FLEASIZE set, should be a regular file, but is not\n");
d5fdc207
JL
468 rc = -EPROTO;
469 goto out;
d7e09d03
PT
470 }
471
472 if (md->body->eadatasize == 0) {
ee990b33
SM
473 CDEBUG(D_INFO,
474 "OBD_MD_FLEASIZE set, but eadatasize 0\n");
d5fdc207
JL
475 rc = -EPROTO;
476 goto out;
d7e09d03
PT
477 }
478 lmmsize = md->body->eadatasize;
479 lmm = req_capsule_server_sized_get(pill, &RMF_MDT_MD, lmmsize);
d5fdc207
JL
480 if (!lmm) {
481 rc = -EPROTO;
482 goto out;
483 }
d7e09d03
PT
484
485 rc = obd_unpackmd(dt_exp, &md->lsm, lmm, lmmsize);
486 if (rc < 0)
d5fdc207 487 goto out;
d7e09d03
PT
488
489 if (rc < sizeof(*md->lsm)) {
ee990b33
SM
490 CDEBUG(D_INFO,
491 "lsm size too small: rc < sizeof (*md->lsm) (%d < %d)\n",
d7e09d03 492 rc, (int)sizeof(*md->lsm));
d5fdc207
JL
493 rc = -EPROTO;
494 goto out;
d7e09d03
PT
495 }
496
497 } else if (md->body->valid & OBD_MD_FLDIREA) {
498 int lmvsize;
499 struct lov_mds_md *lmv;
500
301af906 501 if (!S_ISDIR(md->body->mode)) {
ee990b33
SM
502 CDEBUG(D_INFO,
503 "OBD_MD_FLDIREA set, should be a directory, but is not\n");
d5fdc207
JL
504 rc = -EPROTO;
505 goto out;
d7e09d03
PT
506 }
507
508 if (md->body->eadatasize == 0) {
ee990b33
SM
509 CDEBUG(D_INFO,
510 "OBD_MD_FLDIREA is set, but eadatasize 0\n");
0a3bdb00 511 return -EPROTO;
d7e09d03
PT
512 }
513 if (md->body->valid & OBD_MD_MEA) {
514 lmvsize = md->body->eadatasize;
515 lmv = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
516 lmvsize);
d5fdc207
JL
517 if (!lmv) {
518 rc = -EPROTO;
519 goto out;
520 }
d7e09d03
PT
521
522 rc = obd_unpackmd(md_exp, (void *)&md->mea, lmv,
523 lmvsize);
524 if (rc < 0)
d5fdc207 525 goto out;
d7e09d03
PT
526
527 if (rc < sizeof(*md->mea)) {
ee990b33
SM
528 CDEBUG(D_INFO,
529 "size too small: rc < sizeof(*md->mea) (%d < %d)\n",
d7e09d03 530 rc, (int)sizeof(*md->mea));
d5fdc207
JL
531 rc = -EPROTO;
532 goto out;
d7e09d03
PT
533 }
534 }
535 }
536 rc = 0;
537
538 if (md->body->valid & OBD_MD_FLRMTPERM) {
539 /* remote permission */
540 LASSERT(client_is_remote(exp));
541 md->remote_perm = req_capsule_server_swab_get(pill, &RMF_ACL,
542 lustre_swab_mdt_remote_perm);
d5fdc207
JL
543 if (!md->remote_perm) {
544 rc = -EPROTO;
545 goto out;
546 }
78dd0798 547 } else if (md->body->valid & OBD_MD_FLACL) {
d7e09d03
PT
548 /* for ACL, it's possible that FLACL is set but aclsize is zero.
549 * only when aclsize != 0 there's an actual segment for ACL
550 * in reply buffer.
551 */
552 if (md->body->aclsize) {
553 rc = mdc_unpack_acl(req, md);
554 if (rc)
d5fdc207 555 goto out;
d7e09d03
PT
556#ifdef CONFIG_FS_POSIX_ACL
557 } else {
558 md->posix_acl = NULL;
559#endif
560 }
561 }
d7e09d03 562
d7e09d03
PT
563out:
564 if (rc) {
d7e09d03
PT
565#ifdef CONFIG_FS_POSIX_ACL
566 posix_acl_release(md->posix_acl);
567#endif
568 if (md->lsm)
569 obd_free_memmd(dt_exp, &md->lsm);
570 }
571 return rc;
572}
573
358855b2 574static int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
d7e09d03 575{
0a3bdb00 576 return 0;
d7e09d03
PT
577}
578
579/**
580 * Handles both OPEN and SETATTR RPCs for OPEN-CLOSE and SETATTR-DONE_WRITING
581 * RPC chains.
582 */
583void mdc_replay_open(struct ptlrpc_request *req)
584{
585 struct md_open_data *mod = req->rq_cb_data;
586 struct ptlrpc_request *close_req;
587 struct obd_client_handle *och;
588 struct lustre_handle old;
589 struct mdt_body *body;
d7e09d03 590
34e3ff96 591 if (!mod) {
d7e09d03
PT
592 DEBUG_REQ(D_ERROR, req,
593 "Can't properly replay without open data.");
d7e09d03
PT
594 return;
595 }
596
597 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
d7e09d03
PT
598
599 och = mod->mod_och;
34e3ff96 600 if (och) {
d7e09d03
PT
601 struct lustre_handle *file_fh;
602
603 LASSERT(och->och_magic == OBD_CLIENT_HANDLE_MAGIC);
604
605 file_fh = &och->och_fh;
55f5a824 606 CDEBUG(D_HA, "updating handle from %#llx to %#llx\n",
d7e09d03
PT
607 file_fh->cookie, body->handle.cookie);
608 old = *file_fh;
609 *file_fh = body->handle;
610 }
611 close_req = mod->mod_close_req;
34e3ff96 612 if (close_req) {
d7e09d03
PT
613 __u32 opc = lustre_msg_get_opc(close_req->rq_reqmsg);
614 struct mdt_ioepoch *epoch;
615
616 LASSERT(opc == MDS_CLOSE || opc == MDS_DONE_WRITING);
617 epoch = req_capsule_client_get(&close_req->rq_pill,
618 &RMF_MDT_EPOCH);
619 LASSERT(epoch);
620
34e3ff96 621 if (och)
d7e09d03
PT
622 LASSERT(!memcmp(&old, &epoch->handle, sizeof(old)));
623 DEBUG_REQ(D_HA, close_req, "updating close body with new fh");
624 epoch->handle = body->handle;
625 }
d7e09d03
PT
626}
627
628void mdc_commit_open(struct ptlrpc_request *req)
629{
630 struct md_open_data *mod = req->rq_cb_data;
7436d070 631
34e3ff96 632 if (!mod)
d7e09d03
PT
633 return;
634
635 /**
636 * No need to touch md_open_data::mod_och, it holds a reference on
637 * \var mod and will zero references to each other, \var mod will be
638 * freed after that when md_open_data::mod_och will put the reference.
639 */
640
641 /**
642 * Do not let open request to disappear as it still may be needed
643 * for close rpc to happen (it may happen on evict only, otherwise
644 * ptlrpc_request::rq_replay does not let mdc_commit_open() to be
645 * called), just mark this rpc as committed to distinguish these 2
646 * cases, see mdc_close() for details. The open request reference will
647 * be put along with freeing \var mod.
648 */
649 ptlrpc_request_addref(req);
650 spin_lock(&req->rq_lock);
651 req->rq_committed = 1;
652 spin_unlock(&req->rq_lock);
653 req->rq_cb_data = NULL;
654 obd_mod_put(mod);
655}
656
657int mdc_set_open_replay_data(struct obd_export *exp,
658 struct obd_client_handle *och,
63d42578 659 struct lookup_intent *it)
d7e09d03
PT
660{
661 struct md_open_data *mod;
662 struct mdt_rec_create *rec;
663 struct mdt_body *body;
63d42578 664 struct ptlrpc_request *open_req = it->d.lustre.it_data;
d7e09d03 665 struct obd_import *imp = open_req->rq_import;
d7e09d03
PT
666
667 if (!open_req->rq_replay)
0a3bdb00 668 return 0;
d7e09d03
PT
669
670 rec = req_capsule_client_get(&open_req->rq_pill, &RMF_REC_REINT);
671 body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
34e3ff96 672 LASSERT(rec);
d7e09d03
PT
673 /* Incoming message in my byte order (it's been swabbed). */
674 /* Outgoing messages always in my byte order. */
34e3ff96 675 LASSERT(body);
d7e09d03
PT
676
677 /* Only if the import is replayable, we set replay_open data */
678 if (och && imp->imp_replayable) {
679 mod = obd_mod_alloc();
34e3ff96 680 if (!mod) {
d7e09d03
PT
681 DEBUG_REQ(D_ERROR, open_req,
682 "Can't allocate md_open_data");
0a3bdb00 683 return 0;
d7e09d03
PT
684 }
685
686 /**
687 * Take a reference on \var mod, to be freed on mdc_close().
688 * It protects \var mod from being freed on eviction (commit
689 * callback is called despite rq_replay flag).
690 * Another reference for \var och.
691 */
692 obd_mod_get(mod);
693 obd_mod_get(mod);
694
695 spin_lock(&open_req->rq_lock);
696 och->och_mod = mod;
697 mod->mod_och = och;
63d42578
HZ
698 mod->mod_is_create = it_disposition(it, DISP_OPEN_CREATE) ||
699 it_disposition(it, DISP_OPEN_STRIPE);
d7e09d03
PT
700 mod->mod_open_req = open_req;
701 open_req->rq_cb_data = mod;
702 open_req->rq_commit_cb = mdc_commit_open;
703 spin_unlock(&open_req->rq_lock);
704 }
705
706 rec->cr_fid2 = body->fid1;
707 rec->cr_ioepoch = body->ioepoch;
708 rec->cr_old_handle.cookie = body->handle.cookie;
709 open_req->rq_replay_cb = mdc_replay_open;
710 if (!fid_is_sane(&body->fid1)) {
ee990b33
SM
711 DEBUG_REQ(D_ERROR, open_req,
712 "Saving replay request with insane fid");
d7e09d03
PT
713 LBUG();
714 }
715
716 DEBUG_REQ(D_RPCTRACE, open_req, "Set up open replay data");
0a3bdb00 717 return 0;
d7e09d03
PT
718}
719
63d42578
HZ
720static void mdc_free_open(struct md_open_data *mod)
721{
722 int committed = 0;
723
724 if (mod->mod_is_create == 0 &&
725 imp_connect_disp_stripe(mod->mod_open_req->rq_import))
726 committed = 1;
727
728 LASSERT(mod->mod_open_req->rq_replay == 0);
729
730 DEBUG_REQ(D_RPCTRACE, mod->mod_open_req, "free open request\n");
731
732 ptlrpc_request_committed(mod->mod_open_req, committed);
733 if (mod->mod_close_req)
734 ptlrpc_request_committed(mod->mod_close_req, committed);
735}
736
358855b2
SB
737static int mdc_clear_open_replay_data(struct obd_export *exp,
738 struct obd_client_handle *och)
d7e09d03
PT
739{
740 struct md_open_data *mod = och->och_mod;
d7e09d03
PT
741
742 /**
743 * It is possible to not have \var mod in a case of eviction between
744 * lookup and ll_file_open().
745 **/
34e3ff96 746 if (!mod)
0a3bdb00 747 return 0;
d7e09d03
PT
748
749 LASSERT(mod != LP_POISON);
34e3ff96 750 LASSERT(mod->mod_open_req);
63d42578 751 mdc_free_open(mod);
d7e09d03
PT
752
753 mod->mod_och = NULL;
754 och->och_mod = NULL;
755 obd_mod_put(mod);
756
0a3bdb00 757 return 0;
d7e09d03
PT
758}
759
760/* Prepares the request for the replay by the given reply */
761static void mdc_close_handle_reply(struct ptlrpc_request *req,
762 struct md_op_data *op_data, int rc) {
763 struct mdt_body *repbody;
764 struct mdt_ioepoch *epoch;
765
766 if (req && rc == -EAGAIN) {
767 repbody = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
768 epoch = req_capsule_client_get(&req->rq_pill, &RMF_MDT_EPOCH);
769
770 epoch->flags |= MF_SOM_AU;
771 if (repbody->valid & OBD_MD_FLGETATTRLOCK)
772 op_data->op_flags |= MF_GETATTR_LOCK;
773 }
774}
775
f6219c16
LC
776static int mdc_close(struct obd_export *exp, struct md_op_data *op_data,
777 struct md_open_data *mod, struct ptlrpc_request **request)
d7e09d03
PT
778{
779 struct obd_device *obd = class_exp2obd(exp);
780 struct ptlrpc_request *req;
48d23e61
JX
781 struct req_format *req_fmt;
782 int rc;
783 int saved_rc = 0;
784
48d23e61
JX
785 req_fmt = &RQF_MDS_CLOSE;
786 if (op_data->op_bias & MDS_HSM_RELEASE) {
787 req_fmt = &RQF_MDS_RELEASE_CLOSE;
788
789 /* allocate a FID for volatile file */
790 rc = mdc_fid_alloc(exp, &op_data->op_fid2, op_data);
791 if (rc < 0) {
792 CERROR("%s: "DFID" failed to allocate FID: %d\n",
793 obd->obd_name, PFID(&op_data->op_fid1), rc);
794 /* save the errcode and proceed to close */
795 saved_rc = rc;
796 }
797 }
d7e09d03
PT
798
799 *request = NULL;
48d23e61 800 req = ptlrpc_request_alloc(class_exp2cliimp(exp), req_fmt);
34e3ff96 801 if (!req)
0a3bdb00 802 return -ENOMEM;
d7e09d03 803
d7e09d03
PT
804 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_CLOSE);
805 if (rc) {
806 ptlrpc_request_free(req);
0a3bdb00 807 return rc;
d7e09d03
PT
808 }
809
810 /* To avoid a livelock (bug 7034), we need to send CLOSE RPCs to a
811 * portal whose threads are not taking any DLM locks and are therefore
1df232ee
OD
812 * always progressing
813 */
d7e09d03
PT
814 req->rq_request_portal = MDS_READPAGE_PORTAL;
815 ptlrpc_at_set_req_timeout(req);
816
817 /* Ensure that this close's handle is fixed up during replay. */
34e3ff96
OD
818 if (likely(mod)) {
819 LASSERTF(mod->mod_open_req &&
d7e09d03
PT
820 mod->mod_open_req->rq_type != LI_POISON,
821 "POISONED open %p!\n", mod->mod_open_req);
822
823 mod->mod_close_req = req;
824
825 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
826 /* We no longer want to preserve this open for replay even
1df232ee
OD
827 * though the open was committed. b=3632, b=3633
828 */
d7e09d03
PT
829 spin_lock(&mod->mod_open_req->rq_lock);
830 mod->mod_open_req->rq_replay = 0;
831 spin_unlock(&mod->mod_open_req->rq_lock);
832 } else {
e5e663ae
SM
833 CDEBUG(D_HA,
834 "couldn't find open req; expecting close error\n");
d7e09d03
PT
835 }
836
837 mdc_close_pack(req, op_data);
838
839 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
44779340 840 obd->u.cli.cl_default_mds_easize);
d7e09d03 841 req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
44779340 842 obd->u.cli.cl_default_mds_cookiesize);
d7e09d03
PT
843
844 ptlrpc_request_set_replen(req);
845
846 mdc_get_rpc_lock(obd->u.cli.cl_close_lock, NULL);
847 rc = ptlrpc_queue_wait(req);
848 mdc_put_rpc_lock(obd->u.cli.cl_close_lock, NULL);
849
34e3ff96 850 if (!req->rq_repmsg) {
d7e09d03
PT
851 CDEBUG(D_RPCTRACE, "request failed to send: %p, %d\n", req,
852 req->rq_status);
853 if (rc == 0)
854 rc = req->rq_status ?: -EIO;
855 } else if (rc == 0 || rc == -EAGAIN) {
856 struct mdt_body *body;
857
858 rc = lustre_msg_get_status(req->rq_repmsg);
859 if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
ee990b33
SM
860 DEBUG_REQ(D_ERROR, req,
861 "type == PTL_RPC_MSG_ERR, err = %d", rc);
d7e09d03
PT
862 if (rc > 0)
863 rc = -rc;
864 }
865 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
34e3ff96 866 if (!body)
d7e09d03
PT
867 rc = -EPROTO;
868 } else if (rc == -ESTALE) {
869 /**
870 * it can be allowed error after 3633 if open was committed and
871 * server failed before close was sent. Let's check if mod
872 * exists and return no error in that case
873 */
874 if (mod) {
875 DEBUG_REQ(D_HA, req, "Reset ESTALE = %d", rc);
d7e09d03
PT
876 if (mod->mod_open_req->rq_committed)
877 rc = 0;
878 }
879 }
880
881 if (mod) {
882 if (rc != 0)
883 mod->mod_close_req = NULL;
884 /* Since now, mod is accessed through open_req only,
1df232ee
OD
885 * thus close req does not keep a reference on mod anymore.
886 */
d7e09d03
PT
887 obd_mod_put(mod);
888 }
889 *request = req;
890 mdc_close_handle_reply(req, op_data, rc);
48d23e61 891 return rc < 0 ? rc : saved_rc;
d7e09d03
PT
892}
893
f6219c16
LC
894static int mdc_done_writing(struct obd_export *exp, struct md_op_data *op_data,
895 struct md_open_data *mod)
d7e09d03
PT
896{
897 struct obd_device *obd = class_exp2obd(exp);
898 struct ptlrpc_request *req;
899 int rc;
d7e09d03
PT
900
901 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
902 &RQF_MDS_DONE_WRITING);
34e3ff96 903 if (!req)
0a3bdb00 904 return -ENOMEM;
d7e09d03 905
d7e09d03
PT
906 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_DONE_WRITING);
907 if (rc) {
908 ptlrpc_request_free(req);
0a3bdb00 909 return rc;
d7e09d03
PT
910 }
911
34e3ff96
OD
912 if (mod) {
913 LASSERTF(mod->mod_open_req &&
d7e09d03
PT
914 mod->mod_open_req->rq_type != LI_POISON,
915 "POISONED setattr %p!\n", mod->mod_open_req);
916
917 mod->mod_close_req = req;
918 DEBUG_REQ(D_HA, mod->mod_open_req, "matched setattr");
919 /* We no longer want to preserve this setattr for replay even
1df232ee
OD
920 * though the open was committed. b=3632, b=3633
921 */
d7e09d03
PT
922 spin_lock(&mod->mod_open_req->rq_lock);
923 mod->mod_open_req->rq_replay = 0;
924 spin_unlock(&mod->mod_open_req->rq_lock);
925 }
926
927 mdc_close_pack(req, op_data);
928 ptlrpc_request_set_replen(req);
929
930 mdc_get_rpc_lock(obd->u.cli.cl_close_lock, NULL);
931 rc = ptlrpc_queue_wait(req);
932 mdc_put_rpc_lock(obd->u.cli.cl_close_lock, NULL);
933
934 if (rc == -ESTALE) {
935 /**
936 * it can be allowed error after 3633 if open or setattr were
937 * committed and server failed before close was sent.
938 * Let's check if mod exists and return no error in that case
939 */
940 if (mod) {
d7e09d03
PT
941 if (mod->mod_open_req->rq_committed)
942 rc = 0;
943 }
944 }
945
946 if (mod) {
947 if (rc != 0)
948 mod->mod_close_req = NULL;
34e3ff96 949 LASSERT(mod->mod_open_req);
63d42578
HZ
950 mdc_free_open(mod);
951
d7e09d03 952 /* Since now, mod is accessed through setattr req only,
1df232ee
OD
953 * thus DW req does not keep a reference on mod anymore.
954 */
d7e09d03
PT
955 obd_mod_put(mod);
956 }
957
958 mdc_close_handle_reply(req, op_data, rc);
959 ptlrpc_req_finished(req);
0a3bdb00 960 return rc;
d7e09d03
PT
961}
962
f6219c16
LC
963static int mdc_readpage(struct obd_export *exp, struct md_op_data *op_data,
964 struct page **pages, struct ptlrpc_request **request)
d7e09d03
PT
965{
966 struct ptlrpc_request *req;
967 struct ptlrpc_bulk_desc *desc;
968 int i;
969 wait_queue_head_t waitq;
970 int resends = 0;
971 struct l_wait_info lwi;
972 int rc;
d7e09d03
PT
973
974 *request = NULL;
975 init_waitqueue_head(&waitq);
976
977restart_bulk:
978 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_READPAGE);
34e3ff96 979 if (!req)
0a3bdb00 980 return -ENOMEM;
d7e09d03 981
d7e09d03
PT
982 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_READPAGE);
983 if (rc) {
984 ptlrpc_request_free(req);
0a3bdb00 985 return rc;
d7e09d03
PT
986 }
987
988 req->rq_request_portal = MDS_READPAGE_PORTAL;
989 ptlrpc_at_set_req_timeout(req);
990
991 desc = ptlrpc_prep_bulk_imp(req, op_data->op_npages, 1, BULK_PUT_SINK,
992 MDS_BULK_PORTAL);
34e3ff96 993 if (!desc) {
d7e09d03 994 ptlrpc_request_free(req);
0a3bdb00 995 return -ENOMEM;
d7e09d03
PT
996 }
997
998 /* NB req now owns desc and will free it when it gets freed */
999 for (i = 0; i < op_data->op_npages; i++)
09cbfeaf 1000 ptlrpc_prep_bulk_page_pin(desc, pages[i], 0, PAGE_SIZE);
d7e09d03
PT
1001
1002 mdc_readdir_pack(req, op_data->op_offset,
09cbfeaf 1003 PAGE_SIZE * op_data->op_npages,
ef2e0f55 1004 &op_data->op_fid1);
d7e09d03
PT
1005
1006 ptlrpc_request_set_replen(req);
1007 rc = ptlrpc_queue_wait(req);
1008 if (rc) {
1009 ptlrpc_req_finished(req);
1010 if (rc != -ETIMEDOUT)
0a3bdb00 1011 return rc;
d7e09d03
PT
1012
1013 resends++;
1014 if (!client_should_resend(resends, &exp->exp_obd->u.cli)) {
1015 CERROR("too many resend retries, returning error\n");
0a3bdb00 1016 return -EIO;
d7e09d03 1017 }
e5e663ae
SM
1018 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(resends),
1019 NULL, NULL, NULL);
d7e09d03
PT
1020 l_wait_event(waitq, 0, &lwi);
1021
1022 goto restart_bulk;
1023 }
1024
1025 rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
1026 req->rq_bulk->bd_nob_transferred);
1027 if (rc < 0) {
1028 ptlrpc_req_finished(req);
0a3bdb00 1029 return rc;
d7e09d03
PT
1030 }
1031
1032 if (req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK) {
1033 CERROR("Unexpected # bytes transferred: %d (%ld expected)\n",
22e0bc6a 1034 req->rq_bulk->bd_nob_transferred,
09cbfeaf 1035 PAGE_SIZE * op_data->op_npages);
d7e09d03 1036 ptlrpc_req_finished(req);
0a3bdb00 1037 return -EPROTO;
d7e09d03
PT
1038 }
1039
1040 *request = req;
0a3bdb00 1041 return 0;
d7e09d03
PT
1042}
1043
1044static int mdc_statfs(const struct lu_env *env,
1045 struct obd_export *exp, struct obd_statfs *osfs,
1046 __u64 max_age, __u32 flags)
1047{
1048 struct obd_device *obd = class_exp2obd(exp);
1049 struct ptlrpc_request *req;
1050 struct obd_statfs *msfs;
1051 struct obd_import *imp = NULL;
1052 int rc;
d7e09d03
PT
1053
1054 /*
1055 * Since the request might also come from lprocfs, so we need
1056 * sync this with client_disconnect_export Bug15684
1057 */
1058 down_read(&obd->u.cli.cl_sem);
1059 if (obd->u.cli.cl_import)
1060 imp = class_import_get(obd->u.cli.cl_import);
1061 up_read(&obd->u.cli.cl_sem);
1062 if (!imp)
0a3bdb00 1063 return -ENODEV;
d7e09d03
PT
1064
1065 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_STATFS,
1066 LUSTRE_MDS_VERSION, MDS_STATFS);
34e3ff96 1067 if (!req) {
d5fdc207
JL
1068 rc = -ENOMEM;
1069 goto output;
1070 }
d7e09d03
PT
1071
1072 ptlrpc_request_set_replen(req);
1073
1074 if (flags & OBD_STATFS_NODELAY) {
1075 /* procfs requests not want stay in wait for avoid deadlock */
1076 req->rq_no_resend = 1;
1077 req->rq_no_delay = 1;
1078 }
1079
1080 rc = ptlrpc_queue_wait(req);
1081 if (rc) {
1082 /* check connection error first */
1083 if (imp->imp_connect_error)
1084 rc = imp->imp_connect_error;
d5fdc207 1085 goto out;
d7e09d03
PT
1086 }
1087
1088 msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
34e3ff96 1089 if (!msfs) {
d5fdc207
JL
1090 rc = -EPROTO;
1091 goto out;
1092 }
d7e09d03
PT
1093
1094 *osfs = *msfs;
d7e09d03
PT
1095out:
1096 ptlrpc_req_finished(req);
1097output:
1098 class_import_put(imp);
1099 return rc;
1100}
1101
1102static int mdc_ioc_fid2path(struct obd_export *exp, struct getinfo_fid2path *gf)
1103{
1104 __u32 keylen, vallen;
1105 void *key;
1106 int rc;
1107
1108 if (gf->gf_pathlen > PATH_MAX)
0a3bdb00 1109 return -ENAMETOOLONG;
d7e09d03 1110 if (gf->gf_pathlen < 2)
0a3bdb00 1111 return -EOVERFLOW;
d7e09d03
PT
1112
1113 /* Key is KEY_FID2PATH + getinfo_fid2path description */
1114 keylen = cfs_size_round(sizeof(KEY_FID2PATH)) + sizeof(*gf);
7b81779d 1115 key = kzalloc(keylen, GFP_NOFS);
bb144d09 1116 if (!key)
0a3bdb00 1117 return -ENOMEM;
d7e09d03
PT
1118 memcpy(key, KEY_FID2PATH, sizeof(KEY_FID2PATH));
1119 memcpy(key + cfs_size_round(sizeof(KEY_FID2PATH)), gf, sizeof(*gf));
1120
b0f5aad5 1121 CDEBUG(D_IOCTL, "path get "DFID" from %llu #%d\n",
d7e09d03
PT
1122 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno);
1123
d5fdc207
JL
1124 if (!fid_is_sane(&gf->gf_fid)) {
1125 rc = -EINVAL;
1126 goto out;
1127 }
d7e09d03
PT
1128
1129 /* Val is struct getinfo_fid2path result plus path */
1130 vallen = sizeof(*gf) + gf->gf_pathlen;
1131
1132 rc = obd_get_info(NULL, exp, keylen, key, &vallen, gf, NULL);
1133 if (rc != 0 && rc != -EREMOTE)
d5fdc207 1134 goto out;
d7e09d03 1135
d5fdc207
JL
1136 if (vallen <= sizeof(*gf)) {
1137 rc = -EPROTO;
1138 goto out;
1139 } else if (vallen > sizeof(*gf) + gf->gf_pathlen) {
1140 rc = -EOVERFLOW;
1141 goto out;
1142 }
d7e09d03 1143
b0f5aad5 1144 CDEBUG(D_IOCTL, "path get "DFID" from %llu #%d\n%s\n",
d7e09d03
PT
1145 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno, gf->gf_path);
1146
1147out:
7b81779d 1148 kfree(key);
d7e09d03
PT
1149 return rc;
1150}
1151
1152static int mdc_ioc_hsm_progress(struct obd_export *exp,
1153 struct hsm_progress_kernel *hpk)
1154{
1155 struct obd_import *imp = class_exp2cliimp(exp);
1156 struct hsm_progress_kernel *req_hpk;
1157 struct ptlrpc_request *req;
1158 int rc;
d7e09d03
PT
1159
1160 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_PROGRESS,
1161 LUSTRE_MDS_VERSION, MDS_HSM_PROGRESS);
34e3ff96 1162 if (!req) {
d5fdc207
JL
1163 rc = -ENOMEM;
1164 goto out;
1165 }
d7e09d03 1166
abe95823 1167 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
d7e09d03
PT
1168
1169 /* Copy hsm_progress struct */
1170 req_hpk = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_PROGRESS);
34e3ff96 1171 if (!req_hpk) {
d5fdc207
JL
1172 rc = -EPROTO;
1173 goto out;
1174 }
d7e09d03
PT
1175
1176 *req_hpk = *hpk;
2d58de78 1177 req_hpk->hpk_errval = lustre_errno_hton(hpk->hpk_errval);
d7e09d03
PT
1178
1179 ptlrpc_request_set_replen(req);
1180
1181 rc = mdc_queue_wait(req);
d7e09d03
PT
1182out:
1183 ptlrpc_req_finished(req);
1184 return rc;
1185}
1186
1187static int mdc_ioc_hsm_ct_register(struct obd_import *imp, __u32 archives)
1188{
1189 __u32 *archive_mask;
1190 struct ptlrpc_request *req;
1191 int rc;
d7e09d03
PT
1192
1193 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_REGISTER,
1194 LUSTRE_MDS_VERSION,
1195 MDS_HSM_CT_REGISTER);
34e3ff96 1196 if (!req) {
d5fdc207
JL
1197 rc = -ENOMEM;
1198 goto out;
1199 }
d7e09d03 1200
abe95823 1201 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
d7e09d03
PT
1202
1203 /* Copy hsm_progress struct */
1204 archive_mask = req_capsule_client_get(&req->rq_pill,
1205 &RMF_MDS_HSM_ARCHIVE);
34e3ff96 1206 if (!archive_mask) {
d5fdc207
JL
1207 rc = -EPROTO;
1208 goto out;
1209 }
d7e09d03
PT
1210
1211 *archive_mask = archives;
1212
1213 ptlrpc_request_set_replen(req);
1214
1215 rc = mdc_queue_wait(req);
d7e09d03
PT
1216out:
1217 ptlrpc_req_finished(req);
1218 return rc;
1219}
1220
1221static int mdc_ioc_hsm_current_action(struct obd_export *exp,
1222 struct md_op_data *op_data)
1223{
1224 struct hsm_current_action *hca = op_data->op_data;
1225 struct hsm_current_action *req_hca;
1226 struct ptlrpc_request *req;
1227 int rc;
d7e09d03
PT
1228
1229 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1230 &RQF_MDS_HSM_ACTION);
34e3ff96 1231 if (!req)
0a3bdb00 1232 return -ENOMEM;
d7e09d03 1233
d7e09d03
PT
1234 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_ACTION);
1235 if (rc) {
1236 ptlrpc_request_free(req);
0a3bdb00 1237 return rc;
d7e09d03
PT
1238 }
1239
ef2e0f55
OD
1240 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1241 op_data->op_suppgids[0], 0);
d7e09d03
PT
1242
1243 ptlrpc_request_set_replen(req);
1244
1245 rc = mdc_queue_wait(req);
1246 if (rc)
d5fdc207 1247 goto out;
d7e09d03
PT
1248
1249 req_hca = req_capsule_server_get(&req->rq_pill,
1250 &RMF_MDS_HSM_CURRENT_ACTION);
34e3ff96 1251 if (!req_hca) {
d5fdc207
JL
1252 rc = -EPROTO;
1253 goto out;
1254 }
d7e09d03
PT
1255
1256 *hca = *req_hca;
1257
d7e09d03
PT
1258out:
1259 ptlrpc_req_finished(req);
1260 return rc;
1261}
1262
1263static int mdc_ioc_hsm_ct_unregister(struct obd_import *imp)
1264{
1265 struct ptlrpc_request *req;
1266 int rc;
d7e09d03
PT
1267
1268 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_UNREGISTER,
1269 LUSTRE_MDS_VERSION,
1270 MDS_HSM_CT_UNREGISTER);
34e3ff96 1271 if (!req) {
d5fdc207
JL
1272 rc = -ENOMEM;
1273 goto out;
1274 }
d7e09d03 1275
abe95823 1276 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
d7e09d03
PT
1277
1278 ptlrpc_request_set_replen(req);
1279
1280 rc = mdc_queue_wait(req);
d7e09d03
PT
1281out:
1282 ptlrpc_req_finished(req);
1283 return rc;
1284}
1285
1286static int mdc_ioc_hsm_state_get(struct obd_export *exp,
1287 struct md_op_data *op_data)
1288{
1289 struct hsm_user_state *hus = op_data->op_data;
1290 struct hsm_user_state *req_hus;
1291 struct ptlrpc_request *req;
1292 int rc;
d7e09d03
PT
1293
1294 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1295 &RQF_MDS_HSM_STATE_GET);
34e3ff96 1296 if (!req)
0a3bdb00 1297 return -ENOMEM;
d7e09d03 1298
d7e09d03
PT
1299 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_GET);
1300 if (rc != 0) {
1301 ptlrpc_request_free(req);
0a3bdb00 1302 return rc;
d7e09d03
PT
1303 }
1304
ef2e0f55
OD
1305 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1306 op_data->op_suppgids[0], 0);
d7e09d03
PT
1307
1308 ptlrpc_request_set_replen(req);
1309
1310 rc = mdc_queue_wait(req);
1311 if (rc)
d5fdc207 1312 goto out;
d7e09d03
PT
1313
1314 req_hus = req_capsule_server_get(&req->rq_pill, &RMF_HSM_USER_STATE);
34e3ff96 1315 if (!req_hus) {
d5fdc207
JL
1316 rc = -EPROTO;
1317 goto out;
1318 }
d7e09d03
PT
1319
1320 *hus = *req_hus;
1321
d7e09d03
PT
1322out:
1323 ptlrpc_req_finished(req);
1324 return rc;
1325}
1326
1327static int mdc_ioc_hsm_state_set(struct obd_export *exp,
1328 struct md_op_data *op_data)
1329{
1330 struct hsm_state_set *hss = op_data->op_data;
1331 struct hsm_state_set *req_hss;
1332 struct ptlrpc_request *req;
1333 int rc;
d7e09d03
PT
1334
1335 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1336 &RQF_MDS_HSM_STATE_SET);
34e3ff96 1337 if (!req)
0a3bdb00 1338 return -ENOMEM;
d7e09d03 1339
d7e09d03
PT
1340 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_SET);
1341 if (rc) {
1342 ptlrpc_request_free(req);
0a3bdb00 1343 return rc;
d7e09d03
PT
1344 }
1345
ef2e0f55
OD
1346 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1347 op_data->op_suppgids[0], 0);
d7e09d03
PT
1348
1349 /* Copy states */
1350 req_hss = req_capsule_client_get(&req->rq_pill, &RMF_HSM_STATE_SET);
34e3ff96 1351 if (!req_hss) {
d5fdc207
JL
1352 rc = -EPROTO;
1353 goto out;
1354 }
d7e09d03
PT
1355 *req_hss = *hss;
1356
1357 ptlrpc_request_set_replen(req);
1358
1359 rc = mdc_queue_wait(req);
d7e09d03
PT
1360out:
1361 ptlrpc_req_finished(req);
1362 return rc;
1363}
1364
1365static int mdc_ioc_hsm_request(struct obd_export *exp,
1366 struct hsm_user_request *hur)
1367{
1368 struct obd_import *imp = class_exp2cliimp(exp);
1369 struct ptlrpc_request *req;
1370 struct hsm_request *req_hr;
1371 struct hsm_user_item *req_hui;
1372 char *req_opaque;
1373 int rc;
d7e09d03
PT
1374
1375 req = ptlrpc_request_alloc(imp, &RQF_MDS_HSM_REQUEST);
34e3ff96 1376 if (!req) {
d5fdc207
JL
1377 rc = -ENOMEM;
1378 goto out;
1379 }
d7e09d03
PT
1380
1381 req_capsule_set_size(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM, RCL_CLIENT,
1382 hur->hur_request.hr_itemcount
1383 * sizeof(struct hsm_user_item));
1384 req_capsule_set_size(&req->rq_pill, &RMF_GENERIC_DATA, RCL_CLIENT,
1385 hur->hur_request.hr_data_len);
1386
1387 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_REQUEST);
1388 if (rc) {
1389 ptlrpc_request_free(req);
0a3bdb00 1390 return rc;
d7e09d03
PT
1391 }
1392
abe95823 1393 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
d7e09d03
PT
1394
1395 /* Copy hsm_request struct */
1396 req_hr = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_REQUEST);
34e3ff96 1397 if (!req_hr) {
d5fdc207
JL
1398 rc = -EPROTO;
1399 goto out;
1400 }
d7e09d03
PT
1401 *req_hr = hur->hur_request;
1402
1403 /* Copy hsm_user_item structs */
1404 req_hui = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM);
34e3ff96 1405 if (!req_hui) {
d5fdc207
JL
1406 rc = -EPROTO;
1407 goto out;
1408 }
d7e09d03
PT
1409 memcpy(req_hui, hur->hur_user_item,
1410 hur->hur_request.hr_itemcount * sizeof(struct hsm_user_item));
1411
1412 /* Copy opaque field */
1413 req_opaque = req_capsule_client_get(&req->rq_pill, &RMF_GENERIC_DATA);
34e3ff96 1414 if (!req_opaque) {
d5fdc207
JL
1415 rc = -EPROTO;
1416 goto out;
1417 }
d7e09d03
PT
1418 memcpy(req_opaque, hur_data(hur), hur->hur_request.hr_data_len);
1419
1420 ptlrpc_request_set_replen(req);
1421
1422 rc = mdc_queue_wait(req);
d7e09d03
PT
1423out:
1424 ptlrpc_req_finished(req);
1425 return rc;
1426}
1427
1428static struct kuc_hdr *changelog_kuc_hdr(char *buf, int len, int flags)
1429{
1430 struct kuc_hdr *lh = (struct kuc_hdr *)buf;
1431
18e042f0 1432 LASSERT(len <= KUC_CHANGELOG_MSG_MAXSIZE);
d7e09d03
PT
1433
1434 lh->kuc_magic = KUC_MAGIC;
1435 lh->kuc_transport = KUC_TRANSPORT_CHANGELOG;
1436 lh->kuc_flags = flags;
1437 lh->kuc_msgtype = CL_RECORD;
1438 lh->kuc_msglen = len;
1439 return lh;
1440}
1441
1442#define D_CHANGELOG 0
1443
1444struct changelog_show {
1445 __u64 cs_startrec;
1446 __u32 cs_flags;
1447 struct file *cs_fp;
1448 char *cs_buf;
1449 struct obd_device *cs_obd;
1450};
1451
e377988e 1452static int changelog_kkuc_cb(const struct lu_env *env, struct llog_handle *llh,
d7e09d03
PT
1453 struct llog_rec_hdr *hdr, void *data)
1454{
1455 struct changelog_show *cs = data;
1456 struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
1457 struct kuc_hdr *lh;
1458 int len, rc;
d7e09d03 1459
e377988e
AD
1460 if (rec->cr_hdr.lrh_type != CHANGELOG_REC) {
1461 rc = -EINVAL;
1462 CERROR("%s: not a changelog rec %x/%d: rc = %d\n",
1463 cs->cs_obd->obd_name, rec->cr_hdr.lrh_type,
1464 rec->cr.cr_type, rc);
0a3bdb00 1465 return rc;
d7e09d03
PT
1466 }
1467
1468 if (rec->cr.cr_index < cs->cs_startrec) {
1469 /* Skip entries earlier than what we are interested in */
b0f5aad5 1470 CDEBUG(D_CHANGELOG, "rec=%llu start=%llu\n",
d7e09d03 1471 rec->cr.cr_index, cs->cs_startrec);
0a3bdb00 1472 return 0;
d7e09d03
PT
1473 }
1474
b0f5aad5 1475 CDEBUG(D_CHANGELOG, "%llu %02d%-5s %llu 0x%x t="DFID" p="DFID
d7e09d03
PT
1476 " %.*s\n", rec->cr.cr_index, rec->cr.cr_type,
1477 changelog_type2str(rec->cr.cr_type), rec->cr.cr_time,
1478 rec->cr.cr_flags & CLF_FLAGMASK,
1479 PFID(&rec->cr.cr_tfid), PFID(&rec->cr.cr_pfid),
1480 rec->cr.cr_namelen, changelog_rec_name(&rec->cr));
1481
1482 len = sizeof(*lh) + changelog_rec_size(&rec->cr) + rec->cr.cr_namelen;
1483
1484 /* Set up the message */
1485 lh = changelog_kuc_hdr(cs->cs_buf, len, cs->cs_flags);
1486 memcpy(lh + 1, &rec->cr, len - sizeof(*lh));
1487
1488 rc = libcfs_kkuc_msg_put(cs->cs_fp, lh);
301af906 1489 CDEBUG(D_CHANGELOG, "kucmsg fp %p len %d rc %d\n", cs->cs_fp, len, rc);
d7e09d03 1490
0a3bdb00 1491 return rc;
d7e09d03
PT
1492}
1493
1494static int mdc_changelog_send_thread(void *csdata)
1495{
1496 struct changelog_show *cs = csdata;
1497 struct llog_ctxt *ctxt = NULL;
1498 struct llog_handle *llh = NULL;
1499 struct kuc_hdr *kuch;
1500 int rc;
1501
b0f5aad5 1502 CDEBUG(D_CHANGELOG, "changelog to fp=%p start %llu\n",
d7e09d03
PT
1503 cs->cs_fp, cs->cs_startrec);
1504
7b81779d 1505 cs->cs_buf = kzalloc(KUC_CHANGELOG_MSG_MAXSIZE, GFP_NOFS);
bb144d09 1506 if (!cs->cs_buf) {
d5fdc207
JL
1507 rc = -ENOMEM;
1508 goto out;
1509 }
d7e09d03
PT
1510
1511 /* Set up the remote catalog handle */
1512 ctxt = llog_get_context(cs->cs_obd, LLOG_CHANGELOG_REPL_CTXT);
34e3ff96 1513 if (!ctxt) {
d5fdc207
JL
1514 rc = -ENOENT;
1515 goto out;
1516 }
d7e09d03
PT
1517 rc = llog_open(NULL, ctxt, &llh, NULL, CHANGELOG_CATALOG,
1518 LLOG_OPEN_EXISTS);
1519 if (rc) {
1520 CERROR("%s: fail to open changelog catalog: rc = %d\n",
1521 cs->cs_obd->obd_name, rc);
d5fdc207 1522 goto out;
d7e09d03
PT
1523 }
1524 rc = llog_init_handle(NULL, llh, LLOG_F_IS_CAT, NULL);
1525 if (rc) {
1526 CERROR("llog_init_handle failed %d\n", rc);
d5fdc207 1527 goto out;
d7e09d03
PT
1528 }
1529
e377988e 1530 rc = llog_cat_process(NULL, llh, changelog_kkuc_cb, cs, 0, 0);
d7e09d03
PT
1531
1532 /* Send EOF no matter what our result */
4a87df3e
CP
1533 kuch = changelog_kuc_hdr(cs->cs_buf, sizeof(*kuch), cs->cs_flags);
1534 if (kuch) {
d7e09d03
PT
1535 kuch->kuc_msgtype = CL_EOF;
1536 libcfs_kkuc_msg_put(cs->cs_fp, kuch);
1537 }
1538
1539out:
1540 fput(cs->cs_fp);
1541 if (llh)
1542 llog_cat_close(NULL, llh);
1543 if (ctxt)
1544 llog_ctxt_put(ctxt);
6fa7cbab 1545 kfree(cs->cs_buf);
7b81779d 1546 kfree(cs);
d7e09d03
PT
1547 return rc;
1548}
1549
1550static int mdc_ioc_changelog_send(struct obd_device *obd,
1551 struct ioc_changelog *icc)
1552{
1553 struct changelog_show *cs;
060c2820 1554 struct task_struct *task;
d7e09d03
PT
1555 int rc;
1556
1557 /* Freed in mdc_changelog_send_thread */
7b81779d 1558 cs = kzalloc(sizeof(*cs), GFP_NOFS);
d7e09d03
PT
1559 if (!cs)
1560 return -ENOMEM;
1561
1562 cs->cs_obd = obd;
1563 cs->cs_startrec = icc->icc_recno;
1564 /* matching fput in mdc_changelog_send_thread */
1565 cs->cs_fp = fget(icc->icc_id);
1566 cs->cs_flags = icc->icc_flags;
1567
1568 /*
1569 * New thread because we should return to user app before
1570 * writing into our pipe
1571 */
060c2820
JH
1572 task = kthread_run(mdc_changelog_send_thread, cs,
1573 "mdc_clg_send_thread");
1574 if (IS_ERR(task)) {
1575 rc = PTR_ERR(task);
1576 CERROR("%s: can't start changelog thread: rc = %d\n",
1577 obd->obd_name, rc);
1578 kfree(cs);
1579 } else {
1580 rc = 0;
1581 CDEBUG(D_CHANGELOG, "%s: started changelog thread\n",
1582 obd->obd_name);
d7e09d03
PT
1583 }
1584
1585 CERROR("Failed to start changelog thread: %d\n", rc);
d7e09d03
PT
1586 return rc;
1587}
1588
1589static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
1590 struct lustre_kernelcomm *lk);
1591
1592static int mdc_quotacheck(struct obd_device *unused, struct obd_export *exp,
1593 struct obd_quotactl *oqctl)
1594{
1595 struct client_obd *cli = &exp->exp_obd->u.cli;
1596 struct ptlrpc_request *req;
1597 struct obd_quotactl *body;
1598 int rc;
d7e09d03
PT
1599
1600 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1601 &RQF_MDS_QUOTACHECK, LUSTRE_MDS_VERSION,
1602 MDS_QUOTACHECK);
34e3ff96 1603 if (!req)
0a3bdb00 1604 return -ENOMEM;
d7e09d03
PT
1605
1606 body = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1607 *body = *oqctl;
1608
1609 ptlrpc_request_set_replen(req);
1610
1611 /* the next poll will find -ENODATA, that means quotacheck is
1df232ee
OD
1612 * going on
1613 */
d7e09d03
PT
1614 cli->cl_qchk_stat = -ENODATA;
1615 rc = ptlrpc_queue_wait(req);
1616 if (rc)
1617 cli->cl_qchk_stat = rc;
1618 ptlrpc_req_finished(req);
0a3bdb00 1619 return rc;
d7e09d03
PT
1620}
1621
1622static int mdc_quota_poll_check(struct obd_export *exp,
1623 struct if_quotacheck *qchk)
1624{
1625 struct client_obd *cli = &exp->exp_obd->u.cli;
1626 int rc;
d7e09d03
PT
1627
1628 qchk->obd_uuid = cli->cl_target_uuid;
1629 memcpy(qchk->obd_type, LUSTRE_MDS_NAME, strlen(LUSTRE_MDS_NAME));
1630
1631 rc = cli->cl_qchk_stat;
1632 /* the client is not the previous one */
1633 if (rc == CL_NOT_QUOTACHECKED)
1634 rc = -EINTR;
0a3bdb00 1635 return rc;
d7e09d03
PT
1636}
1637
1638static int mdc_quotactl(struct obd_device *unused, struct obd_export *exp,
1639 struct obd_quotactl *oqctl)
1640{
1641 struct ptlrpc_request *req;
1642 struct obd_quotactl *oqc;
1643 int rc;
d7e09d03
PT
1644
1645 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1646 &RQF_MDS_QUOTACTL, LUSTRE_MDS_VERSION,
1647 MDS_QUOTACTL);
34e3ff96 1648 if (!req)
0a3bdb00 1649 return -ENOMEM;
d7e09d03
PT
1650
1651 oqc = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1652 *oqc = *oqctl;
1653
1654 ptlrpc_request_set_replen(req);
1655 ptlrpc_at_set_req_timeout(req);
1656 req->rq_no_resend = 1;
1657
1658 rc = ptlrpc_queue_wait(req);
1659 if (rc)
1660 CERROR("ptlrpc_queue_wait failed, rc: %d\n", rc);
1661
4a87df3e
CP
1662 if (req->rq_repmsg) {
1663 oqc = req_capsule_server_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1664 if (oqc) {
1665 *oqctl = *oqc;
1666 } else if (!rc) {
ffdac6ce 1667 CERROR("Can't unpack obd_quotactl\n");
4a87df3e
CP
1668 rc = -EPROTO;
1669 }
d7e09d03 1670 } else if (!rc) {
4a87df3e 1671 CERROR("Can't unpack obd_quotactl\n");
d7e09d03
PT
1672 rc = -EPROTO;
1673 }
1674 ptlrpc_req_finished(req);
1675
0a3bdb00 1676 return rc;
d7e09d03
PT
1677}
1678
1679static int mdc_ioc_swap_layouts(struct obd_export *exp,
1680 struct md_op_data *op_data)
1681{
1682 LIST_HEAD(cancels);
1683 struct ptlrpc_request *req;
1684 int rc, count;
1685 struct mdc_swap_layouts *msl, *payload;
d7e09d03
PT
1686
1687 msl = op_data->op_data;
1688
1689 /* When the MDT will get the MDS_SWAP_LAYOUTS RPC the
1690 * first thing it will do is to cancel the 2 layout
1691 * locks hold by this client.
1692 * So the client must cancel its layout locks on the 2 fids
1693 * with the request RPC to avoid extra RPC round trips
1694 */
1695 count = mdc_resource_get_unused(exp, &op_data->op_fid1, &cancels,
1696 LCK_CR, MDS_INODELOCK_LAYOUT);
1697 count += mdc_resource_get_unused(exp, &op_data->op_fid2, &cancels,
1698 LCK_CR, MDS_INODELOCK_LAYOUT);
1699
1700 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1701 &RQF_MDS_SWAP_LAYOUTS);
34e3ff96 1702 if (!req) {
d7e09d03 1703 ldlm_lock_list_put(&cancels, l_bl_ast, count);
0a3bdb00 1704 return -ENOMEM;
d7e09d03
PT
1705 }
1706
d7e09d03
PT
1707 rc = mdc_prep_elc_req(exp, req, MDS_SWAP_LAYOUTS, &cancels, count);
1708 if (rc) {
1709 ptlrpc_request_free(req);
0a3bdb00 1710 return rc;
d7e09d03
PT
1711 }
1712
1713 mdc_swap_layouts_pack(req, op_data);
1714
1715 payload = req_capsule_client_get(&req->rq_pill, &RMF_SWAP_LAYOUTS);
1716 LASSERT(payload);
1717
1718 *payload = *msl;
1719
1720 ptlrpc_request_set_replen(req);
1721
1722 rc = ptlrpc_queue_wait(req);
d7e09d03 1723
d7e09d03
PT
1724 ptlrpc_req_finished(req);
1725 return rc;
1726}
1727
1728static int mdc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
e09bee34 1729 void *karg, void __user *uarg)
d7e09d03
PT
1730{
1731 struct obd_device *obd = exp->exp_obd;
1732 struct obd_ioctl_data *data = karg;
1733 struct obd_import *imp = obd->u.cli.cl_import;
d7e09d03 1734 int rc;
d7e09d03
PT
1735
1736 if (!try_module_get(THIS_MODULE)) {
19b2056f
JN
1737 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1738 module_name(THIS_MODULE));
d7e09d03
PT
1739 return -EINVAL;
1740 }
1741 switch (cmd) {
1742 case OBD_IOC_CHANGELOG_SEND:
1743 rc = mdc_ioc_changelog_send(obd, karg);
d5fdc207 1744 goto out;
d7e09d03
PT
1745 case OBD_IOC_CHANGELOG_CLEAR: {
1746 struct ioc_changelog *icc = karg;
1a4cd3e9
SM
1747 struct changelog_setinfo cs = {
1748 .cs_recno = icc->icc_recno,
1749 .cs_id = icc->icc_id
1750 };
1751
d7e09d03
PT
1752 rc = obd_set_info_async(NULL, exp, strlen(KEY_CHANGELOG_CLEAR),
1753 KEY_CHANGELOG_CLEAR, sizeof(cs), &cs,
1754 NULL);
d5fdc207 1755 goto out;
d7e09d03
PT
1756 }
1757 case OBD_IOC_FID2PATH:
1758 rc = mdc_ioc_fid2path(exp, karg);
d5fdc207 1759 goto out;
d7e09d03
PT
1760 case LL_IOC_HSM_CT_START:
1761 rc = mdc_ioc_hsm_ct_start(exp, karg);
78eb9092
TL
1762 /* ignore if it was already registered on this MDS. */
1763 if (rc == -EEXIST)
1764 rc = 0;
d5fdc207 1765 goto out;
d7e09d03
PT
1766 case LL_IOC_HSM_PROGRESS:
1767 rc = mdc_ioc_hsm_progress(exp, karg);
d5fdc207 1768 goto out;
d7e09d03
PT
1769 case LL_IOC_HSM_STATE_GET:
1770 rc = mdc_ioc_hsm_state_get(exp, karg);
d5fdc207 1771 goto out;
d7e09d03
PT
1772 case LL_IOC_HSM_STATE_SET:
1773 rc = mdc_ioc_hsm_state_set(exp, karg);
d5fdc207 1774 goto out;
d7e09d03
PT
1775 case LL_IOC_HSM_ACTION:
1776 rc = mdc_ioc_hsm_current_action(exp, karg);
d5fdc207 1777 goto out;
d7e09d03
PT
1778 case LL_IOC_HSM_REQUEST:
1779 rc = mdc_ioc_hsm_request(exp, karg);
d5fdc207 1780 goto out;
d7e09d03
PT
1781 case OBD_IOC_CLIENT_RECOVER:
1782 rc = ptlrpc_recover_import(imp, data->ioc_inlbuf1, 0);
1783 if (rc < 0)
d5fdc207
JL
1784 goto out;
1785 rc = 0;
1786 goto out;
d7e09d03
PT
1787 case IOC_OSC_SET_ACTIVE:
1788 rc = ptlrpc_set_import_active(imp, data->ioc_offset);
d5fdc207 1789 goto out;
d7e09d03
PT
1790 case OBD_IOC_POLL_QUOTACHECK:
1791 rc = mdc_quota_poll_check(exp, (struct if_quotacheck *)karg);
d5fdc207 1792 goto out;
d7e09d03
PT
1793 case OBD_IOC_PING_TARGET:
1794 rc = ptlrpc_obd_ping(obd);
d5fdc207 1795 goto out;
d7e09d03
PT
1796 /*
1797 * Normally IOC_OBD_STATFS, OBD_IOC_QUOTACTL iocontrol are handled by
1798 * LMV instead of MDC. But when the cluster is upgraded from 1.8,
1799 * there'd be no LMV layer thus we might be called here. Eventually
1800 * this code should be removed.
1801 * bz20731, LU-592.
1802 */
1803 case IOC_OBD_STATFS: {
1804 struct obd_statfs stat_buf = {0};
1805
d5fdc207
JL
1806 if (*((__u32 *) data->ioc_inlbuf2) != 0) {
1807 rc = -ENODEV;
1808 goto out;
1809 }
d7e09d03
PT
1810
1811 /* copy UUID */
1812 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(obd),
ef4356bf 1813 min_t(size_t, data->ioc_plen2,
22e0bc6a 1814 sizeof(struct obd_uuid)))) {
d5fdc207
JL
1815 rc = -EFAULT;
1816 goto out;
1817 }
d7e09d03
PT
1818
1819 rc = mdc_statfs(NULL, obd->obd_self_export, &stat_buf,
1820 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1821 0);
1822 if (rc != 0)
d5fdc207 1823 goto out;
d7e09d03
PT
1824
1825 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
ef4356bf 1826 min_t(size_t, data->ioc_plen1,
22e0bc6a 1827 sizeof(stat_buf)))) {
d5fdc207
JL
1828 rc = -EFAULT;
1829 goto out;
1830 }
d7e09d03 1831
d5fdc207
JL
1832 rc = 0;
1833 goto out;
d7e09d03
PT
1834 }
1835 case OBD_IOC_QUOTACTL: {
1836 struct if_quotactl *qctl = karg;
1837 struct obd_quotactl *oqctl;
1838
7b81779d 1839 oqctl = kzalloc(sizeof(*oqctl), GFP_NOFS);
bb144d09 1840 if (!oqctl) {
d5fdc207
JL
1841 rc = -ENOMEM;
1842 goto out;
1843 }
d7e09d03
PT
1844
1845 QCTL_COPY(oqctl, qctl);
1846 rc = obd_quotactl(exp, oqctl);
1847 if (rc == 0) {
1848 QCTL_COPY(qctl, oqctl);
1849 qctl->qc_valid = QC_MDTIDX;
1850 qctl->obd_uuid = obd->u.cli.cl_target_uuid;
1851 }
c1f3d689 1852
7b81779d 1853 kfree(oqctl);
d5fdc207 1854 goto out;
d7e09d03 1855 }
c1f3d689
JH
1856 case LL_IOC_GET_CONNECT_FLAGS:
1857 if (copy_to_user(uarg, exp_connect_flags_ptr(exp),
d5fdc207
JL
1858 sizeof(*exp_connect_flags_ptr(exp)))) {
1859 rc = -EFAULT;
1860 goto out;
1861 }
c1f3d689 1862
d5fdc207
JL
1863 rc = 0;
1864 goto out;
c1f3d689 1865 case LL_IOC_LOV_SWAP_LAYOUTS:
d7e09d03 1866 rc = mdc_ioc_swap_layouts(exp, karg);
d5fdc207 1867 goto out;
d7e09d03 1868 default:
c1f3d689 1869 CERROR("unrecognised ioctl: cmd = %#x\n", cmd);
d5fdc207
JL
1870 rc = -ENOTTY;
1871 goto out;
d7e09d03
PT
1872 }
1873out:
1874 module_put(THIS_MODULE);
1875
1876 return rc;
1877}
1878
f6219c16
LC
1879static int mdc_get_info_rpc(struct obd_export *exp,
1880 u32 keylen, void *key,
1881 int vallen, void *val)
d7e09d03
PT
1882{
1883 struct obd_import *imp = class_exp2cliimp(exp);
1884 struct ptlrpc_request *req;
1885 char *tmp;
1886 int rc = -EINVAL;
d7e09d03
PT
1887
1888 req = ptlrpc_request_alloc(imp, &RQF_MDS_GET_INFO);
34e3ff96 1889 if (!req)
0a3bdb00 1890 return -ENOMEM;
d7e09d03
PT
1891
1892 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY,
1893 RCL_CLIENT, keylen);
1894 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VALLEN,
1895 RCL_CLIENT, sizeof(__u32));
1896
1897 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GET_INFO);
1898 if (rc) {
1899 ptlrpc_request_free(req);
0a3bdb00 1900 return rc;
d7e09d03
PT
1901 }
1902
1903 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
1904 memcpy(tmp, key, keylen);
1905 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_VALLEN);
1906 memcpy(tmp, &vallen, sizeof(__u32));
1907
1908 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VAL,
1909 RCL_SERVER, vallen);
1910 ptlrpc_request_set_replen(req);
1911
1912 rc = ptlrpc_queue_wait(req);
1913 /* -EREMOTE means the get_info result is partial, and it needs to
1df232ee
OD
1914 * continue on another MDT, see fid2path part in lmv_iocontrol
1915 */
d7e09d03
PT
1916 if (rc == 0 || rc == -EREMOTE) {
1917 tmp = req_capsule_server_get(&req->rq_pill, &RMF_GETINFO_VAL);
1918 memcpy(val, tmp, vallen);
1919 if (ptlrpc_rep_need_swab(req)) {
1920 if (KEY_IS(KEY_FID2PATH))
1921 lustre_swab_fid2path(val);
1922 }
1923 }
1924 ptlrpc_req_finished(req);
1925
0a3bdb00 1926 return rc;
d7e09d03
PT
1927}
1928
1929static void lustre_swab_hai(struct hsm_action_item *h)
1930{
1931 __swab32s(&h->hai_len);
1932 __swab32s(&h->hai_action);
1933 lustre_swab_lu_fid(&h->hai_fid);
1934 lustre_swab_lu_fid(&h->hai_dfid);
1935 __swab64s(&h->hai_cookie);
1936 __swab64s(&h->hai_extent.offset);
1937 __swab64s(&h->hai_extent.length);
1938 __swab64s(&h->hai_gid);
1939}
1940
1941static void lustre_swab_hal(struct hsm_action_list *h)
1942{
1943 struct hsm_action_item *hai;
1944 int i;
1945
1946 __swab32s(&h->hal_version);
1947 __swab32s(&h->hal_count);
1948 __swab32s(&h->hal_archive_id);
1949 __swab64s(&h->hal_flags);
18ecab0d 1950 hai = hai_first(h);
18dfaebf 1951 for (i = 0; i < h->hal_count; i++, hai = hai_next(hai))
d7e09d03 1952 lustre_swab_hai(hai);
d7e09d03
PT
1953}
1954
1955static void lustre_swab_kuch(struct kuc_hdr *l)
1956{
1957 __swab16s(&l->kuc_magic);
1958 /* __u8 l->kuc_transport */
1959 __swab16s(&l->kuc_msgtype);
1960 __swab16s(&l->kuc_msglen);
1961}
1962
1963static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
1964 struct lustre_kernelcomm *lk)
1965{
1966 struct obd_import *imp = class_exp2cliimp(exp);
1967 __u32 archive = lk->lk_data;
1968 int rc = 0;
1969
1970 if (lk->lk_group != KUC_GRP_HSM) {
1971 CERROR("Bad copytool group %d\n", lk->lk_group);
1972 return -EINVAL;
1973 }
1974
1975 CDEBUG(D_HSM, "CT start r%d w%d u%d g%d f%#x\n", lk->lk_rfd, lk->lk_wfd,
1976 lk->lk_uid, lk->lk_group, lk->lk_flags);
1977
1978 if (lk->lk_flags & LK_FLG_STOP) {
d7e09d03 1979 /* Unregister with the coordinator */
78eb9092 1980 rc = mdc_ioc_hsm_ct_unregister(imp);
d7e09d03 1981 } else {
78eb9092 1982 rc = mdc_ioc_hsm_ct_register(imp, archive);
d7e09d03
PT
1983 }
1984
1985 return rc;
1986}
1987
1988/**
1989 * Send a message to any listening copytools
1990 * @param val KUC message (kuc_hdr + hsm_action_list)
1991 * @param len total length of message
1992 */
1993static int mdc_hsm_copytool_send(int len, void *val)
1994{
1995 struct kuc_hdr *lh = (struct kuc_hdr *)val;
1996 struct hsm_action_list *hal = (struct hsm_action_list *)(lh + 1);
d7e09d03
PT
1997
1998 if (len < sizeof(*lh) + sizeof(*hal)) {
1999 CERROR("Short HSM message %d < %d\n", len,
2000 (int) (sizeof(*lh) + sizeof(*hal)));
0a3bdb00 2001 return -EPROTO;
d7e09d03
PT
2002 }
2003 if (lh->kuc_magic == __swab16(KUC_MAGIC)) {
2004 lustre_swab_kuch(lh);
2005 lustre_swab_hal(hal);
2006 } else if (lh->kuc_magic != KUC_MAGIC) {
2007 CERROR("Bad magic %x!=%x\n", lh->kuc_magic, KUC_MAGIC);
0a3bdb00 2008 return -EPROTO;
d7e09d03
PT
2009 }
2010
ee990b33
SM
2011 CDEBUG(D_HSM,
2012 "Received message mg=%x t=%d m=%d l=%d actions=%d on %s\n",
d7e09d03
PT
2013 lh->kuc_magic, lh->kuc_transport, lh->kuc_msgtype,
2014 lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
2015
2016 /* Broadcast to HSM listeners */
da2a7272 2017 return libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
d7e09d03
PT
2018}
2019
2020/**
2021 * callback function passed to kuc for re-registering each HSM copytool
2022 * running on MDC, after MDT shutdown/recovery.
406fc913 2023 * @param data copytool registration data
d7e09d03
PT
2024 * @param cb_arg callback argument (obd_import)
2025 */
406fc913 2026static int mdc_hsm_ct_reregister(void *data, void *cb_arg)
d7e09d03 2027{
406fc913 2028 struct kkuc_ct_data *kcd = data;
d7e09d03 2029 struct obd_import *imp = (struct obd_import *)cb_arg;
d7e09d03
PT
2030 int rc;
2031
406fc913
HD
2032 if (!kcd || kcd->kcd_magic != KKUC_CT_DATA_MAGIC)
2033 return -EPROTO;
2034
2035 if (!obd_uuid_equals(&kcd->kcd_uuid, &imp->imp_obd->obd_uuid))
2036 return 0;
2037
2038 CDEBUG(D_HA, "%s: recover copytool registration to MDT (archive=%#x)\n",
2039 imp->imp_obd->obd_name, kcd->kcd_archive);
2040 rc = mdc_ioc_hsm_ct_register(imp, kcd->kcd_archive);
d7e09d03
PT
2041
2042 /* ignore error if the copytool is already registered */
406fc913 2043 return (rc == -EEXIST) ? 0 : rc;
d7e09d03
PT
2044}
2045
f6219c16
LC
2046static int mdc_set_info_async(const struct lu_env *env,
2047 struct obd_export *exp,
2048 u32 keylen, void *key,
2049 u32 vallen, void *val,
2050 struct ptlrpc_request_set *set)
d7e09d03
PT
2051{
2052 struct obd_import *imp = class_exp2cliimp(exp);
2053 int rc;
d7e09d03
PT
2054
2055 if (KEY_IS(KEY_READ_ONLY)) {
2056 if (vallen != sizeof(int))
0a3bdb00 2057 return -EINVAL;
d7e09d03
PT
2058
2059 spin_lock(&imp->imp_lock);
2060 if (*((int *)val)) {
2061 imp->imp_connect_flags_orig |= OBD_CONNECT_RDONLY;
2062 imp->imp_connect_data.ocd_connect_flags |=
2063 OBD_CONNECT_RDONLY;
2064 } else {
2065 imp->imp_connect_flags_orig &= ~OBD_CONNECT_RDONLY;
2066 imp->imp_connect_data.ocd_connect_flags &=
2067 ~OBD_CONNECT_RDONLY;
2068 }
2069 spin_unlock(&imp->imp_lock);
2070
2071 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2072 keylen, key, vallen, val, set);
0a3bdb00 2073 return rc;
d7e09d03
PT
2074 }
2075 if (KEY_IS(KEY_SPTLRPC_CONF)) {
2076 sptlrpc_conf_client_adapt(exp->exp_obd);
0a3bdb00 2077 return 0;
d7e09d03
PT
2078 }
2079 if (KEY_IS(KEY_FLUSH_CTX)) {
2080 sptlrpc_import_flush_my_ctx(imp);
0a3bdb00 2081 return 0;
d7e09d03 2082 }
d7e09d03
PT
2083 if (KEY_IS(KEY_CHANGELOG_CLEAR)) {
2084 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2085 keylen, key, vallen, val, set);
0a3bdb00 2086 return rc;
d7e09d03
PT
2087 }
2088 if (KEY_IS(KEY_HSM_COPYTOOL_SEND)) {
2089 rc = mdc_hsm_copytool_send(vallen, val);
0a3bdb00 2090 return rc;
d7e09d03
PT
2091 }
2092
2093 CERROR("Unknown key %s\n", (char *)key);
0a3bdb00 2094 return -EINVAL;
d7e09d03
PT
2095}
2096
f6219c16
LC
2097static int mdc_get_info(const struct lu_env *env, struct obd_export *exp,
2098 __u32 keylen, void *key, __u32 *vallen, void *val,
2099 struct lov_stripe_md *lsm)
d7e09d03
PT
2100{
2101 int rc = -EINVAL;
2102
2103 if (KEY_IS(KEY_MAX_EASIZE)) {
2104 int mdsize, *max_easize;
2105
2106 if (*vallen != sizeof(int))
0a3bdb00 2107 return -EINVAL;
44779340 2108 mdsize = *(int *)val;
d7e09d03
PT
2109 if (mdsize > exp->exp_obd->u.cli.cl_max_mds_easize)
2110 exp->exp_obd->u.cli.cl_max_mds_easize = mdsize;
2111 max_easize = val;
2112 *max_easize = exp->exp_obd->u.cli.cl_max_mds_easize;
0a3bdb00 2113 return 0;
44779340
BB
2114 } else if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2115 int *default_easize;
2116
2117 if (*vallen != sizeof(int))
2118 return -EINVAL;
2119 default_easize = val;
2120 *default_easize = exp->exp_obd->u.cli.cl_default_mds_easize;
2121 return 0;
d7e09d03
PT
2122 } else if (KEY_IS(KEY_CONN_DATA)) {
2123 struct obd_import *imp = class_exp2cliimp(exp);
2124 struct obd_connect_data *data = val;
2125
2126 if (*vallen != sizeof(*data))
0a3bdb00 2127 return -EINVAL;
d7e09d03
PT
2128
2129 *data = imp->imp_connect_data;
0a3bdb00 2130 return 0;
d7e09d03
PT
2131 } else if (KEY_IS(KEY_TGT_COUNT)) {
2132 *((int *)val) = 1;
0a3bdb00 2133 return 0;
d7e09d03
PT
2134 }
2135
2136 rc = mdc_get_info_rpc(exp, keylen, key, *vallen, val);
2137
0a3bdb00 2138 return rc;
d7e09d03
PT
2139}
2140
f6219c16 2141static int mdc_sync(struct obd_export *exp, const struct lu_fid *fid,
ef2e0f55 2142 struct ptlrpc_request **request)
d7e09d03
PT
2143{
2144 struct ptlrpc_request *req;
2145 int rc;
d7e09d03
PT
2146
2147 *request = NULL;
2148 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_SYNC);
34e3ff96 2149 if (!req)
0a3bdb00 2150 return -ENOMEM;
d7e09d03 2151
d7e09d03
PT
2152 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SYNC);
2153 if (rc) {
2154 ptlrpc_request_free(req);
0a3bdb00 2155 return rc;
d7e09d03
PT
2156 }
2157
ef2e0f55 2158 mdc_pack_body(req, fid, 0, 0, -1, 0);
d7e09d03
PT
2159
2160 ptlrpc_request_set_replen(req);
2161
2162 rc = ptlrpc_queue_wait(req);
2163 if (rc)
2164 ptlrpc_req_finished(req);
2165 else
2166 *request = req;
0a3bdb00 2167 return rc;
d7e09d03
PT
2168}
2169
2170static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
2171 enum obd_import_event event)
2172{
2173 int rc = 0;
2174
2175 LASSERT(imp->imp_obd == obd);
2176
2177 switch (event) {
2178 case IMP_EVENT_DISCON: {
2179#if 0
2180 /* XXX Pass event up to OBDs stack. used only for FLD now */
2181 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_DISCON, NULL);
2182#endif
2183 break;
2184 }
2185 case IMP_EVENT_INACTIVE: {
2186 struct client_obd *cli = &obd->u.cli;
2187 /*
2188 * Flush current sequence to make client obtain new one
2189 * from server in case of disconnect/reconnect.
2190 */
34e3ff96 2191 if (cli->cl_seq)
d7e09d03
PT
2192 seq_client_flush(cli->cl_seq);
2193
2194 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_INACTIVE, NULL);
2195 break;
2196 }
2197 case IMP_EVENT_INVALIDATE: {
2198 struct ldlm_namespace *ns = obd->obd_namespace;
2199
2200 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
2201
2202 break;
2203 }
2204 case IMP_EVENT_ACTIVE:
2205 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVE, NULL);
78eb9092 2206 /* redo the kuc registration after reconnecting */
d7e09d03 2207 if (rc == 0)
dd40ca46
SB
2208 /* re-register HSM agents */
2209 rc = libcfs_kkuc_group_foreach(KUC_GRP_HSM,
2210 mdc_hsm_ct_reregister,
2211 (void *)imp);
d7e09d03
PT
2212 break;
2213 case IMP_EVENT_OCD:
2214 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_OCD, NULL);
2215 break;
2216 case IMP_EVENT_DEACTIVATE:
2217 case IMP_EVENT_ACTIVATE:
2218 break;
2219 default:
2220 CERROR("Unknown import event %x\n", event);
2221 LBUG();
2222 }
0a3bdb00 2223 return rc;
d7e09d03
PT
2224}
2225
2226int mdc_fid_alloc(struct obd_export *exp, struct lu_fid *fid,
2227 struct md_op_data *op_data)
2228{
2229 struct client_obd *cli = &exp->exp_obd->u.cli;
2230 struct lu_client_seq *seq = cli->cl_seq;
29aaf496 2231
0a3bdb00 2232 return seq_client_alloc_fid(NULL, seq, fid);
d7e09d03
PT
2233}
2234
f6219c16 2235static struct obd_uuid *mdc_get_uuid(struct obd_export *exp)
982ec91f 2236{
d7e09d03 2237 struct client_obd *cli = &exp->exp_obd->u.cli;
7436d070 2238
d7e09d03
PT
2239 return &cli->cl_target_uuid;
2240}
2241
2242/**
2243 * Determine whether the lock can be canceled before replaying it during
2244 * recovery, non zero value will be return if the lock can be canceled,
2245 * or zero returned for not
2246 */
7d443334 2247static int mdc_cancel_weight(struct ldlm_lock *lock)
d7e09d03
PT
2248{
2249 if (lock->l_resource->lr_type != LDLM_IBITS)
0a3bdb00 2250 return 0;
d7e09d03
PT
2251
2252 /* FIXME: if we ever get into a situation where there are too many
2253 * opened files with open locks on a single node, then we really
1df232ee
OD
2254 * should replay these open locks to reget it
2255 */
d7e09d03 2256 if (lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_OPEN)
0a3bdb00 2257 return 0;
d7e09d03 2258
0a3bdb00 2259 return 1;
d7e09d03
PT
2260}
2261
2262static int mdc_resource_inode_free(struct ldlm_resource *res)
2263{
2264 if (res->lr_lvb_inode)
2265 res->lr_lvb_inode = NULL;
2266
2267 return 0;
2268}
2269
f6219c16 2270static struct ldlm_valblock_ops inode_lvbo = {
805e517a 2271 .lvbo_free = mdc_resource_inode_free,
d7e09d03
PT
2272};
2273
903af118
JH
2274static int mdc_llog_init(struct obd_device *obd)
2275{
2276 struct obd_llog_group *olg = &obd->obd_olg;
2277 struct llog_ctxt *ctxt;
2278 int rc;
2279
2280 rc = llog_setup(NULL, obd, olg, LLOG_CHANGELOG_REPL_CTXT, obd,
2281 &llog_client_ops);
2282 if (rc)
2283 return rc;
2284
2285 ctxt = llog_group_get_ctxt(olg, LLOG_CHANGELOG_REPL_CTXT);
2286 llog_initiator_connect(ctxt);
2287 llog_ctxt_put(ctxt);
2288
2289 return 0;
2290}
2291
2292static void mdc_llog_finish(struct obd_device *obd)
2293{
2294 struct llog_ctxt *ctxt;
2295
2296 ctxt = llog_get_context(obd, LLOG_CHANGELOG_REPL_CTXT);
2297 if (ctxt)
2298 llog_cleanup(NULL, ctxt);
2299}
2300
d7e09d03
PT
2301static int mdc_setup(struct obd_device *obd, struct lustre_cfg *cfg)
2302{
2303 struct client_obd *cli = &obd->u.cli;
ea7893bb 2304 struct lprocfs_static_vars lvars = { NULL };
d7e09d03 2305 int rc;
d7e09d03 2306
7b81779d 2307 cli->cl_rpc_lock = kzalloc(sizeof(*cli->cl_rpc_lock), GFP_NOFS);
d7e09d03 2308 if (!cli->cl_rpc_lock)
0a3bdb00 2309 return -ENOMEM;
d7e09d03
PT
2310 mdc_init_rpc_lock(cli->cl_rpc_lock);
2311
cc3b7758
SP
2312 rc = ptlrpcd_addref();
2313 if (rc < 0)
2314 goto err_rpc_lock;
d7e09d03 2315
7b81779d 2316 cli->cl_close_lock = kzalloc(sizeof(*cli->cl_close_lock), GFP_NOFS);
d5fdc207
JL
2317 if (!cli->cl_close_lock) {
2318 rc = -ENOMEM;
cc3b7758 2319 goto err_ptlrpcd_decref;
d5fdc207 2320 }
d7e09d03
PT
2321 mdc_init_rpc_lock(cli->cl_close_lock);
2322
2323 rc = client_obd_setup(obd, cfg);
2324 if (rc)
d5fdc207 2325 goto err_close_lock;
d7e09d03 2326 lprocfs_mdc_init_vars(&lvars);
9b801302 2327 lprocfs_obd_setup(obd, lvars.obd_vars, lvars.sysfs_vars);
d7e09d03
PT
2328 sptlrpc_lprocfs_cliobd_attach(obd);
2329 ptlrpc_lprocfs_register_obd(obd);
2330
7d443334 2331 ns_register_cancel(obd->obd_namespace, mdc_cancel_weight);
d7e09d03
PT
2332
2333 obd->obd_namespace->ns_lvbo = &inode_lvbo;
2334
903af118 2335 rc = mdc_llog_init(obd);
d7e09d03
PT
2336 if (rc) {
2337 mdc_cleanup(obd);
2338 CERROR("failed to setup llogging subsystems\n");
2339 }
2340
0a3bdb00 2341 return rc;
d7e09d03
PT
2342
2343err_close_lock:
7b81779d 2344 kfree(cli->cl_close_lock);
cc3b7758
SP
2345err_ptlrpcd_decref:
2346 ptlrpcd_decref();
d7e09d03 2347err_rpc_lock:
7b81779d 2348 kfree(cli->cl_rpc_lock);
0a3bdb00 2349 return rc;
d7e09d03
PT
2350}
2351
2352/* Initialize the default and maximum LOV EA and cookie sizes. This allows
44779340
BB
2353 * us to make MDS RPCs with large enough reply buffers to hold a default
2354 * sized EA and cookie without having to calculate this (via a call into the
2355 * LOV + OSCs) each time we make an RPC. The maximum size is also tracked
2356 * but not used to avoid wastefully vmalloc()'ing large reply buffers when
2357 * a large number of stripes is possible. If a larger reply buffer is
2358 * required it will be reallocated in the ptlrpc layer due to overflow.
2359 */
d7e09d03 2360static int mdc_init_ea_size(struct obd_export *exp, int easize,
44779340 2361 int def_easize, int cookiesize, int def_cookiesize)
d7e09d03
PT
2362{
2363 struct obd_device *obd = exp->exp_obd;
2364 struct client_obd *cli = &obd->u.cli;
d7e09d03
PT
2365
2366 if (cli->cl_max_mds_easize < easize)
2367 cli->cl_max_mds_easize = easize;
2368
2369 if (cli->cl_default_mds_easize < def_easize)
2370 cli->cl_default_mds_easize = def_easize;
2371
2372 if (cli->cl_max_mds_cookiesize < cookiesize)
2373 cli->cl_max_mds_cookiesize = cookiesize;
2374
44779340
BB
2375 if (cli->cl_default_mds_cookiesize < def_cookiesize)
2376 cli->cl_default_mds_cookiesize = def_cookiesize;
2377
0a3bdb00 2378 return 0;
d7e09d03
PT
2379}
2380
2381static int mdc_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
2382{
d7e09d03
PT
2383 switch (stage) {
2384 case OBD_CLEANUP_EARLY:
2385 break;
2386 case OBD_CLEANUP_EXPORTS:
2387 /* Failsafe, ok if racy */
2388 if (obd->obd_type->typ_refcnt <= 1)
17328956 2389 libcfs_kkuc_group_rem(0, KUC_GRP_HSM);
d7e09d03
PT
2390
2391 obd_cleanup_client_import(obd);
2392 ptlrpc_lprocfs_unregister_obd(obd);
2393 lprocfs_obd_cleanup(obd);
2394
903af118 2395 mdc_llog_finish(obd);
d7e09d03
PT
2396 break;
2397 }
eb967126 2398 return 0;
d7e09d03
PT
2399}
2400
2401static int mdc_cleanup(struct obd_device *obd)
2402{
2403 struct client_obd *cli = &obd->u.cli;
2404
7b81779d
JL
2405 kfree(cli->cl_rpc_lock);
2406 kfree(cli->cl_close_lock);
d7e09d03
PT
2407
2408 ptlrpcd_decref();
2409
2410 return client_obd_cleanup(obd);
2411}
2412
21aef7d9 2413static int mdc_process_config(struct obd_device *obd, u32 len, void *buf)
d7e09d03
PT
2414{
2415 struct lustre_cfg *lcfg = buf;
ea7893bb 2416 struct lprocfs_static_vars lvars = { NULL };
d7e09d03
PT
2417 int rc = 0;
2418
2419 lprocfs_mdc_init_vars(&lvars);
2420 switch (lcfg->lcfg_command) {
2421 default:
2422 rc = class_process_proc_param(PARAM_MDC, lvars.obd_vars,
2423 lcfg, obd);
2424 if (rc > 0)
2425 rc = 0;
2426 break;
2427 }
eb44520b 2428 return rc;
d7e09d03
PT
2429}
2430
d7e09d03 2431/* get remote permission for current user on fid */
f6219c16 2432static int mdc_get_remote_perm(struct obd_export *exp, const struct lu_fid *fid,
ef2e0f55 2433 __u32 suppgid, struct ptlrpc_request **request)
d7e09d03
PT
2434{
2435 struct ptlrpc_request *req;
2436 int rc;
d7e09d03
PT
2437
2438 LASSERT(client_is_remote(exp));
2439
2440 *request = NULL;
2441 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
34e3ff96 2442 if (!req)
0a3bdb00 2443 return -ENOMEM;
d7e09d03 2444
d7e09d03
PT
2445 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
2446 if (rc) {
2447 ptlrpc_request_free(req);
0a3bdb00 2448 return rc;
d7e09d03
PT
2449 }
2450
ef2e0f55 2451 mdc_pack_body(req, fid, OBD_MD_FLRMTPERM, 0, suppgid, 0);
d7e09d03
PT
2452
2453 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
2454 sizeof(struct mdt_remote_perm));
2455
2456 ptlrpc_request_set_replen(req);
2457
2458 rc = ptlrpc_queue_wait(req);
2459 if (rc)
2460 ptlrpc_req_finished(req);
2461 else
2462 *request = req;
0a3bdb00 2463 return rc;
d7e09d03
PT
2464}
2465
f6219c16 2466static struct obd_ops mdc_obd_ops = {
a13b1f32
DC
2467 .owner = THIS_MODULE,
2468 .setup = mdc_setup,
2469 .precleanup = mdc_precleanup,
2470 .cleanup = mdc_cleanup,
2471 .add_conn = client_import_add_conn,
2472 .del_conn = client_import_del_conn,
2473 .connect = client_connect_import,
2474 .disconnect = client_disconnect_export,
2475 .iocontrol = mdc_iocontrol,
2476 .set_info_async = mdc_set_info_async,
2477 .statfs = mdc_statfs,
2478 .fid_init = client_fid_init,
2479 .fid_fini = client_fid_fini,
2480 .fid_alloc = mdc_fid_alloc,
2481 .import_event = mdc_import_event,
2482 .get_info = mdc_get_info,
2483 .process_config = mdc_process_config,
2484 .get_uuid = mdc_get_uuid,
2485 .quotactl = mdc_quotactl,
2486 .quotacheck = mdc_quotacheck
d7e09d03
PT
2487};
2488
f6219c16 2489static struct md_ops mdc_md_ops = {
df18a80a
DC
2490 .getstatus = mdc_getstatus,
2491 .null_inode = mdc_null_inode,
2492 .find_cbdata = mdc_find_cbdata,
2493 .close = mdc_close,
2494 .create = mdc_create,
2495 .done_writing = mdc_done_writing,
2496 .enqueue = mdc_enqueue,
2497 .getattr = mdc_getattr,
2498 .getattr_name = mdc_getattr_name,
2499 .intent_lock = mdc_intent_lock,
2500 .link = mdc_link,
2501 .is_subdir = mdc_is_subdir,
2502 .rename = mdc_rename,
2503 .setattr = mdc_setattr,
2504 .setxattr = mdc_setxattr,
2505 .getxattr = mdc_getxattr,
2506 .sync = mdc_sync,
2507 .readpage = mdc_readpage,
2508 .unlink = mdc_unlink,
2509 .cancel_unused = mdc_cancel_unused,
2510 .init_ea_size = mdc_init_ea_size,
2511 .set_lock_data = mdc_set_lock_data,
2512 .lock_match = mdc_lock_match,
2513 .get_lustre_md = mdc_get_lustre_md,
2514 .free_lustre_md = mdc_free_lustre_md,
2515 .set_open_replay_data = mdc_set_open_replay_data,
2516 .clear_open_replay_data = mdc_clear_open_replay_data,
2517 .get_remote_perm = mdc_get_remote_perm,
2518 .intent_getattr_async = mdc_intent_getattr_async,
2519 .revalidate_lock = mdc_revalidate_lock
d7e09d03
PT
2520};
2521
f6219c16 2522static int __init mdc_init(void)
d7e09d03 2523{
ea7893bb 2524 struct lprocfs_static_vars lvars = { NULL };
7436d070 2525
d7e09d03
PT
2526 lprocfs_mdc_init_vars(&lvars);
2527
2962b440 2528 return class_register_type(&mdc_obd_ops, &mdc_md_ops,
d7e09d03 2529 LUSTRE_MDC_NAME, NULL);
d7e09d03
PT
2530}
2531
2532static void /*__exit*/ mdc_exit(void)
2533{
2534 class_unregister_type(LUSTRE_MDC_NAME);
2535}
2536
a0455471 2537MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
d7e09d03 2538MODULE_DESCRIPTION("Lustre Metadata Client");
5b0e50b9 2539MODULE_VERSION(LUSTRE_VERSION_STRING);
d7e09d03
PT
2540MODULE_LICENSE("GPL");
2541
2542module_init(mdc_init);
2543module_exit(mdc_exit);
This page took 0.701716 seconds and 5 git commands to generate.