Whamcloud - gitweb
- better dump a backtrace, but not too often
[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 Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  *  For testing and management it is treated as an obd_device,
23  *  although * it does not export a full OBD method table (the
24  *  requests are coming * in over the wire, so object target modules
25  *  do not have a full * method table.)
26  *
27  */
28
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32 #define DEBUG_SUBSYSTEM S_OSC
33
34 #ifdef __KERNEL__
35 # include <linux/version.h>
36 # include <linux/module.h>
37 # include <linux/mm.h>
38 # include <linux/highmem.h>
39 # include <linux/ctype.h>
40 # include <linux/init.h>
41 # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
42 #  include <linux/workqueue.h>
43 #  include <linux/smp_lock.h>
44 # else
45 #  include <linux/locks.h>
46 # endif
47 #else /* __KERNEL__ */
48 # include <liblustre.h>
49 #endif
50
51 #ifdef  __CYGWIN__
52 # include <ctype.h>
53 #endif
54
55 # include <linux/lustre_dlm.h>
56 #include <linux/obd_class.h>
57 #include "osc_internal.h"
58
59 int oscc_recovering(struct osc_creator *oscc)
60 {
61         int recov = 0;
62
63         spin_lock(&oscc->oscc_lock);
64         recov = oscc->oscc_flags & OSCC_FLAG_RECOVERING;
65         spin_unlock(&oscc->oscc_lock);
66
67         return recov;
68 }
69
70 /* this only is used now for deleting orphanes */
71 int osc_create(struct obd_export *exp, struct obdo *oa,
72                void *acl, int acl_size, struct lov_stripe_md **ea,
73                struct obd_trans_info *oti)
74 {
75         struct osc_creator *oscc = &exp->exp_obd->u.cli.cl_oscc;
76         int rc = 0, try_again = 1;
77         ENTRY;
78
79         LASSERT(oa);
80         LASSERT(ea);
81         LASSERT(oa->o_gr > 0);
82         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
83         LASSERT(acl == NULL && acl_size == 0);
84
85 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
86         if (current->journal_info != NULL) {
87                 static int dump_counter = 0;
88                 CDEBUG(D_ERROR, "calling osc_create() with an "
89                        "open transaction isn't a good idea\n");
90                 if (dump_counter++ % 100 == 0)
91                         portals_debug_dumpstack(NULL);
92         }
93 #endif
94
95         if (oa->o_gr == FILTER_GROUP_LLOG || oa->o_gr == FILTER_GROUP_ECHO)
96                 RETURN(osc_real_create(exp, oa, ea, oti));
97
98         /* this is the special case where create removes orphans */
99         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
100             oa->o_flags == OBD_FL_DELORPHAN) {
101                 spin_lock(&oscc->oscc_lock);
102                 if (oscc->oscc_flags & OSCC_FLAG_SYNC_IN_PROGRESS) {
103                         spin_unlock(&oscc->oscc_lock);
104                         return -EBUSY;
105                 }
106                 if (!(oscc->oscc_flags & OSCC_FLAG_RECOVERING)) {
107                         spin_unlock(&oscc->oscc_lock);
108                         return 0;
109                 }
110                 oscc->oscc_flags |= OSCC_FLAG_SYNC_IN_PROGRESS;
111                 spin_unlock(&oscc->oscc_lock);
112                 CDEBUG(D_HA, "%s; oscc recovery started\n",
113                        exp->exp_obd->obd_name);
114                 LASSERT(oscc->oscc_flags & OSCC_FLAG_RECOVERING);
115
116                 CDEBUG(D_HA, "%s: deleting to next_id: "LPU64"\n",
117                        oscc->oscc_obd->obd_name, oa->o_id);
118
119                 rc = osc_real_create(exp, oa, ea, NULL);
120                 if (oscc->oscc_obd == NULL) {
121                         CWARN("the obd for oscc %p has been freed\n", oscc);
122                         RETURN(rc);
123                 }
124
125                 spin_lock(&oscc->oscc_lock);
126                 oscc->oscc_flags &= ~OSCC_FLAG_SYNC_IN_PROGRESS;
127                 if (rc == 0 || rc == -ENOSPC) {
128                         if (rc == -ENOSPC)
129                                 oscc->oscc_flags |= OSCC_FLAG_NOSPC;
130                         oscc->oscc_flags &= ~OSCC_FLAG_RECOVERING;
131                         CDEBUG(D_HA, "%s: oscc recovery finished: %d\n",
132                                oscc->oscc_obd->obd_name, rc);
133                         wake_up(&oscc->oscc_waitq);
134                 } else {
135                         CDEBUG(D_ERROR, "%s: oscc recovery failed: %d\n",
136                                oscc->oscc_obd->obd_name, rc);
137                 }
138                 spin_unlock(&oscc->oscc_lock);
139                 RETURN(rc);
140         }
141
142         while (try_again) {
143                 /* If orphans are being recovered, then we must wait until
144                    it is finished before we can continue with create. */
145                 if (oscc_recovering(oscc)) {
146                         struct l_wait_info lwi;
147
148                         CDEBUG(D_HA,"%p: oscc recovery in progress, waiting\n",
149                                oscc);
150
151                         lwi = LWI_TIMEOUT(MAX(obd_timeout*HZ/4, 1), NULL, NULL);
152                         rc = l_wait_event(oscc->oscc_waitq,
153                                           !oscc_recovering(oscc), &lwi);
154                         LASSERT(rc == 0 || rc == -ETIMEDOUT);
155                         if (rc == -ETIMEDOUT) {
156                                 CDEBUG(D_ERROR,"%p: timeout waiting on recovery\n",
157                                        oscc);
158                                 portals_debug_dumplog();
159                                 RETURN(rc);
160                         }
161                         CDEBUG(D_HA, "%p: oscc recovery over, waking up\n",
162                                oscc);
163                 }
164
165                 spin_lock(&oscc->oscc_lock);
166                 if (oscc->oscc_flags & OSCC_FLAG_EXITING) {
167                         spin_unlock(&oscc->oscc_lock);
168                         break;
169                 }
170
171                 if (oscc->oscc_flags & OSCC_FLAG_NOSPC) {
172                         rc = -ENOSPC;
173                         spin_unlock(&oscc->oscc_lock);
174                         break;
175                 }
176
177                 oscc->oscc_next_id++;
178                 oa->o_id = oscc->oscc_next_id;
179                 try_again = 0;
180                 spin_unlock(&oscc->oscc_lock);
181
182                 CDEBUG(D_HA, "%s: returning objid "LPU64"\n",
183                        oscc->oscc_obd->u.cli.cl_import->imp_target_uuid.uuid,
184                        oa->o_id);
185         }
186
187         RETURN(rc);
188 }
189
190 void oscc_init(struct obd_device *obd)
191 {
192         struct osc_creator *oscc;
193
194         if (obd == NULL)
195                 return;
196
197         oscc = &obd->u.cli.cl_oscc;
198         memset(oscc, 0, sizeof(*oscc));
199
200         oscc->oscc_obd = obd;
201         spin_lock_init(&oscc->oscc_lock);
202         oscc->oscc_flags |= OSCC_FLAG_RECOVERING;
203         init_waitqueue_head(&oscc->oscc_waitq);
204 }