ext2fs_bswap.c revision 1.3
1/*	$OpenBSD: ext2fs_bswap.c,v 1.3 2005/10/06 17:43:14 pedro Exp $	*/
2/*	$NetBSD: ext2fs_bswap.c,v 1.6 2000/07/24 00:23:10 mycroft Exp $	*/
3
4/*
5 * Copyright (c) 1997 Manuel Bouyer.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *	This product includes software developed by the University of
18 *	California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 *    may be used to endorse or promote products derived from this software
21 *    without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36#include <sys/types.h>
37#if defined(_KERNEL)
38#include <sys/systm.h>
39#endif
40#include <ufs/ext2fs/ext2fs.h>
41#include <ufs/ext2fs/ext2fs_dinode.h>
42
43#if !defined(_KERNEL)
44#include <string.h>
45#endif
46
47/* These functions are only needed if native byte order is not big endian */
48#if BYTE_ORDER == BIG_ENDIAN
49void
50e2fs_sb_bswap(old, new)
51	struct ext2fs *old, *new;
52{
53	/* preserve unused fields */
54	memcpy(new, old, sizeof(struct ext2fs));
55	new->e2fs_icount	=	swap32(old->e2fs_icount);
56	new->e2fs_bcount	=	swap32(old->e2fs_bcount);
57	new->e2fs_rbcount	=	swap32(old->e2fs_rbcount);
58	new->e2fs_fbcount	=	swap32(old->e2fs_fbcount);
59	new->e2fs_ficount	=	swap32(old->e2fs_ficount);
60	new->e2fs_first_dblock	=	swap32(old->e2fs_first_dblock);
61	new->e2fs_log_bsize	=	swap32(old->e2fs_log_bsize);
62	new->e2fs_fsize		=	swap32(old->e2fs_fsize);
63	new->e2fs_bpg		=	swap32(old->e2fs_bpg);
64	new->e2fs_fpg		=	swap32(old->e2fs_fpg);
65	new->e2fs_ipg		=	swap32(old->e2fs_ipg);
66	new->e2fs_mtime		=	swap32(old->e2fs_mtime);
67	new->e2fs_wtime		=	swap32(old->e2fs_wtime);
68	new->e2fs_mnt_count	=	swap16(old->e2fs_mnt_count);
69	new->e2fs_max_mnt_count	=	swap16(old->e2fs_max_mnt_count);
70	new->e2fs_magic		=	swap16(old->e2fs_magic);
71	new->e2fs_state		=	swap16(old->e2fs_state);
72	new->e2fs_beh		=	swap16(old->e2fs_beh);
73	new->e2fs_minrev	=	swap16(old->e2fs_minrev);
74	new->e2fs_lastfsck	=	swap32(old->e2fs_lastfsck);
75	new->e2fs_fsckintv	=	swap32(old->e2fs_fsckintv);
76	new->e2fs_creator	=	swap32(old->e2fs_creator);
77	new->e2fs_rev		=	swap32(old->e2fs_rev);
78	new->e2fs_ruid		=	swap16(old->e2fs_ruid);
79	new->e2fs_rgid		=	swap16(old->e2fs_rgid);
80	new->e2fs_first_ino	=	swap32(old->e2fs_first_ino);
81	new->e2fs_inode_size	=	swap16(old->e2fs_inode_size);
82	new->e2fs_block_group_nr =	swap16(old->e2fs_block_group_nr);
83	new->e2fs_features_compat =	swap32(old->e2fs_features_compat);
84	new->e2fs_features_incompat =	swap32(old->e2fs_features_incompat);
85	new->e2fs_features_rocompat =	swap32(old->e2fs_features_rocompat);
86	new->e2fs_algo		=	swap32(old->e2fs_algo);
87}
88
89void
90e2fs_cg_bswap(old, new, size)
91	struct  ext2_gd *old, *new;
92	int size;
93{
94	int i;
95	for (i=0; i < (size / sizeof(struct  ext2_gd)); i++) {
96		new[i].ext2bgd_b_bitmap	= swap32(old[i].ext2bgd_b_bitmap);
97		new[i].ext2bgd_i_bitmap	= swap32(old[i].ext2bgd_i_bitmap);
98		new[i].ext2bgd_i_tables	= swap32(old[i].ext2bgd_i_tables);
99		new[i].ext2bgd_nbfree	= swap16(old[i].ext2bgd_nbfree);
100		new[i].ext2bgd_nifree	= swap16(old[i].ext2bgd_nifree);
101		new[i].ext2bgd_ndirs	= swap16(old[i].ext2bgd_ndirs);
102	}
103}
104
105void
106e2fs_i_bswap(old, new)
107	struct ext2fs_dinode *old, *new;
108{
109	new->e2di_mode		=	swap16(old->e2di_mode);
110	new->e2di_uid_low	=	swap16(old->e2di_uid_low);
111	new->e2di_gid_low	=	swap16(old->e2di_gid_low);
112	new->e2di_uid_high	=	swap16(old->e2di_uid_high);
113	new->e2di_gid_high	=	swap16(old->e2di_gid_high);
114	new->e2di_nlink		=	swap16(old->e2di_nlink);
115	new->e2di_size		=	swap32(old->e2di_size);
116	new->e2di_atime		=	swap32(old->e2di_atime);
117	new->e2di_ctime		=	swap32(old->e2di_ctime);
118	new->e2di_mtime		=	swap32(old->e2di_mtime);
119	new->e2di_dtime		=	swap32(old->e2di_dtime);
120	new->e2di_nblock	=	swap32(old->e2di_nblock);
121	new->e2di_flags		=	swap32(old->e2di_flags);
122	new->e2di_gen		=	swap32(old->e2di_gen);
123	new->e2di_facl		=	swap32(old->e2di_facl);
124	new->e2di_dacl		=	swap32(old->e2di_dacl);
125	new->e2di_faddr		=	swap32(old->e2di_faddr);
126	memcpy(&new->e2di_blocks[0], &old->e2di_blocks[0],
127		(NDADDR+NIADDR) * sizeof(int));
128}
129#endif
130