Whamcloud - gitweb
LU-8648 all: remove all Sun license and URL references
[fs/lustre-release.git] / lustre / obdclass / llog_swab.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) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2015, 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/obdclass/llog_swab.c
33  *
34  * Swabbing of llog datatypes (from disk or over the wire).
35  *
36  * Author: jacob berkman  <jacob@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_LOG
40
41
42 #include <lustre_log.h>
43 #include <lustre_update.h>
44
45 static void print_llogd_body(struct llogd_body *d)
46 {
47         CDEBUG(D_OTHER, "llogd body: %p\n", d);
48         CDEBUG(D_OTHER, "\tlgd_logid.lgl_oi: "DOSTID"\n",
49                POSTID(&d->lgd_logid.lgl_oi));
50         CDEBUG(D_OTHER, "\tlgd_logid.lgl_ogen: %#x\n", d->lgd_logid.lgl_ogen);
51         CDEBUG(D_OTHER, "\tlgd_ctxt_idx: %#x\n", d->lgd_ctxt_idx);
52         CDEBUG(D_OTHER, "\tlgd_llh_flags: %#x\n", d->lgd_llh_flags);
53         CDEBUG(D_OTHER, "\tlgd_index: %#x\n", d->lgd_index);
54         CDEBUG(D_OTHER, "\tlgd_saved_index: %#x\n", d->lgd_saved_index);
55         CDEBUG(D_OTHER, "\tlgd_len: %#x\n", d->lgd_len);
56         CDEBUG(D_OTHER, "\tlgd_cur_offset: %#llx\n", d->lgd_cur_offset);
57 }
58
59 void lustre_swab_lu_fid(struct lu_fid *fid)
60 {
61         __swab64s (&fid->f_seq);
62         __swab32s (&fid->f_oid);
63         __swab32s (&fid->f_ver);
64 }
65 EXPORT_SYMBOL(lustre_swab_lu_fid);
66
67 void lustre_swab_ost_id(struct ost_id *oid)
68 {
69         if (fid_seq_is_mdt0(oid->oi.oi_seq) ||
70             fid_seq_is_default(oid->oi.oi_seq)) {
71                 __swab64s(&oid->oi.oi_id);
72                 __swab64s(&oid->oi.oi_seq);
73         } else {
74                 lustre_swab_lu_fid(&oid->oi_fid);
75         }
76 }
77 EXPORT_SYMBOL(lustre_swab_ost_id);
78
79 void lustre_swab_llog_id(struct llog_logid *log_id)
80 {
81         __swab64s(&log_id->lgl_oi.oi.oi_id);
82         __swab64s(&log_id->lgl_oi.oi.oi_seq);
83         __swab32s(&log_id->lgl_ogen);
84 }
85
86 void lustre_swab_llogd_body (struct llogd_body *d)
87 {
88         ENTRY;
89         print_llogd_body(d);
90         lustre_swab_llog_id(&d->lgd_logid);
91         __swab32s (&d->lgd_ctxt_idx);
92         __swab32s (&d->lgd_llh_flags);
93         __swab32s (&d->lgd_index);
94         __swab32s (&d->lgd_saved_index);
95         __swab32s (&d->lgd_len);
96         __swab64s (&d->lgd_cur_offset);
97         print_llogd_body(d);
98         EXIT;
99 }
100 EXPORT_SYMBOL(lustre_swab_llogd_body);
101
102 void lustre_swab_llogd_conn_body (struct llogd_conn_body *d)
103 {
104         __swab64s (&d->lgdc_gen.mnt_cnt);
105         __swab64s (&d->lgdc_gen.conn_cnt);
106         lustre_swab_llog_id(&d->lgdc_logid);
107         __swab32s (&d->lgdc_ctxt_idx);
108 }
109 EXPORT_SYMBOL(lustre_swab_llogd_conn_body);
110
111 void lustre_swab_ll_fid(struct ll_fid *fid)
112 {
113         __swab64s (&fid->id);
114         __swab32s (&fid->generation);
115         __swab32s (&fid->f_type);
116 }
117
118 void lustre_swab_lu_seq_range(struct lu_seq_range *range)
119 {
120         __swab64s (&range->lsr_start);
121         __swab64s (&range->lsr_end);
122         __swab32s (&range->lsr_index);
123         __swab32s (&range->lsr_flags);
124 }
125 EXPORT_SYMBOL(lustre_swab_lu_seq_range);
126
127 void lustre_swab_update_ops(struct update_ops *uops, unsigned int op_count)
128 {
129         unsigned int i;
130         unsigned int j;
131
132         for (i = 0; i < op_count; i++) {
133                 lustre_swab_lu_fid(&uops->uops_op[i].uop_fid);
134                 __swab16s(&uops->uops_op[i].uop_type);
135                 __swab16s(&uops->uops_op[i].uop_param_count);
136                 for (j = 0; j < uops->uops_op[i].uop_param_count; j++)
137                         __swab16s(&uops->uops_op[i].uop_params_off[j]);
138         }
139 }
140 EXPORT_SYMBOL(lustre_swab_update_ops);
141
142 void lustre_swab_llog_rec(struct llog_rec_hdr *rec)
143 {
144         struct llog_rec_tail *tail = NULL;
145
146         __swab32s(&rec->lrh_len);
147         __swab32s(&rec->lrh_index);
148         __swab32s(&rec->lrh_type);
149         __swab32s(&rec->lrh_id);
150
151         switch (rec->lrh_type) {
152         case OST_SZ_REC:
153         {
154                 struct llog_size_change_rec *lsc =
155                         (struct llog_size_change_rec *)rec;
156
157                 lustre_swab_ll_fid(&lsc->lsc_fid);
158                 __swab32s(&lsc->lsc_ioepoch);
159                 tail = &lsc->lsc_tail;
160                 break;
161         }
162         case MDS_UNLINK_REC:
163         {
164                 struct llog_unlink_rec *lur = (struct llog_unlink_rec *)rec;
165
166                 __swab64s(&lur->lur_oid);
167                 __swab32s(&lur->lur_oseq);
168                 __swab32s(&lur->lur_count);
169                 tail = &lur->lur_tail;
170                 break;
171         }
172         case MDS_UNLINK64_REC:
173         {
174                 struct llog_unlink64_rec *lur =
175                         (struct llog_unlink64_rec *)rec;
176
177                 lustre_swab_lu_fid(&lur->lur_fid);
178                 __swab32s(&lur->lur_count);
179                 tail = &lur->lur_tail;
180                 break;
181         }
182         case CHANGELOG_REC:
183         {
184                 struct llog_changelog_rec *cr =
185                         (struct llog_changelog_rec *)rec;
186
187                 __swab16s(&cr->cr.cr_namelen);
188                 __swab16s(&cr->cr.cr_flags);
189                 __swab32s(&cr->cr.cr_type);
190                 __swab64s(&cr->cr.cr_index);
191                 __swab64s(&cr->cr.cr_prev);
192                 __swab64s(&cr->cr.cr_time);
193                 lustre_swab_lu_fid(&cr->cr.cr_tfid);
194                 lustre_swab_lu_fid(&cr->cr.cr_pfid);
195                 if (cr->cr.cr_flags & CLF_RENAME) {
196                         struct changelog_ext_rename *rnm =
197                                 changelog_rec_rename(&cr->cr);
198
199                         lustre_swab_lu_fid(&rnm->cr_sfid);
200                         lustre_swab_lu_fid(&rnm->cr_spfid);
201                 }
202                 /* Because the tail follows a variable-length structure we need
203                  * to compute its location at runtime */
204                 tail = (struct llog_rec_tail *)((char *)&cr->cr +
205                                                 changelog_rec_size(&cr->cr) +
206                                                 cr->cr.cr_namelen);
207                 break;
208         }
209
210         case CHANGELOG_USER_REC:
211         {
212                 struct llog_changelog_user_rec *cur =
213                         (struct llog_changelog_user_rec*)rec;
214
215                 __swab32s(&cur->cur_id);
216                 __swab64s(&cur->cur_endrec);
217                 tail = &cur->cur_tail;
218                 break;
219         }
220
221         case HSM_AGENT_REC: {
222                 struct llog_agent_req_rec *arr =
223                         (struct llog_agent_req_rec *)rec;
224
225                 __swab32s(&arr->arr_hai.hai_len);
226                 __swab32s(&arr->arr_hai.hai_action);
227                 lustre_swab_lu_fid(&arr->arr_hai.hai_fid);
228                 lustre_swab_lu_fid(&arr->arr_hai.hai_dfid);
229                 __swab64s(&arr->arr_hai.hai_cookie);
230                 __swab64s(&arr->arr_hai.hai_extent.offset);
231                 __swab64s(&arr->arr_hai.hai_extent.length);
232                 __swab64s(&arr->arr_hai.hai_gid);
233                 /* no swabing for opaque data */
234                 /* hai_data[0]; */
235                 break;
236         }
237
238         case MDS_SETATTR64_REC:
239         {
240                 struct llog_setattr64_rec *lsr =
241                         (struct llog_setattr64_rec *)rec;
242
243                 lustre_swab_ost_id(&lsr->lsr_oi);
244                 __swab32s(&lsr->lsr_uid);
245                 __swab32s(&lsr->lsr_uid_h);
246                 __swab32s(&lsr->lsr_gid);
247                 __swab32s(&lsr->lsr_gid_h);
248                 __swab64s(&lsr->lsr_valid);
249                 tail = &lsr->lsr_tail;
250                 break;
251         }
252         case OBD_CFG_REC:
253                 /* these are swabbed as they are consumed */
254                 break;
255         case LLOG_HDR_MAGIC:
256         {
257                 struct llog_log_hdr *llh = (struct llog_log_hdr *)rec;
258
259                 __swab64s(&llh->llh_timestamp);
260                 __swab32s(&llh->llh_count);
261                 __swab32s(&llh->llh_bitmap_offset);
262                 __swab32s(&llh->llh_flags);
263                 __swab32s(&llh->llh_size);
264                 __swab32s(&llh->llh_cat_idx);
265                 tail = LLOG_HDR_TAIL(llh);
266                 break;
267         }
268         case LLOG_LOGID_MAGIC:
269         {
270                 struct llog_logid_rec *lid = (struct llog_logid_rec *)rec;
271
272                 lustre_swab_llog_id(&lid->lid_id);
273                 tail = &lid->lid_tail;
274                 break;
275         }
276         case LLOG_GEN_REC:
277         {
278                 struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
279
280                 __swab64s(&lgr->lgr_gen.mnt_cnt);
281                 __swab64s(&lgr->lgr_gen.conn_cnt);
282                 tail = &lgr->lgr_tail;
283                 break;
284         }
285         case LLOG_PAD_MAGIC:
286                 break;
287         case UPDATE_REC:
288         {
289                 struct llog_update_record *lur =
290                                 (struct llog_update_record *)rec;
291                 struct update_records *record = &lur->lur_update_rec;
292
293                 __swab32s(&record->ur_flags);
294                 __swab64s(&record->ur_batchid);
295                 __swab64s(&record->ur_master_transno);
296                 __swab32s(&record->ur_param_count);
297                 __swab32s(&record->ur_update_count);
298                 lustre_swab_update_ops(&record->ur_ops,
299                                        record->ur_update_count);
300
301                 /* Compute tail location. */
302                 tail = (struct llog_rec_tail *)((char *)record +
303                                                 update_records_size(record));
304                 break;
305         }
306         default:
307                 CERROR("Unknown llog rec type %#x swabbing rec %p\n",
308                        rec->lrh_type, rec);
309         }
310
311         if (tail) {
312                 __swab32s(&tail->lrt_len);
313                 __swab32s(&tail->lrt_index);
314         }
315 }
316
317 static void print_llog_hdr(struct llog_log_hdr *h)
318 {
319         CDEBUG(D_OTHER, "llog header: %p\n", h);
320         CDEBUG(D_OTHER, "\tllh_hdr.lrh_index: %#x\n", h->llh_hdr.lrh_index);
321         CDEBUG(D_OTHER, "\tllh_hdr.lrh_len: %#x\n", h->llh_hdr.lrh_len);
322         CDEBUG(D_OTHER, "\tllh_hdr.lrh_type: %#x\n", h->llh_hdr.lrh_type);
323         CDEBUG(D_OTHER, "\tllh_timestamp: %#llx\n", h->llh_timestamp);
324         CDEBUG(D_OTHER, "\tllh_count: %#x\n", h->llh_count);
325         CDEBUG(D_OTHER, "\tllh_bitmap_offset: %#x\n", h->llh_bitmap_offset);
326         CDEBUG(D_OTHER, "\tllh_flags: %#x\n", h->llh_flags);
327         CDEBUG(D_OTHER, "\tllh_size: %#x\n", h->llh_size);
328         CDEBUG(D_OTHER, "\tllh_cat_idx: %#x\n", h->llh_cat_idx);
329         CDEBUG(D_OTHER, "\tllh_tail.lrt_index: %#x\n",
330                LLOG_HDR_TAIL(h)->lrt_index);
331         CDEBUG(D_OTHER, "\tllh_tail.lrt_len: %#x\n",
332                LLOG_HDR_TAIL(h)->lrt_len);
333 }
334
335 void lustre_swab_llog_hdr (struct llog_log_hdr *h)
336 {
337         ENTRY;
338         print_llog_hdr(h);
339
340         lustre_swab_llog_rec(&h->llh_hdr);
341
342         print_llog_hdr(h);
343         EXIT;
344 }
345 EXPORT_SYMBOL(lustre_swab_llog_hdr);
346
347 static void print_lustre_cfg(struct lustre_cfg *lcfg)
348 {
349         int i;
350         ENTRY;
351
352         if (!(libcfs_debug & D_OTHER)) /* don't loop on nothing */
353                 return;
354         CDEBUG(D_OTHER, "lustre_cfg: %p\n", lcfg);
355         CDEBUG(D_OTHER, "\tlcfg->lcfg_version: %#x\n", lcfg->lcfg_version);
356
357         CDEBUG(D_OTHER, "\tlcfg->lcfg_command: %#x\n", lcfg->lcfg_command);
358         CDEBUG(D_OTHER, "\tlcfg->lcfg_num: %#x\n", lcfg->lcfg_num);
359         CDEBUG(D_OTHER, "\tlcfg->lcfg_flags: %#x\n", lcfg->lcfg_flags);
360         CDEBUG(D_OTHER, "\tlcfg->lcfg_nid: %s\n", libcfs_nid2str(lcfg->lcfg_nid));
361
362         CDEBUG(D_OTHER, "\tlcfg->lcfg_bufcount: %d\n", lcfg->lcfg_bufcount);
363         if (lcfg->lcfg_bufcount < LUSTRE_CFG_MAX_BUFCOUNT)
364                 for (i = 0; i < lcfg->lcfg_bufcount; i++)
365                         CDEBUG(D_OTHER, "\tlcfg->lcfg_buflens[%d]: %d\n",
366                                i, lcfg->lcfg_buflens[i]);
367         EXIT;
368 }
369
370 void lustre_swab_lustre_cfg(struct lustre_cfg *lcfg)
371 {
372         int i;
373         ENTRY;
374
375         __swab32s(&lcfg->lcfg_version);
376
377         if (lcfg->lcfg_version != LUSTRE_CFG_VERSION) {
378                 CERROR("not swabbing lustre_cfg version %#x (expecting %#x)\n",
379                        lcfg->lcfg_version, LUSTRE_CFG_VERSION);
380                 EXIT;
381                 return;
382         }
383
384         __swab32s(&lcfg->lcfg_command);
385         __swab32s(&lcfg->lcfg_num);
386         __swab32s(&lcfg->lcfg_flags);
387         __swab64s(&lcfg->lcfg_nid);
388         __swab32s(&lcfg->lcfg_bufcount);
389         for (i = 0; i < lcfg->lcfg_bufcount && i < LUSTRE_CFG_MAX_BUFCOUNT; i++)
390                 __swab32s(&lcfg->lcfg_buflens[i]);
391
392         print_lustre_cfg(lcfg);
393         EXIT;
394         return;
395 }
396
397 /* used only for compatibility with old on-disk cfg_marker data */
398 struct cfg_marker32 {
399         __u32   cm_step;
400         __u32   cm_flags;
401         __u32   cm_vers;
402         __u32   padding;
403         __u32   cm_createtime;
404         __u32   cm_canceltime;
405         char    cm_tgtname[MTI_NAME_MAXLEN];
406         char    cm_comment[MTI_NAME_MAXLEN];
407 };
408
409 #define MTI_NAMELEN32    (MTI_NAME_MAXLEN - \
410         (sizeof(struct cfg_marker) - sizeof(struct cfg_marker32)))
411
412 void lustre_swab_cfg_marker(struct cfg_marker *marker, int swab, int size)
413 {
414         struct cfg_marker32 *cm32 = (struct cfg_marker32*)marker;
415         ENTRY;
416
417         if (swab) {
418                 __swab32s(&marker->cm_step);
419                 __swab32s(&marker->cm_flags);
420                 __swab32s(&marker->cm_vers);
421         }
422         if (size == sizeof(*cm32)) {
423                 __u32 createtime, canceltime;
424                 /* There was a problem with the original declaration of
425                  * cfg_marker on 32-bit systems because it used time_t as
426                  * a wire protocol structure, and didn't verify this in
427                  * wirecheck.  We now have to convert the offsets of the
428                  * later fields in order to work on 32- and 64-bit systems.
429                  *
430                  * Fortunately, the cm_comment field has no functional use
431                  * so can be sacrificed when converting the timestamp size.
432                  *
433                  * Overwrite fields from the end first, so they are not
434                  * clobbered, and use memmove() instead of memcpy() because
435                  * the source and target buffers overlap.  bug 16771 */
436                 createtime = cm32->cm_createtime;
437                 canceltime = cm32->cm_canceltime;
438                 memmove(marker->cm_comment, cm32->cm_comment, MTI_NAMELEN32);
439                 marker->cm_comment[MTI_NAMELEN32 - 1] = '\0';
440                 memmove(marker->cm_tgtname, cm32->cm_tgtname,
441                         sizeof(marker->cm_tgtname));
442                 if (swab) {
443                         __swab32s(&createtime);
444                         __swab32s(&canceltime);
445                 }
446                 marker->cm_createtime = createtime;
447                 marker->cm_canceltime = canceltime;
448                 CDEBUG(D_CONFIG, "Find old cfg_marker(Srv32b,Clt64b) "
449                        "for target %s, converting\n",
450                        marker->cm_tgtname);
451         } else if (swab) {
452                 __swab64s(&marker->cm_createtime);
453                 __swab64s(&marker->cm_canceltime);
454         }
455
456         EXIT;
457         return;
458 }