Whamcloud - gitweb
LU-3105 mdc: remove capa support
[fs/lustre-release.git] / lustre / fid / fid_store.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_store.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 <dt_object.h>
47 #include <obd_support.h>
48 #include <lustre_fid.h>
49 #include <lustre_fld.h>
50 #include "fid_internal.h"
51
52 static struct lu_buf *seq_store_buf(struct seq_thread_info *info)
53 {
54         struct lu_buf *buf;
55
56         buf = &info->sti_buf;
57         buf->lb_buf = &info->sti_space;
58         buf->lb_len = sizeof(info->sti_space);
59         return buf;
60 }
61
62 struct seq_update_callback {
63         struct dt_txn_commit_cb suc_cb;
64         struct lu_server_seq   *suc_seq;
65 };
66
67 void seq_update_cb(struct lu_env *env, struct thandle *th,
68                    struct dt_txn_commit_cb *cb, int err)
69 {
70         struct seq_update_callback *ccb;
71
72         ccb = container_of0(cb, struct seq_update_callback, suc_cb);
73
74         LASSERT(ccb->suc_seq != NULL);
75
76         ccb->suc_seq->lss_need_sync = 0;
77         OBD_FREE_PTR(ccb);
78 }
79
80 int seq_update_cb_add(struct thandle *th, struct lu_server_seq *seq)
81 {
82         struct seq_update_callback *ccb;
83         struct dt_txn_commit_cb    *dcb;
84         int                        rc;
85
86         OBD_ALLOC_PTR(ccb);
87         if (ccb == NULL)
88                 return -ENOMEM;
89
90         ccb->suc_seq       = seq;
91         seq->lss_need_sync = 1;
92
93         dcb            = &ccb->suc_cb;
94         dcb->dcb_func  = seq_update_cb;
95         INIT_LIST_HEAD(&dcb->dcb_linkage);
96         strlcpy(dcb->dcb_name, "seq_update_cb", sizeof(dcb->dcb_name));
97
98         rc = dt_trans_cb_add(th, dcb);
99         if (rc)
100                 OBD_FREE_PTR(ccb);
101         return rc;
102 }
103
104 /* This function implies that caller takes care about locking. */
105 int seq_store_update(const struct lu_env *env, struct lu_server_seq *seq,
106                      struct lu_seq_range *out, int sync)
107 {
108         struct dt_device *dt_dev = lu2dt_dev(seq->lss_obj->do_lu.lo_dev);
109         struct seq_thread_info *info;
110         struct thandle *th;
111         loff_t pos = 0;
112         int rc;
113
114         info = lu_context_key_get(&env->le_ctx, &seq_thread_key);
115         LASSERT(info != NULL);
116
117         th = dt_trans_create(env, dt_dev);
118         if (IS_ERR(th))
119                 RETURN(PTR_ERR(th));
120
121         /* Store ranges in le format. */
122         range_cpu_to_le(&info->sti_space, &seq->lss_space);
123
124         rc = dt_declare_record_write(env, seq->lss_obj,
125                                      seq_store_buf(info), 0, th);
126         if (rc)
127                 GOTO(exit, rc);
128
129         if (out != NULL) {
130                 rc = fld_declare_server_create(env,
131                                                seq->lss_site->ss_server_fld,
132                                                out, th);
133                 if (rc)
134                         GOTO(exit, rc);
135         }
136
137         rc = dt_trans_start_local(env, dt_dev, th);
138         if (rc)
139                 GOTO(exit, rc);
140
141         rc = dt_record_write(env, seq->lss_obj, seq_store_buf(info), &pos, th);
142         if (rc) {
143                 CERROR("%s: Can't write space data, rc %d\n",
144                        seq->lss_name, rc);
145                 GOTO(exit, rc);
146         } else if (out != NULL) {
147                 rc = fld_server_create(env, seq->lss_site->ss_server_fld, out,
148                                        th);
149                 if (rc) {
150                         CERROR("%s: Can't Update fld database, rc %d\n",
151                                 seq->lss_name, rc);
152                         GOTO(exit, rc);
153                 }
154         }
155         /* next sequence update will need sync until this update is committed
156          * in case of sync operation this is not needed obviously */
157         if (!sync)
158                 /* if callback can't be added then sync always */
159                 sync = !!seq_update_cb_add(th, seq);
160
161         th->th_sync |= sync;
162 exit:
163         dt_trans_stop(env, dt_dev, th);
164         return rc;
165 }
166
167 /*
168  * This function implies that caller takes care about locking or locking is not
169  * needed (init time).
170  */
171 int seq_store_read(struct lu_server_seq *seq,
172                    const struct lu_env *env)
173 {
174         struct seq_thread_info *info;
175         loff_t pos = 0;
176         int rc;
177         ENTRY;
178
179         info = lu_context_key_get(&env->le_ctx, &seq_thread_key);
180         LASSERT(info != NULL);
181
182         rc = dt_read(env, seq->lss_obj, seq_store_buf(info), &pos);
183
184         if (rc == sizeof(info->sti_space)) {
185                 range_le_to_cpu(&seq->lss_space, &info->sti_space);
186                 CDEBUG(D_INFO, "%s: Space - "DRANGE"\n",
187                        seq->lss_name, PRANGE(&seq->lss_space));
188                 rc = 0;
189         } else if (rc == 0) {
190                 rc = -ENODATA;
191         } else if (rc > 0) {
192                 CERROR("%s: Read only %d bytes of %d\n", seq->lss_name,
193                        rc, (int)sizeof(info->sti_space));
194                 rc = -EIO;
195         }
196
197         RETURN(rc);
198 }
199
200 int seq_store_init(struct lu_server_seq *seq,
201                    const struct lu_env *env,
202                    struct dt_device *dt)
203 {
204         struct dt_object *dt_obj;
205         struct lu_fid fid;
206         struct lu_attr attr;
207         struct dt_object_format dof;
208         const char *name;
209         int rc;
210         ENTRY;
211
212         name = seq->lss_type == LUSTRE_SEQ_SERVER ?
213                 LUSTRE_SEQ_SRV_NAME : LUSTRE_SEQ_CTL_NAME;
214
215         if (seq->lss_type == LUSTRE_SEQ_SERVER)
216                 lu_local_obj_fid(&fid, FID_SEQ_SRV_OID);
217         else
218                 lu_local_obj_fid(&fid, FID_SEQ_CTL_OID);
219
220         memset(&attr, 0, sizeof(attr));
221         attr.la_valid = LA_MODE;
222         attr.la_mode = S_IFREG | 0666;
223         dof.dof_type = DFT_REGULAR;
224
225         dt_obj = dt_find_or_create(env, dt, &fid, &dof, &attr);
226         if (!IS_ERR(dt_obj)) {
227                 seq->lss_obj = dt_obj;
228                 rc = 0;
229         } else {
230                 CERROR("%s: Can't find \"%s\" obj %d\n",
231                        seq->lss_name, name, (int)PTR_ERR(dt_obj));
232                 rc = PTR_ERR(dt_obj);
233         }
234
235         RETURN(rc);
236 }
237
238 void seq_store_fini(struct lu_server_seq *seq,
239                     const struct lu_env *env)
240 {
241         ENTRY;
242
243         if (seq->lss_obj != NULL) {
244                 if (!IS_ERR(seq->lss_obj))
245                         lu_object_put(env, &seq->lss_obj->do_lu);
246                 seq->lss_obj = NULL;
247         }
248
249         EXIT;
250 }