Whamcloud - gitweb
28a6b1e2293116dff2f97e2a786dfd2d6b21c6d1
[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, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/fid/fid_request.c
33  *
34  * Lustre Sequence Manager
35  *
36  * Author: Yury Umanets <umka@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_FID
40
41 #include <linux/module.h>
42 #include <libcfs/libcfs.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 static int seq_client_rpc(struct lu_client_seq *seq,
52                           struct lu_seq_range *output, __u32 opc,
53                           const char *opcname)
54 {
55         struct obd_export     *exp = seq->lcs_exp;
56         struct ptlrpc_request *req;
57         struct lu_seq_range   *out, *in;
58         __u32                 *op;
59         unsigned int           debug_mask;
60         int                    rc;
61         ENTRY;
62
63         LASSERT(exp != NULL && !IS_ERR(exp));
64         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp), &RQF_SEQ_QUERY,
65                                         LUSTRE_MDS_VERSION, SEQ_QUERY);
66         if (req == NULL)
67                 RETURN(-ENOMEM);
68
69         /* Init operation code */
70         op = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_OPC);
71         *op = opc;
72
73         /* Zero out input range, this is not recovery yet. */
74         in = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_RANGE);
75         lu_seq_range_init(in);
76
77         ptlrpc_request_set_replen(req);
78
79         in->lsr_index = seq->lcs_space.lsr_index;
80         if (seq->lcs_type == LUSTRE_SEQ_METADATA)
81                 fld_range_set_mdt(in);
82         else
83                 fld_range_set_ost(in);
84
85         if (opc == SEQ_ALLOC_SUPER) {
86                 req->rq_request_portal = SEQ_CONTROLLER_PORTAL;
87                 req->rq_reply_portal = MDC_REPLY_PORTAL;
88                 /* During allocating super sequence for data object,
89                  * the current thread might hold the export of MDT0(MDT0
90                  * precreating objects on this OST), and it will send the
91                  * request to MDT0 here, so we can not keep resending the
92                  * request here, otherwise if MDT0 is failed(umounted),
93                  * it can not release the export of MDT0 */
94                 if (seq->lcs_type == LUSTRE_SEQ_DATA)
95                         req->rq_no_delay = req->rq_no_resend = 1;
96                 debug_mask = D_CONSOLE;
97         } else {
98                 if (seq->lcs_type == LUSTRE_SEQ_METADATA) {
99                         req->rq_reply_portal = MDC_REPLY_PORTAL;
100                         req->rq_request_portal = SEQ_METADATA_PORTAL;
101                 } else {
102                         req->rq_reply_portal = OSC_REPLY_PORTAL;
103                         req->rq_request_portal = SEQ_DATA_PORTAL;
104                 }
105
106                 debug_mask = D_INFO;
107         }
108
109         /* Allow seq client RPC during recovery time. */
110         req->rq_allow_replay = 1;
111
112         ptlrpc_at_set_req_timeout(req);
113
114         rc = ptlrpc_queue_wait(req);
115
116         if (rc)
117                 GOTO(out_req, rc);
118
119         out = req_capsule_server_get(&req->rq_pill, &RMF_SEQ_RANGE);
120         *output = *out;
121
122         if (!lu_seq_range_is_sane(output)) {
123                 CERROR("%s: Invalid range received from server: "
124                        DRANGE"\n", seq->lcs_name, PRANGE(output));
125                 GOTO(out_req, rc = -EINVAL);
126         }
127
128         if (lu_seq_range_is_exhausted(output)) {
129                 CERROR("%s: Range received from server is exhausted: "
130                        DRANGE"]\n", seq->lcs_name, PRANGE(output));
131                 GOTO(out_req, rc = -EINVAL);
132         }
133
134         CDEBUG_LIMIT(debug_mask, "%s: Allocated %s-sequence "DRANGE"]\n",
135                      seq->lcs_name, opcname, PRANGE(output));
136
137         EXIT;
138 out_req:
139         ptlrpc_req_finished(req);
140         return rc;
141 }
142
143 /* Request sequence-controller node to allocate new super-sequence. */
144 int seq_client_alloc_super(struct lu_client_seq *seq,
145                            const struct lu_env *env)
146 {
147         int rc;
148         ENTRY;
149
150         mutex_lock(&seq->lcs_mutex);
151
152         if (seq->lcs_srv) {
153 #ifdef HAVE_SEQ_SERVER
154                 LASSERT(env != NULL);
155                 rc = seq_server_alloc_super(seq->lcs_srv, &seq->lcs_space,
156                                             env);
157 #else
158                 rc = 0;
159 #endif
160         } else {
161                 /* Check whether the connection to seq controller has been
162                  * setup (lcs_exp != NULL) */
163                 if (seq->lcs_exp == NULL) {
164                         mutex_unlock(&seq->lcs_mutex);
165                         RETURN(-EINPROGRESS);
166                 }
167
168                 rc = seq_client_rpc(seq, &seq->lcs_space,
169                                     SEQ_ALLOC_SUPER, "super");
170         }
171         mutex_unlock(&seq->lcs_mutex);
172         RETURN(rc);
173 }
174
175 /* Request sequence-controller node to allocate new meta-sequence. */
176 static int seq_client_alloc_meta(const struct lu_env *env,
177                                  struct lu_client_seq *seq)
178 {
179         int rc;
180         ENTRY;
181
182         if (seq->lcs_srv) {
183 #ifdef HAVE_SEQ_SERVER
184                 LASSERT(env != NULL);
185                 rc = seq_server_alloc_meta(seq->lcs_srv, &seq->lcs_space, env);
186 #else
187                 rc = 0;
188 #endif
189         } else {
190                 do {
191                         /* If meta server return -EINPROGRESS or EAGAIN,
192                          * it means meta server might not be ready to
193                          * allocate super sequence from sequence controller
194                          * (MDT0)yet */
195                         rc = seq_client_rpc(seq, &seq->lcs_space,
196                                             SEQ_ALLOC_META, "meta");
197                         if (rc == -EINPROGRESS || rc == -EAGAIN) {
198                                 wait_queue_head_t waitq;
199                                 struct l_wait_info  lwi;
200
201                                 /* MDT0 is not ready, let's wait for 2
202                                  * seconds and retry. */
203                                 init_waitqueue_head(&waitq);
204                                 lwi = LWI_TIMEOUT(cfs_time_seconds(2), NULL,
205                                                   NULL);
206                                 l_wait_event(waitq, 0, &lwi);
207                         }
208                 } while (rc == -EINPROGRESS || rc == -EAGAIN);
209         }
210
211         RETURN(rc);
212 }
213
214 /* Allocate new sequence for client. */
215 static int seq_client_alloc_seq(const struct lu_env *env,
216                                 struct lu_client_seq *seq, u64 *seqnr)
217 {
218         int rc;
219         ENTRY;
220
221         LASSERT(lu_seq_range_is_sane(&seq->lcs_space));
222
223         if (lu_seq_range_is_exhausted(&seq->lcs_space)) {
224                 rc = seq_client_alloc_meta(env, seq);
225                 if (rc) {
226                         CERROR("%s: Can't allocate new meta-sequence,"
227                                "rc %d\n", seq->lcs_name, rc);
228                         RETURN(rc);
229                 } else {
230                         CDEBUG(D_INFO, "%s: New range - "DRANGE"\n",
231                                seq->lcs_name, PRANGE(&seq->lcs_space));
232                 }
233         } else {
234                 rc = 0;
235         }
236
237         LASSERT(!lu_seq_range_is_exhausted(&seq->lcs_space));
238         *seqnr = seq->lcs_space.lsr_start;
239         seq->lcs_space.lsr_start += 1;
240
241         CDEBUG(D_INFO, "%s: Allocated sequence [%#llx]\n", seq->lcs_name,
242                *seqnr);
243
244         RETURN(rc);
245 }
246
247 static int seq_fid_alloc_prep(struct lu_client_seq *seq,
248                               wait_queue_t *link)
249 {
250         if (seq->lcs_update) {
251                 add_wait_queue(&seq->lcs_waitq, link);
252                 set_current_state(TASK_UNINTERRUPTIBLE);
253                 mutex_unlock(&seq->lcs_mutex);
254
255                 schedule();
256
257                 mutex_lock(&seq->lcs_mutex);
258                 remove_wait_queue(&seq->lcs_waitq, link);
259                 set_current_state(TASK_RUNNING);
260                 return -EAGAIN;
261         }
262
263         ++seq->lcs_update;
264         mutex_unlock(&seq->lcs_mutex);
265
266         return 0;
267 }
268
269 static void seq_fid_alloc_fini(struct lu_client_seq *seq, __u64 seqnr,
270                                bool whole)
271 {
272         LASSERT(seq->lcs_update == 1);
273
274         mutex_lock(&seq->lcs_mutex);
275         if (seqnr != 0) {
276                 CDEBUG(D_INFO, "%s: New sequence [0x%16.16llx]\n",
277                        seq->lcs_name, seqnr);
278
279                 seq->lcs_fid.f_seq = seqnr;
280                 if (whole) {
281                         /* Since the caller require the whole seq,
282                          * so marked this seq to be used */
283                         if (seq->lcs_type == LUSTRE_SEQ_METADATA)
284                                 seq->lcs_fid.f_oid =
285                                         LUSTRE_METADATA_SEQ_MAX_WIDTH;
286                         else
287                                 seq->lcs_fid.f_oid = LUSTRE_DATA_SEQ_MAX_WIDTH;
288                 } else {
289                         seq->lcs_fid.f_oid = LUSTRE_FID_INIT_OID;
290                 }
291                 seq->lcs_fid.f_ver = 0;
292         }
293
294         --seq->lcs_update;
295         wake_up_all(&seq->lcs_waitq);
296 }
297
298 /**
299  * Allocate the whole non-used seq to the caller.
300  *
301  * \param[in] env       pointer to the thread context
302  * \param[in,out] seq   pointer to the client sequence manager
303  * \param[out] seqnr    to hold the new allocated sequence
304  *
305  * \retval              0 for new sequence allocated.
306  * \retval              Negative error number on failure.
307  */
308 int seq_client_get_seq(const struct lu_env *env,
309                        struct lu_client_seq *seq, u64 *seqnr)
310 {
311         wait_queue_t link;
312         int rc;
313
314         LASSERT(seqnr != NULL);
315
316         mutex_lock(&seq->lcs_mutex);
317         init_waitqueue_entry(&link, current);
318
319         /* To guarantee that we can get a whole non-used sequence. */
320         while (seq_fid_alloc_prep(seq, &link) != 0);
321
322         rc = seq_client_alloc_seq(env, seq, seqnr);
323         seq_fid_alloc_fini(seq, rc ? 0 : *seqnr, true);
324         if (rc)
325                 CERROR("%s: Can't allocate new sequence: rc = %d\n",
326                        seq->lcs_name, rc);
327         mutex_unlock(&seq->lcs_mutex);
328
329         return rc;
330 }
331 EXPORT_SYMBOL(seq_client_get_seq);
332
333 /**
334  * Allocate new fid on passed client @seq and save it to @fid.
335  *
336  * \param[in] env       pointer to the thread context
337  * \param[in,out] seq   pointer to the client sequence manager
338  * \param[out] fid      to hold the new allocated fid
339  *
340  * \retval              1 for notify the caller that sequence switch
341  *                      is performed to allow it to setup FLD for it.
342  * \retval              0 for new FID allocated in current sequence.
343  * \retval              Negative error number on failure.
344  */
345 int seq_client_alloc_fid(const struct lu_env *env,
346                          struct lu_client_seq *seq, struct lu_fid *fid)
347 {
348         wait_queue_t link;
349         int rc;
350         ENTRY;
351
352         LASSERT(seq != NULL);
353         LASSERT(fid != NULL);
354
355         init_waitqueue_entry(&link, current);
356         mutex_lock(&seq->lcs_mutex);
357
358         if (OBD_FAIL_CHECK(OBD_FAIL_SEQ_EXHAUST))
359                 seq->lcs_fid.f_oid = seq->lcs_width;
360
361         while (1) {
362                 u64 seqnr;
363
364                 if (unlikely(!fid_is_zero(&seq->lcs_fid) &&
365                              fid_oid(&seq->lcs_fid) < seq->lcs_width)) {
366                         /* Just bump last allocated fid and return to caller. */
367                         seq->lcs_fid.f_oid++;
368                         rc = 0;
369                         break;
370                 }
371
372                 /* Release seq::lcs_mutex via seq_fid_alloc_prep() to avoid
373                  * deadlock during seq_client_alloc_seq(). */
374                 rc = seq_fid_alloc_prep(seq, &link);
375                 if (rc)
376                         continue;
377
378                 rc = seq_client_alloc_seq(env, seq, &seqnr);
379                 /* Re-take seq::lcs_mutex via seq_fid_alloc_fini(). */
380                 seq_fid_alloc_fini(seq, rc ? 0 : seqnr, false);
381                 if (rc) {
382                         CERROR("%s: Can't allocate new sequence: rc = %d\n",
383                                seq->lcs_name, rc);
384                         mutex_unlock(&seq->lcs_mutex);
385
386                         RETURN(rc);
387                 }
388
389                 rc = 1;
390                 break;
391         }
392
393         *fid = seq->lcs_fid;
394         mutex_unlock(&seq->lcs_mutex);
395
396         CDEBUG(D_INFO, "%s: Allocated FID "DFID"\n", seq->lcs_name,  PFID(fid));
397
398         RETURN(rc);
399 }
400 EXPORT_SYMBOL(seq_client_alloc_fid);
401
402 /*
403  * Finish the current sequence due to disconnect.
404  * See mdc_import_event()
405  */
406 void seq_client_flush(struct lu_client_seq *seq)
407 {
408         wait_queue_t link;
409
410         LASSERT(seq != NULL);
411         init_waitqueue_entry(&link, current);
412         mutex_lock(&seq->lcs_mutex);
413
414         while (seq->lcs_update) {
415                 add_wait_queue(&seq->lcs_waitq, &link);
416                 set_current_state(TASK_UNINTERRUPTIBLE);
417                 mutex_unlock(&seq->lcs_mutex);
418
419                 schedule();
420
421                 mutex_lock(&seq->lcs_mutex);
422                 remove_wait_queue(&seq->lcs_waitq, &link);
423                 set_current_state(TASK_RUNNING);
424         }
425
426         fid_zero(&seq->lcs_fid);
427         /**
428          * this id shld not be used for seq range allocation.
429          * set to -1 for dgb check.
430          */
431
432         seq->lcs_space.lsr_index = -1;
433
434         lu_seq_range_init(&seq->lcs_space);
435         mutex_unlock(&seq->lcs_mutex);
436 }
437 EXPORT_SYMBOL(seq_client_flush);
438
439 static void seq_client_proc_fini(struct lu_client_seq *seq)
440 {
441 #ifdef CONFIG_PROC_FS
442         ENTRY;
443         if (seq->lcs_proc_dir) {
444                 if (!IS_ERR(seq->lcs_proc_dir))
445                         lprocfs_remove(&seq->lcs_proc_dir);
446                 seq->lcs_proc_dir = NULL;
447         }
448         EXIT;
449 #endif /* CONFIG_PROC_FS */
450 }
451
452 static int seq_client_proc_init(struct lu_client_seq *seq)
453 {
454 #ifdef CONFIG_PROC_FS
455         int rc;
456         ENTRY;
457
458         seq->lcs_proc_dir = lprocfs_register(seq->lcs_name, seq_type_proc_dir,
459                                              NULL, NULL);
460         if (IS_ERR(seq->lcs_proc_dir)) {
461                 CERROR("%s: LProcFS failed in seq-init\n",
462                        seq->lcs_name);
463                 rc = PTR_ERR(seq->lcs_proc_dir);
464                 RETURN(rc);
465         }
466
467         rc = lprocfs_add_vars(seq->lcs_proc_dir, seq_client_proc_list, seq);
468         if (rc) {
469                 CERROR("%s: Can't init sequence manager "
470                        "proc, rc %d\n", seq->lcs_name, rc);
471                 GOTO(out_cleanup, rc);
472         }
473
474         RETURN(0);
475
476 out_cleanup:
477         seq_client_proc_fini(seq);
478         return rc;
479
480 #else /* !CONFIG_PROC_FS */
481         return 0;
482 #endif /* CONFIG_PROC_FS */
483 }
484
485 int seq_client_init(struct lu_client_seq *seq,
486                     struct obd_export *exp,
487                     enum lu_cli_type type,
488                     const char *prefix,
489                     struct lu_server_seq *srv)
490 {
491         int rc;
492         ENTRY;
493
494         LASSERT(seq != NULL);
495         LASSERT(prefix != NULL);
496
497         seq->lcs_srv = srv;
498         seq->lcs_type = type;
499
500         mutex_init(&seq->lcs_mutex);
501         if (type == LUSTRE_SEQ_METADATA)
502                 seq->lcs_width = LUSTRE_METADATA_SEQ_MAX_WIDTH;
503         else
504                 seq->lcs_width = LUSTRE_DATA_SEQ_MAX_WIDTH;
505
506         init_waitqueue_head(&seq->lcs_waitq);
507         /* Make sure that things are clear before work is started. */
508         seq_client_flush(seq);
509
510         if (exp != NULL)
511                 seq->lcs_exp = class_export_get(exp);
512
513         snprintf(seq->lcs_name, sizeof(seq->lcs_name),
514                  "cli-%s", prefix);
515
516         rc = seq_client_proc_init(seq);
517         if (rc)
518                 seq_client_fini(seq);
519         RETURN(rc);
520 }
521 EXPORT_SYMBOL(seq_client_init);
522
523 void seq_client_fini(struct lu_client_seq *seq)
524 {
525         ENTRY;
526
527         seq_client_proc_fini(seq);
528
529         if (seq->lcs_exp != NULL) {
530                 class_export_put(seq->lcs_exp);
531                 seq->lcs_exp = NULL;
532         }
533
534         seq->lcs_srv = NULL;
535         EXIT;
536 }
537 EXPORT_SYMBOL(seq_client_fini);
538
539 int client_fid_init(struct obd_device *obd,
540                     struct obd_export *exp, enum lu_cli_type type)
541 {
542         struct client_obd *cli = &obd->u.cli;
543         char *prefix;
544         int rc;
545         ENTRY;
546
547         down_write(&cli->cl_seq_rwsem);
548         OBD_ALLOC_PTR(cli->cl_seq);
549         if (!cli->cl_seq)
550                 GOTO(out, rc = -ENOMEM);
551
552         OBD_ALLOC(prefix, MAX_OBD_NAME + 5);
553         if (!prefix)
554                 GOTO(out, rc = -ENOMEM);
555
556         snprintf(prefix, MAX_OBD_NAME + 5, "cli-%s", obd->obd_name);
557
558         /* Init client side sequence-manager */
559         rc = seq_client_init(cli->cl_seq, exp, type, prefix, NULL);
560         OBD_FREE(prefix, MAX_OBD_NAME + 5);
561
562         GOTO(out, rc);
563
564 out:
565         if (rc && cli->cl_seq) {
566                 OBD_FREE_PTR(cli->cl_seq);
567                 cli->cl_seq = NULL;
568         }
569         up_write(&cli->cl_seq_rwsem);
570
571         return rc;
572 }
573 EXPORT_SYMBOL(client_fid_init);
574
575 int client_fid_fini(struct obd_device *obd)
576 {
577         struct client_obd *cli = &obd->u.cli;
578         ENTRY;
579
580         down_write(&cli->cl_seq_rwsem);
581         if (cli->cl_seq) {
582                 seq_client_fini(cli->cl_seq);
583                 OBD_FREE_PTR(cli->cl_seq);
584                 cli->cl_seq = NULL;
585         }
586         up_write(&cli->cl_seq_rwsem);
587
588         RETURN(0);
589 }
590 EXPORT_SYMBOL(client_fid_fini);
591
592 struct proc_dir_entry *seq_type_proc_dir;
593
594 static int __init fid_init(void)
595 {
596         seq_type_proc_dir = lprocfs_register(LUSTRE_SEQ_NAME,
597                                              proc_lustre_root,
598                                              NULL, NULL);
599         if (IS_ERR(seq_type_proc_dir))
600                 return PTR_ERR(seq_type_proc_dir);
601
602 # ifdef HAVE_SERVER_SUPPORT
603         fid_server_mod_init();
604 # endif
605
606         return 0;
607 }
608
609 static void __exit fid_exit(void)
610 {
611 # ifdef HAVE_SERVER_SUPPORT
612         fid_server_mod_exit();
613 # endif
614
615         if (seq_type_proc_dir != NULL && !IS_ERR(seq_type_proc_dir)) {
616                 lprocfs_remove(&seq_type_proc_dir);
617                 seq_type_proc_dir = NULL;
618         }
619 }
620
621 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
622 MODULE_DESCRIPTION("Lustre File IDentifier");
623 MODULE_VERSION(LUSTRE_VERSION_STRING);
624 MODULE_LICENSE("GPL");
625
626 module_init(fid_init);
627 module_exit(fid_exit);