Whamcloud - gitweb
Branch b1_4
[fs/lustre-release.git] / lustre / obdclass / llog_swab.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2004-2005 Cluster File Systems, Inc.
5  *   Author: jacob berkman  <jacob@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  * Swabbing of llog datatypes (from disk or over the wire).
26  *
27  */
28
29 #define DEBUG_SUBSYSTEM S_LOG
30
31 #ifndef __KERNEL__
32 #include <liblustre.h>
33 #endif
34
35 #include <lustre_log.h>
36
37 static void print_llogd_body(struct llogd_body *d)
38 {
39         CDEBUG(D_OTHER, "llogd body: %p\n", d);
40         CDEBUG(D_OTHER, "\tlgd_logid.lgl_oid: "LPX64"\n", d->lgd_logid.lgl_oid);
41         CDEBUG(D_OTHER, "\tlgd_logid.lgl_ogr: "LPX64"\n", d->lgd_logid.lgl_ogr);
42         CDEBUG(D_OTHER, "\tlgd_logid.lgl_ogen: %#x\n", d->lgd_logid.lgl_ogen);
43         CDEBUG(D_OTHER, "\tlgd_ctxt_idx: %#x\n", d->lgd_ctxt_idx);
44         CDEBUG(D_OTHER, "\tlgd_llh_flags: %#x\n", d->lgd_llh_flags);
45         CDEBUG(D_OTHER, "\tlgd_index: %#x\n", d->lgd_index);
46         CDEBUG(D_OTHER, "\tlgd_saved_index: %#x\n", d->lgd_saved_index);
47         CDEBUG(D_OTHER, "\tlgd_len: %#x\n", d->lgd_len);
48         CDEBUG(D_OTHER, "\tlgd_cur_offset: "LPX64"\n", d->lgd_cur_offset);
49 }
50
51 void lustre_swab_llogd_body (struct llogd_body *d)
52 {
53         ENTRY;
54         print_llogd_body(d);
55         __swab64s (&d->lgd_logid.lgl_oid);
56         __swab64s (&d->lgd_logid.lgl_ogr);
57         __swab32s (&d->lgd_logid.lgl_ogen);
58         __swab32s (&d->lgd_ctxt_idx);
59         __swab32s (&d->lgd_llh_flags);
60         __swab32s (&d->lgd_index);
61         __swab32s (&d->lgd_saved_index);
62         __swab32s (&d->lgd_len);
63         __swab64s (&d->lgd_cur_offset);
64         print_llogd_body(d);
65         EXIT;
66 }
67 EXPORT_SYMBOL(lustre_swab_llogd_body);
68
69 void lustre_swab_llogd_conn_body (struct llogd_conn_body *d)
70 {
71         __swab64s (&d->lgdc_gen.mnt_cnt);
72         __swab64s (&d->lgdc_gen.conn_cnt);
73         __swab64s (&d->lgdc_logid.lgl_oid);
74         __swab64s (&d->lgdc_logid.lgl_ogr);
75         __swab32s (&d->lgdc_logid.lgl_ogen);
76         __swab32s (&d->lgdc_ctxt_idx);
77 }
78 EXPORT_SYMBOL(lustre_swab_llogd_conn_body);
79
80 void lustre_swab_ll_fid(struct ll_fid *fid)
81 {
82         __swab64s (&fid->id);
83         __swab32s (&fid->generation);
84         __swab32s (&fid->f_type);
85 }
86 EXPORT_SYMBOL(lustre_swab_ll_fid);
87
88 void lustre_swab_llog_rec(struct llog_rec_hdr *rec, struct llog_rec_tail *tail)
89 {
90         __swab32s(&rec->lrh_len);
91         __swab32s(&rec->lrh_index);
92         __swab32s(&rec->lrh_type);
93
94         switch (rec->lrh_type) {
95         case OST_SZ_REC: {
96                 struct llog_size_change_rec *lsc =
97                         (struct llog_size_change_rec *)rec;
98
99                 lustre_swab_ll_fid(&lsc->lsc_fid);
100                 __swab32s(&lsc->lsc_io_epoch);
101
102                 break;
103         }
104
105         case OST_RAID1_REC:
106                 break;
107
108         case MDS_UNLINK_REC: {
109                 struct llog_unlink_rec *lur = (struct llog_unlink_rec *)rec;
110
111                 __swab64s(&lur->lur_oid);
112                 __swab32s(&lur->lur_ogen);
113
114                 break;
115         }
116
117         case MDS_SETATTR_REC: {
118                 struct llog_setattr_rec *lsr = (struct llog_setattr_rec *)rec;
119
120                 __swab64s(&lsr->lsr_oid);
121                 __swab32s(&lsr->lsr_ogen);
122                 __swab32s(&lsr->lsr_uid);
123                 __swab32s(&lsr->lsr_gid);
124
125                 break;
126         }
127
128         case OBD_CFG_REC:
129         case PTL_CFG_REC:                       /* obsolete */
130                 /* these are swabbed as they are consumed */
131                 break;
132
133         case LLOG_HDR_MAGIC: {
134                 struct llog_log_hdr *llh = (struct llog_log_hdr *)rec;
135
136                 __swab64s(&llh->llh_timestamp);
137                 __swab32s(&llh->llh_count);
138                 __swab32s(&llh->llh_bitmap_offset);
139                 __swab32s(&llh->llh_flags);
140                 __swab32s(&llh->llh_size);
141                 __swab32s(&llh->llh_cat_idx);
142                 if (tail != &llh->llh_tail) {
143                         __swab32s(&llh->llh_tail.lrt_index);
144                         __swab32s(&llh->llh_tail.lrt_len);
145                 }
146
147                 break;
148         }
149
150         case LLOG_LOGID_MAGIC: {
151                 struct llog_logid_rec *lid = (struct llog_logid_rec *)rec;
152
153                 __swab64s(&lid->lid_id.lgl_oid);
154                 __swab64s(&lid->lid_id.lgl_ogr);
155                 __swab32s(&lid->lid_id.lgl_ogen);
156                 break;
157         }
158
159         case LLOG_PAD_MAGIC:
160         /* ignore old pad records of type 0 */
161         case 0:
162                 break;
163
164         default:
165                 CERROR("Unknown llog rec type %#x swabbing rec %p\n",
166                        rec->lrh_type, rec);
167         }
168
169         if (tail) {
170                 __swab32s(&tail->lrt_len);
171                 __swab32s(&tail->lrt_index);
172         }
173 }
174 EXPORT_SYMBOL(lustre_swab_llog_rec);
175
176 static void print_llog_hdr(struct llog_log_hdr *h)
177 {
178         CDEBUG(D_OTHER, "llog header: %p\n", h);
179         CDEBUG(D_OTHER, "\tllh_hdr.lrh_index: %#x\n", h->llh_hdr.lrh_index);
180         CDEBUG(D_OTHER, "\tllh_hdr.lrh_len: %#x\n", h->llh_hdr.lrh_len);
181         CDEBUG(D_OTHER, "\tllh_hdr.lrh_type: %#x\n", h->llh_hdr.lrh_type);
182         CDEBUG(D_OTHER, "\tllh_timestamp: "LPX64"\n", h->llh_timestamp);
183         CDEBUG(D_OTHER, "\tllh_count: %#x\n", h->llh_count);
184         CDEBUG(D_OTHER, "\tllh_bitmap_offset: %#x\n", h->llh_bitmap_offset);
185         CDEBUG(D_OTHER, "\tllh_flags: %#x\n", h->llh_flags);
186         CDEBUG(D_OTHER, "\tllh_size: %#x\n", h->llh_size);
187         CDEBUG(D_OTHER, "\tllh_cat_idx: %#x\n", h->llh_cat_idx);
188         CDEBUG(D_OTHER, "\tllh_tail.lrt_index: %#x\n", h->llh_tail.lrt_index);
189         CDEBUG(D_OTHER, "\tllh_tail.lrt_len: %#x\n", h->llh_tail.lrt_len);
190 }
191
192 void lustre_swab_llog_hdr (struct llog_log_hdr *h)
193 {
194         ENTRY;
195         print_llog_hdr(h);
196
197         lustre_swab_llog_rec(&h->llh_hdr, &h->llh_tail);
198
199         print_llog_hdr(h);
200         EXIT;
201 }
202 EXPORT_SYMBOL(lustre_swab_llog_hdr);
203
204 static void print_lustre_cfg(struct lustre_cfg *lcfg)
205 {
206         int i;
207         ENTRY;
208
209         if (!(libcfs_debug & D_OTHER)) /* don't loop on nothing */
210                 return;
211         CDEBUG(D_OTHER, "lustre_cfg: %p\n", lcfg);
212         CDEBUG(D_OTHER, "\tlcfg->lcfg_version: %#x\n", lcfg->lcfg_version);
213
214         CDEBUG(D_OTHER, "\tlcfg->lcfg_command: %#x\n", lcfg->lcfg_command);
215         CDEBUG(D_OTHER, "\tlcfg->lcfg_num: %#x\n", lcfg->lcfg_num);
216         CDEBUG(D_OTHER, "\tlcfg->lcfg_flags: %#x\n", lcfg->lcfg_flags);
217         CDEBUG(D_OTHER, "\tlcfg->lcfg_nid: %s\n", libcfs_nid2str(lcfg->lcfg_nid));
218
219         CDEBUG(D_OTHER, "\tlcfg->lcfg_bufcount: %d\n", lcfg->lcfg_bufcount);
220         if (lcfg->lcfg_bufcount < LUSTRE_CFG_MAX_BUFCOUNT)
221                 for (i = 0; i < lcfg->lcfg_bufcount; i++)
222                         CDEBUG(D_OTHER, "\tlcfg->lcfg_buflens[%d]: %d\n",
223                                i, lcfg->lcfg_buflens[i]);
224         EXIT;
225 }
226
227 void lustre_swab_lustre_cfg(struct lustre_cfg *lcfg)
228 {
229         int i;
230         ENTRY;
231
232         __swab32s(&lcfg->lcfg_version);
233
234         if (lcfg->lcfg_version != LUSTRE_CFG_VERSION) {
235                 CERROR("not swabbing lustre_cfg version %#x (expecting %#x)\n",
236                        lcfg->lcfg_version, LUSTRE_CFG_VERSION);
237                 EXIT;
238                 return;
239         }
240
241         __swab32s(&lcfg->lcfg_command);
242         __swab32s(&lcfg->lcfg_num);
243         __swab32s(&lcfg->lcfg_flags);
244         __swab64s(&lcfg->lcfg_nid);
245         __swab32s(&lcfg->lcfg_bufcount);
246         for (i = 0; i < lcfg->lcfg_bufcount && i < LUSTRE_CFG_MAX_BUFCOUNT; i++)
247                 __swab32s(&lcfg->lcfg_buflens[i]);
248
249         print_lustre_cfg(lcfg);
250         EXIT;
251         return;
252 }
253 EXPORT_SYMBOL(lustre_swab_lustre_cfg);