diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig | 1 | ||||
-rw-r--r-- | fs/Makefile | 1 | ||||
-rw-r--r-- | fs/compat.c | 31 | ||||
-rw-r--r-- | fs/compat_ioctl.c | 26 | ||||
-rw-r--r-- | fs/smbfs/Kconfig | 55 | ||||
-rw-r--r-- | fs/smbfs/Makefile | 18 | ||||
-rw-r--r-- | fs/smbfs/cache.c | 208 | ||||
-rw-r--r-- | fs/smbfs/dir.c | 702 | ||||
-rw-r--r-- | fs/smbfs/file.c | 454 | ||||
-rw-r--r-- | fs/smbfs/getopt.c | 64 | ||||
-rw-r--r-- | fs/smbfs/getopt.h | 14 | ||||
-rw-r--r-- | fs/smbfs/inode.c | 839 | ||||
-rw-r--r-- | fs/smbfs/ioctl.c | 69 | ||||
-rw-r--r-- | fs/smbfs/proc.c | 3507 | ||||
-rw-r--r-- | fs/smbfs/proto.h | 87 | ||||
-rw-r--r-- | fs/smbfs/request.c | 818 | ||||
-rw-r--r-- | fs/smbfs/request.h | 70 | ||||
-rw-r--r-- | fs/smbfs/smb_debug.h | 34 | ||||
-rw-r--r-- | fs/smbfs/smbiod.c | 344 | ||||
-rw-r--r-- | fs/smbfs/sock.c | 386 | ||||
-rw-r--r-- | fs/smbfs/symlink.c | 68 |
21 files changed, 1 insertions, 7795 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index 30da8ee16a96..25ce2dc1c6d4 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
@@ -233,7 +233,6 @@ config NFS_COMMON | |||
233 | default y | 233 | default y |
234 | 234 | ||
235 | source "net/sunrpc/Kconfig" | 235 | source "net/sunrpc/Kconfig" |
236 | source "fs/smbfs/Kconfig" | ||
237 | source "fs/ceph/Kconfig" | 236 | source "fs/ceph/Kconfig" |
238 | source "fs/cifs/Kconfig" | 237 | source "fs/cifs/Kconfig" |
239 | source "fs/ncpfs/Kconfig" | 238 | source "fs/ncpfs/Kconfig" |
diff --git a/fs/Makefile b/fs/Makefile index e571feddd7b7..9284c74c2db9 100644 --- a/fs/Makefile +++ b/fs/Makefile | |||
@@ -91,7 +91,6 @@ obj-$(CONFIG_NFSD) += nfsd/ | |||
91 | obj-$(CONFIG_LOCKD) += lockd/ | 91 | obj-$(CONFIG_LOCKD) += lockd/ |
92 | obj-$(CONFIG_NLS) += nls/ | 92 | obj-$(CONFIG_NLS) += nls/ |
93 | obj-$(CONFIG_SYSV_FS) += sysv/ | 93 | obj-$(CONFIG_SYSV_FS) += sysv/ |
94 | obj-$(CONFIG_SMB_FS) += smbfs/ | ||
95 | obj-$(CONFIG_CIFS) += cifs/ | 94 | obj-$(CONFIG_CIFS) += cifs/ |
96 | obj-$(CONFIG_NCP_FS) += ncpfs/ | 95 | obj-$(CONFIG_NCP_FS) += ncpfs/ |
97 | obj-$(CONFIG_HPFS_FS) += hpfs/ | 96 | obj-$(CONFIG_HPFS_FS) += hpfs/ |
diff --git a/fs/compat.c b/fs/compat.c index 718c7062aec1..b42f29a44edb 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -29,8 +29,6 @@ | |||
29 | #include <linux/vfs.h> | 29 | #include <linux/vfs.h> |
30 | #include <linux/ioctl.h> | 30 | #include <linux/ioctl.h> |
31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
32 | #include <linux/smb.h> | ||
33 | #include <linux/smb_mount.h> | ||
34 | #include <linux/ncp_mount.h> | 32 | #include <linux/ncp_mount.h> |
35 | #include <linux/nfs4_mount.h> | 33 | #include <linux/nfs4_mount.h> |
36 | #include <linux/syscalls.h> | 34 | #include <linux/syscalls.h> |
@@ -745,30 +743,6 @@ static void *do_ncp_super_data_conv(void *raw_data) | |||
745 | return raw_data; | 743 | return raw_data; |
746 | } | 744 | } |
747 | 745 | ||
748 | struct compat_smb_mount_data { | ||
749 | compat_int_t version; | ||
750 | __compat_uid_t mounted_uid; | ||
751 | __compat_uid_t uid; | ||
752 | __compat_gid_t gid; | ||
753 | compat_mode_t file_mode; | ||
754 | compat_mode_t dir_mode; | ||
755 | }; | ||
756 | |||
757 | static void *do_smb_super_data_conv(void *raw_data) | ||
758 | { | ||
759 | struct smb_mount_data *s = raw_data; | ||
760 | struct compat_smb_mount_data *c_s = raw_data; | ||
761 | |||
762 | if (c_s->version != SMB_MOUNT_OLDVERSION) | ||
763 | goto out; | ||
764 | s->dir_mode = c_s->dir_mode; | ||
765 | s->file_mode = c_s->file_mode; | ||
766 | s->gid = c_s->gid; | ||
767 | s->uid = c_s->uid; | ||
768 | s->mounted_uid = c_s->mounted_uid; | ||
769 | out: | ||
770 | return raw_data; | ||
771 | } | ||
772 | 746 | ||
773 | struct compat_nfs_string { | 747 | struct compat_nfs_string { |
774 | compat_uint_t len; | 748 | compat_uint_t len; |
@@ -835,7 +809,6 @@ static int do_nfs4_super_data_conv(void *raw_data) | |||
835 | return 0; | 809 | return 0; |
836 | } | 810 | } |
837 | 811 | ||
838 | #define SMBFS_NAME "smbfs" | ||
839 | #define NCPFS_NAME "ncpfs" | 812 | #define NCPFS_NAME "ncpfs" |
840 | #define NFS4_NAME "nfs4" | 813 | #define NFS4_NAME "nfs4" |
841 | 814 | ||
@@ -870,9 +843,7 @@ asmlinkage long compat_sys_mount(const char __user * dev_name, | |||
870 | retval = -EINVAL; | 843 | retval = -EINVAL; |
871 | 844 | ||
872 | if (kernel_type && data_page) { | 845 | if (kernel_type && data_page) { |
873 | if (!strcmp(kernel_type, SMBFS_NAME)) { | 846 | if (!strcmp(kernel_type, NCPFS_NAME)) { |
874 | do_smb_super_data_conv((void *)data_page); | ||
875 | } else if (!strcmp(kernel_type, NCPFS_NAME)) { | ||
876 | do_ncp_super_data_conv((void *)data_page); | 847 | do_ncp_super_data_conv((void *)data_page); |
877 | } else if (!strcmp(kernel_type, NFS4_NAME)) { | 848 | } else if (!strcmp(kernel_type, NFS4_NAME)) { |
878 | if (do_nfs4_super_data_conv((void *) data_page)) | 849 | if (do_nfs4_super_data_conv((void *) data_page)) |
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index 03e59aa318eb..34cf03cd791f 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -46,7 +46,6 @@ | |||
46 | #include <linux/videodev.h> | 46 | #include <linux/videodev.h> |
47 | #include <linux/netdevice.h> | 47 | #include <linux/netdevice.h> |
48 | #include <linux/raw.h> | 48 | #include <linux/raw.h> |
49 | #include <linux/smb_fs.h> | ||
50 | #include <linux/blkdev.h> | 49 | #include <linux/blkdev.h> |
51 | #include <linux/elevator.h> | 50 | #include <linux/elevator.h> |
52 | #include <linux/rtc.h> | 51 | #include <linux/rtc.h> |
@@ -558,25 +557,6 @@ static int mt_ioctl_trans(unsigned int fd, unsigned int cmd, void __user *argp) | |||
558 | 557 | ||
559 | #endif /* CONFIG_BLOCK */ | 558 | #endif /* CONFIG_BLOCK */ |
560 | 559 | ||
561 | static int do_smb_getmountuid(unsigned int fd, unsigned int cmd, | ||
562 | compat_uid_t __user *argp) | ||
563 | { | ||
564 | mm_segment_t old_fs = get_fs(); | ||
565 | __kernel_uid_t kuid; | ||
566 | int err; | ||
567 | |||
568 | cmd = SMB_IOC_GETMOUNTUID; | ||
569 | |||
570 | set_fs(KERNEL_DS); | ||
571 | err = sys_ioctl(fd, cmd, (unsigned long)&kuid); | ||
572 | set_fs(old_fs); | ||
573 | |||
574 | if (err >= 0) | ||
575 | err = put_user(kuid, argp); | ||
576 | |||
577 | return err; | ||
578 | } | ||
579 | |||
580 | /* Bluetooth ioctls */ | 560 | /* Bluetooth ioctls */ |
581 | #define HCIUARTSETPROTO _IOW('U', 200, int) | 561 | #define HCIUARTSETPROTO _IOW('U', 200, int) |
582 | #define HCIUARTGETPROTO _IOR('U', 201, int) | 562 | #define HCIUARTGETPROTO _IOR('U', 201, int) |
@@ -1265,8 +1245,6 @@ COMPATIBLE_IOCTL(OSS_GETVERSION) | |||
1265 | /* Raw devices */ | 1245 | /* Raw devices */ |
1266 | COMPATIBLE_IOCTL(RAW_SETBIND) | 1246 | COMPATIBLE_IOCTL(RAW_SETBIND) |
1267 | COMPATIBLE_IOCTL(RAW_GETBIND) | 1247 | COMPATIBLE_IOCTL(RAW_GETBIND) |
1268 | /* SMB ioctls which do not need any translations */ | ||
1269 | COMPATIBLE_IOCTL(SMB_IOC_NEWCONN) | ||
1270 | /* Watchdog */ | 1248 | /* Watchdog */ |
1271 | COMPATIBLE_IOCTL(WDIOC_GETSUPPORT) | 1249 | COMPATIBLE_IOCTL(WDIOC_GETSUPPORT) |
1272 | COMPATIBLE_IOCTL(WDIOC_GETSTATUS) | 1250 | COMPATIBLE_IOCTL(WDIOC_GETSTATUS) |
@@ -1528,10 +1506,6 @@ static long do_ioctl_trans(int fd, unsigned int cmd, | |||
1528 | case RAW_GETBIND: | 1506 | case RAW_GETBIND: |
1529 | return raw_ioctl(fd, cmd, argp); | 1507 | return raw_ioctl(fd, cmd, argp); |
1530 | #endif | 1508 | #endif |
1531 | /* One SMB ioctl needs translations. */ | ||
1532 | #define SMB_IOC_GETMOUNTUID_32 _IOR('u', 1, compat_uid_t) | ||
1533 | case SMB_IOC_GETMOUNTUID_32: | ||
1534 | return do_smb_getmountuid(fd, cmd, argp); | ||
1535 | /* Serial */ | 1509 | /* Serial */ |
1536 | case TIOCGSERIAL: | 1510 | case TIOCGSERIAL: |
1537 | case TIOCSSERIAL: | 1511 | case TIOCSSERIAL: |
diff --git a/fs/smbfs/Kconfig b/fs/smbfs/Kconfig deleted file mode 100644 index e668127c8b2e..000000000000 --- a/fs/smbfs/Kconfig +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | config SMB_FS | ||
2 | tristate "SMB file system support (OBSOLETE, please use CIFS)" | ||
3 | depends on INET | ||
4 | select NLS | ||
5 | help | ||
6 | SMB (Server Message Block) is the protocol Windows for Workgroups | ||
7 | (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share | ||
8 | files and printers over local networks. Saying Y here allows you to | ||
9 | mount their file systems (often called "shares" in this context) and | ||
10 | access them just like any other Unix directory. Currently, this | ||
11 | works only if the Windows machines use TCP/IP as the underlying | ||
12 | transport protocol, and not NetBEUI. For details, read | ||
13 | <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO, | ||
14 | available from <http://www.tldp.org/docs.html#howto>. | ||
15 | |||
16 | Note: if you just want your box to act as an SMB *server* and make | ||
17 | files and printing services available to Windows clients (which need | ||
18 | to have a TCP/IP stack), you don't need to say Y here; you can use | ||
19 | the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>) | ||
20 | for that. | ||
21 | |||
22 | General information about how to connect Linux, Windows machines and | ||
23 | Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>. | ||
24 | |||
25 | To compile the SMB support as a module, choose M here: | ||
26 | the module will be called smbfs. Most people say N, however. | ||
27 | |||
28 | config SMB_NLS_DEFAULT | ||
29 | bool "Use a default NLS" | ||
30 | depends on SMB_FS | ||
31 | help | ||
32 | Enabling this will make smbfs use nls translations by default. You | ||
33 | need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls | ||
34 | settings and you need to give the default nls for the SMB server as | ||
35 | CONFIG_SMB_NLS_REMOTE. | ||
36 | |||
37 | The nls settings can be changed at mount time, if your smbmount | ||
38 | supports that, using the codepage and iocharset parameters. | ||
39 | |||
40 | smbmount from samba 2.2.0 or later supports this. | ||
41 | |||
42 | config SMB_NLS_REMOTE | ||
43 | string "Default Remote NLS Option" | ||
44 | depends on SMB_NLS_DEFAULT | ||
45 | default "cp437" | ||
46 | help | ||
47 | This setting allows you to specify a default value for which | ||
48 | codepage the server uses. If this field is left blank no | ||
49 | translations will be done by default. The local codepage/charset | ||
50 | default to CONFIG_NLS_DEFAULT. | ||
51 | |||
52 | The nls settings can be changed at mount time, if your smbmount | ||
53 | supports that, using the codepage and iocharset parameters. | ||
54 | |||
55 | smbmount from samba 2.2.0 or later supports this. | ||
diff --git a/fs/smbfs/Makefile b/fs/smbfs/Makefile deleted file mode 100644 index 4faf8c4722c3..000000000000 --- a/fs/smbfs/Makefile +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for the linux smb-filesystem routines. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_SMB_FS) += smbfs.o | ||
6 | |||
7 | smbfs-objs := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o \ | ||
8 | symlink.o smbiod.o request.o | ||
9 | |||
10 | # If you want debugging output, you may add these flags to the EXTRA_CFLAGS | ||
11 | # SMBFS_PARANOIA should normally be enabled. | ||
12 | |||
13 | EXTRA_CFLAGS += -DSMBFS_PARANOIA | ||
14 | #EXTRA_CFLAGS += -DSMBFS_DEBUG | ||
15 | #EXTRA_CFLAGS += -DSMBFS_DEBUG_VERBOSE | ||
16 | #EXTRA_CFLAGS += -DDEBUG_SMB_TIMESTAMP | ||
17 | #EXTRA_CFLAGS += -Werror | ||
18 | |||
diff --git a/fs/smbfs/cache.c b/fs/smbfs/cache.c deleted file mode 100644 index 8c177eb7e344..000000000000 --- a/fs/smbfs/cache.c +++ /dev/null | |||
@@ -1,208 +0,0 @@ | |||
1 | /* | ||
2 | * cache.c | ||
3 | * | ||
4 | * Copyright (C) 1997 by Bill Hawes | ||
5 | * | ||
6 | * Routines to support directory cacheing using the page cache. | ||
7 | * This cache code is almost directly taken from ncpfs. | ||
8 | * | ||
9 | * Please add a note about your changes to smbfs in the ChangeLog file. | ||
10 | */ | ||
11 | |||
12 | #include <linux/time.h> | ||
13 | #include <linux/errno.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/mm.h> | ||
16 | #include <linux/smb_fs.h> | ||
17 | #include <linux/pagemap.h> | ||
18 | #include <linux/net.h> | ||
19 | |||
20 | #include <asm/page.h> | ||
21 | |||
22 | #include "smb_debug.h" | ||
23 | #include "proto.h" | ||
24 | |||
25 | /* | ||
26 | * Force the next attempt to use the cache to be a timeout. | ||
27 | * If we can't find the page that's fine, it will cause a refresh. | ||
28 | */ | ||
29 | void | ||
30 | smb_invalid_dir_cache(struct inode * dir) | ||
31 | { | ||
32 | struct smb_sb_info *server = server_from_inode(dir); | ||
33 | union smb_dir_cache *cache = NULL; | ||
34 | struct page *page = NULL; | ||
35 | |||
36 | page = grab_cache_page(&dir->i_data, 0); | ||
37 | if (!page) | ||
38 | goto out; | ||
39 | |||
40 | if (!PageUptodate(page)) | ||
41 | goto out_unlock; | ||
42 | |||
43 | cache = kmap(page); | ||
44 | cache->head.time = jiffies - SMB_MAX_AGE(server); | ||
45 | |||
46 | kunmap(page); | ||
47 | SetPageUptodate(page); | ||
48 | out_unlock: | ||
49 | unlock_page(page); | ||
50 | page_cache_release(page); | ||
51 | out: | ||
52 | return; | ||
53 | } | ||
54 | |||
55 | /* | ||
56 | * Mark all dentries for 'parent' as invalid, forcing them to be re-read | ||
57 | */ | ||
58 | void | ||
59 | smb_invalidate_dircache_entries(struct dentry *parent) | ||
60 | { | ||
61 | struct smb_sb_info *server = server_from_dentry(parent); | ||
62 | struct list_head *next; | ||
63 | struct dentry *dentry; | ||
64 | |||
65 | spin_lock(&dcache_lock); | ||
66 | next = parent->d_subdirs.next; | ||
67 | while (next != &parent->d_subdirs) { | ||
68 | dentry = list_entry(next, struct dentry, d_u.d_child); | ||
69 | dentry->d_fsdata = NULL; | ||
70 | smb_age_dentry(server, dentry); | ||
71 | next = next->next; | ||
72 | } | ||
73 | spin_unlock(&dcache_lock); | ||
74 | } | ||
75 | |||
76 | /* | ||
77 | * dget, but require that fpos and parent matches what the dentry contains. | ||
78 | * dentry is not known to be a valid pointer at entry. | ||
79 | */ | ||
80 | struct dentry * | ||
81 | smb_dget_fpos(struct dentry *dentry, struct dentry *parent, unsigned long fpos) | ||
82 | { | ||
83 | struct dentry *dent = dentry; | ||
84 | struct list_head *next; | ||
85 | |||
86 | if (d_validate(dent, parent)) { | ||
87 | if (dent->d_name.len <= SMB_MAXNAMELEN && | ||
88 | (unsigned long)dent->d_fsdata == fpos) { | ||
89 | if (!dent->d_inode) { | ||
90 | dput(dent); | ||
91 | dent = NULL; | ||
92 | } | ||
93 | return dent; | ||
94 | } | ||
95 | dput(dent); | ||
96 | } | ||
97 | |||
98 | /* If a pointer is invalid, we search the dentry. */ | ||
99 | spin_lock(&dcache_lock); | ||
100 | next = parent->d_subdirs.next; | ||
101 | while (next != &parent->d_subdirs) { | ||
102 | dent = list_entry(next, struct dentry, d_u.d_child); | ||
103 | if ((unsigned long)dent->d_fsdata == fpos) { | ||
104 | if (dent->d_inode) | ||
105 | dget_locked(dent); | ||
106 | else | ||
107 | dent = NULL; | ||
108 | goto out_unlock; | ||
109 | } | ||
110 | next = next->next; | ||
111 | } | ||
112 | dent = NULL; | ||
113 | out_unlock: | ||
114 | spin_unlock(&dcache_lock); | ||
115 | return dent; | ||
116 | } | ||
117 | |||
118 | |||
119 | /* | ||
120 | * Create dentry/inode for this file and add it to the dircache. | ||
121 | */ | ||
122 | int | ||
123 | smb_fill_cache(struct file *filp, void *dirent, filldir_t filldir, | ||
124 | struct smb_cache_control *ctrl, struct qstr *qname, | ||
125 | struct smb_fattr *entry) | ||
126 | { | ||
127 | struct dentry *newdent, *dentry = filp->f_path.dentry; | ||
128 | struct inode *newino, *inode = dentry->d_inode; | ||
129 | struct smb_cache_control ctl = *ctrl; | ||
130 | int valid = 0; | ||
131 | int hashed = 0; | ||
132 | ino_t ino = 0; | ||
133 | |||
134 | qname->hash = full_name_hash(qname->name, qname->len); | ||
135 | |||
136 | if (dentry->d_op && dentry->d_op->d_hash) | ||
137 | if (dentry->d_op->d_hash(dentry, qname) != 0) | ||
138 | goto end_advance; | ||
139 | |||
140 | newdent = d_lookup(dentry, qname); | ||
141 | |||
142 | if (!newdent) { | ||
143 | newdent = d_alloc(dentry, qname); | ||
144 | if (!newdent) | ||
145 | goto end_advance; | ||
146 | } else { | ||
147 | hashed = 1; | ||
148 | memcpy((char *) newdent->d_name.name, qname->name, | ||
149 | newdent->d_name.len); | ||
150 | } | ||
151 | |||
152 | if (!newdent->d_inode) { | ||
153 | smb_renew_times(newdent); | ||
154 | entry->f_ino = iunique(inode->i_sb, 2); | ||
155 | newino = smb_iget(inode->i_sb, entry); | ||
156 | if (newino) { | ||
157 | smb_new_dentry(newdent); | ||
158 | d_instantiate(newdent, newino); | ||
159 | if (!hashed) | ||
160 | d_rehash(newdent); | ||
161 | } | ||
162 | } else | ||
163 | smb_set_inode_attr(newdent->d_inode, entry); | ||
164 | |||
165 | if (newdent->d_inode) { | ||
166 | ino = newdent->d_inode->i_ino; | ||
167 | newdent->d_fsdata = (void *) ctl.fpos; | ||
168 | smb_new_dentry(newdent); | ||
169 | } | ||
170 | |||
171 | if (ctl.idx >= SMB_DIRCACHE_SIZE) { | ||
172 | if (ctl.page) { | ||
173 | kunmap(ctl.page); | ||
174 | SetPageUptodate(ctl.page); | ||
175 | unlock_page(ctl.page); | ||
176 | page_cache_release(ctl.page); | ||
177 | } | ||
178 | ctl.cache = NULL; | ||
179 | ctl.idx -= SMB_DIRCACHE_SIZE; | ||
180 | ctl.ofs += 1; | ||
181 | ctl.page = grab_cache_page(&inode->i_data, ctl.ofs); | ||
182 | if (ctl.page) | ||
183 | ctl.cache = kmap(ctl.page); | ||
184 | } | ||
185 | if (ctl.cache) { | ||
186 | ctl.cache->dentry[ctl.idx] = newdent; | ||
187 | valid = 1; | ||
188 | } | ||
189 | dput(newdent); | ||
190 | |||
191 | end_advance: | ||
192 | if (!valid) | ||
193 | ctl.valid = 0; | ||
194 | if (!ctl.filled && (ctl.fpos == filp->f_pos)) { | ||
195 | if (!ino) | ||
196 | ino = find_inode_number(dentry, qname); | ||
197 | if (!ino) | ||
198 | ino = iunique(inode->i_sb, 2); | ||
199 | ctl.filled = filldir(dirent, qname->name, qname->len, | ||
200 | filp->f_pos, ino, DT_UNKNOWN); | ||
201 | if (!ctl.filled) | ||
202 | filp->f_pos += 1; | ||
203 | } | ||
204 | ctl.fpos += 1; | ||
205 | ctl.idx += 1; | ||
206 | *ctrl = ctl; | ||
207 | return (ctl.valid || !ctl.filled); | ||
208 | } | ||
diff --git a/fs/smbfs/dir.c b/fs/smbfs/dir.c deleted file mode 100644 index 00a70cab1f36..000000000000 --- a/fs/smbfs/dir.c +++ /dev/null | |||
@@ -1,702 +0,0 @@ | |||
1 | /* | ||
2 | * dir.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/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> | ||
16 | #include <linux/sched.h> | ||
17 | |||
18 | #include <linux/smb_fs.h> | ||
19 | #include <linux/smb_mount.h> | ||
20 | #include <linux/smbno.h> | ||
21 | |||
22 | #include "smb_debug.h" | ||
23 | #include "proto.h" | ||
24 | |||
25 | static int smb_readdir(struct file *, void *, filldir_t); | ||
26 | static int smb_dir_open(struct inode *, struct file *); | ||
27 | |||
28 | static struct dentry *smb_lookup(struct inode *, struct dentry *, struct nameidata *); | ||
29 | static int smb_create(struct inode *, struct dentry *, int, struct nameidata *); | ||
30 | static int smb_mkdir(struct inode *, struct dentry *, int); | ||
31 | static int smb_rmdir(struct inode *, struct dentry *); | ||
32 | static int smb_unlink(struct inode *, struct dentry *); | ||
33 | static int smb_rename(struct inode *, struct dentry *, | ||
34 | struct inode *, struct dentry *); | ||
35 | static int smb_make_node(struct inode *,struct dentry *,int,dev_t); | ||
36 | static int smb_link(struct dentry *, struct inode *, struct dentry *); | ||
37 | |||
38 | const struct file_operations smb_dir_operations = | ||
39 | { | ||
40 | .llseek = generic_file_llseek, | ||
41 | .read = generic_read_dir, | ||
42 | .readdir = smb_readdir, | ||
43 | .unlocked_ioctl = smb_ioctl, | ||
44 | .open = smb_dir_open, | ||
45 | }; | ||
46 | |||
47 | const struct inode_operations smb_dir_inode_operations = | ||
48 | { | ||
49 | .create = smb_create, | ||
50 | .lookup = smb_lookup, | ||
51 | .unlink = smb_unlink, | ||
52 | .mkdir = smb_mkdir, | ||
53 | .rmdir = smb_rmdir, | ||
54 | .rename = smb_rename, | ||
55 | .getattr = smb_getattr, | ||
56 | .setattr = smb_notify_change, | ||
57 | }; | ||
58 | |||
59 | const struct inode_operations smb_dir_inode_operations_unix = | ||
60 | { | ||
61 | .create = smb_create, | ||
62 | .lookup = smb_lookup, | ||
63 | .unlink = smb_unlink, | ||
64 | .mkdir = smb_mkdir, | ||
65 | .rmdir = smb_rmdir, | ||
66 | .rename = smb_rename, | ||
67 | .getattr = smb_getattr, | ||
68 | .setattr = smb_notify_change, | ||
69 | .symlink = smb_symlink, | ||
70 | .mknod = smb_make_node, | ||
71 | .link = smb_link, | ||
72 | }; | ||
73 | |||
74 | /* | ||
75 | * Read a directory, using filldir to fill the dirent memory. | ||
76 | * smb_proc_readdir does the actual reading from the smb server. | ||
77 | * | ||
78 | * The cache code is almost directly taken from ncpfs | ||
79 | */ | ||
80 | static int | ||
81 | smb_readdir(struct file *filp, void *dirent, filldir_t filldir) | ||
82 | { | ||
83 | struct dentry *dentry = filp->f_path.dentry; | ||
84 | struct inode *dir = dentry->d_inode; | ||
85 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
86 | union smb_dir_cache *cache = NULL; | ||
87 | struct smb_cache_control ctl; | ||
88 | struct page *page = NULL; | ||
89 | int result; | ||
90 | |||
91 | ctl.page = NULL; | ||
92 | ctl.cache = NULL; | ||
93 | |||
94 | VERBOSE("reading %s/%s, f_pos=%d\n", | ||
95 | DENTRY_PATH(dentry), (int) filp->f_pos); | ||
96 | |||
97 | result = 0; | ||
98 | |||
99 | lock_kernel(); | ||
100 | |||
101 | switch ((unsigned int) filp->f_pos) { | ||
102 | case 0: | ||
103 | if (filldir(dirent, ".", 1, 0, dir->i_ino, DT_DIR) < 0) | ||
104 | goto out; | ||
105 | filp->f_pos = 1; | ||
106 | /* fallthrough */ | ||
107 | case 1: | ||
108 | if (filldir(dirent, "..", 2, 1, parent_ino(dentry), DT_DIR) < 0) | ||
109 | goto out; | ||
110 | filp->f_pos = 2; | ||
111 | } | ||
112 | |||
113 | /* | ||
114 | * Make sure our inode is up-to-date. | ||
115 | */ | ||
116 | result = smb_revalidate_inode(dentry); | ||
117 | if (result) | ||
118 | goto out; | ||
119 | |||
120 | |||
121 | page = grab_cache_page(&dir->i_data, 0); | ||
122 | if (!page) | ||
123 | goto read_really; | ||
124 | |||
125 | ctl.cache = cache = kmap(page); | ||
126 | ctl.head = cache->head; | ||
127 | |||
128 | if (!PageUptodate(page) || !ctl.head.eof) { | ||
129 | VERBOSE("%s/%s, page uptodate=%d, eof=%d\n", | ||
130 | DENTRY_PATH(dentry), PageUptodate(page),ctl.head.eof); | ||
131 | goto init_cache; | ||
132 | } | ||
133 | |||
134 | if (filp->f_pos == 2) { | ||
135 | if (jiffies - ctl.head.time >= SMB_MAX_AGE(server)) | ||
136 | goto init_cache; | ||
137 | |||
138 | /* | ||
139 | * N.B. ncpfs checks mtime of dentry too here, we don't. | ||
140 | * 1. common smb servers do not update mtime on dir changes | ||
141 | * 2. it requires an extra smb request | ||
142 | * (revalidate has the same timeout as ctl.head.time) | ||
143 | * | ||
144 | * Instead smbfs invalidates its own cache on local changes | ||
145 | * and remote changes are not seen until timeout. | ||
146 | */ | ||
147 | } | ||
148 | |||
149 | if (filp->f_pos > ctl.head.end) | ||
150 | goto finished; | ||
151 | |||
152 | ctl.fpos = filp->f_pos + (SMB_DIRCACHE_START - 2); | ||
153 | ctl.ofs = ctl.fpos / SMB_DIRCACHE_SIZE; | ||
154 | ctl.idx = ctl.fpos % SMB_DIRCACHE_SIZE; | ||
155 | |||
156 | for (;;) { | ||
157 | if (ctl.ofs != 0) { | ||
158 | ctl.page = find_lock_page(&dir->i_data, ctl.ofs); | ||
159 | if (!ctl.page) | ||
160 | goto invalid_cache; | ||
161 | ctl.cache = kmap(ctl.page); | ||
162 | if (!PageUptodate(ctl.page)) | ||
163 | goto invalid_cache; | ||
164 | } | ||
165 | while (ctl.idx < SMB_DIRCACHE_SIZE) { | ||
166 | struct dentry *dent; | ||
167 | int res; | ||
168 | |||
169 | dent = smb_dget_fpos(ctl.cache->dentry[ctl.idx], | ||
170 | dentry, filp->f_pos); | ||
171 | if (!dent) | ||
172 | goto invalid_cache; | ||
173 | |||
174 | res = filldir(dirent, dent->d_name.name, | ||
175 | dent->d_name.len, filp->f_pos, | ||
176 | dent->d_inode->i_ino, DT_UNKNOWN); | ||
177 | dput(dent); | ||
178 | if (res) | ||
179 | goto finished; | ||
180 | filp->f_pos += 1; | ||
181 | ctl.idx += 1; | ||
182 | if (filp->f_pos > ctl.head.end) | ||
183 | goto finished; | ||
184 | } | ||
185 | if (ctl.page) { | ||
186 | kunmap(ctl.page); | ||
187 | SetPageUptodate(ctl.page); | ||
188 | unlock_page(ctl.page); | ||
189 | page_cache_release(ctl.page); | ||
190 | ctl.page = NULL; | ||
191 | } | ||
192 | ctl.idx = 0; | ||
193 | ctl.ofs += 1; | ||
194 | } | ||
195 | invalid_cache: | ||
196 | if (ctl.page) { | ||
197 | kunmap(ctl.page); | ||
198 | unlock_page(ctl.page); | ||
199 | page_cache_release(ctl.page); | ||
200 | ctl.page = NULL; | ||
201 | } | ||
202 | ctl.cache = cache; | ||
203 | init_cache: | ||
204 | smb_invalidate_dircache_entries(dentry); | ||
205 | ctl.head.time = jiffies; | ||
206 | ctl.head.eof = 0; | ||
207 | ctl.fpos = 2; | ||
208 | ctl.ofs = 0; | ||
209 | ctl.idx = SMB_DIRCACHE_START; | ||
210 | ctl.filled = 0; | ||
211 | ctl.valid = 1; | ||
212 | read_really: | ||
213 | result = server->ops->readdir(filp, dirent, filldir, &ctl); | ||
214 | if (result == -ERESTARTSYS && page) | ||
215 | ClearPageUptodate(page); | ||
216 | if (ctl.idx == -1) | ||
217 | goto invalid_cache; /* retry */ | ||
218 | ctl.head.end = ctl.fpos - 1; | ||
219 | ctl.head.eof = ctl.valid; | ||
220 | finished: | ||
221 | if (page) { | ||
222 | cache->head = ctl.head; | ||
223 | kunmap(page); | ||
224 | if (result != -ERESTARTSYS) | ||
225 | SetPageUptodate(page); | ||
226 | unlock_page(page); | ||
227 | page_cache_release(page); | ||
228 | } | ||
229 | if (ctl.page) { | ||
230 | kunmap(ctl.page); | ||
231 | SetPageUptodate(ctl.page); | ||
232 | unlock_page(ctl.page); | ||
233 | page_cache_release(ctl.page); | ||
234 | } | ||
235 | out: | ||
236 | unlock_kernel(); | ||
237 | return result; | ||
238 | } | ||
239 | |||
240 | static int | ||
241 | smb_dir_open(struct inode *dir, struct file *file) | ||
242 | { | ||
243 | struct dentry *dentry = file->f_path.dentry; | ||
244 | struct smb_sb_info *server; | ||
245 | int error = 0; | ||
246 | |||
247 | VERBOSE("(%s/%s)\n", dentry->d_parent->d_name.name, | ||
248 | file->f_path.dentry->d_name.name); | ||
249 | |||
250 | /* | ||
251 | * Directory timestamps in the core protocol aren't updated | ||
252 | * when a file is added, so we give them a very short TTL. | ||
253 | */ | ||
254 | lock_kernel(); | ||
255 | server = server_from_dentry(dentry); | ||
256 | if (server->opt.protocol < SMB_PROTOCOL_LANMAN2) { | ||
257 | unsigned long age = jiffies - SMB_I(dir)->oldmtime; | ||
258 | if (age > 2*HZ) | ||
259 | smb_invalid_dir_cache(dir); | ||
260 | } | ||
261 | |||
262 | /* | ||
263 | * Note: in order to allow the smbmount process to open the | ||
264 | * mount point, we only revalidate if the connection is valid or | ||
265 | * if the process is trying to access something other than the root. | ||
266 | */ | ||
267 | if (server->state == CONN_VALID || !IS_ROOT(dentry)) | ||
268 | error = smb_revalidate_inode(dentry); | ||
269 | unlock_kernel(); | ||
270 | return error; | ||
271 | } | ||
272 | |||
273 | /* | ||
274 | * Dentry operations routines | ||
275 | */ | ||
276 | static int smb_lookup_validate(struct dentry *, struct nameidata *); | ||
277 | static int smb_hash_dentry(struct dentry *, struct qstr *); | ||
278 | static int smb_compare_dentry(struct dentry *, struct qstr *, struct qstr *); | ||
279 | static int smb_delete_dentry(struct dentry *); | ||
280 | |||
281 | static const struct dentry_operations smbfs_dentry_operations = | ||
282 | { | ||
283 | .d_revalidate = smb_lookup_validate, | ||
284 | .d_hash = smb_hash_dentry, | ||
285 | .d_compare = smb_compare_dentry, | ||
286 | .d_delete = smb_delete_dentry, | ||
287 | }; | ||
288 | |||
289 | static const struct dentry_operations smbfs_dentry_operations_case = | ||
290 | { | ||
291 | .d_revalidate = smb_lookup_validate, | ||
292 | .d_delete = smb_delete_dentry, | ||
293 | }; | ||
294 | |||
295 | |||
296 | /* | ||
297 | * This is the callback when the dcache has a lookup hit. | ||
298 | */ | ||
299 | static int | ||
300 | smb_lookup_validate(struct dentry * dentry, struct nameidata *nd) | ||
301 | { | ||
302 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
303 | struct inode * inode = dentry->d_inode; | ||
304 | unsigned long age = jiffies - dentry->d_time; | ||
305 | int valid; | ||
306 | |||
307 | /* | ||
308 | * The default validation is based on dentry age: | ||
309 | * we believe in dentries for a few seconds. (But each | ||
310 | * successful server lookup renews the timestamp.) | ||
311 | */ | ||
312 | valid = (age <= SMB_MAX_AGE(server)); | ||
313 | #ifdef SMBFS_DEBUG_VERBOSE | ||
314 | if (!valid) | ||
315 | VERBOSE("%s/%s not valid, age=%lu\n", | ||
316 | DENTRY_PATH(dentry), age); | ||
317 | #endif | ||
318 | |||
319 | if (inode) { | ||
320 | lock_kernel(); | ||
321 | if (is_bad_inode(inode)) { | ||
322 | PARANOIA("%s/%s has dud inode\n", DENTRY_PATH(dentry)); | ||
323 | valid = 0; | ||
324 | } else if (!valid) | ||
325 | valid = (smb_revalidate_inode(dentry) == 0); | ||
326 | unlock_kernel(); | ||
327 | } else { | ||
328 | /* | ||
329 | * What should we do for negative dentries? | ||
330 | */ | ||
331 | } | ||
332 | return valid; | ||
333 | } | ||
334 | |||
335 | static int | ||
336 | smb_hash_dentry(struct dentry *dir, struct qstr *this) | ||
337 | { | ||
338 | unsigned long hash; | ||
339 | int i; | ||
340 | |||
341 | hash = init_name_hash(); | ||
342 | for (i=0; i < this->len ; i++) | ||
343 | hash = partial_name_hash(tolower(this->name[i]), hash); | ||
344 | this->hash = end_name_hash(hash); | ||
345 | |||
346 | return 0; | ||
347 | } | ||
348 | |||
349 | static int | ||
350 | smb_compare_dentry(struct dentry *dir, struct qstr *a, struct qstr *b) | ||
351 | { | ||
352 | int i, result = 1; | ||
353 | |||
354 | if (a->len != b->len) | ||
355 | goto out; | ||
356 | for (i=0; i < a->len; i++) { | ||
357 | if (tolower(a->name[i]) != tolower(b->name[i])) | ||
358 | goto out; | ||
359 | } | ||
360 | result = 0; | ||
361 | out: | ||
362 | return result; | ||
363 | } | ||
364 | |||
365 | /* | ||
366 | * This is the callback from dput() when d_count is going to 0. | ||
367 | * We use this to unhash dentries with bad inodes. | ||
368 | */ | ||
369 | static int | ||
370 | smb_delete_dentry(struct dentry * dentry) | ||
371 | { | ||
372 | if (dentry->d_inode) { | ||
373 | if (is_bad_inode(dentry->d_inode)) { | ||
374 | PARANOIA("bad inode, unhashing %s/%s\n", | ||
375 | DENTRY_PATH(dentry)); | ||
376 | return 1; | ||
377 | } | ||
378 | } else { | ||
379 | /* N.B. Unhash negative dentries? */ | ||
380 | } | ||
381 | return 0; | ||
382 | } | ||
383 | |||
384 | /* | ||
385 | * Initialize a new dentry | ||
386 | */ | ||
387 | void | ||
388 | smb_new_dentry(struct dentry *dentry) | ||
389 | { | ||
390 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
391 | |||
392 | if (server->mnt->flags & SMB_MOUNT_CASE) | ||
393 | dentry->d_op = &smbfs_dentry_operations_case; | ||
394 | else | ||
395 | dentry->d_op = &smbfs_dentry_operations; | ||
396 | dentry->d_time = jiffies; | ||
397 | } | ||
398 | |||
399 | |||
400 | /* | ||
401 | * Whenever a lookup succeeds, we know the parent directories | ||
402 | * are all valid, so we want to update the dentry timestamps. | ||
403 | * N.B. Move this to dcache? | ||
404 | */ | ||
405 | void | ||
406 | smb_renew_times(struct dentry * dentry) | ||
407 | { | ||
408 | dget(dentry); | ||
409 | spin_lock(&dentry->d_lock); | ||
410 | for (;;) { | ||
411 | struct dentry *parent; | ||
412 | |||
413 | dentry->d_time = jiffies; | ||
414 | if (IS_ROOT(dentry)) | ||
415 | break; | ||
416 | parent = dentry->d_parent; | ||
417 | dget(parent); | ||
418 | spin_unlock(&dentry->d_lock); | ||
419 | dput(dentry); | ||
420 | dentry = parent; | ||
421 | spin_lock(&dentry->d_lock); | ||
422 | } | ||
423 | spin_unlock(&dentry->d_lock); | ||
424 | dput(dentry); | ||
425 | } | ||
426 | |||
427 | static struct dentry * | ||
428 | smb_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) | ||
429 | { | ||
430 | struct smb_fattr finfo; | ||
431 | struct inode *inode; | ||
432 | int error; | ||
433 | struct smb_sb_info *server; | ||
434 | |||
435 | error = -ENAMETOOLONG; | ||
436 | if (dentry->d_name.len > SMB_MAXNAMELEN) | ||
437 | goto out; | ||
438 | |||
439 | /* Do not allow lookup of names with backslashes in */ | ||
440 | error = -EINVAL; | ||
441 | if (memchr(dentry->d_name.name, '\\', dentry->d_name.len)) | ||
442 | goto out; | ||
443 | |||
444 | lock_kernel(); | ||
445 | error = smb_proc_getattr(dentry, &finfo); | ||
446 | #ifdef SMBFS_PARANOIA | ||
447 | if (error && error != -ENOENT) | ||
448 | PARANOIA("find %s/%s failed, error=%d\n", | ||
449 | DENTRY_PATH(dentry), error); | ||
450 | #endif | ||
451 | |||
452 | inode = NULL; | ||
453 | if (error == -ENOENT) | ||
454 | goto add_entry; | ||
455 | if (!error) { | ||
456 | error = -EACCES; | ||
457 | finfo.f_ino = iunique(dentry->d_sb, 2); | ||
458 | inode = smb_iget(dir->i_sb, &finfo); | ||
459 | if (inode) { | ||
460 | add_entry: | ||
461 | server = server_from_dentry(dentry); | ||
462 | if (server->mnt->flags & SMB_MOUNT_CASE) | ||
463 | dentry->d_op = &smbfs_dentry_operations_case; | ||
464 | else | ||
465 | dentry->d_op = &smbfs_dentry_operations; | ||
466 | |||
467 | d_add(dentry, inode); | ||
468 | smb_renew_times(dentry); | ||
469 | error = 0; | ||
470 | } | ||
471 | } | ||
472 | unlock_kernel(); | ||
473 | out: | ||
474 | return ERR_PTR(error); | ||
475 | } | ||
476 | |||
477 | /* | ||
478 | * This code is common to all routines creating a new inode. | ||
479 | */ | ||
480 | static int | ||
481 | smb_instantiate(struct dentry *dentry, __u16 fileid, int have_id) | ||
482 | { | ||
483 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
484 | struct inode *inode; | ||
485 | int error; | ||
486 | struct smb_fattr fattr; | ||
487 | |||
488 | VERBOSE("file %s/%s, fileid=%u\n", DENTRY_PATH(dentry), fileid); | ||
489 | |||
490 | error = smb_proc_getattr(dentry, &fattr); | ||
491 | if (error) | ||
492 | goto out_close; | ||
493 | |||
494 | smb_renew_times(dentry); | ||
495 | fattr.f_ino = iunique(dentry->d_sb, 2); | ||
496 | inode = smb_iget(dentry->d_sb, &fattr); | ||
497 | if (!inode) | ||
498 | goto out_no_inode; | ||
499 | |||
500 | if (have_id) { | ||
501 | struct smb_inode_info *ei = SMB_I(inode); | ||
502 | ei->fileid = fileid; | ||
503 | ei->access = SMB_O_RDWR; | ||
504 | ei->open = server->generation; | ||
505 | } | ||
506 | d_instantiate(dentry, inode); | ||
507 | out: | ||
508 | return error; | ||
509 | |||
510 | out_no_inode: | ||
511 | error = -EACCES; | ||
512 | out_close: | ||
513 | if (have_id) { | ||
514 | PARANOIA("%s/%s failed, error=%d, closing %u\n", | ||
515 | DENTRY_PATH(dentry), error, fileid); | ||
516 | smb_close_fileid(dentry, fileid); | ||
517 | } | ||
518 | goto out; | ||
519 | } | ||
520 | |||
521 | /* N.B. How should the mode argument be used? */ | ||
522 | static int | ||
523 | smb_create(struct inode *dir, struct dentry *dentry, int mode, | ||
524 | struct nameidata *nd) | ||
525 | { | ||
526 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
527 | __u16 fileid; | ||
528 | int error; | ||
529 | struct iattr attr; | ||
530 | |||
531 | VERBOSE("creating %s/%s, mode=%d\n", DENTRY_PATH(dentry), mode); | ||
532 | |||
533 | lock_kernel(); | ||
534 | smb_invalid_dir_cache(dir); | ||
535 | error = smb_proc_create(dentry, 0, get_seconds(), &fileid); | ||
536 | if (!error) { | ||
537 | if (server->opt.capabilities & SMB_CAP_UNIX) { | ||
538 | /* Set attributes for new file */ | ||
539 | attr.ia_valid = ATTR_MODE; | ||
540 | attr.ia_mode = mode; | ||
541 | error = smb_proc_setattr_unix(dentry, &attr, 0, 0); | ||
542 | } | ||
543 | error = smb_instantiate(dentry, fileid, 1); | ||
544 | } else { | ||
545 | PARANOIA("%s/%s failed, error=%d\n", | ||
546 | DENTRY_PATH(dentry), error); | ||
547 | } | ||
548 | unlock_kernel(); | ||
549 | return error; | ||
550 | } | ||
551 | |||
552 | /* N.B. How should the mode argument be used? */ | ||
553 | static int | ||
554 | smb_mkdir(struct inode *dir, struct dentry *dentry, int mode) | ||
555 | { | ||
556 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
557 | int error; | ||
558 | struct iattr attr; | ||
559 | |||
560 | lock_kernel(); | ||
561 | smb_invalid_dir_cache(dir); | ||
562 | error = smb_proc_mkdir(dentry); | ||
563 | if (!error) { | ||
564 | if (server->opt.capabilities & SMB_CAP_UNIX) { | ||
565 | /* Set attributes for new directory */ | ||
566 | attr.ia_valid = ATTR_MODE; | ||
567 | attr.ia_mode = mode; | ||
568 | error = smb_proc_setattr_unix(dentry, &attr, 0, 0); | ||
569 | } | ||
570 | error = smb_instantiate(dentry, 0, 0); | ||
571 | } | ||
572 | unlock_kernel(); | ||
573 | return error; | ||
574 | } | ||
575 | |||
576 | static int | ||
577 | smb_rmdir(struct inode *dir, struct dentry *dentry) | ||
578 | { | ||
579 | struct inode *inode = dentry->d_inode; | ||
580 | int error; | ||
581 | |||
582 | /* | ||
583 | * Close the directory if it's open. | ||
584 | */ | ||
585 | lock_kernel(); | ||
586 | smb_close(inode); | ||
587 | |||
588 | /* | ||
589 | * Check that nobody else is using the directory.. | ||
590 | */ | ||
591 | error = -EBUSY; | ||
592 | if (!d_unhashed(dentry)) | ||
593 | goto out; | ||
594 | |||
595 | smb_invalid_dir_cache(dir); | ||
596 | error = smb_proc_rmdir(dentry); | ||
597 | |||
598 | out: | ||
599 | unlock_kernel(); | ||
600 | return error; | ||
601 | } | ||
602 | |||
603 | static int | ||
604 | smb_unlink(struct inode *dir, struct dentry *dentry) | ||
605 | { | ||
606 | int error; | ||
607 | |||
608 | /* | ||
609 | * Close the file if it's open. | ||
610 | */ | ||
611 | lock_kernel(); | ||
612 | smb_close(dentry->d_inode); | ||
613 | |||
614 | smb_invalid_dir_cache(dir); | ||
615 | error = smb_proc_unlink(dentry); | ||
616 | if (!error) | ||
617 | smb_renew_times(dentry); | ||
618 | unlock_kernel(); | ||
619 | return error; | ||
620 | } | ||
621 | |||
622 | static int | ||
623 | smb_rename(struct inode *old_dir, struct dentry *old_dentry, | ||
624 | struct inode *new_dir, struct dentry *new_dentry) | ||
625 | { | ||
626 | int error; | ||
627 | |||
628 | /* | ||
629 | * Close any open files, and check whether to delete the | ||
630 | * target before attempting the rename. | ||
631 | */ | ||
632 | lock_kernel(); | ||
633 | if (old_dentry->d_inode) | ||
634 | smb_close(old_dentry->d_inode); | ||
635 | if (new_dentry->d_inode) { | ||
636 | smb_close(new_dentry->d_inode); | ||
637 | error = smb_proc_unlink(new_dentry); | ||
638 | if (error) { | ||
639 | VERBOSE("unlink %s/%s, error=%d\n", | ||
640 | DENTRY_PATH(new_dentry), error); | ||
641 | goto out; | ||
642 | } | ||
643 | /* FIXME */ | ||
644 | d_delete(new_dentry); | ||
645 | } | ||
646 | |||
647 | smb_invalid_dir_cache(old_dir); | ||
648 | smb_invalid_dir_cache(new_dir); | ||
649 | error = smb_proc_mv(old_dentry, new_dentry); | ||
650 | if (!error) { | ||
651 | smb_renew_times(old_dentry); | ||
652 | smb_renew_times(new_dentry); | ||
653 | } | ||
654 | out: | ||
655 | unlock_kernel(); | ||
656 | return error; | ||
657 | } | ||
658 | |||
659 | /* | ||
660 | * FIXME: samba servers won't let you create device nodes unless uid/gid | ||
661 | * matches the connection credentials (and we don't know which those are ...) | ||
662 | */ | ||
663 | static int | ||
664 | smb_make_node(struct inode *dir, struct dentry *dentry, int mode, dev_t dev) | ||
665 | { | ||
666 | int error; | ||
667 | struct iattr attr; | ||
668 | |||
669 | attr.ia_valid = ATTR_MODE | ATTR_UID | ATTR_GID; | ||
670 | attr.ia_mode = mode; | ||
671 | current_euid_egid(&attr.ia_uid, &attr.ia_gid); | ||
672 | |||
673 | if (!new_valid_dev(dev)) | ||
674 | return -EINVAL; | ||
675 | |||
676 | smb_invalid_dir_cache(dir); | ||
677 | error = smb_proc_setattr_unix(dentry, &attr, MAJOR(dev), MINOR(dev)); | ||
678 | if (!error) { | ||
679 | error = smb_instantiate(dentry, 0, 0); | ||
680 | } | ||
681 | return error; | ||
682 | } | ||
683 | |||
684 | /* | ||
685 | * dentry = existing file | ||
686 | * new_dentry = new file | ||
687 | */ | ||
688 | static int | ||
689 | smb_link(struct dentry *dentry, struct inode *dir, struct dentry *new_dentry) | ||
690 | { | ||
691 | int error; | ||
692 | |||
693 | DEBUG1("smb_link old=%s/%s new=%s/%s\n", | ||
694 | DENTRY_PATH(dentry), DENTRY_PATH(new_dentry)); | ||
695 | smb_invalid_dir_cache(dir); | ||
696 | error = smb_proc_link(server_from_dentry(dentry), dentry, new_dentry); | ||
697 | if (!error) { | ||
698 | smb_renew_times(dentry); | ||
699 | error = smb_instantiate(new_dentry, 0, 0); | ||
700 | } | ||
701 | return error; | ||
702 | } | ||
diff --git a/fs/smbfs/file.c b/fs/smbfs/file.c deleted file mode 100644 index 8e187a0f94bb..000000000000 --- a/fs/smbfs/file.c +++ /dev/null | |||
@@ -1,454 +0,0 @@ | |||
1 | /* | ||
2 | * file.c | ||
3 | * | ||
4 | * Copyright (C) 1995, 1996, 1997 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/time.h> | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/fcntl.h> | ||
14 | #include <linux/stat.h> | ||
15 | #include <linux/mm.h> | ||
16 | #include <linux/pagemap.h> | ||
17 | #include <linux/smp_lock.h> | ||
18 | #include <linux/net.h> | ||
19 | #include <linux/aio.h> | ||
20 | |||
21 | #include <asm/uaccess.h> | ||
22 | #include <asm/system.h> | ||
23 | |||
24 | #include <linux/smbno.h> | ||
25 | #include <linux/smb_fs.h> | ||
26 | |||
27 | #include "smb_debug.h" | ||
28 | #include "proto.h" | ||
29 | |||
30 | static int | ||
31 | smb_fsync(struct file *file, int datasync) | ||
32 | { | ||
33 | struct dentry *dentry = file->f_path.dentry; | ||
34 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
35 | int result; | ||
36 | |||
37 | VERBOSE("sync file %s/%s\n", DENTRY_PATH(dentry)); | ||
38 | |||
39 | /* | ||
40 | * The VFS will writepage() all dirty pages for us, but we | ||
41 | * should send a SMBflush to the server, letting it know that | ||
42 | * we want things synchronized with actual storage. | ||
43 | * | ||
44 | * Note: this function requires all pages to have been written already | ||
45 | * (should be ok with writepage_sync) | ||
46 | */ | ||
47 | result = smb_proc_flush(server, SMB_I(dentry->d_inode)->fileid); | ||
48 | return result; | ||
49 | } | ||
50 | |||
51 | /* | ||
52 | * Read a page synchronously. | ||
53 | */ | ||
54 | static int | ||
55 | smb_readpage_sync(struct dentry *dentry, struct page *page) | ||
56 | { | ||
57 | char *buffer = kmap(page); | ||
58 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; | ||
59 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
60 | unsigned int rsize = smb_get_rsize(server); | ||
61 | int count = PAGE_SIZE; | ||
62 | int result; | ||
63 | |||
64 | VERBOSE("file %s/%s, count=%d@%Ld, rsize=%d\n", | ||
65 | DENTRY_PATH(dentry), count, offset, rsize); | ||
66 | |||
67 | result = smb_open(dentry, SMB_O_RDONLY); | ||
68 | if (result < 0) | ||
69 | goto io_error; | ||
70 | |||
71 | do { | ||
72 | if (count < rsize) | ||
73 | rsize = count; | ||
74 | |||
75 | result = server->ops->read(dentry->d_inode,offset,rsize,buffer); | ||
76 | if (result < 0) | ||
77 | goto io_error; | ||
78 | |||
79 | count -= result; | ||
80 | offset += result; | ||
81 | buffer += result; | ||
82 | dentry->d_inode->i_atime = | ||
83 | current_fs_time(dentry->d_inode->i_sb); | ||
84 | if (result < rsize) | ||
85 | break; | ||
86 | } while (count); | ||
87 | |||
88 | memset(buffer, 0, count); | ||
89 | flush_dcache_page(page); | ||
90 | SetPageUptodate(page); | ||
91 | result = 0; | ||
92 | |||
93 | io_error: | ||
94 | kunmap(page); | ||
95 | unlock_page(page); | ||
96 | return result; | ||
97 | } | ||
98 | |||
99 | /* | ||
100 | * We are called with the page locked and we unlock it when done. | ||
101 | */ | ||
102 | static int | ||
103 | smb_readpage(struct file *file, struct page *page) | ||
104 | { | ||
105 | int error; | ||
106 | struct dentry *dentry = file->f_path.dentry; | ||
107 | |||
108 | page_cache_get(page); | ||
109 | error = smb_readpage_sync(dentry, page); | ||
110 | page_cache_release(page); | ||
111 | return error; | ||
112 | } | ||
113 | |||
114 | /* | ||
115 | * Write a page synchronously. | ||
116 | * Offset is the data offset within the page. | ||
117 | */ | ||
118 | static int | ||
119 | smb_writepage_sync(struct inode *inode, struct page *page, | ||
120 | unsigned long pageoffset, unsigned int count) | ||
121 | { | ||
122 | loff_t offset; | ||
123 | char *buffer = kmap(page) + pageoffset; | ||
124 | struct smb_sb_info *server = server_from_inode(inode); | ||
125 | unsigned int wsize = smb_get_wsize(server); | ||
126 | int ret = 0; | ||
127 | |||
128 | offset = ((loff_t)page->index << PAGE_CACHE_SHIFT) + pageoffset; | ||
129 | VERBOSE("file ino=%ld, fileid=%d, count=%d@%Ld, wsize=%d\n", | ||
130 | inode->i_ino, SMB_I(inode)->fileid, count, offset, wsize); | ||
131 | |||
132 | do { | ||
133 | int write_ret; | ||
134 | |||
135 | if (count < wsize) | ||
136 | wsize = count; | ||
137 | |||
138 | write_ret = server->ops->write(inode, offset, wsize, buffer); | ||
139 | if (write_ret < 0) { | ||
140 | PARANOIA("failed write, wsize=%d, write_ret=%d\n", | ||
141 | wsize, write_ret); | ||
142 | ret = write_ret; | ||
143 | break; | ||
144 | } | ||
145 | /* N.B. what if result < wsize?? */ | ||
146 | #ifdef SMBFS_PARANOIA | ||
147 | if (write_ret < wsize) | ||
148 | PARANOIA("short write, wsize=%d, write_ret=%d\n", | ||
149 | wsize, write_ret); | ||
150 | #endif | ||
151 | buffer += wsize; | ||
152 | offset += wsize; | ||
153 | count -= wsize; | ||
154 | /* | ||
155 | * Update the inode now rather than waiting for a refresh. | ||
156 | */ | ||
157 | inode->i_mtime = inode->i_atime = current_fs_time(inode->i_sb); | ||
158 | SMB_I(inode)->flags |= SMB_F_LOCALWRITE; | ||
159 | if (offset > inode->i_size) | ||
160 | inode->i_size = offset; | ||
161 | } while (count); | ||
162 | |||
163 | kunmap(page); | ||
164 | return ret; | ||
165 | } | ||
166 | |||
167 | /* | ||
168 | * Write a page to the server. This will be used for NFS swapping only | ||
169 | * (for now), and we currently do this synchronously only. | ||
170 | * | ||
171 | * We are called with the page locked and we unlock it when done. | ||
172 | */ | ||
173 | static int | ||
174 | smb_writepage(struct page *page, struct writeback_control *wbc) | ||
175 | { | ||
176 | struct address_space *mapping = page->mapping; | ||
177 | struct inode *inode; | ||
178 | unsigned long end_index; | ||
179 | unsigned offset = PAGE_CACHE_SIZE; | ||
180 | int err; | ||
181 | |||
182 | BUG_ON(!mapping); | ||
183 | inode = mapping->host; | ||
184 | BUG_ON(!inode); | ||
185 | |||
186 | end_index = inode->i_size >> PAGE_CACHE_SHIFT; | ||
187 | |||
188 | /* easy case */ | ||
189 | if (page->index < end_index) | ||
190 | goto do_it; | ||
191 | /* things got complicated... */ | ||
192 | offset = inode->i_size & (PAGE_CACHE_SIZE-1); | ||
193 | /* OK, are we completely out? */ | ||
194 | if (page->index >= end_index+1 || !offset) | ||
195 | return 0; /* truncated - don't care */ | ||
196 | do_it: | ||
197 | page_cache_get(page); | ||
198 | err = smb_writepage_sync(inode, page, 0, offset); | ||
199 | SetPageUptodate(page); | ||
200 | unlock_page(page); | ||
201 | page_cache_release(page); | ||
202 | return err; | ||
203 | } | ||
204 | |||
205 | static int | ||
206 | smb_updatepage(struct file *file, struct page *page, unsigned long offset, | ||
207 | unsigned int count) | ||
208 | { | ||
209 | struct dentry *dentry = file->f_path.dentry; | ||
210 | |||
211 | DEBUG1("(%s/%s %d@%lld)\n", DENTRY_PATH(dentry), count, | ||
212 | ((unsigned long long)page->index << PAGE_CACHE_SHIFT) + offset); | ||
213 | |||
214 | return smb_writepage_sync(dentry->d_inode, page, offset, count); | ||
215 | } | ||
216 | |||
217 | static ssize_t | ||
218 | smb_file_aio_read(struct kiocb *iocb, const struct iovec *iov, | ||
219 | unsigned long nr_segs, loff_t pos) | ||
220 | { | ||
221 | struct file * file = iocb->ki_filp; | ||
222 | struct dentry * dentry = file->f_path.dentry; | ||
223 | ssize_t status; | ||
224 | |||
225 | VERBOSE("file %s/%s, count=%lu@%lu\n", DENTRY_PATH(dentry), | ||
226 | (unsigned long) iocb->ki_left, (unsigned long) pos); | ||
227 | |||
228 | status = smb_revalidate_inode(dentry); | ||
229 | if (status) { | ||
230 | PARANOIA("%s/%s validation failed, error=%Zd\n", | ||
231 | DENTRY_PATH(dentry), status); | ||
232 | goto out; | ||
233 | } | ||
234 | |||
235 | VERBOSE("before read, size=%ld, flags=%x, atime=%ld\n", | ||
236 | (long)dentry->d_inode->i_size, | ||
237 | dentry->d_inode->i_flags, dentry->d_inode->i_atime.tv_sec); | ||
238 | |||
239 | status = generic_file_aio_read(iocb, iov, nr_segs, pos); | ||
240 | out: | ||
241 | return status; | ||
242 | } | ||
243 | |||
244 | static int | ||
245 | smb_file_mmap(struct file * file, struct vm_area_struct * vma) | ||
246 | { | ||
247 | struct dentry * dentry = file->f_path.dentry; | ||
248 | int status; | ||
249 | |||
250 | VERBOSE("file %s/%s, address %lu - %lu\n", | ||
251 | DENTRY_PATH(dentry), vma->vm_start, vma->vm_end); | ||
252 | |||
253 | status = smb_revalidate_inode(dentry); | ||
254 | if (status) { | ||
255 | PARANOIA("%s/%s validation failed, error=%d\n", | ||
256 | DENTRY_PATH(dentry), status); | ||
257 | goto out; | ||
258 | } | ||
259 | status = generic_file_mmap(file, vma); | ||
260 | out: | ||
261 | return status; | ||
262 | } | ||
263 | |||
264 | static ssize_t | ||
265 | smb_file_splice_read(struct file *file, loff_t *ppos, | ||
266 | struct pipe_inode_info *pipe, size_t count, | ||
267 | unsigned int flags) | ||
268 | { | ||
269 | struct dentry *dentry = file->f_path.dentry; | ||
270 | ssize_t status; | ||
271 | |||
272 | VERBOSE("file %s/%s, pos=%Ld, count=%lu\n", | ||
273 | DENTRY_PATH(dentry), *ppos, count); | ||
274 | |||
275 | status = smb_revalidate_inode(dentry); | ||
276 | if (status) { | ||
277 | PARANOIA("%s/%s validation failed, error=%Zd\n", | ||
278 | DENTRY_PATH(dentry), status); | ||
279 | goto out; | ||
280 | } | ||
281 | status = generic_file_splice_read(file, ppos, pipe, count, flags); | ||
282 | out: | ||
283 | return status; | ||
284 | } | ||
285 | |||
286 | /* | ||
287 | * This does the "real" work of the write. The generic routine has | ||
288 | * allocated the page, locked it, done all the page alignment stuff | ||
289 | * calculations etc. Now we should just copy the data from user | ||
290 | * space and write it back to the real medium.. | ||
291 | * | ||
292 | * If the writer ends up delaying the write, the writer needs to | ||
293 | * increment the page use counts until he is done with the page. | ||
294 | */ | ||
295 | static int smb_write_begin(struct file *file, struct address_space *mapping, | ||
296 | loff_t pos, unsigned len, unsigned flags, | ||
297 | struct page **pagep, void **fsdata) | ||
298 | { | ||
299 | pgoff_t index = pos >> PAGE_CACHE_SHIFT; | ||
300 | *pagep = grab_cache_page_write_begin(mapping, index, flags); | ||
301 | if (!*pagep) | ||
302 | return -ENOMEM; | ||
303 | return 0; | ||
304 | } | ||
305 | |||
306 | static int smb_write_end(struct file *file, struct address_space *mapping, | ||
307 | loff_t pos, unsigned len, unsigned copied, | ||
308 | struct page *page, void *fsdata) | ||
309 | { | ||
310 | int status; | ||
311 | unsigned offset = pos & (PAGE_CACHE_SIZE - 1); | ||
312 | |||
313 | lock_kernel(); | ||
314 | status = smb_updatepage(file, page, offset, copied); | ||
315 | unlock_kernel(); | ||
316 | |||
317 | if (!status) { | ||
318 | if (!PageUptodate(page) && copied == PAGE_CACHE_SIZE) | ||
319 | SetPageUptodate(page); | ||
320 | status = copied; | ||
321 | } | ||
322 | |||
323 | unlock_page(page); | ||
324 | page_cache_release(page); | ||
325 | |||
326 | return status; | ||
327 | } | ||
328 | |||
329 | const struct address_space_operations smb_file_aops = { | ||
330 | .readpage = smb_readpage, | ||
331 | .writepage = smb_writepage, | ||
332 | .write_begin = smb_write_begin, | ||
333 | .write_end = smb_write_end, | ||
334 | }; | ||
335 | |||
336 | /* | ||
337 | * Write to a file (through the page cache). | ||
338 | */ | ||
339 | static ssize_t | ||
340 | smb_file_aio_write(struct kiocb *iocb, const struct iovec *iov, | ||
341 | unsigned long nr_segs, loff_t pos) | ||
342 | { | ||
343 | struct file * file = iocb->ki_filp; | ||
344 | struct dentry * dentry = file->f_path.dentry; | ||
345 | ssize_t result; | ||
346 | |||
347 | VERBOSE("file %s/%s, count=%lu@%lu\n", | ||
348 | DENTRY_PATH(dentry), | ||
349 | (unsigned long) iocb->ki_left, (unsigned long) pos); | ||
350 | |||
351 | result = smb_revalidate_inode(dentry); | ||
352 | if (result) { | ||
353 | PARANOIA("%s/%s validation failed, error=%Zd\n", | ||
354 | DENTRY_PATH(dentry), result); | ||
355 | goto out; | ||
356 | } | ||
357 | |||
358 | result = smb_open(dentry, SMB_O_WRONLY); | ||
359 | if (result) | ||
360 | goto out; | ||
361 | |||
362 | if (iocb->ki_left > 0) { | ||
363 | result = generic_file_aio_write(iocb, iov, nr_segs, pos); | ||
364 | VERBOSE("pos=%ld, size=%ld, mtime=%ld, atime=%ld\n", | ||
365 | (long) file->f_pos, (long) dentry->d_inode->i_size, | ||
366 | dentry->d_inode->i_mtime.tv_sec, | ||
367 | dentry->d_inode->i_atime.tv_sec); | ||
368 | } | ||
369 | out: | ||
370 | return result; | ||
371 | } | ||
372 | |||
373 | static int | ||
374 | smb_file_open(struct inode *inode, struct file * file) | ||
375 | { | ||
376 | int result; | ||
377 | struct dentry *dentry = file->f_path.dentry; | ||
378 | int smb_mode = (file->f_mode & O_ACCMODE) - 1; | ||
379 | |||
380 | lock_kernel(); | ||
381 | result = smb_open(dentry, smb_mode); | ||
382 | if (result) | ||
383 | goto out; | ||
384 | SMB_I(inode)->openers++; | ||
385 | out: | ||
386 | unlock_kernel(); | ||
387 | return result; | ||
388 | } | ||
389 | |||
390 | static int | ||
391 | smb_file_release(struct inode *inode, struct file * file) | ||
392 | { | ||
393 | lock_kernel(); | ||
394 | if (!--SMB_I(inode)->openers) { | ||
395 | /* We must flush any dirty pages now as we won't be able to | ||
396 | write anything after close. mmap can trigger this. | ||
397 | "openers" should perhaps include mmap'ers ... */ | ||
398 | filemap_write_and_wait(inode->i_mapping); | ||
399 | smb_close(inode); | ||
400 | } | ||
401 | unlock_kernel(); | ||
402 | return 0; | ||
403 | } | ||
404 | |||
405 | /* | ||
406 | * Check whether the required access is compatible with | ||
407 | * an inode's permission. SMB doesn't recognize superuser | ||
408 | * privileges, so we need our own check for this. | ||
409 | */ | ||
410 | static int | ||
411 | smb_file_permission(struct inode *inode, int mask) | ||
412 | { | ||
413 | int mode = inode->i_mode; | ||
414 | int error = 0; | ||
415 | |||
416 | VERBOSE("mode=%x, mask=%x\n", mode, mask); | ||
417 | |||
418 | /* Look at user permissions */ | ||
419 | mode >>= 6; | ||
420 | if (mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) | ||
421 | error = -EACCES; | ||
422 | return error; | ||
423 | } | ||
424 | |||
425 | static loff_t smb_remote_llseek(struct file *file, loff_t offset, int origin) | ||
426 | { | ||
427 | loff_t ret; | ||
428 | lock_kernel(); | ||
429 | ret = generic_file_llseek_unlocked(file, offset, origin); | ||
430 | unlock_kernel(); | ||
431 | return ret; | ||
432 | } | ||
433 | |||
434 | const struct file_operations smb_file_operations = | ||
435 | { | ||
436 | .llseek = smb_remote_llseek, | ||
437 | .read = do_sync_read, | ||
438 | .aio_read = smb_file_aio_read, | ||
439 | .write = do_sync_write, | ||
440 | .aio_write = smb_file_aio_write, | ||
441 | .unlocked_ioctl = smb_ioctl, | ||
442 | .mmap = smb_file_mmap, | ||
443 | .open = smb_file_open, | ||
444 | .release = smb_file_release, | ||
445 | .fsync = smb_fsync, | ||
446 | .splice_read = smb_file_splice_read, | ||
447 | }; | ||
448 | |||
449 | const struct inode_operations smb_file_inode_operations = | ||
450 | { | ||
451 | .permission = smb_file_permission, | ||
452 | .getattr = smb_getattr, | ||
453 | .setattr = smb_notify_change, | ||
454 | }; | ||
diff --git a/fs/smbfs/getopt.c b/fs/smbfs/getopt.c deleted file mode 100644 index 7ae0f5273ab1..000000000000 --- a/fs/smbfs/getopt.c +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
1 | /* | ||
2 | * getopt.c | ||
3 | */ | ||
4 | |||
5 | #include <linux/kernel.h> | ||
6 | #include <linux/string.h> | ||
7 | #include <linux/net.h> | ||
8 | |||
9 | #include "getopt.h" | ||
10 | |||
11 | /** | ||
12 | * smb_getopt - option parser | ||
13 | * @caller: name of the caller, for error messages | ||
14 | * @options: the options string | ||
15 | * @opts: an array of &struct option entries controlling parser operations | ||
16 | * @optopt: output; will contain the current option | ||
17 | * @optarg: output; will contain the value (if one exists) | ||
18 | * @flag: output; may be NULL; should point to a long for or'ing flags | ||
19 | * @value: output; may be NULL; will be overwritten with the integer value | ||
20 | * of the current argument. | ||
21 | * | ||
22 | * Helper to parse options on the format used by mount ("a=b,c=d,e,f"). | ||
23 | * Returns opts->val if a matching entry in the 'opts' array is found, | ||
24 | * 0 when no more tokens are found, -1 if an error is encountered. | ||
25 | */ | ||
26 | int smb_getopt(char *caller, char **options, struct option *opts, | ||
27 | char **optopt, char **optarg, unsigned long *flag, | ||
28 | unsigned long *value) | ||
29 | { | ||
30 | char *token; | ||
31 | char *val; | ||
32 | int i; | ||
33 | |||
34 | do { | ||
35 | if ((token = strsep(options, ",")) == NULL) | ||
36 | return 0; | ||
37 | } while (*token == '\0'); | ||
38 | *optopt = token; | ||
39 | |||
40 | *optarg = NULL; | ||
41 | if ((val = strchr (token, '=')) != NULL) { | ||
42 | *val++ = 0; | ||
43 | if (value) | ||
44 | *value = simple_strtoul(val, NULL, 0); | ||
45 | *optarg = val; | ||
46 | } | ||
47 | |||
48 | for (i = 0; opts[i].name != NULL; i++) { | ||
49 | if (!strcmp(opts[i].name, token)) { | ||
50 | if (!opts[i].flag && (!val || !*val)) { | ||
51 | printk("%s: the %s option requires an argument\n", | ||
52 | caller, token); | ||
53 | return -1; | ||
54 | } | ||
55 | |||
56 | if (flag && opts[i].flag) | ||
57 | *flag |= opts[i].flag; | ||
58 | |||
59 | return opts[i].val; | ||
60 | } | ||
61 | } | ||
62 | printk("%s: Unrecognized mount option %s\n", caller, token); | ||
63 | return -1; | ||
64 | } | ||
diff --git a/fs/smbfs/getopt.h b/fs/smbfs/getopt.h deleted file mode 100644 index 146219ac7c46..000000000000 --- a/fs/smbfs/getopt.h +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | #ifndef _LINUX_GETOPT_H | ||
2 | #define _LINUX_GETOPT_H | ||
3 | |||
4 | struct option { | ||
5 | const char *name; | ||
6 | unsigned long flag; | ||
7 | int val; | ||
8 | }; | ||
9 | |||
10 | extern int smb_getopt(char *caller, char **options, struct option *opts, | ||
11 | char **optopt, char **optarg, unsigned long *flag, | ||
12 | unsigned long *value); | ||
13 | |||
14 | #endif /* _LINUX_GETOPT_H */ | ||
diff --git a/fs/smbfs/inode.c b/fs/smbfs/inode.c deleted file mode 100644 index 450c91941988..000000000000 --- a/fs/smbfs/inode.c +++ /dev/null | |||
@@ -1,839 +0,0 @@ | |||
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/module.h> | ||
11 | #include <linux/time.h> | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/mm.h> | ||
14 | #include <linux/string.h> | ||
15 | #include <linux/stat.h> | ||
16 | #include <linux/errno.h> | ||
17 | #include <linux/slab.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/file.h> | ||
20 | #include <linux/dcache.h> | ||
21 | #include <linux/smp_lock.h> | ||
22 | #include <linux/nls.h> | ||
23 | #include <linux/seq_file.h> | ||
24 | #include <linux/mount.h> | ||
25 | #include <linux/net.h> | ||
26 | #include <linux/vfs.h> | ||
27 | #include <linux/highuid.h> | ||
28 | #include <linux/sched.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_evict_inode(struct inode *); | ||
50 | static void smb_put_super(struct super_block *); | ||
51 | static int smb_statfs(struct dentry *, struct kstatfs *); | ||
52 | static int smb_show_options(struct seq_file *, struct vfsmount *); | ||
53 | |||
54 | static struct kmem_cache *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, GFP_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) | ||
71 | { | ||
72 | struct smb_inode_info *ei = (struct smb_inode_info *) foo; | ||
73 | |||
74 | inode_init_once(&ei->vfs_inode); | ||
75 | } | ||
76 | |||
77 | static int init_inodecache(void) | ||
78 | { | ||
79 | smb_inode_cachep = kmem_cache_create("smb_inode_cache", | ||
80 | sizeof(struct smb_inode_info), | ||
81 | 0, (SLAB_RECLAIM_ACCOUNT| | ||
82 | SLAB_MEM_SPREAD), | ||
83 | init_once); | ||
84 | if (smb_inode_cachep == NULL) | ||
85 | return -ENOMEM; | ||
86 | return 0; | ||
87 | } | ||
88 | |||
89 | static void destroy_inodecache(void) | ||
90 | { | ||
91 | kmem_cache_destroy(smb_inode_cachep); | ||
92 | } | ||
93 | |||
94 | static int smb_remount(struct super_block *sb, int *flags, char *data) | ||
95 | { | ||
96 | *flags |= MS_NODIRATIME; | ||
97 | return 0; | ||
98 | } | ||
99 | |||
100 | static const struct super_operations smb_sops = | ||
101 | { | ||
102 | .alloc_inode = smb_alloc_inode, | ||
103 | .destroy_inode = smb_destroy_inode, | ||
104 | .drop_inode = generic_delete_inode, | ||
105 | .evict_inode = smb_evict_inode, | ||
106 | .put_super = smb_put_super, | ||
107 | .statfs = smb_statfs, | ||
108 | .show_options = smb_show_options, | ||
109 | .remount_fs = smb_remount, | ||
110 | }; | ||
111 | |||
112 | |||
113 | /* We are always generating a new inode here */ | ||
114 | struct inode * | ||
115 | smb_iget(struct super_block *sb, struct smb_fattr *fattr) | ||
116 | { | ||
117 | struct smb_sb_info *server = SMB_SB(sb); | ||
118 | struct inode *result; | ||
119 | |||
120 | DEBUG1("smb_iget: %p\n", fattr); | ||
121 | |||
122 | result = new_inode(sb); | ||
123 | if (!result) | ||
124 | return result; | ||
125 | result->i_ino = fattr->f_ino; | ||
126 | SMB_I(result)->open = 0; | ||
127 | SMB_I(result)->fileid = 0; | ||
128 | SMB_I(result)->access = 0; | ||
129 | SMB_I(result)->flags = 0; | ||
130 | SMB_I(result)->closed = 0; | ||
131 | SMB_I(result)->openers = 0; | ||
132 | smb_set_inode_attr(result, fattr); | ||
133 | if (S_ISREG(result->i_mode)) { | ||
134 | result->i_op = &smb_file_inode_operations; | ||
135 | result->i_fop = &smb_file_operations; | ||
136 | result->i_data.a_ops = &smb_file_aops; | ||
137 | } else if (S_ISDIR(result->i_mode)) { | ||
138 | if (server->opt.capabilities & SMB_CAP_UNIX) | ||
139 | result->i_op = &smb_dir_inode_operations_unix; | ||
140 | else | ||
141 | result->i_op = &smb_dir_inode_operations; | ||
142 | result->i_fop = &smb_dir_operations; | ||
143 | } else if (S_ISLNK(result->i_mode)) { | ||
144 | result->i_op = &smb_link_inode_operations; | ||
145 | } else { | ||
146 | init_special_inode(result, result->i_mode, fattr->f_rdev); | ||
147 | } | ||
148 | insert_inode_hash(result); | ||
149 | return result; | ||
150 | } | ||
151 | |||
152 | /* | ||
153 | * Copy the inode data to a smb_fattr structure. | ||
154 | */ | ||
155 | void | ||
156 | smb_get_inode_attr(struct inode *inode, struct smb_fattr *fattr) | ||
157 | { | ||
158 | memset(fattr, 0, sizeof(struct smb_fattr)); | ||
159 | fattr->f_mode = inode->i_mode; | ||
160 | fattr->f_nlink = inode->i_nlink; | ||
161 | fattr->f_ino = inode->i_ino; | ||
162 | fattr->f_uid = inode->i_uid; | ||
163 | fattr->f_gid = inode->i_gid; | ||
164 | fattr->f_size = inode->i_size; | ||
165 | fattr->f_mtime = inode->i_mtime; | ||
166 | fattr->f_ctime = inode->i_ctime; | ||
167 | fattr->f_atime = inode->i_atime; | ||
168 | fattr->f_blocks = inode->i_blocks; | ||
169 | |||
170 | fattr->attr = SMB_I(inode)->attr; | ||
171 | /* | ||
172 | * Keep the attributes in sync with the inode permissions. | ||
173 | */ | ||
174 | if (fattr->f_mode & S_IWUSR) | ||
175 | fattr->attr &= ~aRONLY; | ||
176 | else | ||
177 | fattr->attr |= aRONLY; | ||
178 | } | ||
179 | |||
180 | /* | ||
181 | * Update the inode, possibly causing it to invalidate its pages if mtime/size | ||
182 | * is different from last time. | ||
183 | */ | ||
184 | void | ||
185 | smb_set_inode_attr(struct inode *inode, struct smb_fattr *fattr) | ||
186 | { | ||
187 | struct smb_inode_info *ei = SMB_I(inode); | ||
188 | |||
189 | /* | ||
190 | * A size change should have a different mtime, or same mtime | ||
191 | * but different size. | ||
192 | */ | ||
193 | time_t last_time = inode->i_mtime.tv_sec; | ||
194 | loff_t last_sz = inode->i_size; | ||
195 | |||
196 | inode->i_mode = fattr->f_mode; | ||
197 | inode->i_nlink = fattr->f_nlink; | ||
198 | inode->i_uid = fattr->f_uid; | ||
199 | inode->i_gid = fattr->f_gid; | ||
200 | inode->i_ctime = fattr->f_ctime; | ||
201 | inode->i_blocks = fattr->f_blocks; | ||
202 | inode->i_size = fattr->f_size; | ||
203 | inode->i_mtime = fattr->f_mtime; | ||
204 | inode->i_atime = fattr->f_atime; | ||
205 | ei->attr = fattr->attr; | ||
206 | |||
207 | /* | ||
208 | * Update the "last time refreshed" field for revalidation. | ||
209 | */ | ||
210 | ei->oldmtime = jiffies; | ||
211 | |||
212 | if (inode->i_mtime.tv_sec != last_time || inode->i_size != last_sz) { | ||
213 | VERBOSE("%ld changed, old=%ld, new=%ld, oz=%ld, nz=%ld\n", | ||
214 | inode->i_ino, | ||
215 | (long) last_time, (long) inode->i_mtime.tv_sec, | ||
216 | (long) last_sz, (long) inode->i_size); | ||
217 | |||
218 | if (!S_ISDIR(inode->i_mode)) | ||
219 | invalidate_remote_inode(inode); | ||
220 | } | ||
221 | } | ||
222 | |||
223 | /* | ||
224 | * This is called if the connection has gone bad ... | ||
225 | * try to kill off all the current inodes. | ||
226 | */ | ||
227 | void | ||
228 | smb_invalidate_inodes(struct smb_sb_info *server) | ||
229 | { | ||
230 | VERBOSE("\n"); | ||
231 | shrink_dcache_sb(SB_of(server)); | ||
232 | invalidate_inodes(SB_of(server)); | ||
233 | } | ||
234 | |||
235 | /* | ||
236 | * This is called to update the inode attributes after | ||
237 | * we've made changes to a file or directory. | ||
238 | */ | ||
239 | static int | ||
240 | smb_refresh_inode(struct dentry *dentry) | ||
241 | { | ||
242 | struct inode *inode = dentry->d_inode; | ||
243 | int error; | ||
244 | struct smb_fattr fattr; | ||
245 | |||
246 | error = smb_proc_getattr(dentry, &fattr); | ||
247 | if (!error) { | ||
248 | smb_renew_times(dentry); | ||
249 | /* | ||
250 | * Check whether the type part of the mode changed, | ||
251 | * and don't update the attributes if it did. | ||
252 | * | ||
253 | * And don't dick with the root inode | ||
254 | */ | ||
255 | if (inode->i_ino == 2) | ||
256 | return error; | ||
257 | if (S_ISLNK(inode->i_mode)) | ||
258 | return error; /* VFS will deal with it */ | ||
259 | |||
260 | if ((inode->i_mode & S_IFMT) == (fattr.f_mode & S_IFMT)) { | ||
261 | smb_set_inode_attr(inode, &fattr); | ||
262 | } else { | ||
263 | /* | ||
264 | * Big trouble! The inode has become a new object, | ||
265 | * so any operations attempted on it are invalid. | ||
266 | * | ||
267 | * To limit damage, mark the inode as bad so that | ||
268 | * subsequent lookup validations will fail. | ||
269 | */ | ||
270 | PARANOIA("%s/%s changed mode, %07o to %07o\n", | ||
271 | DENTRY_PATH(dentry), | ||
272 | inode->i_mode, fattr.f_mode); | ||
273 | |||
274 | fattr.f_mode = inode->i_mode; /* save mode */ | ||
275 | make_bad_inode(inode); | ||
276 | inode->i_mode = fattr.f_mode; /* restore mode */ | ||
277 | /* | ||
278 | * No need to worry about unhashing the dentry: the | ||
279 | * lookup validation will see that the inode is bad. | ||
280 | * But we do want to invalidate the caches ... | ||
281 | */ | ||
282 | if (!S_ISDIR(inode->i_mode)) | ||
283 | invalidate_remote_inode(inode); | ||
284 | else | ||
285 | smb_invalid_dir_cache(inode); | ||
286 | error = -EIO; | ||
287 | } | ||
288 | } | ||
289 | return error; | ||
290 | } | ||
291 | |||
292 | /* | ||
293 | * This is called when we want to check whether the inode | ||
294 | * has changed on the server. If it has changed, we must | ||
295 | * invalidate our local caches. | ||
296 | */ | ||
297 | int | ||
298 | smb_revalidate_inode(struct dentry *dentry) | ||
299 | { | ||
300 | struct smb_sb_info *s = server_from_dentry(dentry); | ||
301 | struct inode *inode = dentry->d_inode; | ||
302 | int error = 0; | ||
303 | |||
304 | DEBUG1("smb_revalidate_inode\n"); | ||
305 | lock_kernel(); | ||
306 | |||
307 | /* | ||
308 | * Check whether we've recently refreshed the inode. | ||
309 | */ | ||
310 | if (time_before(jiffies, SMB_I(inode)->oldmtime + SMB_MAX_AGE(s))) { | ||
311 | VERBOSE("up-to-date, ino=%ld, jiffies=%lu, oldtime=%lu\n", | ||
312 | inode->i_ino, jiffies, SMB_I(inode)->oldmtime); | ||
313 | goto out; | ||
314 | } | ||
315 | |||
316 | error = smb_refresh_inode(dentry); | ||
317 | out: | ||
318 | unlock_kernel(); | ||
319 | return error; | ||
320 | } | ||
321 | |||
322 | /* | ||
323 | * This routine is called when i_nlink == 0 and i_count goes to 0. | ||
324 | * All blocking cleanup operations need to go here to avoid races. | ||
325 | */ | ||
326 | static void | ||
327 | smb_evict_inode(struct inode *ino) | ||
328 | { | ||
329 | DEBUG1("ino=%ld\n", ino->i_ino); | ||
330 | truncate_inode_pages(&ino->i_data, 0); | ||
331 | end_writeback(ino); | ||
332 | lock_kernel(); | ||
333 | if (smb_close(ino)) | ||
334 | PARANOIA("could not close inode %ld\n", ino->i_ino); | ||
335 | unlock_kernel(); | ||
336 | } | ||
337 | |||
338 | static struct option opts[] = { | ||
339 | { "version", 0, 'v' }, | ||
340 | { "win95", SMB_MOUNT_WIN95, 1 }, | ||
341 | { "oldattr", SMB_MOUNT_OLDATTR, 1 }, | ||
342 | { "dirattr", SMB_MOUNT_DIRATTR, 1 }, | ||
343 | { "case", SMB_MOUNT_CASE, 1 }, | ||
344 | { "uid", 0, 'u' }, | ||
345 | { "gid", 0, 'g' }, | ||
346 | { "file_mode", 0, 'f' }, | ||
347 | { "dir_mode", 0, 'd' }, | ||
348 | { "iocharset", 0, 'i' }, | ||
349 | { "codepage", 0, 'c' }, | ||
350 | { "ttl", 0, 't' }, | ||
351 | { NULL, 0, 0} | ||
352 | }; | ||
353 | |||
354 | static int | ||
355 | parse_options(struct smb_mount_data_kernel *mnt, char *options) | ||
356 | { | ||
357 | int c; | ||
358 | unsigned long flags; | ||
359 | unsigned long value; | ||
360 | char *optarg; | ||
361 | char *optopt; | ||
362 | |||
363 | flags = 0; | ||
364 | while ( (c = smb_getopt("smbfs", &options, opts, | ||
365 | &optopt, &optarg, &flags, &value)) > 0) { | ||
366 | |||
367 | VERBOSE("'%s' -> '%s'\n", optopt, optarg ? optarg : "<none>"); | ||
368 | switch (c) { | ||
369 | case 1: | ||
370 | /* got a "flag" option */ | ||
371 | break; | ||
372 | case 'v': | ||
373 | if (value != SMB_MOUNT_VERSION) { | ||
374 | printk ("smbfs: Bad mount version %ld, expected %d\n", | ||
375 | value, SMB_MOUNT_VERSION); | ||
376 | return 0; | ||
377 | } | ||
378 | mnt->version = value; | ||
379 | break; | ||
380 | case 'u': | ||
381 | mnt->uid = value; | ||
382 | flags |= SMB_MOUNT_UID; | ||
383 | break; | ||
384 | case 'g': | ||
385 | mnt->gid = value; | ||
386 | flags |= SMB_MOUNT_GID; | ||
387 | break; | ||
388 | case 'f': | ||
389 | mnt->file_mode = (value & S_IRWXUGO) | S_IFREG; | ||
390 | flags |= SMB_MOUNT_FMODE; | ||
391 | break; | ||
392 | case 'd': | ||
393 | mnt->dir_mode = (value & S_IRWXUGO) | S_IFDIR; | ||
394 | flags |= SMB_MOUNT_DMODE; | ||
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->flags & SMB_MOUNT_UID) | ||
433 | seq_printf(s, ",uid=%d", mnt->uid); | ||
434 | if (mnt->flags & SMB_MOUNT_GID) | ||
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 | if (mnt->flags & SMB_MOUNT_FMODE) | ||
444 | seq_printf(s, ",file_mode=%04o", mnt->file_mode & S_IRWXUGO); | ||
445 | if (mnt->flags & SMB_MOUNT_DMODE) | ||
446 | seq_printf(s, ",dir_mode=%04o", mnt->dir_mode & S_IRWXUGO); | ||
447 | |||
448 | if (strcmp(mnt->codepage.local_name, CONFIG_NLS_DEFAULT)) | ||
449 | seq_printf(s, ",iocharset=%s", mnt->codepage.local_name); | ||
450 | if (strcmp(mnt->codepage.remote_name, SMB_NLS_REMOTE)) | ||
451 | seq_printf(s, ",codepage=%s", mnt->codepage.remote_name); | ||
452 | |||
453 | if (mnt->ttl != SMB_TTL_DEFAULT) | ||
454 | seq_printf(s, ",ttl=%d", mnt->ttl); | ||
455 | |||
456 | return 0; | ||
457 | } | ||
458 | |||
459 | static void | ||
460 | smb_unload_nls(struct smb_sb_info *server) | ||
461 | { | ||
462 | unload_nls(server->remote_nls); | ||
463 | unload_nls(server->local_nls); | ||
464 | } | ||
465 | |||
466 | static void | ||
467 | smb_put_super(struct super_block *sb) | ||
468 | { | ||
469 | struct smb_sb_info *server = SMB_SB(sb); | ||
470 | |||
471 | lock_kernel(); | ||
472 | |||
473 | smb_lock_server(server); | ||
474 | server->state = CONN_INVALID; | ||
475 | smbiod_unregister_server(server); | ||
476 | |||
477 | smb_close_socket(server); | ||
478 | |||
479 | if (server->conn_pid) | ||
480 | kill_pid(server->conn_pid, SIGTERM, 1); | ||
481 | |||
482 | bdi_destroy(&server->bdi); | ||
483 | kfree(server->ops); | ||
484 | smb_unload_nls(server); | ||
485 | sb->s_fs_info = NULL; | ||
486 | smb_unlock_server(server); | ||
487 | put_pid(server->conn_pid); | ||
488 | kfree(server); | ||
489 | |||
490 | unlock_kernel(); | ||
491 | } | ||
492 | |||
493 | static int smb_fill_super(struct super_block *sb, void *raw_data, int silent) | ||
494 | { | ||
495 | struct smb_sb_info *server; | ||
496 | struct smb_mount_data_kernel *mnt; | ||
497 | struct smb_mount_data *oldmnt; | ||
498 | struct inode *root_inode; | ||
499 | struct smb_fattr root; | ||
500 | int ver; | ||
501 | void *mem; | ||
502 | static int warn_count; | ||
503 | |||
504 | if (warn_count < 5) { | ||
505 | warn_count++; | ||
506 | printk(KERN_EMERG "smbfs is deprecated and will be removed" | ||
507 | " from the 2.6.27 kernel. Please migrate to cifs\n"); | ||
508 | } | ||
509 | |||
510 | if (!raw_data) | ||
511 | goto out_no_data; | ||
512 | |||
513 | oldmnt = (struct smb_mount_data *) raw_data; | ||
514 | ver = oldmnt->version; | ||
515 | if (ver != SMB_MOUNT_OLDVERSION && cpu_to_be32(ver) != SMB_MOUNT_ASCII) | ||
516 | goto out_wrong_data; | ||
517 | |||
518 | sb->s_flags |= MS_NODIRATIME; | ||
519 | sb->s_blocksize = 1024; /* Eh... Is this correct? */ | ||
520 | sb->s_blocksize_bits = 10; | ||
521 | sb->s_magic = SMB_SUPER_MAGIC; | ||
522 | sb->s_op = &smb_sops; | ||
523 | sb->s_time_gran = 100; | ||
524 | |||
525 | server = kzalloc(sizeof(struct smb_sb_info), GFP_KERNEL); | ||
526 | if (!server) | ||
527 | goto out_no_server; | ||
528 | sb->s_fs_info = server; | ||
529 | |||
530 | if (bdi_setup_and_register(&server->bdi, "smbfs", BDI_CAP_MAP_COPY)) | ||
531 | goto out_bdi; | ||
532 | |||
533 | sb->s_bdi = &server->bdi; | ||
534 | |||
535 | server->super_block = sb; | ||
536 | server->mnt = NULL; | ||
537 | server->sock_file = NULL; | ||
538 | init_waitqueue_head(&server->conn_wq); | ||
539 | init_MUTEX(&server->sem); | ||
540 | INIT_LIST_HEAD(&server->entry); | ||
541 | INIT_LIST_HEAD(&server->xmitq); | ||
542 | INIT_LIST_HEAD(&server->recvq); | ||
543 | server->conn_error = 0; | ||
544 | server->conn_pid = NULL; | ||
545 | server->state = CONN_INVALID; /* no connection yet */ | ||
546 | server->generation = 0; | ||
547 | |||
548 | /* Allocate the global temp buffer and some superblock helper structs */ | ||
549 | /* FIXME: move these to the smb_sb_info struct */ | ||
550 | VERBOSE("alloc chunk = %lu\n", sizeof(struct smb_ops) + | ||
551 | sizeof(struct smb_mount_data_kernel)); | ||
552 | mem = kmalloc(sizeof(struct smb_ops) + | ||
553 | sizeof(struct smb_mount_data_kernel), GFP_KERNEL); | ||
554 | if (!mem) | ||
555 | goto out_no_mem; | ||
556 | |||
557 | server->ops = mem; | ||
558 | smb_install_null_ops(server->ops); | ||
559 | server->mnt = mem + sizeof(struct smb_ops); | ||
560 | |||
561 | /* Setup NLS stuff */ | ||
562 | server->remote_nls = NULL; | ||
563 | server->local_nls = NULL; | ||
564 | |||
565 | mnt = server->mnt; | ||
566 | |||
567 | memset(mnt, 0, sizeof(struct smb_mount_data_kernel)); | ||
568 | strlcpy(mnt->codepage.local_name, CONFIG_NLS_DEFAULT, | ||
569 | SMB_NLS_MAXNAMELEN); | ||
570 | strlcpy(mnt->codepage.remote_name, SMB_NLS_REMOTE, | ||
571 | SMB_NLS_MAXNAMELEN); | ||
572 | |||
573 | mnt->ttl = SMB_TTL_DEFAULT; | ||
574 | if (ver == SMB_MOUNT_OLDVERSION) { | ||
575 | mnt->version = oldmnt->version; | ||
576 | |||
577 | SET_UID(mnt->uid, oldmnt->uid); | ||
578 | SET_GID(mnt->gid, oldmnt->gid); | ||
579 | |||
580 | mnt->file_mode = (oldmnt->file_mode & S_IRWXUGO) | S_IFREG; | ||
581 | mnt->dir_mode = (oldmnt->dir_mode & S_IRWXUGO) | S_IFDIR; | ||
582 | |||
583 | mnt->flags = (oldmnt->file_mode >> 9) | SMB_MOUNT_UID | | ||
584 | SMB_MOUNT_GID | SMB_MOUNT_FMODE | SMB_MOUNT_DMODE; | ||
585 | } else { | ||
586 | mnt->file_mode = S_IRWXU | S_IRGRP | S_IXGRP | | ||
587 | S_IROTH | S_IXOTH | S_IFREG; | ||
588 | mnt->dir_mode = S_IRWXU | S_IRGRP | S_IXGRP | | ||
589 | S_IROTH | S_IXOTH | S_IFDIR; | ||
590 | if (parse_options(mnt, raw_data)) | ||
591 | goto out_bad_option; | ||
592 | } | ||
593 | mnt->mounted_uid = current_uid(); | ||
594 | smb_setcodepage(server, &mnt->codepage); | ||
595 | |||
596 | /* | ||
597 | * Display the enabled options | ||
598 | * Note: smb_proc_getattr uses these in 2.4 (but was changed in 2.2) | ||
599 | */ | ||
600 | if (mnt->flags & SMB_MOUNT_OLDATTR) | ||
601 | printk("SMBFS: Using core getattr (Win 95 speedup)\n"); | ||
602 | else if (mnt->flags & SMB_MOUNT_DIRATTR) | ||
603 | printk("SMBFS: Using dir ff getattr\n"); | ||
604 | |||
605 | if (smbiod_register_server(server) < 0) { | ||
606 | printk(KERN_ERR "smbfs: failed to start smbiod\n"); | ||
607 | goto out_no_smbiod; | ||
608 | } | ||
609 | |||
610 | /* | ||
611 | * Keep the super block locked while we get the root inode. | ||
612 | */ | ||
613 | smb_init_root_dirent(server, &root, sb); | ||
614 | root_inode = smb_iget(sb, &root); | ||
615 | if (!root_inode) | ||
616 | goto out_no_root; | ||
617 | |||
618 | sb->s_root = d_alloc_root(root_inode); | ||
619 | if (!sb->s_root) | ||
620 | goto out_no_root; | ||
621 | |||
622 | smb_new_dentry(sb->s_root); | ||
623 | |||
624 | return 0; | ||
625 | |||
626 | out_no_root: | ||
627 | iput(root_inode); | ||
628 | out_no_smbiod: | ||
629 | smb_unload_nls(server); | ||
630 | out_bad_option: | ||
631 | kfree(mem); | ||
632 | out_no_mem: | ||
633 | bdi_destroy(&server->bdi); | ||
634 | out_bdi: | ||
635 | if (!server->mnt) | ||
636 | printk(KERN_ERR "smb_fill_super: allocation failure\n"); | ||
637 | sb->s_fs_info = NULL; | ||
638 | kfree(server); | ||
639 | goto out_fail; | ||
640 | out_wrong_data: | ||
641 | printk(KERN_ERR "smbfs: mount_data version %d is not supported\n", ver); | ||
642 | goto out_fail; | ||
643 | out_no_data: | ||
644 | printk(KERN_ERR "smb_fill_super: missing data argument\n"); | ||
645 | out_fail: | ||
646 | return -EINVAL; | ||
647 | out_no_server: | ||
648 | printk(KERN_ERR "smb_fill_super: cannot allocate struct smb_sb_info\n"); | ||
649 | return -ENOMEM; | ||
650 | } | ||
651 | |||
652 | static int | ||
653 | smb_statfs(struct dentry *dentry, struct kstatfs *buf) | ||
654 | { | ||
655 | int result; | ||
656 | |||
657 | lock_kernel(); | ||
658 | |||
659 | result = smb_proc_dskattr(dentry, buf); | ||
660 | |||
661 | unlock_kernel(); | ||
662 | |||
663 | buf->f_type = SMB_SUPER_MAGIC; | ||
664 | buf->f_namelen = SMB_MAXPATHLEN; | ||
665 | return result; | ||
666 | } | ||
667 | |||
668 | int smb_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | ||
669 | { | ||
670 | int err = smb_revalidate_inode(dentry); | ||
671 | if (!err) | ||
672 | generic_fillattr(dentry->d_inode, stat); | ||
673 | return err; | ||
674 | } | ||
675 | |||
676 | int | ||
677 | smb_notify_change(struct dentry *dentry, struct iattr *attr) | ||
678 | { | ||
679 | struct inode *inode = dentry->d_inode; | ||
680 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
681 | unsigned int mask = (S_IFREG | S_IFDIR | S_IRWXUGO); | ||
682 | int error, changed, refresh = 0; | ||
683 | struct smb_fattr fattr; | ||
684 | |||
685 | lock_kernel(); | ||
686 | |||
687 | error = smb_revalidate_inode(dentry); | ||
688 | if (error) | ||
689 | goto out; | ||
690 | |||
691 | if ((error = inode_change_ok(inode, attr)) < 0) | ||
692 | goto out; | ||
693 | |||
694 | error = -EPERM; | ||
695 | if ((attr->ia_valid & ATTR_UID) && (attr->ia_uid != server->mnt->uid)) | ||
696 | goto out; | ||
697 | |||
698 | if ((attr->ia_valid & ATTR_GID) && (attr->ia_uid != server->mnt->gid)) | ||
699 | goto out; | ||
700 | |||
701 | if ((attr->ia_valid & ATTR_MODE) && (attr->ia_mode & ~mask)) | ||
702 | goto out; | ||
703 | |||
704 | if ((attr->ia_valid & ATTR_SIZE) != 0) { | ||
705 | VERBOSE("changing %s/%s, old size=%ld, new size=%ld\n", | ||
706 | DENTRY_PATH(dentry), | ||
707 | (long) inode->i_size, (long) attr->ia_size); | ||
708 | |||
709 | filemap_write_and_wait(inode->i_mapping); | ||
710 | |||
711 | error = smb_open(dentry, O_WRONLY); | ||
712 | if (error) | ||
713 | goto out; | ||
714 | error = server->ops->truncate(inode, attr->ia_size); | ||
715 | if (error) | ||
716 | goto out; | ||
717 | truncate_setsize(inode, attr->ia_size); | ||
718 | refresh = 1; | ||
719 | } | ||
720 | |||
721 | if (server->opt.capabilities & SMB_CAP_UNIX) { | ||
722 | /* For now we don't want to set the size with setattr_unix */ | ||
723 | attr->ia_valid &= ~ATTR_SIZE; | ||
724 | /* FIXME: only call if we actually want to set something? */ | ||
725 | error = smb_proc_setattr_unix(dentry, attr, 0, 0); | ||
726 | if (!error) | ||
727 | refresh = 1; | ||
728 | |||
729 | goto out; | ||
730 | } | ||
731 | |||
732 | /* | ||
733 | * Initialize the fattr and check for changed fields. | ||
734 | * Note: CTIME under SMB is creation time rather than | ||
735 | * change time, so we don't attempt to change it. | ||
736 | */ | ||
737 | smb_get_inode_attr(inode, &fattr); | ||
738 | |||
739 | changed = 0; | ||
740 | if ((attr->ia_valid & ATTR_MTIME) != 0) { | ||
741 | fattr.f_mtime = attr->ia_mtime; | ||
742 | changed = 1; | ||
743 | } | ||
744 | if ((attr->ia_valid & ATTR_ATIME) != 0) { | ||
745 | fattr.f_atime = attr->ia_atime; | ||
746 | /* Earlier protocols don't have an access time */ | ||
747 | if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2) | ||
748 | changed = 1; | ||
749 | } | ||
750 | if (changed) { | ||
751 | error = smb_proc_settime(dentry, &fattr); | ||
752 | if (error) | ||
753 | goto out; | ||
754 | refresh = 1; | ||
755 | } | ||
756 | |||
757 | /* | ||
758 | * Check for mode changes ... we're extremely limited in | ||
759 | * what can be set for SMB servers: just the read-only bit. | ||
760 | */ | ||
761 | if ((attr->ia_valid & ATTR_MODE) != 0) { | ||
762 | VERBOSE("%s/%s mode change, old=%x, new=%x\n", | ||
763 | DENTRY_PATH(dentry), fattr.f_mode, attr->ia_mode); | ||
764 | changed = 0; | ||
765 | if (attr->ia_mode & S_IWUSR) { | ||
766 | if (fattr.attr & aRONLY) { | ||
767 | fattr.attr &= ~aRONLY; | ||
768 | changed = 1; | ||
769 | } | ||
770 | } else { | ||
771 | if (!(fattr.attr & aRONLY)) { | ||
772 | fattr.attr |= aRONLY; | ||
773 | changed = 1; | ||
774 | } | ||
775 | } | ||
776 | if (changed) { | ||
777 | error = smb_proc_setattr(dentry, &fattr); | ||
778 | if (error) | ||
779 | goto out; | ||
780 | refresh = 1; | ||
781 | } | ||
782 | } | ||
783 | error = 0; | ||
784 | |||
785 | out: | ||
786 | if (refresh) | ||
787 | smb_refresh_inode(dentry); | ||
788 | unlock_kernel(); | ||
789 | return error; | ||
790 | } | ||
791 | |||
792 | static int smb_get_sb(struct file_system_type *fs_type, | ||
793 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) | ||
794 | { | ||
795 | return get_sb_nodev(fs_type, flags, data, smb_fill_super, mnt); | ||
796 | } | ||
797 | |||
798 | static struct file_system_type smb_fs_type = { | ||
799 | .owner = THIS_MODULE, | ||
800 | .name = "smbfs", | ||
801 | .get_sb = smb_get_sb, | ||
802 | .kill_sb = kill_anon_super, | ||
803 | .fs_flags = FS_BINARY_MOUNTDATA, | ||
804 | }; | ||
805 | |||
806 | static int __init init_smb_fs(void) | ||
807 | { | ||
808 | int err; | ||
809 | DEBUG1("registering ...\n"); | ||
810 | |||
811 | err = init_inodecache(); | ||
812 | if (err) | ||
813 | goto out_inode; | ||
814 | err = smb_init_request_cache(); | ||
815 | if (err) | ||
816 | goto out_request; | ||
817 | err = register_filesystem(&smb_fs_type); | ||
818 | if (err) | ||
819 | goto out; | ||
820 | return 0; | ||
821 | out: | ||
822 | smb_destroy_request_cache(); | ||
823 | out_request: | ||
824 | destroy_inodecache(); | ||
825 | out_inode: | ||
826 | return err; | ||
827 | } | ||
828 | |||
829 | static void __exit exit_smb_fs(void) | ||
830 | { | ||
831 | DEBUG1("unregistering ...\n"); | ||
832 | unregister_filesystem(&smb_fs_type); | ||
833 | smb_destroy_request_cache(); | ||
834 | destroy_inodecache(); | ||
835 | } | ||
836 | |||
837 | module_init(init_smb_fs) | ||
838 | module_exit(exit_smb_fs) | ||
839 | MODULE_LICENSE("GPL"); | ||
diff --git a/fs/smbfs/ioctl.c b/fs/smbfs/ioctl.c deleted file mode 100644 index 07215312ad39..000000000000 --- a/fs/smbfs/ioctl.c +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | /* | ||
2 | * ioctl.c | ||
3 | * | ||
4 | * Copyright (C) 1995, 1996 by 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/errno.h> | ||
11 | #include <linux/fs.h> | ||
12 | #include <linux/ioctl.h> | ||
13 | #include <linux/time.h> | ||
14 | #include <linux/mm.h> | ||
15 | #include <linux/highuid.h> | ||
16 | #include <linux/smp_lock.h> | ||
17 | #include <linux/net.h> | ||
18 | |||
19 | #include <linux/smb_fs.h> | ||
20 | #include <linux/smb_mount.h> | ||
21 | |||
22 | #include <asm/uaccess.h> | ||
23 | |||
24 | #include "proto.h" | ||
25 | |||
26 | long | ||
27 | smb_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | ||
28 | { | ||
29 | struct smb_sb_info *server = server_from_inode(filp->f_path.dentry->d_inode); | ||
30 | struct smb_conn_opt opt; | ||
31 | int result = -EINVAL; | ||
32 | |||
33 | lock_kernel(); | ||
34 | switch (cmd) { | ||
35 | uid16_t uid16; | ||
36 | uid_t uid32; | ||
37 | case SMB_IOC_GETMOUNTUID: | ||
38 | SET_UID(uid16, server->mnt->mounted_uid); | ||
39 | result = put_user(uid16, (uid16_t __user *) arg); | ||
40 | break; | ||
41 | case SMB_IOC_GETMOUNTUID32: | ||
42 | SET_UID(uid32, server->mnt->mounted_uid); | ||
43 | result = put_user(uid32, (uid_t __user *) arg); | ||
44 | break; | ||
45 | |||
46 | case SMB_IOC_NEWCONN: | ||
47 | /* arg is smb_conn_opt, or NULL if no connection was made */ | ||
48 | if (!arg) { | ||
49 | result = 0; | ||
50 | smb_lock_server(server); | ||
51 | server->state = CONN_RETRIED; | ||
52 | printk(KERN_ERR "Connection attempt failed! [%d]\n", | ||
53 | server->conn_error); | ||
54 | smbiod_flush(server); | ||
55 | smb_unlock_server(server); | ||
56 | break; | ||
57 | } | ||
58 | |||
59 | result = -EFAULT; | ||
60 | if (!copy_from_user(&opt, (void __user *)arg, sizeof(opt))) | ||
61 | result = smb_newconn(server, &opt); | ||
62 | break; | ||
63 | default: | ||
64 | break; | ||
65 | } | ||
66 | unlock_kernel(); | ||
67 | |||
68 | return result; | ||
69 | } | ||
diff --git a/fs/smbfs/proc.c b/fs/smbfs/proc.c deleted file mode 100644 index 71c29b6670b4..000000000000 --- a/fs/smbfs/proc.c +++ /dev/null | |||
@@ -1,3507 +0,0 @@ | |||
1 | /* | ||
2 | * proc.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/types.h> | ||
11 | #include <linux/capability.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/slab.h> | ||
14 | #include <linux/fs.h> | ||
15 | #include <linux/file.h> | ||
16 | #include <linux/stat.h> | ||
17 | #include <linux/fcntl.h> | ||
18 | #include <linux/dcache.h> | ||
19 | #include <linux/nls.h> | ||
20 | #include <linux/smp_lock.h> | ||
21 | #include <linux/net.h> | ||
22 | #include <linux/vfs.h> | ||
23 | #include <linux/smb_fs.h> | ||
24 | #include <linux/smbno.h> | ||
25 | #include <linux/smb_mount.h> | ||
26 | |||
27 | #include <net/sock.h> | ||
28 | |||
29 | #include <asm/string.h> | ||
30 | #include <asm/div64.h> | ||
31 | |||
32 | #include "smb_debug.h" | ||
33 | #include "proto.h" | ||
34 | #include "request.h" | ||
35 | |||
36 | |||
37 | /* Features. Undefine if they cause problems, this should perhaps be a | ||
38 | config option. */ | ||
39 | #define SMBFS_POSIX_UNLINK 1 | ||
40 | |||
41 | /* Allow smb_retry to be interrupted. */ | ||
42 | #define SMB_RETRY_INTR | ||
43 | |||
44 | #define SMB_VWV(packet) ((packet) + SMB_HEADER_LEN) | ||
45 | #define SMB_CMD(packet) (*(packet+8)) | ||
46 | #define SMB_WCT(packet) (*(packet+SMB_HEADER_LEN - 1)) | ||
47 | |||
48 | #define SMB_DIRINFO_SIZE 43 | ||
49 | #define SMB_STATUS_SIZE 21 | ||
50 | |||
51 | #define SMB_ST_BLKSIZE (PAGE_SIZE) | ||
52 | #define SMB_ST_BLKSHIFT (PAGE_SHIFT) | ||
53 | |||
54 | static struct smb_ops smb_ops_core; | ||
55 | static struct smb_ops smb_ops_os2; | ||
56 | static struct smb_ops smb_ops_win95; | ||
57 | static struct smb_ops smb_ops_winNT; | ||
58 | static struct smb_ops smb_ops_unix; | ||
59 | static struct smb_ops smb_ops_null; | ||
60 | |||
61 | static void | ||
62 | smb_init_dirent(struct smb_sb_info *server, struct smb_fattr *fattr); | ||
63 | static void | ||
64 | smb_finish_dirent(struct smb_sb_info *server, struct smb_fattr *fattr); | ||
65 | static int | ||
66 | smb_proc_getattr_core(struct smb_sb_info *server, struct dentry *dir, | ||
67 | struct smb_fattr *fattr); | ||
68 | static int | ||
69 | smb_proc_getattr_ff(struct smb_sb_info *server, struct dentry *dentry, | ||
70 | struct smb_fattr *fattr); | ||
71 | static int | ||
72 | smb_proc_setattr_core(struct smb_sb_info *server, struct dentry *dentry, | ||
73 | u16 attr); | ||
74 | static int | ||
75 | smb_proc_setattr_ext(struct smb_sb_info *server, | ||
76 | struct inode *inode, struct smb_fattr *fattr); | ||
77 | static int | ||
78 | smb_proc_query_cifsunix(struct smb_sb_info *server); | ||
79 | static void | ||
80 | install_ops(struct smb_ops *dst, struct smb_ops *src); | ||
81 | |||
82 | |||
83 | static void | ||
84 | str_upper(char *name, int len) | ||
85 | { | ||
86 | while (len--) | ||
87 | { | ||
88 | if (*name >= 'a' && *name <= 'z') | ||
89 | *name -= ('a' - 'A'); | ||
90 | name++; | ||
91 | } | ||
92 | } | ||
93 | |||
94 | #if 0 | ||
95 | static void | ||
96 | str_lower(char *name, int len) | ||
97 | { | ||
98 | while (len--) | ||
99 | { | ||
100 | if (*name >= 'A' && *name <= 'Z') | ||
101 | *name += ('a' - 'A'); | ||
102 | name++; | ||
103 | } | ||
104 | } | ||
105 | #endif | ||
106 | |||
107 | /* reverse a string inline. This is used by the dircache walking routines */ | ||
108 | static void reverse_string(char *buf, int len) | ||
109 | { | ||
110 | char c; | ||
111 | char *end = buf+len-1; | ||
112 | |||
113 | while(buf < end) { | ||
114 | c = *buf; | ||
115 | *(buf++) = *end; | ||
116 | *(end--) = c; | ||
117 | } | ||
118 | } | ||
119 | |||
120 | /* no conversion, just a wrapper for memcpy. */ | ||
121 | static int convert_memcpy(unsigned char *output, int olen, | ||
122 | const unsigned char *input, int ilen, | ||
123 | struct nls_table *nls_from, | ||
124 | struct nls_table *nls_to) | ||
125 | { | ||
126 | if (olen < ilen) | ||
127 | return -ENAMETOOLONG; | ||
128 | memcpy(output, input, ilen); | ||
129 | return ilen; | ||
130 | } | ||
131 | |||
132 | static inline int write_char(unsigned char ch, char *output, int olen) | ||
133 | { | ||
134 | if (olen < 4) | ||
135 | return -ENAMETOOLONG; | ||
136 | sprintf(output, ":x%02x", ch); | ||
137 | return 4; | ||
138 | } | ||
139 | |||
140 | static inline int write_unichar(wchar_t ch, char *output, int olen) | ||
141 | { | ||
142 | if (olen < 5) | ||
143 | return -ENAMETOOLONG; | ||
144 | sprintf(output, ":%04x", ch); | ||
145 | return 5; | ||
146 | } | ||
147 | |||
148 | /* convert from one "codepage" to another (possibly being utf8). */ | ||
149 | static int convert_cp(unsigned char *output, int olen, | ||
150 | const unsigned char *input, int ilen, | ||
151 | struct nls_table *nls_from, | ||
152 | struct nls_table *nls_to) | ||
153 | { | ||
154 | int len = 0; | ||
155 | int n; | ||
156 | wchar_t ch; | ||
157 | |||
158 | while (ilen > 0) { | ||
159 | /* convert by changing to unicode and back to the new cp */ | ||
160 | n = nls_from->char2uni(input, ilen, &ch); | ||
161 | if (n == -EINVAL) { | ||
162 | ilen--; | ||
163 | n = write_char(*input++, output, olen); | ||
164 | if (n < 0) | ||
165 | goto fail; | ||
166 | output += n; | ||
167 | olen -= n; | ||
168 | len += n; | ||
169 | continue; | ||
170 | } else if (n < 0) | ||
171 | goto fail; | ||
172 | input += n; | ||
173 | ilen -= n; | ||
174 | |||
175 | n = nls_to->uni2char(ch, output, olen); | ||
176 | if (n == -EINVAL) | ||
177 | n = write_unichar(ch, output, olen); | ||
178 | if (n < 0) | ||
179 | goto fail; | ||
180 | output += n; | ||
181 | olen -= n; | ||
182 | |||
183 | len += n; | ||
184 | } | ||
185 | return len; | ||
186 | fail: | ||
187 | return n; | ||
188 | } | ||
189 | |||
190 | /* ----------------------------------------------------------- */ | ||
191 | |||
192 | /* | ||
193 | * nls_unicode | ||
194 | * | ||
195 | * This encodes/decodes little endian unicode format | ||
196 | */ | ||
197 | |||
198 | static int uni2char(wchar_t uni, unsigned char *out, int boundlen) | ||
199 | { | ||
200 | if (boundlen < 2) | ||
201 | return -EINVAL; | ||
202 | *out++ = uni & 0xff; | ||
203 | *out++ = uni >> 8; | ||
204 | return 2; | ||
205 | } | ||
206 | |||
207 | static int char2uni(const unsigned char *rawstring, int boundlen, wchar_t *uni) | ||
208 | { | ||
209 | if (boundlen < 2) | ||
210 | return -EINVAL; | ||
211 | *uni = (rawstring[1] << 8) | rawstring[0]; | ||
212 | return 2; | ||
213 | } | ||
214 | |||
215 | static struct nls_table unicode_table = { | ||
216 | .charset = "unicode", | ||
217 | .uni2char = uni2char, | ||
218 | .char2uni = char2uni, | ||
219 | }; | ||
220 | |||
221 | /* ----------------------------------------------------------- */ | ||
222 | |||
223 | static int setcodepage(struct nls_table **p, char *name) | ||
224 | { | ||
225 | struct nls_table *nls; | ||
226 | |||
227 | if (!name || !*name) { | ||
228 | nls = NULL; | ||
229 | } else if ( (nls = load_nls(name)) == NULL) { | ||
230 | printk (KERN_ERR "smbfs: failed to load nls '%s'\n", name); | ||
231 | return -EINVAL; | ||
232 | } | ||
233 | |||
234 | /* if already set, unload the previous one. */ | ||
235 | if (*p && *p != &unicode_table) | ||
236 | unload_nls(*p); | ||
237 | *p = nls; | ||
238 | |||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | /* Handles all changes to codepage settings. */ | ||
243 | int smb_setcodepage(struct smb_sb_info *server, struct smb_nls_codepage *cp) | ||
244 | { | ||
245 | int n = 0; | ||
246 | |||
247 | smb_lock_server(server); | ||
248 | |||
249 | /* Don't load any nls_* at all, if no remote is requested */ | ||
250 | if (!*cp->remote_name) | ||
251 | goto out; | ||
252 | |||
253 | /* local */ | ||
254 | n = setcodepage(&server->local_nls, cp->local_name); | ||
255 | if (n != 0) | ||
256 | goto out; | ||
257 | |||
258 | /* remote */ | ||
259 | if (!strcmp(cp->remote_name, "unicode")) { | ||
260 | server->remote_nls = &unicode_table; | ||
261 | } else { | ||
262 | n = setcodepage(&server->remote_nls, cp->remote_name); | ||
263 | if (n != 0) | ||
264 | setcodepage(&server->local_nls, NULL); | ||
265 | } | ||
266 | |||
267 | out: | ||
268 | if (server->local_nls != NULL && server->remote_nls != NULL) | ||
269 | server->ops->convert = convert_cp; | ||
270 | else | ||
271 | server->ops->convert = convert_memcpy; | ||
272 | |||
273 | smb_unlock_server(server); | ||
274 | return n; | ||
275 | } | ||
276 | |||
277 | |||
278 | /*****************************************************************************/ | ||
279 | /* */ | ||
280 | /* Encoding/Decoding section */ | ||
281 | /* */ | ||
282 | /*****************************************************************************/ | ||
283 | |||
284 | static __u8 * | ||
285 | smb_encode_smb_length(__u8 * p, __u32 len) | ||
286 | { | ||
287 | *p = 0; | ||
288 | *(p+1) = 0; | ||
289 | *(p+2) = (len & 0xFF00) >> 8; | ||
290 | *(p+3) = (len & 0xFF); | ||
291 | if (len > 0xFFFF) | ||
292 | { | ||
293 | *(p+1) = 1; | ||
294 | } | ||
295 | return p + 4; | ||
296 | } | ||
297 | |||
298 | /* | ||
299 | * smb_build_path: build the path to entry and name storing it in buf. | ||
300 | * The path returned will have the trailing '\0'. | ||
301 | */ | ||
302 | static int smb_build_path(struct smb_sb_info *server, unsigned char *buf, | ||
303 | int maxlen, | ||
304 | struct dentry *entry, struct qstr *name) | ||
305 | { | ||
306 | unsigned char *path = buf; | ||
307 | int len; | ||
308 | int unicode = (server->mnt->flags & SMB_MOUNT_UNICODE) != 0; | ||
309 | |||
310 | if (maxlen < (2<<unicode)) | ||
311 | return -ENAMETOOLONG; | ||
312 | |||
313 | if (maxlen > SMB_MAXPATHLEN + 1) | ||
314 | maxlen = SMB_MAXPATHLEN + 1; | ||
315 | |||
316 | if (entry == NULL) | ||
317 | goto test_name_and_out; | ||
318 | |||
319 | /* | ||
320 | * If IS_ROOT, we have to do no walking at all. | ||
321 | */ | ||
322 | if (IS_ROOT(entry) && !name) { | ||
323 | *path++ = '\\'; | ||
324 | if (unicode) *path++ = '\0'; | ||
325 | *path++ = '\0'; | ||
326 | if (unicode) *path++ = '\0'; | ||
327 | return path-buf; | ||
328 | } | ||
329 | |||
330 | /* | ||
331 | * Build the path string walking the tree backward from end to ROOT | ||
332 | * and store it in reversed order [see reverse_string()] | ||
333 | */ | ||
334 | dget(entry); | ||
335 | spin_lock(&entry->d_lock); | ||
336 | while (!IS_ROOT(entry)) { | ||
337 | struct dentry *parent; | ||
338 | |||
339 | if (maxlen < (3<<unicode)) { | ||
340 | spin_unlock(&entry->d_lock); | ||
341 | dput(entry); | ||
342 | return -ENAMETOOLONG; | ||
343 | } | ||
344 | |||
345 | len = server->ops->convert(path, maxlen-2, | ||
346 | entry->d_name.name, entry->d_name.len, | ||
347 | server->local_nls, server->remote_nls); | ||
348 | if (len < 0) { | ||
349 | spin_unlock(&entry->d_lock); | ||
350 | dput(entry); | ||
351 | return len; | ||
352 | } | ||
353 | reverse_string(path, len); | ||
354 | path += len; | ||
355 | if (unicode) { | ||
356 | /* Note: reverse order */ | ||
357 | *path++ = '\0'; | ||
358 | maxlen--; | ||
359 | } | ||
360 | *path++ = '\\'; | ||
361 | maxlen -= len+1; | ||
362 | |||
363 | parent = entry->d_parent; | ||
364 | dget(parent); | ||
365 | spin_unlock(&entry->d_lock); | ||
366 | dput(entry); | ||
367 | entry = parent; | ||
368 | spin_lock(&entry->d_lock); | ||
369 | } | ||
370 | spin_unlock(&entry->d_lock); | ||
371 | dput(entry); | ||
372 | reverse_string(buf, path-buf); | ||
373 | |||
374 | /* maxlen has space for at least one char */ | ||
375 | test_name_and_out: | ||
376 | if (name) { | ||
377 | if (maxlen < (3<<unicode)) | ||
378 | return -ENAMETOOLONG; | ||
379 | *path++ = '\\'; | ||
380 | if (unicode) { | ||
381 | *path++ = '\0'; | ||
382 | maxlen--; | ||
383 | } | ||
384 | len = server->ops->convert(path, maxlen-2, | ||
385 | name->name, name->len, | ||
386 | server->local_nls, server->remote_nls); | ||
387 | if (len < 0) | ||
388 | return len; | ||
389 | path += len; | ||
390 | maxlen -= len+1; | ||
391 | } | ||
392 | /* maxlen has space for at least one char */ | ||
393 | *path++ = '\0'; | ||
394 | if (unicode) *path++ = '\0'; | ||
395 | return path-buf; | ||
396 | } | ||
397 | |||
398 | static int smb_encode_path(struct smb_sb_info *server, char *buf, int maxlen, | ||
399 | struct dentry *dir, struct qstr *name) | ||
400 | { | ||
401 | int result; | ||
402 | |||
403 | result = smb_build_path(server, buf, maxlen, dir, name); | ||
404 | if (result < 0) | ||
405 | goto out; | ||
406 | if (server->opt.protocol <= SMB_PROTOCOL_COREPLUS) | ||
407 | str_upper(buf, result); | ||
408 | out: | ||
409 | return result; | ||
410 | } | ||
411 | |||
412 | /* encode_path for non-trans2 request SMBs */ | ||
413 | static int smb_simple_encode_path(struct smb_request *req, char **p, | ||
414 | struct dentry * entry, struct qstr * name) | ||
415 | { | ||
416 | struct smb_sb_info *server = req->rq_server; | ||
417 | char *s = *p; | ||
418 | int res; | ||
419 | int maxlen = ((char *)req->rq_buffer + req->rq_bufsize) - s; | ||
420 | int unicode = (server->mnt->flags & SMB_MOUNT_UNICODE); | ||
421 | |||
422 | if (!maxlen) | ||
423 | return -ENAMETOOLONG; | ||
424 | *s++ = 4; /* ASCII data format */ | ||
425 | |||
426 | /* | ||
427 | * SMB Unicode strings must be 16bit aligned relative the start of the | ||
428 | * packet. If they are not they must be padded with 0. | ||
429 | */ | ||
430 | if (unicode) { | ||
431 | int align = s - (char *)req->rq_buffer; | ||
432 | if (!(align & 1)) { | ||
433 | *s++ = '\0'; | ||
434 | maxlen--; | ||
435 | } | ||
436 | } | ||
437 | |||
438 | res = smb_encode_path(server, s, maxlen-1, entry, name); | ||
439 | if (res < 0) | ||
440 | return res; | ||
441 | *p = s + res; | ||
442 | return 0; | ||
443 | } | ||
444 | |||
445 | /* The following are taken directly from msdos-fs */ | ||
446 | |||
447 | /* Linear day numbers of the respective 1sts in non-leap years. */ | ||
448 | |||
449 | static int day_n[] = | ||
450 | {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 0, 0, 0, 0}; | ||
451 | /* JanFebMarApr May Jun Jul Aug Sep Oct Nov Dec */ | ||
452 | |||
453 | |||
454 | static time_t | ||
455 | utc2local(struct smb_sb_info *server, time_t time) | ||
456 | { | ||
457 | return time - server->opt.serverzone*60; | ||
458 | } | ||
459 | |||
460 | static time_t | ||
461 | local2utc(struct smb_sb_info *server, time_t time) | ||
462 | { | ||
463 | return time + server->opt.serverzone*60; | ||
464 | } | ||
465 | |||
466 | /* Convert a MS-DOS time/date pair to a UNIX date (seconds since 1 1 70). */ | ||
467 | |||
468 | static time_t | ||
469 | date_dos2unix(struct smb_sb_info *server, __u16 date, __u16 time) | ||
470 | { | ||
471 | int month, year; | ||
472 | time_t secs; | ||
473 | |||
474 | /* first subtract and mask after that... Otherwise, if | ||
475 | date == 0, bad things happen */ | ||
476 | month = ((date >> 5) - 1) & 15; | ||
477 | year = date >> 9; | ||
478 | secs = (time & 31) * 2 + 60 * ((time >> 5) & 63) + (time >> 11) * 3600 + 86400 * | ||
479 | ((date & 31) - 1 + day_n[month] + (year / 4) + year * 365 - ((year & 3) == 0 && | ||
480 | month < 2 ? 1 : 0) + 3653); | ||
481 | /* days since 1.1.70 plus 80's leap day */ | ||
482 | return local2utc(server, secs); | ||
483 | } | ||
484 | |||
485 | |||
486 | /* Convert linear UNIX date to a MS-DOS time/date pair. */ | ||
487 | |||
488 | static void | ||
489 | date_unix2dos(struct smb_sb_info *server, | ||
490 | int unix_date, __u16 *date, __u16 *time) | ||
491 | { | ||
492 | int day, year, nl_day, month; | ||
493 | |||
494 | unix_date = utc2local(server, unix_date); | ||
495 | if (unix_date < 315532800) | ||
496 | unix_date = 315532800; | ||
497 | |||
498 | *time = (unix_date % 60) / 2 + | ||
499 | (((unix_date / 60) % 60) << 5) + | ||
500 | (((unix_date / 3600) % 24) << 11); | ||
501 | |||
502 | day = unix_date / 86400 - 3652; | ||
503 | year = day / 365; | ||
504 | if ((year + 3) / 4 + 365 * year > day) | ||
505 | year--; | ||
506 | day -= (year + 3) / 4 + 365 * year; | ||
507 | if (day == 59 && !(year & 3)) { | ||
508 | nl_day = day; | ||
509 | month = 2; | ||
510 | } else { | ||
511 | nl_day = (year & 3) || day <= 59 ? day : day - 1; | ||
512 | for (month = 1; month < 12; month++) | ||
513 | if (day_n[month] > nl_day) | ||
514 | break; | ||
515 | } | ||
516 | *date = nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9); | ||
517 | } | ||
518 | |||
519 | /* The following are taken from fs/ntfs/util.c */ | ||
520 | |||
521 | #define NTFS_TIME_OFFSET ((u64)(369*365 + 89) * 24 * 3600 * 10000000) | ||
522 | |||
523 | /* | ||
524 | * Convert the NT UTC (based 1601-01-01, in hundred nanosecond units) | ||
525 | * into Unix UTC (based 1970-01-01, in seconds). | ||
526 | */ | ||
527 | static struct timespec | ||
528 | smb_ntutc2unixutc(u64 ntutc) | ||
529 | { | ||
530 | struct timespec ts; | ||
531 | /* FIXME: what about the timezone difference? */ | ||
532 | /* Subtract the NTFS time offset, then convert to 1s intervals. */ | ||
533 | u64 t = ntutc - NTFS_TIME_OFFSET; | ||
534 | ts.tv_nsec = do_div(t, 10000000) * 100; | ||
535 | ts.tv_sec = t; | ||
536 | return ts; | ||
537 | } | ||
538 | |||
539 | /* Convert the Unix UTC into NT time */ | ||
540 | static u64 | ||
541 | smb_unixutc2ntutc(struct timespec ts) | ||
542 | { | ||
543 | /* Note: timezone conversion is probably wrong. */ | ||
544 | /* return ((u64)utc2local(server, t)) * 10000000 + NTFS_TIME_OFFSET; */ | ||
545 | return ((u64)ts.tv_sec) * 10000000 + ts.tv_nsec/100 + NTFS_TIME_OFFSET; | ||
546 | } | ||
547 | |||
548 | #define MAX_FILE_MODE 6 | ||
549 | static mode_t file_mode[] = { | ||
550 | S_IFREG, S_IFDIR, S_IFLNK, S_IFCHR, S_IFBLK, S_IFIFO, S_IFSOCK | ||
551 | }; | ||
552 | |||
553 | static int smb_filetype_to_mode(u32 filetype) | ||
554 | { | ||
555 | if (filetype > MAX_FILE_MODE) { | ||
556 | PARANOIA("Filetype out of range: %d\n", filetype); | ||
557 | return S_IFREG; | ||
558 | } | ||
559 | return file_mode[filetype]; | ||
560 | } | ||
561 | |||
562 | static u32 smb_filetype_from_mode(int mode) | ||
563 | { | ||
564 | if (S_ISREG(mode)) | ||
565 | return UNIX_TYPE_FILE; | ||
566 | if (S_ISDIR(mode)) | ||
567 | return UNIX_TYPE_DIR; | ||
568 | if (S_ISLNK(mode)) | ||
569 | return UNIX_TYPE_SYMLINK; | ||
570 | if (S_ISCHR(mode)) | ||
571 | return UNIX_TYPE_CHARDEV; | ||
572 | if (S_ISBLK(mode)) | ||
573 | return UNIX_TYPE_BLKDEV; | ||
574 | if (S_ISFIFO(mode)) | ||
575 | return UNIX_TYPE_FIFO; | ||
576 | if (S_ISSOCK(mode)) | ||
577 | return UNIX_TYPE_SOCKET; | ||
578 | return UNIX_TYPE_UNKNOWN; | ||
579 | } | ||
580 | |||
581 | |||
582 | /*****************************************************************************/ | ||
583 | /* */ | ||
584 | /* Support section. */ | ||
585 | /* */ | ||
586 | /*****************************************************************************/ | ||
587 | |||
588 | __u32 | ||
589 | smb_len(__u8 * p) | ||
590 | { | ||
591 | return ((*(p+1) & 0x1) << 16L) | (*(p+2) << 8L) | *(p+3); | ||
592 | } | ||
593 | |||
594 | static __u16 | ||
595 | smb_bcc(__u8 * packet) | ||
596 | { | ||
597 | int pos = SMB_HEADER_LEN + SMB_WCT(packet) * sizeof(__u16); | ||
598 | return WVAL(packet, pos); | ||
599 | } | ||
600 | |||
601 | /* smb_valid_packet: We check if packet fulfills the basic | ||
602 | requirements of a smb packet */ | ||
603 | |||
604 | static int | ||
605 | smb_valid_packet(__u8 * packet) | ||
606 | { | ||
607 | return (packet[4] == 0xff | ||
608 | && packet[5] == 'S' | ||
609 | && packet[6] == 'M' | ||
610 | && packet[7] == 'B' | ||
611 | && (smb_len(packet) + 4 == SMB_HEADER_LEN | ||
612 | + SMB_WCT(packet) * 2 + smb_bcc(packet))); | ||
613 | } | ||
614 | |||
615 | /* smb_verify: We check if we got the answer we expected, and if we | ||
616 | got enough data. If bcc == -1, we don't care. */ | ||
617 | |||
618 | static int | ||
619 | smb_verify(__u8 * packet, int command, int wct, int bcc) | ||
620 | { | ||
621 | if (SMB_CMD(packet) != command) | ||
622 | goto bad_command; | ||
623 | if (SMB_WCT(packet) < wct) | ||
624 | goto bad_wct; | ||
625 | if (bcc != -1 && smb_bcc(packet) < bcc) | ||
626 | goto bad_bcc; | ||
627 | return 0; | ||
628 | |||
629 | bad_command: | ||
630 | printk(KERN_ERR "smb_verify: command=%x, SMB_CMD=%x??\n", | ||
631 | command, SMB_CMD(packet)); | ||
632 | goto fail; | ||
633 | bad_wct: | ||
634 | printk(KERN_ERR "smb_verify: command=%x, wct=%d, SMB_WCT=%d??\n", | ||
635 | command, wct, SMB_WCT(packet)); | ||
636 | goto fail; | ||
637 | bad_bcc: | ||
638 | printk(KERN_ERR "smb_verify: command=%x, bcc=%d, SMB_BCC=%d??\n", | ||
639 | command, bcc, smb_bcc(packet)); | ||
640 | fail: | ||
641 | return -EIO; | ||
642 | } | ||
643 | |||
644 | /* | ||
645 | * Returns the maximum read or write size for the "payload". Making all of the | ||
646 | * packet fit within the negotiated max_xmit size. | ||
647 | * | ||
648 | * N.B. Since this value is usually computed before locking the server, | ||
649 | * the server's packet size must never be decreased! | ||
650 | */ | ||
651 | static inline int | ||
652 | smb_get_xmitsize(struct smb_sb_info *server, int overhead) | ||
653 | { | ||
654 | return server->opt.max_xmit - overhead; | ||
655 | } | ||
656 | |||
657 | /* | ||
658 | * Calculate the maximum read size | ||
659 | */ | ||
660 | int | ||
661 | smb_get_rsize(struct smb_sb_info *server) | ||
662 | { | ||
663 | /* readX has 12 parameters, read has 5 */ | ||
664 | int overhead = SMB_HEADER_LEN + 12 * sizeof(__u16) + 2 + 1 + 2; | ||
665 | int size = smb_get_xmitsize(server, overhead); | ||
666 | |||
667 | VERBOSE("xmit=%d, size=%d\n", server->opt.max_xmit, size); | ||
668 | |||
669 | return size; | ||
670 | } | ||
671 | |||
672 | /* | ||
673 | * Calculate the maximum write size | ||
674 | */ | ||
675 | int | ||
676 | smb_get_wsize(struct smb_sb_info *server) | ||
677 | { | ||
678 | /* writeX has 14 parameters, write has 5 */ | ||
679 | int overhead = SMB_HEADER_LEN + 14 * sizeof(__u16) + 2 + 1 + 2; | ||
680 | int size = smb_get_xmitsize(server, overhead); | ||
681 | |||
682 | VERBOSE("xmit=%d, size=%d\n", server->opt.max_xmit, size); | ||
683 | |||
684 | return size; | ||
685 | } | ||
686 | |||
687 | /* | ||
688 | * Convert SMB error codes to -E... errno values. | ||
689 | */ | ||
690 | int | ||
691 | smb_errno(struct smb_request *req) | ||
692 | { | ||
693 | int errcls = req->rq_rcls; | ||
694 | int error = req->rq_err; | ||
695 | char *class = "Unknown"; | ||
696 | |||
697 | VERBOSE("errcls %d code %d from command 0x%x\n", | ||
698 | errcls, error, SMB_CMD(req->rq_header)); | ||
699 | |||
700 | if (errcls == ERRDOS) { | ||
701 | switch (error) { | ||
702 | case ERRbadfunc: | ||
703 | return -EINVAL; | ||
704 | case ERRbadfile: | ||
705 | case ERRbadpath: | ||
706 | return -ENOENT; | ||
707 | case ERRnofids: | ||
708 | return -EMFILE; | ||
709 | case ERRnoaccess: | ||
710 | return -EACCES; | ||
711 | case ERRbadfid: | ||
712 | return -EBADF; | ||
713 | case ERRbadmcb: | ||
714 | return -EREMOTEIO; | ||
715 | case ERRnomem: | ||
716 | return -ENOMEM; | ||
717 | case ERRbadmem: | ||
718 | return -EFAULT; | ||
719 | case ERRbadenv: | ||
720 | case ERRbadformat: | ||
721 | return -EREMOTEIO; | ||
722 | case ERRbadaccess: | ||
723 | return -EACCES; | ||
724 | case ERRbaddata: | ||
725 | return -E2BIG; | ||
726 | case ERRbaddrive: | ||
727 | return -ENXIO; | ||
728 | case ERRremcd: | ||
729 | return -EREMOTEIO; | ||
730 | case ERRdiffdevice: | ||
731 | return -EXDEV; | ||
732 | case ERRnofiles: | ||
733 | return -ENOENT; | ||
734 | case ERRbadshare: | ||
735 | return -ETXTBSY; | ||
736 | case ERRlock: | ||
737 | return -EDEADLK; | ||
738 | case ERRfilexists: | ||
739 | return -EEXIST; | ||
740 | case ERROR_INVALID_PARAMETER: | ||
741 | return -EINVAL; | ||
742 | case ERROR_DISK_FULL: | ||
743 | return -ENOSPC; | ||
744 | case ERROR_INVALID_NAME: | ||
745 | return -ENOENT; | ||
746 | case ERROR_DIR_NOT_EMPTY: | ||
747 | return -ENOTEMPTY; | ||
748 | case ERROR_NOT_LOCKED: | ||
749 | return -ENOLCK; | ||
750 | case ERROR_ALREADY_EXISTS: | ||
751 | return -EEXIST; | ||
752 | default: | ||
753 | class = "ERRDOS"; | ||
754 | goto err_unknown; | ||
755 | } | ||
756 | } else if (errcls == ERRSRV) { | ||
757 | switch (error) { | ||
758 | /* N.B. This is wrong ... EIO ? */ | ||
759 | case ERRerror: | ||
760 | return -ENFILE; | ||
761 | case ERRbadpw: | ||
762 | return -EINVAL; | ||
763 | case ERRbadtype: | ||
764 | case ERRtimeout: | ||
765 | return -EIO; | ||
766 | case ERRaccess: | ||
767 | return -EACCES; | ||
768 | /* | ||
769 | * This is a fatal error, as it means the "tree ID" | ||
770 | * for this connection is no longer valid. We map | ||
771 | * to a special error code and get a new connection. | ||
772 | */ | ||
773 | case ERRinvnid: | ||
774 | return -EBADSLT; | ||
775 | default: | ||
776 | class = "ERRSRV"; | ||
777 | goto err_unknown; | ||
778 | } | ||
779 | } else if (errcls == ERRHRD) { | ||
780 | switch (error) { | ||
781 | case ERRnowrite: | ||
782 | return -EROFS; | ||
783 | case ERRbadunit: | ||
784 | return -ENODEV; | ||
785 | case ERRnotready: | ||
786 | return -EUCLEAN; | ||
787 | case ERRbadcmd: | ||
788 | case ERRdata: | ||
789 | return -EIO; | ||
790 | case ERRbadreq: | ||
791 | return -ERANGE; | ||
792 | case ERRbadshare: | ||
793 | return -ETXTBSY; | ||
794 | case ERRlock: | ||
795 | return -EDEADLK; | ||
796 | case ERRdiskfull: | ||
797 | return -ENOSPC; | ||
798 | default: | ||
799 | class = "ERRHRD"; | ||
800 | goto err_unknown; | ||
801 | } | ||
802 | } else if (errcls == ERRCMD) { | ||
803 | class = "ERRCMD"; | ||
804 | } else if (errcls == SUCCESS) { | ||
805 | return 0; /* This is the only valid 0 return */ | ||
806 | } | ||
807 | |||
808 | err_unknown: | ||
809 | printk(KERN_ERR "smb_errno: class %s, code %d from command 0x%x\n", | ||
810 | class, error, SMB_CMD(req->rq_header)); | ||
811 | return -EIO; | ||
812 | } | ||
813 | |||
814 | /* smb_request_ok: We expect the server to be locked. Then we do the | ||
815 | request and check the answer completely. When smb_request_ok | ||
816 | returns 0, you can be quite sure that everything went well. When | ||
817 | the answer is <=0, the returned number is a valid unix errno. */ | ||
818 | |||
819 | static int | ||
820 | smb_request_ok(struct smb_request *req, int command, int wct, int bcc) | ||
821 | { | ||
822 | int result; | ||
823 | |||
824 | req->rq_resp_wct = wct; | ||
825 | req->rq_resp_bcc = bcc; | ||
826 | |||
827 | result = smb_add_request(req); | ||
828 | if (result != 0) { | ||
829 | DEBUG1("smb_request failed\n"); | ||
830 | goto out; | ||
831 | } | ||
832 | |||
833 | if (smb_valid_packet(req->rq_header) != 0) { | ||
834 | PARANOIA("invalid packet!\n"); | ||
835 | goto out; | ||
836 | } | ||
837 | |||
838 | result = smb_verify(req->rq_header, command, wct, bcc); | ||
839 | |||
840 | out: | ||
841 | return result; | ||
842 | } | ||
843 | |||
844 | /* | ||
845 | * This implements the NEWCONN ioctl. It installs the server pid, | ||
846 | * sets server->state to CONN_VALID, and wakes up the waiting process. | ||
847 | */ | ||
848 | int | ||
849 | smb_newconn(struct smb_sb_info *server, struct smb_conn_opt *opt) | ||
850 | { | ||
851 | struct file *filp; | ||
852 | struct sock *sk; | ||
853 | int error; | ||
854 | |||
855 | VERBOSE("fd=%d, pid=%d\n", opt->fd, current->pid); | ||
856 | |||
857 | smb_lock_server(server); | ||
858 | |||
859 | /* | ||
860 | * Make sure we don't already have a valid connection ... | ||
861 | */ | ||
862 | error = -EINVAL; | ||
863 | if (server->state == CONN_VALID) | ||
864 | goto out; | ||
865 | |||
866 | error = -EACCES; | ||
867 | if (current_uid() != server->mnt->mounted_uid && | ||
868 | !capable(CAP_SYS_ADMIN)) | ||
869 | goto out; | ||
870 | |||
871 | error = -EBADF; | ||
872 | filp = fget(opt->fd); | ||
873 | if (!filp) | ||
874 | goto out; | ||
875 | if (!smb_valid_socket(filp->f_path.dentry->d_inode)) | ||
876 | goto out_putf; | ||
877 | |||
878 | server->sock_file = filp; | ||
879 | server->conn_pid = get_pid(task_pid(current)); | ||
880 | server->opt = *opt; | ||
881 | server->generation += 1; | ||
882 | server->state = CONN_VALID; | ||
883 | error = 0; | ||
884 | |||
885 | if (server->conn_error) { | ||
886 | /* | ||
887 | * conn_error is the returncode we originally decided to | ||
888 | * drop the old connection on. This message should be positive | ||
889 | * and not make people ask questions on why smbfs is printing | ||
890 | * error messages ... | ||
891 | */ | ||
892 | printk(KERN_INFO "SMB connection re-established (%d)\n", | ||
893 | server->conn_error); | ||
894 | server->conn_error = 0; | ||
895 | } | ||
896 | |||
897 | /* | ||
898 | * Store the server in sock user_data (Only used by sunrpc) | ||
899 | */ | ||
900 | sk = SOCKET_I(filp->f_path.dentry->d_inode)->sk; | ||
901 | sk->sk_user_data = server; | ||
902 | |||
903 | /* chain into the data_ready callback */ | ||
904 | server->data_ready = xchg(&sk->sk_data_ready, smb_data_ready); | ||
905 | |||
906 | /* check if we have an old smbmount that uses seconds for the | ||
907 | serverzone */ | ||
908 | if (server->opt.serverzone > 12*60 || server->opt.serverzone < -12*60) | ||
909 | server->opt.serverzone /= 60; | ||
910 | |||
911 | /* now that we have an established connection we can detect the server | ||
912 | type and enable bug workarounds */ | ||
913 | if (server->opt.protocol < SMB_PROTOCOL_LANMAN2) | ||
914 | install_ops(server->ops, &smb_ops_core); | ||
915 | else if (server->opt.protocol == SMB_PROTOCOL_LANMAN2) | ||
916 | install_ops(server->ops, &smb_ops_os2); | ||
917 | else if (server->opt.protocol == SMB_PROTOCOL_NT1 && | ||
918 | (server->opt.max_xmit < 0x1000) && | ||
919 | !(server->opt.capabilities & SMB_CAP_NT_SMBS)) { | ||
920 | /* FIXME: can we kill the WIN95 flag now? */ | ||
921 | server->mnt->flags |= SMB_MOUNT_WIN95; | ||
922 | VERBOSE("detected WIN95 server\n"); | ||
923 | install_ops(server->ops, &smb_ops_win95); | ||
924 | } else { | ||
925 | /* | ||
926 | * Samba has max_xmit 65535 | ||
927 | * NT4spX has max_xmit 4536 (or something like that) | ||
928 | * win2k has ... | ||
929 | */ | ||
930 | VERBOSE("detected NT1 (Samba, NT4/5) server\n"); | ||
931 | install_ops(server->ops, &smb_ops_winNT); | ||
932 | } | ||
933 | |||
934 | /* FIXME: the win9x code wants to modify these ... (seek/trunc bug) */ | ||
935 | if (server->mnt->flags & SMB_MOUNT_OLDATTR) { | ||
936 | server->ops->getattr = smb_proc_getattr_core; | ||
937 | } else if (server->mnt->flags & SMB_MOUNT_DIRATTR) { | ||
938 | server->ops->getattr = smb_proc_getattr_ff; | ||
939 | } | ||
940 | |||
941 | /* Decode server capabilities */ | ||
942 | if (server->opt.capabilities & SMB_CAP_LARGE_FILES) { | ||
943 | /* Should be ok to set this now, as no one can access the | ||
944 | mount until the connection has been established. */ | ||
945 | SB_of(server)->s_maxbytes = ~0ULL >> 1; | ||
946 | VERBOSE("LFS enabled\n"); | ||
947 | } | ||
948 | if (server->opt.capabilities & SMB_CAP_UNICODE) { | ||
949 | server->mnt->flags |= SMB_MOUNT_UNICODE; | ||
950 | VERBOSE("Unicode enabled\n"); | ||
951 | } else { | ||
952 | server->mnt->flags &= ~SMB_MOUNT_UNICODE; | ||
953 | } | ||
954 | #if 0 | ||
955 | /* flags we may test for other patches ... */ | ||
956 | if (server->opt.capabilities & SMB_CAP_LARGE_READX) { | ||
957 | VERBOSE("Large reads enabled\n"); | ||
958 | } | ||
959 | if (server->opt.capabilities & SMB_CAP_LARGE_WRITEX) { | ||
960 | VERBOSE("Large writes enabled\n"); | ||
961 | } | ||
962 | #endif | ||
963 | if (server->opt.capabilities & SMB_CAP_UNIX) { | ||
964 | struct inode *inode; | ||
965 | VERBOSE("Using UNIX CIFS extensions\n"); | ||
966 | install_ops(server->ops, &smb_ops_unix); | ||
967 | inode = SB_of(server)->s_root->d_inode; | ||
968 | if (inode) | ||
969 | inode->i_op = &smb_dir_inode_operations_unix; | ||
970 | } | ||
971 | |||
972 | VERBOSE("protocol=%d, max_xmit=%d, pid=%d capabilities=0x%x\n", | ||
973 | server->opt.protocol, server->opt.max_xmit, | ||
974 | pid_nr(server->conn_pid), server->opt.capabilities); | ||
975 | |||
976 | /* FIXME: this really should be done by smbmount. */ | ||
977 | if (server->opt.max_xmit > SMB_MAX_PACKET_SIZE) { | ||
978 | server->opt.max_xmit = SMB_MAX_PACKET_SIZE; | ||
979 | } | ||
980 | |||
981 | smb_unlock_server(server); | ||
982 | smbiod_wake_up(); | ||
983 | if (server->opt.capabilities & SMB_CAP_UNIX) | ||
984 | smb_proc_query_cifsunix(server); | ||
985 | |||
986 | server->conn_complete++; | ||
987 | wake_up_interruptible_all(&server->conn_wq); | ||
988 | return error; | ||
989 | |||
990 | out: | ||
991 | smb_unlock_server(server); | ||
992 | smbiod_wake_up(); | ||
993 | return error; | ||
994 | |||
995 | out_putf: | ||
996 | fput(filp); | ||
997 | goto out; | ||
998 | } | ||
999 | |||
1000 | /* smb_setup_header: We completely set up the packet. You only have to | ||
1001 | insert the command-specific fields */ | ||
1002 | |||
1003 | __u8 * | ||
1004 | smb_setup_header(struct smb_request *req, __u8 command, __u16 wct, __u16 bcc) | ||
1005 | { | ||
1006 | __u32 xmit_len = SMB_HEADER_LEN + wct * sizeof(__u16) + bcc + 2; | ||
1007 | __u8 *p = req->rq_header; | ||
1008 | struct smb_sb_info *server = req->rq_server; | ||
1009 | |||
1010 | p = smb_encode_smb_length(p, xmit_len - 4); | ||
1011 | |||
1012 | *p++ = 0xff; | ||
1013 | *p++ = 'S'; | ||
1014 | *p++ = 'M'; | ||
1015 | *p++ = 'B'; | ||
1016 | *p++ = command; | ||
1017 | |||
1018 | memset(p, '\0', 19); | ||
1019 | p += 19; | ||
1020 | p += 8; | ||
1021 | |||
1022 | if (server->opt.protocol > SMB_PROTOCOL_CORE) { | ||
1023 | int flags = SMB_FLAGS_CASELESS_PATHNAMES; | ||
1024 | int flags2 = SMB_FLAGS2_LONG_PATH_COMPONENTS | | ||
1025 | SMB_FLAGS2_EXTENDED_ATTRIBUTES; /* EA? not really ... */ | ||
1026 | |||
1027 | *(req->rq_header + smb_flg) = flags; | ||
1028 | if (server->mnt->flags & SMB_MOUNT_UNICODE) | ||
1029 | flags2 |= SMB_FLAGS2_UNICODE_STRINGS; | ||
1030 | WSET(req->rq_header, smb_flg2, flags2); | ||
1031 | } | ||
1032 | *p++ = wct; /* wct */ | ||
1033 | p += 2 * wct; | ||
1034 | WSET(p, 0, bcc); | ||
1035 | |||
1036 | /* Include the header in the data to send */ | ||
1037 | req->rq_iovlen = 1; | ||
1038 | req->rq_iov[0].iov_base = req->rq_header; | ||
1039 | req->rq_iov[0].iov_len = xmit_len - bcc; | ||
1040 | |||
1041 | return req->rq_buffer; | ||
1042 | } | ||
1043 | |||
1044 | static void | ||
1045 | smb_setup_bcc(struct smb_request *req, __u8 *p) | ||
1046 | { | ||
1047 | u16 bcc = p - req->rq_buffer; | ||
1048 | u8 *pbcc = req->rq_header + SMB_HEADER_LEN + 2*SMB_WCT(req->rq_header); | ||
1049 | |||
1050 | WSET(pbcc, 0, bcc); | ||
1051 | |||
1052 | smb_encode_smb_length(req->rq_header, SMB_HEADER_LEN + | ||
1053 | 2*SMB_WCT(req->rq_header) - 2 + bcc); | ||
1054 | |||
1055 | /* Include the "bytes" in the data to send */ | ||
1056 | req->rq_iovlen = 2; | ||
1057 | req->rq_iov[1].iov_base = req->rq_buffer; | ||
1058 | req->rq_iov[1].iov_len = bcc; | ||
1059 | } | ||
1060 | |||
1061 | static int | ||
1062 | smb_proc_seek(struct smb_sb_info *server, __u16 fileid, | ||
1063 | __u16 mode, off_t offset) | ||
1064 | { | ||
1065 | int result; | ||
1066 | struct smb_request *req; | ||
1067 | |||
1068 | result = -ENOMEM; | ||
1069 | if (! (req = smb_alloc_request(server, 0))) | ||
1070 | goto out; | ||
1071 | |||
1072 | smb_setup_header(req, SMBlseek, 4, 0); | ||
1073 | WSET(req->rq_header, smb_vwv0, fileid); | ||
1074 | WSET(req->rq_header, smb_vwv1, mode); | ||
1075 | DSET(req->rq_header, smb_vwv2, offset); | ||
1076 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1077 | |||
1078 | result = smb_request_ok(req, SMBlseek, 2, 0); | ||
1079 | if (result < 0) { | ||
1080 | result = 0; | ||
1081 | goto out_free; | ||
1082 | } | ||
1083 | |||
1084 | result = DVAL(req->rq_header, smb_vwv0); | ||
1085 | out_free: | ||
1086 | smb_rput(req); | ||
1087 | out: | ||
1088 | return result; | ||
1089 | } | ||
1090 | |||
1091 | static int | ||
1092 | smb_proc_open(struct smb_sb_info *server, struct dentry *dentry, int wish) | ||
1093 | { | ||
1094 | struct inode *ino = dentry->d_inode; | ||
1095 | struct smb_inode_info *ei = SMB_I(ino); | ||
1096 | int mode, read_write = 0x42, read_only = 0x40; | ||
1097 | int res; | ||
1098 | char *p; | ||
1099 | struct smb_request *req; | ||
1100 | |||
1101 | /* | ||
1102 | * Attempt to open r/w, unless there are no write privileges. | ||
1103 | */ | ||
1104 | mode = read_write; | ||
1105 | if (!(ino->i_mode & (S_IWUSR | S_IWGRP | S_IWOTH))) | ||
1106 | mode = read_only; | ||
1107 | #if 0 | ||
1108 | /* FIXME: why is this code not in? below we fix it so that a caller | ||
1109 | wanting RO doesn't get RW. smb_revalidate_inode does some | ||
1110 | optimization based on access mode. tail -f needs it to be correct. | ||
1111 | |||
1112 | We must open rw since we don't do the open if called a second time | ||
1113 | with different 'wish'. Is that not supported by smb servers? */ | ||
1114 | if (!(wish & (O_WRONLY | O_RDWR))) | ||
1115 | mode = read_only; | ||
1116 | #endif | ||
1117 | |||
1118 | res = -ENOMEM; | ||
1119 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
1120 | goto out; | ||
1121 | |||
1122 | retry: | ||
1123 | p = smb_setup_header(req, SMBopen, 2, 0); | ||
1124 | WSET(req->rq_header, smb_vwv0, mode); | ||
1125 | WSET(req->rq_header, smb_vwv1, aSYSTEM | aHIDDEN | aDIR); | ||
1126 | res = smb_simple_encode_path(req, &p, dentry, NULL); | ||
1127 | if (res < 0) | ||
1128 | goto out_free; | ||
1129 | smb_setup_bcc(req, p); | ||
1130 | |||
1131 | res = smb_request_ok(req, SMBopen, 7, 0); | ||
1132 | if (res != 0) { | ||
1133 | if (mode == read_write && | ||
1134 | (res == -EACCES || res == -ETXTBSY || res == -EROFS)) | ||
1135 | { | ||
1136 | VERBOSE("%s/%s R/W failed, error=%d, retrying R/O\n", | ||
1137 | DENTRY_PATH(dentry), res); | ||
1138 | mode = read_only; | ||
1139 | req->rq_flags = 0; | ||
1140 | goto retry; | ||
1141 | } | ||
1142 | goto out_free; | ||
1143 | } | ||
1144 | /* We should now have data in vwv[0..6]. */ | ||
1145 | |||
1146 | ei->fileid = WVAL(req->rq_header, smb_vwv0); | ||
1147 | ei->attr = WVAL(req->rq_header, smb_vwv1); | ||
1148 | /* smb_vwv2 has mtime */ | ||
1149 | /* smb_vwv4 has size */ | ||
1150 | ei->access = (WVAL(req->rq_header, smb_vwv6) & SMB_ACCMASK); | ||
1151 | ei->open = server->generation; | ||
1152 | |||
1153 | out_free: | ||
1154 | smb_rput(req); | ||
1155 | out: | ||
1156 | return res; | ||
1157 | } | ||
1158 | |||
1159 | /* | ||
1160 | * Make sure the file is open, and check that the access | ||
1161 | * is compatible with the desired access. | ||
1162 | */ | ||
1163 | int | ||
1164 | smb_open(struct dentry *dentry, int wish) | ||
1165 | { | ||
1166 | struct inode *inode = dentry->d_inode; | ||
1167 | int result; | ||
1168 | __u16 access; | ||
1169 | |||
1170 | result = -ENOENT; | ||
1171 | if (!inode) { | ||
1172 | printk(KERN_ERR "smb_open: no inode for dentry %s/%s\n", | ||
1173 | DENTRY_PATH(dentry)); | ||
1174 | goto out; | ||
1175 | } | ||
1176 | |||
1177 | if (!smb_is_open(inode)) { | ||
1178 | struct smb_sb_info *server = server_from_inode(inode); | ||
1179 | result = 0; | ||
1180 | if (!smb_is_open(inode)) | ||
1181 | result = smb_proc_open(server, dentry, wish); | ||
1182 | if (result) | ||
1183 | goto out; | ||
1184 | /* | ||
1185 | * A successful open means the path is still valid ... | ||
1186 | */ | ||
1187 | smb_renew_times(dentry); | ||
1188 | } | ||
1189 | |||
1190 | /* | ||
1191 | * Check whether the access is compatible with the desired mode. | ||
1192 | */ | ||
1193 | result = 0; | ||
1194 | access = SMB_I(inode)->access; | ||
1195 | if (access != wish && access != SMB_O_RDWR) { | ||
1196 | PARANOIA("%s/%s access denied, access=%x, wish=%x\n", | ||
1197 | DENTRY_PATH(dentry), access, wish); | ||
1198 | result = -EACCES; | ||
1199 | } | ||
1200 | out: | ||
1201 | return result; | ||
1202 | } | ||
1203 | |||
1204 | static int | ||
1205 | smb_proc_close(struct smb_sb_info *server, __u16 fileid, __u32 mtime) | ||
1206 | { | ||
1207 | struct smb_request *req; | ||
1208 | int result = -ENOMEM; | ||
1209 | |||
1210 | if (! (req = smb_alloc_request(server, 0))) | ||
1211 | goto out; | ||
1212 | |||
1213 | smb_setup_header(req, SMBclose, 3, 0); | ||
1214 | WSET(req->rq_header, smb_vwv0, fileid); | ||
1215 | DSET(req->rq_header, smb_vwv1, utc2local(server, mtime)); | ||
1216 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1217 | result = smb_request_ok(req, SMBclose, 0, 0); | ||
1218 | |||
1219 | smb_rput(req); | ||
1220 | out: | ||
1221 | return result; | ||
1222 | } | ||
1223 | |||
1224 | /* | ||
1225 | * Win NT 4.0 has an apparent bug in that it fails to update the | ||
1226 | * modify time when writing to a file. As a workaround, we update | ||
1227 | * both modify and access time locally, and post the times to the | ||
1228 | * server when closing the file. | ||
1229 | */ | ||
1230 | static int | ||
1231 | smb_proc_close_inode(struct smb_sb_info *server, struct inode * ino) | ||
1232 | { | ||
1233 | struct smb_inode_info *ei = SMB_I(ino); | ||
1234 | int result = 0; | ||
1235 | if (smb_is_open(ino)) | ||
1236 | { | ||
1237 | /* | ||
1238 | * We clear the open flag in advance, in case another | ||
1239 | * process observes the value while we block below. | ||
1240 | */ | ||
1241 | ei->open = 0; | ||
1242 | |||
1243 | /* | ||
1244 | * Kludge alert: SMB timestamps are accurate only to | ||
1245 | * two seconds ... round the times to avoid needless | ||
1246 | * cache invalidations! | ||
1247 | */ | ||
1248 | if (ino->i_mtime.tv_sec & 1) { | ||
1249 | ino->i_mtime.tv_sec--; | ||
1250 | ino->i_mtime.tv_nsec = 0; | ||
1251 | } | ||
1252 | if (ino->i_atime.tv_sec & 1) { | ||
1253 | ino->i_atime.tv_sec--; | ||
1254 | ino->i_atime.tv_nsec = 0; | ||
1255 | } | ||
1256 | /* | ||
1257 | * If the file is open with write permissions, | ||
1258 | * update the time stamps to sync mtime and atime. | ||
1259 | */ | ||
1260 | if ((server->opt.capabilities & SMB_CAP_UNIX) == 0 && | ||
1261 | (server->opt.protocol >= SMB_PROTOCOL_LANMAN2) && | ||
1262 | !(ei->access == SMB_O_RDONLY)) | ||
1263 | { | ||
1264 | struct smb_fattr fattr; | ||
1265 | smb_get_inode_attr(ino, &fattr); | ||
1266 | smb_proc_setattr_ext(server, ino, &fattr); | ||
1267 | } | ||
1268 | |||
1269 | result = smb_proc_close(server, ei->fileid, ino->i_mtime.tv_sec); | ||
1270 | /* | ||
1271 | * Force a revalidation after closing ... some servers | ||
1272 | * don't post the size until the file has been closed. | ||
1273 | */ | ||
1274 | if (server->opt.protocol < SMB_PROTOCOL_NT1) | ||
1275 | ei->oldmtime = 0; | ||
1276 | ei->closed = jiffies; | ||
1277 | } | ||
1278 | return result; | ||
1279 | } | ||
1280 | |||
1281 | int | ||
1282 | smb_close(struct inode *ino) | ||
1283 | { | ||
1284 | int result = 0; | ||
1285 | |||
1286 | if (smb_is_open(ino)) { | ||
1287 | struct smb_sb_info *server = server_from_inode(ino); | ||
1288 | result = smb_proc_close_inode(server, ino); | ||
1289 | } | ||
1290 | return result; | ||
1291 | } | ||
1292 | |||
1293 | /* | ||
1294 | * This is used to close a file following a failed instantiate. | ||
1295 | * Since we don't have an inode, we can't use any of the above. | ||
1296 | */ | ||
1297 | int | ||
1298 | smb_close_fileid(struct dentry *dentry, __u16 fileid) | ||
1299 | { | ||
1300 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
1301 | int result; | ||
1302 | |||
1303 | result = smb_proc_close(server, fileid, get_seconds()); | ||
1304 | return result; | ||
1305 | } | ||
1306 | |||
1307 | /* In smb_proc_read and smb_proc_write we do not retry, because the | ||
1308 | file-id would not be valid after a reconnection. */ | ||
1309 | |||
1310 | static void | ||
1311 | smb_proc_read_data(struct smb_request *req) | ||
1312 | { | ||
1313 | req->rq_iov[0].iov_base = req->rq_buffer; | ||
1314 | req->rq_iov[0].iov_len = 3; | ||
1315 | |||
1316 | req->rq_iov[1].iov_base = req->rq_page; | ||
1317 | req->rq_iov[1].iov_len = req->rq_rsize; | ||
1318 | req->rq_iovlen = 2; | ||
1319 | |||
1320 | req->rq_rlen = smb_len(req->rq_header) + 4 - req->rq_bytes_recvd; | ||
1321 | } | ||
1322 | |||
1323 | static int | ||
1324 | smb_proc_read(struct inode *inode, loff_t offset, int count, char *data) | ||
1325 | { | ||
1326 | struct smb_sb_info *server = server_from_inode(inode); | ||
1327 | __u16 returned_count, data_len; | ||
1328 | unsigned char *buf; | ||
1329 | int result; | ||
1330 | struct smb_request *req; | ||
1331 | u8 rbuf[4]; | ||
1332 | |||
1333 | result = -ENOMEM; | ||
1334 | if (! (req = smb_alloc_request(server, 0))) | ||
1335 | goto out; | ||
1336 | |||
1337 | smb_setup_header(req, SMBread, 5, 0); | ||
1338 | buf = req->rq_header; | ||
1339 | WSET(buf, smb_vwv0, SMB_I(inode)->fileid); | ||
1340 | WSET(buf, smb_vwv1, count); | ||
1341 | DSET(buf, smb_vwv2, offset); | ||
1342 | WSET(buf, smb_vwv4, 0); | ||
1343 | |||
1344 | req->rq_page = data; | ||
1345 | req->rq_rsize = count; | ||
1346 | req->rq_callback = smb_proc_read_data; | ||
1347 | req->rq_buffer = rbuf; | ||
1348 | req->rq_flags |= SMB_REQ_NORETRY | SMB_REQ_STATIC; | ||
1349 | |||
1350 | result = smb_request_ok(req, SMBread, 5, -1); | ||
1351 | if (result < 0) | ||
1352 | goto out_free; | ||
1353 | returned_count = WVAL(req->rq_header, smb_vwv0); | ||
1354 | |||
1355 | data_len = WVAL(rbuf, 1); | ||
1356 | |||
1357 | if (returned_count != data_len) { | ||
1358 | printk(KERN_NOTICE "smb_proc_read: returned != data_len\n"); | ||
1359 | printk(KERN_NOTICE "smb_proc_read: ret_c=%d, data_len=%d\n", | ||
1360 | returned_count, data_len); | ||
1361 | } | ||
1362 | result = data_len; | ||
1363 | |||
1364 | out_free: | ||
1365 | smb_rput(req); | ||
1366 | out: | ||
1367 | VERBOSE("ino=%ld, fileid=%d, count=%d, result=%d\n", | ||
1368 | inode->i_ino, SMB_I(inode)->fileid, count, result); | ||
1369 | return result; | ||
1370 | } | ||
1371 | |||
1372 | static int | ||
1373 | smb_proc_write(struct inode *inode, loff_t offset, int count, const char *data) | ||
1374 | { | ||
1375 | struct smb_sb_info *server = server_from_inode(inode); | ||
1376 | int result; | ||
1377 | u16 fileid = SMB_I(inode)->fileid; | ||
1378 | u8 buf[4]; | ||
1379 | struct smb_request *req; | ||
1380 | |||
1381 | result = -ENOMEM; | ||
1382 | if (! (req = smb_alloc_request(server, 0))) | ||
1383 | goto out; | ||
1384 | |||
1385 | VERBOSE("ino=%ld, fileid=%d, count=%d@%Ld\n", | ||
1386 | inode->i_ino, fileid, count, offset); | ||
1387 | |||
1388 | smb_setup_header(req, SMBwrite, 5, count + 3); | ||
1389 | WSET(req->rq_header, smb_vwv0, fileid); | ||
1390 | WSET(req->rq_header, smb_vwv1, count); | ||
1391 | DSET(req->rq_header, smb_vwv2, offset); | ||
1392 | WSET(req->rq_header, smb_vwv4, 0); | ||
1393 | |||
1394 | buf[0] = 1; | ||
1395 | WSET(buf, 1, count); /* yes, again ... */ | ||
1396 | req->rq_iov[1].iov_base = buf; | ||
1397 | req->rq_iov[1].iov_len = 3; | ||
1398 | req->rq_iov[2].iov_base = (char *) data; | ||
1399 | req->rq_iov[2].iov_len = count; | ||
1400 | req->rq_iovlen = 3; | ||
1401 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1402 | |||
1403 | result = smb_request_ok(req, SMBwrite, 1, 0); | ||
1404 | if (result >= 0) | ||
1405 | result = WVAL(req->rq_header, smb_vwv0); | ||
1406 | |||
1407 | smb_rput(req); | ||
1408 | out: | ||
1409 | return result; | ||
1410 | } | ||
1411 | |||
1412 | /* | ||
1413 | * In smb_proc_readX and smb_proc_writeX we do not retry, because the | ||
1414 | * file-id would not be valid after a reconnection. | ||
1415 | */ | ||
1416 | |||
1417 | #define SMB_READX_MAX_PAD 64 | ||
1418 | static void | ||
1419 | smb_proc_readX_data(struct smb_request *req) | ||
1420 | { | ||
1421 | /* header length, excluding the netbios length (-4) */ | ||
1422 | int hdrlen = SMB_HEADER_LEN + req->rq_resp_wct*2 - 2; | ||
1423 | int data_off = WVAL(req->rq_header, smb_vwv6); | ||
1424 | |||
1425 | /* | ||
1426 | * Some genius made the padding to the data bytes arbitrary. | ||
1427 | * So we must first calculate the amount of padding used by the server. | ||
1428 | */ | ||
1429 | data_off -= hdrlen; | ||
1430 | if (data_off > SMB_READX_MAX_PAD || data_off < 0) { | ||
1431 | PARANOIA("offset is larger than SMB_READX_MAX_PAD or negative!\n"); | ||
1432 | PARANOIA("%d > %d || %d < 0\n", data_off, SMB_READX_MAX_PAD, data_off); | ||
1433 | req->rq_rlen = req->rq_bufsize + 1; | ||
1434 | return; | ||
1435 | } | ||
1436 | req->rq_iov[0].iov_base = req->rq_buffer; | ||
1437 | req->rq_iov[0].iov_len = data_off; | ||
1438 | |||
1439 | req->rq_iov[1].iov_base = req->rq_page; | ||
1440 | req->rq_iov[1].iov_len = req->rq_rsize; | ||
1441 | req->rq_iovlen = 2; | ||
1442 | |||
1443 | req->rq_rlen = smb_len(req->rq_header) + 4 - req->rq_bytes_recvd; | ||
1444 | } | ||
1445 | |||
1446 | static int | ||
1447 | smb_proc_readX(struct inode *inode, loff_t offset, int count, char *data) | ||
1448 | { | ||
1449 | struct smb_sb_info *server = server_from_inode(inode); | ||
1450 | unsigned char *buf; | ||
1451 | int result; | ||
1452 | struct smb_request *req; | ||
1453 | static char pad[SMB_READX_MAX_PAD]; | ||
1454 | |||
1455 | result = -ENOMEM; | ||
1456 | if (! (req = smb_alloc_request(server, 0))) | ||
1457 | goto out; | ||
1458 | |||
1459 | smb_setup_header(req, SMBreadX, 12, 0); | ||
1460 | buf = req->rq_header; | ||
1461 | WSET(buf, smb_vwv0, 0x00ff); | ||
1462 | WSET(buf, smb_vwv1, 0); | ||
1463 | WSET(buf, smb_vwv2, SMB_I(inode)->fileid); | ||
1464 | DSET(buf, smb_vwv3, (u32)offset); /* low 32 bits */ | ||
1465 | WSET(buf, smb_vwv5, count); | ||
1466 | WSET(buf, smb_vwv6, 0); | ||
1467 | DSET(buf, smb_vwv7, 0); | ||
1468 | WSET(buf, smb_vwv9, 0); | ||
1469 | DSET(buf, smb_vwv10, (u32)(offset >> 32)); /* high 32 bits */ | ||
1470 | WSET(buf, smb_vwv11, 0); | ||
1471 | |||
1472 | req->rq_page = data; | ||
1473 | req->rq_rsize = count; | ||
1474 | req->rq_callback = smb_proc_readX_data; | ||
1475 | req->rq_buffer = pad; | ||
1476 | req->rq_bufsize = SMB_READX_MAX_PAD; | ||
1477 | req->rq_flags |= SMB_REQ_STATIC | SMB_REQ_NORETRY; | ||
1478 | |||
1479 | result = smb_request_ok(req, SMBreadX, 12, -1); | ||
1480 | if (result < 0) | ||
1481 | goto out_free; | ||
1482 | result = WVAL(req->rq_header, smb_vwv5); | ||
1483 | |||
1484 | out_free: | ||
1485 | smb_rput(req); | ||
1486 | out: | ||
1487 | VERBOSE("ino=%ld, fileid=%d, count=%d, result=%d\n", | ||
1488 | inode->i_ino, SMB_I(inode)->fileid, count, result); | ||
1489 | return result; | ||
1490 | } | ||
1491 | |||
1492 | static int | ||
1493 | smb_proc_writeX(struct inode *inode, loff_t offset, int count, const char *data) | ||
1494 | { | ||
1495 | struct smb_sb_info *server = server_from_inode(inode); | ||
1496 | int result; | ||
1497 | u8 *p; | ||
1498 | static u8 pad[4]; | ||
1499 | struct smb_request *req; | ||
1500 | |||
1501 | result = -ENOMEM; | ||
1502 | if (! (req = smb_alloc_request(server, 0))) | ||
1503 | goto out; | ||
1504 | |||
1505 | VERBOSE("ino=%ld, fileid=%d, count=%d@%Ld\n", | ||
1506 | inode->i_ino, SMB_I(inode)->fileid, count, offset); | ||
1507 | |||
1508 | p = smb_setup_header(req, SMBwriteX, 14, count + 1); | ||
1509 | WSET(req->rq_header, smb_vwv0, 0x00ff); | ||
1510 | WSET(req->rq_header, smb_vwv1, 0); | ||
1511 | WSET(req->rq_header, smb_vwv2, SMB_I(inode)->fileid); | ||
1512 | DSET(req->rq_header, smb_vwv3, (u32)offset); /* low 32 bits */ | ||
1513 | DSET(req->rq_header, smb_vwv5, 0); | ||
1514 | WSET(req->rq_header, smb_vwv7, 0); /* write mode */ | ||
1515 | WSET(req->rq_header, smb_vwv8, 0); | ||
1516 | WSET(req->rq_header, smb_vwv9, 0); | ||
1517 | WSET(req->rq_header, smb_vwv10, count); /* data length */ | ||
1518 | WSET(req->rq_header, smb_vwv11, smb_vwv12 + 2 + 1); | ||
1519 | DSET(req->rq_header, smb_vwv12, (u32)(offset >> 32)); | ||
1520 | |||
1521 | req->rq_iov[1].iov_base = pad; | ||
1522 | req->rq_iov[1].iov_len = 1; | ||
1523 | req->rq_iov[2].iov_base = (char *) data; | ||
1524 | req->rq_iov[2].iov_len = count; | ||
1525 | req->rq_iovlen = 3; | ||
1526 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1527 | |||
1528 | result = smb_request_ok(req, SMBwriteX, 6, 0); | ||
1529 | if (result >= 0) | ||
1530 | result = WVAL(req->rq_header, smb_vwv2); | ||
1531 | |||
1532 | smb_rput(req); | ||
1533 | out: | ||
1534 | return result; | ||
1535 | } | ||
1536 | |||
1537 | int | ||
1538 | smb_proc_create(struct dentry *dentry, __u16 attr, time_t ctime, __u16 *fileid) | ||
1539 | { | ||
1540 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
1541 | char *p; | ||
1542 | int result; | ||
1543 | struct smb_request *req; | ||
1544 | |||
1545 | result = -ENOMEM; | ||
1546 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
1547 | goto out; | ||
1548 | |||
1549 | p = smb_setup_header(req, SMBcreate, 3, 0); | ||
1550 | WSET(req->rq_header, smb_vwv0, attr); | ||
1551 | DSET(req->rq_header, smb_vwv1, utc2local(server, ctime)); | ||
1552 | result = smb_simple_encode_path(req, &p, dentry, NULL); | ||
1553 | if (result < 0) | ||
1554 | goto out_free; | ||
1555 | smb_setup_bcc(req, p); | ||
1556 | |||
1557 | result = smb_request_ok(req, SMBcreate, 1, 0); | ||
1558 | if (result < 0) | ||
1559 | goto out_free; | ||
1560 | |||
1561 | *fileid = WVAL(req->rq_header, smb_vwv0); | ||
1562 | result = 0; | ||
1563 | |||
1564 | out_free: | ||
1565 | smb_rput(req); | ||
1566 | out: | ||
1567 | return result; | ||
1568 | } | ||
1569 | |||
1570 | int | ||
1571 | smb_proc_mv(struct dentry *old_dentry, struct dentry *new_dentry) | ||
1572 | { | ||
1573 | struct smb_sb_info *server = server_from_dentry(old_dentry); | ||
1574 | char *p; | ||
1575 | int result; | ||
1576 | struct smb_request *req; | ||
1577 | |||
1578 | result = -ENOMEM; | ||
1579 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
1580 | goto out; | ||
1581 | |||
1582 | p = smb_setup_header(req, SMBmv, 1, 0); | ||
1583 | WSET(req->rq_header, smb_vwv0, aSYSTEM | aHIDDEN | aDIR); | ||
1584 | result = smb_simple_encode_path(req, &p, old_dentry, NULL); | ||
1585 | if (result < 0) | ||
1586 | goto out_free; | ||
1587 | result = smb_simple_encode_path(req, &p, new_dentry, NULL); | ||
1588 | if (result < 0) | ||
1589 | goto out_free; | ||
1590 | smb_setup_bcc(req, p); | ||
1591 | |||
1592 | if ((result = smb_request_ok(req, SMBmv, 0, 0)) < 0) | ||
1593 | goto out_free; | ||
1594 | result = 0; | ||
1595 | |||
1596 | out_free: | ||
1597 | smb_rput(req); | ||
1598 | out: | ||
1599 | return result; | ||
1600 | } | ||
1601 | |||
1602 | /* | ||
1603 | * Code common to mkdir and rmdir. | ||
1604 | */ | ||
1605 | static int | ||
1606 | smb_proc_generic_command(struct dentry *dentry, __u8 command) | ||
1607 | { | ||
1608 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
1609 | char *p; | ||
1610 | int result; | ||
1611 | struct smb_request *req; | ||
1612 | |||
1613 | result = -ENOMEM; | ||
1614 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
1615 | goto out; | ||
1616 | |||
1617 | p = smb_setup_header(req, command, 0, 0); | ||
1618 | result = smb_simple_encode_path(req, &p, dentry, NULL); | ||
1619 | if (result < 0) | ||
1620 | goto out_free; | ||
1621 | smb_setup_bcc(req, p); | ||
1622 | |||
1623 | result = smb_request_ok(req, command, 0, 0); | ||
1624 | if (result < 0) | ||
1625 | goto out_free; | ||
1626 | result = 0; | ||
1627 | |||
1628 | out_free: | ||
1629 | smb_rput(req); | ||
1630 | out: | ||
1631 | return result; | ||
1632 | } | ||
1633 | |||
1634 | int | ||
1635 | smb_proc_mkdir(struct dentry *dentry) | ||
1636 | { | ||
1637 | return smb_proc_generic_command(dentry, SMBmkdir); | ||
1638 | } | ||
1639 | |||
1640 | int | ||
1641 | smb_proc_rmdir(struct dentry *dentry) | ||
1642 | { | ||
1643 | return smb_proc_generic_command(dentry, SMBrmdir); | ||
1644 | } | ||
1645 | |||
1646 | #if SMBFS_POSIX_UNLINK | ||
1647 | /* | ||
1648 | * Removes readonly attribute from a file. Used by unlink to give posix | ||
1649 | * semantics. | ||
1650 | */ | ||
1651 | static int | ||
1652 | smb_set_rw(struct dentry *dentry,struct smb_sb_info *server) | ||
1653 | { | ||
1654 | int result; | ||
1655 | struct smb_fattr fattr; | ||
1656 | |||
1657 | /* FIXME: cifsUE should allow removing a readonly file. */ | ||
1658 | |||
1659 | /* first get current attribute */ | ||
1660 | smb_init_dirent(server, &fattr); | ||
1661 | result = server->ops->getattr(server, dentry, &fattr); | ||
1662 | smb_finish_dirent(server, &fattr); | ||
1663 | if (result < 0) | ||
1664 | return result; | ||
1665 | |||
1666 | /* if RONLY attribute is set, remove it */ | ||
1667 | if (fattr.attr & aRONLY) { /* read only attribute is set */ | ||
1668 | fattr.attr &= ~aRONLY; | ||
1669 | result = smb_proc_setattr_core(server, dentry, fattr.attr); | ||
1670 | } | ||
1671 | return result; | ||
1672 | } | ||
1673 | #endif | ||
1674 | |||
1675 | int | ||
1676 | smb_proc_unlink(struct dentry *dentry) | ||
1677 | { | ||
1678 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
1679 | int flag = 0; | ||
1680 | char *p; | ||
1681 | int result; | ||
1682 | struct smb_request *req; | ||
1683 | |||
1684 | result = -ENOMEM; | ||
1685 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
1686 | goto out; | ||
1687 | |||
1688 | retry: | ||
1689 | p = smb_setup_header(req, SMBunlink, 1, 0); | ||
1690 | WSET(req->rq_header, smb_vwv0, aSYSTEM | aHIDDEN); | ||
1691 | result = smb_simple_encode_path(req, &p, dentry, NULL); | ||
1692 | if (result < 0) | ||
1693 | goto out_free; | ||
1694 | smb_setup_bcc(req, p); | ||
1695 | |||
1696 | if ((result = smb_request_ok(req, SMBunlink, 0, 0)) < 0) { | ||
1697 | #if SMBFS_POSIX_UNLINK | ||
1698 | if (result == -EACCES && !flag) { | ||
1699 | /* Posix semantics is for the read-only state | ||
1700 | of a file to be ignored in unlink(). In the | ||
1701 | SMB world a unlink() is refused on a | ||
1702 | read-only file. To make things easier for | ||
1703 | unix users we try to override the files | ||
1704 | permission if the unlink fails with the | ||
1705 | right error. | ||
1706 | This introduces a race condition that could | ||
1707 | lead to a file being written by someone who | ||
1708 | shouldn't have access, but as far as I can | ||
1709 | tell that is unavoidable */ | ||
1710 | |||
1711 | /* remove RONLY attribute and try again */ | ||
1712 | result = smb_set_rw(dentry,server); | ||
1713 | if (result == 0) { | ||
1714 | flag = 1; | ||
1715 | req->rq_flags = 0; | ||
1716 | goto retry; | ||
1717 | } | ||
1718 | } | ||
1719 | #endif | ||
1720 | goto out_free; | ||
1721 | } | ||
1722 | result = 0; | ||
1723 | |||
1724 | out_free: | ||
1725 | smb_rput(req); | ||
1726 | out: | ||
1727 | return result; | ||
1728 | } | ||
1729 | |||
1730 | int | ||
1731 | smb_proc_flush(struct smb_sb_info *server, __u16 fileid) | ||
1732 | { | ||
1733 | int result; | ||
1734 | struct smb_request *req; | ||
1735 | |||
1736 | result = -ENOMEM; | ||
1737 | if (! (req = smb_alloc_request(server, 0))) | ||
1738 | goto out; | ||
1739 | |||
1740 | smb_setup_header(req, SMBflush, 1, 0); | ||
1741 | WSET(req->rq_header, smb_vwv0, fileid); | ||
1742 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1743 | result = smb_request_ok(req, SMBflush, 0, 0); | ||
1744 | |||
1745 | smb_rput(req); | ||
1746 | out: | ||
1747 | return result; | ||
1748 | } | ||
1749 | |||
1750 | static int | ||
1751 | smb_proc_trunc32(struct inode *inode, loff_t length) | ||
1752 | { | ||
1753 | /* | ||
1754 | * Writing 0bytes is old-SMB magic for truncating files. | ||
1755 | * MAX_NON_LFS should prevent this from being called with a too | ||
1756 | * large offset. | ||
1757 | */ | ||
1758 | return smb_proc_write(inode, length, 0, NULL); | ||
1759 | } | ||
1760 | |||
1761 | static int | ||
1762 | smb_proc_trunc64(struct inode *inode, loff_t length) | ||
1763 | { | ||
1764 | struct smb_sb_info *server = server_from_inode(inode); | ||
1765 | int result; | ||
1766 | char *param; | ||
1767 | char *data; | ||
1768 | struct smb_request *req; | ||
1769 | |||
1770 | result = -ENOMEM; | ||
1771 | if (! (req = smb_alloc_request(server, 14))) | ||
1772 | goto out; | ||
1773 | |||
1774 | param = req->rq_buffer; | ||
1775 | data = req->rq_buffer + 6; | ||
1776 | |||
1777 | /* FIXME: must we also set allocation size? winNT seems to do that */ | ||
1778 | WSET(param, 0, SMB_I(inode)->fileid); | ||
1779 | WSET(param, 2, SMB_SET_FILE_END_OF_FILE_INFO); | ||
1780 | WSET(param, 4, 0); | ||
1781 | LSET(data, 0, length); | ||
1782 | |||
1783 | req->rq_trans2_command = TRANSACT2_SETFILEINFO; | ||
1784 | req->rq_ldata = 8; | ||
1785 | req->rq_data = data; | ||
1786 | req->rq_lparm = 6; | ||
1787 | req->rq_parm = param; | ||
1788 | req->rq_flags |= SMB_REQ_NORETRY; | ||
1789 | result = smb_add_request(req); | ||
1790 | if (result < 0) | ||
1791 | goto out_free; | ||
1792 | |||
1793 | result = 0; | ||
1794 | if (req->rq_rcls != 0) | ||
1795 | result = smb_errno(req); | ||
1796 | |||
1797 | out_free: | ||
1798 | smb_rput(req); | ||
1799 | out: | ||
1800 | return result; | ||
1801 | } | ||
1802 | |||
1803 | static int | ||
1804 | smb_proc_trunc95(struct inode *inode, loff_t length) | ||
1805 | { | ||
1806 | struct smb_sb_info *server = server_from_inode(inode); | ||
1807 | int result = smb_proc_trunc32(inode, length); | ||
1808 | |||
1809 | /* | ||
1810 | * win9x doesn't appear to update the size immediately. | ||
1811 | * It will return the old file size after the truncate, | ||
1812 | * confusing smbfs. So we force an update. | ||
1813 | * | ||
1814 | * FIXME: is this still necessary? | ||
1815 | */ | ||
1816 | smb_proc_flush(server, SMB_I(inode)->fileid); | ||
1817 | return result; | ||
1818 | } | ||
1819 | |||
1820 | static void | ||
1821 | smb_init_dirent(struct smb_sb_info *server, struct smb_fattr *fattr) | ||
1822 | { | ||
1823 | memset(fattr, 0, sizeof(*fattr)); | ||
1824 | |||
1825 | fattr->f_nlink = 1; | ||
1826 | fattr->f_uid = server->mnt->uid; | ||
1827 | fattr->f_gid = server->mnt->gid; | ||
1828 | fattr->f_unix = 0; | ||
1829 | } | ||
1830 | |||
1831 | static void | ||
1832 | smb_finish_dirent(struct smb_sb_info *server, struct smb_fattr *fattr) | ||
1833 | { | ||
1834 | if (fattr->f_unix) | ||
1835 | return; | ||
1836 | |||
1837 | fattr->f_mode = server->mnt->file_mode; | ||
1838 | if (fattr->attr & aDIR) { | ||
1839 | fattr->f_mode = server->mnt->dir_mode; | ||
1840 | fattr->f_size = SMB_ST_BLKSIZE; | ||
1841 | } | ||
1842 | /* Check the read-only flag */ | ||
1843 | if (fattr->attr & aRONLY) | ||
1844 | fattr->f_mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH); | ||
1845 | |||
1846 | /* How many 512 byte blocks do we need for this file? */ | ||
1847 | fattr->f_blocks = 0; | ||
1848 | if (fattr->f_size != 0) | ||
1849 | fattr->f_blocks = 1 + ((fattr->f_size-1) >> 9); | ||
1850 | return; | ||
1851 | } | ||
1852 | |||
1853 | void | ||
1854 | smb_init_root_dirent(struct smb_sb_info *server, struct smb_fattr *fattr, | ||
1855 | struct super_block *sb) | ||
1856 | { | ||
1857 | smb_init_dirent(server, fattr); | ||
1858 | fattr->attr = aDIR; | ||
1859 | fattr->f_ino = 2; /* traditional root inode number */ | ||
1860 | fattr->f_mtime = current_fs_time(sb); | ||
1861 | smb_finish_dirent(server, fattr); | ||
1862 | } | ||
1863 | |||
1864 | /* | ||
1865 | * Decode a dirent for old protocols | ||
1866 | * | ||
1867 | * qname is filled with the decoded, and possibly translated, name. | ||
1868 | * fattr receives decoded attributes | ||
1869 | * | ||
1870 | * Bugs Noted: | ||
1871 | * (1) Pathworks servers may pad the name with extra spaces. | ||
1872 | */ | ||
1873 | static char * | ||
1874 | smb_decode_short_dirent(struct smb_sb_info *server, char *p, | ||
1875 | struct qstr *qname, struct smb_fattr *fattr, | ||
1876 | unsigned char *name_buf) | ||
1877 | { | ||
1878 | int len; | ||
1879 | |||
1880 | /* | ||
1881 | * SMB doesn't have a concept of inode numbers ... | ||
1882 | */ | ||
1883 | smb_init_dirent(server, fattr); | ||
1884 | fattr->f_ino = 0; /* FIXME: do we need this? */ | ||
1885 | |||
1886 | p += SMB_STATUS_SIZE; /* reserved (search_status) */ | ||
1887 | fattr->attr = *p; | ||
1888 | fattr->f_mtime.tv_sec = date_dos2unix(server, WVAL(p, 3), WVAL(p, 1)); | ||
1889 | fattr->f_mtime.tv_nsec = 0; | ||
1890 | fattr->f_size = DVAL(p, 5); | ||
1891 | fattr->f_ctime = fattr->f_mtime; | ||
1892 | fattr->f_atime = fattr->f_mtime; | ||
1893 | qname->name = p + 9; | ||
1894 | len = strnlen(qname->name, 12); | ||
1895 | |||
1896 | /* | ||
1897 | * Trim trailing blanks for Pathworks servers | ||
1898 | */ | ||
1899 | while (len > 2 && qname->name[len-1] == ' ') | ||
1900 | len--; | ||
1901 | |||
1902 | smb_finish_dirent(server, fattr); | ||
1903 | |||
1904 | #if 0 | ||
1905 | /* FIXME: These only work for ascii chars, and recent smbmount doesn't | ||
1906 | allow the flag to be set anyway. It kills const. Remove? */ | ||
1907 | switch (server->opt.case_handling) { | ||
1908 | case SMB_CASE_UPPER: | ||
1909 | str_upper(entry->name, len); | ||
1910 | break; | ||
1911 | case SMB_CASE_LOWER: | ||
1912 | str_lower(entry->name, len); | ||
1913 | break; | ||
1914 | default: | ||
1915 | break; | ||
1916 | } | ||
1917 | #endif | ||
1918 | |||
1919 | qname->len = 0; | ||
1920 | len = server->ops->convert(name_buf, SMB_MAXNAMELEN, | ||
1921 | qname->name, len, | ||
1922 | server->remote_nls, server->local_nls); | ||
1923 | if (len > 0) { | ||
1924 | qname->len = len; | ||
1925 | qname->name = name_buf; | ||
1926 | DEBUG1("len=%d, name=%.*s\n",qname->len,qname->len,qname->name); | ||
1927 | } | ||
1928 | |||
1929 | return p + 22; | ||
1930 | } | ||
1931 | |||
1932 | /* | ||
1933 | * This routine is used to read in directory entries from the network. | ||
1934 | * Note that it is for short directory name seeks, i.e.: protocol < | ||
1935 | * SMB_PROTOCOL_LANMAN2 | ||
1936 | */ | ||
1937 | static int | ||
1938 | smb_proc_readdir_short(struct file *filp, void *dirent, filldir_t filldir, | ||
1939 | struct smb_cache_control *ctl) | ||
1940 | { | ||
1941 | struct dentry *dir = filp->f_path.dentry; | ||
1942 | struct smb_sb_info *server = server_from_dentry(dir); | ||
1943 | struct qstr qname; | ||
1944 | struct smb_fattr fattr; | ||
1945 | char *p; | ||
1946 | int result; | ||
1947 | int i, first, entries_seen, entries; | ||
1948 | int entries_asked = (server->opt.max_xmit - 100) / SMB_DIRINFO_SIZE; | ||
1949 | __u16 bcc; | ||
1950 | __u16 count; | ||
1951 | char status[SMB_STATUS_SIZE]; | ||
1952 | static struct qstr mask = { | ||
1953 | .name = "*.*", | ||
1954 | .len = 3, | ||
1955 | }; | ||
1956 | unsigned char *last_status; | ||
1957 | struct smb_request *req; | ||
1958 | unsigned char *name_buf; | ||
1959 | |||
1960 | VERBOSE("%s/%s\n", DENTRY_PATH(dir)); | ||
1961 | |||
1962 | lock_kernel(); | ||
1963 | |||
1964 | result = -ENOMEM; | ||
1965 | if (! (name_buf = kmalloc(SMB_MAXNAMELEN, GFP_KERNEL))) | ||
1966 | goto out; | ||
1967 | |||
1968 | first = 1; | ||
1969 | entries = 0; | ||
1970 | entries_seen = 2; /* implicit . and .. */ | ||
1971 | |||
1972 | result = -ENOMEM; | ||
1973 | if (! (req = smb_alloc_request(server, server->opt.max_xmit))) | ||
1974 | goto out_name; | ||
1975 | |||
1976 | while (1) { | ||
1977 | p = smb_setup_header(req, SMBsearch, 2, 0); | ||
1978 | WSET(req->rq_header, smb_vwv0, entries_asked); | ||
1979 | WSET(req->rq_header, smb_vwv1, aDIR); | ||
1980 | if (first == 1) { | ||
1981 | result = smb_simple_encode_path(req, &p, dir, &mask); | ||
1982 | if (result < 0) | ||
1983 | goto out_free; | ||
1984 | if (p + 3 > (char *)req->rq_buffer + req->rq_bufsize) { | ||
1985 | result = -ENAMETOOLONG; | ||
1986 | goto out_free; | ||
1987 | } | ||
1988 | *p++ = 5; | ||
1989 | WSET(p, 0, 0); | ||
1990 | p += 2; | ||
1991 | first = 0; | ||
1992 | } else { | ||
1993 | if (p + 5 + SMB_STATUS_SIZE > | ||
1994 | (char *)req->rq_buffer + req->rq_bufsize) { | ||
1995 | result = -ENAMETOOLONG; | ||
1996 | goto out_free; | ||
1997 | } | ||
1998 | |||
1999 | *p++ = 4; | ||
2000 | *p++ = 0; | ||
2001 | *p++ = 5; | ||
2002 | WSET(p, 0, SMB_STATUS_SIZE); | ||
2003 | p += 2; | ||
2004 | memcpy(p, status, SMB_STATUS_SIZE); | ||
2005 | p += SMB_STATUS_SIZE; | ||
2006 | } | ||
2007 | |||
2008 | smb_setup_bcc(req, p); | ||
2009 | |||
2010 | result = smb_request_ok(req, SMBsearch, 1, -1); | ||
2011 | if (result < 0) { | ||
2012 | if ((req->rq_rcls == ERRDOS) && | ||
2013 | (req->rq_err == ERRnofiles)) | ||
2014 | break; | ||
2015 | goto out_free; | ||
2016 | } | ||
2017 | count = WVAL(req->rq_header, smb_vwv0); | ||
2018 | if (count <= 0) | ||
2019 | break; | ||
2020 | |||
2021 | result = -EIO; | ||
2022 | bcc = smb_bcc(req->rq_header); | ||
2023 | if (bcc != count * SMB_DIRINFO_SIZE + 3) | ||
2024 | goto out_free; | ||
2025 | p = req->rq_buffer + 3; | ||
2026 | |||
2027 | |||
2028 | /* Make sure the response fits in the buffer. Fixed sized | ||
2029 | entries means we don't have to check in the decode loop. */ | ||
2030 | |||
2031 | last_status = req->rq_buffer + 3 + (count-1) * SMB_DIRINFO_SIZE; | ||
2032 | |||
2033 | if (last_status + SMB_DIRINFO_SIZE >= | ||
2034 | req->rq_buffer + req->rq_bufsize) { | ||
2035 | printk(KERN_ERR "smb_proc_readdir_short: " | ||
2036 | "last dir entry outside buffer! " | ||
2037 | "%d@%p %d@%p\n", SMB_DIRINFO_SIZE, last_status, | ||
2038 | req->rq_bufsize, req->rq_buffer); | ||
2039 | goto out_free; | ||
2040 | } | ||
2041 | |||
2042 | /* Read the last entry into the status field. */ | ||
2043 | memcpy(status, last_status, SMB_STATUS_SIZE); | ||
2044 | |||
2045 | |||
2046 | /* Now we are ready to parse smb directory entries. */ | ||
2047 | |||
2048 | for (i = 0; i < count; i++) { | ||
2049 | p = smb_decode_short_dirent(server, p, | ||
2050 | &qname, &fattr, name_buf); | ||
2051 | if (qname.len == 0) | ||
2052 | continue; | ||
2053 | |||
2054 | if (entries_seen == 2 && qname.name[0] == '.') { | ||
2055 | if (qname.len == 1) | ||
2056 | continue; | ||
2057 | if (qname.name[1] == '.' && qname.len == 2) | ||
2058 | continue; | ||
2059 | } | ||
2060 | if (!smb_fill_cache(filp, dirent, filldir, ctl, | ||
2061 | &qname, &fattr)) | ||
2062 | ; /* stop reading? */ | ||
2063 | entries_seen++; | ||
2064 | } | ||
2065 | } | ||
2066 | result = entries; | ||
2067 | |||
2068 | out_free: | ||
2069 | smb_rput(req); | ||
2070 | out_name: | ||
2071 | kfree(name_buf); | ||
2072 | out: | ||
2073 | unlock_kernel(); | ||
2074 | return result; | ||
2075 | } | ||
2076 | |||
2077 | static void smb_decode_unix_basic(struct smb_fattr *fattr, struct smb_sb_info *server, char *p) | ||
2078 | { | ||
2079 | u64 size, disk_bytes; | ||
2080 | |||
2081 | /* FIXME: verify nls support. all is sent as utf8? */ | ||
2082 | |||
2083 | fattr->f_unix = 1; | ||
2084 | fattr->f_mode = 0; | ||
2085 | |||
2086 | /* FIXME: use the uniqueID from the remote instead? */ | ||
2087 | /* 0 L file size in bytes */ | ||
2088 | /* 8 L file size on disk in bytes (block count) */ | ||
2089 | /* 40 L uid */ | ||
2090 | /* 48 L gid */ | ||
2091 | /* 56 W file type */ | ||
2092 | /* 60 L devmajor */ | ||
2093 | /* 68 L devminor */ | ||
2094 | /* 76 L unique ID (inode) */ | ||
2095 | /* 84 L permissions */ | ||
2096 | /* 92 L link count */ | ||
2097 | |||
2098 | size = LVAL(p, 0); | ||
2099 | disk_bytes = LVAL(p, 8); | ||
2100 | |||
2101 | /* | ||
2102 | * Some samba versions round up on-disk byte usage | ||
2103 | * to 1MB boundaries, making it useless. When seeing | ||
2104 | * that, use the size instead. | ||
2105 | */ | ||
2106 | if (!(disk_bytes & 0xfffff)) | ||
2107 | disk_bytes = size+511; | ||
2108 | |||
2109 | fattr->f_size = size; | ||
2110 | fattr->f_blocks = disk_bytes >> 9; | ||
2111 | fattr->f_ctime = smb_ntutc2unixutc(LVAL(p, 16)); | ||
2112 | fattr->f_atime = smb_ntutc2unixutc(LVAL(p, 24)); | ||
2113 | fattr->f_mtime = smb_ntutc2unixutc(LVAL(p, 32)); | ||
2114 | |||
2115 | if (server->mnt->flags & SMB_MOUNT_UID) | ||
2116 | fattr->f_uid = server->mnt->uid; | ||
2117 | else | ||
2118 | fattr->f_uid = LVAL(p, 40); | ||
2119 | |||
2120 | if (server->mnt->flags & SMB_MOUNT_GID) | ||
2121 | fattr->f_gid = server->mnt->gid; | ||
2122 | else | ||
2123 | fattr->f_gid = LVAL(p, 48); | ||
2124 | |||
2125 | fattr->f_mode |= smb_filetype_to_mode(WVAL(p, 56)); | ||
2126 | |||
2127 | if (S_ISBLK(fattr->f_mode) || S_ISCHR(fattr->f_mode)) { | ||
2128 | __u64 major = LVAL(p, 60); | ||
2129 | __u64 minor = LVAL(p, 68); | ||
2130 | |||
2131 | fattr->f_rdev = MKDEV(major & 0xffffffff, minor & 0xffffffff); | ||
2132 | if (MAJOR(fattr->f_rdev) != (major & 0xffffffff) || | ||
2133 | MINOR(fattr->f_rdev) != (minor & 0xffffffff)) | ||
2134 | fattr->f_rdev = 0; | ||
2135 | } | ||
2136 | |||
2137 | fattr->f_mode |= LVAL(p, 84); | ||
2138 | |||
2139 | if ( (server->mnt->flags & SMB_MOUNT_DMODE) && | ||
2140 | (S_ISDIR(fattr->f_mode)) ) | ||
2141 | fattr->f_mode = (server->mnt->dir_mode & S_IRWXUGO) | S_IFDIR; | ||
2142 | else if ( (server->mnt->flags & SMB_MOUNT_FMODE) && | ||
2143 | !(S_ISDIR(fattr->f_mode)) ) | ||
2144 | fattr->f_mode = (server->mnt->file_mode & S_IRWXUGO) | | ||
2145 | (fattr->f_mode & S_IFMT); | ||
2146 | |||
2147 | } | ||
2148 | |||
2149 | /* | ||
2150 | * Interpret a long filename structure using the specified info level: | ||
2151 | * level 1 for anything below NT1 protocol | ||
2152 | * level 260 for NT1 protocol | ||
2153 | * | ||
2154 | * qname is filled with the decoded, and possibly translated, name | ||
2155 | * fattr receives decoded attributes. | ||
2156 | * | ||
2157 | * Bugs Noted: | ||
2158 | * (1) Win NT 4.0 appends a null byte to names and counts it in the length! | ||
2159 | */ | ||
2160 | static char * | ||
2161 | smb_decode_long_dirent(struct smb_sb_info *server, char *p, int level, | ||
2162 | struct qstr *qname, struct smb_fattr *fattr, | ||
2163 | unsigned char *name_buf) | ||
2164 | { | ||
2165 | char *result; | ||
2166 | unsigned int len = 0; | ||
2167 | int n; | ||
2168 | __u16 date, time; | ||
2169 | int unicode = (server->mnt->flags & SMB_MOUNT_UNICODE); | ||
2170 | |||
2171 | /* | ||
2172 | * SMB doesn't have a concept of inode numbers ... | ||
2173 | */ | ||
2174 | smb_init_dirent(server, fattr); | ||
2175 | fattr->f_ino = 0; /* FIXME: do we need this? */ | ||
2176 | |||
2177 | switch (level) { | ||
2178 | case 1: | ||
2179 | len = *((unsigned char *) p + 22); | ||
2180 | qname->name = p + 23; | ||
2181 | result = p + 24 + len; | ||
2182 | |||
2183 | date = WVAL(p, 0); | ||
2184 | time = WVAL(p, 2); | ||
2185 | fattr->f_ctime.tv_sec = date_dos2unix(server, date, time); | ||
2186 | fattr->f_ctime.tv_nsec = 0; | ||
2187 | |||
2188 | date = WVAL(p, 4); | ||
2189 | time = WVAL(p, 6); | ||
2190 | fattr->f_atime.tv_sec = date_dos2unix(server, date, time); | ||
2191 | fattr->f_atime.tv_nsec = 0; | ||
2192 | |||
2193 | date = WVAL(p, 8); | ||
2194 | time = WVAL(p, 10); | ||
2195 | fattr->f_mtime.tv_sec = date_dos2unix(server, date, time); | ||
2196 | fattr->f_mtime.tv_nsec = 0; | ||
2197 | fattr->f_size = DVAL(p, 12); | ||
2198 | /* ULONG allocation size */ | ||
2199 | fattr->attr = WVAL(p, 20); | ||
2200 | |||
2201 | VERBOSE("info 1 at %p, len=%d, name=%.*s\n", | ||
2202 | p, len, len, qname->name); | ||
2203 | break; | ||
2204 | case 260: | ||
2205 | result = p + WVAL(p, 0); | ||
2206 | len = DVAL(p, 60); | ||
2207 | if (len > 255) len = 255; | ||
2208 | /* NT4 null terminates, unless we are using unicode ... */ | ||
2209 | qname->name = p + 94; | ||
2210 | if (!unicode && len && qname->name[len-1] == '\0') | ||
2211 | len--; | ||
2212 | |||
2213 | fattr->f_ctime = smb_ntutc2unixutc(LVAL(p, 8)); | ||
2214 | fattr->f_atime = smb_ntutc2unixutc(LVAL(p, 16)); | ||
2215 | fattr->f_mtime = smb_ntutc2unixutc(LVAL(p, 24)); | ||
2216 | /* change time (32) */ | ||
2217 | fattr->f_size = LVAL(p, 40); | ||
2218 | /* alloc size (48) */ | ||
2219 | fattr->attr = DVAL(p, 56); | ||
2220 | |||
2221 | VERBOSE("info 260 at %p, len=%d, name=%.*s\n", | ||
2222 | p, len, len, qname->name); | ||
2223 | break; | ||
2224 | case SMB_FIND_FILE_UNIX: | ||
2225 | result = p + WVAL(p, 0); | ||
2226 | qname->name = p + 108; | ||
2227 | |||
2228 | len = strlen(qname->name); | ||
2229 | /* FIXME: should we check the length?? */ | ||
2230 | |||
2231 | p += 8; | ||
2232 | smb_decode_unix_basic(fattr, server, p); | ||
2233 | VERBOSE("info SMB_FIND_FILE_UNIX at %p, len=%d, name=%.*s\n", | ||
2234 | p, len, len, qname->name); | ||
2235 | break; | ||
2236 | default: | ||
2237 | PARANOIA("Unknown info level %d\n", level); | ||
2238 | result = p + WVAL(p, 0); | ||
2239 | goto out; | ||
2240 | } | ||
2241 | |||
2242 | smb_finish_dirent(server, fattr); | ||
2243 | |||
2244 | #if 0 | ||
2245 | /* FIXME: These only work for ascii chars, and recent smbmount doesn't | ||
2246 | allow the flag to be set anyway. Remove? */ | ||
2247 | switch (server->opt.case_handling) { | ||
2248 | case SMB_CASE_UPPER: | ||
2249 | str_upper(qname->name, len); | ||
2250 | break; | ||
2251 | case SMB_CASE_LOWER: | ||
2252 | str_lower(qname->name, len); | ||
2253 | break; | ||
2254 | default: | ||
2255 | break; | ||
2256 | } | ||
2257 | #endif | ||
2258 | |||
2259 | qname->len = 0; | ||
2260 | n = server->ops->convert(name_buf, SMB_MAXNAMELEN, | ||
2261 | qname->name, len, | ||
2262 | server->remote_nls, server->local_nls); | ||
2263 | if (n > 0) { | ||
2264 | qname->len = n; | ||
2265 | qname->name = name_buf; | ||
2266 | } | ||
2267 | |||
2268 | out: | ||
2269 | return result; | ||
2270 | } | ||
2271 | |||
2272 | /* findfirst/findnext flags */ | ||
2273 | #define SMB_CLOSE_AFTER_FIRST (1<<0) | ||
2274 | #define SMB_CLOSE_IF_END (1<<1) | ||
2275 | #define SMB_REQUIRE_RESUME_KEY (1<<2) | ||
2276 | #define SMB_CONTINUE_BIT (1<<3) | ||
2277 | |||
2278 | /* | ||
2279 | * Note: samba-2.0.7 (at least) has a very similar routine, cli_list, in | ||
2280 | * source/libsmb/clilist.c. When looking for smb bugs in the readdir code, | ||
2281 | * go there for advise. | ||
2282 | * | ||
2283 | * Bugs Noted: | ||
2284 | * (1) When using Info Level 1 Win NT 4.0 truncates directory listings | ||
2285 | * for certain patterns of names and/or lengths. The breakage pattern | ||
2286 | * is completely reproducible and can be toggled by the creation of a | ||
2287 | * single file. (E.g. echo hi >foo breaks, rm -f foo works.) | ||
2288 | */ | ||
2289 | static int | ||
2290 | smb_proc_readdir_long(struct file *filp, void *dirent, filldir_t filldir, | ||
2291 | struct smb_cache_control *ctl) | ||
2292 | { | ||
2293 | struct dentry *dir = filp->f_path.dentry; | ||
2294 | struct smb_sb_info *server = server_from_dentry(dir); | ||
2295 | struct qstr qname; | ||
2296 | struct smb_fattr fattr; | ||
2297 | |||
2298 | unsigned char *p, *lastname; | ||
2299 | char *mask, *param; | ||
2300 | __u16 command; | ||
2301 | int first, entries_seen; | ||
2302 | |||
2303 | /* Both NT and OS/2 accept info level 1 (but see note below). */ | ||
2304 | int info_level = 260; | ||
2305 | const int max_matches = 512; | ||
2306 | |||
2307 | unsigned int ff_searchcount = 0; | ||
2308 | unsigned int ff_eos = 0; | ||
2309 | unsigned int ff_lastname = 0; | ||
2310 | unsigned int ff_dir_handle = 0; | ||
2311 | unsigned int loop_count = 0; | ||
2312 | unsigned int mask_len, i; | ||
2313 | int result; | ||
2314 | struct smb_request *req; | ||
2315 | unsigned char *name_buf; | ||
2316 | static struct qstr star = { | ||
2317 | .name = "*", | ||
2318 | .len = 1, | ||
2319 | }; | ||
2320 | |||
2321 | lock_kernel(); | ||
2322 | |||
2323 | /* | ||
2324 | * We always prefer unix style. Use info level 1 for older | ||
2325 | * servers that don't do 260. | ||
2326 | */ | ||
2327 | if (server->opt.capabilities & SMB_CAP_UNIX) | ||
2328 | info_level = SMB_FIND_FILE_UNIX; | ||
2329 | else if (server->opt.protocol < SMB_PROTOCOL_NT1) | ||
2330 | info_level = 1; | ||
2331 | |||
2332 | result = -ENOMEM; | ||
2333 | if (! (name_buf = kmalloc(SMB_MAXNAMELEN+2, GFP_KERNEL))) | ||
2334 | goto out; | ||
2335 | if (! (req = smb_alloc_request(server, server->opt.max_xmit))) | ||
2336 | goto out_name; | ||
2337 | param = req->rq_buffer; | ||
2338 | |||
2339 | /* | ||
2340 | * Encode the initial path | ||
2341 | */ | ||
2342 | mask = param + 12; | ||
2343 | |||
2344 | result = smb_encode_path(server, mask, SMB_MAXPATHLEN+1, dir, &star); | ||
2345 | if (result <= 0) | ||
2346 | goto out_free; | ||
2347 | mask_len = result - 1; /* mask_len is strlen, not #bytes */ | ||
2348 | result = 0; | ||
2349 | first = 1; | ||
2350 | VERBOSE("starting mask_len=%d, mask=%s\n", mask_len, mask); | ||
2351 | |||
2352 | entries_seen = 2; | ||
2353 | ff_eos = 0; | ||
2354 | |||
2355 | while (ff_eos == 0) { | ||
2356 | loop_count += 1; | ||
2357 | if (loop_count > 10) { | ||
2358 | printk(KERN_WARNING "smb_proc_readdir_long: " | ||
2359 | "Looping in FIND_NEXT??\n"); | ||
2360 | result = -EIO; | ||
2361 | break; | ||
2362 | } | ||
2363 | |||
2364 | if (first != 0) { | ||
2365 | command = TRANSACT2_FINDFIRST; | ||
2366 | WSET(param, 0, aSYSTEM | aHIDDEN | aDIR); | ||
2367 | WSET(param, 2, max_matches); /* max count */ | ||
2368 | WSET(param, 4, SMB_CLOSE_IF_END); | ||
2369 | WSET(param, 6, info_level); | ||
2370 | DSET(param, 8, 0); | ||
2371 | } else { | ||
2372 | command = TRANSACT2_FINDNEXT; | ||
2373 | |||
2374 | VERBOSE("handle=0x%X, lastname=%d, mask=%.*s\n", | ||
2375 | ff_dir_handle, ff_lastname, mask_len, mask); | ||
2376 | |||
2377 | WSET(param, 0, ff_dir_handle); /* search handle */ | ||
2378 | WSET(param, 2, max_matches); /* max count */ | ||
2379 | WSET(param, 4, info_level); | ||
2380 | DSET(param, 6, 0); | ||
2381 | WSET(param, 10, SMB_CONTINUE_BIT|SMB_CLOSE_IF_END); | ||
2382 | } | ||
2383 | |||
2384 | req->rq_trans2_command = command; | ||
2385 | req->rq_ldata = 0; | ||
2386 | req->rq_data = NULL; | ||
2387 | req->rq_lparm = 12 + mask_len + 1; | ||
2388 | req->rq_parm = param; | ||
2389 | req->rq_flags = 0; | ||
2390 | result = smb_add_request(req); | ||
2391 | if (result < 0) { | ||
2392 | PARANOIA("error=%d, breaking\n", result); | ||
2393 | break; | ||
2394 | } | ||
2395 | |||
2396 | if (req->rq_rcls == ERRSRV && req->rq_err == ERRerror) { | ||
2397 | /* a damn Win95 bug - sometimes it clags if you | ||
2398 | ask it too fast */ | ||
2399 | schedule_timeout_interruptible(msecs_to_jiffies(200)); | ||
2400 | continue; | ||
2401 | } | ||
2402 | |||
2403 | if (req->rq_rcls != 0) { | ||
2404 | result = smb_errno(req); | ||
2405 | PARANOIA("name=%s, result=%d, rcls=%d, err=%d\n", | ||
2406 | mask, result, req->rq_rcls, req->rq_err); | ||
2407 | break; | ||
2408 | } | ||
2409 | |||
2410 | /* parse out some important return info */ | ||
2411 | if (first != 0) { | ||
2412 | ff_dir_handle = WVAL(req->rq_parm, 0); | ||
2413 | ff_searchcount = WVAL(req->rq_parm, 2); | ||
2414 | ff_eos = WVAL(req->rq_parm, 4); | ||
2415 | ff_lastname = WVAL(req->rq_parm, 8); | ||
2416 | } else { | ||
2417 | ff_searchcount = WVAL(req->rq_parm, 0); | ||
2418 | ff_eos = WVAL(req->rq_parm, 2); | ||
2419 | ff_lastname = WVAL(req->rq_parm, 6); | ||
2420 | } | ||
2421 | |||
2422 | if (ff_searchcount == 0) | ||
2423 | break; | ||
2424 | |||
2425 | /* Now we are ready to parse smb directory entries. */ | ||
2426 | |||
2427 | /* point to the data bytes */ | ||
2428 | p = req->rq_data; | ||
2429 | for (i = 0; i < ff_searchcount; i++) { | ||
2430 | /* make sure we stay within the buffer */ | ||
2431 | if (p >= req->rq_data + req->rq_ldata) { | ||
2432 | printk(KERN_ERR "smb_proc_readdir_long: " | ||
2433 | "dirent pointer outside buffer! " | ||
2434 | "%p %d@%p\n", | ||
2435 | p, req->rq_ldata, req->rq_data); | ||
2436 | result = -EIO; /* always a comm. error? */ | ||
2437 | goto out_free; | ||
2438 | } | ||
2439 | |||
2440 | p = smb_decode_long_dirent(server, p, info_level, | ||
2441 | &qname, &fattr, name_buf); | ||
2442 | |||
2443 | /* ignore . and .. from the server */ | ||
2444 | if (entries_seen == 2 && qname.name[0] == '.') { | ||
2445 | if (qname.len == 1) | ||
2446 | continue; | ||
2447 | if (qname.name[1] == '.' && qname.len == 2) | ||
2448 | continue; | ||
2449 | } | ||
2450 | |||
2451 | if (!smb_fill_cache(filp, dirent, filldir, ctl, | ||
2452 | &qname, &fattr)) | ||
2453 | ; /* stop reading? */ | ||
2454 | entries_seen++; | ||
2455 | } | ||
2456 | |||
2457 | VERBOSE("received %d entries, eos=%d\n", ff_searchcount,ff_eos); | ||
2458 | |||
2459 | /* | ||
2460 | * We might need the lastname for continuations. | ||
2461 | * | ||
2462 | * Note that some servers (win95?) point to the filename and | ||
2463 | * others (NT4, Samba using NT1) to the dir entry. We assume | ||
2464 | * here that those who do not point to a filename do not need | ||
2465 | * this info to continue the listing. | ||
2466 | * | ||
2467 | * OS/2 needs this and talks infolevel 1. | ||
2468 | * NetApps want lastname with infolevel 260. | ||
2469 | * win2k want lastname with infolevel 260, and points to | ||
2470 | * the record not to the name. | ||
2471 | * Samba+CifsUnixExt doesn't need lastname. | ||
2472 | * | ||
2473 | * Both are happy if we return the data they point to. So we do. | ||
2474 | * (FIXME: above is not true with win2k) | ||
2475 | */ | ||
2476 | mask_len = 0; | ||
2477 | if (info_level != SMB_FIND_FILE_UNIX && | ||
2478 | ff_lastname > 0 && ff_lastname < req->rq_ldata) { | ||
2479 | lastname = req->rq_data + ff_lastname; | ||
2480 | |||
2481 | switch (info_level) { | ||
2482 | case 260: | ||
2483 | mask_len = req->rq_ldata - ff_lastname; | ||
2484 | break; | ||
2485 | case 1: | ||
2486 | /* lastname points to a length byte */ | ||
2487 | mask_len = *lastname++; | ||
2488 | if (ff_lastname + 1 + mask_len > req->rq_ldata) | ||
2489 | mask_len = req->rq_ldata - ff_lastname - 1; | ||
2490 | break; | ||
2491 | } | ||
2492 | |||
2493 | /* | ||
2494 | * Update the mask string for the next message. | ||
2495 | */ | ||
2496 | if (mask_len > 255) | ||
2497 | mask_len = 255; | ||
2498 | if (mask_len) | ||
2499 | strncpy(mask, lastname, mask_len); | ||
2500 | } | ||
2501 | mask_len = strnlen(mask, mask_len); | ||
2502 | VERBOSE("new mask, len=%d@%d of %d, mask=%.*s\n", | ||
2503 | mask_len, ff_lastname, req->rq_ldata, mask_len, mask); | ||
2504 | |||
2505 | first = 0; | ||
2506 | loop_count = 0; | ||
2507 | } | ||
2508 | |||
2509 | out_free: | ||
2510 | smb_rput(req); | ||
2511 | out_name: | ||
2512 | kfree(name_buf); | ||
2513 | out: | ||
2514 | unlock_kernel(); | ||
2515 | return result; | ||
2516 | } | ||
2517 | |||
2518 | /* | ||
2519 | * This version uses the trans2 TRANSACT2_FINDFIRST message | ||
2520 | * to get the attribute data. | ||
2521 | * | ||
2522 | * Bugs Noted: | ||
2523 | */ | ||
2524 | static int | ||
2525 | smb_proc_getattr_ff(struct smb_sb_info *server, struct dentry *dentry, | ||
2526 | struct smb_fattr *fattr) | ||
2527 | { | ||
2528 | char *param, *mask; | ||
2529 | __u16 date, time; | ||
2530 | int mask_len, result; | ||
2531 | struct smb_request *req; | ||
2532 | |||
2533 | result = -ENOMEM; | ||
2534 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2535 | goto out; | ||
2536 | param = req->rq_buffer; | ||
2537 | mask = param + 12; | ||
2538 | |||
2539 | mask_len = smb_encode_path(server, mask, SMB_MAXPATHLEN+1, dentry,NULL); | ||
2540 | if (mask_len < 0) { | ||
2541 | result = mask_len; | ||
2542 | goto out_free; | ||
2543 | } | ||
2544 | VERBOSE("name=%s, len=%d\n", mask, mask_len); | ||
2545 | WSET(param, 0, aSYSTEM | aHIDDEN | aDIR); | ||
2546 | WSET(param, 2, 1); /* max count */ | ||
2547 | WSET(param, 4, 1); /* close after this call */ | ||
2548 | WSET(param, 6, 1); /* info_level */ | ||
2549 | DSET(param, 8, 0); | ||
2550 | |||
2551 | req->rq_trans2_command = TRANSACT2_FINDFIRST; | ||
2552 | req->rq_ldata = 0; | ||
2553 | req->rq_data = NULL; | ||
2554 | req->rq_lparm = 12 + mask_len; | ||
2555 | req->rq_parm = param; | ||
2556 | req->rq_flags = 0; | ||
2557 | result = smb_add_request(req); | ||
2558 | if (result < 0) | ||
2559 | goto out_free; | ||
2560 | if (req->rq_rcls != 0) { | ||
2561 | result = smb_errno(req); | ||
2562 | #ifdef SMBFS_PARANOIA | ||
2563 | if (result != -ENOENT) | ||
2564 | PARANOIA("error for %s, rcls=%d, err=%d\n", | ||
2565 | mask, req->rq_rcls, req->rq_err); | ||
2566 | #endif | ||
2567 | goto out_free; | ||
2568 | } | ||
2569 | /* Make sure we got enough data ... */ | ||
2570 | result = -EINVAL; | ||
2571 | if (req->rq_ldata < 22 || WVAL(req->rq_parm, 2) != 1) { | ||
2572 | PARANOIA("bad result for %s, len=%d, count=%d\n", | ||
2573 | mask, req->rq_ldata, WVAL(req->rq_parm, 2)); | ||
2574 | goto out_free; | ||
2575 | } | ||
2576 | |||
2577 | /* | ||
2578 | * Decode the response into the fattr ... | ||
2579 | */ | ||
2580 | date = WVAL(req->rq_data, 0); | ||
2581 | time = WVAL(req->rq_data, 2); | ||
2582 | fattr->f_ctime.tv_sec = date_dos2unix(server, date, time); | ||
2583 | fattr->f_ctime.tv_nsec = 0; | ||
2584 | |||
2585 | date = WVAL(req->rq_data, 4); | ||
2586 | time = WVAL(req->rq_data, 6); | ||
2587 | fattr->f_atime.tv_sec = date_dos2unix(server, date, time); | ||
2588 | fattr->f_atime.tv_nsec = 0; | ||
2589 | |||
2590 | date = WVAL(req->rq_data, 8); | ||
2591 | time = WVAL(req->rq_data, 10); | ||
2592 | fattr->f_mtime.tv_sec = date_dos2unix(server, date, time); | ||
2593 | fattr->f_mtime.tv_nsec = 0; | ||
2594 | VERBOSE("name=%s, date=%x, time=%x, mtime=%ld\n", | ||
2595 | mask, date, time, fattr->f_mtime.tv_sec); | ||
2596 | fattr->f_size = DVAL(req->rq_data, 12); | ||
2597 | /* ULONG allocation size */ | ||
2598 | fattr->attr = WVAL(req->rq_data, 20); | ||
2599 | result = 0; | ||
2600 | |||
2601 | out_free: | ||
2602 | smb_rput(req); | ||
2603 | out: | ||
2604 | return result; | ||
2605 | } | ||
2606 | |||
2607 | static int | ||
2608 | smb_proc_getattr_core(struct smb_sb_info *server, struct dentry *dir, | ||
2609 | struct smb_fattr *fattr) | ||
2610 | { | ||
2611 | int result; | ||
2612 | char *p; | ||
2613 | struct smb_request *req; | ||
2614 | |||
2615 | result = -ENOMEM; | ||
2616 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2617 | goto out; | ||
2618 | |||
2619 | p = smb_setup_header(req, SMBgetatr, 0, 0); | ||
2620 | result = smb_simple_encode_path(req, &p, dir, NULL); | ||
2621 | if (result < 0) | ||
2622 | goto out_free; | ||
2623 | smb_setup_bcc(req, p); | ||
2624 | |||
2625 | if ((result = smb_request_ok(req, SMBgetatr, 10, 0)) < 0) | ||
2626 | goto out_free; | ||
2627 | fattr->attr = WVAL(req->rq_header, smb_vwv0); | ||
2628 | fattr->f_mtime.tv_sec = local2utc(server, DVAL(req->rq_header, smb_vwv1)); | ||
2629 | fattr->f_mtime.tv_nsec = 0; | ||
2630 | fattr->f_size = DVAL(req->rq_header, smb_vwv3); | ||
2631 | fattr->f_ctime = fattr->f_mtime; | ||
2632 | fattr->f_atime = fattr->f_mtime; | ||
2633 | #ifdef SMBFS_DEBUG_TIMESTAMP | ||
2634 | printk("getattr_core: %s/%s, mtime=%ld\n", | ||
2635 | DENTRY_PATH(dir), fattr->f_mtime); | ||
2636 | #endif | ||
2637 | result = 0; | ||
2638 | |||
2639 | out_free: | ||
2640 | smb_rput(req); | ||
2641 | out: | ||
2642 | return result; | ||
2643 | } | ||
2644 | |||
2645 | /* | ||
2646 | * Bugs Noted: | ||
2647 | * (1) Win 95 swaps the date and time fields in the standard info level. | ||
2648 | */ | ||
2649 | static int | ||
2650 | smb_proc_getattr_trans2(struct smb_sb_info *server, struct dentry *dir, | ||
2651 | struct smb_request *req, int infolevel) | ||
2652 | { | ||
2653 | char *p, *param; | ||
2654 | int result; | ||
2655 | |||
2656 | param = req->rq_buffer; | ||
2657 | WSET(param, 0, infolevel); | ||
2658 | DSET(param, 2, 0); | ||
2659 | result = smb_encode_path(server, param+6, SMB_MAXPATHLEN+1, dir, NULL); | ||
2660 | if (result < 0) | ||
2661 | goto out; | ||
2662 | p = param + 6 + result; | ||
2663 | |||
2664 | req->rq_trans2_command = TRANSACT2_QPATHINFO; | ||
2665 | req->rq_ldata = 0; | ||
2666 | req->rq_data = NULL; | ||
2667 | req->rq_lparm = p - param; | ||
2668 | req->rq_parm = param; | ||
2669 | req->rq_flags = 0; | ||
2670 | result = smb_add_request(req); | ||
2671 | if (result < 0) | ||
2672 | goto out; | ||
2673 | if (req->rq_rcls != 0) { | ||
2674 | VERBOSE("for %s: result=%d, rcls=%d, err=%d\n", | ||
2675 | ¶m[6], result, req->rq_rcls, req->rq_err); | ||
2676 | result = smb_errno(req); | ||
2677 | goto out; | ||
2678 | } | ||
2679 | result = -ENOENT; | ||
2680 | if (req->rq_ldata < 22) { | ||
2681 | PARANOIA("not enough data for %s, len=%d\n", | ||
2682 | ¶m[6], req->rq_ldata); | ||
2683 | goto out; | ||
2684 | } | ||
2685 | |||
2686 | result = 0; | ||
2687 | out: | ||
2688 | return result; | ||
2689 | } | ||
2690 | |||
2691 | static int | ||
2692 | smb_proc_getattr_trans2_std(struct smb_sb_info *server, struct dentry *dir, | ||
2693 | struct smb_fattr *attr) | ||
2694 | { | ||
2695 | u16 date, time; | ||
2696 | int off_date = 0, off_time = 2; | ||
2697 | int result; | ||
2698 | struct smb_request *req; | ||
2699 | |||
2700 | result = -ENOMEM; | ||
2701 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2702 | goto out; | ||
2703 | |||
2704 | result = smb_proc_getattr_trans2(server, dir, req, SMB_INFO_STANDARD); | ||
2705 | if (result < 0) | ||
2706 | goto out_free; | ||
2707 | |||
2708 | /* | ||
2709 | * Kludge alert: Win 95 swaps the date and time field, | ||
2710 | * contrary to the CIFS docs and Win NT practice. | ||
2711 | */ | ||
2712 | if (server->mnt->flags & SMB_MOUNT_WIN95) { | ||
2713 | off_date = 2; | ||
2714 | off_time = 0; | ||
2715 | } | ||
2716 | date = WVAL(req->rq_data, off_date); | ||
2717 | time = WVAL(req->rq_data, off_time); | ||
2718 | attr->f_ctime.tv_sec = date_dos2unix(server, date, time); | ||
2719 | attr->f_ctime.tv_nsec = 0; | ||
2720 | |||
2721 | date = WVAL(req->rq_data, 4 + off_date); | ||
2722 | time = WVAL(req->rq_data, 4 + off_time); | ||
2723 | attr->f_atime.tv_sec = date_dos2unix(server, date, time); | ||
2724 | attr->f_atime.tv_nsec = 0; | ||
2725 | |||
2726 | date = WVAL(req->rq_data, 8 + off_date); | ||
2727 | time = WVAL(req->rq_data, 8 + off_time); | ||
2728 | attr->f_mtime.tv_sec = date_dos2unix(server, date, time); | ||
2729 | attr->f_mtime.tv_nsec = 0; | ||
2730 | #ifdef SMBFS_DEBUG_TIMESTAMP | ||
2731 | printk(KERN_DEBUG "getattr_trans2: %s/%s, date=%x, time=%x, mtime=%ld\n", | ||
2732 | DENTRY_PATH(dir), date, time, attr->f_mtime); | ||
2733 | #endif | ||
2734 | attr->f_size = DVAL(req->rq_data, 12); | ||
2735 | attr->attr = WVAL(req->rq_data, 20); | ||
2736 | |||
2737 | out_free: | ||
2738 | smb_rput(req); | ||
2739 | out: | ||
2740 | return result; | ||
2741 | } | ||
2742 | |||
2743 | static int | ||
2744 | smb_proc_getattr_trans2_all(struct smb_sb_info *server, struct dentry *dir, | ||
2745 | struct smb_fattr *attr) | ||
2746 | { | ||
2747 | struct smb_request *req; | ||
2748 | int result; | ||
2749 | |||
2750 | result = -ENOMEM; | ||
2751 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2752 | goto out; | ||
2753 | |||
2754 | result = smb_proc_getattr_trans2(server, dir, req, | ||
2755 | SMB_QUERY_FILE_ALL_INFO); | ||
2756 | if (result < 0) | ||
2757 | goto out_free; | ||
2758 | |||
2759 | attr->f_ctime = smb_ntutc2unixutc(LVAL(req->rq_data, 0)); | ||
2760 | attr->f_atime = smb_ntutc2unixutc(LVAL(req->rq_data, 8)); | ||
2761 | attr->f_mtime = smb_ntutc2unixutc(LVAL(req->rq_data, 16)); | ||
2762 | /* change (24) */ | ||
2763 | attr->attr = WVAL(req->rq_data, 32); | ||
2764 | /* pad? (34) */ | ||
2765 | /* allocated size (40) */ | ||
2766 | attr->f_size = LVAL(req->rq_data, 48); | ||
2767 | |||
2768 | out_free: | ||
2769 | smb_rput(req); | ||
2770 | out: | ||
2771 | return result; | ||
2772 | } | ||
2773 | |||
2774 | static int | ||
2775 | smb_proc_getattr_unix(struct smb_sb_info *server, struct dentry *dir, | ||
2776 | struct smb_fattr *attr) | ||
2777 | { | ||
2778 | struct smb_request *req; | ||
2779 | int result; | ||
2780 | |||
2781 | result = -ENOMEM; | ||
2782 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2783 | goto out; | ||
2784 | |||
2785 | result = smb_proc_getattr_trans2(server, dir, req, | ||
2786 | SMB_QUERY_FILE_UNIX_BASIC); | ||
2787 | if (result < 0) | ||
2788 | goto out_free; | ||
2789 | |||
2790 | smb_decode_unix_basic(attr, server, req->rq_data); | ||
2791 | |||
2792 | out_free: | ||
2793 | smb_rput(req); | ||
2794 | out: | ||
2795 | return result; | ||
2796 | } | ||
2797 | |||
2798 | static int | ||
2799 | smb_proc_getattr_95(struct smb_sb_info *server, struct dentry *dir, | ||
2800 | struct smb_fattr *attr) | ||
2801 | { | ||
2802 | struct inode *inode = dir->d_inode; | ||
2803 | int result; | ||
2804 | |||
2805 | /* FIXME: why not use the "all" version? */ | ||
2806 | result = smb_proc_getattr_trans2_std(server, dir, attr); | ||
2807 | if (result < 0) | ||
2808 | goto out; | ||
2809 | |||
2810 | /* | ||
2811 | * None of the getattr versions here can make win9x return the right | ||
2812 | * filesize if there are changes made to an open file. | ||
2813 | * A seek-to-end does return the right size, but we only need to do | ||
2814 | * that on files we have written. | ||
2815 | */ | ||
2816 | if (inode && SMB_I(inode)->flags & SMB_F_LOCALWRITE && | ||
2817 | smb_is_open(inode)) | ||
2818 | { | ||
2819 | __u16 fileid = SMB_I(inode)->fileid; | ||
2820 | attr->f_size = smb_proc_seek(server, fileid, 2, 0); | ||
2821 | } | ||
2822 | |||
2823 | out: | ||
2824 | return result; | ||
2825 | } | ||
2826 | |||
2827 | static int | ||
2828 | smb_proc_ops_wait(struct smb_sb_info *server) | ||
2829 | { | ||
2830 | int result; | ||
2831 | |||
2832 | result = wait_event_interruptible_timeout(server->conn_wq, | ||
2833 | server->conn_complete, 30*HZ); | ||
2834 | |||
2835 | if (!result || signal_pending(current)) | ||
2836 | return -EIO; | ||
2837 | |||
2838 | return 0; | ||
2839 | } | ||
2840 | |||
2841 | static int | ||
2842 | smb_proc_getattr_null(struct smb_sb_info *server, struct dentry *dir, | ||
2843 | struct smb_fattr *fattr) | ||
2844 | { | ||
2845 | int result; | ||
2846 | |||
2847 | if (smb_proc_ops_wait(server) < 0) | ||
2848 | return -EIO; | ||
2849 | |||
2850 | smb_init_dirent(server, fattr); | ||
2851 | result = server->ops->getattr(server, dir, fattr); | ||
2852 | smb_finish_dirent(server, fattr); | ||
2853 | |||
2854 | return result; | ||
2855 | } | ||
2856 | |||
2857 | static int | ||
2858 | smb_proc_readdir_null(struct file *filp, void *dirent, filldir_t filldir, | ||
2859 | struct smb_cache_control *ctl) | ||
2860 | { | ||
2861 | struct smb_sb_info *server = server_from_dentry(filp->f_path.dentry); | ||
2862 | |||
2863 | if (smb_proc_ops_wait(server) < 0) | ||
2864 | return -EIO; | ||
2865 | |||
2866 | return server->ops->readdir(filp, dirent, filldir, ctl); | ||
2867 | } | ||
2868 | |||
2869 | int | ||
2870 | smb_proc_getattr(struct dentry *dir, struct smb_fattr *fattr) | ||
2871 | { | ||
2872 | struct smb_sb_info *server = server_from_dentry(dir); | ||
2873 | int result; | ||
2874 | |||
2875 | smb_init_dirent(server, fattr); | ||
2876 | result = server->ops->getattr(server, dir, fattr); | ||
2877 | smb_finish_dirent(server, fattr); | ||
2878 | |||
2879 | return result; | ||
2880 | } | ||
2881 | |||
2882 | |||
2883 | /* | ||
2884 | * Because of bugs in the core protocol, we use this only to set | ||
2885 | * attributes. See smb_proc_settime() below for timestamp handling. | ||
2886 | * | ||
2887 | * Bugs Noted: | ||
2888 | * (1) If mtime is non-zero, both Win 3.1 and Win 95 fail | ||
2889 | * with an undocumented error (ERRDOS code 50). Setting | ||
2890 | * mtime to 0 allows the attributes to be set. | ||
2891 | * (2) The extra parameters following the name string aren't | ||
2892 | * in the CIFS docs, but seem to be necessary for operation. | ||
2893 | */ | ||
2894 | static int | ||
2895 | smb_proc_setattr_core(struct smb_sb_info *server, struct dentry *dentry, | ||
2896 | __u16 attr) | ||
2897 | { | ||
2898 | char *p; | ||
2899 | int result; | ||
2900 | struct smb_request *req; | ||
2901 | |||
2902 | result = -ENOMEM; | ||
2903 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
2904 | goto out; | ||
2905 | |||
2906 | p = smb_setup_header(req, SMBsetatr, 8, 0); | ||
2907 | WSET(req->rq_header, smb_vwv0, attr); | ||
2908 | DSET(req->rq_header, smb_vwv1, 0); /* mtime */ | ||
2909 | WSET(req->rq_header, smb_vwv3, 0); /* reserved values */ | ||
2910 | WSET(req->rq_header, smb_vwv4, 0); | ||
2911 | WSET(req->rq_header, smb_vwv5, 0); | ||
2912 | WSET(req->rq_header, smb_vwv6, 0); | ||
2913 | WSET(req->rq_header, smb_vwv7, 0); | ||
2914 | result = smb_simple_encode_path(req, &p, dentry, NULL); | ||
2915 | if (result < 0) | ||
2916 | goto out_free; | ||
2917 | if (p + 2 > (char *)req->rq_buffer + req->rq_bufsize) { | ||
2918 | result = -ENAMETOOLONG; | ||
2919 | goto out_free; | ||
2920 | } | ||
2921 | *p++ = 4; | ||
2922 | *p++ = 0; | ||
2923 | smb_setup_bcc(req, p); | ||
2924 | |||
2925 | result = smb_request_ok(req, SMBsetatr, 0, 0); | ||
2926 | if (result < 0) | ||
2927 | goto out_free; | ||
2928 | result = 0; | ||
2929 | |||
2930 | out_free: | ||
2931 | smb_rput(req); | ||
2932 | out: | ||
2933 | return result; | ||
2934 | } | ||
2935 | |||
2936 | /* | ||
2937 | * Because of bugs in the trans2 setattr messages, we must set | ||
2938 | * attributes and timestamps separately. The core SMBsetatr | ||
2939 | * message seems to be the only reliable way to set attributes. | ||
2940 | */ | ||
2941 | int | ||
2942 | smb_proc_setattr(struct dentry *dir, struct smb_fattr *fattr) | ||
2943 | { | ||
2944 | struct smb_sb_info *server = server_from_dentry(dir); | ||
2945 | int result; | ||
2946 | |||
2947 | VERBOSE("setting %s/%s, open=%d\n", | ||
2948 | DENTRY_PATH(dir), smb_is_open(dir->d_inode)); | ||
2949 | result = smb_proc_setattr_core(server, dir, fattr->attr); | ||
2950 | return result; | ||
2951 | } | ||
2952 | |||
2953 | /* | ||
2954 | * Sets the timestamps for an file open with write permissions. | ||
2955 | */ | ||
2956 | static int | ||
2957 | smb_proc_setattr_ext(struct smb_sb_info *server, | ||
2958 | struct inode *inode, struct smb_fattr *fattr) | ||
2959 | { | ||
2960 | __u16 date, time; | ||
2961 | int result; | ||
2962 | struct smb_request *req; | ||
2963 | |||
2964 | result = -ENOMEM; | ||
2965 | if (! (req = smb_alloc_request(server, 0))) | ||
2966 | goto out; | ||
2967 | |||
2968 | smb_setup_header(req, SMBsetattrE, 7, 0); | ||
2969 | WSET(req->rq_header, smb_vwv0, SMB_I(inode)->fileid); | ||
2970 | /* We don't change the creation time */ | ||
2971 | WSET(req->rq_header, smb_vwv1, 0); | ||
2972 | WSET(req->rq_header, smb_vwv2, 0); | ||
2973 | date_unix2dos(server, fattr->f_atime.tv_sec, &date, &time); | ||
2974 | WSET(req->rq_header, smb_vwv3, date); | ||
2975 | WSET(req->rq_header, smb_vwv4, time); | ||
2976 | date_unix2dos(server, fattr->f_mtime.tv_sec, &date, &time); | ||
2977 | WSET(req->rq_header, smb_vwv5, date); | ||
2978 | WSET(req->rq_header, smb_vwv6, time); | ||
2979 | #ifdef SMBFS_DEBUG_TIMESTAMP | ||
2980 | printk(KERN_DEBUG "smb_proc_setattr_ext: date=%d, time=%d, mtime=%ld\n", | ||
2981 | date, time, fattr->f_mtime); | ||
2982 | #endif | ||
2983 | |||
2984 | req->rq_flags |= SMB_REQ_NORETRY; | ||
2985 | result = smb_request_ok(req, SMBsetattrE, 0, 0); | ||
2986 | if (result < 0) | ||
2987 | goto out_free; | ||
2988 | result = 0; | ||
2989 | out_free: | ||
2990 | smb_rput(req); | ||
2991 | out: | ||
2992 | return result; | ||
2993 | } | ||
2994 | |||
2995 | /* | ||
2996 | * Bugs Noted: | ||
2997 | * (1) The TRANSACT2_SETPATHINFO message under Win NT 4.0 doesn't | ||
2998 | * set the file's attribute flags. | ||
2999 | */ | ||
3000 | static int | ||
3001 | smb_proc_setattr_trans2(struct smb_sb_info *server, | ||
3002 | struct dentry *dir, struct smb_fattr *fattr) | ||
3003 | { | ||
3004 | __u16 date, time; | ||
3005 | char *p, *param; | ||
3006 | int result; | ||
3007 | char data[26]; | ||
3008 | struct smb_request *req; | ||
3009 | |||
3010 | result = -ENOMEM; | ||
3011 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
3012 | goto out; | ||
3013 | param = req->rq_buffer; | ||
3014 | |||
3015 | WSET(param, 0, 1); /* Info level SMB_INFO_STANDARD */ | ||
3016 | DSET(param, 2, 0); | ||
3017 | result = smb_encode_path(server, param+6, SMB_MAXPATHLEN+1, dir, NULL); | ||
3018 | if (result < 0) | ||
3019 | goto out_free; | ||
3020 | p = param + 6 + result; | ||
3021 | |||
3022 | WSET(data, 0, 0); /* creation time */ | ||
3023 | WSET(data, 2, 0); | ||
3024 | date_unix2dos(server, fattr->f_atime.tv_sec, &date, &time); | ||
3025 | WSET(data, 4, date); | ||
3026 | WSET(data, 6, time); | ||
3027 | date_unix2dos(server, fattr->f_mtime.tv_sec, &date, &time); | ||
3028 | WSET(data, 8, date); | ||
3029 | WSET(data, 10, time); | ||
3030 | #ifdef SMBFS_DEBUG_TIMESTAMP | ||
3031 | printk(KERN_DEBUG "setattr_trans2: %s/%s, date=%x, time=%x, mtime=%ld\n", | ||
3032 | DENTRY_PATH(dir), date, time, fattr->f_mtime); | ||
3033 | #endif | ||
3034 | DSET(data, 12, 0); /* size */ | ||
3035 | DSET(data, 16, 0); /* blksize */ | ||
3036 | WSET(data, 20, 0); /* attr */ | ||
3037 | DSET(data, 22, 0); /* ULONG EA size */ | ||
3038 | |||
3039 | req->rq_trans2_command = TRANSACT2_SETPATHINFO; | ||
3040 | req->rq_ldata = 26; | ||
3041 | req->rq_data = data; | ||
3042 | req->rq_lparm = p - param; | ||
3043 | req->rq_parm = param; | ||
3044 | req->rq_flags = 0; | ||
3045 | result = smb_add_request(req); | ||
3046 | if (result < 0) | ||
3047 | goto out_free; | ||
3048 | result = 0; | ||
3049 | if (req->rq_rcls != 0) | ||
3050 | result = smb_errno(req); | ||
3051 | |||
3052 | out_free: | ||
3053 | smb_rput(req); | ||
3054 | out: | ||
3055 | return result; | ||
3056 | } | ||
3057 | |||
3058 | /* | ||
3059 | * ATTR_MODE 0x001 | ||
3060 | * ATTR_UID 0x002 | ||
3061 | * ATTR_GID 0x004 | ||
3062 | * ATTR_SIZE 0x008 | ||
3063 | * ATTR_ATIME 0x010 | ||
3064 | * ATTR_MTIME 0x020 | ||
3065 | * ATTR_CTIME 0x040 | ||
3066 | * ATTR_ATIME_SET 0x080 | ||
3067 | * ATTR_MTIME_SET 0x100 | ||
3068 | * ATTR_FORCE 0x200 | ||
3069 | * ATTR_ATTR_FLAG 0x400 | ||
3070 | * | ||
3071 | * major/minor should only be set by mknod. | ||
3072 | */ | ||
3073 | int | ||
3074 | smb_proc_setattr_unix(struct dentry *d, struct iattr *attr, | ||
3075 | unsigned int major, unsigned int minor) | ||
3076 | { | ||
3077 | struct smb_sb_info *server = server_from_dentry(d); | ||
3078 | u64 nttime; | ||
3079 | char *p, *param; | ||
3080 | int result; | ||
3081 | char data[100]; | ||
3082 | struct smb_request *req; | ||
3083 | |||
3084 | result = -ENOMEM; | ||
3085 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
3086 | goto out; | ||
3087 | param = req->rq_buffer; | ||
3088 | |||
3089 | DEBUG1("valid flags = 0x%04x\n", attr->ia_valid); | ||
3090 | |||
3091 | WSET(param, 0, SMB_SET_FILE_UNIX_BASIC); | ||
3092 | DSET(param, 2, 0); | ||
3093 | result = smb_encode_path(server, param+6, SMB_MAXPATHLEN+1, d, NULL); | ||
3094 | if (result < 0) | ||
3095 | goto out_free; | ||
3096 | p = param + 6 + result; | ||
3097 | |||
3098 | /* 0 L file size in bytes */ | ||
3099 | /* 8 L file size on disk in bytes (block count) */ | ||
3100 | /* 40 L uid */ | ||
3101 | /* 48 L gid */ | ||
3102 | /* 56 W file type enum */ | ||
3103 | /* 60 L devmajor */ | ||
3104 | /* 68 L devminor */ | ||
3105 | /* 76 L unique ID (inode) */ | ||
3106 | /* 84 L permissions */ | ||
3107 | /* 92 L link count */ | ||
3108 | LSET(data, 0, SMB_SIZE_NO_CHANGE); | ||
3109 | LSET(data, 8, SMB_SIZE_NO_CHANGE); | ||
3110 | LSET(data, 16, SMB_TIME_NO_CHANGE); | ||
3111 | LSET(data, 24, SMB_TIME_NO_CHANGE); | ||
3112 | LSET(data, 32, SMB_TIME_NO_CHANGE); | ||
3113 | LSET(data, 40, SMB_UID_NO_CHANGE); | ||
3114 | LSET(data, 48, SMB_GID_NO_CHANGE); | ||
3115 | DSET(data, 56, smb_filetype_from_mode(attr->ia_mode)); | ||
3116 | LSET(data, 60, major); | ||
3117 | LSET(data, 68, minor); | ||
3118 | LSET(data, 76, 0); | ||
3119 | LSET(data, 84, SMB_MODE_NO_CHANGE); | ||
3120 | LSET(data, 92, 0); | ||
3121 | |||
3122 | if (attr->ia_valid & ATTR_SIZE) { | ||
3123 | LSET(data, 0, attr->ia_size); | ||
3124 | LSET(data, 8, 0); /* can't set anyway */ | ||
3125 | } | ||
3126 | |||
3127 | /* | ||
3128 | * FIXME: check the conversion function it the correct one | ||
3129 | * | ||
3130 | * we can't set ctime but we might as well pass this to the server | ||
3131 | * and let it ignore it. | ||
3132 | */ | ||
3133 | if (attr->ia_valid & ATTR_CTIME) { | ||
3134 | nttime = smb_unixutc2ntutc(attr->ia_ctime); | ||
3135 | LSET(data, 16, nttime); | ||
3136 | } | ||
3137 | if (attr->ia_valid & ATTR_ATIME) { | ||
3138 | nttime = smb_unixutc2ntutc(attr->ia_atime); | ||
3139 | LSET(data, 24, nttime); | ||
3140 | } | ||
3141 | if (attr->ia_valid & ATTR_MTIME) { | ||
3142 | nttime = smb_unixutc2ntutc(attr->ia_mtime); | ||
3143 | LSET(data, 32, nttime); | ||
3144 | } | ||
3145 | |||
3146 | if (attr->ia_valid & ATTR_UID) { | ||
3147 | LSET(data, 40, attr->ia_uid); | ||
3148 | } | ||
3149 | if (attr->ia_valid & ATTR_GID) { | ||
3150 | LSET(data, 48, attr->ia_gid); | ||
3151 | } | ||
3152 | |||
3153 | if (attr->ia_valid & ATTR_MODE) { | ||
3154 | LSET(data, 84, attr->ia_mode); | ||
3155 | } | ||
3156 | |||
3157 | req->rq_trans2_command = TRANSACT2_SETPATHINFO; | ||
3158 | req->rq_ldata = 100; | ||
3159 | req->rq_data = data; | ||
3160 | req->rq_lparm = p - param; | ||
3161 | req->rq_parm = param; | ||
3162 | req->rq_flags = 0; | ||
3163 | result = smb_add_request(req); | ||
3164 | |||
3165 | out_free: | ||
3166 | smb_rput(req); | ||
3167 | out: | ||
3168 | return result; | ||
3169 | } | ||
3170 | |||
3171 | |||
3172 | /* | ||
3173 | * Set the modify and access timestamps for a file. | ||
3174 | * | ||
3175 | * Incredibly enough, in all of SMB there is no message to allow | ||
3176 | * setting both attributes and timestamps at once. | ||
3177 | * | ||
3178 | * Bugs Noted: | ||
3179 | * (1) Win 95 doesn't support the TRANSACT2_SETFILEINFO message | ||
3180 | * with info level 1 (INFO_STANDARD). | ||
3181 | * (2) Win 95 seems not to support setting directory timestamps. | ||
3182 | * (3) Under the core protocol apparently the only way to set the | ||
3183 | * timestamp is to open and close the file. | ||
3184 | */ | ||
3185 | int | ||
3186 | smb_proc_settime(struct dentry *dentry, struct smb_fattr *fattr) | ||
3187 | { | ||
3188 | struct smb_sb_info *server = server_from_dentry(dentry); | ||
3189 | struct inode *inode = dentry->d_inode; | ||
3190 | int result; | ||
3191 | |||
3192 | VERBOSE("setting %s/%s, open=%d\n", | ||
3193 | DENTRY_PATH(dentry), smb_is_open(inode)); | ||
3194 | |||
3195 | /* setting the time on a Win95 server fails (tridge) */ | ||
3196 | if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2 && | ||
3197 | !(server->mnt->flags & SMB_MOUNT_WIN95)) { | ||
3198 | if (smb_is_open(inode) && SMB_I(inode)->access != SMB_O_RDONLY) | ||
3199 | result = smb_proc_setattr_ext(server, inode, fattr); | ||
3200 | else | ||
3201 | result = smb_proc_setattr_trans2(server, dentry, fattr); | ||
3202 | } else { | ||
3203 | /* | ||
3204 | * Fail silently on directories ... timestamp can't be set? | ||
3205 | */ | ||
3206 | result = 0; | ||
3207 | if (S_ISREG(inode->i_mode)) { | ||
3208 | /* | ||
3209 | * Set the mtime by opening and closing the file. | ||
3210 | * Note that the file is opened read-only, but this | ||
3211 | * still allows us to set the date (tridge) | ||
3212 | */ | ||
3213 | result = -EACCES; | ||
3214 | if (!smb_is_open(inode)) | ||
3215 | smb_proc_open(server, dentry, SMB_O_RDONLY); | ||
3216 | if (smb_is_open(inode)) { | ||
3217 | inode->i_mtime = fattr->f_mtime; | ||
3218 | result = smb_proc_close_inode(server, inode); | ||
3219 | } | ||
3220 | } | ||
3221 | } | ||
3222 | |||
3223 | return result; | ||
3224 | } | ||
3225 | |||
3226 | int | ||
3227 | smb_proc_dskattr(struct dentry *dentry, struct kstatfs *attr) | ||
3228 | { | ||
3229 | struct smb_sb_info *server = SMB_SB(dentry->d_sb); | ||
3230 | int result; | ||
3231 | char *p; | ||
3232 | long unit; | ||
3233 | struct smb_request *req; | ||
3234 | |||
3235 | result = -ENOMEM; | ||
3236 | if (! (req = smb_alloc_request(server, 0))) | ||
3237 | goto out; | ||
3238 | |||
3239 | smb_setup_header(req, SMBdskattr, 0, 0); | ||
3240 | if ((result = smb_request_ok(req, SMBdskattr, 5, 0)) < 0) | ||
3241 | goto out_free; | ||
3242 | p = SMB_VWV(req->rq_header); | ||
3243 | unit = (WVAL(p, 2) * WVAL(p, 4)) >> SMB_ST_BLKSHIFT; | ||
3244 | attr->f_blocks = WVAL(p, 0) * unit; | ||
3245 | attr->f_bsize = SMB_ST_BLKSIZE; | ||
3246 | attr->f_bavail = attr->f_bfree = WVAL(p, 6) * unit; | ||
3247 | result = 0; | ||
3248 | |||
3249 | out_free: | ||
3250 | smb_rput(req); | ||
3251 | out: | ||
3252 | return result; | ||
3253 | } | ||
3254 | |||
3255 | int | ||
3256 | smb_proc_read_link(struct smb_sb_info *server, struct dentry *d, | ||
3257 | char *buffer, int len) | ||
3258 | { | ||
3259 | char *p, *param; | ||
3260 | int result; | ||
3261 | struct smb_request *req; | ||
3262 | |||
3263 | DEBUG1("readlink of %s/%s\n", DENTRY_PATH(d)); | ||
3264 | |||
3265 | result = -ENOMEM; | ||
3266 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
3267 | goto out; | ||
3268 | param = req->rq_buffer; | ||
3269 | |||
3270 | WSET(param, 0, SMB_QUERY_FILE_UNIX_LINK); | ||
3271 | DSET(param, 2, 0); | ||
3272 | result = smb_encode_path(server, param+6, SMB_MAXPATHLEN+1, d, NULL); | ||
3273 | if (result < 0) | ||
3274 | goto out_free; | ||
3275 | p = param + 6 + result; | ||
3276 | |||
3277 | req->rq_trans2_command = TRANSACT2_QPATHINFO; | ||
3278 | req->rq_ldata = 0; | ||
3279 | req->rq_data = NULL; | ||
3280 | req->rq_lparm = p - param; | ||
3281 | req->rq_parm = param; | ||
3282 | req->rq_flags = 0; | ||
3283 | result = smb_add_request(req); | ||
3284 | if (result < 0) | ||
3285 | goto out_free; | ||
3286 | DEBUG1("for %s: result=%d, rcls=%d, err=%d\n", | ||
3287 | ¶m[6], result, req->rq_rcls, req->rq_err); | ||
3288 | |||
3289 | /* copy data up to the \0 or buffer length */ | ||
3290 | result = len; | ||
3291 | if (req->rq_ldata < len) | ||
3292 | result = req->rq_ldata; | ||
3293 | strncpy(buffer, req->rq_data, result); | ||
3294 | |||
3295 | out_free: | ||
3296 | smb_rput(req); | ||
3297 | out: | ||
3298 | return result; | ||
3299 | } | ||
3300 | |||
3301 | |||
3302 | /* | ||
3303 | * Create a symlink object called dentry which points to oldpath. | ||
3304 | * Samba does not permit dangling links but returns a suitable error message. | ||
3305 | */ | ||
3306 | int | ||
3307 | smb_proc_symlink(struct smb_sb_info *server, struct dentry *d, | ||
3308 | const char *oldpath) | ||
3309 | { | ||
3310 | char *p, *param; | ||
3311 | int result; | ||
3312 | struct smb_request *req; | ||
3313 | |||
3314 | result = -ENOMEM; | ||
3315 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
3316 | goto out; | ||
3317 | param = req->rq_buffer; | ||
3318 | |||
3319 | WSET(param, 0, SMB_SET_FILE_UNIX_LINK); | ||
3320 | DSET(param, 2, 0); | ||
3321 | result = smb_encode_path(server, param + 6, SMB_MAXPATHLEN+1, d, NULL); | ||
3322 | if (result < 0) | ||
3323 | goto out_free; | ||
3324 | p = param + 6 + result; | ||
3325 | |||
3326 | req->rq_trans2_command = TRANSACT2_SETPATHINFO; | ||
3327 | req->rq_ldata = strlen(oldpath) + 1; | ||
3328 | req->rq_data = (char *) oldpath; | ||
3329 | req->rq_lparm = p - param; | ||
3330 | req->rq_parm = param; | ||
3331 | req->rq_flags = 0; | ||
3332 | result = smb_add_request(req); | ||
3333 | if (result < 0) | ||
3334 | goto out_free; | ||
3335 | |||
3336 | DEBUG1("for %s: result=%d, rcls=%d, err=%d\n", | ||
3337 | ¶m[6], result, req->rq_rcls, req->rq_err); | ||
3338 | result = 0; | ||
3339 | |||
3340 | out_free: | ||
3341 | smb_rput(req); | ||
3342 | out: | ||
3343 | return result; | ||
3344 | } | ||
3345 | |||
3346 | /* | ||
3347 | * Create a hard link object called new_dentry which points to dentry. | ||
3348 | */ | ||
3349 | int | ||
3350 | smb_proc_link(struct smb_sb_info *server, struct dentry *dentry, | ||
3351 | struct dentry *new_dentry) | ||
3352 | { | ||
3353 | char *p, *param; | ||
3354 | int result; | ||
3355 | struct smb_request *req; | ||
3356 | |||
3357 | result = -ENOMEM; | ||
3358 | if (! (req = smb_alloc_request(server, PAGE_SIZE))) | ||
3359 | goto out; | ||
3360 | param = req->rq_buffer; | ||
3361 | |||
3362 | WSET(param, 0, SMB_SET_FILE_UNIX_HLINK); | ||
3363 | DSET(param, 2, 0); | ||
3364 | result = smb_encode_path(server, param + 6, SMB_MAXPATHLEN+1, | ||
3365 | new_dentry, NULL); | ||
3366 | if (result < 0) | ||
3367 | goto out_free; | ||
3368 | p = param + 6 + result; | ||
3369 | |||
3370 | /* Grr, pointless separation of parameters and data ... */ | ||
3371 | req->rq_data = p; | ||
3372 | req->rq_ldata = smb_encode_path(server, p, SMB_MAXPATHLEN+1, | ||
3373 | dentry, NULL); | ||
3374 | |||
3375 | req->rq_trans2_command = TRANSACT2_SETPATHINFO; | ||
3376 | req->rq_lparm = p - param; | ||
3377 | req->rq_parm = param; | ||
3378 | req->rq_flags = 0; | ||
3379 | result = smb_add_request(req); | ||
3380 | if (result < 0) | ||
3381 | goto out_free; | ||
3382 | |||
3383 | DEBUG1("for %s: result=%d, rcls=%d, err=%d\n", | ||
3384 | ¶m[6], result, req->rq_rcls, req->rq_err); | ||
3385 | result = 0; | ||
3386 | |||
3387 | out_free: | ||
3388 | smb_rput(req); | ||
3389 | out: | ||
3390 | return result; | ||
3391 | } | ||
3392 | |||
3393 | static int | ||
3394 | smb_proc_query_cifsunix(struct smb_sb_info *server) | ||
3395 | { | ||
3396 | int result; | ||
3397 | int major, minor; | ||
3398 | u64 caps; | ||
3399 | char param[2]; | ||
3400 | struct smb_request *req; | ||
3401 | |||
3402 | result = -ENOMEM; | ||
3403 | if (! (req = smb_alloc_request(server, 100))) | ||
3404 | goto out; | ||
3405 | |||
3406 | WSET(param, 0, SMB_QUERY_CIFS_UNIX_INFO); | ||
3407 | |||
3408 | req->rq_trans2_command = TRANSACT2_QFSINFO; | ||
3409 | req->rq_ldata = 0; | ||
3410 | req->rq_data = NULL; | ||
3411 | req->rq_lparm = 2; | ||
3412 | req->rq_parm = param; | ||
3413 | req->rq_flags = 0; | ||
3414 | result = smb_add_request(req); | ||
3415 | if (result < 0) | ||
3416 | goto out_free; | ||
3417 | |||
3418 | if (req->rq_ldata < 12) { | ||
3419 | PARANOIA("Not enough data\n"); | ||
3420 | goto out_free; | ||
3421 | } | ||
3422 | major = WVAL(req->rq_data, 0); | ||
3423 | minor = WVAL(req->rq_data, 2); | ||
3424 | |||
3425 | DEBUG1("Server implements CIFS Extensions for UNIX systems v%d.%d\n", | ||
3426 | major, minor); | ||
3427 | /* FIXME: verify that we are ok with this major/minor? */ | ||
3428 | |||
3429 | caps = LVAL(req->rq_data, 4); | ||
3430 | DEBUG1("Server capabilities 0x%016llx\n", caps); | ||
3431 | |||
3432 | out_free: | ||
3433 | smb_rput(req); | ||
3434 | out: | ||
3435 | return result; | ||
3436 | } | ||
3437 | |||
3438 | |||
3439 | static void | ||
3440 | install_ops(struct smb_ops *dst, struct smb_ops *src) | ||
3441 | { | ||
3442 | memcpy(dst, src, sizeof(void *) * SMB_OPS_NUM_STATIC); | ||
3443 | } | ||
3444 | |||
3445 | /* < LANMAN2 */ | ||
3446 | static struct smb_ops smb_ops_core = | ||
3447 | { | ||
3448 | .read = smb_proc_read, | ||
3449 | .write = smb_proc_write, | ||
3450 | .readdir = smb_proc_readdir_short, | ||
3451 | .getattr = smb_proc_getattr_core, | ||
3452 | .truncate = smb_proc_trunc32, | ||
3453 | }; | ||
3454 | |||
3455 | /* LANMAN2, OS/2, others? */ | ||
3456 | static struct smb_ops smb_ops_os2 = | ||
3457 | { | ||
3458 | .read = smb_proc_read, | ||
3459 | .write = smb_proc_write, | ||
3460 | .readdir = smb_proc_readdir_long, | ||
3461 | .getattr = smb_proc_getattr_trans2_std, | ||
3462 | .truncate = smb_proc_trunc32, | ||
3463 | }; | ||
3464 | |||
3465 | /* Win95, and possibly some NetApp versions too */ | ||
3466 | static struct smb_ops smb_ops_win95 = | ||
3467 | { | ||
3468 | .read = smb_proc_read, /* does not support 12word readX */ | ||
3469 | .write = smb_proc_write, | ||
3470 | .readdir = smb_proc_readdir_long, | ||
3471 | .getattr = smb_proc_getattr_95, | ||
3472 | .truncate = smb_proc_trunc95, | ||
3473 | }; | ||
3474 | |||
3475 | /* Samba, NT4 and NT5 */ | ||
3476 | static struct smb_ops smb_ops_winNT = | ||
3477 | { | ||
3478 | .read = smb_proc_readX, | ||
3479 | .write = smb_proc_writeX, | ||
3480 | .readdir = smb_proc_readdir_long, | ||
3481 | .getattr = smb_proc_getattr_trans2_all, | ||
3482 | .truncate = smb_proc_trunc64, | ||
3483 | }; | ||
3484 | |||
3485 | /* Samba w/ unix extensions. Others? */ | ||
3486 | static struct smb_ops smb_ops_unix = | ||
3487 | { | ||
3488 | .read = smb_proc_readX, | ||
3489 | .write = smb_proc_writeX, | ||
3490 | .readdir = smb_proc_readdir_long, | ||
3491 | .getattr = smb_proc_getattr_unix, | ||
3492 | /* FIXME: core/ext/time setattr needs to be cleaned up! */ | ||
3493 | /* .setattr = smb_proc_setattr_unix, */ | ||
3494 | .truncate = smb_proc_trunc64, | ||
3495 | }; | ||
3496 | |||
3497 | /* Place holder until real ops are in place */ | ||
3498 | static struct smb_ops smb_ops_null = | ||
3499 | { | ||
3500 | .readdir = smb_proc_readdir_null, | ||
3501 | .getattr = smb_proc_getattr_null, | ||
3502 | }; | ||
3503 | |||
3504 | void smb_install_null_ops(struct smb_ops *ops) | ||
3505 | { | ||
3506 | install_ops(ops, &smb_ops_null); | ||
3507 | } | ||
diff --git a/fs/smbfs/proto.h b/fs/smbfs/proto.h deleted file mode 100644 index 05939a6f43e6..000000000000 --- a/fs/smbfs/proto.h +++ /dev/null | |||
@@ -1,87 +0,0 @@ | |||
1 | /* | ||
2 | * Autogenerated with cproto on: Sat Sep 13 17:18:51 CEST 2003 | ||
3 | */ | ||
4 | |||
5 | struct smb_request; | ||
6 | struct sock; | ||
7 | struct statfs; | ||
8 | |||
9 | /* proc.c */ | ||
10 | extern int smb_setcodepage(struct smb_sb_info *server, struct smb_nls_codepage *cp); | ||
11 | extern __u32 smb_len(__u8 *p); | ||
12 | extern int smb_get_rsize(struct smb_sb_info *server); | ||
13 | extern int smb_get_wsize(struct smb_sb_info *server); | ||
14 | extern int smb_errno(struct smb_request *req); | ||
15 | extern int smb_newconn(struct smb_sb_info *server, struct smb_conn_opt *opt); | ||
16 | extern __u8 *smb_setup_header(struct smb_request *req, __u8 command, __u16 wct, __u16 bcc); | ||
17 | extern int smb_open(struct dentry *dentry, int wish); | ||
18 | extern int smb_close(struct inode *ino); | ||
19 | extern int smb_close_fileid(struct dentry *dentry, __u16 fileid); | ||
20 | extern int smb_proc_create(struct dentry *dentry, __u16 attr, time_t ctime, __u16 *fileid); | ||
21 | extern int smb_proc_mv(struct dentry *old_dentry, struct dentry *new_dentry); | ||
22 | extern int smb_proc_mkdir(struct dentry *dentry); | ||
23 | extern int smb_proc_rmdir(struct dentry *dentry); | ||
24 | extern int smb_proc_unlink(struct dentry *dentry); | ||
25 | extern int smb_proc_flush(struct smb_sb_info *server, __u16 fileid); | ||
26 | extern void smb_init_root_dirent(struct smb_sb_info *server, struct smb_fattr *fattr, | ||
27 | struct super_block *sb); | ||
28 | extern int smb_proc_getattr(struct dentry *dir, struct smb_fattr *fattr); | ||
29 | extern int smb_proc_setattr(struct dentry *dir, struct smb_fattr *fattr); | ||
30 | extern int smb_proc_setattr_unix(struct dentry *d, struct iattr *attr, unsigned int major, unsigned int minor); | ||
31 | extern int smb_proc_settime(struct dentry *dentry, struct smb_fattr *fattr); | ||
32 | extern int smb_proc_dskattr(struct dentry *dentry, struct kstatfs *attr); | ||
33 | extern int smb_proc_read_link(struct smb_sb_info *server, struct dentry *d, char *buffer, int len); | ||
34 | extern int smb_proc_symlink(struct smb_sb_info *server, struct dentry *d, const char *oldpath); | ||
35 | extern int smb_proc_link(struct smb_sb_info *server, struct dentry *dentry, struct dentry *new_dentry); | ||
36 | extern void smb_install_null_ops(struct smb_ops *ops); | ||
37 | /* dir.c */ | ||
38 | extern const struct file_operations smb_dir_operations; | ||
39 | extern const struct inode_operations smb_dir_inode_operations; | ||
40 | extern const struct inode_operations smb_dir_inode_operations_unix; | ||
41 | extern void smb_new_dentry(struct dentry *dentry); | ||
42 | extern void smb_renew_times(struct dentry *dentry); | ||
43 | /* cache.c */ | ||
44 | extern void smb_invalid_dir_cache(struct inode *dir); | ||
45 | extern void smb_invalidate_dircache_entries(struct dentry *parent); | ||
46 | extern struct dentry *smb_dget_fpos(struct dentry *dentry, struct dentry *parent, unsigned long fpos); | ||
47 | extern int smb_fill_cache(struct file *filp, void *dirent, filldir_t filldir, struct smb_cache_control *ctrl, struct qstr *qname, struct smb_fattr *entry); | ||
48 | /* sock.c */ | ||
49 | extern void smb_data_ready(struct sock *sk, int len); | ||
50 | extern int smb_valid_socket(struct inode *inode); | ||
51 | extern void smb_close_socket(struct smb_sb_info *server); | ||
52 | extern int smb_recv_available(struct smb_sb_info *server); | ||
53 | extern int smb_receive_header(struct smb_sb_info *server); | ||
54 | extern int smb_receive_drop(struct smb_sb_info *server); | ||
55 | extern int smb_receive(struct smb_sb_info *server, struct smb_request *req); | ||
56 | extern int smb_send_request(struct smb_request *req); | ||
57 | /* inode.c */ | ||
58 | extern struct inode *smb_iget(struct super_block *sb, struct smb_fattr *fattr); | ||
59 | extern void smb_get_inode_attr(struct inode *inode, struct smb_fattr *fattr); | ||
60 | extern void smb_set_inode_attr(struct inode *inode, struct smb_fattr *fattr); | ||
61 | extern void smb_invalidate_inodes(struct smb_sb_info *server); | ||
62 | extern int smb_revalidate_inode(struct dentry *dentry); | ||
63 | extern int smb_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat); | ||
64 | extern int smb_notify_change(struct dentry *dentry, struct iattr *attr); | ||
65 | /* file.c */ | ||
66 | extern const struct address_space_operations smb_file_aops; | ||
67 | extern const struct file_operations smb_file_operations; | ||
68 | extern const struct inode_operations smb_file_inode_operations; | ||
69 | /* ioctl.c */ | ||
70 | extern long smb_ioctl(struct file *filp, unsigned int cmd, unsigned long arg); | ||
71 | /* smbiod.c */ | ||
72 | extern void smbiod_wake_up(void); | ||
73 | extern int smbiod_register_server(struct smb_sb_info *server); | ||
74 | extern void smbiod_unregister_server(struct smb_sb_info *server); | ||
75 | extern void smbiod_flush(struct smb_sb_info *server); | ||
76 | extern int smbiod_retry(struct smb_sb_info *server); | ||
77 | /* request.c */ | ||
78 | extern int smb_init_request_cache(void); | ||
79 | extern void smb_destroy_request_cache(void); | ||
80 | extern struct smb_request *smb_alloc_request(struct smb_sb_info *server, int bufsize); | ||
81 | extern void smb_rput(struct smb_request *req); | ||
82 | extern int smb_add_request(struct smb_request *req); | ||
83 | extern int smb_request_send_server(struct smb_sb_info *server); | ||
84 | extern int smb_request_recv(struct smb_sb_info *server); | ||
85 | /* symlink.c */ | ||
86 | extern int smb_symlink(struct inode *inode, struct dentry *dentry, const char *oldname); | ||
87 | extern const struct inode_operations smb_link_inode_operations; | ||
diff --git a/fs/smbfs/request.c b/fs/smbfs/request.c deleted file mode 100644 index 45f45933e862..000000000000 --- a/fs/smbfs/request.c +++ /dev/null | |||
@@ -1,818 +0,0 @@ | |||
1 | /* | ||
2 | * request.c | ||
3 | * | ||
4 | * Copyright (C) 2001 by Urban Widmark | ||
5 | * | ||
6 | * Please add a note about your changes to smbfs in the ChangeLog file. | ||
7 | */ | ||
8 | |||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/types.h> | ||
11 | #include <linux/fs.h> | ||
12 | #include <linux/slab.h> | ||
13 | #include <linux/net.h> | ||
14 | #include <linux/sched.h> | ||
15 | |||
16 | #include <linux/smb_fs.h> | ||
17 | #include <linux/smbno.h> | ||
18 | #include <linux/smb_mount.h> | ||
19 | |||
20 | #include "smb_debug.h" | ||
21 | #include "request.h" | ||
22 | #include "proto.h" | ||
23 | |||
24 | /* #define SMB_SLAB_DEBUG (SLAB_RED_ZONE | SLAB_POISON) */ | ||
25 | #define SMB_SLAB_DEBUG 0 | ||
26 | |||
27 | /* cache for request structures */ | ||
28 | static struct kmem_cache *req_cachep; | ||
29 | |||
30 | static int smb_request_send_req(struct smb_request *req); | ||
31 | |||
32 | /* | ||
33 | /proc/slabinfo: | ||
34 | name, active, num, objsize, active_slabs, num_slaps, #pages | ||
35 | */ | ||
36 | |||
37 | |||
38 | int smb_init_request_cache(void) | ||
39 | { | ||
40 | req_cachep = kmem_cache_create("smb_request", | ||
41 | sizeof(struct smb_request), 0, | ||
42 | SMB_SLAB_DEBUG | SLAB_HWCACHE_ALIGN, | ||
43 | NULL); | ||
44 | if (req_cachep == NULL) | ||
45 | return -ENOMEM; | ||
46 | |||
47 | return 0; | ||
48 | } | ||
49 | |||
50 | void smb_destroy_request_cache(void) | ||
51 | { | ||
52 | kmem_cache_destroy(req_cachep); | ||
53 | } | ||
54 | |||
55 | /* | ||
56 | * Allocate and initialise a request structure | ||
57 | */ | ||
58 | static struct smb_request *smb_do_alloc_request(struct smb_sb_info *server, | ||
59 | int bufsize) | ||
60 | { | ||
61 | struct smb_request *req; | ||
62 | unsigned char *buf = NULL; | ||
63 | |||
64 | req = kmem_cache_zalloc(req_cachep, GFP_KERNEL); | ||
65 | VERBOSE("allocating request: %p\n", req); | ||
66 | if (!req) | ||
67 | goto out; | ||
68 | |||
69 | if (bufsize > 0) { | ||
70 | buf = kmalloc(bufsize, GFP_NOFS); | ||
71 | if (!buf) { | ||
72 | kmem_cache_free(req_cachep, req); | ||
73 | return NULL; | ||
74 | } | ||
75 | } | ||
76 | |||
77 | req->rq_buffer = buf; | ||
78 | req->rq_bufsize = bufsize; | ||
79 | req->rq_server = server; | ||
80 | init_waitqueue_head(&req->rq_wait); | ||
81 | INIT_LIST_HEAD(&req->rq_queue); | ||
82 | atomic_set(&req->rq_count, 1); | ||
83 | |||
84 | out: | ||
85 | return req; | ||
86 | } | ||
87 | |||
88 | struct smb_request *smb_alloc_request(struct smb_sb_info *server, int bufsize) | ||
89 | { | ||
90 | struct smb_request *req = NULL; | ||
91 | |||
92 | for (;;) { | ||
93 | atomic_inc(&server->nr_requests); | ||
94 | if (atomic_read(&server->nr_requests) <= MAX_REQUEST_HARD) { | ||
95 | req = smb_do_alloc_request(server, bufsize); | ||
96 | if (req != NULL) | ||
97 | break; | ||
98 | } | ||
99 | |||
100 | #if 0 | ||
101 | /* | ||
102 | * Try to free up at least one request in order to stay | ||
103 | * below the hard limit | ||
104 | */ | ||
105 | if (nfs_try_to_free_pages(server)) | ||
106 | continue; | ||
107 | |||
108 | if (fatal_signal_pending(current)) | ||
109 | return ERR_PTR(-ERESTARTSYS); | ||
110 | current->policy = SCHED_YIELD; | ||
111 | schedule(); | ||
112 | #else | ||
113 | /* FIXME: we want something like nfs does above, but that | ||
114 | requires changes to all callers and can wait. */ | ||
115 | break; | ||
116 | #endif | ||
117 | } | ||
118 | return req; | ||
119 | } | ||
120 | |||
121 | static void smb_free_request(struct smb_request *req) | ||
122 | { | ||
123 | atomic_dec(&req->rq_server->nr_requests); | ||
124 | if (req->rq_buffer && !(req->rq_flags & SMB_REQ_STATIC)) | ||
125 | kfree(req->rq_buffer); | ||
126 | kfree(req->rq_trans2buffer); | ||
127 | kmem_cache_free(req_cachep, req); | ||
128 | } | ||
129 | |||
130 | /* | ||
131 | * What prevents a rget to race with a rput? The count must never drop to zero | ||
132 | * while it is in use. Only rput if it is ok that it is free'd. | ||
133 | */ | ||
134 | static void smb_rget(struct smb_request *req) | ||
135 | { | ||
136 | atomic_inc(&req->rq_count); | ||
137 | } | ||
138 | void smb_rput(struct smb_request *req) | ||
139 | { | ||
140 | if (atomic_dec_and_test(&req->rq_count)) { | ||
141 | list_del_init(&req->rq_queue); | ||
142 | smb_free_request(req); | ||
143 | } | ||
144 | } | ||
145 | |||
146 | /* setup to receive the data part of the SMB */ | ||
147 | static int smb_setup_bcc(struct smb_request *req) | ||
148 | { | ||
149 | int result = 0; | ||
150 | req->rq_rlen = smb_len(req->rq_header) + 4 - req->rq_bytes_recvd; | ||
151 | |||
152 | if (req->rq_rlen > req->rq_bufsize) { | ||
153 | PARANOIA("Packet too large %d > %d\n", | ||
154 | req->rq_rlen, req->rq_bufsize); | ||
155 | return -ENOBUFS; | ||
156 | } | ||
157 | |||
158 | req->rq_iov[0].iov_base = req->rq_buffer; | ||
159 | req->rq_iov[0].iov_len = req->rq_rlen; | ||
160 | req->rq_iovlen = 1; | ||
161 | |||
162 | return result; | ||
163 | } | ||
164 | |||
165 | /* | ||
166 | * Prepare a "normal" request structure. | ||
167 | */ | ||
168 | static int smb_setup_request(struct smb_request *req) | ||
169 | { | ||
170 | int len = smb_len(req->rq_header) + 4; | ||
171 | req->rq_slen = len; | ||
172 | |||
173 | /* if we expect a data part in the reply we set the iov's to read it */ | ||
174 | if (req->rq_resp_bcc) | ||
175 | req->rq_setup_read = smb_setup_bcc; | ||
176 | |||
177 | /* This tries to support re-using the same request */ | ||
178 | req->rq_bytes_sent = 0; | ||
179 | req->rq_rcls = 0; | ||
180 | req->rq_err = 0; | ||
181 | req->rq_errno = 0; | ||
182 | req->rq_fragment = 0; | ||
183 | kfree(req->rq_trans2buffer); | ||
184 | req->rq_trans2buffer = NULL; | ||
185 | |||
186 | return 0; | ||
187 | } | ||
188 | |||
189 | /* | ||
190 | * Prepare a transaction2 request structure | ||
191 | */ | ||
192 | static int smb_setup_trans2request(struct smb_request *req) | ||
193 | { | ||
194 | struct smb_sb_info *server = req->rq_server; | ||
195 | int mparam, mdata; | ||
196 | static unsigned char padding[4]; | ||
197 | |||
198 | /* I know the following is very ugly, but I want to build the | ||
199 | smb packet as efficiently as possible. */ | ||
200 | |||
201 | const int smb_parameters = 15; | ||
202 | const int header = SMB_HEADER_LEN + 2 * smb_parameters + 2; | ||
203 | const int oparam = ALIGN(header + 3, sizeof(u32)); | ||
204 | const int odata = ALIGN(oparam + req->rq_lparm, sizeof(u32)); | ||
205 | const int bcc = (req->rq_data ? odata + req->rq_ldata : | ||
206 | oparam + req->rq_lparm) - header; | ||
207 | |||
208 | if ((bcc + oparam) > server->opt.max_xmit) | ||
209 | return -ENOMEM; | ||
210 | smb_setup_header(req, SMBtrans2, smb_parameters, bcc); | ||
211 | |||
212 | /* | ||
213 | * max parameters + max data + max setup == bufsize to make NT4 happy | ||
214 | * and not abort the transfer or split into multiple responses. It also | ||
215 | * makes smbfs happy as handling packets larger than the buffer size | ||
216 | * is extra work. | ||
217 | * | ||
218 | * OS/2 is probably going to hate me for this ... | ||
219 | */ | ||
220 | mparam = SMB_TRANS2_MAX_PARAM; | ||
221 | mdata = req->rq_bufsize - mparam; | ||
222 | |||
223 | mdata = server->opt.max_xmit - mparam - 100; | ||
224 | if (mdata < 1024) { | ||
225 | mdata = 1024; | ||
226 | mparam = 20; | ||
227 | } | ||
228 | |||
229 | #if 0 | ||
230 | /* NT/win2k has ~4k max_xmit, so with this we request more than it wants | ||
231 | to return as one SMB. Useful for testing the fragmented trans2 | ||
232 | handling. */ | ||
233 | mdata = 8192; | ||
234 | #endif | ||
235 | |||
236 | WSET(req->rq_header, smb_tpscnt, req->rq_lparm); | ||
237 | WSET(req->rq_header, smb_tdscnt, req->rq_ldata); | ||
238 | WSET(req->rq_header, smb_mprcnt, mparam); | ||
239 | WSET(req->rq_header, smb_mdrcnt, mdata); | ||
240 | WSET(req->rq_header, smb_msrcnt, 0); /* max setup always 0 ? */ | ||
241 | WSET(req->rq_header, smb_flags, 0); | ||
242 | DSET(req->rq_header, smb_timeout, 0); | ||
243 | WSET(req->rq_header, smb_pscnt, req->rq_lparm); | ||
244 | WSET(req->rq_header, smb_psoff, oparam - 4); | ||
245 | WSET(req->rq_header, smb_dscnt, req->rq_ldata); | ||
246 | WSET(req->rq_header, smb_dsoff, req->rq_data ? odata - 4 : 0); | ||
247 | *(req->rq_header + smb_suwcnt) = 0x01; /* setup count */ | ||
248 | *(req->rq_header + smb_suwcnt + 1) = 0x00; /* reserved */ | ||
249 | WSET(req->rq_header, smb_setup0, req->rq_trans2_command); | ||
250 | |||
251 | req->rq_iovlen = 2; | ||
252 | req->rq_iov[0].iov_base = (void *) req->rq_header; | ||
253 | req->rq_iov[0].iov_len = oparam; | ||
254 | req->rq_iov[1].iov_base = (req->rq_parm==NULL) ? padding : req->rq_parm; | ||
255 | req->rq_iov[1].iov_len = req->rq_lparm; | ||
256 | req->rq_slen = oparam + req->rq_lparm; | ||
257 | |||
258 | if (req->rq_data) { | ||
259 | req->rq_iovlen += 2; | ||
260 | req->rq_iov[2].iov_base = padding; | ||
261 | req->rq_iov[2].iov_len = odata - oparam - req->rq_lparm; | ||
262 | req->rq_iov[3].iov_base = req->rq_data; | ||
263 | req->rq_iov[3].iov_len = req->rq_ldata; | ||
264 | req->rq_slen = odata + req->rq_ldata; | ||
265 | } | ||
266 | |||
267 | /* always a data part for trans2 replies */ | ||
268 | req->rq_setup_read = smb_setup_bcc; | ||
269 | |||
270 | return 0; | ||
271 | } | ||
272 | |||
273 | /* | ||
274 | * Add a request and tell smbiod to process it | ||
275 | */ | ||
276 | int smb_add_request(struct smb_request *req) | ||
277 | { | ||
278 | long timeleft; | ||
279 | struct smb_sb_info *server = req->rq_server; | ||
280 | int result = 0; | ||
281 | |||
282 | smb_setup_request(req); | ||
283 | if (req->rq_trans2_command) { | ||
284 | if (req->rq_buffer == NULL) { | ||
285 | PARANOIA("trans2 attempted without response buffer!\n"); | ||
286 | return -EIO; | ||
287 | } | ||
288 | result = smb_setup_trans2request(req); | ||
289 | } | ||
290 | if (result < 0) | ||
291 | return result; | ||
292 | |||
293 | #ifdef SMB_DEBUG_PACKET_SIZE | ||
294 | add_xmit_stats(req); | ||
295 | #endif | ||
296 | |||
297 | /* add 'req' to the queue of requests */ | ||
298 | if (smb_lock_server_interruptible(server)) | ||
299 | return -EINTR; | ||
300 | |||
301 | /* | ||
302 | * Try to send the request as the process. If that fails we queue the | ||
303 | * request and let smbiod send it later. | ||
304 | */ | ||
305 | |||
306 | /* FIXME: each server has a number on the maximum number of parallel | ||
307 | requests. 10, 50 or so. We should not allow more requests to be | ||
308 | active. */ | ||
309 | if (server->mid > 0xf000) | ||
310 | server->mid = 0; | ||
311 | req->rq_mid = server->mid++; | ||
312 | WSET(req->rq_header, smb_mid, req->rq_mid); | ||
313 | |||
314 | result = 0; | ||
315 | if (server->state == CONN_VALID) { | ||
316 | if (list_empty(&server->xmitq)) | ||
317 | result = smb_request_send_req(req); | ||
318 | if (result < 0) { | ||
319 | /* Connection lost? */ | ||
320 | server->conn_error = result; | ||
321 | server->state = CONN_INVALID; | ||
322 | } | ||
323 | } | ||
324 | if (result != 1) | ||
325 | list_add_tail(&req->rq_queue, &server->xmitq); | ||
326 | smb_rget(req); | ||
327 | |||
328 | if (server->state != CONN_VALID) | ||
329 | smbiod_retry(server); | ||
330 | |||
331 | smb_unlock_server(server); | ||
332 | |||
333 | smbiod_wake_up(); | ||
334 | |||
335 | timeleft = wait_event_interruptible_timeout(req->rq_wait, | ||
336 | req->rq_flags & SMB_REQ_RECEIVED, 30*HZ); | ||
337 | if (!timeleft || signal_pending(current)) { | ||
338 | /* | ||
339 | * On timeout or on interrupt we want to try and remove the | ||
340 | * request from the recvq/xmitq. | ||
341 | * First check if the request is still part of a queue. (May | ||
342 | * have been removed by some error condition) | ||
343 | */ | ||
344 | smb_lock_server(server); | ||
345 | if (!list_empty(&req->rq_queue)) { | ||
346 | list_del_init(&req->rq_queue); | ||
347 | smb_rput(req); | ||
348 | } | ||
349 | smb_unlock_server(server); | ||
350 | } | ||
351 | |||
352 | if (!timeleft) { | ||
353 | PARANOIA("request [%p, mid=%d] timed out!\n", | ||
354 | req, req->rq_mid); | ||
355 | VERBOSE("smb_com: %02x\n", *(req->rq_header + smb_com)); | ||
356 | VERBOSE("smb_rcls: %02x\n", *(req->rq_header + smb_rcls)); | ||
357 | VERBOSE("smb_flg: %02x\n", *(req->rq_header + smb_flg)); | ||
358 | VERBOSE("smb_tid: %04x\n", WVAL(req->rq_header, smb_tid)); | ||
359 | VERBOSE("smb_pid: %04x\n", WVAL(req->rq_header, smb_pid)); | ||
360 | VERBOSE("smb_uid: %04x\n", WVAL(req->rq_header, smb_uid)); | ||
361 | VERBOSE("smb_mid: %04x\n", WVAL(req->rq_header, smb_mid)); | ||
362 | VERBOSE("smb_wct: %02x\n", *(req->rq_header + smb_wct)); | ||
363 | |||
364 | req->rq_rcls = ERRSRV; | ||
365 | req->rq_err = ERRtimeout; | ||
366 | |||
367 | /* Just in case it was "stuck" */ | ||
368 | smbiod_wake_up(); | ||
369 | } | ||
370 | VERBOSE("woke up, rcls=%d\n", req->rq_rcls); | ||
371 | |||
372 | if (req->rq_rcls != 0) | ||
373 | req->rq_errno = smb_errno(req); | ||
374 | if (signal_pending(current)) | ||
375 | req->rq_errno = -ERESTARTSYS; | ||
376 | return req->rq_errno; | ||
377 | } | ||
378 | |||
379 | /* | ||
380 | * Send a request and place it on the recvq if successfully sent. | ||
381 | * Must be called with the server lock held. | ||
382 | */ | ||
383 | static int smb_request_send_req(struct smb_request *req) | ||
384 | { | ||
385 | struct smb_sb_info *server = req->rq_server; | ||
386 | int result; | ||
387 | |||
388 | if (req->rq_bytes_sent == 0) { | ||
389 | WSET(req->rq_header, smb_tid, server->opt.tid); | ||
390 | WSET(req->rq_header, smb_pid, 1); | ||
391 | WSET(req->rq_header, smb_uid, server->opt.server_uid); | ||
392 | } | ||
393 | |||
394 | result = smb_send_request(req); | ||
395 | if (result < 0 && result != -EAGAIN) | ||
396 | goto out; | ||
397 | |||
398 | result = 0; | ||
399 | if (!(req->rq_flags & SMB_REQ_TRANSMITTED)) | ||
400 | goto out; | ||
401 | |||
402 | list_move_tail(&req->rq_queue, &server->recvq); | ||
403 | result = 1; | ||
404 | out: | ||
405 | return result; | ||
406 | } | ||
407 | |||
408 | /* | ||
409 | * Sends one request for this server. (smbiod) | ||
410 | * Must be called with the server lock held. | ||
411 | * Returns: <0 on error | ||
412 | * 0 if no request could be completely sent | ||
413 | * 1 if all data for one request was sent | ||
414 | */ | ||
415 | int smb_request_send_server(struct smb_sb_info *server) | ||
416 | { | ||
417 | struct list_head *head; | ||
418 | struct smb_request *req; | ||
419 | int result; | ||
420 | |||
421 | if (server->state != CONN_VALID) | ||
422 | return 0; | ||
423 | |||
424 | /* dequeue first request, if any */ | ||
425 | req = NULL; | ||
426 | head = server->xmitq.next; | ||
427 | if (head != &server->xmitq) { | ||
428 | req = list_entry(head, struct smb_request, rq_queue); | ||
429 | } | ||
430 | if (!req) | ||
431 | return 0; | ||
432 | |||
433 | result = smb_request_send_req(req); | ||
434 | if (result < 0) { | ||
435 | server->conn_error = result; | ||
436 | list_move(&req->rq_queue, &server->xmitq); | ||
437 | result = -EIO; | ||
438 | goto out; | ||
439 | } | ||
440 | |||
441 | out: | ||
442 | return result; | ||
443 | } | ||
444 | |||
445 | /* | ||
446 | * Try to find a request matching this "mid". Typically the first entry will | ||
447 | * be the matching one. | ||
448 | */ | ||
449 | static struct smb_request *find_request(struct smb_sb_info *server, int mid) | ||
450 | { | ||
451 | struct list_head *tmp; | ||
452 | struct smb_request *req = NULL; | ||
453 | |||
454 | list_for_each(tmp, &server->recvq) { | ||
455 | req = list_entry(tmp, struct smb_request, rq_queue); | ||
456 | if (req->rq_mid == mid) { | ||
457 | break; | ||
458 | } | ||
459 | req = NULL; | ||
460 | } | ||
461 | |||
462 | if (!req) { | ||
463 | VERBOSE("received reply with mid %d but no request!\n", | ||
464 | WVAL(server->header, smb_mid)); | ||
465 | server->rstate = SMB_RECV_DROP; | ||
466 | } | ||
467 | |||
468 | return req; | ||
469 | } | ||
470 | |||
471 | /* | ||
472 | * Called when we have read the smb header and believe this is a response. | ||
473 | */ | ||
474 | static int smb_init_request(struct smb_sb_info *server, struct smb_request *req) | ||
475 | { | ||
476 | int hdrlen, wct; | ||
477 | |||
478 | memcpy(req->rq_header, server->header, SMB_HEADER_LEN); | ||
479 | |||
480 | wct = *(req->rq_header + smb_wct); | ||
481 | if (wct > 20) { | ||
482 | PARANOIA("wct too large, %d > 20\n", wct); | ||
483 | server->rstate = SMB_RECV_DROP; | ||
484 | return 0; | ||
485 | } | ||
486 | |||
487 | req->rq_resp_wct = wct; | ||
488 | hdrlen = SMB_HEADER_LEN + wct*2 + 2; | ||
489 | VERBOSE("header length: %d smb_wct: %2d\n", hdrlen, wct); | ||
490 | |||
491 | req->rq_bytes_recvd = SMB_HEADER_LEN; | ||
492 | req->rq_rlen = hdrlen; | ||
493 | req->rq_iov[0].iov_base = req->rq_header; | ||
494 | req->rq_iov[0].iov_len = hdrlen; | ||
495 | req->rq_iovlen = 1; | ||
496 | server->rstate = SMB_RECV_PARAM; | ||
497 | |||
498 | #ifdef SMB_DEBUG_PACKET_SIZE | ||
499 | add_recv_stats(smb_len(server->header)); | ||
500 | #endif | ||
501 | return 0; | ||
502 | } | ||
503 | |||
504 | /* | ||
505 | * Reads the SMB parameters | ||
506 | */ | ||
507 | static int smb_recv_param(struct smb_sb_info *server, struct smb_request *req) | ||
508 | { | ||
509 | int result; | ||
510 | |||
511 | result = smb_receive(server, req); | ||
512 | if (result < 0) | ||
513 | return result; | ||
514 | if (req->rq_bytes_recvd < req->rq_rlen) | ||
515 | return 0; | ||
516 | |||
517 | VERBOSE("result: %d smb_bcc: %04x\n", result, | ||
518 | WVAL(req->rq_header, SMB_HEADER_LEN + | ||
519 | (*(req->rq_header + smb_wct) * 2))); | ||
520 | |||
521 | result = 0; | ||
522 | req->rq_iov[0].iov_base = NULL; | ||
523 | req->rq_rlen = 0; | ||
524 | if (req->rq_callback) | ||
525 | req->rq_callback(req); | ||
526 | else if (req->rq_setup_read) | ||
527 | result = req->rq_setup_read(req); | ||
528 | if (result < 0) { | ||
529 | server->rstate = SMB_RECV_DROP; | ||
530 | return result; | ||
531 | } | ||
532 | |||
533 | server->rstate = req->rq_rlen > 0 ? SMB_RECV_DATA : SMB_RECV_END; | ||
534 | |||
535 | req->rq_bytes_recvd = 0; // recvd out of the iov | ||
536 | |||
537 | VERBOSE("rlen: %d\n", req->rq_rlen); | ||
538 | if (req->rq_rlen < 0) { | ||
539 | PARANOIA("Parameters read beyond end of packet!\n"); | ||
540 | server->rstate = SMB_RECV_END; | ||
541 | return -EIO; | ||
542 | } | ||
543 | return 0; | ||
544 | } | ||
545 | |||
546 | /* | ||
547 | * Reads the SMB data | ||
548 | */ | ||
549 | static int smb_recv_data(struct smb_sb_info *server, struct smb_request *req) | ||
550 | { | ||
551 | int result; | ||
552 | |||
553 | result = smb_receive(server, req); | ||
554 | if (result < 0) | ||
555 | goto out; | ||
556 | if (req->rq_bytes_recvd < req->rq_rlen) | ||
557 | goto out; | ||
558 | server->rstate = SMB_RECV_END; | ||
559 | out: | ||
560 | VERBOSE("result: %d\n", result); | ||
561 | return result; | ||
562 | } | ||
563 | |||
564 | /* | ||
565 | * Receive a transaction2 response | ||
566 | * Return: 0 if the response has been fully read | ||
567 | * 1 if there are further "fragments" to read | ||
568 | * <0 if there is an error | ||
569 | */ | ||
570 | static int smb_recv_trans2(struct smb_sb_info *server, struct smb_request *req) | ||
571 | { | ||
572 | unsigned char *inbuf; | ||
573 | unsigned int parm_disp, parm_offset, parm_count, parm_tot; | ||
574 | unsigned int data_disp, data_offset, data_count, data_tot; | ||
575 | int hdrlen = SMB_HEADER_LEN + req->rq_resp_wct*2 - 2; | ||
576 | |||
577 | VERBOSE("handling trans2\n"); | ||
578 | |||
579 | inbuf = req->rq_header; | ||
580 | data_tot = WVAL(inbuf, smb_tdrcnt); | ||
581 | parm_tot = WVAL(inbuf, smb_tprcnt); | ||
582 | parm_disp = WVAL(inbuf, smb_prdisp); | ||
583 | parm_offset = WVAL(inbuf, smb_proff); | ||
584 | parm_count = WVAL(inbuf, smb_prcnt); | ||
585 | data_disp = WVAL(inbuf, smb_drdisp); | ||
586 | data_offset = WVAL(inbuf, smb_droff); | ||
587 | data_count = WVAL(inbuf, smb_drcnt); | ||
588 | |||
589 | /* Modify offset for the split header/buffer we use */ | ||
590 | if (data_count || data_offset) { | ||
591 | if (unlikely(data_offset < hdrlen)) | ||
592 | goto out_bad_data; | ||
593 | else | ||
594 | data_offset -= hdrlen; | ||
595 | } | ||
596 | if (parm_count || parm_offset) { | ||
597 | if (unlikely(parm_offset < hdrlen)) | ||
598 | goto out_bad_parm; | ||
599 | else | ||
600 | parm_offset -= hdrlen; | ||
601 | } | ||
602 | |||
603 | if (parm_count == parm_tot && data_count == data_tot) { | ||
604 | /* | ||
605 | * This packet has all the trans2 data. | ||
606 | * | ||
607 | * We setup the request so that this will be the common | ||
608 | * case. It may be a server error to not return a | ||
609 | * response that fits. | ||
610 | */ | ||
611 | VERBOSE("single trans2 response " | ||
612 | "dcnt=%u, pcnt=%u, doff=%u, poff=%u\n", | ||
613 | data_count, parm_count, | ||
614 | data_offset, parm_offset); | ||
615 | req->rq_ldata = data_count; | ||
616 | req->rq_lparm = parm_count; | ||
617 | req->rq_data = req->rq_buffer + data_offset; | ||
618 | req->rq_parm = req->rq_buffer + parm_offset; | ||
619 | if (unlikely(parm_offset + parm_count > req->rq_rlen)) | ||
620 | goto out_bad_parm; | ||
621 | if (unlikely(data_offset + data_count > req->rq_rlen)) | ||
622 | goto out_bad_data; | ||
623 | return 0; | ||
624 | } | ||
625 | |||
626 | VERBOSE("multi trans2 response " | ||
627 | "frag=%d, dcnt=%u, pcnt=%u, doff=%u, poff=%u\n", | ||
628 | req->rq_fragment, | ||
629 | data_count, parm_count, | ||
630 | data_offset, parm_offset); | ||
631 | |||
632 | if (!req->rq_fragment) { | ||
633 | int buf_len; | ||
634 | |||
635 | /* We got the first trans2 fragment */ | ||
636 | req->rq_fragment = 1; | ||
637 | req->rq_total_data = data_tot; | ||
638 | req->rq_total_parm = parm_tot; | ||
639 | req->rq_ldata = 0; | ||
640 | req->rq_lparm = 0; | ||
641 | |||
642 | buf_len = data_tot + parm_tot; | ||
643 | if (buf_len > SMB_MAX_PACKET_SIZE) | ||
644 | goto out_too_long; | ||
645 | |||
646 | req->rq_trans2bufsize = buf_len; | ||
647 | req->rq_trans2buffer = kzalloc(buf_len, GFP_NOFS); | ||
648 | if (!req->rq_trans2buffer) | ||
649 | goto out_no_mem; | ||
650 | |||
651 | req->rq_parm = req->rq_trans2buffer; | ||
652 | req->rq_data = req->rq_trans2buffer + parm_tot; | ||
653 | } else if (unlikely(req->rq_total_data < data_tot || | ||
654 | req->rq_total_parm < parm_tot)) | ||
655 | goto out_data_grew; | ||
656 | |||
657 | if (unlikely(parm_disp + parm_count > req->rq_total_parm || | ||
658 | parm_offset + parm_count > req->rq_rlen)) | ||
659 | goto out_bad_parm; | ||
660 | if (unlikely(data_disp + data_count > req->rq_total_data || | ||
661 | data_offset + data_count > req->rq_rlen)) | ||
662 | goto out_bad_data; | ||
663 | |||
664 | inbuf = req->rq_buffer; | ||
665 | memcpy(req->rq_parm + parm_disp, inbuf + parm_offset, parm_count); | ||
666 | memcpy(req->rq_data + data_disp, inbuf + data_offset, data_count); | ||
667 | |||
668 | req->rq_ldata += data_count; | ||
669 | req->rq_lparm += parm_count; | ||
670 | |||
671 | /* | ||
672 | * Check whether we've received all of the data. Note that | ||
673 | * we use the packet totals -- total lengths might shrink! | ||
674 | */ | ||
675 | if (req->rq_ldata >= data_tot && req->rq_lparm >= parm_tot) { | ||
676 | req->rq_ldata = data_tot; | ||
677 | req->rq_lparm = parm_tot; | ||
678 | return 0; | ||
679 | } | ||
680 | return 1; | ||
681 | |||
682 | out_too_long: | ||
683 | printk(KERN_ERR "smb_trans2: data/param too long, data=%u, parm=%u\n", | ||
684 | data_tot, parm_tot); | ||
685 | goto out_EIO; | ||
686 | out_no_mem: | ||
687 | printk(KERN_ERR "smb_trans2: couldn't allocate data area of %d bytes\n", | ||
688 | req->rq_trans2bufsize); | ||
689 | req->rq_errno = -ENOMEM; | ||
690 | goto out; | ||
691 | out_data_grew: | ||
692 | printk(KERN_ERR "smb_trans2: data/params grew!\n"); | ||
693 | goto out_EIO; | ||
694 | out_bad_parm: | ||
695 | printk(KERN_ERR "smb_trans2: invalid parms, disp=%u, cnt=%u, tot=%u, ofs=%u\n", | ||
696 | parm_disp, parm_count, parm_tot, parm_offset); | ||
697 | goto out_EIO; | ||
698 | out_bad_data: | ||
699 | printk(KERN_ERR "smb_trans2: invalid data, disp=%u, cnt=%u, tot=%u, ofs=%u\n", | ||
700 | data_disp, data_count, data_tot, data_offset); | ||
701 | out_EIO: | ||
702 | req->rq_errno = -EIO; | ||
703 | out: | ||
704 | return req->rq_errno; | ||
705 | } | ||
706 | |||
707 | /* | ||
708 | * State machine for receiving responses. We handle the fact that we can't | ||
709 | * read the full response in one try by having states telling us how much we | ||
710 | * have read. | ||
711 | * | ||
712 | * Must be called with the server lock held (only called from smbiod). | ||
713 | * | ||
714 | * Return: <0 on error | ||
715 | */ | ||
716 | int smb_request_recv(struct smb_sb_info *server) | ||
717 | { | ||
718 | struct smb_request *req = NULL; | ||
719 | int result = 0; | ||
720 | |||
721 | if (smb_recv_available(server) <= 0) | ||
722 | return 0; | ||
723 | |||
724 | VERBOSE("state: %d\n", server->rstate); | ||
725 | switch (server->rstate) { | ||
726 | case SMB_RECV_DROP: | ||
727 | result = smb_receive_drop(server); | ||
728 | if (result < 0) | ||
729 | break; | ||
730 | if (server->rstate == SMB_RECV_DROP) | ||
731 | break; | ||
732 | server->rstate = SMB_RECV_START; | ||
733 | /* fallthrough */ | ||
734 | case SMB_RECV_START: | ||
735 | server->smb_read = 0; | ||
736 | server->rstate = SMB_RECV_HEADER; | ||
737 | /* fallthrough */ | ||
738 | case SMB_RECV_HEADER: | ||
739 | result = smb_receive_header(server); | ||
740 | if (result < 0) | ||
741 | break; | ||
742 | if (server->rstate == SMB_RECV_HEADER) | ||
743 | break; | ||
744 | if (! (*(server->header + smb_flg) & SMB_FLAGS_REPLY) ) { | ||
745 | server->rstate = SMB_RECV_REQUEST; | ||
746 | break; | ||
747 | } | ||
748 | if (server->rstate != SMB_RECV_HCOMPLETE) | ||
749 | break; | ||
750 | /* fallthrough */ | ||
751 | case SMB_RECV_HCOMPLETE: | ||
752 | req = find_request(server, WVAL(server->header, smb_mid)); | ||
753 | if (!req) | ||
754 | break; | ||
755 | smb_init_request(server, req); | ||
756 | req->rq_rcls = *(req->rq_header + smb_rcls); | ||
757 | req->rq_err = WVAL(req->rq_header, smb_err); | ||
758 | if (server->rstate != SMB_RECV_PARAM) | ||
759 | break; | ||
760 | /* fallthrough */ | ||
761 | case SMB_RECV_PARAM: | ||
762 | if (!req) | ||
763 | req = find_request(server,WVAL(server->header,smb_mid)); | ||
764 | if (!req) | ||
765 | break; | ||
766 | result = smb_recv_param(server, req); | ||
767 | if (result < 0) | ||
768 | break; | ||
769 | if (server->rstate != SMB_RECV_DATA) | ||
770 | break; | ||
771 | /* fallthrough */ | ||
772 | case SMB_RECV_DATA: | ||
773 | if (!req) | ||
774 | req = find_request(server,WVAL(server->header,smb_mid)); | ||
775 | if (!req) | ||
776 | break; | ||
777 | result = smb_recv_data(server, req); | ||
778 | if (result < 0) | ||
779 | break; | ||
780 | break; | ||
781 | |||
782 | /* We should never be called with any of these states */ | ||
783 | case SMB_RECV_END: | ||
784 | case SMB_RECV_REQUEST: | ||
785 | BUG(); | ||
786 | } | ||
787 | |||
788 | if (result < 0) { | ||
789 | /* We saw an error */ | ||
790 | return result; | ||
791 | } | ||
792 | |||
793 | if (server->rstate != SMB_RECV_END) | ||
794 | return 0; | ||
795 | |||
796 | result = 0; | ||
797 | if (req->rq_trans2_command && req->rq_rcls == SUCCESS) | ||
798 | result = smb_recv_trans2(server, req); | ||
799 | |||
800 | /* | ||
801 | * Response completely read. Drop any extra bytes sent by the server. | ||
802 | * (Yes, servers sometimes add extra bytes to responses) | ||
803 | */ | ||
804 | VERBOSE("smb_len: %d smb_read: %d\n", | ||
805 | server->smb_len, server->smb_read); | ||
806 | if (server->smb_read < server->smb_len) | ||
807 | smb_receive_drop(server); | ||
808 | |||
809 | server->rstate = SMB_RECV_START; | ||
810 | |||
811 | if (!result) { | ||
812 | list_del_init(&req->rq_queue); | ||
813 | req->rq_flags |= SMB_REQ_RECEIVED; | ||
814 | smb_rput(req); | ||
815 | wake_up_interruptible(&req->rq_wait); | ||
816 | } | ||
817 | return 0; | ||
818 | } | ||
diff --git a/fs/smbfs/request.h b/fs/smbfs/request.h deleted file mode 100644 index efb21451e7c9..000000000000 --- a/fs/smbfs/request.h +++ /dev/null | |||
@@ -1,70 +0,0 @@ | |||
1 | #include <linux/list.h> | ||
2 | #include <linux/types.h> | ||
3 | #include <linux/uio.h> | ||
4 | #include <linux/wait.h> | ||
5 | |||
6 | struct smb_request { | ||
7 | struct list_head rq_queue; /* recvq or xmitq for the server */ | ||
8 | |||
9 | atomic_t rq_count; | ||
10 | |||
11 | wait_queue_head_t rq_wait; | ||
12 | int rq_flags; | ||
13 | int rq_mid; /* multiplex ID, set by request.c */ | ||
14 | |||
15 | struct smb_sb_info *rq_server; | ||
16 | |||
17 | /* header + word count + parameter words + byte count */ | ||
18 | unsigned char rq_header[SMB_HEADER_LEN + 20*2 + 2]; | ||
19 | |||
20 | int rq_bufsize; | ||
21 | unsigned char *rq_buffer; | ||
22 | |||
23 | /* FIXME: this is not good enough for merging IO requests. */ | ||
24 | unsigned char *rq_page; | ||
25 | int rq_rsize; | ||
26 | |||
27 | int rq_resp_wct; | ||
28 | int rq_resp_bcc; | ||
29 | |||
30 | int rq_rlen; | ||
31 | int rq_bytes_recvd; | ||
32 | |||
33 | int rq_slen; | ||
34 | int rq_bytes_sent; | ||
35 | |||
36 | int rq_iovlen; | ||
37 | struct kvec rq_iov[4]; | ||
38 | |||
39 | int (*rq_setup_read) (struct smb_request *); | ||
40 | void (*rq_callback) (struct smb_request *); | ||
41 | |||
42 | /* ------ trans2 stuff ------ */ | ||
43 | |||
44 | u16 rq_trans2_command; /* 0 if not a trans2 request */ | ||
45 | unsigned int rq_ldata; | ||
46 | unsigned char *rq_data; | ||
47 | unsigned int rq_lparm; | ||
48 | unsigned char *rq_parm; | ||
49 | |||
50 | int rq_fragment; | ||
51 | u32 rq_total_data; | ||
52 | u32 rq_total_parm; | ||
53 | int rq_trans2bufsize; | ||
54 | unsigned char *rq_trans2buffer; | ||
55 | |||
56 | /* ------ response ------ */ | ||
57 | |||
58 | unsigned short rq_rcls; | ||
59 | unsigned short rq_err; | ||
60 | int rq_errno; | ||
61 | }; | ||
62 | |||
63 | #define SMB_REQ_STATIC 0x0001 /* rq_buffer is static */ | ||
64 | #define SMB_REQ_NORETRY 0x0002 /* request is invalid after retry */ | ||
65 | |||
66 | #define SMB_REQ_TRANSMITTED 0x4000 /* all data has been sent */ | ||
67 | #define SMB_REQ_RECEIVED 0x8000 /* reply received, smbiod is done */ | ||
68 | |||
69 | #define xSMB_REQ_NOREPLY 0x0004 /* we don't want the reply (if any) */ | ||
70 | #define xSMB_REQ_NORECEIVER 0x0008 /* caller doesn't wait for response */ | ||
diff --git a/fs/smbfs/smb_debug.h b/fs/smbfs/smb_debug.h deleted file mode 100644 index fc4b1a5dd755..000000000000 --- a/fs/smbfs/smb_debug.h +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | /* | ||
2 | * Defines some debug macros for smbfs. | ||
3 | */ | ||
4 | |||
5 | /* This makes a dentry parent/child name pair. Useful for debugging printk's */ | ||
6 | #define DENTRY_PATH(dentry) \ | ||
7 | (dentry)->d_parent->d_name.name,(dentry)->d_name.name | ||
8 | |||
9 | /* | ||
10 | * safety checks that should never happen ??? | ||
11 | * these are normally enabled. | ||
12 | */ | ||
13 | #ifdef SMBFS_PARANOIA | ||
14 | # define PARANOIA(f, a...) printk(KERN_NOTICE "%s: " f, __func__ , ## a) | ||
15 | #else | ||
16 | # define PARANOIA(f, a...) do { ; } while(0) | ||
17 | #endif | ||
18 | |||
19 | /* lots of debug messages */ | ||
20 | #ifdef SMBFS_DEBUG_VERBOSE | ||
21 | # define VERBOSE(f, a...) printk(KERN_DEBUG "%s: " f, __func__ , ## a) | ||
22 | #else | ||
23 | # define VERBOSE(f, a...) do { ; } while(0) | ||
24 | #endif | ||
25 | |||
26 | /* | ||
27 | * "normal" debug messages, but not with a normal DEBUG define ... way | ||
28 | * too common name. | ||
29 | */ | ||
30 | #ifdef SMBFS_DEBUG | ||
31 | #define DEBUG1(f, a...) printk(KERN_DEBUG "%s: " f, __func__ , ## a) | ||
32 | #else | ||
33 | #define DEBUG1(f, a...) do { ; } while(0) | ||
34 | #endif | ||
diff --git a/fs/smbfs/smbiod.c b/fs/smbfs/smbiod.c deleted file mode 100644 index 0e39a924f10a..000000000000 --- a/fs/smbfs/smbiod.c +++ /dev/null | |||
@@ -1,344 +0,0 @@ | |||
1 | /* | ||
2 | * smbiod.c | ||
3 | * | ||
4 | * Copyright (C) 2000, Charles Loep / Corel Corp. | ||
5 | * Copyright (C) 2001, Urban Widmark | ||
6 | */ | ||
7 | |||
8 | |||
9 | #include <linux/sched.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/mm.h> | ||
12 | #include <linux/string.h> | ||
13 | #include <linux/stat.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/file.h> | ||
17 | #include <linux/dcache.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/net.h> | ||
20 | #include <linux/kthread.h> | ||
21 | #include <net/ip.h> | ||
22 | |||
23 | #include <linux/smb_fs.h> | ||
24 | #include <linux/smbno.h> | ||
25 | #include <linux/smb_mount.h> | ||
26 | |||
27 | #include <asm/system.h> | ||
28 | #include <asm/uaccess.h> | ||
29 | |||
30 | #include "smb_debug.h" | ||
31 | #include "request.h" | ||
32 | #include "proto.h" | ||
33 | |||
34 | enum smbiod_state { | ||
35 | SMBIOD_DEAD, | ||
36 | SMBIOD_STARTING, | ||
37 | SMBIOD_RUNNING, | ||
38 | }; | ||
39 | |||
40 | static enum smbiod_state smbiod_state = SMBIOD_DEAD; | ||
41 | static struct task_struct *smbiod_thread; | ||
42 | static DECLARE_WAIT_QUEUE_HEAD(smbiod_wait); | ||
43 | static LIST_HEAD(smb_servers); | ||
44 | static DEFINE_SPINLOCK(servers_lock); | ||
45 | |||
46 | #define SMBIOD_DATA_READY (1<<0) | ||
47 | static unsigned long smbiod_flags; | ||
48 | |||
49 | static int smbiod(void *); | ||
50 | static int smbiod_start(void); | ||
51 | |||
52 | /* | ||
53 | * called when there's work for us to do | ||
54 | */ | ||
55 | void smbiod_wake_up(void) | ||
56 | { | ||
57 | if (smbiod_state == SMBIOD_DEAD) | ||
58 | return; | ||
59 | set_bit(SMBIOD_DATA_READY, &smbiod_flags); | ||
60 | wake_up_interruptible(&smbiod_wait); | ||
61 | } | ||
62 | |||
63 | /* | ||
64 | * start smbiod if none is running | ||
65 | */ | ||
66 | static int smbiod_start(void) | ||
67 | { | ||
68 | struct task_struct *tsk; | ||
69 | int err = 0; | ||
70 | |||
71 | if (smbiod_state != SMBIOD_DEAD) | ||
72 | return 0; | ||
73 | smbiod_state = SMBIOD_STARTING; | ||
74 | __module_get(THIS_MODULE); | ||
75 | spin_unlock(&servers_lock); | ||
76 | tsk = kthread_run(smbiod, NULL, "smbiod"); | ||
77 | if (IS_ERR(tsk)) { | ||
78 | err = PTR_ERR(tsk); | ||
79 | module_put(THIS_MODULE); | ||
80 | } | ||
81 | |||
82 | spin_lock(&servers_lock); | ||
83 | if (err < 0) { | ||
84 | smbiod_state = SMBIOD_DEAD; | ||
85 | smbiod_thread = NULL; | ||
86 | } else { | ||
87 | smbiod_state = SMBIOD_RUNNING; | ||
88 | smbiod_thread = tsk; | ||
89 | } | ||
90 | return err; | ||
91 | } | ||
92 | |||
93 | /* | ||
94 | * register a server & start smbiod if necessary | ||
95 | */ | ||
96 | int smbiod_register_server(struct smb_sb_info *server) | ||
97 | { | ||
98 | int ret; | ||
99 | spin_lock(&servers_lock); | ||
100 | list_add(&server->entry, &smb_servers); | ||
101 | VERBOSE("%p\n", server); | ||
102 | ret = smbiod_start(); | ||
103 | spin_unlock(&servers_lock); | ||
104 | return ret; | ||
105 | } | ||
106 | |||
107 | /* | ||
108 | * Unregister a server | ||
109 | * Must be called with the server lock held. | ||
110 | */ | ||
111 | void smbiod_unregister_server(struct smb_sb_info *server) | ||
112 | { | ||
113 | spin_lock(&servers_lock); | ||
114 | list_del_init(&server->entry); | ||
115 | VERBOSE("%p\n", server); | ||
116 | spin_unlock(&servers_lock); | ||
117 | |||
118 | smbiod_wake_up(); | ||
119 | smbiod_flush(server); | ||
120 | } | ||
121 | |||
122 | void smbiod_flush(struct smb_sb_info *server) | ||
123 | { | ||
124 | struct list_head *tmp, *n; | ||
125 | struct smb_request *req; | ||
126 | |||
127 | list_for_each_safe(tmp, n, &server->xmitq) { | ||
128 | req = list_entry(tmp, struct smb_request, rq_queue); | ||
129 | req->rq_errno = -EIO; | ||
130 | list_del_init(&req->rq_queue); | ||
131 | smb_rput(req); | ||
132 | wake_up_interruptible(&req->rq_wait); | ||
133 | } | ||
134 | list_for_each_safe(tmp, n, &server->recvq) { | ||
135 | req = list_entry(tmp, struct smb_request, rq_queue); | ||
136 | req->rq_errno = -EIO; | ||
137 | list_del_init(&req->rq_queue); | ||
138 | smb_rput(req); | ||
139 | wake_up_interruptible(&req->rq_wait); | ||
140 | } | ||
141 | } | ||
142 | |||
143 | /* | ||
144 | * Wake up smbmount and make it reconnect to the server. | ||
145 | * This must be called with the server locked. | ||
146 | * | ||
147 | * FIXME: add smbconnect version to this | ||
148 | */ | ||
149 | int smbiod_retry(struct smb_sb_info *server) | ||
150 | { | ||
151 | struct list_head *head; | ||
152 | struct smb_request *req; | ||
153 | struct pid *pid = get_pid(server->conn_pid); | ||
154 | int result = 0; | ||
155 | |||
156 | VERBOSE("state: %d\n", server->state); | ||
157 | if (server->state == CONN_VALID || server->state == CONN_RETRYING) | ||
158 | goto out; | ||
159 | |||
160 | smb_invalidate_inodes(server); | ||
161 | |||
162 | /* | ||
163 | * Some requests are meaningless after a retry, so we abort them. | ||
164 | * One example are all requests using 'fileid' since the files are | ||
165 | * closed on retry. | ||
166 | */ | ||
167 | head = server->xmitq.next; | ||
168 | while (head != &server->xmitq) { | ||
169 | req = list_entry(head, struct smb_request, rq_queue); | ||
170 | head = head->next; | ||
171 | |||
172 | req->rq_bytes_sent = 0; | ||
173 | if (req->rq_flags & SMB_REQ_NORETRY) { | ||
174 | VERBOSE("aborting request %p on xmitq\n", req); | ||
175 | req->rq_errno = -EIO; | ||
176 | list_del_init(&req->rq_queue); | ||
177 | smb_rput(req); | ||
178 | wake_up_interruptible(&req->rq_wait); | ||
179 | } | ||
180 | } | ||
181 | |||
182 | /* | ||
183 | * FIXME: test the code for retrying request we already sent | ||
184 | */ | ||
185 | head = server->recvq.next; | ||
186 | while (head != &server->recvq) { | ||
187 | req = list_entry(head, struct smb_request, rq_queue); | ||
188 | head = head->next; | ||
189 | #if 0 | ||
190 | if (req->rq_flags & SMB_REQ_RETRY) { | ||
191 | /* must move the request to the xmitq */ | ||
192 | VERBOSE("retrying request %p on recvq\n", req); | ||
193 | list_move(&req->rq_queue, &server->xmitq); | ||
194 | continue; | ||
195 | } | ||
196 | #endif | ||
197 | |||
198 | VERBOSE("aborting request %p on recvq\n", req); | ||
199 | /* req->rq_rcls = ???; */ /* FIXME: set smb error code too? */ | ||
200 | req->rq_errno = -EIO; | ||
201 | list_del_init(&req->rq_queue); | ||
202 | smb_rput(req); | ||
203 | wake_up_interruptible(&req->rq_wait); | ||
204 | } | ||
205 | |||
206 | smb_close_socket(server); | ||
207 | |||
208 | if (!pid) { | ||
209 | /* FIXME: this is fatal, umount? */ | ||
210 | printk(KERN_ERR "smb_retry: no connection process\n"); | ||
211 | server->state = CONN_RETRIED; | ||
212 | goto out; | ||
213 | } | ||
214 | |||
215 | /* | ||
216 | * Change state so that only one retry per server will be started. | ||
217 | */ | ||
218 | server->state = CONN_RETRYING; | ||
219 | |||
220 | /* | ||
221 | * Note: use the "priv" flag, as a user process may need to reconnect. | ||
222 | */ | ||
223 | result = kill_pid(pid, SIGUSR1, 1); | ||
224 | if (result) { | ||
225 | /* FIXME: this is most likely fatal, umount? */ | ||
226 | printk(KERN_ERR "smb_retry: signal failed [%d]\n", result); | ||
227 | goto out; | ||
228 | } | ||
229 | VERBOSE("signalled pid %d\n", pid_nr(pid)); | ||
230 | |||
231 | /* FIXME: The retried requests should perhaps get a "time boost". */ | ||
232 | |||
233 | out: | ||
234 | put_pid(pid); | ||
235 | return result; | ||
236 | } | ||
237 | |||
238 | /* | ||
239 | * Currently handles lockingX packets. | ||
240 | */ | ||
241 | static void smbiod_handle_request(struct smb_sb_info *server) | ||
242 | { | ||
243 | PARANOIA("smbiod got a request ... and we don't implement oplocks!\n"); | ||
244 | server->rstate = SMB_RECV_DROP; | ||
245 | } | ||
246 | |||
247 | /* | ||
248 | * Do some IO for one server. | ||
249 | */ | ||
250 | static void smbiod_doio(struct smb_sb_info *server) | ||
251 | { | ||
252 | int result; | ||
253 | int maxwork = 7; | ||
254 | |||
255 | if (server->state != CONN_VALID) | ||
256 | goto out; | ||
257 | |||
258 | do { | ||
259 | result = smb_request_recv(server); | ||
260 | if (result < 0) { | ||
261 | server->state = CONN_INVALID; | ||
262 | smbiod_retry(server); | ||
263 | goto out; /* reconnecting is slow */ | ||
264 | } else if (server->rstate == SMB_RECV_REQUEST) | ||
265 | smbiod_handle_request(server); | ||
266 | } while (result > 0 && maxwork-- > 0); | ||
267 | |||
268 | /* | ||
269 | * If there is more to read then we want to be sure to wake up again. | ||
270 | */ | ||
271 | if (server->state != CONN_VALID) | ||
272 | goto out; | ||
273 | if (smb_recv_available(server) > 0) | ||
274 | set_bit(SMBIOD_DATA_READY, &smbiod_flags); | ||
275 | |||
276 | do { | ||
277 | result = smb_request_send_server(server); | ||
278 | if (result < 0) { | ||
279 | server->state = CONN_INVALID; | ||
280 | smbiod_retry(server); | ||
281 | goto out; /* reconnecting is slow */ | ||
282 | } | ||
283 | } while (result > 0); | ||
284 | |||
285 | /* | ||
286 | * If the last request was not sent out we want to wake up again. | ||
287 | */ | ||
288 | if (!list_empty(&server->xmitq)) | ||
289 | set_bit(SMBIOD_DATA_READY, &smbiod_flags); | ||
290 | |||
291 | out: | ||
292 | return; | ||
293 | } | ||
294 | |||
295 | /* | ||
296 | * smbiod kernel thread | ||
297 | */ | ||
298 | static int smbiod(void *unused) | ||
299 | { | ||
300 | VERBOSE("SMB Kernel thread starting (%d) ...\n", current->pid); | ||
301 | |||
302 | for (;;) { | ||
303 | struct smb_sb_info *server; | ||
304 | struct list_head *pos, *n; | ||
305 | |||
306 | /* FIXME: Use poll? */ | ||
307 | wait_event_interruptible(smbiod_wait, | ||
308 | test_bit(SMBIOD_DATA_READY, &smbiod_flags)); | ||
309 | if (signal_pending(current)) { | ||
310 | spin_lock(&servers_lock); | ||
311 | smbiod_state = SMBIOD_DEAD; | ||
312 | spin_unlock(&servers_lock); | ||
313 | break; | ||
314 | } | ||
315 | |||
316 | clear_bit(SMBIOD_DATA_READY, &smbiod_flags); | ||
317 | |||
318 | spin_lock(&servers_lock); | ||
319 | if (list_empty(&smb_servers)) { | ||
320 | smbiod_state = SMBIOD_DEAD; | ||
321 | spin_unlock(&servers_lock); | ||
322 | break; | ||
323 | } | ||
324 | |||
325 | list_for_each_safe(pos, n, &smb_servers) { | ||
326 | server = list_entry(pos, struct smb_sb_info, entry); | ||
327 | VERBOSE("checking server %p\n", server); | ||
328 | |||
329 | if (server->state == CONN_VALID) { | ||
330 | spin_unlock(&servers_lock); | ||
331 | |||
332 | smb_lock_server(server); | ||
333 | smbiod_doio(server); | ||
334 | smb_unlock_server(server); | ||
335 | |||
336 | spin_lock(&servers_lock); | ||
337 | } | ||
338 | } | ||
339 | spin_unlock(&servers_lock); | ||
340 | } | ||
341 | |||
342 | VERBOSE("SMB Kernel thread exiting (%d) ...\n", current->pid); | ||
343 | module_put_and_exit(0); | ||
344 | } | ||
diff --git a/fs/smbfs/sock.c b/fs/smbfs/sock.c deleted file mode 100644 index e37fe4deebd0..000000000000 --- a/fs/smbfs/sock.c +++ /dev/null | |||
@@ -1,386 +0,0 @@ | |||
1 | /* | ||
2 | * sock.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/fs.h> | ||
11 | #include <linux/time.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/socket.h> | ||
14 | #include <linux/fcntl.h> | ||
15 | #include <linux/file.h> | ||
16 | #include <linux/in.h> | ||
17 | #include <linux/net.h> | ||
18 | #include <linux/mm.h> | ||
19 | #include <linux/netdevice.h> | ||
20 | #include <linux/workqueue.h> | ||
21 | #include <net/scm.h> | ||
22 | #include <net/tcp_states.h> | ||
23 | #include <net/ip.h> | ||
24 | |||
25 | #include <linux/smb_fs.h> | ||
26 | #include <linux/smb.h> | ||
27 | #include <linux/smbno.h> | ||
28 | |||
29 | #include <asm/uaccess.h> | ||
30 | #include <asm/ioctls.h> | ||
31 | |||
32 | #include "smb_debug.h" | ||
33 | #include "proto.h" | ||
34 | #include "request.h" | ||
35 | |||
36 | |||
37 | static int | ||
38 | _recvfrom(struct socket *socket, unsigned char *ubuf, int size, unsigned flags) | ||
39 | { | ||
40 | struct kvec iov = {ubuf, size}; | ||
41 | struct msghdr msg = {.msg_flags = flags}; | ||
42 | msg.msg_flags |= MSG_DONTWAIT | MSG_NOSIGNAL; | ||
43 | return kernel_recvmsg(socket, &msg, &iov, 1, size, msg.msg_flags); | ||
44 | } | ||
45 | |||
46 | /* | ||
47 | * Return the server this socket belongs to | ||
48 | */ | ||
49 | static struct smb_sb_info * | ||
50 | server_from_socket(struct socket *socket) | ||
51 | { | ||
52 | return socket->sk->sk_user_data; | ||
53 | } | ||
54 | |||
55 | /* | ||
56 | * Called when there is data on the socket. | ||
57 | */ | ||
58 | void | ||
59 | smb_data_ready(struct sock *sk, int len) | ||
60 | { | ||
61 | struct smb_sb_info *server = server_from_socket(sk->sk_socket); | ||
62 | void (*data_ready)(struct sock *, int) = server->data_ready; | ||
63 | |||
64 | data_ready(sk, len); | ||
65 | VERBOSE("(%p, %d)\n", sk, len); | ||
66 | smbiod_wake_up(); | ||
67 | } | ||
68 | |||
69 | int | ||
70 | smb_valid_socket(struct inode * inode) | ||
71 | { | ||
72 | return (inode && S_ISSOCK(inode->i_mode) && | ||
73 | SOCKET_I(inode)->type == SOCK_STREAM); | ||
74 | } | ||
75 | |||
76 | static struct socket * | ||
77 | server_sock(struct smb_sb_info *server) | ||
78 | { | ||
79 | struct file *file; | ||
80 | |||
81 | if (server && (file = server->sock_file)) | ||
82 | { | ||
83 | #ifdef SMBFS_PARANOIA | ||
84 | if (!smb_valid_socket(file->f_path.dentry->d_inode)) | ||
85 | PARANOIA("bad socket!\n"); | ||
86 | #endif | ||
87 | return SOCKET_I(file->f_path.dentry->d_inode); | ||
88 | } | ||
89 | return NULL; | ||
90 | } | ||
91 | |||
92 | void | ||
93 | smb_close_socket(struct smb_sb_info *server) | ||
94 | { | ||
95 | struct file * file = server->sock_file; | ||
96 | |||
97 | if (file) { | ||
98 | struct socket *sock = server_sock(server); | ||
99 | |||
100 | VERBOSE("closing socket %p\n", sock); | ||
101 | sock->sk->sk_data_ready = server->data_ready; | ||
102 | server->sock_file = NULL; | ||
103 | fput(file); | ||
104 | } | ||
105 | } | ||
106 | |||
107 | static int | ||
108 | smb_get_length(struct socket *socket, unsigned char *header) | ||
109 | { | ||
110 | int result; | ||
111 | |||
112 | result = _recvfrom(socket, header, 4, MSG_PEEK); | ||
113 | if (result == -EAGAIN) | ||
114 | return -ENODATA; | ||
115 | if (result < 0) { | ||
116 | PARANOIA("recv error = %d\n", -result); | ||
117 | return result; | ||
118 | } | ||
119 | if (result < 4) | ||
120 | return -ENODATA; | ||
121 | |||
122 | switch (header[0]) { | ||
123 | case 0x00: | ||
124 | case 0x82: | ||
125 | break; | ||
126 | |||
127 | case 0x85: | ||
128 | DEBUG1("Got SESSION KEEP ALIVE\n"); | ||
129 | _recvfrom(socket, header, 4, 0); /* read away */ | ||
130 | return -ENODATA; | ||
131 | |||
132 | default: | ||
133 | PARANOIA("Invalid NBT packet, code=%x\n", header[0]); | ||
134 | return -EIO; | ||
135 | } | ||
136 | |||
137 | /* The length in the RFC NB header is the raw data length */ | ||
138 | return smb_len(header); | ||
139 | } | ||
140 | |||
141 | int | ||
142 | smb_recv_available(struct smb_sb_info *server) | ||
143 | { | ||
144 | mm_segment_t oldfs; | ||
145 | int avail, err; | ||
146 | struct socket *sock = server_sock(server); | ||
147 | |||
148 | oldfs = get_fs(); | ||
149 | set_fs(get_ds()); | ||
150 | err = sock->ops->ioctl(sock, SIOCINQ, (unsigned long) &avail); | ||
151 | set_fs(oldfs); | ||
152 | return (err >= 0) ? avail : err; | ||
153 | } | ||
154 | |||
155 | /* | ||
156 | * Adjust the kvec to move on 'n' bytes (from nfs/sunrpc) | ||
157 | */ | ||
158 | static int | ||
159 | smb_move_iov(struct kvec **data, size_t *num, struct kvec *vec, unsigned amount) | ||
160 | { | ||
161 | struct kvec *iv = *data; | ||
162 | int i; | ||
163 | int len; | ||
164 | |||
165 | /* | ||
166 | * Eat any sent kvecs | ||
167 | */ | ||
168 | while (iv->iov_len <= amount) { | ||
169 | amount -= iv->iov_len; | ||
170 | iv++; | ||
171 | (*num)--; | ||
172 | } | ||
173 | |||
174 | /* | ||
175 | * And chew down the partial one | ||
176 | */ | ||
177 | vec[0].iov_len = iv->iov_len-amount; | ||
178 | vec[0].iov_base =((unsigned char *)iv->iov_base)+amount; | ||
179 | iv++; | ||
180 | |||
181 | len = vec[0].iov_len; | ||
182 | |||
183 | /* | ||
184 | * And copy any others | ||
185 | */ | ||
186 | for (i = 1; i < *num; i++) { | ||
187 | vec[i] = *iv++; | ||
188 | len += vec[i].iov_len; | ||
189 | } | ||
190 | |||
191 | *data = vec; | ||
192 | return len; | ||
193 | } | ||
194 | |||
195 | /* | ||
196 | * smb_receive_header | ||
197 | * Only called by the smbiod thread. | ||
198 | */ | ||
199 | int | ||
200 | smb_receive_header(struct smb_sb_info *server) | ||
201 | { | ||
202 | struct socket *sock; | ||
203 | int result = 0; | ||
204 | unsigned char peek_buf[4]; | ||
205 | |||
206 | result = -EIO; | ||
207 | sock = server_sock(server); | ||
208 | if (!sock) | ||
209 | goto out; | ||
210 | if (sock->sk->sk_state != TCP_ESTABLISHED) | ||
211 | goto out; | ||
212 | |||
213 | if (!server->smb_read) { | ||
214 | result = smb_get_length(sock, peek_buf); | ||
215 | if (result < 0) { | ||
216 | if (result == -ENODATA) | ||
217 | result = 0; | ||
218 | goto out; | ||
219 | } | ||
220 | server->smb_len = result + 4; | ||
221 | |||
222 | if (server->smb_len < SMB_HEADER_LEN) { | ||
223 | PARANOIA("short packet: %d\n", result); | ||
224 | server->rstate = SMB_RECV_DROP; | ||
225 | result = -EIO; | ||
226 | goto out; | ||
227 | } | ||
228 | if (server->smb_len > SMB_MAX_PACKET_SIZE) { | ||
229 | PARANOIA("long packet: %d\n", result); | ||
230 | server->rstate = SMB_RECV_DROP; | ||
231 | result = -EIO; | ||
232 | goto out; | ||
233 | } | ||
234 | } | ||
235 | |||
236 | result = _recvfrom(sock, server->header + server->smb_read, | ||
237 | SMB_HEADER_LEN - server->smb_read, 0); | ||
238 | VERBOSE("_recvfrom: %d\n", result); | ||
239 | if (result < 0) { | ||
240 | VERBOSE("receive error: %d\n", result); | ||
241 | goto out; | ||
242 | } | ||
243 | server->smb_read += result; | ||
244 | |||
245 | if (server->smb_read == SMB_HEADER_LEN) | ||
246 | server->rstate = SMB_RECV_HCOMPLETE; | ||
247 | out: | ||
248 | return result; | ||
249 | } | ||
250 | |||
251 | static char drop_buffer[PAGE_SIZE]; | ||
252 | |||
253 | /* | ||
254 | * smb_receive_drop - read and throw away the data | ||
255 | * Only called by the smbiod thread. | ||
256 | * | ||
257 | * FIXME: we are in the kernel, could we just tell the socket that we want | ||
258 | * to drop stuff from the buffer? | ||
259 | */ | ||
260 | int | ||
261 | smb_receive_drop(struct smb_sb_info *server) | ||
262 | { | ||
263 | struct socket *sock; | ||
264 | unsigned int flags; | ||
265 | struct kvec iov; | ||
266 | struct msghdr msg; | ||
267 | int rlen = smb_len(server->header) - server->smb_read + 4; | ||
268 | int result = -EIO; | ||
269 | |||
270 | if (rlen > PAGE_SIZE) | ||
271 | rlen = PAGE_SIZE; | ||
272 | |||
273 | sock = server_sock(server); | ||
274 | if (!sock) | ||
275 | goto out; | ||
276 | if (sock->sk->sk_state != TCP_ESTABLISHED) | ||
277 | goto out; | ||
278 | |||
279 | flags = MSG_DONTWAIT | MSG_NOSIGNAL; | ||
280 | iov.iov_base = drop_buffer; | ||
281 | iov.iov_len = PAGE_SIZE; | ||
282 | msg.msg_flags = flags; | ||
283 | msg.msg_name = NULL; | ||
284 | msg.msg_namelen = 0; | ||
285 | msg.msg_control = NULL; | ||
286 | |||
287 | result = kernel_recvmsg(sock, &msg, &iov, 1, rlen, flags); | ||
288 | |||
289 | VERBOSE("read: %d\n", result); | ||
290 | if (result < 0) { | ||
291 | VERBOSE("receive error: %d\n", result); | ||
292 | goto out; | ||
293 | } | ||
294 | server->smb_read += result; | ||
295 | |||
296 | if (server->smb_read >= server->smb_len) | ||
297 | server->rstate = SMB_RECV_END; | ||
298 | |||
299 | out: | ||
300 | return result; | ||
301 | } | ||
302 | |||
303 | /* | ||
304 | * smb_receive | ||
305 | * Only called by the smbiod thread. | ||
306 | */ | ||
307 | int | ||
308 | smb_receive(struct smb_sb_info *server, struct smb_request *req) | ||
309 | { | ||
310 | struct socket *sock; | ||
311 | unsigned int flags; | ||
312 | struct kvec iov[4]; | ||
313 | struct kvec *p = req->rq_iov; | ||
314 | size_t num = req->rq_iovlen; | ||
315 | struct msghdr msg; | ||
316 | int rlen; | ||
317 | int result = -EIO; | ||
318 | |||
319 | sock = server_sock(server); | ||
320 | if (!sock) | ||
321 | goto out; | ||
322 | if (sock->sk->sk_state != TCP_ESTABLISHED) | ||
323 | goto out; | ||
324 | |||
325 | flags = MSG_DONTWAIT | MSG_NOSIGNAL; | ||
326 | msg.msg_flags = flags; | ||
327 | msg.msg_name = NULL; | ||
328 | msg.msg_namelen = 0; | ||
329 | msg.msg_control = NULL; | ||
330 | |||
331 | /* Dont repeat bytes and count available bufferspace */ | ||
332 | rlen = min_t(int, smb_move_iov(&p, &num, iov, req->rq_bytes_recvd), | ||
333 | (req->rq_rlen - req->rq_bytes_recvd)); | ||
334 | |||
335 | result = kernel_recvmsg(sock, &msg, p, num, rlen, flags); | ||
336 | |||
337 | VERBOSE("read: %d\n", result); | ||
338 | if (result < 0) { | ||
339 | VERBOSE("receive error: %d\n", result); | ||
340 | goto out; | ||
341 | } | ||
342 | req->rq_bytes_recvd += result; | ||
343 | server->smb_read += result; | ||
344 | |||
345 | out: | ||
346 | return result; | ||
347 | } | ||
348 | |||
349 | /* | ||
350 | * Try to send a SMB request. This may return after sending only parts of the | ||
351 | * request. SMB_REQ_TRANSMITTED will be set if a request was fully sent. | ||
352 | * | ||
353 | * Parts of this was taken from xprt_sendmsg from net/sunrpc/xprt.c | ||
354 | */ | ||
355 | int | ||
356 | smb_send_request(struct smb_request *req) | ||
357 | { | ||
358 | struct smb_sb_info *server = req->rq_server; | ||
359 | struct socket *sock; | ||
360 | struct msghdr msg = {.msg_flags = MSG_NOSIGNAL | MSG_DONTWAIT}; | ||
361 | int slen = req->rq_slen - req->rq_bytes_sent; | ||
362 | int result = -EIO; | ||
363 | struct kvec iov[4]; | ||
364 | struct kvec *p = req->rq_iov; | ||
365 | size_t num = req->rq_iovlen; | ||
366 | |||
367 | sock = server_sock(server); | ||
368 | if (!sock) | ||
369 | goto out; | ||
370 | if (sock->sk->sk_state != TCP_ESTABLISHED) | ||
371 | goto out; | ||
372 | |||
373 | /* Dont repeat bytes */ | ||
374 | if (req->rq_bytes_sent) | ||
375 | smb_move_iov(&p, &num, iov, req->rq_bytes_sent); | ||
376 | |||
377 | result = kernel_sendmsg(sock, &msg, p, num, slen); | ||
378 | |||
379 | if (result >= 0) { | ||
380 | req->rq_bytes_sent += result; | ||
381 | if (req->rq_bytes_sent >= req->rq_slen) | ||
382 | req->rq_flags |= SMB_REQ_TRANSMITTED; | ||
383 | } | ||
384 | out: | ||
385 | return result; | ||
386 | } | ||
diff --git a/fs/smbfs/symlink.c b/fs/smbfs/symlink.c deleted file mode 100644 index 00b2909bd469..000000000000 --- a/fs/smbfs/symlink.c +++ /dev/null | |||
@@ -1,68 +0,0 @@ | |||
1 | /* | ||
2 | * symlink.c | ||
3 | * | ||
4 | * Copyright (C) 2002 by John Newbigin | ||
5 | * | ||
6 | * Please add a note about your changes to smbfs in the ChangeLog file. | ||
7 | */ | ||
8 | |||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/errno.h> | ||
11 | #include <linux/fcntl.h> | ||
12 | #include <linux/stat.h> | ||
13 | #include <linux/mm.h> | ||
14 | #include <linux/slab.h> | ||
15 | #include <linux/pagemap.h> | ||
16 | #include <linux/net.h> | ||
17 | #include <linux/namei.h> | ||
18 | |||
19 | #include <asm/uaccess.h> | ||
20 | #include <asm/system.h> | ||
21 | |||
22 | #include <linux/smbno.h> | ||
23 | #include <linux/smb_fs.h> | ||
24 | |||
25 | #include "smb_debug.h" | ||
26 | #include "proto.h" | ||
27 | |||
28 | int smb_symlink(struct inode *inode, struct dentry *dentry, const char *oldname) | ||
29 | { | ||
30 | DEBUG1("create symlink %s -> %s/%s\n", oldname, DENTRY_PATH(dentry)); | ||
31 | |||
32 | return smb_proc_symlink(server_from_dentry(dentry), dentry, oldname); | ||
33 | } | ||
34 | |||
35 | static void *smb_follow_link(struct dentry *dentry, struct nameidata *nd) | ||
36 | { | ||
37 | char *link = __getname(); | ||
38 | DEBUG1("followlink of %s/%s\n", DENTRY_PATH(dentry)); | ||
39 | |||
40 | if (!link) { | ||
41 | link = ERR_PTR(-ENOMEM); | ||
42 | } else { | ||
43 | int len = smb_proc_read_link(server_from_dentry(dentry), | ||
44 | dentry, link, PATH_MAX - 1); | ||
45 | if (len < 0) { | ||
46 | __putname(link); | ||
47 | link = ERR_PTR(len); | ||
48 | } else { | ||
49 | link[len] = 0; | ||
50 | } | ||
51 | } | ||
52 | nd_set_link(nd, link); | ||
53 | return NULL; | ||
54 | } | ||
55 | |||
56 | static void smb_put_link(struct dentry *dentry, struct nameidata *nd, void *p) | ||
57 | { | ||
58 | char *s = nd_get_link(nd); | ||
59 | if (!IS_ERR(s)) | ||
60 | __putname(s); | ||
61 | } | ||
62 | |||
63 | const struct inode_operations smb_link_inode_operations = | ||
64 | { | ||
65 | .readlink = generic_readlink, | ||
66 | .follow_link = smb_follow_link, | ||
67 | .put_link = smb_put_link, | ||
68 | }; | ||