4 * Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
5 * Copyright (C) 1997 by Volker Lendecke
7 * Please add a note about your changes to smbfs in the ChangeLog file.
10 #include <linux/time.h>
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/smp_lock.h>
14 #include <linux/ctype.h>
15 #include <linux/net.h>
17 #include <linux/smb_fs.h>
18 #include <linux/smb_mount.h>
19 #include <linux/smbno.h>
21 #include "smb_debug.h"
24 static int smb_readdir(struct file
*, void *, filldir_t
);
25 static int smb_dir_open(struct inode
*, struct file
*);
27 static struct dentry
*smb_lookup(struct inode
*, struct dentry
*);
28 static int smb_create(struct inode
*, struct dentry
*, int);
29 static int smb_mkdir(struct inode
*, struct dentry
*, int);
30 static int smb_rmdir(struct inode
*, struct dentry
*);
31 static int smb_unlink(struct inode
*, struct dentry
*);
32 static int smb_rename(struct inode
*, struct dentry
*,
33 struct inode
*, struct dentry
*);
34 static int smb_make_node(struct inode
*,struct dentry
*,int,dev_t
);
35 static int smb_link(struct dentry
*, struct inode
*, struct dentry
*);
37 struct file_operations smb_dir_operations
=
39 .read
= generic_read_dir
,
40 .readdir
= smb_readdir
,
45 struct inode_operations smb_dir_inode_operations
=
53 .getattr
= smb_getattr
,
54 .setattr
= smb_notify_change
,
57 struct inode_operations smb_dir_inode_operations_unix
=
65 .getattr
= smb_getattr
,
66 .setattr
= smb_notify_change
,
67 .symlink
= smb_symlink
,
68 .mknod
= smb_make_node
,
73 * Read a directory, using filldir to fill the dirent memory.
74 * smb_proc_readdir does the actual reading from the smb server.
76 * The cache code is almost directly taken from ncpfs
79 smb_readdir(struct file
*filp
, void *dirent
, filldir_t filldir
)
81 struct dentry
*dentry
= filp
->f_dentry
;
82 struct inode
*dir
= dentry
->d_inode
;
83 struct smb_sb_info
*server
= server_from_dentry(dentry
);
84 union smb_dir_cache
*cache
= NULL
;
85 struct smb_cache_control ctl
;
86 struct page
*page
= NULL
;
92 VERBOSE("reading %s/%s, f_pos=%d\n",
93 DENTRY_PATH(dentry
), (int) filp
->f_pos
);
99 switch ((unsigned int) filp
->f_pos
) {
101 if (filldir(dirent
, ".", 1, 0, dir
->i_ino
, DT_DIR
) < 0)
106 if (filldir(dirent
, "..", 2, 1, parent_ino(dentry
), DT_DIR
) < 0)
112 * Make sure our inode is up-to-date.
114 result
= smb_revalidate_inode(dentry
);
119 page
= grab_cache_page(&dir
->i_data
, 0);
123 ctl
.cache
= cache
= kmap(page
);
124 ctl
.head
= cache
->head
;
126 if (!PageUptodate(page
) || !ctl
.head
.eof
) {
127 VERBOSE("%s/%s, page uptodate=%d, eof=%d\n",
128 DENTRY_PATH(dentry
), PageUptodate(page
),ctl
.head
.eof
);
132 if (filp
->f_pos
== 2) {
133 if (jiffies
- ctl
.head
.time
>= SMB_MAX_AGE(server
))
137 * N.B. ncpfs checks mtime of dentry too here, we don't.
138 * 1. common smb servers do not update mtime on dir changes
139 * 2. it requires an extra smb request
140 * (revalidate has the same timeout as ctl.head.time)
142 * Instead smbfs invalidates its own cache on local changes
143 * and remote changes are not seen until timeout.
147 if (filp
->f_pos
> ctl
.head
.end
)
150 ctl
.fpos
= filp
->f_pos
+ (SMB_DIRCACHE_START
- 2);
151 ctl
.ofs
= ctl
.fpos
/ SMB_DIRCACHE_SIZE
;
152 ctl
.idx
= ctl
.fpos
% SMB_DIRCACHE_SIZE
;
156 ctl
.page
= find_lock_page(&dir
->i_data
, ctl
.ofs
);
159 ctl
.cache
= kmap(ctl
.page
);
160 if (!PageUptodate(ctl
.page
))
163 while (ctl
.idx
< SMB_DIRCACHE_SIZE
) {
167 dent
= smb_dget_fpos(ctl
.cache
->dentry
[ctl
.idx
],
168 dentry
, filp
->f_pos
);
172 res
= filldir(dirent
, dent
->d_name
.name
,
173 dent
->d_name
.len
, filp
->f_pos
,
174 dent
->d_inode
->i_ino
, DT_UNKNOWN
);
180 if (filp
->f_pos
> ctl
.head
.end
)
185 SetPageUptodate(ctl
.page
);
186 unlock_page(ctl
.page
);
187 page_cache_release(ctl
.page
);
196 unlock_page(ctl
.page
);
197 page_cache_release(ctl
.page
);
202 smb_invalidate_dircache_entries(dentry
);
203 ctl
.head
.time
= jiffies
;
207 ctl
.idx
= SMB_DIRCACHE_START
;
211 result
= server
->ops
->readdir(filp
, dirent
, filldir
, &ctl
);
213 goto invalid_cache
; /* retry */
214 ctl
.head
.end
= ctl
.fpos
- 1;
215 ctl
.head
.eof
= ctl
.valid
;
218 cache
->head
= ctl
.head
;
220 SetPageUptodate(page
);
222 page_cache_release(page
);
226 SetPageUptodate(ctl
.page
);
227 unlock_page(ctl
.page
);
228 page_cache_release(ctl
.page
);
236 smb_dir_open(struct inode
*dir
, struct file
*file
)
238 struct dentry
*dentry
= file
->f_dentry
;
239 struct smb_sb_info
*server
;
242 VERBOSE("(%s/%s)\n", dentry
->d_parent
->d_name
.name
,
243 file
->f_dentry
->d_name
.name
);
246 * Directory timestamps in the core protocol aren't updated
247 * when a file is added, so we give them a very short TTL.
250 server
= server_from_dentry(dentry
);
251 if (server
->opt
.protocol
< SMB_PROTOCOL_LANMAN2
) {
252 unsigned long age
= jiffies
- SMB_I(dir
)->oldmtime
;
254 smb_invalid_dir_cache(dir
);
258 * Note: in order to allow the smbmount process to open the
259 * mount point, we only revalidate if the connection is valid or
260 * if the process is trying to access something other than the root.
262 if (server
->state
== CONN_VALID
|| !IS_ROOT(dentry
))
263 error
= smb_revalidate_inode(dentry
);
269 * Dentry operations routines
271 static int smb_lookup_validate(struct dentry
*, int);
272 static int smb_hash_dentry(struct dentry
*, struct qstr
*);
273 static int smb_compare_dentry(struct dentry
*, struct qstr
*, struct qstr
*);
274 static int smb_delete_dentry(struct dentry
*);
276 static struct dentry_operations smbfs_dentry_operations
=
278 .d_revalidate
= smb_lookup_validate
,
279 .d_hash
= smb_hash_dentry
,
280 .d_compare
= smb_compare_dentry
,
281 .d_delete
= smb_delete_dentry
,
284 static struct dentry_operations smbfs_dentry_operations_case
=
286 .d_revalidate
= smb_lookup_validate
,
287 .d_delete
= smb_delete_dentry
,
292 * This is the callback when the dcache has a lookup hit.
295 smb_lookup_validate(struct dentry
* dentry
, int flags
)
297 struct smb_sb_info
*server
= server_from_dentry(dentry
);
298 struct inode
* inode
= dentry
->d_inode
;
299 unsigned long age
= jiffies
- dentry
->d_time
;
303 * The default validation is based on dentry age:
304 * we believe in dentries for a few seconds. (But each
305 * successful server lookup renews the timestamp.)
307 valid
= (age
<= SMB_MAX_AGE(server
));
308 #ifdef SMBFS_DEBUG_VERBOSE
310 VERBOSE("%s/%s not valid, age=%lu\n",
311 DENTRY_PATH(dentry
), age
);
316 if (is_bad_inode(inode
)) {
317 PARANOIA("%s/%s has dud inode\n", DENTRY_PATH(dentry
));
320 valid
= (smb_revalidate_inode(dentry
) == 0);
324 * What should we do for negative dentries?
331 smb_hash_dentry(struct dentry
*dir
, struct qstr
*this)
336 hash
= init_name_hash();
337 for (i
=0; i
< this->len
; i
++)
338 hash
= partial_name_hash(tolower(this->name
[i
]), hash
);
339 this->hash
= end_name_hash(hash
);
345 smb_compare_dentry(struct dentry
*dir
, struct qstr
*a
, struct qstr
*b
)
349 if (a
->len
!= b
->len
)
351 for (i
=0; i
< a
->len
; i
++) {
352 if (tolower(a
->name
[i
]) != tolower(b
->name
[i
]))
361 * This is the callback from dput() when d_count is going to 0.
362 * We use this to unhash dentries with bad inodes.
365 smb_delete_dentry(struct dentry
* dentry
)
367 if (dentry
->d_inode
) {
368 if (is_bad_inode(dentry
->d_inode
)) {
369 PARANOIA("bad inode, unhashing %s/%s\n",
370 DENTRY_PATH(dentry
));
374 /* N.B. Unhash negative dentries? */
380 * Initialize a new dentry
383 smb_new_dentry(struct dentry
*dentry
)
385 struct smb_sb_info
*server
= server_from_dentry(dentry
);
387 if (server
->mnt
->flags
& SMB_MOUNT_CASE
)
388 dentry
->d_op
= &smbfs_dentry_operations_case
;
390 dentry
->d_op
= &smbfs_dentry_operations
;
391 dentry
->d_time
= jiffies
;
396 * Whenever a lookup succeeds, we know the parent directories
397 * are all valid, so we want to update the dentry timestamps.
398 * N.B. Move this to dcache?
401 smb_renew_times(struct dentry
* dentry
)
404 spin_lock(&dentry
->d_lock
);
406 struct dentry
*parent
;
408 dentry
->d_time
= jiffies
;
411 parent
= dentry
->d_parent
;
413 spin_unlock(&dentry
->d_lock
);
416 spin_lock(&dentry
->d_lock
);
418 spin_unlock(&dentry
->d_lock
);
422 static struct dentry
*
423 smb_lookup(struct inode
*dir
, struct dentry
*dentry
)
425 struct smb_fattr finfo
;
428 struct smb_sb_info
*server
;
430 error
= -ENAMETOOLONG
;
431 if (dentry
->d_name
.len
> SMB_MAXNAMELEN
)
435 error
= smb_proc_getattr(dentry
, &finfo
);
436 #ifdef SMBFS_PARANOIA
437 if (error
&& error
!= -ENOENT
)
438 PARANOIA("find %s/%s failed, error=%d\n",
439 DENTRY_PATH(dentry
), error
);
443 if (error
== -ENOENT
)
447 finfo
.f_ino
= iunique(dentry
->d_sb
, 2);
448 inode
= smb_iget(dir
->i_sb
, &finfo
);
451 server
= server_from_dentry(dentry
);
452 if (server
->mnt
->flags
& SMB_MOUNT_CASE
)
453 dentry
->d_op
= &smbfs_dentry_operations_case
;
455 dentry
->d_op
= &smbfs_dentry_operations
;
457 d_add(dentry
, inode
);
458 smb_renew_times(dentry
);
464 return ERR_PTR(error
);
468 * This code is common to all routines creating a new inode.
471 smb_instantiate(struct dentry
*dentry
, __u16 fileid
, int have_id
)
473 struct smb_sb_info
*server
= server_from_dentry(dentry
);
476 struct smb_fattr fattr
;
478 VERBOSE("file %s/%s, fileid=%u\n", DENTRY_PATH(dentry
), fileid
);
480 error
= smb_proc_getattr(dentry
, &fattr
);
484 smb_renew_times(dentry
);
485 fattr
.f_ino
= iunique(dentry
->d_sb
, 2);
486 inode
= smb_iget(dentry
->d_sb
, &fattr
);
491 struct smb_inode_info
*ei
= SMB_I(inode
);
493 ei
->access
= SMB_O_RDWR
;
494 ei
->open
= server
->generation
;
496 d_instantiate(dentry
, inode
);
504 PARANOIA("%s/%s failed, error=%d, closing %u\n",
505 DENTRY_PATH(dentry
), error
, fileid
);
506 smb_close_fileid(dentry
, fileid
);
511 /* N.B. How should the mode argument be used? */
513 smb_create(struct inode
*dir
, struct dentry
*dentry
, int mode
)
515 struct smb_sb_info
*server
= server_from_dentry(dentry
);
520 VERBOSE("creating %s/%s, mode=%d\n", DENTRY_PATH(dentry
), mode
);
523 smb_invalid_dir_cache(dir
);
524 error
= smb_proc_create(dentry
, 0, get_seconds(), &fileid
);
526 if (server
->opt
.capabilities
& SMB_CAP_UNIX
) {
527 /* Set attributes for new file */
528 attr
.ia_valid
= ATTR_MODE
;
530 error
= smb_proc_setattr_unix(dentry
, &attr
, 0, 0);
532 error
= smb_instantiate(dentry
, fileid
, 1);
534 PARANOIA("%s/%s failed, error=%d\n",
535 DENTRY_PATH(dentry
), error
);
541 /* N.B. How should the mode argument be used? */
543 smb_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
545 struct smb_sb_info
*server
= server_from_dentry(dentry
);
550 smb_invalid_dir_cache(dir
);
551 error
= smb_proc_mkdir(dentry
);
553 if (server
->opt
.capabilities
& SMB_CAP_UNIX
) {
554 /* Set attributes for new directory */
555 attr
.ia_valid
= ATTR_MODE
;
557 error
= smb_proc_setattr_unix(dentry
, &attr
, 0, 0);
559 error
= smb_instantiate(dentry
, 0, 0);
566 smb_rmdir(struct inode
*dir
, struct dentry
*dentry
)
568 struct inode
*inode
= dentry
->d_inode
;
572 * Close the directory if it's open.
578 * Check that nobody else is using the directory..
581 if (!d_unhashed(dentry
))
584 smb_invalid_dir_cache(dir
);
585 error
= smb_proc_rmdir(dentry
);
593 smb_unlink(struct inode
*dir
, struct dentry
*dentry
)
598 * Close the file if it's open.
601 smb_close(dentry
->d_inode
);
603 smb_invalid_dir_cache(dir
);
604 error
= smb_proc_unlink(dentry
);
606 smb_renew_times(dentry
);
612 smb_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
613 struct inode
*new_dir
, struct dentry
*new_dentry
)
618 * Close any open files, and check whether to delete the
619 * target before attempting the rename.
622 if (old_dentry
->d_inode
)
623 smb_close(old_dentry
->d_inode
);
624 if (new_dentry
->d_inode
) {
625 smb_close(new_dentry
->d_inode
);
626 error
= smb_proc_unlink(new_dentry
);
628 VERBOSE("unlink %s/%s, error=%d\n",
629 DENTRY_PATH(new_dentry
), error
);
633 d_delete(new_dentry
);
636 smb_invalid_dir_cache(old_dir
);
637 smb_invalid_dir_cache(new_dir
);
638 error
= smb_proc_mv(old_dentry
, new_dentry
);
640 smb_renew_times(old_dentry
);
641 smb_renew_times(new_dentry
);
649 * FIXME: samba servers won't let you create device nodes unless uid/gid
650 * matches the connection credentials (and we don't know which those are ...)
653 smb_make_node(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
658 attr
.ia_valid
= ATTR_MODE
| ATTR_UID
| ATTR_GID
;
660 attr
.ia_uid
= current
->euid
;
661 attr
.ia_gid
= current
->egid
;
663 smb_invalid_dir_cache(dir
);
664 error
= smb_proc_setattr_unix(dentry
, &attr
, MAJOR(dev
), MINOR(dev
));
666 error
= smb_instantiate(dentry
, 0, 0);
672 * dentry = existing file
673 * new_dentry = new file
676 smb_link(struct dentry
*dentry
, struct inode
*dir
, struct dentry
*new_dentry
)
680 DEBUG1("smb_link old=%s/%s new=%s/%s\n",
681 DENTRY_PATH(dentry
), DENTRY_PATH(new_dentry
));
682 smb_invalid_dir_cache(dir
);
683 error
= smb_proc_link(server_from_dentry(dentry
), dentry
, new_dentry
);
685 smb_renew_times(dentry
);
686 error
= smb_instantiate(new_dentry
, 0, 0);