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