Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / lustre / fid / fid_request.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/fid/fid_request.c
32  *
33  * Lustre Sequence Manager
34  *
35  * Author: Yury Umanets <umka@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_FID
39
40 #include <linux/err.h>
41 #include <linux/module.h>
42 #include <linux/delay.h>
43 #include <obd.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46 #include <lustre_fid.h>
47 /* mdc RPC locks */
48 #include <lustre_mdc.h>
49 #include "fid_internal.h"
50
51 struct dentry *seq_debugfs_dir;
52
53 static int seq_client_rpc(struct lu_client_seq *seq,
54                           struct lu_seq_range *output, __u32 opc,
55                           const char *opcname)
56 {
57         struct obd_export     *exp = seq->lcs_exp;
58         struct ptlrpc_request *req;
59         struct lu_seq_range   *out, *in;
60         __u32                 *op;
61         unsigned int           debug_mask;
62         int                    rc;
63         ENTRY;
64
65         LASSERT(exp != NULL && !IS_ERR(exp));
66         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp), &RQF_SEQ_QUERY,
67                                         LUSTRE_MDS_VERSION, SEQ_QUERY);
68         if (!req)
69                 RETURN(-ENOMEM);
70
71         /* Init operation code */
72         op = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_OPC);
73         *op = opc;
74
75         /* Zero out input range, this is not recovery yet. */
76         in = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_RANGE);
77         lu_seq_range_init(in);
78
79         ptlrpc_request_set_replen(req);
80
81         in->lsr_index = seq->lcs_space.lsr_index;
82         if (seq->lcs_type == LUSTRE_SEQ_METADATA)
83                 fld_range_set_mdt(in);
84         else
85                 fld_range_set_ost(in);
86
87         if (opc == SEQ_ALLOC_SUPER) {
88                 req->rq_request_portal = SEQ_CONTROLLER_PORTAL;
89                 req->rq_reply_portal = MDC_REPLY_PORTAL;
90                 /*
91                  * During allocating super sequence for data object,
92                  * the current thread might hold the export of MDT0(MDT0
93                  * precreating objects on this OST), and it will send the
94                  * request to MDT0 here, so we can not keep resending the
95                  * request here, otherwise if MDT0 is failed(umounted),
96                  * it can not release the export of MDT0
97                  */
98                 if (seq->lcs_type == LUSTRE_SEQ_DATA) {
99                         req->rq_no_resend = 1;
100                         req->rq_no_delay = 1;
101                 }
102                 debug_mask = D_CONSOLE;
103         } else {
104                 if (seq->lcs_type == LUSTRE_SEQ_METADATA) {
105                         req->rq_reply_portal = MDC_REPLY_PORTAL;
106                         req->rq_request_portal = SEQ_METADATA_PORTAL;
107                 } else {
108                         req->rq_reply_portal = OSC_REPLY_PORTAL;
109                         req->rq_request_portal = SEQ_DATA_PORTAL;
110                 }
111
112                 debug_mask = D_INFO;
113         }
114
115         /* Allow seq client RPC during recovery time. */
116         req->rq_allow_replay = 1;
117
118         ptlrpc_at_set_req_timeout(req);
119
120         rc = ptlrpc_queue_wait(req);
121
122         if (rc)
123                 GOTO(out_req, rc);
124
125         out = req_capsule_server_get(&req->rq_pill, &RMF_SEQ_RANGE);
126         *output = *out;
127
128         if (!lu_seq_range_is_sane(output)) {
129                 CERROR("%s: Invalid range received from server: "
130                        DRANGE"\n", seq->lcs_name, PRANGE(output));
131                 GOTO(out_req, rc = -EINVAL);
132         }
133
134         if (lu_seq_range_is_exhausted(output)) {
135                 CERROR("%s: Range received from server is exhausted: "
136                        DRANGE"]\n", seq->lcs_name, PRANGE(output));
137                 GOTO(out_req, rc = -EINVAL);
138         }
139
140         CDEBUG_LIMIT(debug_mask, "%s: Allocated %s-sequence "DRANGE"]\n",
141                      seq->lcs_name, opcname, PRANGE(output));
142
143         EXIT;
144 out_req:
145         ptlrpc_req_finished(req);
146         return rc;
147 }
148
149 /* Request sequence-controller node to allocate new super-sequence. */
150 int seq_client_alloc_super(struct lu_client_seq *seq,
151                            const struct lu_env *env)
152 {
153         int rc;
154         ENTRY;
155
156         mutex_lock(&seq->lcs_mutex);
157
158         if (seq->lcs_srv) {
159 #ifdef HAVE_SEQ_SERVER
160                 LASSERT(env != NULL);
161                 rc = seq_server_alloc_super(seq->lcs_srv, &seq->lcs_space, env);
162 #else
163                 rc = 0;
164 #endif
165         } else {
166                 /*
167                  * Check whether the connection to seq controller has been
168                  * setup (lcs_exp != NULL)
169                  */
170                 if (!seq->lcs_exp) {
171                         mutex_unlock(&seq->lcs_mutex);
172                         RETURN(-EINPROGRESS);
173                 }
174
175                 rc = seq_client_rpc(seq, &seq->lcs_space,
176                                     SEQ_ALLOC_SUPER, "super");
177         }
178         mutex_unlock(&seq->lcs_mutex);
179         RETURN(rc);
180 }
181
182 /* Request sequence-controller node to allocate new meta-sequence. */
183 static int seq_client_alloc_meta(const struct lu_env *env,
184                                  struct lu_client_seq *seq)
185 {
186         int rc;
187         ENTRY;
188
189         if (seq->lcs_srv) {
190 #ifdef HAVE_SEQ_SERVER
191                 LASSERT(env);
192                 rc = seq_server_alloc_meta(seq->lcs_srv, &seq->lcs_space, env);
193 #else
194                 rc = 0;
195 #endif
196         } else {
197                 do {
198                         /*
199                          * If meta server return -EINPROGRESS or EAGAIN,
200                          * it means meta server might not be ready to
201                          * allocate super sequence from sequence controller
202                          * (MDT0)yet
203                          */
204                         rc = seq_client_rpc(seq, &seq->lcs_space,
205                                             SEQ_ALLOC_META, "meta");
206                         if (rc == -EINPROGRESS || rc == -EAGAIN)
207                                 /*
208                                  * MDT0 is not ready, let's wait for 2
209                                  * seconds and retry.
210                                  */
211                                 ssleep(2);
212
213                 } while (rc == -EINPROGRESS || rc == -EAGAIN);
214         }
215
216         RETURN(rc);
217 }
218
219 /* Allocate new sequence for client. */
220 static int seq_client_alloc_seq(const struct lu_env *env,
221                                 struct lu_client_seq *seq, u64 *seqnr)
222 {
223         int rc;
224         ENTRY;
225
226         LASSERT(lu_seq_range_is_sane(&seq->lcs_space));
227
228         if (lu_seq_range_is_exhausted(&seq->lcs_space)) {
229                 rc = seq_client_alloc_meta(env, seq);
230                 if (rc) {
231                         if (rc != -EINPROGRESS)
232                                 CERROR("%s: Cannot allocate new meta-sequence: rc = %d\n",
233                                        seq->lcs_name, rc);
234                         RETURN(rc);
235                 } else {
236                         CDEBUG(D_INFO, "%s: New range - "DRANGE"\n",
237                                seq->lcs_name, PRANGE(&seq->lcs_space));
238                 }
239         } else {
240                 rc = 0;
241         }
242
243         LASSERT(!lu_seq_range_is_exhausted(&seq->lcs_space));
244         *seqnr = seq->lcs_space.lsr_start;
245         seq->lcs_space.lsr_start += 1;
246
247         CDEBUG(D_INFO, "%s: Allocated sequence [%#llx]\n", seq->lcs_name,
248                *seqnr);
249
250         RETURN(rc);
251 }
252
253 /**
254  * Allocate the whole non-used seq to the caller.
255  *
256  * \param[in] env       pointer to the thread context
257  * \param[in,out] seq   pointer to the client sequence manager
258  * \param[out] seqnr    to hold the new allocated sequence
259  *
260  * \retval              0 for new sequence allocated.
261  * \retval              Negative error number on failure.
262  */
263 int seq_client_get_seq(const struct lu_env *env,
264                        struct lu_client_seq *seq, u64 *seqnr)
265 {
266         int rc;
267
268         LASSERT(seqnr != NULL);
269
270         mutex_lock(&seq->lcs_mutex);
271
272         rc = seq_client_alloc_seq(env, seq, seqnr);
273         if (rc) {
274                 CERROR("%s: Can't allocate new sequence: rc = %d\n",
275                        seq->lcs_name, rc);
276         } else {
277                 CDEBUG(D_INFO, "%s: New sequence [0x%16.16llx]\n",
278                        seq->lcs_name, *seqnr);
279                 seq->lcs_fid.f_seq = *seqnr;
280                 seq->lcs_fid.f_ver = 0;
281                 /*
282                  *  The caller require the whole seq,
283                  * so marked this seq to be used
284                  */
285                 if (seq->lcs_type == LUSTRE_SEQ_METADATA)
286                         seq->lcs_fid.f_oid =
287                                 LUSTRE_METADATA_SEQ_MAX_WIDTH;
288                 else
289                         seq->lcs_fid.f_oid = LUSTRE_DATA_SEQ_MAX_WIDTH;
290         }
291         mutex_unlock(&seq->lcs_mutex);
292
293         return rc;
294 }
295 EXPORT_SYMBOL(seq_client_get_seq);
296
297 /**
298  * Allocate new fid on passed client @seq and save it to @fid.
299  *
300  * \param[in] env       pointer to the thread context
301  * \param[in,out] seq   pointer to the client sequence manager
302  * \param[out] fid      to hold the new allocated fid
303  *
304  * \retval              1 for notify the caller that sequence switch
305  *                      is performed to allow it to setup FLD for it.
306  * \retval              0 for new FID allocated in current sequence.
307  * \retval              Negative error number on failure.
308  */
309 int seq_client_alloc_fid(const struct lu_env *env,
310                          struct lu_client_seq *seq, struct lu_fid *fid)
311 {
312         int rc;
313         ENTRY;
314
315         LASSERT(seq != NULL);
316         LASSERT(fid != NULL);
317
318         mutex_lock(&seq->lcs_mutex);
319
320         if (CFS_FAIL_CHECK(OBD_FAIL_SEQ_EXHAUST))
321                 seq->lcs_fid.f_oid = seq->lcs_width;
322
323         if (unlikely(!fid_is_zero(&seq->lcs_fid) &&
324                      fid_oid(&seq->lcs_fid) < seq->lcs_width)) {
325                 /* Just bump last allocated fid and return to caller. */
326                 seq->lcs_fid.f_oid++;
327                 rc = 0;
328         } else {
329                 u64 seqnr;
330
331                 rc = seq_client_alloc_seq(env, seq, &seqnr);
332                 if (rc) {
333                         if (rc != -EINPROGRESS)
334                                 CERROR("%s: Can't allocate new sequence: rc = %d\n",
335                                        seq->lcs_name, rc);
336                 } else {
337                         CDEBUG(D_INFO, "%s: New sequence [0x%16.16llx]\n",
338                                seq->lcs_name, seqnr);
339
340                         seq->lcs_fid.f_seq = seqnr;
341                         seq->lcs_fid.f_oid = LUSTRE_FID_INIT_OID;
342                         seq->lcs_fid.f_ver = 0;
343                         rc = 1;
344                 }
345         }
346
347         if (rc >= 0) {
348                 *fid = seq->lcs_fid;
349                 CDEBUG(D_INFO, "%s: Allocated FID "DFID"\n", seq->lcs_name,
350                        PFID(fid));
351         }
352         mutex_unlock(&seq->lcs_mutex);
353
354         RETURN(rc);
355 }
356 EXPORT_SYMBOL(seq_client_alloc_fid);
357
358 /*
359  * Finish the current sequence due to disconnect.
360  * See mdc_import_event()
361  */
362 void seq_client_flush(struct lu_client_seq *seq)
363 {
364         LASSERT(seq != NULL);
365         mutex_lock(&seq->lcs_mutex);
366
367         fid_zero(&seq->lcs_fid);
368         /**
369          * this id shld not be used for seq range allocation.
370          * set to -1 for dgb check.
371          */
372         seq->lcs_space.lsr_index = -1;
373
374         lu_seq_range_init(&seq->lcs_space);
375         mutex_unlock(&seq->lcs_mutex);
376 }
377 EXPORT_SYMBOL(seq_client_flush);
378
379 static void seq_client_debugfs_fini(struct lu_client_seq *seq)
380 {
381         debugfs_remove_recursive(seq->lcs_debugfs_entry);
382 }
383
384 static void seq_client_debugfs_init(struct lu_client_seq *seq)
385 {
386         seq->lcs_debugfs_entry = debugfs_create_dir(seq->lcs_name,
387                                                     seq_debugfs_dir);
388
389         ldebugfs_add_vars(seq->lcs_debugfs_entry,
390                           seq_client_debugfs_list, seq);
391 }
392
393 void seq_client_fini(struct lu_client_seq *seq)
394 {
395         ENTRY;
396
397         seq_client_debugfs_fini(seq);
398
399         if (seq->lcs_exp) {
400                 class_export_put(seq->lcs_exp);
401                 seq->lcs_exp = NULL;
402         }
403
404         seq->lcs_srv = NULL;
405         EXIT;
406 }
407 EXPORT_SYMBOL(seq_client_fini);
408
409 void seq_client_init(struct lu_client_seq *seq,
410                      struct obd_export *exp,
411                      enum lu_cli_type type,
412                      const char *prefix,
413                      struct lu_server_seq *srv)
414 {
415         ENTRY;
416
417         LASSERT(seq != NULL);
418         LASSERT(prefix != NULL);
419
420         seq->lcs_srv = srv;
421         seq->lcs_type = type;
422
423         mutex_init(&seq->lcs_mutex);
424         if (type == LUSTRE_SEQ_METADATA)
425                 seq->lcs_width = LUSTRE_METADATA_SEQ_MAX_WIDTH;
426         else
427                 seq->lcs_width = LUSTRE_DATA_SEQ_MAX_WIDTH;
428
429         /* Make sure that things are clear before work is started. */
430         seq_client_flush(seq);
431
432         if (exp)
433                 seq->lcs_exp = class_export_get(exp);
434
435         snprintf(seq->lcs_name, sizeof(seq->lcs_name),
436                  "cli-%s", prefix);
437
438         seq_client_debugfs_init(seq);
439 }
440 EXPORT_SYMBOL(seq_client_init);
441
442 int client_fid_init(struct obd_device *obd,
443                     struct obd_export *exp, enum lu_cli_type type)
444 {
445         struct client_obd *cli = &obd->u.cli;
446         char *prefix;
447         int rc = 0;
448         ENTRY;
449
450         down_write(&cli->cl_seq_rwsem);
451         OBD_ALLOC_PTR(cli->cl_seq);
452         if (!cli->cl_seq)
453                 GOTO(out, rc = -ENOMEM);
454
455         OBD_ALLOC(prefix, MAX_OBD_NAME + 5);
456         if (!prefix)
457                 GOTO(out, rc = -ENOMEM);
458
459         snprintf(prefix, MAX_OBD_NAME + 5, "cli-%s", obd->obd_name);
460
461         /* Init client side sequence-manager */
462         seq_client_init(cli->cl_seq, exp, type, prefix, NULL);
463         OBD_FREE(prefix, MAX_OBD_NAME + 5);
464
465 out:
466         if (rc && cli->cl_seq) {
467                 OBD_FREE_PTR(cli->cl_seq);
468                 cli->cl_seq = NULL;
469         }
470         up_write(&cli->cl_seq_rwsem);
471
472         RETURN(rc);
473 }
474 EXPORT_SYMBOL(client_fid_init);
475
476 int client_fid_fini(struct obd_device *obd)
477 {
478         struct client_obd *cli = &obd->u.cli;
479         ENTRY;
480
481         down_write(&cli->cl_seq_rwsem);
482         if (cli->cl_seq) {
483                 seq_client_fini(cli->cl_seq);
484                 OBD_FREE_PTR(cli->cl_seq);
485                 cli->cl_seq = NULL;
486         }
487         up_write(&cli->cl_seq_rwsem);
488
489         RETURN(0);
490 }
491 EXPORT_SYMBOL(client_fid_fini);
492
493 static int __init fid_init(void)
494 {
495         struct dentry *de;
496         int rc;
497
498         rc = libcfs_setup();
499         if (rc)
500                 return rc;
501 #ifdef HAVE_SERVER_SUPPORT
502         rc = fid_server_mod_init();
503
504         if (rc)
505                 return rc;
506 #endif
507         de = debugfs_create_dir(LUSTRE_SEQ_NAME,
508                                 debugfs_lustre_root);
509         if (!IS_ERR(de))
510                 seq_debugfs_dir = de;
511         return PTR_ERR_OR_ZERO(de);
512 }
513
514 static void __exit fid_exit(void)
515 {
516 # ifdef HAVE_SERVER_SUPPORT
517         fid_server_mod_exit();
518 # endif
519         debugfs_remove_recursive(seq_debugfs_dir);
520 }
521
522 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
523 MODULE_DESCRIPTION("Lustre File IDentifier");
524 MODULE_VERSION(LUSTRE_VERSION_STRING);
525 MODULE_LICENSE("GPL");
526
527 module_init(fid_init);
528 module_exit(fid_exit);