Whamcloud - gitweb
b=19486 add server identifier into lu_seq_range.
[fs/lustre-release.git] / lustre / fid / fid_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
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 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_FID
47
48 #ifdef __KERNEL__
49 # include <libcfs/libcfs.h>
50 # include <linux/module.h>
51 #else /* __KERNEL__ */
52 # include <liblustre.h>
53 #endif
54
55 #include <obd.h>
56 #include <obd_class.h>
57 #include <dt_object.h>
58 #include <md_object.h>
59 #include <obd_support.h>
60 #include <lustre_req_layout.h>
61 #include <lustre_fid.h>
62 /* mdc RPC locks */
63 #include <lustre_mdc.h>
64 #include "fid_internal.h"
65
66 static int seq_client_rpc(struct lu_client_seq *seq,
67                           struct lu_seq_range *output, __u32 opc,
68                           const char *opcname)
69 {
70         struct obd_export     *exp = seq->lcs_exp;
71         struct ptlrpc_request *req;
72         struct lu_seq_range   *out, *in;
73         __u32                 *op;
74         int                    rc;
75         ENTRY;
76
77         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp), &RQF_SEQ_QUERY,
78                                         LUSTRE_MDS_VERSION, SEQ_QUERY);
79         if (req == NULL)
80                 RETURN(-ENOMEM);
81
82         /* Init operation code */
83         op = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_OPC);
84         *op = opc;
85
86         /* Zero out input range, this is not recovery yet. */
87         in = req_capsule_client_get(&req->rq_pill, &RMF_SEQ_RANGE);
88         range_init(in);
89
90         ptlrpc_request_set_replen(req);
91
92        if (seq->lcs_type == LUSTRE_SEQ_METADATA) {
93                 req->rq_request_portal = SEQ_METADATA_PORTAL;
94                 in->lsr_flags = LU_SEQ_RANGE_MDT;
95         } else {
96                 LASSERTF(seq->lcs_type == LUSTRE_SEQ_DATA,
97                          "unknown lcs_type %u\n", seq->lcs_type);
98                 req->rq_request_portal = SEQ_DATA_PORTAL;
99                 in->lsr_flags = LU_SEQ_RANGE_OST;
100         }
101
102         if (opc == SEQ_ALLOC_SUPER) {
103                 /* Update index field of *in, it is required for
104                  * FLD update on super sequence allocator node. */
105                 in->lsr_index = seq->lcs_space.lsr_index;
106                 req->rq_request_portal = SEQ_CONTROLLER_PORTAL;
107         } else {
108                 LASSERTF(opc == SEQ_ALLOC_META,
109                          "unknown opcode %u\n, opc", opc);
110         }
111
112         ptlrpc_at_set_req_timeout(req);
113
114         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
115         rc = ptlrpc_queue_wait(req);
116         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
117
118         if (rc)
119                 GOTO(out_req, rc);
120
121         out = req_capsule_server_get(&req->rq_pill, &RMF_SEQ_RANGE);
122         *output = *out;
123
124         if (!range_is_sane(output)) {
125                 CERROR("%s: Invalid range received from server: "
126                        DRANGE"\n", seq->lcs_name, PRANGE(output));
127                 GOTO(out_req, rc = -EINVAL);
128         }
129
130         if (range_is_exhausted(output)) {
131                 CERROR("%s: Range received from server is exhausted: "
132                        DRANGE"]\n", seq->lcs_name, PRANGE(output));
133                 GOTO(out_req, rc = -EINVAL);
134         }
135
136         CDEBUG(D_INFO, "%s: Allocated %s-sequence "DRANGE"]\n",
137                seq->lcs_name, opcname, PRANGE(output));
138
139         EXIT;
140 out_req:
141         ptlrpc_req_finished(req);
142         return rc;
143 }
144
145 /* Request sequence-controller node to allocate new super-sequence. */
146 int seq_client_alloc_super(struct lu_client_seq *seq,
147                            const struct lu_env *env)
148 {
149         int rc;
150         ENTRY;
151
152         cfs_down(&seq->lcs_sem);
153
154 #ifdef __KERNEL__
155         if (seq->lcs_srv) {
156                 LASSERT(env != NULL);
157                 rc = seq_server_alloc_super(seq->lcs_srv, &seq->lcs_space,
158                                             env);
159         } else {
160 #endif
161                 rc = seq_client_rpc(seq, &seq->lcs_space,
162                                     SEQ_ALLOC_SUPER, "super");
163 #ifdef __KERNEL__
164         }
165 #endif
166         cfs_up(&seq->lcs_sem);
167         RETURN(rc);
168 }
169
170 /* Request sequence-controller node to allocate new meta-sequence. */
171 static int seq_client_alloc_meta(struct lu_client_seq *seq,
172                                  const struct lu_env *env)
173 {
174         int rc;
175         ENTRY;
176
177 #ifdef __KERNEL__
178         if (seq->lcs_srv) {
179                 LASSERT(env != NULL);
180                 rc = seq_server_alloc_meta(seq->lcs_srv, &seq->lcs_space, env);
181         } else {
182 #endif
183                 rc = seq_client_rpc(seq, &seq->lcs_space,
184                                     SEQ_ALLOC_META, "meta");
185 #ifdef __KERNEL__
186         }
187 #endif
188         RETURN(rc);
189 }
190
191 /* Allocate new sequence for client. */
192 static int seq_client_alloc_seq(struct lu_client_seq *seq, seqno_t *seqnr)
193 {
194         int rc;
195         ENTRY;
196
197         LASSERT(range_is_sane(&seq->lcs_space));
198
199         if (range_is_exhausted(&seq->lcs_space)) {
200                 rc = seq_client_alloc_meta(seq, NULL);
201                 if (rc) {
202                         CERROR("%s: Can't allocate new meta-sequence, "
203                                "rc %d\n", seq->lcs_name, rc);
204                         RETURN(rc);
205                 } else {
206                         CDEBUG(D_INFO, "%s: New range - "DRANGE"\n",
207                                seq->lcs_name, PRANGE(&seq->lcs_space));
208                 }
209         } else {
210                 rc = 0;
211         }
212
213         LASSERT(!range_is_exhausted(&seq->lcs_space));
214         *seqnr = seq->lcs_space.lsr_start;
215         seq->lcs_space.lsr_start += 1;
216
217         CDEBUG(D_INFO, "%s: Allocated sequence ["LPX64"]\n", seq->lcs_name,
218                *seqnr);
219
220         RETURN(rc);
221 }
222
223 /* Allocate new fid on passed client @seq and save it to @fid. */
224 int seq_client_alloc_fid(struct lu_client_seq *seq, struct lu_fid *fid)
225 {
226         int rc;
227         ENTRY;
228
229         LASSERT(seq != NULL);
230         LASSERT(fid != NULL);
231
232         cfs_down(&seq->lcs_sem);
233
234         if (fid_is_zero(&seq->lcs_fid) ||
235             fid_oid(&seq->lcs_fid) >= seq->lcs_width)
236         {
237                 seqno_t seqnr;
238
239                 rc = seq_client_alloc_seq(seq, &seqnr);
240                 if (rc) {
241                         CERROR("%s: Can't allocate new sequence, "
242                                "rc %d\n", seq->lcs_name, rc);
243                         cfs_up(&seq->lcs_sem);
244                         RETURN(rc);
245                 }
246
247                 CDEBUG(D_INFO, "%s: Switch to sequence "
248                        "[0x%16.16"LPF64"x]\n", seq->lcs_name, seqnr);
249
250                 seq->lcs_fid.f_oid = LUSTRE_FID_INIT_OID;
251                 seq->lcs_fid.f_seq = seqnr;
252                 seq->lcs_fid.f_ver = 0;
253
254                 /*
255                  * Inform caller that sequence switch is performed to allow it
256                  * to setup FLD for it.
257                  */
258                 rc = 1;
259         } else {
260                 /* Just bump last allocated fid and return to caller. */
261                 seq->lcs_fid.f_oid += 1;
262                 rc = 0;
263         }
264
265         *fid = seq->lcs_fid;
266         cfs_up(&seq->lcs_sem);
267
268         CDEBUG(D_INFO, "%s: Allocated FID "DFID"\n", seq->lcs_name,  PFID(fid));
269         RETURN(rc);
270 }
271 EXPORT_SYMBOL(seq_client_alloc_fid);
272
273 /*
274  * Finish the current sequence due to disconnect.
275  * See mdc_import_event()
276  */
277 void seq_client_flush(struct lu_client_seq *seq)
278 {
279         LASSERT(seq != NULL);
280         cfs_down(&seq->lcs_sem);
281         fid_zero(&seq->lcs_fid);
282         /**
283          * this id shld not be used for seq range allocation.
284          * set to -1 for dgb check.
285          */
286
287         seq->lcs_space.lsr_index = -1;
288
289         range_init(&seq->lcs_space);
290         cfs_up(&seq->lcs_sem);
291 }
292 EXPORT_SYMBOL(seq_client_flush);
293
294 static void seq_client_proc_fini(struct lu_client_seq *seq);
295
296 #ifdef LPROCFS
297 static int seq_client_proc_init(struct lu_client_seq *seq)
298 {
299         int rc;
300         ENTRY;
301
302         seq->lcs_proc_dir = lprocfs_register(seq->lcs_name,
303                                              seq_type_proc_dir,
304                                              NULL, NULL);
305
306         if (IS_ERR(seq->lcs_proc_dir)) {
307                 CERROR("%s: LProcFS failed in seq-init\n",
308                        seq->lcs_name);
309                 rc = PTR_ERR(seq->lcs_proc_dir);
310                 RETURN(rc);
311         }
312
313         rc = lprocfs_add_vars(seq->lcs_proc_dir,
314                               seq_client_proc_list, seq);
315         if (rc) {
316                 CERROR("%s: Can't init sequence manager "
317                        "proc, rc %d\n", seq->lcs_name, rc);
318                 GOTO(out_cleanup, rc);
319         }
320
321         RETURN(0);
322
323 out_cleanup:
324         seq_client_proc_fini(seq);
325         return rc;
326 }
327
328 static void seq_client_proc_fini(struct lu_client_seq *seq)
329 {
330         ENTRY;
331         if (seq->lcs_proc_dir) {
332                 if (!IS_ERR(seq->lcs_proc_dir))
333                         lprocfs_remove(&seq->lcs_proc_dir);
334                 seq->lcs_proc_dir = NULL;
335         }
336         EXIT;
337 }
338 #else
339 static int seq_client_proc_init(struct lu_client_seq *seq)
340 {
341         return 0;
342 }
343
344 static void seq_client_proc_fini(struct lu_client_seq *seq)
345 {
346         return;
347 }
348 #endif
349
350 int seq_client_init(struct lu_client_seq *seq,
351                     struct obd_export *exp,
352                     enum lu_cli_type type,
353                     const char *prefix,
354                     struct lu_server_seq *srv)
355 {
356         int rc;
357         ENTRY;
358
359         LASSERT(seq != NULL);
360         LASSERT(prefix != NULL);
361
362         seq->lcs_exp = exp;
363         seq->lcs_srv = srv;
364         seq->lcs_type = type;
365         cfs_sema_init(&seq->lcs_sem, 1);
366         seq->lcs_width = LUSTRE_SEQ_MAX_WIDTH;
367
368         /* Make sure that things are clear before work is started. */
369         seq_client_flush(seq);
370
371         if (exp == NULL) {
372                 LASSERT(seq->lcs_srv != NULL);
373         } else {
374                 LASSERT(seq->lcs_exp != NULL);
375                 seq->lcs_exp = class_export_get(seq->lcs_exp);
376         }
377
378         snprintf(seq->lcs_name, sizeof(seq->lcs_name),
379                  "cli-%s", prefix);
380
381         rc = seq_client_proc_init(seq);
382         if (rc)
383                 seq_client_fini(seq);
384         RETURN(rc);
385 }
386 EXPORT_SYMBOL(seq_client_init);
387
388 void seq_client_fini(struct lu_client_seq *seq)
389 {
390         ENTRY;
391
392         seq_client_proc_fini(seq);
393
394         if (seq->lcs_exp != NULL) {
395                 class_export_put(seq->lcs_exp);
396                 seq->lcs_exp = NULL;
397         }
398
399         seq->lcs_srv = NULL;
400         EXIT;
401 }
402 EXPORT_SYMBOL(seq_client_fini);