2 * linux/fs/sysv/inode.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
8 * Copyright (C) 1992 Doug Evans
11 * Copyright (C) 1993 Pascal Haible, Bruno Haible
14 * Copyright (C) 1993 Paul B. Monday
17 * Copyright (C) 1993 Bruno Haible
18 * Copyright (C) 1997, 1998 Krzysztof G. Baranowski
20 * This file contains code for allocating/freeing inodes and for read/writing
24 #include <linux/smp_lock.h>
25 #include <linux/highuid.h>
26 #include <linux/slab.h>
27 #include <linux/init.h>
28 #include <linux/buffer_head.h>
29 #include <linux/vfs.h>
30 #include <linux/namei.h>
31 #include <asm/byteorder.h>
34 /* This is only called on sync() and umount(), when s_dirt=1. */
35 static void sysv_write_super(struct super_block
*sb
)
37 struct sysv_sb_info
*sbi
= SYSV_SB(sb
);
38 unsigned long time
= get_seconds(), old_time
;
41 if (sb
->s_flags
& MS_RDONLY
)
45 * If we are going to write out the super block,
46 * then attach current time stamp.
47 * But if the filesystem was marked clean, keep it clean.
49 old_time
= fs32_to_cpu(sbi
, *sbi
->s_sb_time
);
50 if (sbi
->s_type
== FSTYPE_SYSV4
) {
51 if (*sbi
->s_sb_state
== cpu_to_fs32(sbi
, 0x7c269d38 - old_time
))
52 *sbi
->s_sb_state
= cpu_to_fs32(sbi
, 0x7c269d38 - time
);
53 *sbi
->s_sb_time
= cpu_to_fs32(sbi
, time
);
54 mark_buffer_dirty(sbi
->s_bh2
);
61 static int sysv_remount(struct super_block
*sb
, int *flags
, char *data
)
63 struct sysv_sb_info
*sbi
= SYSV_SB(sb
);
66 if (!(*flags
& MS_RDONLY
))
71 static void sysv_put_super(struct super_block
*sb
)
73 struct sysv_sb_info
*sbi
= SYSV_SB(sb
);
75 if (!(sb
->s_flags
& MS_RDONLY
)) {
76 /* XXX ext2 also updates the state here */
77 mark_buffer_dirty(sbi
->s_bh1
);
78 if (sbi
->s_bh1
!= sbi
->s_bh2
)
79 mark_buffer_dirty(sbi
->s_bh2
);
83 if (sbi
->s_bh1
!= sbi
->s_bh2
)
89 static int sysv_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
91 struct super_block
*sb
= dentry
->d_sb
;
92 struct sysv_sb_info
*sbi
= SYSV_SB(sb
);
93 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
95 buf
->f_type
= sb
->s_magic
;
96 buf
->f_bsize
= sb
->s_blocksize
;
97 buf
->f_blocks
= sbi
->s_ndatazones
;
98 buf
->f_bavail
= buf
->f_bfree
= sysv_count_free_blocks(sb
);
99 buf
->f_files
= sbi
->s_ninodes
;
100 buf
->f_ffree
= sysv_count_free_inodes(sb
);
101 buf
->f_namelen
= SYSV_NAMELEN
;
102 buf
->f_fsid
.val
[0] = (u32
)id
;
103 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
108 * NXI <-> N0XI for PDP, XIN <-> XIN0 for le32, NIX <-> 0NIX for be32
110 static inline void read3byte(struct sysv_sb_info
*sbi
,
111 unsigned char * from
, unsigned char * to
)
113 if (sbi
->s_bytesex
== BYTESEX_PDP
) {
118 } else if (sbi
->s_bytesex
== BYTESEX_LE
) {
131 static inline void write3byte(struct sysv_sb_info
*sbi
,
132 unsigned char * from
, unsigned char * to
)
134 if (sbi
->s_bytesex
== BYTESEX_PDP
) {
138 } else if (sbi
->s_bytesex
== BYTESEX_LE
) {
149 static const struct inode_operations sysv_symlink_inode_operations
= {
150 .readlink
= generic_readlink
,
151 .follow_link
= page_follow_link_light
,
152 .put_link
= page_put_link
,
153 .getattr
= sysv_getattr
,
156 void sysv_set_inode(struct inode
*inode
, dev_t rdev
)
158 if (S_ISREG(inode
->i_mode
)) {
159 inode
->i_op
= &sysv_file_inode_operations
;
160 inode
->i_fop
= &sysv_file_operations
;
161 inode
->i_mapping
->a_ops
= &sysv_aops
;
162 } else if (S_ISDIR(inode
->i_mode
)) {
163 inode
->i_op
= &sysv_dir_inode_operations
;
164 inode
->i_fop
= &sysv_dir_operations
;
165 inode
->i_mapping
->a_ops
= &sysv_aops
;
166 } else if (S_ISLNK(inode
->i_mode
)) {
167 if (inode
->i_blocks
) {
168 inode
->i_op
= &sysv_symlink_inode_operations
;
169 inode
->i_mapping
->a_ops
= &sysv_aops
;
171 inode
->i_op
= &sysv_fast_symlink_inode_operations
;
172 nd_terminate_link(SYSV_I(inode
)->i_data
, inode
->i_size
,
173 sizeof(SYSV_I(inode
)->i_data
) - 1);
176 init_special_inode(inode
, inode
->i_mode
, rdev
);
179 struct inode
*sysv_iget(struct super_block
*sb
, unsigned int ino
)
181 struct sysv_sb_info
* sbi
= SYSV_SB(sb
);
182 struct buffer_head
* bh
;
183 struct sysv_inode
* raw_inode
;
184 struct sysv_inode_info
* si
;
188 if (!ino
|| ino
> sbi
->s_ninodes
) {
189 printk("Bad inode number on dev %s: %d is out of range\n",
191 return ERR_PTR(-EIO
);
194 inode
= iget_locked(sb
, ino
);
196 return ERR_PTR(-ENOMEM
);
197 if (!(inode
->i_state
& I_NEW
))
200 raw_inode
= sysv_raw_inode(sb
, ino
, &bh
);
202 printk("Major problem: unable to read inode from dev %s\n",
206 /* SystemV FS: kludge permissions if ino==SYSV_ROOT_INO ?? */
207 inode
->i_mode
= fs16_to_cpu(sbi
, raw_inode
->i_mode
);
208 inode
->i_uid
= (uid_t
)fs16_to_cpu(sbi
, raw_inode
->i_uid
);
209 inode
->i_gid
= (gid_t
)fs16_to_cpu(sbi
, raw_inode
->i_gid
);
210 inode
->i_nlink
= fs16_to_cpu(sbi
, raw_inode
->i_nlink
);
211 inode
->i_size
= fs32_to_cpu(sbi
, raw_inode
->i_size
);
212 inode
->i_atime
.tv_sec
= fs32_to_cpu(sbi
, raw_inode
->i_atime
);
213 inode
->i_mtime
.tv_sec
= fs32_to_cpu(sbi
, raw_inode
->i_mtime
);
214 inode
->i_ctime
.tv_sec
= fs32_to_cpu(sbi
, raw_inode
->i_ctime
);
215 inode
->i_ctime
.tv_nsec
= 0;
216 inode
->i_atime
.tv_nsec
= 0;
217 inode
->i_mtime
.tv_nsec
= 0;
221 for (block
= 0; block
< 10+1+1+1; block
++)
222 read3byte(sbi
, &raw_inode
->i_data
[3*block
],
223 (u8
*)&si
->i_data
[block
]);
225 si
->i_dir_start_lookup
= 0;
226 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
))
227 sysv_set_inode(inode
,
228 old_decode_dev(fs32_to_cpu(sbi
, si
->i_data
[0])));
230 sysv_set_inode(inode
, 0);
231 unlock_new_inode(inode
);
236 return ERR_PTR(-EIO
);
239 static struct buffer_head
* sysv_update_inode(struct inode
* inode
)
241 struct super_block
* sb
= inode
->i_sb
;
242 struct sysv_sb_info
* sbi
= SYSV_SB(sb
);
243 struct buffer_head
* bh
;
244 struct sysv_inode
* raw_inode
;
245 struct sysv_inode_info
* si
;
246 unsigned int ino
, block
;
249 if (!ino
|| ino
> sbi
->s_ninodes
) {
250 printk("Bad inode number on dev %s: %d is out of range\n",
251 inode
->i_sb
->s_id
, ino
);
254 raw_inode
= sysv_raw_inode(sb
, ino
, &bh
);
256 printk("unable to read i-node block\n");
260 raw_inode
->i_mode
= cpu_to_fs16(sbi
, inode
->i_mode
);
261 raw_inode
->i_uid
= cpu_to_fs16(sbi
, fs_high2lowuid(inode
->i_uid
));
262 raw_inode
->i_gid
= cpu_to_fs16(sbi
, fs_high2lowgid(inode
->i_gid
));
263 raw_inode
->i_nlink
= cpu_to_fs16(sbi
, inode
->i_nlink
);
264 raw_inode
->i_size
= cpu_to_fs32(sbi
, inode
->i_size
);
265 raw_inode
->i_atime
= cpu_to_fs32(sbi
, inode
->i_atime
.tv_sec
);
266 raw_inode
->i_mtime
= cpu_to_fs32(sbi
, inode
->i_mtime
.tv_sec
);
267 raw_inode
->i_ctime
= cpu_to_fs32(sbi
, inode
->i_ctime
.tv_sec
);
270 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
))
271 si
->i_data
[0] = cpu_to_fs32(sbi
, old_encode_dev(inode
->i_rdev
));
272 for (block
= 0; block
< 10+1+1+1; block
++)
273 write3byte(sbi
, (u8
*)&si
->i_data
[block
],
274 &raw_inode
->i_data
[3*block
]);
275 mark_buffer_dirty(bh
);
279 int sysv_write_inode(struct inode
* inode
, int wait
)
281 struct buffer_head
*bh
;
283 bh
= sysv_update_inode(inode
);
289 int sysv_sync_inode(struct inode
* inode
)
292 struct buffer_head
*bh
;
294 bh
= sysv_update_inode(inode
);
295 if (bh
&& buffer_dirty(bh
)) {
296 sync_dirty_buffer(bh
);
297 if (buffer_req(bh
) && !buffer_uptodate(bh
)) {
298 printk ("IO error syncing sysv inode [%s:%08lx]\n",
299 inode
->i_sb
->s_id
, inode
->i_ino
);
309 static void sysv_delete_inode(struct inode
*inode
)
311 truncate_inode_pages(&inode
->i_data
, 0);
313 sysv_truncate(inode
);
315 sysv_free_inode(inode
);
319 static struct kmem_cache
*sysv_inode_cachep
;
321 static struct inode
*sysv_alloc_inode(struct super_block
*sb
)
323 struct sysv_inode_info
*si
;
325 si
= kmem_cache_alloc(sysv_inode_cachep
, GFP_KERNEL
);
328 return &si
->vfs_inode
;
331 static void sysv_destroy_inode(struct inode
*inode
)
333 kmem_cache_free(sysv_inode_cachep
, SYSV_I(inode
));
336 static void init_once(void *p
)
338 struct sysv_inode_info
*si
= (struct sysv_inode_info
*)p
;
340 inode_init_once(&si
->vfs_inode
);
343 const struct super_operations sysv_sops
= {
344 .alloc_inode
= sysv_alloc_inode
,
345 .destroy_inode
= sysv_destroy_inode
,
346 .write_inode
= sysv_write_inode
,
347 .delete_inode
= sysv_delete_inode
,
348 .put_super
= sysv_put_super
,
349 .write_super
= sysv_write_super
,
350 .remount_fs
= sysv_remount
,
351 .statfs
= sysv_statfs
,
354 int __init
sysv_init_icache(void)
356 sysv_inode_cachep
= kmem_cache_create("sysv_inode_cache",
357 sizeof(struct sysv_inode_info
), 0,
358 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
,
360 if (!sysv_inode_cachep
)
365 void sysv_destroy_icache(void)
367 kmem_cache_destroy(sysv_inode_cachep
);