Whamcloud - gitweb
1046b3cf7da16a996f74c1cd03872d992e76acb6
[fs/lustre-release.git] / lustre / fid / fid_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 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_handler.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 <libcfs/libcfs.h>
46 #include <linux/module.h>
47 #include <obd.h>
48 #include <obd_class.h>
49 #include <dt_object.h>
50 #include <obd_support.h>
51 #include <lustre_req_layout.h>
52 #include <lustre_fid.h>
53 #include "fid_internal.h"
54
55 static void seq_server_proc_fini(struct lu_server_seq *seq);
56
57 /* Assigns client to sequence controller node. */
58 int seq_server_set_cli(const struct lu_env *env, struct lu_server_seq *seq,
59                        struct lu_client_seq *cli)
60 {
61         int rc = 0;
62         ENTRY;
63
64         /*
65          * Ask client for new range, assign that range to ->seq_space and write
66          * seq state to backing store should be atomic.
67          */
68         mutex_lock(&seq->lss_mutex);
69
70         if (cli == NULL) {
71                 CDEBUG(D_INFO, "%s: Detached sequence client\n", seq->lss_name);
72                 seq->lss_cli = NULL;
73                 GOTO(out_up, rc = 0);
74         }
75
76         if (seq->lss_cli != NULL) {
77                 CDEBUG(D_HA, "%s: Sequence controller is already "
78                        "assigned\n", seq->lss_name);
79                 GOTO(out_up, rc = -EEXIST);
80         }
81
82         CDEBUG(D_INFO, "%s: Attached sequence controller %s\n",
83                seq->lss_name, cli->lcs_name);
84
85         seq->lss_cli = cli;
86         cli->lcs_space.lsr_index = seq->lss_site->ss_node_id;
87         EXIT;
88 out_up:
89         mutex_unlock(&seq->lss_mutex);
90         return rc;
91 }
92 EXPORT_SYMBOL(seq_server_set_cli);
93 /*
94  * allocate \a w units of sequence from range \a from.
95  */
96 static inline void range_alloc(struct lu_seq_range *to,
97                                struct lu_seq_range *from,
98                                __u64 width)
99 {
100         width = min(range_space(from), width);
101         to->lsr_start = from->lsr_start;
102         to->lsr_end = from->lsr_start + width;
103         from->lsr_start += width;
104 }
105
106 /**
107  * On controller node, allocate new super sequence for regular sequence server.
108  * As this super sequence controller, this node suppose to maintain fld
109  * and update index.
110  * \a out range always has currect mds node number of requester.
111  */
112
113 static int __seq_server_alloc_super(struct lu_server_seq *seq,
114                                     struct lu_seq_range *out,
115                                     const struct lu_env *env)
116 {
117         struct lu_seq_range *space = &seq->lss_space;
118         int rc;
119         ENTRY;
120
121         LASSERT(range_is_sane(space));
122
123         if (range_is_exhausted(space)) {
124                 CERROR("%s: Sequences space is exhausted\n",
125                        seq->lss_name);
126                 RETURN(-ENOSPC);
127         } else {
128                 range_alloc(out, space, seq->lss_width);
129         }
130
131         rc = seq_store_update(env, seq, out, 1 /* sync */);
132
133         LCONSOLE_INFO("%s: super-sequence allocation rc = %d " DRANGE"\n",
134                       seq->lss_name, rc, PRANGE(out));
135
136         RETURN(rc);
137 }
138
139 int seq_server_alloc_super(struct lu_server_seq *seq,
140                            struct lu_seq_range *out,
141                            const struct lu_env *env)
142 {
143         int rc;
144         ENTRY;
145
146         mutex_lock(&seq->lss_mutex);
147         rc = __seq_server_alloc_super(seq, out, env);
148         mutex_unlock(&seq->lss_mutex);
149
150         RETURN(rc);
151 }
152
153 int seq_server_alloc_spec(struct lu_server_seq *seq,
154                           struct lu_seq_range *spec,
155                           const struct lu_env *env)
156 {
157         struct lu_seq_range *space = &seq->lss_space;
158         int rc = -ENOSPC;
159         ENTRY;
160
161         /*
162          * In some cases (like recovery after a disaster)
163          * we may need to allocate sequences manually
164          * Notice some sequences can be lost if requested
165          * range doesn't start at the beginning of current
166          * free space. Also notice it's not possible now
167          * to allocate sequences out of natural order.
168          */
169         if (spec->lsr_start >= spec->lsr_end)
170                 RETURN(-EINVAL);
171         if (spec->lsr_flags != LU_SEQ_RANGE_MDT &&
172             spec->lsr_flags != LU_SEQ_RANGE_OST)
173                 RETURN(-EINVAL);
174
175         mutex_lock(&seq->lss_mutex);
176         if (spec->lsr_start >= space->lsr_start) {
177                 space->lsr_start = spec->lsr_end;
178                 rc = seq_store_update(env, seq, spec, 1 /* sync */);
179
180                 LCONSOLE_INFO("%s: "DRANGE" sequences allocated: rc = %d \n",
181                               seq->lss_name, PRANGE(spec), rc);
182         }
183         mutex_unlock(&seq->lss_mutex);
184
185         RETURN(rc);
186 }
187
188 static int __seq_set_init(const struct lu_env *env,
189                             struct lu_server_seq *seq)
190 {
191         struct lu_seq_range *space = &seq->lss_space;
192         int rc;
193
194         range_alloc(&seq->lss_lowater_set, space, seq->lss_set_width);
195         range_alloc(&seq->lss_hiwater_set, space, seq->lss_set_width);
196
197         rc = seq_store_update(env, seq, NULL, 1);
198
199         return rc;
200 }
201
202 /*
203  * This function implements new seq allocation algorithm using async
204  * updates to seq file on disk. ref bug 18857 for details.
205  * there are four variable to keep track of this process
206  *
207  * lss_space; - available lss_space
208  * lss_lowater_set; - lu_seq_range for all seqs before barrier, i.e. safe to use
209  * lss_hiwater_set; - lu_seq_range after barrier, i.e. allocated but may be
210  *                    not yet committed
211  *
212  * when lss_lowater_set reaches the end it is replaced with hiwater one and
213  * a write operation is initiated to allocate new hiwater range.
214  * if last seq write opearion is still not commited, current operation is
215  * flaged as sync write op.
216  */
217 static int range_alloc_set(const struct lu_env *env,
218                            struct lu_seq_range *out,
219                            struct lu_server_seq *seq)
220 {
221         struct lu_seq_range *space = &seq->lss_space;
222         struct lu_seq_range *loset = &seq->lss_lowater_set;
223         struct lu_seq_range *hiset = &seq->lss_hiwater_set;
224         int rc = 0;
225
226         if (range_is_zero(loset))
227                 __seq_set_init(env, seq);
228
229         if (OBD_FAIL_CHECK(OBD_FAIL_SEQ_ALLOC)) /* exhaust set */
230                 loset->lsr_start = loset->lsr_end;
231
232         if (range_is_exhausted(loset)) {
233                 /* reached high water mark. */
234                 struct lu_device *dev = seq->lss_site->ss_lu->ls_top_dev;
235                 int obd_num_clients = dev->ld_obd->obd_num_exports;
236                 __u64 set_sz;
237
238                 /* calculate new seq width based on number of clients */
239                 set_sz = max(seq->lss_set_width,
240                              obd_num_clients * seq->lss_width);
241                 set_sz = min(range_space(space), set_sz);
242
243                 /* Switch to hiwater range now */
244                 *loset = *hiset;
245                 /* allocate new hiwater range */
246                 range_alloc(hiset, space, set_sz);
247
248                 /* update ondisk seq with new *space */
249                 rc = seq_store_update(env, seq, NULL, seq->lss_need_sync);
250         }
251
252         LASSERTF(!range_is_exhausted(loset) || range_is_sane(loset),
253                  DRANGE"\n", PRANGE(loset));
254
255         if (rc == 0)
256                 range_alloc(out, loset, seq->lss_width);
257
258         RETURN(rc);
259 }
260
261 /**
262  * Check if the sequence server has sequence avaible
263  *
264  * Check if the sequence server has sequence avaible, if not, then
265  * allocating super sequence from sequence manager (MDT0).
266  *
267  * \param[in] env       execution environment
268  * \param[in] seq       server sequence
269  *
270  * \retval              negative errno if allocating new sequence fails
271  * \retval              0 if there is enough sequence or allocating
272  *                      new sequence succeeds
273  */
274 int seq_server_check_and_alloc_super(const struct lu_env *env,
275                                      struct lu_server_seq *seq)
276 {
277         struct lu_seq_range *space = &seq->lss_space;
278         int rc = 0;
279
280         ENTRY;
281
282         /* Check if available space ends and allocate new super seq */
283         if (range_is_exhausted(space)) {
284                 if (!seq->lss_cli) {
285                         CERROR("%s: No sequence controller is attached.\n",
286                                seq->lss_name);
287                         RETURN(-ENODEV);
288                 }
289
290                 rc = seq_client_alloc_super(seq->lss_cli, env);
291                 if (rc) {
292                         CDEBUG(D_HA, "%s: Can't allocate super-sequence:"
293                               " rc %d\n", seq->lss_name, rc);
294                         RETURN(rc);
295                 }
296
297                 /* Saving new range to allocation space. */
298                 *space = seq->lss_cli->lcs_space;
299                 LASSERT(range_is_sane(space));
300                 if (seq->lss_cli->lcs_srv == NULL) {
301                         struct lu_server_fld *fld;
302
303                         /* Insert it to the local FLDB */
304                         fld = seq->lss_site->ss_server_fld;
305                         mutex_lock(&fld->lsf_lock);
306                         rc = fld_insert_entry(env, fld, space);
307                         mutex_unlock(&fld->lsf_lock);
308                 }
309         }
310
311         if (range_is_zero(&seq->lss_lowater_set))
312                 __seq_set_init(env, seq);
313
314         RETURN(rc);
315 }
316 EXPORT_SYMBOL(seq_server_check_and_alloc_super);
317
318 static int __seq_server_alloc_meta(struct lu_server_seq *seq,
319                                    struct lu_seq_range *out,
320                                    const struct lu_env *env)
321 {
322         struct lu_seq_range *space = &seq->lss_space;
323         int rc = 0;
324
325         ENTRY;
326
327         LASSERT(range_is_sane(space));
328
329         rc = seq_server_check_and_alloc_super(env, seq);
330         if (rc < 0) {
331                 CERROR("%s: Allocated super-sequence failed: rc = %d\n",
332                         seq->lss_name, rc);
333                 RETURN(rc);
334         }
335
336         rc = range_alloc_set(env, out, seq);
337         if (rc != 0) {
338                 CERROR("%s: Allocated meta-sequence failed: rc = %d\n",
339                         seq->lss_name, rc);
340                 RETURN(rc);
341         }
342
343         CDEBUG(D_INFO, "%s: Allocated meta-sequence " DRANGE"\n",
344                 seq->lss_name, PRANGE(out));
345
346         RETURN(rc);
347 }
348
349 int seq_server_alloc_meta(struct lu_server_seq *seq,
350                           struct lu_seq_range *out,
351                           const struct lu_env *env)
352 {
353         int rc;
354         ENTRY;
355
356         mutex_lock(&seq->lss_mutex);
357         rc = __seq_server_alloc_meta(seq, out, env);
358         mutex_unlock(&seq->lss_mutex);
359
360         RETURN(rc);
361 }
362 EXPORT_SYMBOL(seq_server_alloc_meta);
363
364 static int seq_server_handle(struct lu_site *site,
365                              const struct lu_env *env,
366                              __u32 opc, struct lu_seq_range *out)
367 {
368         int rc;
369         struct seq_server_site *ss_site;
370         ENTRY;
371
372         ss_site = lu_site2seq(site);
373
374         switch (opc) {
375         case SEQ_ALLOC_META:
376                 if (!ss_site->ss_server_seq) {
377                         CERROR("Sequence server is not "
378                                "initialized\n");
379                         RETURN(-EINVAL);
380                 }
381                 rc = seq_server_alloc_meta(ss_site->ss_server_seq, out, env);
382                 break;
383         case SEQ_ALLOC_SUPER:
384                 if (!ss_site->ss_control_seq) {
385                         CERROR("Sequence controller is not "
386                                "initialized\n");
387                         RETURN(-EINVAL);
388                 }
389                 rc = seq_server_alloc_super(ss_site->ss_control_seq, out, env);
390                 break;
391         default:
392                 rc = -EINVAL;
393                 break;
394         }
395
396         RETURN(rc);
397 }
398
399 static int seq_handler(struct tgt_session_info *tsi)
400 {
401         struct lu_seq_range     *out, *tmp;
402         struct lu_site          *site;
403         int                      rc;
404         __u32                   *opc;
405
406         ENTRY;
407
408         LASSERT(!(lustre_msg_get_flags(tgt_ses_req(tsi)->rq_reqmsg) & MSG_REPLAY));
409         site = tsi->tsi_exp->exp_obd->obd_lu_dev->ld_site;
410         LASSERT(site != NULL);
411
412         opc = req_capsule_client_get(tsi->tsi_pill, &RMF_SEQ_OPC);
413         if (opc != NULL) {
414                 out = req_capsule_server_get(tsi->tsi_pill, &RMF_SEQ_RANGE);
415                 if (out == NULL)
416                         RETURN(err_serious(-EPROTO));
417
418                 tmp = req_capsule_client_get(tsi->tsi_pill, &RMF_SEQ_RANGE);
419
420                 /* seq client passed mdt id, we need to pass that using out
421                  * range parameter */
422
423                 out->lsr_index = tmp->lsr_index;
424                 out->lsr_flags = tmp->lsr_flags;
425                 rc = seq_server_handle(site, tsi->tsi_env, *opc, out);
426         } else {
427                 rc = err_serious(-EPROTO);
428         }
429
430         RETURN(rc);
431 }
432
433 struct tgt_handler seq_handlers[] = {
434 TGT_SEQ_HDL(HABEO_REFERO,       SEQ_QUERY,      seq_handler),
435 };
436 EXPORT_SYMBOL(seq_handlers);
437
438 /* context key constructor/destructor: seq_key_init, seq_key_fini */
439 LU_KEY_INIT_FINI(seq, struct seq_thread_info);
440
441 /* context key: seq_thread_key */
442 LU_CONTEXT_KEY_DEFINE(seq, LCT_MD_THREAD | LCT_DT_THREAD);
443
444 extern const struct file_operations seq_fld_proc_seq_fops;
445
446 static int seq_server_proc_init(struct lu_server_seq *seq)
447 {
448 #ifdef CONFIG_PROC_FS
449         int rc;
450         ENTRY;
451
452         seq->lss_proc_dir = lprocfs_register(seq->lss_name,
453                                              seq_type_proc_dir,
454                                              NULL, NULL);
455         if (IS_ERR(seq->lss_proc_dir)) {
456                 rc = PTR_ERR(seq->lss_proc_dir);
457                 RETURN(rc);
458         }
459
460         rc = lprocfs_add_vars(seq->lss_proc_dir, seq_server_proc_list, seq);
461         if (rc) {
462                 CERROR("%s: Can't init sequence manager "
463                        "proc, rc %d\n", seq->lss_name, rc);
464                 GOTO(out_cleanup, rc);
465         }
466
467         if (seq->lss_type == LUSTRE_SEQ_CONTROLLER) {
468                 rc = lprocfs_seq_create(seq->lss_proc_dir, "fldb", 0644,
469                                         &seq_fld_proc_seq_fops, seq);
470                 if (rc) {
471                         CERROR("%s: Can't create fldb for sequence manager "
472                                "proc: rc = %d\n", seq->lss_name, rc);
473                         GOTO(out_cleanup, rc);
474                 }
475         }
476
477         RETURN(0);
478
479 out_cleanup:
480         seq_server_proc_fini(seq);
481         return rc;
482 #else /* !CONFIG_PROC_FS */
483         return 0;
484 #endif /* CONFIG_PROC_FS */
485 }
486
487 static void seq_server_proc_fini(struct lu_server_seq *seq)
488 {
489 #ifdef CONFIG_PROC_FS
490         ENTRY;
491         if (seq->lss_proc_dir != NULL) {
492                 if (!IS_ERR(seq->lss_proc_dir))
493                         lprocfs_remove(&seq->lss_proc_dir);
494                 seq->lss_proc_dir = NULL;
495         }
496         EXIT;
497 #endif /* CONFIG_PROC_FS */
498 }
499
500 int seq_server_init(const struct lu_env *env,
501                     struct lu_server_seq *seq,
502                     struct dt_device *dev,
503                     const char *prefix,
504                     enum lu_mgr_type type,
505                     struct seq_server_site *ss)
506 {
507         int rc, is_srv = (type == LUSTRE_SEQ_SERVER);
508         ENTRY;
509
510         LASSERT(dev != NULL);
511         LASSERT(prefix != NULL);
512         LASSERT(ss != NULL);
513         LASSERT(ss->ss_lu != NULL);
514
515         /* A compile-time check for FIDs that used to be in lustre_idl.h
516          * but is moved here to remove CLASSERT/LASSERT in that header.
517          * Check all lu_fid fields are converted in fid_cpu_to_le() and friends
518          * and that there is no padding added by compiler to the struct. */
519         {
520                 struct lu_fid tst;
521
522                 CLASSERT(sizeof(tst) == sizeof(tst.f_seq) +
523                          sizeof(tst.f_oid) + sizeof(tst.f_ver));
524         }
525
526         seq->lss_cli = NULL;
527         seq->lss_type = type;
528         seq->lss_site = ss;
529         range_init(&seq->lss_space);
530
531         range_init(&seq->lss_lowater_set);
532         range_init(&seq->lss_hiwater_set);
533         seq->lss_set_width = LUSTRE_SEQ_BATCH_WIDTH;
534
535         mutex_init(&seq->lss_mutex);
536
537         seq->lss_width = is_srv ?
538                 LUSTRE_SEQ_META_WIDTH : LUSTRE_SEQ_SUPER_WIDTH;
539
540         snprintf(seq->lss_name, sizeof(seq->lss_name),
541                  "%s-%s", (is_srv ? "srv" : "ctl"), prefix);
542
543         rc = seq_store_init(seq, env, dev);
544         if (rc)
545                 GOTO(out, rc);
546         /* Request backing store for saved sequence info. */
547         rc = seq_store_read(seq, env);
548         if (rc == -ENODATA) {
549
550                 /* Nothing is read, init by default value. */
551                 seq->lss_space = is_srv ?
552                         LUSTRE_SEQ_ZERO_RANGE:
553                         LUSTRE_SEQ_SPACE_RANGE;
554
555                 seq->lss_space.lsr_index = ss->ss_node_id;
556                 LCONSOLE_INFO("%s: No data found "
557                               "on store. Initialize space\n",
558                               seq->lss_name);
559
560                 rc = seq_store_update(env, seq, NULL, 0);
561                 if (rc) {
562                         CERROR("%s: Can't write space data, "
563                                "rc %d\n", seq->lss_name, rc);
564                 }
565         } else if (rc) {
566                 CERROR("%s: Can't read space data, rc %d\n",
567                        seq->lss_name, rc);
568                 GOTO(out, rc);
569         }
570
571         if (is_srv) {
572                 LASSERT(range_is_sane(&seq->lss_space));
573         } else {
574                 LASSERT(!range_is_zero(&seq->lss_space) &&
575                         range_is_sane(&seq->lss_space));
576         }
577
578         rc  = seq_server_proc_init(seq);
579         if (rc)
580                 GOTO(out, rc);
581
582         EXIT;
583 out:
584         if (rc)
585                 seq_server_fini(seq, env);
586         return rc;
587 }
588 EXPORT_SYMBOL(seq_server_init);
589
590 void seq_server_fini(struct lu_server_seq *seq,
591                      const struct lu_env *env)
592 {
593         ENTRY;
594
595         seq_server_proc_fini(seq);
596         seq_store_fini(seq, env);
597
598         EXIT;
599 }
600 EXPORT_SYMBOL(seq_server_fini);
601
602 int seq_site_fini(const struct lu_env *env, struct seq_server_site *ss)
603 {
604         if (ss == NULL)
605                 RETURN(0);
606
607         if (ss->ss_server_seq) {
608                 seq_server_fini(ss->ss_server_seq, env);
609                 OBD_FREE_PTR(ss->ss_server_seq);
610                 ss->ss_server_seq = NULL;
611         }
612
613         if (ss->ss_control_seq) {
614                 seq_server_fini(ss->ss_control_seq, env);
615                 OBD_FREE_PTR(ss->ss_control_seq);
616                 ss->ss_control_seq = NULL;
617         }
618
619         if (ss->ss_client_seq) {
620                 seq_client_fini(ss->ss_client_seq);
621                 OBD_FREE_PTR(ss->ss_client_seq);
622                 ss->ss_client_seq = NULL;
623         }
624
625         RETURN(0);
626 }
627 EXPORT_SYMBOL(seq_site_fini);
628
629 int fid_server_mod_init(void)
630 {
631         LU_CONTEXT_KEY_INIT(&seq_thread_key);
632         return lu_context_key_register(&seq_thread_key);
633 }
634
635 void fid_server_mod_exit(void)
636 {
637         lu_context_key_degister(&seq_thread_key);
638 }