Whamcloud - gitweb
LU-8998 pfl: enhance PFID EA for PFL
[fs/lustre-release.git] / lustre / utils / ll_decode_filter_fid.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) 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2014, 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/utils/ll_decode_filter_fid.c
33  *
34  * Tool for printing the OST filter_fid structure on the objects
35  * in human readable form.
36  *
37  * Author: Andreas Dilger <adilger@sun.com>
38  */
39
40
41 #include <stdio.h>
42 #include <errno.h>
43 #include <sys/types.h>
44 #include <sys/xattr.h>
45 #include <asm/byteorder.h>
46 #include <lustre/lustre_user.h>
47
48 #define PFID_STRIPE_IDX_BITS    16
49 #define PFID_STRIPE_COUNT_MASK  ((1 << PFID_STRIPE_IDX_BITS) - 1)
50
51 #if __BYTE_ORDER == __BIG_ENDIAN
52 static void lustre_swab_lu_fid(struct lu_fid *fid)
53 {
54         __swab64s(&fid->f_seq);
55         __swab32s(&fid->f_oid);
56         __swab32s(&fid->f_ver);
57 }
58
59 static void lustre_loa_swab(struct lustre_ost_attrs *loa)
60 {
61         struct lustre_mdt_attrs *lma = &loa->loa_lma;
62
63         __swab32s(&lma->lma_compat);
64         __swab32s(&lma->lma_incompat);
65         lustre_swab_lu_fid(&lma->lma_self_fid);
66         if (lma->lma_compat & LMAC_STRIPE_INFO) {
67                 lustre_swab_lu_fid(&loa->loa_parent_fid);
68                 __swab32s(&loa->loa_stripe_size);
69         }
70         if (lma->lma_compat & LMAC_COMP_INFO) {
71                 __swab32s(&loa->loa_comp_id);
72                 __swab64s(&loa->loa_comp_start);
73                 __swab64s(&loa->loa_comp_end);
74         }
75 };
76 #else
77 static void lustre_loa_swab(struct lustre_ost_attrs *loa)
78 {
79 }
80 #endif
81
82 int main(int argc, char *argv[])
83 {
84         int rc = 0;
85         int i;
86
87         for (i = 1; i < argc; i++) {
88                 char buf[1024]; /* allow xattr that may be larger */
89                 struct filter_fid *ff = (void *)buf;
90                 int size;
91
92                 size = getxattr(argv[i], "trusted.fid", buf,
93                                 sizeof(struct filter_fid));
94                 if (size < 0) {
95                         if (errno == ENODATA) {
96                                 struct lustre_ost_attrs *loa = (void *)buf;
97                                 int rc1;
98
99                                 rc1 = getxattr(argv[i], "trusted.lma", loa,
100                                                sizeof(*loa));
101                                 if (rc1 < sizeof(*loa)) {
102                                         fprintf(stderr,
103                                                 "%s: error reading fid: %s\n",
104                                                 argv[i], strerror(ENODATA));
105                                         if (!rc)
106                                                 rc = size;
107                                         continue;
108                                 }
109
110                                 lustre_loa_swab(loa);
111                                 if (!(loa->loa_lma.lma_compat &
112                                       LMAC_STRIPE_INFO)) {
113                                         fprintf(stderr,
114                                                 "%s: not stripe info: %s\n",
115                                                 argv[i], strerror(ENODATA));
116                                         if (!rc)
117                                                 rc = size;
118                                         continue;
119                                 }
120
121                                 printf("%s: parent="DFID" stripe=%u "
122                                        "stripe_size=%u stripe_count=%u",
123                                        argv[i], loa->loa_parent_fid.f_seq,
124                                        loa->loa_parent_fid.f_oid, 0, /* ver */
125                                        loa->loa_parent_fid.f_stripe_idx &
126                                                         PFID_STRIPE_COUNT_MASK,
127                                        loa->loa_stripe_size,
128                                        loa->loa_parent_fid.f_stripe_idx >>
129                                                         PFID_STRIPE_IDX_BITS);
130                                 if (loa->loa_comp_id != 0)
131                                         printf(" component_id=%u "
132                                                "component_start=%llu "
133                                                "component_end=%llu",
134                                                loa->loa_comp_id,
135                                                loa->loa_comp_start,
136                                                loa->loa_comp_end);
137                                 printf("\n");
138                                 continue;
139                         }
140
141                         fprintf(stderr, "%s: error reading fid: %s\n",
142                                 argv[i], strerror(errno));
143                         if (!rc)
144                                 rc = size;
145                         continue;
146                 }
147
148                 if (size != sizeof(struct filter_fid) &&
149                     size != sizeof(struct filter_fid_old) &&
150                     size != sizeof(struct lu_fid)) {
151                         fprintf(stderr, "%s: warning: fid larger than expected"
152                                 " (%d bytes), recompile?\n", argv[i], size);
153                         continue;
154                 }
155
156                 printf("%s: ", argv[i]);
157                 if (size == sizeof(struct filter_fid_old)) {
158                         struct filter_fid_old *ffo = (void *)buf;
159
160                         printf("objid=%llu seq=%llu ",
161                                (unsigned long long)__le64_to_cpu(ffo->ff_objid),
162                                (unsigned long long)__le64_to_cpu(ffo->ff_seq));
163                 }
164
165                 printf("parent="DFID" stripe=%u",
166                        (unsigned long long)__le64_to_cpu(ff->ff_parent.f_seq),
167                        __le32_to_cpu(ff->ff_parent.f_oid), 0, /* ver */
168                        /* this is stripe_nr actually */
169                        __le32_to_cpu(ff->ff_parent.f_stripe_idx));
170
171                 if (size >= sizeof(struct filter_fid)) {
172                         struct ost_layout *ol = &ff->ff_layout;
173
174                         /* new filter_fid, support PFL */
175                         printf(" stripe_size=%u stripe_count=%u",
176                                __le32_to_cpu(ol->ol_stripe_size),
177                                __le32_to_cpu(ol->ol_stripe_count));
178                         if (ol->ol_comp_id != 0)
179                                 printf(" component_id=%u "
180                                        "component_start=%llu "
181                                        "component_end=%llu",
182                                        __le32_to_cpu(ol->ol_comp_id),
183                                        __le64_to_cpu(ol->ol_comp_start),
184                                        __le64_to_cpu(ol->ol_comp_end));
185                 }
186
187                 printf("\n");
188         }
189
190         return rc;
191 }