ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / smbfs / inode.c
1 /*
2  *  inode.c
3  *
4  *  Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
5  *  Copyright (C) 1997 by Volker Lendecke
6  *
7  *  Please add a note about your changes to smbfs in the ChangeLog file.
8  */
9
10 #include <linux/config.h>
11 #include <linux/module.h>
12 #include <linux/time.h>
13 #include <linux/kernel.h>
14 #include <linux/mm.h>
15 #include <linux/string.h>
16 #include <linux/stat.h>
17 #include <linux/errno.h>
18 #include <linux/slab.h>
19 #include <linux/init.h>
20 #include <linux/file.h>
21 #include <linux/dcache.h>
22 #include <linux/smp_lock.h>
23 #include <linux/nls.h>
24 #include <linux/seq_file.h>
25 #include <linux/mount.h>
26 #include <linux/net.h>
27 #include <linux/vfs.h>
28 #include <linux/highuid.h>
29 #include <linux/smb_fs.h>
30 #include <linux/smbno.h>
31 #include <linux/smb_mount.h>
32
33 #include <asm/system.h>
34 #include <asm/uaccess.h>
35
36 #include "smb_debug.h"
37 #include "getopt.h"
38 #include "proto.h"
39
40 /* Always pick a default string */
41 #ifdef CONFIG_SMB_NLS_REMOTE
42 #define SMB_NLS_REMOTE CONFIG_SMB_NLS_REMOTE
43 #else
44 #define SMB_NLS_REMOTE ""
45 #endif
46
47 #define SMB_TTL_DEFAULT 1000
48
49 static void smb_delete_inode(struct inode *);
50 static void smb_put_super(struct super_block *);
51 static int  smb_statfs(struct super_block *, struct kstatfs *);
52 static int  smb_show_options(struct seq_file *, struct vfsmount *);
53
54 static kmem_cache_t *smb_inode_cachep;
55
56 static struct inode *smb_alloc_inode(struct super_block *sb)
57 {
58         struct smb_inode_info *ei;
59         ei = (struct smb_inode_info *)kmem_cache_alloc(smb_inode_cachep, SLAB_KERNEL);
60         if (!ei)
61                 return NULL;
62         return &ei->vfs_inode;
63 }
64
65 static void smb_destroy_inode(struct inode *inode)
66 {
67         kmem_cache_free(smb_inode_cachep, SMB_I(inode));
68 }
69
70 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
71 {
72         struct smb_inode_info *ei = (struct smb_inode_info *) foo;
73         unsigned long flagmask = SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR;
74
75         if ((flags & flagmask) == SLAB_CTOR_CONSTRUCTOR)
76                 inode_init_once(&ei->vfs_inode);
77 }
78  
79 static int init_inodecache(void)
80 {
81         smb_inode_cachep = kmem_cache_create("smb_inode_cache",
82                                              sizeof(struct smb_inode_info),
83                                              0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
84                                              init_once, NULL);
85         if (smb_inode_cachep == NULL)
86                 return -ENOMEM;
87         return 0;
88 }
89
90 static void destroy_inodecache(void)
91 {
92         if (kmem_cache_destroy(smb_inode_cachep))
93                 printk(KERN_INFO "smb_inode_cache: not all structures were freed\n");
94 }
95
96 static int smb_remount(struct super_block *sb, int *flags, char *data)
97 {
98         *flags |= MS_NODIRATIME;
99         return 0;
100 }
101
102 static struct super_operations smb_sops =
103 {
104         .alloc_inode    = smb_alloc_inode,
105         .destroy_inode  = smb_destroy_inode,
106         .drop_inode     = generic_delete_inode,
107         .delete_inode   = smb_delete_inode,
108         .put_super      = smb_put_super,
109         .statfs         = smb_statfs,
110         .show_options   = smb_show_options,
111         .remount_fs     = smb_remount,
112 };
113
114
115 /* We are always generating a new inode here */
116 struct inode *
117 smb_iget(struct super_block *sb, struct smb_fattr *fattr)
118 {
119         struct smb_sb_info *server = SMB_SB(sb);
120         struct inode *result;
121
122         DEBUG1("smb_iget: %p\n", fattr);
123
124         result = new_inode(sb);
125         if (!result)
126                 return result;
127         result->i_ino = fattr->f_ino;
128         SMB_I(result)->open = 0;
129         SMB_I(result)->fileid = 0;
130         SMB_I(result)->access = 0;
131         SMB_I(result)->flags = 0;
132         SMB_I(result)->closed = 0;
133         SMB_I(result)->openers = 0;
134         smb_set_inode_attr(result, fattr);
135         if (S_ISREG(result->i_mode)) {
136                 result->i_op = &smb_file_inode_operations;
137                 result->i_fop = &smb_file_operations;
138                 result->i_data.a_ops = &smb_file_aops;
139         } else if (S_ISDIR(result->i_mode)) {
140                 if (server->opt.capabilities & SMB_CAP_UNIX)
141                         result->i_op = &smb_dir_inode_operations_unix;
142                 else
143                         result->i_op = &smb_dir_inode_operations;
144                 result->i_fop = &smb_dir_operations;
145         } else if (S_ISLNK(result->i_mode)) {
146                 result->i_op = &smb_link_inode_operations;
147         } else {
148                 init_special_inode(result, result->i_mode, fattr->f_rdev);
149         }
150         insert_inode_hash(result);
151         return result;
152 }
153
154 /*
155  * Copy the inode data to a smb_fattr structure.
156  */
157 void
158 smb_get_inode_attr(struct inode *inode, struct smb_fattr *fattr)
159 {
160         memset(fattr, 0, sizeof(struct smb_fattr));
161         fattr->f_mode   = inode->i_mode;
162         fattr->f_nlink  = inode->i_nlink;
163         fattr->f_ino    = inode->i_ino;
164         fattr->f_uid    = inode->i_uid;
165         fattr->f_gid    = inode->i_gid;
166         fattr->f_size   = inode->i_size;
167         fattr->f_mtime  = inode->i_mtime;
168         fattr->f_ctime  = inode->i_ctime;
169         fattr->f_atime  = inode->i_atime;
170         fattr->f_blksize= inode->i_blksize;
171         fattr->f_blocks = inode->i_blocks;
172
173         fattr->attr     = SMB_I(inode)->attr;
174         /*
175          * Keep the attributes in sync with the inode permissions.
176          */
177         if (fattr->f_mode & S_IWUSR)
178                 fattr->attr &= ~aRONLY;
179         else
180                 fattr->attr |= aRONLY;
181 }
182
183 /*
184  * Update the inode, possibly causing it to invalidate its pages if mtime/size
185  * is different from last time.
186  */
187 void
188 smb_set_inode_attr(struct inode *inode, struct smb_fattr *fattr)
189 {
190         struct smb_inode_info *ei = SMB_I(inode);
191
192         /*
193          * A size change should have a different mtime, or same mtime
194          * but different size.
195          */
196         time_t last_time = inode->i_mtime.tv_sec;
197         loff_t last_sz = inode->i_size;
198
199         inode->i_mode   = fattr->f_mode;
200         inode->i_nlink  = fattr->f_nlink;
201         inode->i_uid    = fattr->f_uid;
202         inode->i_gid    = fattr->f_gid;
203         inode->i_ctime  = fattr->f_ctime;
204         inode->i_blksize= fattr->f_blksize;
205         inode->i_blocks = fattr->f_blocks;
206         inode->i_size   = fattr->f_size;
207         inode->i_mtime  = fattr->f_mtime;
208         inode->i_atime  = fattr->f_atime;
209         ei->attr = fattr->attr;
210
211         /*
212          * Update the "last time refreshed" field for revalidation.
213          */
214         ei->oldmtime = jiffies;
215
216         if (inode->i_mtime.tv_sec != last_time || inode->i_size != last_sz) {
217                 VERBOSE("%ld changed, old=%ld, new=%ld, oz=%ld, nz=%ld\n",
218                         inode->i_ino,
219                         (long) last_time, (long) inode->i_mtime,
220                         (long) last_sz, (long) inode->i_size);
221
222                 if (!S_ISDIR(inode->i_mode))
223                         invalidate_remote_inode(inode);
224         }
225 }
226
227 /*
228  * This is called if the connection has gone bad ...
229  * try to kill off all the current inodes.
230  */
231 void
232 smb_invalidate_inodes(struct smb_sb_info *server)
233 {
234         VERBOSE("\n");
235         shrink_dcache_sb(SB_of(server));
236         invalidate_inodes(SB_of(server));
237 }
238
239 /*
240  * This is called to update the inode attributes after
241  * we've made changes to a file or directory.
242  */
243 static int
244 smb_refresh_inode(struct dentry *dentry)
245 {
246         struct inode *inode = dentry->d_inode;
247         int error;
248         struct smb_fattr fattr;
249
250         error = smb_proc_getattr(dentry, &fattr);
251         if (!error) {
252                 smb_renew_times(dentry);
253                 /*
254                  * Check whether the type part of the mode changed,
255                  * and don't update the attributes if it did.
256                  *
257                  * And don't dick with the root inode
258                  */
259                 if (inode->i_ino == 2)
260                         return error;
261                 if (S_ISLNK(inode->i_mode))
262                         return error;   /* VFS will deal with it */
263
264                 if ((inode->i_mode & S_IFMT) == (fattr.f_mode & S_IFMT)) {
265                         smb_set_inode_attr(inode, &fattr);
266                 } else {
267                         /*
268                          * Big trouble! The inode has become a new object,
269                          * so any operations attempted on it are invalid.
270                          *
271                          * To limit damage, mark the inode as bad so that
272                          * subsequent lookup validations will fail.
273                          */
274                         PARANOIA("%s/%s changed mode, %07o to %07o\n",
275                                  DENTRY_PATH(dentry),
276                                  inode->i_mode, fattr.f_mode);
277
278                         fattr.f_mode = inode->i_mode; /* save mode */
279                         make_bad_inode(inode);
280                         inode->i_mode = fattr.f_mode; /* restore mode */
281                         /*
282                          * No need to worry about unhashing the dentry: the
283                          * lookup validation will see that the inode is bad.
284                          * But we do want to invalidate the caches ...
285                          */
286                         if (!S_ISDIR(inode->i_mode))
287                                 invalidate_remote_inode(inode);
288                         else
289                                 smb_invalid_dir_cache(inode);
290                         error = -EIO;
291                 }
292         }
293         return error;
294 }
295
296 /*
297  * This is called when we want to check whether the inode
298  * has changed on the server.  If it has changed, we must
299  * invalidate our local caches.
300  */
301 int
302 smb_revalidate_inode(struct dentry *dentry)
303 {
304         struct smb_sb_info *s = server_from_dentry(dentry);
305         struct inode *inode = dentry->d_inode;
306         int error = 0;
307
308         DEBUG1("smb_revalidate_inode\n");
309         lock_kernel();
310
311         /*
312          * Check whether we've recently refreshed the inode.
313          */
314         if (time_before(jiffies, SMB_I(inode)->oldmtime + SMB_MAX_AGE(s))) {
315                 VERBOSE("up-to-date, ino=%ld, jiffies=%lu, oldtime=%lu\n",
316                         inode->i_ino, jiffies, SMB_I(inode)->oldmtime);
317                 goto out;
318         }
319
320         error = smb_refresh_inode(dentry);
321 out:
322         unlock_kernel();
323         return error;
324 }
325
326 /*
327  * This routine is called when i_nlink == 0 and i_count goes to 0.
328  * All blocking cleanup operations need to go here to avoid races.
329  */
330 static void
331 smb_delete_inode(struct inode *ino)
332 {
333         DEBUG1("ino=%ld\n", ino->i_ino);
334         lock_kernel();
335         if (smb_close(ino))
336                 PARANOIA("could not close inode %ld\n", ino->i_ino);
337         unlock_kernel();
338         clear_inode(ino);
339 }
340
341 static struct option opts[] = {
342         { "version",    0, 'v' },
343         { "win95",      SMB_MOUNT_WIN95, 1 },
344         { "oldattr",    SMB_MOUNT_OLDATTR, 1 },
345         { "dirattr",    SMB_MOUNT_DIRATTR, 1 },
346         { "case",       SMB_MOUNT_CASE, 1 },
347         { "uid",        0, 'u' },
348         { "gid",        0, 'g' },
349         { "file_mode",  0, 'f' },
350         { "dir_mode",   0, 'd' },
351         { "iocharset",  0, 'i' },
352         { "codepage",   0, 'c' },
353         { "ttl",        0, 't' },
354         { NULL,         0, 0}
355 };
356
357 static int
358 parse_options(struct smb_mount_data_kernel *mnt, char *options)
359 {
360         int c;
361         unsigned long flags;
362         unsigned long value;
363         char *optarg;
364         char *optopt;
365
366         flags = 0;
367         while ( (c = smb_getopt("smbfs", &options, opts,
368                                 &optopt, &optarg, &flags, &value)) > 0) {
369
370                 VERBOSE("'%s' -> '%s'\n", optopt, optarg ? optarg : "<none>");
371
372                 switch (c) {
373                 case 1:
374                         /* got a "flag" option */
375                         break;
376                 case 'v':
377                         if (value != SMB_MOUNT_VERSION) {
378                         printk ("smbfs: Bad mount version %ld, expected %d\n",
379                                 value, SMB_MOUNT_VERSION);
380                                 return 0;
381                         }
382                         mnt->version = value;
383                         break;
384                 case 'u':
385                         mnt->uid = value;
386                         break;
387                 case 'g':
388                         mnt->gid = value;
389                         break;
390                 case 'f':
391                         mnt->file_mode = (value & S_IRWXUGO) | S_IFREG;
392                         break;
393                 case 'd':
394                         mnt->dir_mode = (value & S_IRWXUGO) | S_IFDIR;
395                         break;
396                 case 'i':
397                         strlcpy(mnt->codepage.local_name, optarg, 
398                                 SMB_NLS_MAXNAMELEN);
399                         break;
400                 case 'c':
401                         strlcpy(mnt->codepage.remote_name, optarg,
402                                 SMB_NLS_MAXNAMELEN);
403                         break;
404                 case 't':
405                         mnt->ttl = value;
406                         break;
407                 default:
408                         printk ("smbfs: Unrecognized mount option %s\n",
409                                 optopt);
410                         return -1;
411                 }
412         }
413         mnt->flags = flags;
414         return c;
415 }
416
417 /*
418  * smb_show_options() is for displaying mount options in /proc/mounts.
419  * It tries to avoid showing settings that were not changed from their
420  * defaults.
421  */
422 static int
423 smb_show_options(struct seq_file *s, struct vfsmount *m)
424 {
425         struct smb_mount_data_kernel *mnt = SMB_SB(m->mnt_sb)->mnt;
426         int i;
427
428         for (i = 0; opts[i].name != NULL; i++)
429                 if (mnt->flags & opts[i].flag)
430                         seq_printf(s, ",%s", opts[i].name);
431
432         if (mnt->uid != 0)
433                 seq_printf(s, ",uid=%d", mnt->uid);
434         if (mnt->gid != 0)
435                 seq_printf(s, ",gid=%d", mnt->gid);
436         if (mnt->mounted_uid != 0)
437                 seq_printf(s, ",mounted_uid=%d", mnt->mounted_uid);
438
439         /* 
440          * Defaults for file_mode and dir_mode are unknown to us; they
441          * depend on the current umask of the user doing the mount.
442          */
443         seq_printf(s, ",file_mode=%04o", mnt->file_mode & S_IRWXUGO);
444         seq_printf(s, ",dir_mode=%04o", mnt->dir_mode & S_IRWXUGO);
445
446         if (strcmp(mnt->codepage.local_name, CONFIG_NLS_DEFAULT))
447                 seq_printf(s, ",iocharset=%s", mnt->codepage.local_name);
448         if (strcmp(mnt->codepage.remote_name, SMB_NLS_REMOTE))
449                 seq_printf(s, ",codepage=%s", mnt->codepage.remote_name);
450
451         if (mnt->ttl != SMB_TTL_DEFAULT)
452                 seq_printf(s, ",ttl=%d", mnt->ttl);
453
454         return 0;
455 }
456
457 static void
458 smb_unload_nls(struct smb_sb_info *server)
459 {
460         if (server->remote_nls) {
461                 unload_nls(server->remote_nls);
462                 server->remote_nls = NULL;
463         }
464         if (server->local_nls) {
465                 unload_nls(server->local_nls);
466                 server->local_nls = NULL;
467         }
468 }
469
470 static void
471 smb_put_super(struct super_block *sb)
472 {
473         struct smb_sb_info *server = SMB_SB(sb);
474
475         smb_lock_server(server);
476         server->state = CONN_INVALID;
477         smbiod_unregister_server(server);
478
479         smb_close_socket(server);
480
481         if (server->conn_pid)
482                 kill_proc(server->conn_pid, SIGTERM, 1);
483
484         smb_kfree(server->ops);
485         smb_unload_nls(server);
486         sb->s_fs_info = NULL;
487         smb_unlock_server(server);
488         smb_kfree(server);
489 }
490
491 int smb_fill_super(struct super_block *sb, void *raw_data, int silent)
492 {
493         struct smb_sb_info *server;
494         struct smb_mount_data_kernel *mnt;
495         struct smb_mount_data *oldmnt;
496         struct inode *root_inode;
497         struct smb_fattr root;
498         int ver;
499         void *mem;
500
501         if (!raw_data)
502                 goto out_no_data;
503
504         oldmnt = (struct smb_mount_data *) raw_data;
505         ver = oldmnt->version;
506         if (ver != SMB_MOUNT_OLDVERSION && cpu_to_be32(ver) != SMB_MOUNT_ASCII)
507                 goto out_wrong_data;
508
509         sb->s_flags |= MS_NODIRATIME;
510         sb->s_blocksize = 1024; /* Eh...  Is this correct? */
511         sb->s_blocksize_bits = 10;
512         sb->s_magic = SMB_SUPER_MAGIC;
513         sb->s_op = &smb_sops;
514
515         server = smb_kmalloc(sizeof(struct smb_sb_info), GFP_KERNEL);
516         if (!server)
517                 goto out_no_server;
518         sb->s_fs_info = server;
519         memset(server, 0, sizeof(struct smb_sb_info));
520
521         server->super_block = sb;
522         server->mnt = NULL;
523         server->sock_file = NULL;
524         init_MUTEX(&server->sem);
525         INIT_LIST_HEAD(&server->entry);
526         INIT_LIST_HEAD(&server->xmitq);
527         INIT_LIST_HEAD(&server->recvq);
528         server->conn_error = 0;
529         server->conn_pid = 0;
530         server->state = CONN_INVALID; /* no connection yet */
531         server->generation = 0;
532
533         /* Allocate the global temp buffer and some superblock helper structs */
534         /* FIXME: move these to the smb_sb_info struct */
535         VERBOSE("alloc chunk = %d\n", sizeof(struct smb_ops) +
536                 sizeof(struct smb_mount_data_kernel));
537         mem = smb_kmalloc(sizeof(struct smb_ops) +
538                           sizeof(struct smb_mount_data_kernel), GFP_KERNEL);
539         if (!mem)
540                 goto out_no_mem;
541
542         server->ops = mem;
543         smb_install_null_ops(server->ops);
544         server->mnt = mem + sizeof(struct smb_ops);
545
546         /* Setup NLS stuff */
547         server->remote_nls = NULL;
548         server->local_nls = NULL;
549
550         mnt = server->mnt;
551
552         memset(mnt, 0, sizeof(struct smb_mount_data_kernel));
553         strlcpy(mnt->codepage.local_name, CONFIG_NLS_DEFAULT,
554                 SMB_NLS_MAXNAMELEN);
555         strlcpy(mnt->codepage.remote_name, SMB_NLS_REMOTE,
556                 SMB_NLS_MAXNAMELEN);
557
558         mnt->ttl = SMB_TTL_DEFAULT;
559         if (ver == SMB_MOUNT_OLDVERSION) {
560                 mnt->version = oldmnt->version;
561
562                 SET_UID(mnt->uid, oldmnt->uid);
563                 SET_GID(mnt->gid, oldmnt->gid);
564
565                 mnt->file_mode = (oldmnt->file_mode & S_IRWXUGO) | S_IFREG;
566                 mnt->dir_mode = (oldmnt->dir_mode & S_IRWXUGO) | S_IFDIR;
567
568                 mnt->flags = (oldmnt->file_mode >> 9);
569         } else {
570                 if (parse_options(mnt, raw_data))
571                         goto out_bad_option;
572         }
573         mnt->mounted_uid = current->uid;
574         smb_setcodepage(server, &mnt->codepage);
575
576         /*
577          * Display the enabled options
578          * Note: smb_proc_getattr uses these in 2.4 (but was changed in 2.2)
579          */
580         if (mnt->flags & SMB_MOUNT_OLDATTR)
581                 printk("SMBFS: Using core getattr (Win 95 speedup)\n");
582         else if (mnt->flags & SMB_MOUNT_DIRATTR)
583                 printk("SMBFS: Using dir ff getattr\n");
584
585         if (smbiod_register_server(server) < 0) {
586                 printk(KERN_ERR "smbfs: failed to start smbiod\n");
587                 goto out_no_smbiod;
588         }
589
590         /*
591          * Keep the super block locked while we get the root inode.
592          */
593         smb_init_root_dirent(server, &root);
594         root_inode = smb_iget(sb, &root);
595         if (!root_inode)
596                 goto out_no_root;
597
598         sb->s_root = d_alloc_root(root_inode);
599         if (!sb->s_root)
600                 goto out_no_root;
601         smb_new_dentry(sb->s_root);
602
603         return 0;
604
605 out_no_root:
606         iput(root_inode);
607 out_no_smbiod:
608         smb_unload_nls(server);
609 out_bad_option:
610         smb_kfree(mem);
611 out_no_mem:
612         if (!server->mnt)
613                 printk(KERN_ERR "smb_fill_super: allocation failure\n");
614         sb->s_fs_info = NULL;
615         smb_kfree(server);
616         goto out_fail;
617 out_wrong_data:
618         printk(KERN_ERR "smbfs: mount_data version %d is not supported\n", ver);
619         goto out_fail;
620 out_no_data:
621         printk(KERN_ERR "smb_fill_super: missing data argument\n");
622 out_fail:
623         return -EINVAL;
624 out_no_server:
625         printk(KERN_ERR "smb_fill_super: cannot allocate struct smb_sb_info\n");
626         return -ENOMEM;
627 }
628
629 static int
630 smb_statfs(struct super_block *sb, struct kstatfs *buf)
631 {
632         int result;
633         
634         lock_kernel();
635
636         result = smb_proc_dskattr(sb, buf);
637
638         unlock_kernel();
639
640         buf->f_type = SMB_SUPER_MAGIC;
641         buf->f_namelen = SMB_MAXPATHLEN;
642         return result;
643 }
644
645 int smb_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
646 {
647         int err = smb_revalidate_inode(dentry);
648         if (!err)
649                 generic_fillattr(dentry->d_inode, stat);
650         return err;
651 }
652
653 int
654 smb_notify_change(struct dentry *dentry, struct iattr *attr)
655 {
656         struct inode *inode = dentry->d_inode;
657         struct smb_sb_info *server = server_from_dentry(dentry);
658         unsigned int mask = (S_IFREG | S_IFDIR | S_IRWXUGO);
659         int error, changed, refresh = 0;
660         struct smb_fattr fattr;
661
662         lock_kernel();
663
664         error = smb_revalidate_inode(dentry);
665         if (error)
666                 goto out;
667
668         if ((error = inode_change_ok(inode, attr)) < 0)
669                 goto out;
670
671         error = -EPERM;
672         if ((attr->ia_valid & ATTR_UID) && (attr->ia_uid != server->mnt->uid))
673                 goto out;
674
675         if ((attr->ia_valid & ATTR_GID) && (attr->ia_uid != server->mnt->gid))
676                 goto out;
677
678         if ((attr->ia_valid & ATTR_MODE) && (attr->ia_mode & ~mask))
679                 goto out;
680
681         if ((attr->ia_valid & ATTR_SIZE) != 0) {
682                 VERBOSE("changing %s/%s, old size=%ld, new size=%ld\n",
683                         DENTRY_PATH(dentry),
684                         (long) inode->i_size, (long) attr->ia_size);
685
686                 filemap_fdatawrite(inode->i_mapping);
687                 filemap_fdatawait(inode->i_mapping);
688
689                 error = smb_open(dentry, O_WRONLY);
690                 if (error)
691                         goto out;
692                 error = server->ops->truncate(inode, attr->ia_size);
693                 if (error)
694                         goto out;
695                 error = vmtruncate(inode, attr->ia_size);
696                 if (error)
697                         goto out;
698                 refresh = 1;
699         }
700
701         if (server->opt.capabilities & SMB_CAP_UNIX) {
702                 /* For now we don't want to set the size with setattr_unix */
703                 attr->ia_valid &= ~ATTR_SIZE;
704                 /* FIXME: only call if we actually want to set something? */
705                 error = smb_proc_setattr_unix(dentry, attr, 0, 0);
706                 if (!error)
707                         refresh = 1;
708
709                 goto out;
710         }
711
712         /*
713          * Initialize the fattr and check for changed fields.
714          * Note: CTIME under SMB is creation time rather than
715          * change time, so we don't attempt to change it.
716          */
717         smb_get_inode_attr(inode, &fattr);
718
719         changed = 0;
720         if ((attr->ia_valid & ATTR_MTIME) != 0) {
721                 fattr.f_mtime = attr->ia_mtime;
722                 changed = 1;
723         }
724         if ((attr->ia_valid & ATTR_ATIME) != 0) {
725                 fattr.f_atime = attr->ia_atime;
726                 /* Earlier protocols don't have an access time */
727                 if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2)
728                         changed = 1;
729         }
730         if (changed) {
731                 error = smb_proc_settime(dentry, &fattr);
732                 if (error)
733                         goto out;
734                 refresh = 1;
735         }
736
737         /*
738          * Check for mode changes ... we're extremely limited in
739          * what can be set for SMB servers: just the read-only bit.
740          */
741         if ((attr->ia_valid & ATTR_MODE) != 0) {
742                 VERBOSE("%s/%s mode change, old=%x, new=%x\n",
743                         DENTRY_PATH(dentry), fattr.f_mode, attr->ia_mode);
744                 changed = 0;
745                 if (attr->ia_mode & S_IWUSR) {
746                         if (fattr.attr & aRONLY) {
747                                 fattr.attr &= ~aRONLY;
748                                 changed = 1;
749                         }
750                 } else {
751                         if (!(fattr.attr & aRONLY)) {
752                                 fattr.attr |= aRONLY;
753                                 changed = 1;
754                         }
755                 }
756                 if (changed) {
757                         error = smb_proc_setattr(dentry, &fattr);
758                         if (error)
759                                 goto out;
760                         refresh = 1;
761                 }
762         }
763         error = 0;
764
765 out:
766         if (refresh)
767                 smb_refresh_inode(dentry);
768         unlock_kernel();
769         return error;
770 }
771
772 #ifdef DEBUG_SMB_MALLOC
773 int smb_malloced;
774 int smb_current_kmalloced;
775 int smb_current_vmalloced;
776 #endif
777
778 static struct super_block *smb_get_sb(struct file_system_type *fs_type,
779         int flags, const char *dev_name, void *data)
780 {
781         return get_sb_nodev(fs_type, flags, data, smb_fill_super);
782 }
783
784 static struct file_system_type smb_fs_type = {
785         .owner          = THIS_MODULE,
786         .name           = "smbfs",
787         .get_sb         = smb_get_sb,
788         .kill_sb        = kill_anon_super,
789         .fs_flags       = FS_BINARY_MOUNTDATA,
790 };
791
792 static int __init init_smb_fs(void)
793 {
794         int err;
795         DEBUG1("registering ...\n");
796
797 #ifdef DEBUG_SMB_MALLOC
798         smb_malloced = 0;
799         smb_current_kmalloced = 0;
800         smb_current_vmalloced = 0;
801 #endif
802
803         err = init_inodecache();
804         if (err)
805                 goto out_inode;
806         err = smb_init_request_cache();
807         if (err)
808                 goto out_request;
809         err = register_filesystem(&smb_fs_type);
810         if (err)
811                 goto out;
812         return 0;
813 out:
814         smb_destroy_request_cache();
815 out_request:
816         destroy_inodecache();
817 out_inode:
818         return err;
819 }
820
821 static void __exit exit_smb_fs(void)
822 {
823         DEBUG1("unregistering ...\n");
824         unregister_filesystem(&smb_fs_type);
825         smb_destroy_request_cache();
826         destroy_inodecache();
827 #ifdef DEBUG_SMB_MALLOC
828         printk(KERN_DEBUG "smb_malloced: %d\n", smb_malloced);
829         printk(KERN_DEBUG "smb_current_kmalloced: %d\n",smb_current_kmalloced);
830         printk(KERN_DEBUG "smb_current_vmalloced: %d\n",smb_current_vmalloced);
831 #endif
832 }
833
834 module_init(init_smb_fs)
835 module_exit(exit_smb_fs)
836 MODULE_LICENSE("GPL");