]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/sysv/inode.c
remove ->write_super call in generic_shutdown_super
[net-next-2.6.git] / fs / sysv / inode.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/sysv/inode.c
3 *
4 * minix/inode.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 *
7 * xenix/inode.c
8 * Copyright (C) 1992 Doug Evans
9 *
10 * coh/inode.c
11 * Copyright (C) 1993 Pascal Haible, Bruno Haible
12 *
13 * sysv/inode.c
14 * Copyright (C) 1993 Paul B. Monday
15 *
16 * sysv/inode.c
17 * Copyright (C) 1993 Bruno Haible
18 * Copyright (C) 1997, 1998 Krzysztof G. Baranowski
19 *
20 * This file contains code for allocating/freeing inodes and for read/writing
21 * the superblock.
22 */
23
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>
21acaf8e 30#include <linux/namei.h>
1da177e4
LT
31#include <asm/byteorder.h>
32#include "sysv.h"
33
34/* This is only called on sync() and umount(), when s_dirt=1. */
35static void sysv_write_super(struct super_block *sb)
36{
37 struct sysv_sb_info *sbi = SYSV_SB(sb);
38 unsigned long time = get_seconds(), old_time;
39
40 lock_kernel();
41 if (sb->s_flags & MS_RDONLY)
42 goto clean;
43
44 /*
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.
48 */
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);
55 }
56clean:
57 sb->s_dirt = 0;
58 unlock_kernel();
59}
60
61static int sysv_remount(struct super_block *sb, int *flags, char *data)
62{
63 struct sysv_sb_info *sbi = SYSV_SB(sb);
64 if (sbi->s_forced_ro)
65 *flags |= MS_RDONLY;
66 if (!(*flags & MS_RDONLY))
67 sb->s_dirt = 1;
68 return 0;
69}
70
71static void sysv_put_super(struct super_block *sb)
72{
73 struct sysv_sb_info *sbi = SYSV_SB(sb);
74
8c85e125
CH
75 if (sb->s_dirt)
76 sysv_write_super(sb);
77
1da177e4
LT
78 if (!(sb->s_flags & MS_RDONLY)) {
79 /* XXX ext2 also updates the state here */
80 mark_buffer_dirty(sbi->s_bh1);
81 if (sbi->s_bh1 != sbi->s_bh2)
82 mark_buffer_dirty(sbi->s_bh2);
83 }
84
85 brelse(sbi->s_bh1);
86 if (sbi->s_bh1 != sbi->s_bh2)
87 brelse(sbi->s_bh2);
88
89 kfree(sbi);
90}
91
726c3342 92static int sysv_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 93{
726c3342 94 struct super_block *sb = dentry->d_sb;
1da177e4 95 struct sysv_sb_info *sbi = SYSV_SB(sb);
1c5b4541 96 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
1da177e4
LT
97
98 buf->f_type = sb->s_magic;
99 buf->f_bsize = sb->s_blocksize;
100 buf->f_blocks = sbi->s_ndatazones;
101 buf->f_bavail = buf->f_bfree = sysv_count_free_blocks(sb);
102 buf->f_files = sbi->s_ninodes;
103 buf->f_ffree = sysv_count_free_inodes(sb);
104 buf->f_namelen = SYSV_NAMELEN;
1c5b4541
CL
105 buf->f_fsid.val[0] = (u32)id;
106 buf->f_fsid.val[1] = (u32)(id >> 32);
1da177e4
LT
107 return 0;
108}
109
110/*
111 * NXI <-> N0XI for PDP, XIN <-> XIN0 for le32, NIX <-> 0NIX for be32
112 */
113static inline void read3byte(struct sysv_sb_info *sbi,
114 unsigned char * from, unsigned char * to)
115{
116 if (sbi->s_bytesex == BYTESEX_PDP) {
117 to[0] = from[0];
118 to[1] = 0;
119 to[2] = from[1];
120 to[3] = from[2];
121 } else if (sbi->s_bytesex == BYTESEX_LE) {
122 to[0] = from[0];
123 to[1] = from[1];
124 to[2] = from[2];
125 to[3] = 0;
126 } else {
127 to[0] = 0;
128 to[1] = from[0];
129 to[2] = from[1];
130 to[3] = from[2];
131 }
132}
133
134static inline void write3byte(struct sysv_sb_info *sbi,
135 unsigned char * from, unsigned char * to)
136{
137 if (sbi->s_bytesex == BYTESEX_PDP) {
138 to[0] = from[0];
139 to[1] = from[2];
140 to[2] = from[3];
141 } else if (sbi->s_bytesex == BYTESEX_LE) {
142 to[0] = from[0];
143 to[1] = from[1];
144 to[2] = from[2];
145 } else {
146 to[0] = from[1];
147 to[1] = from[2];
148 to[2] = from[3];
149 }
150}
151
c5ef1c42 152static const struct inode_operations sysv_symlink_inode_operations = {
1da177e4
LT
153 .readlink = generic_readlink,
154 .follow_link = page_follow_link_light,
155 .put_link = page_put_link,
156 .getattr = sysv_getattr,
157};
158
159void sysv_set_inode(struct inode *inode, dev_t rdev)
160{
161 if (S_ISREG(inode->i_mode)) {
162 inode->i_op = &sysv_file_inode_operations;
163 inode->i_fop = &sysv_file_operations;
164 inode->i_mapping->a_ops = &sysv_aops;
165 } else if (S_ISDIR(inode->i_mode)) {
166 inode->i_op = &sysv_dir_inode_operations;
167 inode->i_fop = &sysv_dir_operations;
168 inode->i_mapping->a_ops = &sysv_aops;
169 } else if (S_ISLNK(inode->i_mode)) {
170 if (inode->i_blocks) {
171 inode->i_op = &sysv_symlink_inode_operations;
172 inode->i_mapping->a_ops = &sysv_aops;
21acaf8e 173 } else {
1da177e4 174 inode->i_op = &sysv_fast_symlink_inode_operations;
21acaf8e
DG
175 nd_terminate_link(SYSV_I(inode)->i_data, inode->i_size,
176 sizeof(SYSV_I(inode)->i_data) - 1);
177 }
1da177e4
LT
178 } else
179 init_special_inode(inode, inode->i_mode, rdev);
180}
181
b8e1343f 182struct inode *sysv_iget(struct super_block *sb, unsigned int ino)
1da177e4 183{
1da177e4
LT
184 struct sysv_sb_info * sbi = SYSV_SB(sb);
185 struct buffer_head * bh;
186 struct sysv_inode * raw_inode;
187 struct sysv_inode_info * si;
b8e1343f
DH
188 struct inode *inode;
189 unsigned int block;
1da177e4
LT
190
191 if (!ino || ino > sbi->s_ninodes) {
192 printk("Bad inode number on dev %s: %d is out of range\n",
b8e1343f
DH
193 sb->s_id, ino);
194 return ERR_PTR(-EIO);
1da177e4 195 }
b8e1343f
DH
196
197 inode = iget_locked(sb, ino);
198 if (!inode)
199 return ERR_PTR(-ENOMEM);
200 if (!(inode->i_state & I_NEW))
201 return inode;
202
1da177e4
LT
203 raw_inode = sysv_raw_inode(sb, ino, &bh);
204 if (!raw_inode) {
205 printk("Major problem: unable to read inode from dev %s\n",
206 inode->i_sb->s_id);
207 goto bad_inode;
208 }
209 /* SystemV FS: kludge permissions if ino==SYSV_ROOT_INO ?? */
210 inode->i_mode = fs16_to_cpu(sbi, raw_inode->i_mode);
211 inode->i_uid = (uid_t)fs16_to_cpu(sbi, raw_inode->i_uid);
212 inode->i_gid = (gid_t)fs16_to_cpu(sbi, raw_inode->i_gid);
213 inode->i_nlink = fs16_to_cpu(sbi, raw_inode->i_nlink);
214 inode->i_size = fs32_to_cpu(sbi, raw_inode->i_size);
215 inode->i_atime.tv_sec = fs32_to_cpu(sbi, raw_inode->i_atime);
216 inode->i_mtime.tv_sec = fs32_to_cpu(sbi, raw_inode->i_mtime);
217 inode->i_ctime.tv_sec = fs32_to_cpu(sbi, raw_inode->i_ctime);
218 inode->i_ctime.tv_nsec = 0;
219 inode->i_atime.tv_nsec = 0;
220 inode->i_mtime.tv_nsec = 0;
ba52de12 221 inode->i_blocks = 0;
1da177e4
LT
222
223 si = SYSV_I(inode);
224 for (block = 0; block < 10+1+1+1; block++)
225 read3byte(sbi, &raw_inode->i_data[3*block],
226 (u8 *)&si->i_data[block]);
227 brelse(bh);
228 si->i_dir_start_lookup = 0;
229 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
230 sysv_set_inode(inode,
231 old_decode_dev(fs32_to_cpu(sbi, si->i_data[0])));
232 else
233 sysv_set_inode(inode, 0);
b8e1343f
DH
234 unlock_new_inode(inode);
235 return inode;
1da177e4
LT
236
237bad_inode:
b8e1343f
DH
238 iget_failed(inode);
239 return ERR_PTR(-EIO);
1da177e4
LT
240}
241
242static struct buffer_head * sysv_update_inode(struct inode * inode)
243{
244 struct super_block * sb = inode->i_sb;
245 struct sysv_sb_info * sbi = SYSV_SB(sb);
246 struct buffer_head * bh;
247 struct sysv_inode * raw_inode;
248 struct sysv_inode_info * si;
249 unsigned int ino, block;
250
251 ino = inode->i_ino;
252 if (!ino || ino > sbi->s_ninodes) {
253 printk("Bad inode number on dev %s: %d is out of range\n",
254 inode->i_sb->s_id, ino);
255 return NULL;
256 }
257 raw_inode = sysv_raw_inode(sb, ino, &bh);
258 if (!raw_inode) {
259 printk("unable to read i-node block\n");
260 return NULL;
261 }
262
263 raw_inode->i_mode = cpu_to_fs16(sbi, inode->i_mode);
264 raw_inode->i_uid = cpu_to_fs16(sbi, fs_high2lowuid(inode->i_uid));
265 raw_inode->i_gid = cpu_to_fs16(sbi, fs_high2lowgid(inode->i_gid));
266 raw_inode->i_nlink = cpu_to_fs16(sbi, inode->i_nlink);
267 raw_inode->i_size = cpu_to_fs32(sbi, inode->i_size);
268 raw_inode->i_atime = cpu_to_fs32(sbi, inode->i_atime.tv_sec);
269 raw_inode->i_mtime = cpu_to_fs32(sbi, inode->i_mtime.tv_sec);
270 raw_inode->i_ctime = cpu_to_fs32(sbi, inode->i_ctime.tv_sec);
271
272 si = SYSV_I(inode);
273 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
274 si->i_data[0] = cpu_to_fs32(sbi, old_encode_dev(inode->i_rdev));
275 for (block = 0; block < 10+1+1+1; block++)
276 write3byte(sbi, (u8 *)&si->i_data[block],
277 &raw_inode->i_data[3*block]);
278 mark_buffer_dirty(bh);
279 return bh;
280}
281
282int sysv_write_inode(struct inode * inode, int wait)
283{
284 struct buffer_head *bh;
285 lock_kernel();
286 bh = sysv_update_inode(inode);
287 brelse(bh);
288 unlock_kernel();
289 return 0;
290}
291
292int sysv_sync_inode(struct inode * inode)
293{
294 int err = 0;
295 struct buffer_head *bh;
296
297 bh = sysv_update_inode(inode);
298 if (bh && buffer_dirty(bh)) {
299 sync_dirty_buffer(bh);
300 if (buffer_req(bh) && !buffer_uptodate(bh)) {
301 printk ("IO error syncing sysv inode [%s:%08lx]\n",
302 inode->i_sb->s_id, inode->i_ino);
303 err = -1;
304 }
305 }
306 else if (!bh)
307 err = -1;
308 brelse (bh);
309 return err;
310}
311
312static void sysv_delete_inode(struct inode *inode)
313{
fef26658 314 truncate_inode_pages(&inode->i_data, 0);
1da177e4
LT
315 inode->i_size = 0;
316 sysv_truncate(inode);
317 lock_kernel();
318 sysv_free_inode(inode);
319 unlock_kernel();
320}
321
e18b890b 322static struct kmem_cache *sysv_inode_cachep;
1da177e4
LT
323
324static struct inode *sysv_alloc_inode(struct super_block *sb)
325{
326 struct sysv_inode_info *si;
327
e94b1766 328 si = kmem_cache_alloc(sysv_inode_cachep, GFP_KERNEL);
1da177e4
LT
329 if (!si)
330 return NULL;
331 return &si->vfs_inode;
332}
333
334static void sysv_destroy_inode(struct inode *inode)
335{
336 kmem_cache_free(sysv_inode_cachep, SYSV_I(inode));
337}
338
51cc5068 339static void init_once(void *p)
1da177e4
LT
340{
341 struct sysv_inode_info *si = (struct sysv_inode_info *)p;
342
a35afb83 343 inode_init_once(&si->vfs_inode);
1da177e4
LT
344}
345
ee9b6d61 346const struct super_operations sysv_sops = {
1da177e4
LT
347 .alloc_inode = sysv_alloc_inode,
348 .destroy_inode = sysv_destroy_inode,
1da177e4
LT
349 .write_inode = sysv_write_inode,
350 .delete_inode = sysv_delete_inode,
351 .put_super = sysv_put_super,
352 .write_super = sysv_write_super,
353 .remount_fs = sysv_remount,
354 .statfs = sysv_statfs,
355};
356
357int __init sysv_init_icache(void)
358{
359 sysv_inode_cachep = kmem_cache_create("sysv_inode_cache",
360 sizeof(struct sysv_inode_info), 0,
4b6a9316 361 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
20c2df83 362 init_once);
1da177e4
LT
363 if (!sysv_inode_cachep)
364 return -ENOMEM;
365 return 0;
366}
367
368void sysv_destroy_icache(void)
369{
370 kmem_cache_destroy(sysv_inode_cachep);
371}