Whamcloud - gitweb
1e9b397fef5ee9c771c7f4776b4a7dd39a857b31
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_compat.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) 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
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/osd/osd_compat.c
37  *
38  * on-disk compatibility stuff for OST
39  *
40  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
41  */
42
43 /* LUSTRE_VERSION_CODE */
44 #include <lustre_ver.h>
45 /* prerequisite for linux/xattr.h */
46 #include <linux/types.h>
47 /* prerequisite for linux/xattr.h */
48 #include <linux/fs.h>
49
50 /*
51  * struct OBD_{ALLOC,FREE}*()
52  * OBD_FAIL_CHECK
53  */
54 #include <obd_support.h>
55 #include <lvfs.h>
56
57 #include "osd_internal.h"
58 #include "osd_oi.h"
59
60 struct osd_compat_objid_seq {
61         /* protects on-fly initialization */
62         cfs_semaphore_t        dir_init_sem;
63         /* file storing last created objid */
64         struct osd_inode_id    last_id;
65         struct dentry         *groot; /* O/<seq> */
66         struct dentry        **dirs;  /* O/<seq>/d0-dXX */
67 };
68
69 #define MAX_OBJID_GROUP (FID_SEQ_ECHO + 1)
70
71 struct osd_compat_objid {
72         int                          subdir_count;
73         struct dentry               *root;
74         struct osd_inode_id          last_rcvd_id;
75         struct osd_inode_id          last_seq_id;
76         struct osd_compat_objid_seq  groups[MAX_OBJID_GROUP];
77 };
78
79 static void osd_push_ctxt(const struct osd_device *dev,
80                           struct lvfs_run_ctxt *newctxt,
81                           struct lvfs_run_ctxt *save)
82 {
83         OBD_SET_CTXT_MAGIC(newctxt);
84         newctxt->pwdmnt = dev->od_mnt;
85         newctxt->pwd = dev->od_mnt->mnt_root;
86         newctxt->fs = get_ds();
87
88         push_ctxt(save, newctxt, NULL);
89 }
90
91 void osd_compat_seq_fini(struct osd_device *osd, int seq)
92 {
93         struct osd_compat_objid_seq *grp;
94         struct osd_compat_objid     *map = osd->od_ost_map;
95         int                          i;
96
97         ENTRY;
98
99         grp = &map->groups[seq];
100         if (grp->groot ==NULL)
101                 RETURN_EXIT;
102         LASSERT(grp->dirs);
103
104         for (i = 0; i < map->subdir_count; i++) {
105                 if (grp->dirs[i] == NULL)
106                         break;
107                 dput(grp->dirs[i]);
108         }
109
110         OBD_FREE(grp->dirs, sizeof(struct dentry *) * map->subdir_count);
111         dput(grp->groot);
112         EXIT;
113 }
114
115 int osd_compat_seq_init(struct osd_device *osd, int seq)
116 {
117         struct osd_compat_objid_seq *grp;
118         struct osd_compat_objid     *map;
119         struct dentry               *d;
120         int                          rc = 0;
121         char                         name[32];
122         int                          i;
123         ENTRY;
124
125         map = osd->od_ost_map;
126         LASSERT(map);
127         LASSERT(map->root);
128         grp = &map->groups[seq];
129
130         if (grp->groot != NULL)
131                 RETURN(0);
132
133         cfs_down(&grp->dir_init_sem);
134
135         sprintf(name, "%d", seq);
136         d = simple_mkdir(map->root, osd->od_mnt, name, 0755, 1);
137         if (IS_ERR(d)) {
138                 rc = PTR_ERR(d);
139                 GOTO(out, rc);
140         } else if (d->d_inode == NULL) {
141                 rc = -EFAULT;
142                 dput(d);
143                 GOTO(out, rc);
144         }
145
146         LASSERT(grp->dirs == NULL);
147         OBD_ALLOC(grp->dirs, sizeof(d) * map->subdir_count);
148         if (grp->dirs == NULL) {
149                 dput(d);
150                 GOTO(out, rc = -ENOMEM);
151         }
152
153         grp->groot = d;
154         for (i = 0; i < map->subdir_count; i++) {
155                 sprintf(name, "d%d", i);
156                 d = simple_mkdir(grp->groot, osd->od_mnt, name, 0755, 1);
157                 if (IS_ERR(d)) {
158                         rc = PTR_ERR(d);
159                         break;
160                 } else if (d->d_inode == NULL) {
161                         rc = -EFAULT;
162                         dput(d);
163                         break;
164                 }
165
166                 grp->dirs[i] = d;
167         }
168
169         if (rc)
170                 osd_compat_seq_fini(osd, seq);
171 out:
172         cfs_up(&grp->dir_init_sem);
173         RETURN(rc);
174 }
175
176 int osd_last_rcvd_subdir_count(struct osd_device *osd)
177 {
178         struct lr_server_data lsd;
179         struct dentry        *dlast;
180         loff_t                off;
181         int                   rc = 0;
182         int                   count = FILTER_SUBDIR_COUNT;
183
184         ENTRY;
185
186         dlast = ll_lookup_one_len(LAST_RCVD, osd_sb(osd)->s_root,
187                                   strlen(LAST_RCVD));
188         if (IS_ERR(dlast))
189                 return PTR_ERR(dlast);
190         else if (dlast->d_inode == NULL)
191                 goto out;
192
193         off = 0;
194         rc = osd_ldiskfs_read(dlast->d_inode, &lsd, sizeof(lsd), &off);
195         if (rc == sizeof(lsd)) {
196                 CDEBUG(D_INFO, "read last_rcvd header, uuid = %s, "
197                        "subdir count = %d\n", lsd.lsd_uuid,
198                        lsd.lsd_subdir_count);
199                 if (le16_to_cpu(lsd.lsd_subdir_count) > 0)
200                         count = le16_to_cpu(lsd.lsd_subdir_count);
201         } else if (rc != 0) {
202                 CERROR("Can't read last_rcvd file, rc = %d\n", rc);
203                 if (rc > 0)
204                         rc = -EFAULT;
205                 dput(dlast);
206                 return rc;
207         } else {
208                 count = FILTER_SUBDIR_COUNT;
209         }
210 out:
211         dput(dlast);
212         LASSERT(count > 0);
213         return rc;
214 }
215
216 void osd_compat_fini(struct osd_device *dev)
217 {
218         int i;
219
220         ENTRY;
221
222         if (dev->od_ost_map == NULL)
223                 RETURN_EXIT;
224
225         for (i = 0; i < MAX_OBJID_GROUP; i++)
226                 osd_compat_seq_fini(dev, i);
227
228         dput(dev->od_ost_map->root);
229         OBD_FREE_PTR(dev->od_ost_map);
230         dev->od_ost_map = NULL;
231
232         EXIT;
233 }
234
235 /*
236  * directory structure on legacy OST:
237  *
238  * O/<seq>/d0-31/<objid>
239  * O/<seq>/LAST_ID
240  * last_rcvd
241  * LAST_GROUP
242  * CONFIGS
243  *
244  */
245 int osd_compat_init(struct osd_device *dev)
246 {
247         struct lvfs_run_ctxt  new;
248         struct lvfs_run_ctxt  save;
249         struct dentry        *rootd = osd_sb(dev)->s_root;
250         struct dentry        *d;
251         int                   rc;
252         int                   i;
253
254         ENTRY;
255
256         OBD_ALLOC_PTR(dev->od_ost_map);
257         if (dev->od_ost_map == NULL)
258                 RETURN(-ENOMEM);
259
260         /* to get subdir count from last_rcvd */
261         rc = osd_last_rcvd_subdir_count(dev);
262         if (rc < 0) {
263                 OBD_FREE_PTR(dev->od_ost_map);
264                 RETURN(rc);
265         }
266
267         dev->od_ost_map->subdir_count = rc;
268         rc = 0;
269
270         LASSERT(dev->od_fsops);
271         osd_push_ctxt(dev, &new, &save);
272
273         d = simple_mkdir(rootd, dev->od_mnt, "O", 0755, 1);
274         pop_ctxt(&save, &new, NULL);
275         if (IS_ERR(d)) {
276                 OBD_FREE_PTR(dev->od_ost_map);
277                 RETURN(PTR_ERR(d));
278         }
279
280         dev->od_ost_map->root = d;
281
282         /* Initialize all groups */
283         for (i = 0; i < MAX_OBJID_GROUP; i++) {
284                 cfs_sema_init(&dev->od_ost_map->groups[i].dir_init_sem, 1);
285                 rc = osd_compat_seq_init(dev, i);
286                 if (rc) {
287                         osd_compat_fini(dev);
288                         break;
289                 }
290         }
291
292         RETURN(rc);
293 }
294
295 int osd_compat_del_entry(struct osd_thread_info *info, struct osd_device *osd,
296                          struct dentry *dird, char *name, struct thandle *th)
297 {
298         struct ldiskfs_dir_entry_2 *de;
299         struct buffer_head         *bh;
300         struct osd_thandle         *oh;
301         struct dentry              *child;
302         struct inode               *dir = dird->d_inode;
303         int                         rc;
304
305         ENTRY;
306
307         oh = container_of(th, struct osd_thandle, ot_super);
308         LASSERT(oh->ot_handle != NULL);
309         LASSERT(oh->ot_handle->h_transaction != NULL);
310
311
312         child = &info->oti_child_dentry;
313         child->d_name.hash = 0;
314         child->d_name.name = name;
315         child->d_name.len = strlen(name);
316         child->d_parent = dird;
317         child->d_inode = NULL;
318
319         LOCK_INODE_MUTEX(dir);
320         rc = -ENOENT;
321         bh = osd_ldiskfs_find_entry(dir, child, &de, NULL);
322         if (bh) {
323                 rc = ldiskfs_delete_entry(oh->ot_handle, dir, de, bh);
324                 brelse(bh);
325         }
326         UNLOCK_INODE_MUTEX(dir);
327
328         RETURN(rc);
329 }
330
331 int osd_compat_add_entry(struct osd_thread_info *info, struct osd_device *osd,
332                          struct dentry *dir, char *name,
333                          const struct osd_inode_id *id, struct thandle *th)
334 {
335         struct osd_thandle *oh;
336         struct dentry *child;
337         struct inode *inode;
338         int rc;
339
340         ENTRY;
341
342         oh = container_of(th, struct osd_thandle, ot_super);
343         LASSERT(oh->ot_handle != NULL);
344         LASSERT(oh->ot_handle->h_transaction != NULL);
345
346         inode = &info->oti_inode;
347         inode->i_sb = osd_sb(osd);
348         osd_id_to_inode(inode, id);
349
350         child = &info->oti_child_dentry;
351         child->d_name.hash = 0;
352         child->d_name.name = name;
353         child->d_name.len = strlen(name);
354         child->d_parent = dir;
355         child->d_inode = inode;
356
357         LOCK_INODE_MUTEX(dir->d_inode);
358         rc = osd_ldiskfs_add_entry(oh->ot_handle, child, inode, NULL);
359         UNLOCK_INODE_MUTEX(dir->d_inode);
360
361         RETURN(rc);
362 }
363
364 int osd_compat_objid_lookup(struct osd_thread_info *info,
365                             struct osd_device *dev, const struct lu_fid *fid,
366                             struct osd_inode_id *id)
367 {
368         struct osd_compat_objid    *map;
369         struct dentry              *d;
370         struct dentry              *d_seq;
371         struct ost_id              *ostid = &info->oti_ostid;
372         int                         dirn;
373         char                        name[32];
374         struct ldiskfs_dir_entry_2 *de;
375         struct buffer_head         *bh;
376         struct inode               *dir;
377         struct inode               *inode;
378         ENTRY;
379
380         /* on the very first lookup we find and open directories */
381
382         map = dev->od_ost_map;
383         LASSERT(map);
384         LASSERT(map->root);
385
386         fid_ostid_pack(fid, ostid);
387         LASSERT(ostid->oi_seq < MAX_OBJID_GROUP);
388         LASSERT(map->subdir_count > 0);
389         LASSERT(map->groups[ostid->oi_seq].groot);
390
391         dirn = ostid->oi_id & (map->subdir_count - 1);
392         d = map->groups[ostid->oi_seq].dirs[dirn];
393         LASSERT(d);
394
395         sprintf(name, "%llu", ostid->oi_id);
396         d_seq = &info->oti_child_dentry;
397         d_seq->d_parent = d;
398         d_seq->d_name.hash = 0;
399         d_seq->d_name.name = name;
400         /* XXX: we can use rc from sprintf() instead of strlen() */
401         d_seq->d_name.len = strlen(name);
402
403         dir = d->d_inode;
404         LOCK_INODE_MUTEX(dir);
405         bh = osd_ldiskfs_find_entry(dir, d_seq, &de, NULL);
406         UNLOCK_INODE_MUTEX(dir);
407
408         if (bh == NULL)
409                 RETURN(-ENOENT);
410
411         osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
412         brelse(bh);
413
414         inode = osd_iget(info, dev, id);
415         if (IS_ERR(inode))
416                 RETURN(PTR_ERR(inode));
417
418         iput(inode);
419         RETURN(0);
420 }
421
422 int osd_compat_objid_insert(struct osd_thread_info *info,
423                             struct osd_device *osd,
424                             const struct lu_fid *fid,
425                             const struct osd_inode_id *id,
426                             struct thandle *th)
427 {
428         struct osd_compat_objid *map;
429         struct dentry           *d;
430         struct ost_id           *ostid = &info->oti_ostid;
431         int                      dirn, rc = 0;
432         char                     name[32];
433         ENTRY;
434
435         map = osd->od_ost_map;
436         LASSERT(map);
437         LASSERT(map->root);
438         LASSERT(map->subdir_count > 0);
439         LASSERT(map->groups[ostid->oi_seq].groot);
440
441         /* map fid to group:objid */
442         fid_ostid_pack(fid, ostid);
443         dirn = ostid->oi_id & (map->subdir_count - 1);
444         d = map->groups[ostid->oi_seq].dirs[dirn];
445         LASSERT(d);
446
447         sprintf(name, "%llu", ostid->oi_id);
448         rc = osd_compat_add_entry(info, osd, d, name, id, th);
449
450         RETURN(rc);
451 }
452
453 int osd_compat_objid_delete(struct osd_thread_info *info,
454                             struct osd_device *osd,
455                             const struct lu_fid *fid, struct thandle *th)
456 {
457         struct osd_compat_objid *map;
458         struct dentry           *d;
459         struct ost_id           *ostid = &info->oti_ostid;
460         int                      dirn, rc = 0;
461         char                     name[32];
462         ENTRY;
463
464         map = osd->od_ost_map;
465         LASSERT(map);
466         LASSERT(map->root);
467         LASSERT(map->subdir_count > 0);
468         LASSERT(map->groups[ostid->oi_seq].groot);
469
470         /* map fid to group:objid */
471         fid_ostid_pack(fid, ostid);
472         dirn = ostid->oi_id & (map->subdir_count - 1);
473         d = map->groups[ostid->oi_seq].dirs[dirn];
474         LASSERT(d);
475
476         sprintf(name, "%llu", ostid->oi_id);
477         rc = osd_compat_del_entry(info, osd, d, name, th);
478
479         RETURN(rc);
480 }
481
482 struct named_oid {
483         unsigned long  oid;
484         char          *name;
485 };
486
487 static const struct named_oid oids[] = {
488         { FLD_INDEX_OID,        "" /* "fld" */ },
489         { FID_SEQ_CTL_OID,      "" /* "seq_ctl" */ },
490         { FID_SEQ_SRV_OID,      "" /* "seq_srv" */ },
491         { MDD_ROOT_INDEX_OID,   "" /* "ROOT" */ },
492         { MDD_ORPHAN_OID,       "" /* "PENDING" */ },
493         { MDD_LOV_OBJ_OID,      "" /* LOV_OBJID */ },
494         { MDD_CAPA_KEYS_OID,    "" /* CAPA_KEYS */ },
495         { MDT_LAST_RECV_OID,    LAST_RCVD },
496         { OFD_LAST_RECV_OID,    "" /* LAST_RCVD */ },
497         { OFD_LAST_GROUP_OID,   "LAST_GROUP" },
498         { LLOG_CATALOGS_OID,    "" /* "CATALOGS" */ },
499         { MGS_CONFIGS_OID,      "" /* MOUNT_CONFIGS_DIR */ },
500         { OFD_HEALTH_CHECK_OID, HEALTH_CHECK },
501         { 0,                    NULL }
502 };
503
504 static char *oid2name(const unsigned long oid)
505 {
506         int i = 0;
507
508         while (oids[i].oid) {
509                 if (oids[i].oid == oid)
510                         return oids[i].name;
511                 i++;
512         }
513         return NULL;
514 }
515
516 int osd_compat_spec_insert(struct osd_thread_info *info,
517                            struct osd_device *osd, const struct lu_fid *fid,
518                            const struct osd_inode_id *id, struct thandle *th)
519 {
520         struct osd_compat_objid *map = osd->od_ost_map;
521         struct dentry           *root = osd_sb(osd)->s_root;
522         char                    *name;
523         int                      rc = 0;
524         int                      seq;
525         ENTRY;
526
527         if (fid_oid(fid) >= OFD_GROUP0_LAST_OID &&
528             fid_oid(fid) < OFD_GROUP4K_LAST_OID) {
529                 /* on creation of LAST_ID we create O/<group> hierarchy */
530                 LASSERT(map);
531                 seq = fid_oid(fid) - OFD_GROUP0_LAST_OID;
532                 LASSERT(seq < MAX_OBJID_GROUP);
533                 LASSERT(map->groups[seq].groot);
534         } else {
535                 name = oid2name(fid_oid(fid));
536                 if (name == NULL)
537                         CWARN("UNKNOWN COMPAT FID "DFID"\n", PFID(fid));
538                 else if (name[0])
539                         rc = osd_compat_add_entry(info, osd, root, name, id,
540                                                   th);
541         }
542
543         RETURN(rc);
544 }
545
546 int osd_compat_spec_lookup(struct osd_thread_info *info,
547                            struct osd_device *osd, const struct lu_fid *fid,
548                            struct osd_inode_id *id)
549 {
550         struct dentry *dentry;
551         struct inode  *inode;
552         char          *name;
553         int            rc = -ENOENT;
554         ENTRY;
555
556         name = oid2name(fid_oid(fid));
557         if (name == NULL || strlen(name) == 0)
558                 RETURN(-ENOENT);
559
560         dentry = ll_lookup_one_len(name, osd_sb(osd)->s_root, strlen(name));
561         if (!IS_ERR(dentry)) {
562                 inode = dentry->d_inode;
563                 if (inode) {
564                         if (is_bad_inode(inode)) {
565                                 rc = -EIO;
566                         } else {
567                                 osd_id_gen(id, inode->i_ino,
568                                            inode->i_generation);
569                                 rc = 0;
570                         }
571                 }
572                 dput(dentry);
573         }
574
575         RETURN(rc);
576 }