Whamcloud - gitweb
7b99a931688198f0f90905036a5fff04ca89b9e9
[fs/lustre-release.git] / lustre / mdd / mdd_orphans.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdd/mdd_orphans.c
33  *
34  * Orphan handling code
35  *
36  * Author: Mike Pershin <tappro@clusterfs.com>
37  *         Pravin B Shelar <pravin.shelar@sun.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_MDS
41
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <obd_support.h>
45 #include <lustre_fid.h>
46 #include "mdd_internal.h"
47
48 static const char mdd_orphan_index_name[] = "PENDING";
49 static const char dotdot[] = "..";
50
51 enum {
52         ORPH_OP_UNLINK,
53 };
54
55 /* obsolete after 2.11, needed for upgrades from older 2.x versions */
56 #define ORPHAN_FILE_NAME_FORMAT_20      "%016llx:%08x:%08x:%2x"
57
58 static struct dt_key *mdd_orphan_key_fill(const struct lu_env *env,
59                                           const struct lu_fid *lf)
60 {
61         char *key = mdd_env_info(env)->mti_key;
62
63         LASSERT(key);
64         snprintf(key, sizeof(mdd_env_info(env)->mti_key),
65                  DFID_NOBRACE, PFID(lf));
66
67         return (struct dt_key *)key;
68 }
69
70 /* compatibility with orphan files created in versions before 2.11 */
71 static struct dt_key *mdd_orphan_key_fill_20(const struct lu_env *env,
72                                              const struct lu_fid *lf)
73 {
74         char *key = mdd_env_info(env)->mti_key;
75
76         LASSERT(key);
77         snprintf(key, sizeof(mdd_env_info(env)->mti_key),
78                  ORPHAN_FILE_NAME_FORMAT_20,
79                  fid_seq(lf), fid_oid(lf), fid_ver(lf), ORPH_OP_UNLINK);
80
81         return (struct dt_key *)key;
82 }
83
84 static inline int mdd_orphan_insert_obj(const struct lu_env *env,
85                                         struct mdd_device *mdd,
86                                         struct mdd_object *obj,
87                                         struct thandle *th)
88 {
89         struct dt_insert_rec *rec = &mdd_env_info(env)->mti_dt_rec;
90         struct dt_object *dor = mdd->mdd_orphans;
91         const struct lu_fid *lf = mdo2fid(obj);
92         struct dt_key *key = mdd_orphan_key_fill(env, lf);
93
94         rec->rec_fid = lf;
95         rec->rec_type = mdd_object_type(obj);
96
97         return dt_insert(env, dor, (const struct dt_rec *)rec, key, th);
98 }
99
100 int mdd_orphan_declare_insert(const struct lu_env *env, struct mdd_object *obj,
101                               umode_t mode, struct thandle *th)
102 {
103         struct dt_insert_rec *rec = &mdd_env_info(env)->mti_dt_rec;
104         struct mdd_device *mdd = mdo2mdd(&obj->mod_obj);
105         struct dt_key *key;
106         int rc;
107
108         key = mdd_orphan_key_fill(env, mdo2fid(obj));
109
110         rec->rec_fid = mdo2fid(obj);
111         rec->rec_type = mode;
112         rc = dt_declare_insert(env, mdd->mdd_orphans,
113                                (const struct dt_rec *)rec, key, th);
114         if (rc != 0)
115                 return rc;
116
117         rc = mdo_declare_ref_add(env, obj, th);
118         if (rc)
119                 return rc;
120
121         if (!S_ISDIR(mode))
122                 return 0;
123
124         rc = mdo_declare_ref_add(env, obj, th);
125         if (rc)
126                 return rc;
127
128         rc = dt_declare_ref_add(env, mdd->mdd_orphans, th);
129         if (rc)
130                 return rc;
131
132         rc = mdo_declare_index_delete(env, obj, dotdot, th);
133         if (rc)
134                 return rc;
135
136         rc = mdo_declare_index_insert(env, obj,
137                                       lu_object_fid(&mdd->mdd_orphans->do_lu),
138                                       S_IFDIR, dotdot, th);
139
140         return rc;
141 }
142
143 /**
144  *  add an orphan \a obj to the orphan index.
145  *  \param obj file or directory.
146  *  \param th  transaction for index insert.
147  *
148  *  \pre obj nlink == 0 && obj->mod_count != 0
149  *
150  *  \retval 0  success
151  *  \retval  -ve index operation error.
152  */
153 int mdd_orphan_insert(const struct lu_env *env, struct mdd_object *obj,
154                       struct thandle *th)
155 {
156         struct mdd_device *mdd = mdo2mdd(&obj->mod_obj);
157         struct dt_object *dor = mdd->mdd_orphans;
158         const struct lu_fid *lf_dor = lu_object_fid(&dor->do_lu);
159         struct dt_object *next = mdd_object_child(obj);
160         struct dt_insert_rec *rec = &mdd_env_info(env)->mti_dt_rec;
161         int rc;
162         ENTRY;
163
164         LASSERT(mdd_write_locked(env, obj) != 0);
165         LASSERT(!(obj->mod_flags & ORPHAN_OBJ));
166
167         dt_write_lock(env, mdd->mdd_orphans, MOR_TGT_ORPHAN);
168
169         rc = mdd_orphan_insert_obj(env, mdd, obj, th);
170         if (rc)
171                 GOTO(out, rc);
172
173         mdo_ref_add(env, obj, th);
174         if (!S_ISDIR(mdd_object_type(obj)))
175                 GOTO(out, rc = 0);
176
177         mdo_ref_add(env, obj, th);
178         dt_ref_add(env, mdd->mdd_orphans, th);
179
180         /* try best to fixup directory, do not return errors from here */
181         if (!dt_try_as_dir(env, next))
182                 GOTO(out, rc = 0);
183
184         dt_delete(env, next, (const struct dt_key *)dotdot, th);
185
186         rec->rec_fid = lf_dor;
187         rec->rec_type = S_IFDIR;
188         dt_insert(env, next, (const struct dt_rec *)rec,
189                   (const struct dt_key *)dotdot, th);
190
191 out:
192         if (rc == 0)
193                 obj->mod_flags |= ORPHAN_OBJ;
194
195         dt_write_unlock(env, mdd->mdd_orphans);
196
197         RETURN(rc);
198 }
199
200 int mdd_orphan_declare_delete(const struct lu_env *env, struct mdd_object *obj,
201                               struct thandle *th)
202 {
203         struct mdd_device *mdd = mdo2mdd(&obj->mod_obj);
204         struct dt_key *key;
205         int rc;
206
207         key = mdd_orphan_key_fill(env, mdo2fid(obj));
208
209         rc = dt_declare_delete(env, mdd->mdd_orphans, key, th);
210         if (rc)
211                 return rc;
212
213         rc = mdo_declare_ref_del(env, obj, th);
214         if (rc)
215                 return rc;
216
217         if (!lu_object_exists(&obj->mod_obj.mo_lu))
218                 return -ENOENT;
219
220         if (S_ISDIR(mdd_object_type(obj))) {
221                 rc = mdo_declare_ref_del(env, obj, th);
222                 if (rc)
223                         return rc;
224
225                 rc = dt_declare_ref_del(env, mdd->mdd_orphans, th);
226         }
227
228         return rc;
229 }
230
231 /**
232  *  delete an orphan \a obj from orphan index.
233  *  \param obj file or directory.
234  *  \param th  transaction for index deletion and object destruction.
235  *
236  *  \pre obj->mod_count == 0 && ORPHAN_OBJ is set for obj.
237  *
238  *  \retval 0  success
239  *  \retval  -ve index operation error.
240  */
241 int mdd_orphan_delete(const struct lu_env *env, struct mdd_object *obj,
242                       struct thandle *th)
243 {
244         struct mdd_device *mdd = mdo2mdd(&obj->mod_obj);
245         struct dt_object *dor = mdd->mdd_orphans;
246         struct dt_key *key;
247         int rc;
248
249         ENTRY;
250
251         LASSERT(mdd_write_locked(env, obj) != 0);
252         LASSERT(obj->mod_flags & ORPHAN_OBJ);
253         LASSERT(obj->mod_count == 0);
254
255         LASSERT(dor);
256
257         key = mdd_orphan_key_fill(env, mdo2fid(obj));
258         dt_write_lock(env, mdd->mdd_orphans, MOR_TGT_ORPHAN);
259
260         rc = dt_delete(env, mdd->mdd_orphans, key, th);
261         if (rc == -ENOENT) {
262                 key = mdd_orphan_key_fill_20(env, mdo2fid(obj));
263                 rc = dt_delete(env, mdd->mdd_orphans, key, th);
264         }
265
266         if (!rc) {
267                 /* lov objects will be destroyed by caller */
268                 mdo_ref_del(env, obj, th);
269                 if (S_ISDIR(mdd_object_type(obj))) {
270                         mdo_ref_del(env, obj, th);
271                         dt_ref_del(env, mdd->mdd_orphans, th);
272                 }
273                 obj->mod_flags &= ~ORPHAN_OBJ;
274         } else {
275                 CERROR("%s: could not delete orphan object "DFID": rc = %d\n",
276                        mdd2obd_dev(mdd)->obd_name, PFID(mdo2fid(obj)), rc);
277         }
278
279         dt_write_unlock(env, mdd->mdd_orphans);
280         RETURN(rc);
281 }
282
283
284 static int mdd_orphan_destroy(const struct lu_env *env, struct mdd_object *obj,
285                               struct dt_key *key)
286 {
287         struct thandle *th = NULL;
288         struct mdd_device *mdd = mdo2mdd(&obj->mod_obj);
289         int rc = 0;
290         ENTRY;
291
292         th = mdd_trans_create(env, mdd);
293         if (IS_ERR(th)) {
294                 rc = PTR_ERR(th);
295                 if (rc != -EINPROGRESS)
296                         CERROR("%s: cannot get orphan thandle: rc = %d\n",
297                                mdd2obd_dev(mdd)->obd_name, rc);
298                 RETURN(rc);
299         }
300
301         rc = mdd_orphan_declare_delete(env, obj, th);
302         if (rc)
303                 GOTO(stop, rc);
304
305         rc = mdo_declare_destroy(env, obj, th);
306         if (rc)
307                 GOTO(stop, rc);
308
309         rc = mdd_trans_start(env, mdd, th);
310         if (rc)
311                 GOTO(stop, rc);
312
313         mdd_write_lock(env, obj, MOR_TGT_CHILD);
314         if (likely(obj->mod_count == 0)) {
315                 dt_write_lock(env, mdd->mdd_orphans, MOR_TGT_ORPHAN);
316                 rc = dt_delete(env, mdd->mdd_orphans, key, th);
317                 if (rc == 0) {
318                         mdo_ref_del(env, obj, th);
319                         if (S_ISDIR(mdd_object_type(obj))) {
320                                 mdo_ref_del(env, obj, th);
321                                 dt_ref_del(env, mdd->mdd_orphans, th);
322                         }
323                         rc = mdo_destroy(env, obj, th);
324                 } else {
325                         CERROR("%s: could not delete orphan "DFID": rc = %d\n",
326                                mdd2obd_dev(mdd)->obd_name, PFID(mdo2fid(obj)),
327                                rc);
328                 }
329                 dt_write_unlock(env, mdd->mdd_orphans);
330         }
331         mdd_write_unlock(env, obj);
332
333 stop:
334         rc = mdd_trans_stop(env, mdd, 0, th);
335
336         RETURN(rc);
337 }
338
339 /**
340  * Delete unused orphan with FID \a lf from PENDING directory
341  *
342  * \param mdd  MDD device finishing recovery
343  * \param lf   FID of file or directory to delete
344  * \param key  cookie for this entry in index iterator
345  *
346  * \retval 0   success
347  * \retval -ve error
348  */
349 static int mdd_orphan_key_test_and_delete(const struct lu_env *env,
350                                           struct mdd_device *mdd,
351                                           struct lu_fid *lf, struct dt_key *key)
352 {
353         struct mdd_object *mdo;
354         int rc;
355
356         mdo = mdd_object_find(env, mdd, lf);
357
358         if (IS_ERR(mdo))
359                 return PTR_ERR(mdo);
360
361         rc = -EBUSY;
362         if (mdo->mod_count == 0) {
363                 CDEBUG(D_HA, "Found orphan "DFID", delete it\n", PFID(lf));
364                 rc = mdd_orphan_destroy(env, mdo, key);
365                 if (rc) /* so replay-single.sh test_37 works */
366                         CERROR("%s: error unlinking orphan "DFID": rc = %d\n",
367                                mdd2obd_dev(mdd)->obd_name, PFID(lf), rc);
368         } else {
369                 mdd_write_lock(env, mdo, MOR_TGT_CHILD);
370                 if (likely(mdo->mod_count > 0)) {
371                         CDEBUG(D_HA, "Found orphan "DFID" count %d, skip it\n",
372                                PFID(lf), mdo->mod_count);
373                         mdo->mod_flags |= ORPHAN_OBJ;
374                 }
375                 mdd_write_unlock(env, mdo);
376         }
377
378         mdd_object_put(env, mdo);
379         return rc;
380 }
381
382 /**
383  * delete unreferenced files and directories in the PENDING directory
384  *
385  * Files that remain in PENDING after client->MDS recovery has completed
386  * have to be referenced (opened) by some client during recovery, or they
387  * will be deleted here (for clients that did not complete recovery).
388  *
389  * \param thread  info about orphan cleanup thread
390  *
391  * \retval 0   success
392  * \retval -ve error
393  */
394 static int mdd_orphan_index_iterate(const struct lu_env *env,
395                                     struct mdd_generic_thread *thread)
396 {
397         struct mdd_device *mdd = (struct mdd_device *)thread->mgt_data;
398         struct dt_object *dor = mdd->mdd_orphans;
399         struct lu_dirent *ent = &mdd_env_info(env)->mti_ent;
400         const struct dt_it_ops *iops;
401         struct dt_it *it;
402         struct lu_fid fid;
403         int key_sz = 0;
404         int rc;
405         __u64 cookie;
406         ENTRY;
407
408         iops = &dor->do_index_ops->dio_it;
409         it = iops->init(env, dor, LUDA_64BITHASH);
410         if (IS_ERR(it)) {
411                 rc = PTR_ERR(it);
412                 CERROR("%s: cannot clean '%s': rc = %d\n",
413                        mdd2obd_dev(mdd)->obd_name, mdd_orphan_index_name, rc);
414                 GOTO(out, rc);
415         }
416
417         rc = iops->load(env, it, 0);
418         if (rc < 0)
419                 GOTO(out_put, rc);
420         if (rc == 0) {
421                 CERROR("%s: error loading iterator to clean '%s'\n",
422                        mdd2obd_dev(mdd)->obd_name, mdd_orphan_index_name);
423                 /* Index contains no zero key? */
424                 GOTO(out_put, rc = -EIO);
425         }
426
427         do {
428                 if (thread->mgt_abort)
429                         break;
430
431                 key_sz = iops->key_size(env, it);
432                 /* filter out "." and ".." entries from PENDING dir. */
433                 if (key_sz < 8)
434                         goto next;
435
436                 rc = iops->rec(env, it, (struct dt_rec *)ent, LUDA_64BITHASH);
437                 if (rc != 0) {
438                         CERROR("%s: fail to get FID for orphan it: rc = %d\n",
439                                mdd2obd_dev(mdd)->obd_name, rc);
440                         goto next;
441                 }
442
443                 fid_le_to_cpu(&fid, &ent->lde_fid);
444                 if (!fid_is_sane(&fid)) {
445                         CERROR("%s: bad FID "DFID" cleaning '%s'\n",
446                                mdd2obd_dev(mdd)->obd_name, PFID(&fid),
447                                mdd_orphan_index_name);
448                         goto next;
449                 }
450
451                 /* kill orphan object */
452                 cookie = iops->store(env, it);
453                 iops->put(env, it);
454                 rc = mdd_orphan_key_test_and_delete(env, mdd, &fid,
455                                                 (struct dt_key *)ent->lde_name);
456
457                 /* after index delete reset iterator */
458                 if (rc == 0)
459                         rc = iops->get(env, it, (const void *)"");
460                 else
461                         rc = iops->load(env, it, cookie);
462 next:
463                 rc = iops->next(env, it);
464         } while (rc == 0);
465
466         GOTO(out_put, rc = 0);
467 out_put:
468         iops->put(env, it);
469         iops->fini(env, it);
470
471 out:
472         return rc;
473 }
474
475 /**
476  * open the PENDING directory for device \a mdd
477  *
478  * The PENDING directory persistently tracks files and directories that were
479  * unlinked from the namespace (nlink == 0) but are still held open by clients.
480  * Those inodes shouldn't be deleted if the MDS crashes, because the clients
481  * would not be able to recover and reopen those files.  Instead, these inodes
482  * are linked into the PENDING directory on disk, and only deleted if all
483  * clients close them, or the MDS finishes client recovery without any client
484  * reopening them (i.e. former clients didn't join recovery).
485  *  \param d   mdd device being started.
486  *
487  *  \retval 0  success
488  *  \retval  -ve index operation error.
489  *
490  */
491 int mdd_orphan_index_init(const struct lu_env *env, struct mdd_device *mdd)
492 {
493         struct lu_fid fid;
494         struct dt_object *d;
495         int rc = 0;
496
497         ENTRY;
498
499         /* create PENDING dir */
500         fid_zero(&fid);
501         rc = mdd_local_file_create(env, mdd, &mdd->mdd_local_root_fid,
502                                    mdd_orphan_index_name, S_IFDIR | S_IRUGO |
503                                    S_IWUSR | S_IXUGO, &fid);
504         if (rc < 0)
505                 RETURN(rc);
506
507         d = dt_locate(env, mdd->mdd_child, &fid);
508         if (IS_ERR(d))
509                 RETURN(PTR_ERR(d));
510         LASSERT(lu_object_exists(&d->do_lu));
511         if (!dt_try_as_dir(env, d)) {
512                 CERROR("%s: orphan dir '%s' is not an index: rc = %d\n",
513                        mdd2obd_dev(mdd)->obd_name, mdd_orphan_index_name, rc);
514                 dt_object_put(env, d);
515                 RETURN(-ENOTDIR);
516         }
517         mdd->mdd_orphans = d;
518         RETURN(0);
519 }
520
521 void mdd_orphan_index_fini(const struct lu_env *env, struct mdd_device *mdd)
522 {
523         ENTRY;
524         if (mdd->mdd_orphans != NULL) {
525                 dt_object_put(env, mdd->mdd_orphans);
526                 mdd->mdd_orphans = NULL;
527         }
528         EXIT;
529 }
530
531 static int mdd_orphan_cleanup_thread(void *args)
532 {
533         struct mdd_generic_thread *thread = (struct mdd_generic_thread *)args;
534         struct lu_env *env = NULL;
535         int rc;
536         ENTRY;
537
538         complete(&thread->mgt_started);
539
540         OBD_ALLOC_PTR(env);
541         if (env == NULL)
542                 GOTO(out, rc = -ENOMEM);
543
544         rc = lu_env_init(env, LCT_MD_THREAD);
545         if (rc)
546                 GOTO(out, rc);
547
548         rc = mdd_orphan_index_iterate(env, thread);
549
550         lu_env_fini(env);
551         GOTO(out, rc);
552 out:
553         if (env)
554                 OBD_FREE_PTR(env);
555         complete(&thread->mgt_finished);
556         return rc;
557 }
558
559 /**
560  *  Iterate orphan index to cleanup orphan objects after recovery is done.
561  *  \param d   mdd device in recovery.
562  */
563 int mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d)
564 {
565         int rc = -ENOMEM;
566         char *name = NULL;
567
568         OBD_ALLOC(name, MTI_NAME_MAXLEN);
569         if (name == NULL)
570                 goto out;
571
572         snprintf(name, MTI_NAME_MAXLEN, "orph_%s", mdd2obd_dev(d)->obd_name);
573
574         rc = mdd_generic_thread_start(&d->mdd_orphan_cleanup_thread,
575                                       mdd_orphan_cleanup_thread, d, name);
576 out:
577         if (rc)
578                 CERROR("%s: start orphan cleanup thread failed: rc = %d\n",
579                        mdd2obd_dev(d)->obd_name, rc);
580         if (name)
581                 OBD_FREE(name, MTI_NAME_MAXLEN);
582
583         return rc;
584 }