Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / osc / osc_create.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
5  *   Author Peter Braam <braam@clusterfs.com>
6  *
7  *   This file is part of the Lustre file system, http://www.lustre.org
8  *   Lustre is a trademark of Cluster File Systems, Inc.
9  *
10  *   You may have signed or agreed to another license before downloading
11  *   this software.  If so, you are bound by the terms and conditions
12  *   of that agreement, and the following does not apply to you.  See the
13  *   LICENSE file included with this distribution for more information.
14  *
15  *   If you did not agree to a different license, then this copy of Lustre
16  *   is open source software; you can redistribute it and/or modify it
17  *   under the terms of version 2 of the GNU General Public License as
18  *   published by the Free Software Foundation.
19  *
20  *   In either case, Lustre is distributed in the hope that it will be
21  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
22  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  *   license text for more details.
24  *
25  *  For testing and management it is treated as an obd_device,
26  *  although * it does not export a full OBD method table (the
27  *  requests are coming * in over the wire, so object target modules
28  *  do not have a full * method table.)
29  *
30  */
31
32 #ifndef EXPORT_SYMTAB
33 # define EXPORT_SYMTAB
34 #endif
35 #define DEBUG_SUBSYSTEM S_OSC
36
37 #ifdef __KERNEL__
38 # include <libcfs/libcfs.h>
39 #else /* __KERNEL__ */
40 # include <liblustre.h>
41 #endif
42
43 #ifdef  __CYGWIN__
44 # include <ctype.h>
45 #endif
46
47 # include <lustre_dlm.h>
48 #include <obd_class.h>
49 #include "osc_internal.h"
50
51 static int osc_interpret_create(struct ptlrpc_request *req, void *data, int rc)
52 {
53         struct osc_creator *oscc;
54         struct ost_body *body = NULL;
55         ENTRY;
56
57         if (req->rq_repmsg) {
58                 body = lustre_swab_repbuf(req, REPLY_REC_OFF, sizeof(*body),
59                                           lustre_swab_ost_body);
60                 if (body == NULL && rc == 0)
61                         rc = -EPROTO;
62         }
63
64         oscc = req->rq_async_args.pointer_arg[0];
65         LASSERT(oscc && (oscc->oscc_obd != LP_POISON));
66         
67         spin_lock(&oscc->oscc_lock);
68         oscc->oscc_flags &= ~OSCC_FLAG_CREATING;
69         if (rc == -ENOSPC || rc == -EROFS) {
70                 oscc->oscc_flags |= OSCC_FLAG_NOSPC;
71                 if (body && rc == -ENOSPC) {
72                         oscc->oscc_grow_count = OST_MIN_PRECREATE;
73                         oscc->oscc_last_id = body->oa.o_id;
74                 }
75                 spin_unlock(&oscc->oscc_lock);
76                 DEBUG_REQ(D_INODE, req, "OST out of space, flagging");
77         } else if (rc != 0 && rc != -EIO) {
78                 oscc->oscc_flags |= OSCC_FLAG_RECOVERING;
79                 oscc->oscc_grow_count = OST_MIN_PRECREATE;
80                 spin_unlock(&oscc->oscc_lock);
81                 DEBUG_REQ(D_ERROR, req,
82                           "Unknown rc %d from async create: failing oscc", rc);
83                 ptlrpc_fail_import(req->rq_import,
84                                    lustre_msg_get_conn_cnt(req->rq_reqmsg));
85         } else {
86                 if (rc == 0) {
87                          if (body) {
88                                 int diff = body->oa.o_id - oscc->oscc_last_id;
89
90                                 if (diff < oscc->oscc_grow_count)
91                                         oscc->oscc_grow_count =
92                                                 max(diff/3, OST_MIN_PRECREATE);
93                                 else
94                                         oscc->oscc_flags &= ~OSCC_FLAG_LOW;
95                                 oscc->oscc_last_id = body->oa.o_id;
96                         }
97                 } else {
98                         /* filter always set body->oa.o_id as the last_id 
99                          * of filter (see filter_handle_precreate for detail)*/
100                         if (body && body->oa.o_id > oscc->oscc_last_id)
101                                 oscc->oscc_last_id = body->oa.o_id;
102                 }
103                 spin_unlock(&oscc->oscc_lock);
104
105         }
106
107         CDEBUG(D_HA, "preallocated through id "LPU64" (next to use "LPU64")\n",
108                oscc->oscc_last_id, oscc->oscc_next_id);
109
110         cfs_waitq_signal(&oscc->oscc_waitq);
111         RETURN(rc);
112 }
113
114 static int oscc_internal_create(struct osc_creator *oscc)
115 {
116         struct ptlrpc_request *request;
117         struct ost_body *body;
118         int size[] = { sizeof(struct ptlrpc_body), sizeof(*body) };
119         ENTRY;
120
121         spin_lock(&oscc->oscc_lock);
122         if (oscc->oscc_grow_count < OST_MAX_PRECREATE &&
123             !(oscc->oscc_flags & (OSCC_FLAG_LOW | OSCC_FLAG_RECOVERING)) &&
124             (__s64)(oscc->oscc_last_id - oscc->oscc_next_id) <=
125                    (oscc->oscc_grow_count / 4 + 1)) {
126                 oscc->oscc_flags |= OSCC_FLAG_LOW;
127                 oscc->oscc_grow_count *= 2;
128         }
129
130         if (oscc->oscc_grow_count > OST_MAX_PRECREATE / 2)
131                 oscc->oscc_grow_count = OST_MAX_PRECREATE / 2;
132
133         if (oscc->oscc_flags & OSCC_FLAG_CREATING ||
134             oscc->oscc_flags & OSCC_FLAG_RECOVERING) {
135                 spin_unlock(&oscc->oscc_lock);
136                 RETURN(0);
137         }
138         oscc->oscc_flags |= OSCC_FLAG_CREATING;
139         spin_unlock(&oscc->oscc_lock);
140
141         request = ptlrpc_prep_req(oscc->oscc_obd->u.cli.cl_import,
142                                   LUSTRE_OST_VERSION, OST_CREATE, 2,
143                                   size, NULL);
144         if (request == NULL) {
145                 spin_lock(&oscc->oscc_lock);
146                 oscc->oscc_flags &= ~OSCC_FLAG_CREATING;
147                 spin_unlock(&oscc->oscc_lock);
148                 RETURN(-ENOMEM);
149         }
150
151         request->rq_request_portal = OST_CREATE_PORTAL; //XXX FIXME bug 249
152         body = lustre_msg_buf(request->rq_reqmsg, REQ_REC_OFF, sizeof(*body));
153
154         spin_lock(&oscc->oscc_lock);
155         body->oa.o_id = oscc->oscc_last_id + oscc->oscc_grow_count;
156         body->oa.o_gr = oscc->oscc_oa.o_gr;
157         LASSERT(body->oa.o_gr > 0);
158         body->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP;
159         spin_unlock(&oscc->oscc_lock);
160         CDEBUG(D_HA, "preallocating through id "LPU64" (last seen "LPU64")\n",
161                body->oa.o_id, oscc->oscc_last_id);
162
163         ptlrpc_req_set_repsize(request, 2, size);
164
165         request->rq_async_args.pointer_arg[0] = oscc;
166         request->rq_interpret_reply = osc_interpret_create;
167         ptlrpcd_add_req(request);
168
169         RETURN(0);
170 }
171
172 static int oscc_has_objects(struct osc_creator *oscc, int count)
173 {
174         int have_objs;
175         spin_lock(&oscc->oscc_lock);
176         have_objs = ((__s64)(oscc->oscc_last_id - oscc->oscc_next_id) >= count);
177         spin_unlock(&oscc->oscc_lock);
178
179         if (!have_objs)
180                 oscc_internal_create(oscc);
181
182         return have_objs;
183 }
184
185 static int oscc_wait_for_objects(struct osc_creator *oscc, int count)
186 {
187         int have_objs;
188         int ost_full;
189         int osc_invalid;
190
191         have_objs = oscc_has_objects(oscc, count);
192
193         spin_lock(&oscc->oscc_lock);
194         ost_full = (oscc->oscc_flags & OSCC_FLAG_NOSPC);
195         spin_unlock(&oscc->oscc_lock);
196
197         osc_invalid = oscc->oscc_obd->u.cli.cl_import->imp_invalid;
198
199         return have_objs || ost_full || osc_invalid;
200 }
201
202 static int oscc_precreate(struct osc_creator *oscc, int wait)
203 {
204         struct l_wait_info lwi = { 0 };
205         int rc = 0;
206         ENTRY;
207
208         if (oscc_has_objects(oscc, oscc->oscc_grow_count / 2))
209                 RETURN(0);
210
211         if (!wait)
212                 RETURN(0);
213
214         /* no rc check -- a no-INTR, no-TIMEOUT wait can't fail */
215         l_wait_event(oscc->oscc_waitq, oscc_wait_for_objects(oscc, 1), &lwi);
216
217         if (!oscc_has_objects(oscc, 1) && (oscc->oscc_flags & OSCC_FLAG_NOSPC))
218                 rc = -ENOSPC;
219
220         if (oscc->oscc_obd->u.cli.cl_import->imp_invalid)
221                 rc = -EIO;
222
223         RETURN(rc);
224 }
225
226 int oscc_recovering(struct osc_creator *oscc)
227 {
228         int recov = 0;
229
230         spin_lock(&oscc->oscc_lock);
231         recov = oscc->oscc_flags & OSCC_FLAG_RECOVERING;
232         spin_unlock(&oscc->oscc_lock);
233
234         return recov;
235 }
236
237 int osc_create(struct obd_export *exp, struct obdo *oa,
238                struct lov_stripe_md **ea, struct obd_trans_info *oti)
239 {
240         struct osc_creator *oscc = &exp->exp_obd->u.cli.cl_oscc;
241         struct lov_stripe_md *lsm;
242         int try_again = 1, rc = 0;
243         ENTRY;
244
245         LASSERT(oa);
246         LASSERT(ea);
247         LASSERT(oa->o_gr > 0);
248         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
249
250         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
251             oa->o_flags == OBD_FL_RECREATE_OBJS) {
252                 RETURN(osc_real_create(exp, oa, ea, oti));
253         }
254
255         if (oa->o_gr == FILTER_GROUP_LLOG || oa->o_gr == FILTER_GROUP_ECHO)
256                 RETURN(osc_real_create(exp, oa, ea, oti));
257
258         /* this is the special case where create removes orphans */
259         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
260             oa->o_flags == OBD_FL_DELORPHAN) {
261                 spin_lock(&oscc->oscc_lock);
262                 if (oscc->oscc_flags & OSCC_FLAG_SYNC_IN_PROGRESS) {
263                         spin_unlock(&oscc->oscc_lock);
264                         RETURN(-EBUSY);
265                 }
266                 if (!(oscc->oscc_flags & OSCC_FLAG_RECOVERING)) {
267                         spin_unlock(&oscc->oscc_lock);
268                         RETURN(0);
269                 }
270                 oscc->oscc_flags |= OSCC_FLAG_SYNC_IN_PROGRESS;
271                 spin_unlock(&oscc->oscc_lock);
272                 CDEBUG(D_HA, "%s: oscc recovery started\n",
273                        oscc->oscc_obd->obd_name);
274
275                 /* delete from next_id on up */
276                 oa->o_valid |= OBD_MD_FLID;
277                 oa->o_id = oscc->oscc_next_id - 1;
278
279                 CDEBUG(D_HA, "%s: deleting to next_id: "LPU64"\n",
280                        oscc->oscc_obd->obd_name, oa->o_id);
281
282                 rc = osc_real_create(exp, oa, ea, NULL);
283
284                 spin_lock(&oscc->oscc_lock);
285                 oscc->oscc_flags &= ~OSCC_FLAG_SYNC_IN_PROGRESS;
286                 if (rc == 0 || rc == -ENOSPC) {
287                         if (rc == -ENOSPC)
288                                 oscc->oscc_flags |= OSCC_FLAG_NOSPC;
289                         oscc->oscc_flags &= ~OSCC_FLAG_RECOVERING;
290                         oscc->oscc_last_id = oa->o_id;
291                         CDEBUG(D_HA, "%s: oscc recovery finished, last_id: "
292                                LPU64", rc: %d\n", oscc->oscc_obd->obd_name,
293                                oscc->oscc_last_id, rc);
294                         cfs_waitq_signal(&oscc->oscc_waitq);
295                 } else {
296                         CDEBUG(D_ERROR, "%s: oscc recovery failed: %d\n",
297                                oscc->oscc_obd->obd_name, rc);
298                 }
299                 spin_unlock(&oscc->oscc_lock);
300
301
302                 RETURN(rc);
303         }
304
305         lsm = *ea;
306         if (lsm == NULL) {
307                 rc = obd_alloc_memmd(exp, &lsm);
308                 if (rc < 0)
309                         RETURN(rc);
310         }
311
312         while (try_again) {
313                 /* If orphans are being recovered, then we must wait until
314                    it is finished before we can continue with create. */
315                 if (oscc_recovering(oscc)) {
316                         struct l_wait_info lwi;
317
318                         CDEBUG(D_HA,"%p: oscc recovery in progress, waiting\n",
319                                oscc);
320
321                         lwi = LWI_TIMEOUT(cfs_timeout_cap(cfs_time_seconds(obd_timeout/4)),
322                                           NULL, NULL);
323                         rc = l_wait_event(oscc->oscc_waitq,
324                                           !oscc_recovering(oscc), &lwi);
325                         LASSERT(rc == 0 || rc == -ETIMEDOUT);
326                         if (rc == -ETIMEDOUT) {
327                                 CDEBUG(D_HA,"%p: timeout waiting on recovery\n",
328                                        oscc);
329                                 RETURN(rc);
330                         }
331                         CDEBUG(D_HA, "%p: oscc recovery over, waking up\n",
332                                oscc);
333                 }
334
335                 spin_lock(&oscc->oscc_lock);
336                 if (oscc->oscc_flags & OSCC_FLAG_EXITING) {
337                         spin_unlock(&oscc->oscc_lock);
338                         break;
339                 }
340
341                 if (oscc->oscc_last_id >= oscc->oscc_next_id) {
342                         memcpy(oa, &oscc->oscc_oa, sizeof(*oa));
343                         oa->o_id = oscc->oscc_next_id;
344                         lsm->lsm_object_id = oscc->oscc_next_id;
345                         *ea = lsm;
346                         oscc->oscc_next_id++;
347                         try_again = 0;
348
349                         CDEBUG(D_HA, "%s: set oscc_next_id = "LPU64"\n",
350                                exp->exp_obd->obd_name, oscc->oscc_next_id);
351                 } else if (oscc->oscc_flags & OSCC_FLAG_NOSPC) {
352                         rc = -ENOSPC;
353                         spin_unlock(&oscc->oscc_lock);
354                         break;
355                 }
356                 spin_unlock(&oscc->oscc_lock);
357                 rc = oscc_precreate(oscc, try_again);
358                 if (rc)
359                         break;
360         }
361
362         if (rc == 0)
363                 CDEBUG(D_HA, "%s: returning objid "LPU64"\n",
364                        obd2cli_tgt(oscc->oscc_obd), lsm->lsm_object_id);
365         else if (*ea == NULL)
366                 obd_free_memmd(exp, &lsm);
367         RETURN(rc);
368 }
369
370 void oscc_init(struct obd_device *obd)
371 {
372         struct osc_creator *oscc;
373
374         if (obd == NULL)
375                 return;
376
377         oscc = &obd->u.cli.cl_oscc;
378
379         memset(oscc, 0, sizeof(*oscc));
380         CFS_INIT_LIST_HEAD(&oscc->oscc_list);
381         cfs_waitq_init(&oscc->oscc_waitq);
382         spin_lock_init(&oscc->oscc_lock);
383         oscc->oscc_obd = obd;
384         oscc->oscc_grow_count = OST_MIN_PRECREATE;
385
386         oscc->oscc_next_id = 2;
387         oscc->oscc_last_id = 1;
388         oscc->oscc_flags |= OSCC_FLAG_RECOVERING;
389         /* XXX the export handle should give the oscc the last object */
390         /* oed->oed_oscc.oscc_last_id = exph->....; */
391 }