Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifssmb.c |
| 3 | * |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * Contains the routines for constructing the SMB PDUs themselves |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU Lesser General Public License as published |
| 11 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 17 | * the GNU Lesser General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Lesser General Public License |
| 20 | * along with this library; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | /* SMB/CIFS PDU handling routines here - except for leftovers in connect.c */ |
| 25 | /* These are mostly routines that operate on a pathname, or on a tree id */ |
| 26 | /* (mounted volume), but there are eight handle based routines which must be */ |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 27 | /* treated slightly differently for reconnection purposes since we never */ |
| 28 | /* want to reuse a stale file handle and only the caller knows the file info */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | #include <linux/fs.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/vfs.h> |
| 33 | #include <linux/posix_acl_xattr.h> |
| 34 | #include <asm/uaccess.h> |
| 35 | #include "cifspdu.h" |
| 36 | #include "cifsglob.h" |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 37 | #include "cifsacl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "cifsproto.h" |
| 39 | #include "cifs_unicode.h" |
| 40 | #include "cifs_debug.h" |
| 41 | |
| 42 | #ifdef CONFIG_CIFS_POSIX |
| 43 | static struct { |
| 44 | int index; |
| 45 | char *name; |
| 46 | } protocols[] = { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 47 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
| 48 | {LANMAN_PROT, "\2LM1.2X002"}, |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 49 | {LANMAN2_PROT, "\2LANMAN2.1"}, |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 50 | #endif /* weak password hashing for legacy clients */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 51 | {CIFS_PROT, "\2NT LM 0.12"}, |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 52 | {POSIX_PROT, "\2POSIX 2"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | {BAD_PROT, "\2"} |
| 54 | }; |
| 55 | #else |
| 56 | static struct { |
| 57 | int index; |
| 58 | char *name; |
| 59 | } protocols[] = { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 60 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
| 61 | {LANMAN_PROT, "\2LM1.2X002"}, |
Steve French | 18f75ca | 2006-10-01 03:13:01 +0000 | [diff] [blame] | 62 | {LANMAN2_PROT, "\2LANMAN2.1"}, |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 63 | #endif /* weak password hashing for legacy clients */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 64 | {CIFS_PROT, "\2NT LM 0.12"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | {BAD_PROT, "\2"} |
| 66 | }; |
| 67 | #endif |
| 68 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 69 | /* define the number of elements in the cifs dialect array */ |
| 70 | #ifdef CONFIG_CIFS_POSIX |
| 71 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 72 | #define CIFS_NUM_PROT 4 |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 73 | #else |
| 74 | #define CIFS_NUM_PROT 2 |
| 75 | #endif /* CIFS_WEAK_PW_HASH */ |
| 76 | #else /* not posix */ |
| 77 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 78 | #define CIFS_NUM_PROT 3 |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 79 | #else |
| 80 | #define CIFS_NUM_PROT 1 |
| 81 | #endif /* CONFIG_CIFS_WEAK_PW_HASH */ |
| 82 | #endif /* CIFS_POSIX */ |
| 83 | |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 84 | /* Allocates buffer into dst and copies smb string from src to it. |
| 85 | * caller is responsible for freeing dst if function returned 0. |
| 86 | * returns: |
| 87 | * on success - 0 |
| 88 | * on failure - errno |
| 89 | */ |
| 90 | static int |
| 91 | cifs_strncpy_to_host(char **dst, const char *src, const int maxlen, |
| 92 | const bool is_unicode, const struct nls_table *nls_codepage) |
| 93 | { |
| 94 | int plen; |
| 95 | |
| 96 | if (is_unicode) { |
| 97 | plen = UniStrnlen((wchar_t *)src, maxlen); |
| 98 | *dst = kmalloc(plen + 2, GFP_KERNEL); |
| 99 | if (!*dst) |
| 100 | goto cifs_strncpy_to_host_ErrExit; |
| 101 | cifs_strfromUCS_le(*dst, (__le16 *)src, plen, nls_codepage); |
| 102 | } else { |
| 103 | plen = strnlen(src, maxlen); |
| 104 | *dst = kmalloc(plen + 2, GFP_KERNEL); |
| 105 | if (!*dst) |
| 106 | goto cifs_strncpy_to_host_ErrExit; |
| 107 | strncpy(*dst, src, plen); |
| 108 | } |
| 109 | (*dst)[plen] = 0; |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 110 | (*dst)[plen+1] = 0; /* harmless for ASCII case, needed for Unicode */ |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 111 | return 0; |
| 112 | |
| 113 | cifs_strncpy_to_host_ErrExit: |
| 114 | cERROR(1, ("Failed to allocate buffer for string\n")); |
| 115 | return -ENOMEM; |
| 116 | } |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | /* Mark as invalid, all open files on tree connections since they |
| 120 | were closed when session to server was lost */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 121 | static void mark_open_files_invalid(struct cifsTconInfo *pTcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | struct cifsFileInfo *open_file = NULL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 124 | struct list_head *tmp; |
| 125 | struct list_head *tmp1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | /* list all files open on tree connection and mark them invalid */ |
| 128 | write_lock(&GlobalSMBSeslock); |
| 129 | list_for_each_safe(tmp, tmp1, &pTcon->openFileList) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 130 | open_file = list_entry(tmp, struct cifsFileInfo, tlist); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 131 | if (open_file) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 132 | open_file->invalidHandle = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | write_unlock(&GlobalSMBSeslock); |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 135 | /* BB Add call to invalidate_inodes(sb) for all superblocks mounted |
| 136 | to this tcon */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 139 | /* Allocate and return pointer to an SMB request buffer, and set basic |
| 140 | SMB information in the SMB header. If the return code is zero, this |
| 141 | function must have filled in request_buf pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | static int |
| 143 | small_smb_init(int smb_command, int wct, struct cifsTconInfo *tcon, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 144 | void **request_buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
| 146 | int rc = 0; |
| 147 | |
| 148 | /* SMBs NegProt, SessSetup, uLogoff do not have tcon yet so |
| 149 | check for tcp and smb session status done differently |
| 150 | for those three - in the calling routine */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 151 | if (tcon) { |
| 152 | if (tcon->tidStatus == CifsExiting) { |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 153 | /* only tree disconnect, open, and write, |
| 154 | (and ulogoff which does not have tcon) |
| 155 | are allowed as we start force umount */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 156 | if ((smb_command != SMB_COM_WRITE_ANDX) && |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 157 | (smb_command != SMB_COM_OPEN_ANDX) && |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 158 | (smb_command != SMB_COM_TREE_DISCONNECT)) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 159 | cFYI(1, ("can not send cmd %d while umounting", |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 160 | smb_command)); |
| 161 | return -ENODEV; |
| 162 | } |
| 163 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 164 | if ((tcon->ses) && (tcon->ses->status != CifsExiting) && |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 165 | (tcon->ses->server)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | struct nls_table *nls_codepage; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 167 | /* Give Demultiplex thread up to 10 seconds to |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 168 | reconnect, should be greater than cifs socket |
| 169 | timeout which is 7 seconds */ |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 170 | while (tcon->ses->server->tcpStatus == |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 171 | CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | wait_event_interruptible_timeout(tcon->ses->server->response_q, |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 173 | (tcon->ses->server->tcpStatus == |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 174 | CifsGood), 10 * HZ); |
| 175 | if (tcon->ses->server->tcpStatus == |
| 176 | CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /* on "soft" mounts we wait once */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 178 | if (!tcon->retry || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | (tcon->ses->status == CifsExiting)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 180 | cFYI(1, ("gave up waiting on " |
| 181 | "reconnect in smb_init")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | return -EHOSTDOWN; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 183 | } /* else "hard" mount - keep retrying |
| 184 | until process is killed or server |
| 185 | comes back on-line */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } else /* TCP session is reestablished now */ |
| 187 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | nls_codepage = load_nls_default(); |
| 191 | /* need to prevent multiple threads trying to |
| 192 | simultaneously reconnect the same SMB session */ |
| 193 | down(&tcon->ses->sesSem); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 194 | if (tcon->ses->status == CifsNeedReconnect) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 195 | rc = cifs_setup_session(0, tcon->ses, |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 196 | nls_codepage); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 197 | if (!rc && (tcon->tidStatus == CifsNeedReconnect)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | mark_open_files_invalid(tcon); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 199 | rc = CIFSTCon(0, tcon->ses, tcon->treeName, |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 200 | tcon, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | up(&tcon->ses->sesSem); |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 202 | /* BB FIXME add code to check if wsize needs |
| 203 | update due to negotiated smb buffer size |
| 204 | shrinking */ |
Steve French | 35028d7 | 2008-04-09 20:32:42 +0000 | [diff] [blame] | 205 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | atomic_inc(&tconInfoReconnectCount); |
Steve French | 35028d7 | 2008-04-09 20:32:42 +0000 | [diff] [blame] | 207 | /* tell server Unix caps we support */ |
| 208 | if (tcon->ses->capabilities & CAP_UNIX) |
| 209 | reset_cifs_unix_caps( |
| 210 | 0 /* no xid */, |
| 211 | tcon, |
| 212 | NULL /* we do not know sb */, |
| 213 | NULL /* no vol info */); |
| 214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | cFYI(1, ("reconnect tcon rc = %d", rc)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 217 | /* Removed call to reopen open files here. |
| 218 | It is safer (and faster) to reopen files |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 219 | one at a time as needed in read and write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 221 | /* Check if handle based operation so we |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 222 | know whether we can continue or not without |
| 223 | returning to caller to reset file handle */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 224 | switch (smb_command) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | case SMB_COM_READ_ANDX: |
| 226 | case SMB_COM_WRITE_ANDX: |
| 227 | case SMB_COM_CLOSE: |
| 228 | case SMB_COM_FIND_CLOSE2: |
| 229 | case SMB_COM_LOCKING_ANDX: { |
| 230 | unload_nls(nls_codepage); |
| 231 | return -EAGAIN; |
| 232 | } |
| 233 | } |
| 234 | } else { |
| 235 | up(&tcon->ses->sesSem); |
| 236 | } |
| 237 | unload_nls(nls_codepage); |
| 238 | |
| 239 | } else { |
| 240 | return -EIO; |
| 241 | } |
| 242 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 243 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | return rc; |
| 245 | |
| 246 | *request_buf = cifs_small_buf_get(); |
| 247 | if (*request_buf == NULL) { |
| 248 | /* BB should we add a retry in here if not a writepage? */ |
| 249 | return -ENOMEM; |
| 250 | } |
| 251 | |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 252 | header_assemble((struct smb_hdr *) *request_buf, smb_command, |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 253 | tcon, wct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 255 | if (tcon != NULL) |
| 256 | cifs_stats_inc(&tcon->num_smbs_sent); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return rc; |
Steve French | 5815449d | 2006-02-14 01:36:20 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 261 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 262 | small_smb_init_no_tc(const int smb_command, const int wct, |
Steve French | 5815449d | 2006-02-14 01:36:20 +0000 | [diff] [blame] | 263 | struct cifsSesInfo *ses, void **request_buf) |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 264 | { |
| 265 | int rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 266 | struct smb_hdr *buffer; |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 267 | |
Steve French | 5815449d | 2006-02-14 01:36:20 +0000 | [diff] [blame] | 268 | rc = small_smb_init(smb_command, wct, NULL, request_buf); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 269 | if (rc) |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 270 | return rc; |
| 271 | |
Steve French | 04fdabe | 2006-02-10 05:52:50 +0000 | [diff] [blame] | 272 | buffer = (struct smb_hdr *)*request_buf; |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 273 | buffer->Mid = GetNextMid(ses->server); |
| 274 | if (ses->capabilities & CAP_UNICODE) |
| 275 | buffer->Flags2 |= SMBFLG2_UNICODE; |
Steve French | 04fdabe | 2006-02-10 05:52:50 +0000 | [diff] [blame] | 276 | if (ses->capabilities & CAP_STATUS32) |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 277 | buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 278 | |
| 279 | /* uid, tid can stay at zero as set in header assemble */ |
| 280 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 281 | /* BB add support for turning on the signing when |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 282 | this function is used after 1st of session setup requests */ |
| 283 | |
| 284 | return rc; |
| 285 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | /* If the return code is zero, this function must fill in request_buf pointer */ |
| 288 | static int |
| 289 | smb_init(int smb_command, int wct, struct cifsTconInfo *tcon, |
| 290 | void **request_buf /* returned */ , |
| 291 | void **response_buf /* returned */ ) |
| 292 | { |
| 293 | int rc = 0; |
| 294 | |
| 295 | /* SMBs NegProt, SessSetup, uLogoff do not have tcon yet so |
| 296 | check for tcp and smb session status done differently |
| 297 | for those three - in the calling routine */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 298 | if (tcon) { |
| 299 | if (tcon->tidStatus == CifsExiting) { |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 300 | /* only tree disconnect, open, and write, |
| 301 | (and ulogoff which does not have tcon) |
| 302 | are allowed as we start force umount */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 303 | if ((smb_command != SMB_COM_WRITE_ANDX) && |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 304 | (smb_command != SMB_COM_OPEN_ANDX) && |
| 305 | (smb_command != SMB_COM_TREE_DISCONNECT)) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 306 | cFYI(1, ("can not send cmd %d while umounting", |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 307 | smb_command)); |
| 308 | return -ENODEV; |
| 309 | } |
| 310 | } |
| 311 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 312 | if ((tcon->ses) && (tcon->ses->status != CifsExiting) && |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 313 | (tcon->ses->server)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | struct nls_table *nls_codepage; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 315 | /* Give Demultiplex thread up to 10 seconds to |
| 316 | reconnect, should be greater than cifs socket |
| 317 | timeout which is 7 seconds */ |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 318 | while (tcon->ses->server->tcpStatus == |
| 319 | CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | wait_event_interruptible_timeout(tcon->ses->server->response_q, |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 321 | (tcon->ses->server->tcpStatus == |
| 322 | CifsGood), 10 * HZ); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 323 | if (tcon->ses->server->tcpStatus == |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 324 | CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | /* on "soft" mounts we wait once */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 326 | if (!tcon->retry || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | (tcon->ses->status == CifsExiting)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 328 | cFYI(1, ("gave up waiting on " |
| 329 | "reconnect in smb_init")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | return -EHOSTDOWN; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 331 | } /* else "hard" mount - keep retrying |
| 332 | until process is killed or server |
| 333 | comes on-line */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } else /* TCP session is reestablished now */ |
| 335 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | nls_codepage = load_nls_default(); |
| 338 | /* need to prevent multiple threads trying to |
| 339 | simultaneously reconnect the same SMB session */ |
| 340 | down(&tcon->ses->sesSem); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 341 | if (tcon->ses->status == CifsNeedReconnect) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 342 | rc = cifs_setup_session(0, tcon->ses, |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 343 | nls_codepage); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 344 | if (!rc && (tcon->tidStatus == CifsNeedReconnect)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | mark_open_files_invalid(tcon); |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 346 | rc = CIFSTCon(0, tcon->ses, tcon->treeName, |
| 347 | tcon, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | up(&tcon->ses->sesSem); |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 349 | /* BB FIXME add code to check if wsize needs |
| 350 | update due to negotiated smb buffer size |
| 351 | shrinking */ |
Steve French | 35028d7 | 2008-04-09 20:32:42 +0000 | [diff] [blame] | 352 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | atomic_inc(&tconInfoReconnectCount); |
Steve French | 35028d7 | 2008-04-09 20:32:42 +0000 | [diff] [blame] | 354 | /* tell server Unix caps we support */ |
| 355 | if (tcon->ses->capabilities & CAP_UNIX) |
| 356 | reset_cifs_unix_caps( |
| 357 | 0 /* no xid */, |
| 358 | tcon, |
| 359 | NULL /* do not know sb */, |
| 360 | NULL /* no vol info */); |
| 361 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | cFYI(1, ("reconnect tcon rc = %d", rc)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 364 | /* Removed call to reopen open files here. |
| 365 | It is safer (and faster) to reopen files |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 366 | one at a time as needed in read and write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 368 | /* Check if handle based operation so we |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 369 | know whether we can continue or not without |
| 370 | returning to caller to reset file handle */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 371 | switch (smb_command) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | case SMB_COM_READ_ANDX: |
| 373 | case SMB_COM_WRITE_ANDX: |
| 374 | case SMB_COM_CLOSE: |
| 375 | case SMB_COM_FIND_CLOSE2: |
| 376 | case SMB_COM_LOCKING_ANDX: { |
| 377 | unload_nls(nls_codepage); |
| 378 | return -EAGAIN; |
| 379 | } |
| 380 | } |
| 381 | } else { |
| 382 | up(&tcon->ses->sesSem); |
| 383 | } |
| 384 | unload_nls(nls_codepage); |
| 385 | |
| 386 | } else { |
| 387 | return -EIO; |
| 388 | } |
| 389 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 390 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | return rc; |
| 392 | |
| 393 | *request_buf = cifs_buf_get(); |
| 394 | if (*request_buf == NULL) { |
| 395 | /* BB should we add a retry in here if not a writepage? */ |
| 396 | return -ENOMEM; |
| 397 | } |
| 398 | /* Although the original thought was we needed the response buf for */ |
| 399 | /* potential retries of smb operations it turns out we can determine */ |
| 400 | /* from the mid flags when the request buffer can be resent without */ |
| 401 | /* having to use a second distinct buffer for the response */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 402 | if (response_buf) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 403 | *response_buf = *request_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | header_assemble((struct smb_hdr *) *request_buf, smb_command, tcon, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 406 | wct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 408 | if (tcon != NULL) |
| 409 | cifs_stats_inc(&tcon->num_smbs_sent); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | return rc; |
| 412 | } |
| 413 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 414 | static int validate_t2(struct smb_t2_rsp *pSMB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | { |
| 416 | int rc = -EINVAL; |
| 417 | int total_size; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 418 | char *pBCC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
| 420 | /* check for plausible wct, bcc and t2 data and parm sizes */ |
| 421 | /* check for parm and data offset going beyond end of smb */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 422 | if (pSMB->hdr.WordCount >= 10) { |
| 423 | if ((le16_to_cpu(pSMB->t2_rsp.ParameterOffset) <= 1024) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | (le16_to_cpu(pSMB->t2_rsp.DataOffset) <= 1024)) { |
| 425 | /* check that bcc is at least as big as parms + data */ |
| 426 | /* check that bcc is less than negotiated smb buffer */ |
| 427 | total_size = le16_to_cpu(pSMB->t2_rsp.ParameterCount); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 428 | if (total_size < 512) { |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 429 | total_size += |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 430 | le16_to_cpu(pSMB->t2_rsp.DataCount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | /* BCC le converted in SendReceive */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 432 | pBCC = (pSMB->hdr.WordCount * 2) + |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 433 | sizeof(struct smb_hdr) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | (char *)pSMB; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 435 | if ((total_size <= (*(u16 *)pBCC)) && |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 436 | (total_size < |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | CIFSMaxBufSize+MAX_CIFS_HDR_SIZE)) { |
| 438 | return 0; |
| 439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 443 | cifs_dump_mem("Invalid transact2 SMB: ", (char *)pSMB, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | sizeof(struct smb_t2_rsp) + 16); |
| 445 | return rc; |
| 446 | } |
| 447 | int |
| 448 | CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) |
| 449 | { |
| 450 | NEGOTIATE_REQ *pSMB; |
| 451 | NEGOTIATE_RSP *pSMBr; |
| 452 | int rc = 0; |
| 453 | int bytes_returned; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 454 | int i; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 455 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | u16 count; |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 457 | unsigned int secFlags; |
Al Viro | 733f99a | 2006-10-14 16:48:26 +0100 | [diff] [blame] | 458 | u16 dialect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 460 | if (ses->server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | server = ses->server; |
| 462 | else { |
| 463 | rc = -EIO; |
| 464 | return rc; |
| 465 | } |
| 466 | rc = smb_init(SMB_COM_NEGOTIATE, 0, NULL /* no tcon yet */ , |
| 467 | (void **) &pSMB, (void **) &pSMBr); |
| 468 | if (rc) |
| 469 | return rc; |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 470 | |
| 471 | /* if any of auth flags (ie not sign or seal) are overriden use them */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 472 | if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL))) |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 473 | secFlags = ses->overrideSecFlg; /* BB FIXME fix sign flags? */ |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 474 | else /* if override flags set only sign/seal OR them with global auth */ |
| 475 | secFlags = extended_security | ses->overrideSecFlg; |
| 476 | |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 477 | cFYI(1, ("secFlags 0x%x", secFlags)); |
Steve French | f40c562 | 2006-06-28 00:13:38 +0000 | [diff] [blame] | 478 | |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 479 | pSMB->hdr.Mid = GetNextMid(server); |
Yehuda Sadeh Weinraub | 100c1dd | 2007-06-05 21:31:16 +0000 | [diff] [blame] | 480 | pSMB->hdr.Flags2 |= (SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS); |
Steve French | a013689 | 2007-10-04 20:05:09 +0000 | [diff] [blame] | 481 | |
Yehuda Sadeh Weinraub | 100c1dd | 2007-06-05 21:31:16 +0000 | [diff] [blame] | 482 | if ((secFlags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5) |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 483 | pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC; |
Steve French | a013689 | 2007-10-04 20:05:09 +0000 | [diff] [blame] | 484 | else if ((secFlags & CIFSSEC_AUTH_MASK) == CIFSSEC_MAY_KRB5) { |
| 485 | cFYI(1, ("Kerberos only mechanism, enable extended security")); |
| 486 | pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC; |
| 487 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 488 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 489 | count = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 490 | for (i = 0; i < CIFS_NUM_PROT; i++) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 491 | strncpy(pSMB->DialectsArray+count, protocols[i].name, 16); |
| 492 | count += strlen(protocols[i].name) + 1; |
| 493 | /* null at end of source and target buffers anyway */ |
| 494 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | pSMB->hdr.smb_buf_length += count; |
| 496 | pSMB->ByteCount = cpu_to_le16(count); |
| 497 | |
| 498 | rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB, |
| 499 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 500 | if (rc != 0) |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 501 | goto neg_err_exit; |
| 502 | |
Al Viro | 733f99a | 2006-10-14 16:48:26 +0100 | [diff] [blame] | 503 | dialect = le16_to_cpu(pSMBr->DialectIndex); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 504 | cFYI(1, ("Dialect: %d", dialect)); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 505 | /* Check wct = 1 error case */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 506 | if ((pSMBr->hdr.WordCount < 13) || (dialect == BAD_PROT)) { |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 507 | /* core returns wct = 1, but we do not ask for core - otherwise |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 508 | small wct just comes when dialect index is -1 indicating we |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 509 | could not negotiate a common dialect */ |
| 510 | rc = -EOPNOTSUPP; |
| 511 | goto neg_err_exit; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 512 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 513 | } else if ((pSMBr->hdr.WordCount == 13) |
Al Viro | 733f99a | 2006-10-14 16:48:26 +0100 | [diff] [blame] | 514 | && ((dialect == LANMAN_PROT) |
| 515 | || (dialect == LANMAN2_PROT))) { |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 516 | __s16 tmp; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 517 | struct lanman_neg_rsp *rsp = (struct lanman_neg_rsp *)pSMBr; |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 518 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 519 | if ((secFlags & CIFSSEC_MAY_LANMAN) || |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 520 | (secFlags & CIFSSEC_MAY_PLNTXT)) |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 521 | server->secType = LANMAN; |
| 522 | else { |
| 523 | cERROR(1, ("mount failed weak security disabled" |
| 524 | " in /proc/fs/cifs/SecurityFlags")); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 525 | rc = -EOPNOTSUPP; |
| 526 | goto neg_err_exit; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 527 | } |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 528 | server->secMode = (__u8)le16_to_cpu(rsp->SecurityMode); |
| 529 | server->maxReq = le16_to_cpu(rsp->MaxMpxCount); |
| 530 | server->maxBuf = min((__u32)le16_to_cpu(rsp->MaxBufSize), |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 531 | (__u32)CIFSMaxBufSize + MAX_CIFS_HDR_SIZE); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 532 | GETU32(server->sessid) = le32_to_cpu(rsp->SessionKey); |
| 533 | /* even though we do not use raw we might as well set this |
| 534 | accurately, in case we ever find a need for it */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 535 | if ((le16_to_cpu(rsp->RawMode) & RAW_ENABLE) == RAW_ENABLE) { |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 536 | server->maxRw = 0xFF00; |
| 537 | server->capabilities = CAP_MPX_MODE | CAP_RAW_MODE; |
| 538 | } else { |
| 539 | server->maxRw = 0;/* we do not need to use raw anyway */ |
| 540 | server->capabilities = CAP_MPX_MODE; |
| 541 | } |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 542 | tmp = (__s16)le16_to_cpu(rsp->ServerTimeZone); |
Steve French | 1a70d65 | 2006-10-02 05:59:18 +0000 | [diff] [blame] | 543 | if (tmp == -1) { |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 544 | /* OS/2 often does not set timezone therefore |
| 545 | * we must use server time to calc time zone. |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 546 | * Could deviate slightly from the right zone. |
| 547 | * Smallest defined timezone difference is 15 minutes |
| 548 | * (i.e. Nepal). Rounding up/down is done to match |
| 549 | * this requirement. |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 550 | */ |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 551 | int val, seconds, remain, result; |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 552 | struct timespec ts, utc; |
| 553 | utc = CURRENT_TIME; |
| 554 | ts = cnvrtDosUnixTm(le16_to_cpu(rsp->SrvTime.Date), |
| 555 | le16_to_cpu(rsp->SrvTime.Time)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 556 | cFYI(1, ("SrvTime %d sec since 1970 (utc: %d) diff: %d", |
| 557 | (int)ts.tv_sec, (int)utc.tv_sec, |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 558 | (int)(utc.tv_sec - ts.tv_sec))); |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 559 | val = (int)(utc.tv_sec - ts.tv_sec); |
Andre Haupt | 8594c15 | 2007-08-30 20:18:41 +0000 | [diff] [blame] | 560 | seconds = abs(val); |
Steve French | 947a506 | 2006-10-02 05:55:25 +0000 | [diff] [blame] | 561 | result = (seconds / MIN_TZ_ADJ) * MIN_TZ_ADJ; |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 562 | remain = seconds % MIN_TZ_ADJ; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 563 | if (remain >= (MIN_TZ_ADJ / 2)) |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 564 | result += MIN_TZ_ADJ; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 565 | if (val < 0) |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 566 | result = -result; |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 567 | server->timeAdj = result; |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 568 | } else { |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 569 | server->timeAdj = (int)tmp; |
| 570 | server->timeAdj *= 60; /* also in seconds */ |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 571 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 572 | cFYI(1, ("server->timeAdj: %d seconds", server->timeAdj)); |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 573 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 574 | |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 575 | /* BB get server time for time conversions and add |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 576 | code to use it and timezone since this is not UTC */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 577 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 578 | if (rsp->EncryptionKeyLength == |
Steve French | 25ee4a9 | 2006-09-30 00:54:23 +0000 | [diff] [blame] | 579 | cpu_to_le16(CIFS_CRYPTO_KEY_SIZE)) { |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 580 | memcpy(server->cryptKey, rsp->EncryptionKey, |
| 581 | CIFS_CRYPTO_KEY_SIZE); |
| 582 | } else if (server->secMode & SECMODE_PW_ENCRYPT) { |
| 583 | rc = -EIO; /* need cryptkey unless plain text */ |
| 584 | goto neg_err_exit; |
| 585 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 586 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 587 | cFYI(1, ("LANMAN negotiated")); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 588 | /* we will not end up setting signing flags - as no signing |
| 589 | was in LANMAN and server did not return the flags on */ |
| 590 | goto signing_check; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 591 | #else /* weak security disabled */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 592 | } else if (pSMBr->hdr.WordCount == 13) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 593 | cERROR(1, ("mount failed, cifs module not built " |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 594 | "with CIFS_WEAK_PW_HASH support")); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 595 | rc = -EOPNOTSUPP; |
| 596 | #endif /* WEAK_PW_HASH */ |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 597 | goto neg_err_exit; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 598 | } else if (pSMBr->hdr.WordCount != 17) { |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 599 | /* unknown wct */ |
| 600 | rc = -EOPNOTSUPP; |
| 601 | goto neg_err_exit; |
| 602 | } |
| 603 | /* else wct == 17 NTLM */ |
| 604 | server->secMode = pSMBr->SecurityMode; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 605 | if ((server->secMode & SECMODE_USER) == 0) |
| 606 | cFYI(1, ("share mode security")); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 607 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 608 | if ((server->secMode & SECMODE_PW_ENCRYPT) == 0) |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 609 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 610 | if ((secFlags & CIFSSEC_MAY_PLNTXT) == 0) |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 611 | #endif /* CIFS_WEAK_PW_HASH */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 612 | cERROR(1, ("Server requests plain text password" |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 613 | " but client support disabled")); |
Steve French | 9312f67 | 2006-06-04 22:21:07 +0000 | [diff] [blame] | 614 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 615 | if ((secFlags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2) |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 616 | server->secType = NTLMv2; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 617 | else if (secFlags & CIFSSEC_MAY_NTLM) |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 618 | server->secType = NTLM; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 619 | else if (secFlags & CIFSSEC_MAY_NTLMV2) |
Steve French | f40c562 | 2006-06-28 00:13:38 +0000 | [diff] [blame] | 620 | server->secType = NTLMv2; |
Steve French | a013689 | 2007-10-04 20:05:09 +0000 | [diff] [blame] | 621 | else if (secFlags & CIFSSEC_MAY_KRB5) |
| 622 | server->secType = Kerberos; |
| 623 | else if (secFlags & CIFSSEC_MAY_LANMAN) |
| 624 | server->secType = LANMAN; |
| 625 | /* #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 626 | else if (secFlags & CIFSSEC_MAY_PLNTXT) |
| 627 | server->secType = ?? |
| 628 | #endif */ |
| 629 | else { |
| 630 | rc = -EOPNOTSUPP; |
| 631 | cERROR(1, ("Invalid security type")); |
| 632 | goto neg_err_exit; |
| 633 | } |
| 634 | /* else ... any others ...? */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 635 | |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 636 | /* one byte, so no need to convert this or EncryptionKeyLen from |
| 637 | little endian */ |
| 638 | server->maxReq = le16_to_cpu(pSMBr->MaxMpxCount); |
| 639 | /* probably no need to store and check maxvcs */ |
| 640 | server->maxBuf = min(le32_to_cpu(pSMBr->MaxBufferSize), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | (__u32) CIFSMaxBufSize + MAX_CIFS_HDR_SIZE); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 642 | server->maxRw = le32_to_cpu(pSMBr->MaxRawSize); |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 643 | cFYI(DBG2, ("Max buf = %d", ses->server->maxBuf)); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 644 | GETU32(ses->server->sessid) = le32_to_cpu(pSMBr->SessionKey); |
| 645 | server->capabilities = le32_to_cpu(pSMBr->Capabilities); |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 646 | server->timeAdj = (int)(__s16)le16_to_cpu(pSMBr->ServerTimeZone); |
| 647 | server->timeAdj *= 60; |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 648 | if (pSMBr->EncryptionKeyLength == CIFS_CRYPTO_KEY_SIZE) { |
| 649 | memcpy(server->cryptKey, pSMBr->u.EncryptionKey, |
| 650 | CIFS_CRYPTO_KEY_SIZE); |
| 651 | } else if ((pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC) |
| 652 | && (pSMBr->EncryptionKeyLength == 0)) { |
| 653 | /* decode security blob */ |
| 654 | } else if (server->secMode & SECMODE_PW_ENCRYPT) { |
| 655 | rc = -EIO; /* no crypt key only if plain text pwd */ |
| 656 | goto neg_err_exit; |
| 657 | } |
| 658 | |
| 659 | /* BB might be helpful to save off the domain of server here */ |
| 660 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 661 | if ((pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC) && |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 662 | (server->capabilities & CAP_EXTENDED_SECURITY)) { |
| 663 | count = pSMBr->ByteCount; |
Jeff Layton | e187e44 | 2007-10-16 17:10:44 +0000 | [diff] [blame] | 664 | if (count < 16) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | rc = -EIO; |
Jeff Layton | e187e44 | 2007-10-16 17:10:44 +0000 | [diff] [blame] | 666 | goto neg_err_exit; |
| 667 | } |
| 668 | |
| 669 | if (server->socketUseCount.counter > 1) { |
| 670 | if (memcmp(server->server_GUID, |
| 671 | pSMBr->u.extended_response. |
| 672 | GUID, 16) != 0) { |
| 673 | cFYI(1, ("server UID changed")); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 674 | memcpy(server->server_GUID, |
Jeff Layton | e187e44 | 2007-10-16 17:10:44 +0000 | [diff] [blame] | 675 | pSMBr->u.extended_response.GUID, |
| 676 | 16); |
| 677 | } |
| 678 | } else |
| 679 | memcpy(server->server_GUID, |
| 680 | pSMBr->u.extended_response.GUID, 16); |
| 681 | |
| 682 | if (count == 16) { |
| 683 | server->secType = RawNTLMSSP; |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 684 | } else { |
| 685 | rc = decode_negTokenInit(pSMBr->u.extended_response. |
| 686 | SecurityBlob, |
| 687 | count - 16, |
| 688 | &server->secType); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 689 | if (rc == 1) { |
Jeff Layton | e545937 | 2007-11-03 05:11:06 +0000 | [diff] [blame] | 690 | rc = 0; |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 691 | } else { |
| 692 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 695 | } else |
| 696 | server->capabilities &= ~CAP_EXTENDED_SECURITY; |
| 697 | |
Steve French | 6344a42 | 2006-06-12 04:18:35 +0000 | [diff] [blame] | 698 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 699 | signing_check: |
Steve French | 6344a42 | 2006-06-12 04:18:35 +0000 | [diff] [blame] | 700 | #endif |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 701 | if ((secFlags & CIFSSEC_MAY_SIGN) == 0) { |
| 702 | /* MUST_SIGN already includes the MAY_SIGN FLAG |
| 703 | so if this is zero it means that signing is disabled */ |
| 704 | cFYI(1, ("Signing disabled")); |
Steve French | abb63d6 | 2007-10-18 02:58:40 +0000 | [diff] [blame] | 705 | if (server->secMode & SECMODE_SIGN_REQUIRED) { |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 706 | cERROR(1, ("Server requires " |
Jeff Layton | 7111d21 | 2007-10-16 16:50:25 +0000 | [diff] [blame] | 707 | "packet signing to be enabled in " |
| 708 | "/proc/fs/cifs/SecurityFlags.")); |
Steve French | abb63d6 | 2007-10-18 02:58:40 +0000 | [diff] [blame] | 709 | rc = -EOPNOTSUPP; |
| 710 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 711 | server->secMode &= |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 712 | ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED); |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 713 | } else if ((secFlags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN) { |
| 714 | /* signing required */ |
Jeff | 38c10a1 | 2007-07-06 21:10:07 +0000 | [diff] [blame] | 715 | cFYI(1, ("Must sign - secFlags 0x%x", secFlags)); |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 716 | if ((server->secMode & |
| 717 | (SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED)) == 0) { |
| 718 | cERROR(1, |
| 719 | ("signing required but server lacks support")); |
Jeff | 38c10a1 | 2007-07-06 21:10:07 +0000 | [diff] [blame] | 720 | rc = -EOPNOTSUPP; |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 721 | } else |
| 722 | server->secMode |= SECMODE_SIGN_REQUIRED; |
| 723 | } else { |
| 724 | /* signing optional ie CIFSSEC_MAY_SIGN */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 725 | if ((server->secMode & SECMODE_SIGN_REQUIRED) == 0) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 726 | server->secMode &= |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 727 | ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 729 | |
| 730 | neg_err_exit: |
Steve French | 4a6d87f | 2005-08-13 08:15:54 -0700 | [diff] [blame] | 731 | cifs_buf_release(pSMB); |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 732 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 733 | cFYI(1, ("negprot rc %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | return rc; |
| 735 | } |
| 736 | |
| 737 | int |
| 738 | CIFSSMBTDis(const int xid, struct cifsTconInfo *tcon) |
| 739 | { |
| 740 | struct smb_hdr *smb_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
| 743 | cFYI(1, ("In tree disconnect")); |
| 744 | /* |
| 745 | * If last user of the connection and |
| 746 | * connection alive - disconnect it |
| 747 | * If this is the last connection on the server session disconnect it |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 748 | * (and inside session disconnect we should check if tcp socket needs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | * to be freed and kernel thread woken up). |
| 750 | */ |
| 751 | if (tcon) |
| 752 | down(&tcon->tconSem); |
| 753 | else |
| 754 | return -EIO; |
| 755 | |
| 756 | atomic_dec(&tcon->useCount); |
| 757 | if (atomic_read(&tcon->useCount) > 0) { |
| 758 | up(&tcon->tconSem); |
| 759 | return -EBUSY; |
| 760 | } |
| 761 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 762 | /* No need to return error on this operation if tid invalidated and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | closed on server already e.g. due to tcp session crashing */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 764 | if (tcon->tidStatus == CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | up(&tcon->tconSem); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 766 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } |
| 768 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 769 | if ((tcon->ses == NULL) || (tcon->ses->server == NULL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | up(&tcon->tconSem); |
| 771 | return -EIO; |
| 772 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 773 | rc = small_smb_init(SMB_COM_TREE_DISCONNECT, 0, tcon, |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 774 | (void **)&smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | if (rc) { |
| 776 | up(&tcon->tconSem); |
| 777 | return rc; |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 778 | } |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 779 | |
| 780 | rc = SendReceiveNoRsp(xid, tcon->ses, smb_buffer, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | if (rc) |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 782 | cFYI(1, ("Tree disconnect failed %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | up(&tcon->tconSem); |
| 785 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 786 | /* No need to return error on this operation if tid invalidated and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | closed on server already e.g. due to tcp session crashing */ |
| 788 | if (rc == -EAGAIN) |
| 789 | rc = 0; |
| 790 | |
| 791 | return rc; |
| 792 | } |
| 793 | |
| 794 | int |
| 795 | CIFSSMBLogoff(const int xid, struct cifsSesInfo *ses) |
| 796 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | LOGOFF_ANDX_REQ *pSMB; |
| 798 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
| 800 | cFYI(1, ("In SMBLogoff for session disconnect")); |
| 801 | if (ses) |
| 802 | down(&ses->sesSem); |
| 803 | else |
| 804 | return -EIO; |
| 805 | |
| 806 | atomic_dec(&ses->inUse); |
| 807 | if (atomic_read(&ses->inUse) > 0) { |
| 808 | up(&ses->sesSem); |
| 809 | return -EBUSY; |
| 810 | } |
| 811 | rc = small_smb_init(SMB_COM_LOGOFF_ANDX, 2, NULL, (void **)&pSMB); |
| 812 | if (rc) { |
| 813 | up(&ses->sesSem); |
| 814 | return rc; |
| 815 | } |
| 816 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 817 | if (ses->server) { |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 818 | pSMB->hdr.Mid = GetNextMid(ses->server); |
| 819 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 820 | if (ses->server->secMode & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
| 822 | pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 823 | } |
| 824 | |
| 825 | pSMB->hdr.Uid = ses->Suid; |
| 826 | |
| 827 | pSMB->AndXCommand = 0xFF; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 828 | rc = SendReceiveNoRsp(xid, ses, (struct smb_hdr *) pSMB, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | if (ses->server) { |
| 830 | atomic_dec(&ses->server->socketUseCount); |
| 831 | if (atomic_read(&ses->server->socketUseCount) == 0) { |
| 832 | spin_lock(&GlobalMid_Lock); |
| 833 | ses->server->tcpStatus = CifsExiting; |
| 834 | spin_unlock(&GlobalMid_Lock); |
| 835 | rc = -ESHUTDOWN; |
| 836 | } |
| 837 | } |
Steve French | a59c658 | 2005-08-17 12:12:19 -0700 | [diff] [blame] | 838 | up(&ses->sesSem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | /* if session dead then we do not need to do ulogoff, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 841 | since server closed smb session, no sense reporting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | error */ |
| 843 | if (rc == -EAGAIN) |
| 844 | rc = 0; |
| 845 | return rc; |
| 846 | } |
| 847 | |
| 848 | int |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 849 | CIFSPOSIXDelFile(const int xid, struct cifsTconInfo *tcon, const char *fileName, |
| 850 | __u16 type, const struct nls_table *nls_codepage, int remap) |
| 851 | { |
| 852 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 853 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 854 | struct unlink_psx_rq *pRqD; |
| 855 | int name_len; |
| 856 | int rc = 0; |
| 857 | int bytes_returned = 0; |
| 858 | __u16 params, param_offset, offset, byte_count; |
| 859 | |
| 860 | cFYI(1, ("In POSIX delete")); |
| 861 | PsxDelete: |
| 862 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 863 | (void **) &pSMBr); |
| 864 | if (rc) |
| 865 | return rc; |
| 866 | |
| 867 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 868 | name_len = |
| 869 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
| 870 | PATH_MAX, nls_codepage, remap); |
| 871 | name_len++; /* trailing null */ |
| 872 | name_len *= 2; |
| 873 | } else { /* BB add path length overrun check */ |
| 874 | name_len = strnlen(fileName, PATH_MAX); |
| 875 | name_len++; /* trailing null */ |
| 876 | strncpy(pSMB->FileName, fileName, name_len); |
| 877 | } |
| 878 | |
| 879 | params = 6 + name_len; |
| 880 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 881 | pSMB->MaxDataCount = 0; /* BB double check this with jra */ |
| 882 | pSMB->MaxSetupCount = 0; |
| 883 | pSMB->Reserved = 0; |
| 884 | pSMB->Flags = 0; |
| 885 | pSMB->Timeout = 0; |
| 886 | pSMB->Reserved2 = 0; |
| 887 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
| 888 | InformationLevel) - 4; |
| 889 | offset = param_offset + params; |
| 890 | |
| 891 | /* Setup pointer to Request Data (inode type) */ |
| 892 | pRqD = (struct unlink_psx_rq *)(((char *)&pSMB->hdr.Protocol) + offset); |
| 893 | pRqD->type = cpu_to_le16(type); |
| 894 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 895 | pSMB->DataOffset = cpu_to_le16(offset); |
| 896 | pSMB->SetupCount = 1; |
| 897 | pSMB->Reserved3 = 0; |
| 898 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 899 | byte_count = 3 /* pad */ + params + sizeof(struct unlink_psx_rq); |
| 900 | |
| 901 | pSMB->DataCount = cpu_to_le16(sizeof(struct unlink_psx_rq)); |
| 902 | pSMB->TotalDataCount = cpu_to_le16(sizeof(struct unlink_psx_rq)); |
| 903 | pSMB->ParameterCount = cpu_to_le16(params); |
| 904 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 905 | pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_UNLINK); |
| 906 | pSMB->Reserved4 = 0; |
| 907 | pSMB->hdr.smb_buf_length += byte_count; |
| 908 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 909 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 910 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 911 | if (rc) |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 912 | cFYI(1, ("Posix delete returned %d", rc)); |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 913 | cifs_buf_release(pSMB); |
| 914 | |
| 915 | cifs_stats_inc(&tcon->num_deletes); |
| 916 | |
| 917 | if (rc == -EAGAIN) |
| 918 | goto PsxDelete; |
| 919 | |
| 920 | return rc; |
| 921 | } |
| 922 | |
| 923 | int |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 924 | CIFSSMBDelFile(const int xid, struct cifsTconInfo *tcon, const char *fileName, |
| 925 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | { |
| 927 | DELETE_FILE_REQ *pSMB = NULL; |
| 928 | DELETE_FILE_RSP *pSMBr = NULL; |
| 929 | int rc = 0; |
| 930 | int bytes_returned; |
| 931 | int name_len; |
| 932 | |
| 933 | DelFileRetry: |
| 934 | rc = smb_init(SMB_COM_DELETE, 1, tcon, (void **) &pSMB, |
| 935 | (void **) &pSMBr); |
| 936 | if (rc) |
| 937 | return rc; |
| 938 | |
| 939 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 940 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 941 | cifsConvertToUCS((__le16 *) pSMB->fileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 942 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | name_len++; /* trailing null */ |
| 944 | name_len *= 2; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 945 | } else { /* BB improve check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | name_len = strnlen(fileName, PATH_MAX); |
| 947 | name_len++; /* trailing null */ |
| 948 | strncpy(pSMB->fileName, fileName, name_len); |
| 949 | } |
| 950 | pSMB->SearchAttributes = |
| 951 | cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM); |
| 952 | pSMB->BufferFormat = 0x04; |
| 953 | pSMB->hdr.smb_buf_length += name_len + 1; |
| 954 | pSMB->ByteCount = cpu_to_le16(name_len + 1); |
| 955 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 956 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 957 | cifs_stats_inc(&tcon->num_deletes); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 958 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | cFYI(1, ("Error in RMFile = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | cifs_buf_release(pSMB); |
| 962 | if (rc == -EAGAIN) |
| 963 | goto DelFileRetry; |
| 964 | |
| 965 | return rc; |
| 966 | } |
| 967 | |
| 968 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 969 | CIFSSMBRmDir(const int xid, struct cifsTconInfo *tcon, const char *dirName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 970 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | { |
| 972 | DELETE_DIRECTORY_REQ *pSMB = NULL; |
| 973 | DELETE_DIRECTORY_RSP *pSMBr = NULL; |
| 974 | int rc = 0; |
| 975 | int bytes_returned; |
| 976 | int name_len; |
| 977 | |
| 978 | cFYI(1, ("In CIFSSMBRmDir")); |
| 979 | RmDirRetry: |
| 980 | rc = smb_init(SMB_COM_DELETE_DIRECTORY, 0, tcon, (void **) &pSMB, |
| 981 | (void **) &pSMBr); |
| 982 | if (rc) |
| 983 | return rc; |
| 984 | |
| 985 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 986 | name_len = cifsConvertToUCS((__le16 *) pSMB->DirName, dirName, |
| 987 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | name_len++; /* trailing null */ |
| 989 | name_len *= 2; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 990 | } else { /* BB improve check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | name_len = strnlen(dirName, PATH_MAX); |
| 992 | name_len++; /* trailing null */ |
| 993 | strncpy(pSMB->DirName, dirName, name_len); |
| 994 | } |
| 995 | |
| 996 | pSMB->BufferFormat = 0x04; |
| 997 | pSMB->hdr.smb_buf_length += name_len + 1; |
| 998 | pSMB->ByteCount = cpu_to_le16(name_len + 1); |
| 999 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 1000 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1001 | cifs_stats_inc(&tcon->num_rmdirs); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1002 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | cFYI(1, ("Error in RMDir = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
| 1005 | cifs_buf_release(pSMB); |
| 1006 | if (rc == -EAGAIN) |
| 1007 | goto RmDirRetry; |
| 1008 | return rc; |
| 1009 | } |
| 1010 | |
| 1011 | int |
| 1012 | CIFSSMBMkDir(const int xid, struct cifsTconInfo *tcon, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1013 | const char *name, const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { |
| 1015 | int rc = 0; |
| 1016 | CREATE_DIRECTORY_REQ *pSMB = NULL; |
| 1017 | CREATE_DIRECTORY_RSP *pSMBr = NULL; |
| 1018 | int bytes_returned; |
| 1019 | int name_len; |
| 1020 | |
| 1021 | cFYI(1, ("In CIFSSMBMkDir")); |
| 1022 | MkDirRetry: |
| 1023 | rc = smb_init(SMB_COM_CREATE_DIRECTORY, 0, tcon, (void **) &pSMB, |
| 1024 | (void **) &pSMBr); |
| 1025 | if (rc) |
| 1026 | return rc; |
| 1027 | |
| 1028 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1029 | name_len = cifsConvertToUCS((__le16 *) pSMB->DirName, name, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1030 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | name_len++; /* trailing null */ |
| 1032 | name_len *= 2; |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 1033 | } else { /* BB improve check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | name_len = strnlen(name, PATH_MAX); |
| 1035 | name_len++; /* trailing null */ |
| 1036 | strncpy(pSMB->DirName, name, name_len); |
| 1037 | } |
| 1038 | |
| 1039 | pSMB->BufferFormat = 0x04; |
| 1040 | pSMB->hdr.smb_buf_length += name_len + 1; |
| 1041 | pSMB->ByteCount = cpu_to_le16(name_len + 1); |
| 1042 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 1043 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1044 | cifs_stats_inc(&tcon->num_mkdirs); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1045 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | cFYI(1, ("Error in Mkdir = %d", rc)); |
Steve French | a5a2b48 | 2005-08-20 21:42:53 -0700 | [diff] [blame] | 1047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | cifs_buf_release(pSMB); |
| 1049 | if (rc == -EAGAIN) |
| 1050 | goto MkDirRetry; |
| 1051 | return rc; |
| 1052 | } |
| 1053 | |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1054 | int |
| 1055 | CIFSPOSIXCreate(const int xid, struct cifsTconInfo *tcon, __u32 posix_flags, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1056 | __u64 mode, __u16 *netfid, FILE_UNIX_BASIC_INFO *pRetData, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1057 | __u32 *pOplock, const char *name, |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1058 | const struct nls_table *nls_codepage, int remap) |
| 1059 | { |
| 1060 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 1061 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 1062 | int name_len; |
| 1063 | int rc = 0; |
| 1064 | int bytes_returned = 0; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1065 | __u16 params, param_offset, offset, byte_count, count; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1066 | OPEN_PSX_REQ *pdata; |
| 1067 | OPEN_PSX_RSP *psx_rsp; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1068 | |
| 1069 | cFYI(1, ("In POSIX Create")); |
| 1070 | PsxCreat: |
| 1071 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 1072 | (void **) &pSMBr); |
| 1073 | if (rc) |
| 1074 | return rc; |
| 1075 | |
| 1076 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 1077 | name_len = |
| 1078 | cifsConvertToUCS((__le16 *) pSMB->FileName, name, |
| 1079 | PATH_MAX, nls_codepage, remap); |
| 1080 | name_len++; /* trailing null */ |
| 1081 | name_len *= 2; |
| 1082 | } else { /* BB improve the check for buffer overruns BB */ |
| 1083 | name_len = strnlen(name, PATH_MAX); |
| 1084 | name_len++; /* trailing null */ |
| 1085 | strncpy(pSMB->FileName, name, name_len); |
| 1086 | } |
| 1087 | |
| 1088 | params = 6 + name_len; |
| 1089 | count = sizeof(OPEN_PSX_REQ); |
| 1090 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 1091 | pSMB->MaxDataCount = cpu_to_le16(1000); /* large enough */ |
| 1092 | pSMB->MaxSetupCount = 0; |
| 1093 | pSMB->Reserved = 0; |
| 1094 | pSMB->Flags = 0; |
| 1095 | pSMB->Timeout = 0; |
| 1096 | pSMB->Reserved2 = 0; |
| 1097 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1098 | InformationLevel) - 4; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1099 | offset = param_offset + params; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1100 | pdata = (OPEN_PSX_REQ *)(((char *)&pSMB->hdr.Protocol) + offset); |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 1101 | pdata->Level = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1102 | pdata->Permissions = cpu_to_le64(mode); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1103 | pdata->PosixOpenFlags = cpu_to_le32(posix_flags); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1104 | pdata->OpenFlags = cpu_to_le32(*pOplock); |
| 1105 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 1106 | pSMB->DataOffset = cpu_to_le16(offset); |
| 1107 | pSMB->SetupCount = 1; |
| 1108 | pSMB->Reserved3 = 0; |
| 1109 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 1110 | byte_count = 3 /* pad */ + params + count; |
| 1111 | |
| 1112 | pSMB->DataCount = cpu_to_le16(count); |
| 1113 | pSMB->ParameterCount = cpu_to_le16(params); |
| 1114 | pSMB->TotalDataCount = pSMB->DataCount; |
| 1115 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 1116 | pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_OPEN); |
| 1117 | pSMB->Reserved4 = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1118 | pSMB->hdr.smb_buf_length += byte_count; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1119 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 1120 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 1121 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 1122 | if (rc) { |
| 1123 | cFYI(1, ("Posix create returned %d", rc)); |
| 1124 | goto psx_create_err; |
| 1125 | } |
| 1126 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1127 | cFYI(1, ("copying inode info")); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1128 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 1129 | |
| 1130 | if (rc || (pSMBr->ByteCount < sizeof(OPEN_PSX_RSP))) { |
| 1131 | rc = -EIO; /* bad smb */ |
| 1132 | goto psx_create_err; |
| 1133 | } |
| 1134 | |
| 1135 | /* copy return information to pRetData */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1136 | psx_rsp = (OPEN_PSX_RSP *)((char *) &pSMBr->hdr.Protocol |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1137 | + le16_to_cpu(pSMBr->t2.DataOffset)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1138 | |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1139 | *pOplock = le16_to_cpu(psx_rsp->OplockFlags); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1140 | if (netfid) |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1141 | *netfid = psx_rsp->Fid; /* cifs fid stays in le */ |
| 1142 | /* Let caller know file was created so we can set the mode. */ |
| 1143 | /* Do we care about the CreateAction in any other cases? */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1144 | if (cpu_to_le32(FILE_CREATE) == psx_rsp->CreateAction) |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1145 | *pOplock |= CIFS_CREATE_ACTION; |
| 1146 | /* check to make sure response data is there */ |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 1147 | if (psx_rsp->ReturnedLevel != cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC)) { |
| 1148 | pRetData->Type = cpu_to_le32(-1); /* unknown */ |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 1149 | cFYI(DBG2, ("unknown type")); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1150 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1151 | if (pSMBr->ByteCount < sizeof(OPEN_PSX_RSP) |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1152 | + sizeof(FILE_UNIX_BASIC_INFO)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1153 | cERROR(1, ("Open response data too small")); |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 1154 | pRetData->Type = cpu_to_le32(-1); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1155 | goto psx_create_err; |
| 1156 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1157 | memcpy((char *) pRetData, |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1158 | (char *)psx_rsp + sizeof(OPEN_PSX_RSP), |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1159 | sizeof(FILE_UNIX_BASIC_INFO)); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1160 | } |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1161 | |
| 1162 | psx_create_err: |
| 1163 | cifs_buf_release(pSMB); |
| 1164 | |
| 1165 | cifs_stats_inc(&tcon->num_mkdirs); |
| 1166 | |
| 1167 | if (rc == -EAGAIN) |
| 1168 | goto PsxCreat; |
| 1169 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1170 | return rc; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1173 | static __u16 convert_disposition(int disposition) |
| 1174 | { |
| 1175 | __u16 ofun = 0; |
| 1176 | |
| 1177 | switch (disposition) { |
| 1178 | case FILE_SUPERSEDE: |
| 1179 | ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC; |
| 1180 | break; |
| 1181 | case FILE_OPEN: |
| 1182 | ofun = SMBOPEN_OAPPEND; |
| 1183 | break; |
| 1184 | case FILE_CREATE: |
| 1185 | ofun = SMBOPEN_OCREATE; |
| 1186 | break; |
| 1187 | case FILE_OPEN_IF: |
| 1188 | ofun = SMBOPEN_OCREATE | SMBOPEN_OAPPEND; |
| 1189 | break; |
| 1190 | case FILE_OVERWRITE: |
| 1191 | ofun = SMBOPEN_OTRUNC; |
| 1192 | break; |
| 1193 | case FILE_OVERWRITE_IF: |
| 1194 | ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC; |
| 1195 | break; |
| 1196 | default: |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1197 | cFYI(1, ("unknown disposition %d", disposition)); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1198 | ofun = SMBOPEN_OAPPEND; /* regular open */ |
| 1199 | } |
| 1200 | return ofun; |
| 1201 | } |
| 1202 | |
Jeff Layton | 35fc37d | 2008-05-14 10:22:03 -0700 | [diff] [blame] | 1203 | static int |
| 1204 | access_flags_to_smbopen_mode(const int access_flags) |
| 1205 | { |
| 1206 | int masked_flags = access_flags & (GENERIC_READ | GENERIC_WRITE); |
| 1207 | |
| 1208 | if (masked_flags == GENERIC_READ) |
| 1209 | return SMBOPEN_READ; |
| 1210 | else if (masked_flags == GENERIC_WRITE) |
| 1211 | return SMBOPEN_WRITE; |
| 1212 | |
| 1213 | /* just go for read/write */ |
| 1214 | return SMBOPEN_READWRITE; |
| 1215 | } |
| 1216 | |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1217 | int |
| 1218 | SMBLegacyOpen(const int xid, struct cifsTconInfo *tcon, |
| 1219 | const char *fileName, const int openDisposition, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1220 | const int access_flags, const int create_options, __u16 *netfid, |
| 1221 | int *pOplock, FILE_ALL_INFO *pfile_info, |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1222 | const struct nls_table *nls_codepage, int remap) |
| 1223 | { |
| 1224 | int rc = -EACCES; |
| 1225 | OPENX_REQ *pSMB = NULL; |
| 1226 | OPENX_RSP *pSMBr = NULL; |
| 1227 | int bytes_returned; |
| 1228 | int name_len; |
| 1229 | __u16 count; |
| 1230 | |
| 1231 | OldOpenRetry: |
| 1232 | rc = smb_init(SMB_COM_OPEN_ANDX, 15, tcon, (void **) &pSMB, |
| 1233 | (void **) &pSMBr); |
| 1234 | if (rc) |
| 1235 | return rc; |
| 1236 | |
| 1237 | pSMB->AndXCommand = 0xFF; /* none */ |
| 1238 | |
| 1239 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 1240 | count = 1; /* account for one byte pad to word boundary */ |
| 1241 | name_len = |
| 1242 | cifsConvertToUCS((__le16 *) (pSMB->fileName + 1), |
| 1243 | fileName, PATH_MAX, nls_codepage, remap); |
| 1244 | name_len++; /* trailing null */ |
| 1245 | name_len *= 2; |
| 1246 | } else { /* BB improve check for buffer overruns BB */ |
| 1247 | count = 0; /* no pad */ |
| 1248 | name_len = strnlen(fileName, PATH_MAX); |
| 1249 | name_len++; /* trailing null */ |
| 1250 | strncpy(pSMB->fileName, fileName, name_len); |
| 1251 | } |
| 1252 | if (*pOplock & REQ_OPLOCK) |
| 1253 | pSMB->OpenFlags = cpu_to_le16(REQ_OPLOCK); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1254 | else if (*pOplock & REQ_BATCHOPLOCK) |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1255 | pSMB->OpenFlags = cpu_to_le16(REQ_BATCHOPLOCK); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1256 | |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1257 | pSMB->OpenFlags |= cpu_to_le16(REQ_MORE_INFO); |
Jeff Layton | 35fc37d | 2008-05-14 10:22:03 -0700 | [diff] [blame] | 1258 | pSMB->Mode = cpu_to_le16(access_flags_to_smbopen_mode(access_flags)); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1259 | pSMB->Mode |= cpu_to_le16(0x40); /* deny none */ |
| 1260 | /* set file as system file if special file such |
| 1261 | as fifo and server expecting SFU style and |
| 1262 | no Unix extensions */ |
| 1263 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1264 | if (create_options & CREATE_OPTION_SPECIAL) |
| 1265 | pSMB->FileAttributes = cpu_to_le16(ATTR_SYSTEM); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1266 | else /* BB FIXME BB */ |
| 1267 | pSMB->FileAttributes = cpu_to_le16(0/*ATTR_NORMAL*/); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1268 | |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1269 | if (create_options & CREATE_OPTION_READONLY) |
| 1270 | pSMB->FileAttributes |= cpu_to_le16(ATTR_READONLY); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1271 | |
| 1272 | /* BB FIXME BB */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1273 | /* pSMB->CreateOptions = cpu_to_le32(create_options & |
| 1274 | CREATE_OPTIONS_MASK); */ |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1275 | /* BB FIXME END BB */ |
Steve French | 3e87d80 | 2005-09-18 20:49:21 -0700 | [diff] [blame] | 1276 | |
| 1277 | pSMB->Sattr = cpu_to_le16(ATTR_HIDDEN | ATTR_SYSTEM | ATTR_DIRECTORY); |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 1278 | pSMB->OpenFunction = cpu_to_le16(convert_disposition(openDisposition)); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1279 | count += name_len; |
| 1280 | pSMB->hdr.smb_buf_length += count; |
| 1281 | |
| 1282 | pSMB->ByteCount = cpu_to_le16(count); |
| 1283 | /* long_op set to 1 to allow for oplock break timeouts */ |
| 1284 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1285 | (struct smb_hdr *)pSMBr, &bytes_returned, CIFS_LONG_OP); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1286 | cifs_stats_inc(&tcon->num_opens); |
| 1287 | if (rc) { |
| 1288 | cFYI(1, ("Error in Open = %d", rc)); |
| 1289 | } else { |
| 1290 | /* BB verify if wct == 15 */ |
| 1291 | |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 1292 | /* *pOplock = pSMBr->OplockLevel; */ /* BB take from action field*/ |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1293 | |
| 1294 | *netfid = pSMBr->Fid; /* cifs fid stays in le */ |
| 1295 | /* Let caller know file was created so we can set the mode. */ |
| 1296 | /* Do we care about the CreateAction in any other cases? */ |
| 1297 | /* BB FIXME BB */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1298 | /* if (cpu_to_le32(FILE_CREATE) == pSMBr->CreateAction) |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1299 | *pOplock |= CIFS_CREATE_ACTION; */ |
| 1300 | /* BB FIXME END */ |
| 1301 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1302 | if (pfile_info) { |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1303 | pfile_info->CreationTime = 0; /* BB convert CreateTime*/ |
| 1304 | pfile_info->LastAccessTime = 0; /* BB fixme */ |
| 1305 | pfile_info->LastWriteTime = 0; /* BB fixme */ |
| 1306 | pfile_info->ChangeTime = 0; /* BB fixme */ |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 1307 | pfile_info->Attributes = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1308 | cpu_to_le32(le16_to_cpu(pSMBr->FileAttributes)); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1309 | /* the file_info buf is endian converted by caller */ |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 1310 | pfile_info->AllocationSize = |
| 1311 | cpu_to_le64(le32_to_cpu(pSMBr->EndOfFile)); |
| 1312 | pfile_info->EndOfFile = pfile_info->AllocationSize; |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1313 | pfile_info->NumberOfLinks = cpu_to_le32(1); |
| 1314 | } |
| 1315 | } |
| 1316 | |
| 1317 | cifs_buf_release(pSMB); |
| 1318 | if (rc == -EAGAIN) |
| 1319 | goto OldOpenRetry; |
| 1320 | return rc; |
| 1321 | } |
| 1322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | int |
| 1324 | CIFSSMBOpen(const int xid, struct cifsTconInfo *tcon, |
| 1325 | const char *fileName, const int openDisposition, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1326 | const int access_flags, const int create_options, __u16 *netfid, |
| 1327 | int *pOplock, FILE_ALL_INFO *pfile_info, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1328 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | { |
| 1330 | int rc = -EACCES; |
| 1331 | OPEN_REQ *pSMB = NULL; |
| 1332 | OPEN_RSP *pSMBr = NULL; |
| 1333 | int bytes_returned; |
| 1334 | int name_len; |
| 1335 | __u16 count; |
| 1336 | |
| 1337 | openRetry: |
| 1338 | rc = smb_init(SMB_COM_NT_CREATE_ANDX, 24, tcon, (void **) &pSMB, |
| 1339 | (void **) &pSMBr); |
| 1340 | if (rc) |
| 1341 | return rc; |
| 1342 | |
| 1343 | pSMB->AndXCommand = 0xFF; /* none */ |
| 1344 | |
| 1345 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 1346 | count = 1; /* account for one byte pad to word boundary */ |
| 1347 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 1348 | cifsConvertToUCS((__le16 *) (pSMB->fileName + 1), |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1349 | fileName, PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | name_len++; /* trailing null */ |
| 1351 | name_len *= 2; |
| 1352 | pSMB->NameLength = cpu_to_le16(name_len); |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 1353 | } else { /* BB improve check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | count = 0; /* no pad */ |
| 1355 | name_len = strnlen(fileName, PATH_MAX); |
| 1356 | name_len++; /* trailing null */ |
| 1357 | pSMB->NameLength = cpu_to_le16(name_len); |
| 1358 | strncpy(pSMB->fileName, fileName, name_len); |
| 1359 | } |
| 1360 | if (*pOplock & REQ_OPLOCK) |
| 1361 | pSMB->OpenFlags = cpu_to_le32(REQ_OPLOCK); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1362 | else if (*pOplock & REQ_BATCHOPLOCK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | pSMB->OpenFlags = cpu_to_le32(REQ_BATCHOPLOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | pSMB->DesiredAccess = cpu_to_le32(access_flags); |
| 1365 | pSMB->AllocationSize = 0; |
Steve French | eda3c029 | 2005-07-21 15:20:28 -0700 | [diff] [blame] | 1366 | /* set file as system file if special file such |
| 1367 | as fifo and server expecting SFU style and |
| 1368 | no Unix extensions */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1369 | if (create_options & CREATE_OPTION_SPECIAL) |
Steve French | eda3c029 | 2005-07-21 15:20:28 -0700 | [diff] [blame] | 1370 | pSMB->FileAttributes = cpu_to_le32(ATTR_SYSTEM); |
| 1371 | else |
| 1372 | pSMB->FileAttributes = cpu_to_le32(ATTR_NORMAL); |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | /* XP does not handle ATTR_POSIX_SEMANTICS */ |
| 1375 | /* but it helps speed up case sensitive checks for other |
| 1376 | servers such as Samba */ |
| 1377 | if (tcon->ses->capabilities & CAP_UNIX) |
| 1378 | pSMB->FileAttributes |= cpu_to_le32(ATTR_POSIX_SEMANTICS); |
| 1379 | |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1380 | if (create_options & CREATE_OPTION_READONLY) |
| 1381 | pSMB->FileAttributes |= cpu_to_le32(ATTR_READONLY); |
| 1382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | pSMB->ShareAccess = cpu_to_le32(FILE_SHARE_ALL); |
| 1384 | pSMB->CreateDisposition = cpu_to_le32(openDisposition); |
Steve French | eda3c029 | 2005-07-21 15:20:28 -0700 | [diff] [blame] | 1385 | pSMB->CreateOptions = cpu_to_le32(create_options & CREATE_OPTIONS_MASK); |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 1386 | /* BB Expirement with various impersonation levels and verify */ |
| 1387 | pSMB->ImpersonationLevel = cpu_to_le32(SECURITY_IMPERSONATION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | pSMB->SecurityFlags = |
| 1389 | SECURITY_CONTEXT_TRACKING | SECURITY_EFFECTIVE_ONLY; |
| 1390 | |
| 1391 | count += name_len; |
| 1392 | pSMB->hdr.smb_buf_length += count; |
| 1393 | |
| 1394 | pSMB->ByteCount = cpu_to_le16(count); |
| 1395 | /* long_op set to 1 to allow for oplock break timeouts */ |
| 1396 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1397 | (struct smb_hdr *)pSMBr, &bytes_returned, CIFS_LONG_OP); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1398 | cifs_stats_inc(&tcon->num_opens); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | if (rc) { |
| 1400 | cFYI(1, ("Error in Open = %d", rc)); |
| 1401 | } else { |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 1402 | *pOplock = pSMBr->OplockLevel; /* 1 byte no need to le_to_cpu */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | *netfid = pSMBr->Fid; /* cifs fid stays in le */ |
| 1404 | /* Let caller know file was created so we can set the mode. */ |
| 1405 | /* Do we care about the CreateAction in any other cases? */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1406 | if (cpu_to_le32(FILE_CREATE) == pSMBr->CreateAction) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1407 | *pOplock |= CIFS_CREATE_ACTION; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1408 | if (pfile_info) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1409 | memcpy((char *)pfile_info, (char *)&pSMBr->CreationTime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | 36 /* CreationTime to Attributes */); |
| 1411 | /* the file_info buf is endian converted by caller */ |
| 1412 | pfile_info->AllocationSize = pSMBr->AllocationSize; |
| 1413 | pfile_info->EndOfFile = pSMBr->EndOfFile; |
| 1414 | pfile_info->NumberOfLinks = cpu_to_le32(1); |
| 1415 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | } |
Steve French | a5a2b48 | 2005-08-20 21:42:53 -0700 | [diff] [blame] | 1417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | cifs_buf_release(pSMB); |
| 1419 | if (rc == -EAGAIN) |
| 1420 | goto openRetry; |
| 1421 | return rc; |
| 1422 | } |
| 1423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1425 | CIFSSMBRead(const int xid, struct cifsTconInfo *tcon, const int netfid, |
| 1426 | const unsigned int count, const __u64 lseek, unsigned int *nbytes, |
| 1427 | char **buf, int *pbuf_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | { |
| 1429 | int rc = -EACCES; |
| 1430 | READ_REQ *pSMB = NULL; |
| 1431 | READ_RSP *pSMBr = NULL; |
| 1432 | char *pReadData = NULL; |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1433 | int wct; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1434 | int resp_buf_type = 0; |
| 1435 | struct kvec iov[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1437 | cFYI(1, ("Reading %d bytes on fid %d", count, netfid)); |
| 1438 | if (tcon->ses->capabilities & CAP_LARGE_FILES) |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1439 | wct = 12; |
| 1440 | else |
| 1441 | wct = 10; /* old style read */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | |
| 1443 | *nbytes = 0; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1444 | rc = small_smb_init(SMB_COM_READ_ANDX, wct, tcon, (void **) &pSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | if (rc) |
| 1446 | return rc; |
| 1447 | |
| 1448 | /* tcon and ses pointer are checked in smb_init */ |
| 1449 | if (tcon->ses->server == NULL) |
| 1450 | return -ECONNABORTED; |
| 1451 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1452 | pSMB->AndXCommand = 0xFF; /* none */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | pSMB->Fid = netfid; |
| 1454 | pSMB->OffsetLow = cpu_to_le32(lseek & 0xFFFFFFFF); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1455 | if (wct == 12) |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1456 | pSMB->OffsetHigh = cpu_to_le32(lseek >> 32); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1457 | else if ((lseek >> 32) > 0) /* can not handle this big offset for old */ |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1458 | return -EIO; |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | pSMB->Remaining = 0; |
| 1461 | pSMB->MaxCount = cpu_to_le16(count & 0xFFFF); |
| 1462 | pSMB->MaxCountHigh = cpu_to_le32(count >> 16); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1463 | if (wct == 12) |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1464 | pSMB->ByteCount = 0; /* no need to do le conversion since 0 */ |
| 1465 | else { |
| 1466 | /* old style read */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1467 | struct smb_com_readx_req *pSMBW = |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1468 | (struct smb_com_readx_req *)pSMB; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1469 | pSMBW->ByteCount = 0; |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1470 | } |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1471 | |
| 1472 | iov[0].iov_base = (char *)pSMB; |
| 1473 | iov[0].iov_len = pSMB->hdr.smb_buf_length + 4; |
Steve French | a761ac5 | 2007-10-18 21:45:27 +0000 | [diff] [blame] | 1474 | rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1475 | &resp_buf_type, CIFS_STD_OP | CIFS_LOG_ERROR); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1476 | cifs_stats_inc(&tcon->num_reads); |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1477 | pSMBr = (READ_RSP *)iov[0].iov_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | if (rc) { |
| 1479 | cERROR(1, ("Send error in read = %d", rc)); |
| 1480 | } else { |
| 1481 | int data_length = le16_to_cpu(pSMBr->DataLengthHigh); |
| 1482 | data_length = data_length << 16; |
| 1483 | data_length += le16_to_cpu(pSMBr->DataLength); |
| 1484 | *nbytes = data_length; |
| 1485 | |
| 1486 | /*check that DataLength would not go beyond end of SMB */ |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1487 | if ((data_length > CIFSMaxBufSize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | || (data_length > count)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1489 | cFYI(1, ("bad length %d for count %d", |
| 1490 | data_length, count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | rc = -EIO; |
| 1492 | *nbytes = 0; |
| 1493 | } else { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1494 | pReadData = (char *) (&pSMBr->hdr.Protocol) + |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1495 | le16_to_cpu(pSMBr->DataOffset); |
| 1496 | /* if (rc = copy_to_user(buf, pReadData, data_length)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1497 | cERROR(1,("Faulting on read rc = %d",rc)); |
| 1498 | rc = -EFAULT; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1499 | }*/ /* can not use copy_to_user when using page cache*/ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1500 | if (*buf) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1501 | memcpy(*buf, pReadData, data_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | } |
| 1503 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 1505 | /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1506 | if (*buf) { |
| 1507 | if (resp_buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1508 | cifs_small_buf_release(iov[0].iov_base); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1509 | else if (resp_buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1510 | cifs_buf_release(iov[0].iov_base); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1511 | } else if (resp_buf_type != CIFS_NO_BUFFER) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1512 | /* return buffer to caller to free */ |
| 1513 | *buf = iov[0].iov_base; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1514 | if (resp_buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1515 | *pbuf_type = CIFS_SMALL_BUFFER; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1516 | else if (resp_buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1517 | *pbuf_type = CIFS_LARGE_BUFFER; |
Steve French | 6cec2ae | 2006-02-22 17:31:52 -0600 | [diff] [blame] | 1518 | } /* else no valid buffer on return - leave as null */ |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1519 | |
| 1520 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | since file handle passed in no longer valid */ |
| 1522 | return rc; |
| 1523 | } |
| 1524 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | int |
| 1527 | CIFSSMBWrite(const int xid, struct cifsTconInfo *tcon, |
| 1528 | const int netfid, const unsigned int count, |
| 1529 | const __u64 offset, unsigned int *nbytes, const char *buf, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1530 | const char __user *ubuf, const int long_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | { |
| 1532 | int rc = -EACCES; |
| 1533 | WRITE_REQ *pSMB = NULL; |
| 1534 | WRITE_RSP *pSMBr = NULL; |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1535 | int bytes_returned, wct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | __u32 bytes_sent; |
| 1537 | __u16 byte_count; |
| 1538 | |
| 1539 | /* cFYI(1,("write at %lld %d bytes",offset,count));*/ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1540 | if (tcon->ses == NULL) |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1541 | return -ECONNABORTED; |
| 1542 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1543 | if (tcon->ses->capabilities & CAP_LARGE_FILES) |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1544 | wct = 14; |
| 1545 | else |
| 1546 | wct = 12; |
| 1547 | |
| 1548 | rc = smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | (void **) &pSMBr); |
| 1550 | if (rc) |
| 1551 | return rc; |
| 1552 | /* tcon and ses pointer are checked in smb_init */ |
| 1553 | if (tcon->ses->server == NULL) |
| 1554 | return -ECONNABORTED; |
| 1555 | |
| 1556 | pSMB->AndXCommand = 0xFF; /* none */ |
| 1557 | pSMB->Fid = netfid; |
| 1558 | pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1559 | if (wct == 14) |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1560 | pSMB->OffsetHigh = cpu_to_le32(offset >> 32); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1561 | else if ((offset >> 32) > 0) /* can not handle big offset for old srv */ |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1562 | return -EIO; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | pSMB->Reserved = 0xFFFFFFFF; |
| 1565 | pSMB->WriteMode = 0; |
| 1566 | pSMB->Remaining = 0; |
| 1567 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1568 | /* Can increase buffer size if buffer is big enough in some cases ie we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | can send more if LARGE_WRITE_X capability returned by the server and if |
| 1570 | our buffer is big enough or if we convert to iovecs on socket writes |
| 1571 | and eliminate the copy to the CIFS buffer */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1572 | if (tcon->ses->capabilities & CAP_LARGE_WRITE_X) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | bytes_sent = min_t(const unsigned int, CIFSMaxBufSize, count); |
| 1574 | } else { |
| 1575 | bytes_sent = (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) |
| 1576 | & ~0xFF; |
| 1577 | } |
| 1578 | |
| 1579 | if (bytes_sent > count) |
| 1580 | bytes_sent = count; |
| 1581 | pSMB->DataOffset = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1582 | cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1583 | if (buf) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1584 | memcpy(pSMB->Data, buf, bytes_sent); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1585 | else if (ubuf) { |
| 1586 | if (copy_from_user(pSMB->Data, ubuf, bytes_sent)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | cifs_buf_release(pSMB); |
| 1588 | return -EFAULT; |
| 1589 | } |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1590 | } else if (count != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | /* No buffer */ |
| 1592 | cifs_buf_release(pSMB); |
| 1593 | return -EINVAL; |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1594 | } /* else setting file size with write of zero bytes */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1595 | if (wct == 14) |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1596 | byte_count = bytes_sent + 1; /* pad */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1597 | else /* wct == 12 */ |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1598 | byte_count = bytes_sent + 5; /* bigger pad, smaller smb hdr */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | pSMB->DataLengthLow = cpu_to_le16(bytes_sent & 0xFFFF); |
| 1601 | pSMB->DataLengthHigh = cpu_to_le16(bytes_sent >> 16); |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1602 | pSMB->hdr.smb_buf_length += byte_count; |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1603 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1604 | if (wct == 14) |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1605 | pSMB->ByteCount = cpu_to_le16(byte_count); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1606 | else { /* old style write has byte count 4 bytes earlier |
| 1607 | so 4 bytes pad */ |
| 1608 | struct smb_com_writex_req *pSMBW = |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1609 | (struct smb_com_writex_req *)pSMB; |
| 1610 | pSMBW->ByteCount = cpu_to_le16(byte_count); |
| 1611 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | |
| 1613 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 1614 | (struct smb_hdr *) pSMBr, &bytes_returned, long_op); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1615 | cifs_stats_inc(&tcon->num_writes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | if (rc) { |
| 1617 | cFYI(1, ("Send error in write = %d", rc)); |
| 1618 | *nbytes = 0; |
| 1619 | } else { |
| 1620 | *nbytes = le16_to_cpu(pSMBr->CountHigh); |
| 1621 | *nbytes = (*nbytes) << 16; |
| 1622 | *nbytes += le16_to_cpu(pSMBr->Count); |
| 1623 | } |
| 1624 | |
| 1625 | cifs_buf_release(pSMB); |
| 1626 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1627 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | since file handle passed in no longer valid */ |
| 1629 | |
| 1630 | return rc; |
| 1631 | } |
| 1632 | |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1633 | int |
| 1634 | CIFSSMBWrite2(const int xid, struct cifsTconInfo *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | const int netfid, const unsigned int count, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1636 | const __u64 offset, unsigned int *nbytes, struct kvec *iov, |
| 1637 | int n_vec, const int long_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | { |
| 1639 | int rc = -EACCES; |
| 1640 | WRITE_REQ *pSMB = NULL; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1641 | int wct; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1642 | int smb_hdr_len; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1643 | int resp_buf_type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1645 | cFYI(1, ("write2 at %lld %d bytes", (long long)offset, count)); |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 1646 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1647 | if (tcon->ses->capabilities & CAP_LARGE_FILES) |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1648 | wct = 14; |
| 1649 | else |
| 1650 | wct = 12; |
| 1651 | rc = small_smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | if (rc) |
| 1653 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | /* tcon and ses pointer are checked in smb_init */ |
| 1655 | if (tcon->ses->server == NULL) |
| 1656 | return -ECONNABORTED; |
| 1657 | |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1658 | pSMB->AndXCommand = 0xFF; /* none */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | pSMB->Fid = netfid; |
| 1660 | pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1661 | if (wct == 14) |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1662 | pSMB->OffsetHigh = cpu_to_le32(offset >> 32); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1663 | else if ((offset >> 32) > 0) /* can not handle big offset for old srv */ |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1664 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | pSMB->Reserved = 0xFFFFFFFF; |
| 1666 | pSMB->WriteMode = 0; |
| 1667 | pSMB->Remaining = 0; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | pSMB->DataOffset = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1670 | cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1672 | pSMB->DataLengthLow = cpu_to_le16(count & 0xFFFF); |
| 1673 | pSMB->DataLengthHigh = cpu_to_le16(count >> 16); |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1674 | smb_hdr_len = pSMB->hdr.smb_buf_length + 1; /* hdr + 1 byte pad */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1675 | if (wct == 14) |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1676 | pSMB->hdr.smb_buf_length += count+1; |
| 1677 | else /* wct == 12 */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1678 | pSMB->hdr.smb_buf_length += count+5; /* smb data starts later */ |
| 1679 | if (wct == 14) |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1680 | pSMB->ByteCount = cpu_to_le16(count + 1); |
| 1681 | else /* wct == 12 */ /* bigger pad, smaller smb hdr, keep offset ok */ { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1682 | struct smb_com_writex_req *pSMBW = |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1683 | (struct smb_com_writex_req *)pSMB; |
| 1684 | pSMBW->ByteCount = cpu_to_le16(count + 5); |
| 1685 | } |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1686 | iov[0].iov_base = pSMB; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1687 | if (wct == 14) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1688 | iov[0].iov_len = smb_hdr_len + 4; |
| 1689 | else /* wct == 12 pad bigger by four bytes */ |
| 1690 | iov[0].iov_len = smb_hdr_len + 8; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1691 | |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1692 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1693 | rc = SendReceive2(xid, tcon->ses, iov, n_vec + 1, &resp_buf_type, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1694 | long_op); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1695 | cifs_stats_inc(&tcon->num_writes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | if (rc) { |
Steve French | 8cc64c6 | 2005-10-03 13:49:43 -0700 | [diff] [blame] | 1697 | cFYI(1, ("Send error Write2 = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | *nbytes = 0; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1699 | } else if (resp_buf_type == 0) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1700 | /* presumably this can not happen, but best to be safe */ |
| 1701 | rc = -EIO; |
| 1702 | *nbytes = 0; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1703 | } else { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1704 | WRITE_RSP *pSMBr = (WRITE_RSP *)iov[0].iov_base; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1705 | *nbytes = le16_to_cpu(pSMBr->CountHigh); |
| 1706 | *nbytes = (*nbytes) << 16; |
| 1707 | *nbytes += le16_to_cpu(pSMBr->Count); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1708 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 1710 | /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1711 | if (resp_buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1712 | cifs_small_buf_release(iov[0].iov_base); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1713 | else if (resp_buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1714 | cifs_buf_release(iov[0].iov_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1716 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | since file handle passed in no longer valid */ |
| 1718 | |
| 1719 | return rc; |
| 1720 | } |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1721 | |
| 1722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | int |
| 1724 | CIFSSMBLock(const int xid, struct cifsTconInfo *tcon, |
| 1725 | const __u16 smb_file_id, const __u64 len, |
| 1726 | const __u64 offset, const __u32 numUnlock, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1727 | const __u32 numLock, const __u8 lockType, const bool waitFlag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | { |
| 1729 | int rc = 0; |
| 1730 | LOCK_REQ *pSMB = NULL; |
| 1731 | LOCK_RSP *pSMBr = NULL; |
| 1732 | int bytes_returned; |
| 1733 | int timeout = 0; |
| 1734 | __u16 count; |
| 1735 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1736 | cFYI(1, ("CIFSSMBLock timeout %d numLock %d", (int)waitFlag, numLock)); |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1737 | rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB); |
| 1738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | if (rc) |
| 1740 | return rc; |
| 1741 | |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1742 | pSMBr = (LOCK_RSP *)pSMB; /* BB removeme BB */ |
| 1743 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1744 | if (lockType == LOCKING_ANDX_OPLOCK_RELEASE) { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1745 | timeout = CIFS_ASYNC_OP; /* no response expected */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | pSMB->Timeout = 0; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1747 | } else if (waitFlag) { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1748 | timeout = CIFS_BLOCKING_OP; /* blocking operation, no timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | pSMB->Timeout = cpu_to_le32(-1);/* blocking - do not time out */ |
| 1750 | } else { |
| 1751 | pSMB->Timeout = 0; |
| 1752 | } |
| 1753 | |
| 1754 | pSMB->NumberOfLocks = cpu_to_le16(numLock); |
| 1755 | pSMB->NumberOfUnlocks = cpu_to_le16(numUnlock); |
| 1756 | pSMB->LockType = lockType; |
| 1757 | pSMB->AndXCommand = 0xFF; /* none */ |
| 1758 | pSMB->Fid = smb_file_id; /* netfid stays le */ |
| 1759 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1760 | if ((numLock != 0) || (numUnlock != 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | pSMB->Locks[0].Pid = cpu_to_le16(current->tgid); |
| 1762 | /* BB where to store pid high? */ |
| 1763 | pSMB->Locks[0].LengthLow = cpu_to_le32((u32)len); |
| 1764 | pSMB->Locks[0].LengthHigh = cpu_to_le32((u32)(len>>32)); |
| 1765 | pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset); |
| 1766 | pSMB->Locks[0].OffsetHigh = cpu_to_le32((u32)(offset>>32)); |
| 1767 | count = sizeof(LOCKING_ANDX_RANGE); |
| 1768 | } else { |
| 1769 | /* oplock break */ |
| 1770 | count = 0; |
| 1771 | } |
| 1772 | pSMB->hdr.smb_buf_length += count; |
| 1773 | pSMB->ByteCount = cpu_to_le16(count); |
| 1774 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1775 | if (waitFlag) { |
| 1776 | rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB, |
| 1777 | (struct smb_hdr *) pSMBr, &bytes_returned); |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1778 | cifs_small_buf_release(pSMB); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1779 | } else { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1780 | rc = SendReceiveNoRsp(xid, tcon->ses, (struct smb_hdr *)pSMB, |
| 1781 | timeout); |
| 1782 | /* SMB buffer freed by function above */ |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1783 | } |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1784 | cifs_stats_inc(&tcon->num_locks); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1785 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | cFYI(1, ("Send error in Lock = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1788 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | since file handle passed in no longer valid */ |
| 1790 | return rc; |
| 1791 | } |
| 1792 | |
| 1793 | int |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1794 | CIFSSMBPosixLock(const int xid, struct cifsTconInfo *tcon, |
| 1795 | const __u16 smb_file_id, const int get_flag, const __u64 len, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1796 | struct file_lock *pLockData, const __u16 lock_type, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1797 | const bool waitFlag) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1798 | { |
| 1799 | struct smb_com_transaction2_sfi_req *pSMB = NULL; |
| 1800 | struct smb_com_transaction2_sfi_rsp *pSMBr = NULL; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1801 | struct cifs_posix_lock *parm_data; |
| 1802 | int rc = 0; |
Steve French | 3a5ff61 | 2006-07-14 22:37:11 +0000 | [diff] [blame] | 1803 | int timeout = 0; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1804 | int bytes_returned = 0; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1805 | int resp_buf_type = 0; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1806 | __u16 params, param_offset, offset, byte_count, count; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1807 | struct kvec iov[1]; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1808 | |
| 1809 | cFYI(1, ("Posix Lock")); |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1810 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1811 | if (pLockData == NULL) |
Marcin Slusarz | ed5f037 | 2008-05-13 04:01:01 +0000 | [diff] [blame] | 1812 | return -EINVAL; |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1813 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1814 | rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB); |
| 1815 | |
| 1816 | if (rc) |
| 1817 | return rc; |
| 1818 | |
| 1819 | pSMBr = (struct smb_com_transaction2_sfi_rsp *)pSMB; |
| 1820 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1821 | params = 6; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1822 | pSMB->MaxSetupCount = 0; |
| 1823 | pSMB->Reserved = 0; |
| 1824 | pSMB->Flags = 0; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1825 | pSMB->Reserved2 = 0; |
| 1826 | param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4; |
| 1827 | offset = param_offset + params; |
| 1828 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1829 | count = sizeof(struct cifs_posix_lock); |
| 1830 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1831 | pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */ |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1832 | pSMB->SetupCount = 1; |
| 1833 | pSMB->Reserved3 = 0; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1834 | if (get_flag) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1835 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION); |
| 1836 | else |
| 1837 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION); |
| 1838 | byte_count = 3 /* pad */ + params + count; |
| 1839 | pSMB->DataCount = cpu_to_le16(count); |
| 1840 | pSMB->ParameterCount = cpu_to_le16(params); |
| 1841 | pSMB->TotalDataCount = pSMB->DataCount; |
| 1842 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 1843 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1844 | parm_data = (struct cifs_posix_lock *) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1845 | (((char *) &pSMB->hdr.Protocol) + offset); |
| 1846 | |
| 1847 | parm_data->lock_type = cpu_to_le16(lock_type); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1848 | if (waitFlag) { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1849 | timeout = CIFS_BLOCKING_OP; /* blocking operation, no timeout */ |
Steve French | cec6815a | 2006-05-30 18:07:17 +0000 | [diff] [blame] | 1850 | parm_data->lock_flags = cpu_to_le16(1); |
Steve French | 3a5ff61 | 2006-07-14 22:37:11 +0000 | [diff] [blame] | 1851 | pSMB->Timeout = cpu_to_le32(-1); |
| 1852 | } else |
| 1853 | pSMB->Timeout = 0; |
| 1854 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1855 | parm_data->pid = cpu_to_le32(current->tgid); |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1856 | parm_data->start = cpu_to_le64(pLockData->fl_start); |
Steve French | cec6815a | 2006-05-30 18:07:17 +0000 | [diff] [blame] | 1857 | parm_data->length = cpu_to_le64(len); /* normalize negative numbers */ |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1858 | |
| 1859 | pSMB->DataOffset = cpu_to_le16(offset); |
Steve French | f26282c | 2006-03-01 09:17:37 +0000 | [diff] [blame] | 1860 | pSMB->Fid = smb_file_id; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1861 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_LOCK); |
| 1862 | pSMB->Reserved4 = 0; |
| 1863 | pSMB->hdr.smb_buf_length += byte_count; |
| 1864 | pSMB->ByteCount = cpu_to_le16(byte_count); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1865 | if (waitFlag) { |
| 1866 | rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB, |
| 1867 | (struct smb_hdr *) pSMBr, &bytes_returned); |
| 1868 | } else { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1869 | iov[0].iov_base = (char *)pSMB; |
| 1870 | iov[0].iov_len = pSMB->hdr.smb_buf_length + 4; |
| 1871 | rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */, |
| 1872 | &resp_buf_type, timeout); |
| 1873 | pSMB = NULL; /* request buf already freed by SendReceive2. Do |
| 1874 | not try to free it twice below on exit */ |
| 1875 | pSMBr = (struct smb_com_transaction2_sfi_rsp *)iov[0].iov_base; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1876 | } |
| 1877 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1878 | if (rc) { |
| 1879 | cFYI(1, ("Send error in Posix Lock = %d", rc)); |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1880 | } else if (get_flag) { |
| 1881 | /* lock structure can be returned on get */ |
| 1882 | __u16 data_offset; |
| 1883 | __u16 data_count; |
| 1884 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1885 | |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1886 | if (rc || (pSMBr->ByteCount < sizeof(struct cifs_posix_lock))) { |
| 1887 | rc = -EIO; /* bad smb */ |
| 1888 | goto plk_err_exit; |
| 1889 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1890 | if (pLockData == NULL) { |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1891 | rc = -EINVAL; |
| 1892 | goto plk_err_exit; |
| 1893 | } |
| 1894 | data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 1895 | data_count = le16_to_cpu(pSMBr->t2.DataCount); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1896 | if (data_count < sizeof(struct cifs_posix_lock)) { |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1897 | rc = -EIO; |
| 1898 | goto plk_err_exit; |
| 1899 | } |
| 1900 | parm_data = (struct cifs_posix_lock *) |
| 1901 | ((char *)&pSMBr->hdr.Protocol + data_offset); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1902 | if (parm_data->lock_type == cpu_to_le16(CIFS_UNLCK)) |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1903 | pLockData->fl_type = F_UNLCK; |
| 1904 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1905 | |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 1906 | plk_err_exit: |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1907 | if (pSMB) |
| 1908 | cifs_small_buf_release(pSMB); |
| 1909 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1910 | if (resp_buf_type == CIFS_SMALL_BUFFER) |
| 1911 | cifs_small_buf_release(iov[0].iov_base); |
| 1912 | else if (resp_buf_type == CIFS_LARGE_BUFFER) |
| 1913 | cifs_buf_release(iov[0].iov_base); |
| 1914 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1915 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
| 1916 | since file handle passed in no longer valid */ |
| 1917 | |
| 1918 | return rc; |
| 1919 | } |
| 1920 | |
| 1921 | |
| 1922 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | CIFSSMBClose(const int xid, struct cifsTconInfo *tcon, int smb_file_id) |
| 1924 | { |
| 1925 | int rc = 0; |
| 1926 | CLOSE_REQ *pSMB = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | cFYI(1, ("In CIFSSMBClose")); |
| 1928 | |
| 1929 | /* do not retry on dead session on close */ |
| 1930 | rc = small_smb_init(SMB_COM_CLOSE, 3, tcon, (void **) &pSMB); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1931 | if (rc == -EAGAIN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | return 0; |
| 1933 | if (rc) |
| 1934 | return rc; |
| 1935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | pSMB->FileID = (__u16) smb_file_id; |
Steve French | b815f1e5 | 2006-10-02 05:53:29 +0000 | [diff] [blame] | 1937 | pSMB->LastWriteTime = 0xFFFFFFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | pSMB->ByteCount = 0; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1939 | rc = SendReceiveNoRsp(xid, tcon->ses, (struct smb_hdr *) pSMB, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1940 | cifs_stats_inc(&tcon->num_closes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | if (rc) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1942 | if (rc != -EINTR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | /* EINTR is expected when user ctl-c to kill app */ |
| 1944 | cERROR(1, ("Send error in Close = %d", rc)); |
| 1945 | } |
| 1946 | } |
| 1947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | /* Since session is dead, file will be closed on server already */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1949 | if (rc == -EAGAIN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | rc = 0; |
| 1951 | |
| 1952 | return rc; |
| 1953 | } |
| 1954 | |
| 1955 | int |
| 1956 | CIFSSMBRename(const int xid, struct cifsTconInfo *tcon, |
| 1957 | const char *fromName, const char *toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1958 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | { |
| 1960 | int rc = 0; |
| 1961 | RENAME_REQ *pSMB = NULL; |
| 1962 | RENAME_RSP *pSMBr = NULL; |
| 1963 | int bytes_returned; |
| 1964 | int name_len, name_len2; |
| 1965 | __u16 count; |
| 1966 | |
| 1967 | cFYI(1, ("In CIFSSMBRename")); |
| 1968 | renameRetry: |
| 1969 | rc = smb_init(SMB_COM_RENAME, 1, tcon, (void **) &pSMB, |
| 1970 | (void **) &pSMBr); |
| 1971 | if (rc) |
| 1972 | return rc; |
| 1973 | |
| 1974 | pSMB->BufferFormat = 0x04; |
| 1975 | pSMB->SearchAttributes = |
| 1976 | cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM | |
| 1977 | ATTR_DIRECTORY); |
| 1978 | |
| 1979 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 1980 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1981 | cifsConvertToUCS((__le16 *) pSMB->OldFileName, fromName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1982 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | name_len++; /* trailing null */ |
| 1984 | name_len *= 2; |
| 1985 | pSMB->OldFileName[name_len] = 0x04; /* pad */ |
| 1986 | /* protocol requires ASCII signature byte on Unicode string */ |
| 1987 | pSMB->OldFileName[name_len + 1] = 0x00; |
| 1988 | name_len2 = |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 1989 | cifsConvertToUCS((__le16 *)&pSMB->OldFileName[name_len + 2], |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1990 | toName, PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; |
| 1992 | name_len2 *= 2; /* convert to bytes */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1993 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | name_len = strnlen(fromName, PATH_MAX); |
| 1995 | name_len++; /* trailing null */ |
| 1996 | strncpy(pSMB->OldFileName, fromName, name_len); |
| 1997 | name_len2 = strnlen(toName, PATH_MAX); |
| 1998 | name_len2++; /* trailing null */ |
| 1999 | pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */ |
| 2000 | strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2); |
| 2001 | name_len2++; /* trailing null */ |
| 2002 | name_len2++; /* signature byte */ |
| 2003 | } |
| 2004 | |
| 2005 | count = 1 /* 1st signature byte */ + name_len + name_len2; |
| 2006 | pSMB->hdr.smb_buf_length += count; |
| 2007 | pSMB->ByteCount = cpu_to_le16(count); |
| 2008 | |
| 2009 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2010 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2011 | cifs_stats_inc(&tcon->num_renames); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2012 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | cFYI(1, ("Send error in rename = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | cifs_buf_release(pSMB); |
| 2016 | |
| 2017 | if (rc == -EAGAIN) |
| 2018 | goto renameRetry; |
| 2019 | |
| 2020 | return rc; |
| 2021 | } |
| 2022 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2023 | int CIFSSMBRenameOpenFile(const int xid, struct cifsTconInfo *pTcon, |
| 2024 | int netfid, char *target_name, |
| 2025 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | { |
| 2027 | struct smb_com_transaction2_sfi_req *pSMB = NULL; |
| 2028 | struct smb_com_transaction2_sfi_rsp *pSMBr = NULL; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2029 | struct set_file_rename *rename_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | char *data_offset; |
| 2031 | char dummy_string[30]; |
| 2032 | int rc = 0; |
| 2033 | int bytes_returned = 0; |
| 2034 | int len_of_str; |
| 2035 | __u16 params, param_offset, offset, count, byte_count; |
| 2036 | |
| 2037 | cFYI(1, ("Rename to File by handle")); |
| 2038 | rc = smb_init(SMB_COM_TRANSACTION2, 15, pTcon, (void **) &pSMB, |
| 2039 | (void **) &pSMBr); |
| 2040 | if (rc) |
| 2041 | return rc; |
| 2042 | |
| 2043 | params = 6; |
| 2044 | pSMB->MaxSetupCount = 0; |
| 2045 | pSMB->Reserved = 0; |
| 2046 | pSMB->Flags = 0; |
| 2047 | pSMB->Timeout = 0; |
| 2048 | pSMB->Reserved2 = 0; |
| 2049 | param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4; |
| 2050 | offset = param_offset + params; |
| 2051 | |
| 2052 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
| 2053 | rename_info = (struct set_file_rename *) data_offset; |
| 2054 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2055 | pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | pSMB->SetupCount = 1; |
| 2057 | pSMB->Reserved3 = 0; |
| 2058 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION); |
| 2059 | byte_count = 3 /* pad */ + params; |
| 2060 | pSMB->ParameterCount = cpu_to_le16(params); |
| 2061 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 2062 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 2063 | pSMB->DataOffset = cpu_to_le16(offset); |
| 2064 | /* construct random name ".cifs_tmp<inodenum><mid>" */ |
| 2065 | rename_info->overwrite = cpu_to_le32(1); |
| 2066 | rename_info->root_fid = 0; |
| 2067 | /* unicode only call */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2068 | if (target_name == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2069 | sprintf(dummy_string, "cifs%x", pSMB->hdr.Mid); |
| 2070 | len_of_str = cifsConvertToUCS((__le16 *)rename_info->target_name, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2071 | dummy_string, 24, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | } else { |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 2073 | len_of_str = cifsConvertToUCS((__le16 *)rename_info->target_name, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2074 | target_name, PATH_MAX, nls_codepage, |
| 2075 | remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | } |
| 2077 | rename_info->target_name_len = cpu_to_le32(2 * len_of_str); |
| 2078 | count = 12 /* sizeof(struct set_file_rename) */ + (2 * len_of_str) + 2; |
| 2079 | byte_count += count; |
| 2080 | pSMB->DataCount = cpu_to_le16(count); |
| 2081 | pSMB->TotalDataCount = pSMB->DataCount; |
| 2082 | pSMB->Fid = netfid; |
| 2083 | pSMB->InformationLevel = |
| 2084 | cpu_to_le16(SMB_SET_FILE_RENAME_INFORMATION); |
| 2085 | pSMB->Reserved4 = 0; |
| 2086 | pSMB->hdr.smb_buf_length += byte_count; |
| 2087 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 2088 | rc = SendReceive(xid, pTcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2089 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2090 | cifs_stats_inc(&pTcon->num_t2renames); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2091 | if (rc) |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2092 | cFYI(1, ("Send error in Rename (by file handle) = %d", rc)); |
Steve French | a5a2b48 | 2005-08-20 21:42:53 -0700 | [diff] [blame] | 2093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | cifs_buf_release(pSMB); |
| 2095 | |
| 2096 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
| 2097 | since file handle passed in no longer valid */ |
| 2098 | |
| 2099 | return rc; |
| 2100 | } |
| 2101 | |
| 2102 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2103 | CIFSSMBCopy(const int xid, struct cifsTconInfo *tcon, const char *fromName, |
| 2104 | const __u16 target_tid, const char *toName, const int flags, |
| 2105 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | { |
| 2107 | int rc = 0; |
| 2108 | COPY_REQ *pSMB = NULL; |
| 2109 | COPY_RSP *pSMBr = NULL; |
| 2110 | int bytes_returned; |
| 2111 | int name_len, name_len2; |
| 2112 | __u16 count; |
| 2113 | |
| 2114 | cFYI(1, ("In CIFSSMBCopy")); |
| 2115 | copyRetry: |
| 2116 | rc = smb_init(SMB_COM_COPY, 1, tcon, (void **) &pSMB, |
| 2117 | (void **) &pSMBr); |
| 2118 | if (rc) |
| 2119 | return rc; |
| 2120 | |
| 2121 | pSMB->BufferFormat = 0x04; |
| 2122 | pSMB->Tid2 = target_tid; |
| 2123 | |
| 2124 | pSMB->Flags = cpu_to_le16(flags & COPY_TREE); |
| 2125 | |
| 2126 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2127 | name_len = cifsConvertToUCS((__le16 *) pSMB->OldFileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2128 | fromName, PATH_MAX, nls_codepage, |
| 2129 | remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | name_len++; /* trailing null */ |
| 2131 | name_len *= 2; |
| 2132 | pSMB->OldFileName[name_len] = 0x04; /* pad */ |
| 2133 | /* protocol requires ASCII signature byte on Unicode string */ |
| 2134 | pSMB->OldFileName[name_len + 1] = 0x00; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2135 | name_len2 = |
| 2136 | cifsConvertToUCS((__le16 *)&pSMB->OldFileName[name_len + 2], |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2137 | toName, PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; |
| 2139 | name_len2 *= 2; /* convert to bytes */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2140 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | name_len = strnlen(fromName, PATH_MAX); |
| 2142 | name_len++; /* trailing null */ |
| 2143 | strncpy(pSMB->OldFileName, fromName, name_len); |
| 2144 | name_len2 = strnlen(toName, PATH_MAX); |
| 2145 | name_len2++; /* trailing null */ |
| 2146 | pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */ |
| 2147 | strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2); |
| 2148 | name_len2++; /* trailing null */ |
| 2149 | name_len2++; /* signature byte */ |
| 2150 | } |
| 2151 | |
| 2152 | count = 1 /* 1st signature byte */ + name_len + name_len2; |
| 2153 | pSMB->hdr.smb_buf_length += count; |
| 2154 | pSMB->ByteCount = cpu_to_le16(count); |
| 2155 | |
| 2156 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2157 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 2158 | if (rc) { |
| 2159 | cFYI(1, ("Send error in copy = %d with %d files copied", |
| 2160 | rc, le16_to_cpu(pSMBr->CopyCount))); |
| 2161 | } |
| 2162 | if (pSMB) |
| 2163 | cifs_buf_release(pSMB); |
| 2164 | |
| 2165 | if (rc == -EAGAIN) |
| 2166 | goto copyRetry; |
| 2167 | |
| 2168 | return rc; |
| 2169 | } |
| 2170 | |
| 2171 | int |
| 2172 | CIFSUnixCreateSymLink(const int xid, struct cifsTconInfo *tcon, |
| 2173 | const char *fromName, const char *toName, |
| 2174 | const struct nls_table *nls_codepage) |
| 2175 | { |
| 2176 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 2177 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 2178 | char *data_offset; |
| 2179 | int name_len; |
| 2180 | int name_len_target; |
| 2181 | int rc = 0; |
| 2182 | int bytes_returned = 0; |
| 2183 | __u16 params, param_offset, offset, byte_count; |
| 2184 | |
| 2185 | cFYI(1, ("In Symlink Unix style")); |
| 2186 | createSymLinkRetry: |
| 2187 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 2188 | (void **) &pSMBr); |
| 2189 | if (rc) |
| 2190 | return rc; |
| 2191 | |
| 2192 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2193 | name_len = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2194 | cifs_strtoUCS((__le16 *) pSMB->FileName, fromName, PATH_MAX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | /* find define for this maxpathcomponent */ |
| 2196 | , nls_codepage); |
| 2197 | name_len++; /* trailing null */ |
| 2198 | name_len *= 2; |
| 2199 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2200 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | name_len = strnlen(fromName, PATH_MAX); |
| 2202 | name_len++; /* trailing null */ |
| 2203 | strncpy(pSMB->FileName, fromName, name_len); |
| 2204 | } |
| 2205 | params = 6 + name_len; |
| 2206 | pSMB->MaxSetupCount = 0; |
| 2207 | pSMB->Reserved = 0; |
| 2208 | pSMB->Flags = 0; |
| 2209 | pSMB->Timeout = 0; |
| 2210 | pSMB->Reserved2 = 0; |
| 2211 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2212 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | offset = param_offset + params; |
| 2214 | |
| 2215 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
| 2216 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2217 | name_len_target = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2218 | cifs_strtoUCS((__le16 *) data_offset, toName, PATH_MAX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | /* find define for this maxpathcomponent */ |
| 2220 | , nls_codepage); |
| 2221 | name_len_target++; /* trailing null */ |
| 2222 | name_len_target *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2223 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | name_len_target = strnlen(toName, PATH_MAX); |
| 2225 | name_len_target++; /* trailing null */ |
| 2226 | strncpy(data_offset, toName, name_len_target); |
| 2227 | } |
| 2228 | |
| 2229 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 2230 | /* BB find exact max on data count below from sess */ |
| 2231 | pSMB->MaxDataCount = cpu_to_le16(1000); |
| 2232 | pSMB->SetupCount = 1; |
| 2233 | pSMB->Reserved3 = 0; |
| 2234 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 2235 | byte_count = 3 /* pad */ + params + name_len_target; |
| 2236 | pSMB->DataCount = cpu_to_le16(name_len_target); |
| 2237 | pSMB->ParameterCount = cpu_to_le16(params); |
| 2238 | pSMB->TotalDataCount = pSMB->DataCount; |
| 2239 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 2240 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 2241 | pSMB->DataOffset = cpu_to_le16(offset); |
| 2242 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_LINK); |
| 2243 | pSMB->Reserved4 = 0; |
| 2244 | pSMB->hdr.smb_buf_length += byte_count; |
| 2245 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 2246 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2247 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2248 | cifs_stats_inc(&tcon->num_symlinks); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2249 | if (rc) |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 2250 | cFYI(1, ("Send error in SetPathInfo create symlink = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | |
| 2252 | if (pSMB) |
| 2253 | cifs_buf_release(pSMB); |
| 2254 | |
| 2255 | if (rc == -EAGAIN) |
| 2256 | goto createSymLinkRetry; |
| 2257 | |
| 2258 | return rc; |
| 2259 | } |
| 2260 | |
| 2261 | int |
| 2262 | CIFSUnixCreateHardLink(const int xid, struct cifsTconInfo *tcon, |
| 2263 | const char *fromName, const char *toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2264 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | { |
| 2266 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 2267 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 2268 | char *data_offset; |
| 2269 | int name_len; |
| 2270 | int name_len_target; |
| 2271 | int rc = 0; |
| 2272 | int bytes_returned = 0; |
| 2273 | __u16 params, param_offset, offset, byte_count; |
| 2274 | |
| 2275 | cFYI(1, ("In Create Hard link Unix style")); |
| 2276 | createHardLinkRetry: |
| 2277 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 2278 | (void **) &pSMBr); |
| 2279 | if (rc) |
| 2280 | return rc; |
| 2281 | |
| 2282 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 2283 | name_len = cifsConvertToUCS((__le16 *) pSMB->FileName, toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2284 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | name_len++; /* trailing null */ |
| 2286 | name_len *= 2; |
| 2287 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2288 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | name_len = strnlen(toName, PATH_MAX); |
| 2290 | name_len++; /* trailing null */ |
| 2291 | strncpy(pSMB->FileName, toName, name_len); |
| 2292 | } |
| 2293 | params = 6 + name_len; |
| 2294 | pSMB->MaxSetupCount = 0; |
| 2295 | pSMB->Reserved = 0; |
| 2296 | pSMB->Flags = 0; |
| 2297 | pSMB->Timeout = 0; |
| 2298 | pSMB->Reserved2 = 0; |
| 2299 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2300 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | offset = param_offset + params; |
| 2302 | |
| 2303 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
| 2304 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2305 | name_len_target = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 2306 | cifsConvertToUCS((__le16 *) data_offset, fromName, PATH_MAX, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2307 | nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | name_len_target++; /* trailing null */ |
| 2309 | name_len_target *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2310 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | name_len_target = strnlen(fromName, PATH_MAX); |
| 2312 | name_len_target++; /* trailing null */ |
| 2313 | strncpy(data_offset, fromName, name_len_target); |
| 2314 | } |
| 2315 | |
| 2316 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 2317 | /* BB find exact max on data count below from sess*/ |
| 2318 | pSMB->MaxDataCount = cpu_to_le16(1000); |
| 2319 | pSMB->SetupCount = 1; |
| 2320 | pSMB->Reserved3 = 0; |
| 2321 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 2322 | byte_count = 3 /* pad */ + params + name_len_target; |
| 2323 | pSMB->ParameterCount = cpu_to_le16(params); |
| 2324 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 2325 | pSMB->DataCount = cpu_to_le16(name_len_target); |
| 2326 | pSMB->TotalDataCount = pSMB->DataCount; |
| 2327 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 2328 | pSMB->DataOffset = cpu_to_le16(offset); |
| 2329 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_HLINK); |
| 2330 | pSMB->Reserved4 = 0; |
| 2331 | pSMB->hdr.smb_buf_length += byte_count; |
| 2332 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 2333 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2334 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2335 | cifs_stats_inc(&tcon->num_hardlinks); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2336 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | cFYI(1, ("Send error in SetPathInfo (hard link) = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2338 | |
| 2339 | cifs_buf_release(pSMB); |
| 2340 | if (rc == -EAGAIN) |
| 2341 | goto createHardLinkRetry; |
| 2342 | |
| 2343 | return rc; |
| 2344 | } |
| 2345 | |
| 2346 | int |
| 2347 | CIFSCreateHardLink(const int xid, struct cifsTconInfo *tcon, |
| 2348 | const char *fromName, const char *toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2349 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | { |
| 2351 | int rc = 0; |
| 2352 | NT_RENAME_REQ *pSMB = NULL; |
| 2353 | RENAME_RSP *pSMBr = NULL; |
| 2354 | int bytes_returned; |
| 2355 | int name_len, name_len2; |
| 2356 | __u16 count; |
| 2357 | |
| 2358 | cFYI(1, ("In CIFSCreateHardLink")); |
| 2359 | winCreateHardLinkRetry: |
| 2360 | |
| 2361 | rc = smb_init(SMB_COM_NT_RENAME, 4, tcon, (void **) &pSMB, |
| 2362 | (void **) &pSMBr); |
| 2363 | if (rc) |
| 2364 | return rc; |
| 2365 | |
| 2366 | pSMB->SearchAttributes = |
| 2367 | cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM | |
| 2368 | ATTR_DIRECTORY); |
| 2369 | pSMB->Flags = cpu_to_le16(CREATE_HARD_LINK); |
| 2370 | pSMB->ClusterCount = 0; |
| 2371 | |
| 2372 | pSMB->BufferFormat = 0x04; |
| 2373 | |
| 2374 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2375 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 2376 | cifsConvertToUCS((__le16 *) pSMB->OldFileName, fromName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2377 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | name_len++; /* trailing null */ |
| 2379 | name_len *= 2; |
| 2380 | pSMB->OldFileName[name_len] = 0; /* pad */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2381 | pSMB->OldFileName[name_len + 1] = 0x04; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | name_len2 = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2383 | cifsConvertToUCS((__le16 *)&pSMB->OldFileName[name_len + 2], |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2384 | toName, PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; |
| 2386 | name_len2 *= 2; /* convert to bytes */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2387 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | name_len = strnlen(fromName, PATH_MAX); |
| 2389 | name_len++; /* trailing null */ |
| 2390 | strncpy(pSMB->OldFileName, fromName, name_len); |
| 2391 | name_len2 = strnlen(toName, PATH_MAX); |
| 2392 | name_len2++; /* trailing null */ |
| 2393 | pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */ |
| 2394 | strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2); |
| 2395 | name_len2++; /* trailing null */ |
| 2396 | name_len2++; /* signature byte */ |
| 2397 | } |
| 2398 | |
| 2399 | count = 1 /* string type byte */ + name_len + name_len2; |
| 2400 | pSMB->hdr.smb_buf_length += count; |
| 2401 | pSMB->ByteCount = cpu_to_le16(count); |
| 2402 | |
| 2403 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2404 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2405 | cifs_stats_inc(&tcon->num_hardlinks); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2406 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | cFYI(1, ("Send error in hard link (NT rename) = %d", rc)); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | cifs_buf_release(pSMB); |
| 2410 | if (rc == -EAGAIN) |
| 2411 | goto winCreateHardLinkRetry; |
| 2412 | |
| 2413 | return rc; |
| 2414 | } |
| 2415 | |
| 2416 | int |
| 2417 | CIFSSMBUnixQuerySymLink(const int xid, struct cifsTconInfo *tcon, |
| 2418 | const unsigned char *searchName, |
| 2419 | char *symlinkinfo, const int buflen, |
| 2420 | const struct nls_table *nls_codepage) |
| 2421 | { |
| 2422 | /* SMB_QUERY_FILE_UNIX_LINK */ |
| 2423 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 2424 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 2425 | int rc = 0; |
| 2426 | int bytes_returned; |
| 2427 | int name_len; |
| 2428 | __u16 params, byte_count; |
| 2429 | |
| 2430 | cFYI(1, ("In QPathSymLinkInfo (Unix) for path %s", searchName)); |
| 2431 | |
| 2432 | querySymLinkRetry: |
| 2433 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 2434 | (void **) &pSMBr); |
| 2435 | if (rc) |
| 2436 | return rc; |
| 2437 | |
| 2438 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2439 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2440 | cifs_strtoUCS((__le16 *) pSMB->FileName, searchName, |
| 2441 | PATH_MAX, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | name_len++; /* trailing null */ |
| 2443 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2444 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | name_len = strnlen(searchName, PATH_MAX); |
| 2446 | name_len++; /* trailing null */ |
| 2447 | strncpy(pSMB->FileName, searchName, name_len); |
| 2448 | } |
| 2449 | |
| 2450 | params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; |
| 2451 | pSMB->TotalDataCount = 0; |
| 2452 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 2453 | /* BB find exact max data count below from sess structure BB */ |
| 2454 | pSMB->MaxDataCount = cpu_to_le16(4000); |
| 2455 | pSMB->MaxSetupCount = 0; |
| 2456 | pSMB->Reserved = 0; |
| 2457 | pSMB->Flags = 0; |
| 2458 | pSMB->Timeout = 0; |
| 2459 | pSMB->Reserved2 = 0; |
| 2460 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2461 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | pSMB->DataCount = 0; |
| 2463 | pSMB->DataOffset = 0; |
| 2464 | pSMB->SetupCount = 1; |
| 2465 | pSMB->Reserved3 = 0; |
| 2466 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 2467 | byte_count = params + 1 /* pad */ ; |
| 2468 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 2469 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 2470 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_LINK); |
| 2471 | pSMB->Reserved4 = 0; |
| 2472 | pSMB->hdr.smb_buf_length += byte_count; |
| 2473 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 2474 | |
| 2475 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2476 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 2477 | if (rc) { |
| 2478 | cFYI(1, ("Send error in QuerySymLinkInfo = %d", rc)); |
| 2479 | } else { |
| 2480 | /* decode response */ |
| 2481 | |
| 2482 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 2483 | if (rc || (pSMBr->ByteCount < 2)) |
| 2484 | /* BB also check enough total bytes returned */ |
| 2485 | rc = -EIO; /* bad smb */ |
| 2486 | else { |
| 2487 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 2488 | __u16 count = le16_to_cpu(pSMBr->t2.DataCount); |
| 2489 | |
| 2490 | if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2491 | name_len = UniStrnlen((wchar_t *) ((char *) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2492 | &pSMBr->hdr.Protocol + data_offset), |
| 2493 | min_t(const int, buflen, count) / 2); |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2494 | /* BB FIXME investigate remapping reserved chars here */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | cifs_strfromUCS_le(symlinkinfo, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2496 | (__le16 *) ((char *)&pSMBr->hdr.Protocol |
| 2497 | + data_offset), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | name_len, nls_codepage); |
| 2499 | } else { |
| 2500 | strncpy(symlinkinfo, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2501 | (char *) &pSMBr->hdr.Protocol + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2502 | data_offset, |
| 2503 | min_t(const int, buflen, count)); |
| 2504 | } |
| 2505 | symlinkinfo[buflen] = 0; |
| 2506 | /* just in case so calling code does not go off the end of buffer */ |
| 2507 | } |
| 2508 | } |
| 2509 | cifs_buf_release(pSMB); |
| 2510 | if (rc == -EAGAIN) |
| 2511 | goto querySymLinkRetry; |
| 2512 | return rc; |
| 2513 | } |
| 2514 | |
Parag Warudkar | c948977 | 2007-10-23 18:09:48 +0000 | [diff] [blame] | 2515 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2516 | /* Initialize NT TRANSACT SMB into small smb request buffer. |
| 2517 | This assumes that all NT TRANSACTS that we init here have |
| 2518 | total parm and data under about 400 bytes (to fit in small cifs |
| 2519 | buffer size), which is the case so far, it easily fits. NB: |
| 2520 | Setup words themselves and ByteCount |
| 2521 | MaxSetupCount (size of returned setup area) and |
| 2522 | MaxParameterCount (returned parms size) must be set by caller */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2523 | static int |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 2524 | smb_init_nttransact(const __u16 sub_command, const int setup_count, |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2525 | const int parm_len, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2526 | void **ret_buf) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2527 | { |
| 2528 | int rc; |
| 2529 | __u32 temp_offset; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2530 | struct smb_com_ntransact_req *pSMB; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2531 | |
| 2532 | rc = small_smb_init(SMB_COM_NT_TRANSACT, 19 + setup_count, tcon, |
| 2533 | (void **)&pSMB); |
| 2534 | if (rc) |
| 2535 | return rc; |
| 2536 | *ret_buf = (void *)pSMB; |
| 2537 | pSMB->Reserved = 0; |
| 2538 | pSMB->TotalParameterCount = cpu_to_le32(parm_len); |
| 2539 | pSMB->TotalDataCount = 0; |
| 2540 | pSMB->MaxDataCount = cpu_to_le32((tcon->ses->server->maxBuf - |
| 2541 | MAX_CIFS_HDR_SIZE) & 0xFFFFFF00); |
| 2542 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 2543 | pSMB->DataCount = pSMB->TotalDataCount; |
| 2544 | temp_offset = offsetof(struct smb_com_ntransact_req, Parms) + |
| 2545 | (setup_count * 2) - 4 /* for rfc1001 length itself */; |
| 2546 | pSMB->ParameterOffset = cpu_to_le32(temp_offset); |
| 2547 | pSMB->DataOffset = cpu_to_le32(temp_offset + parm_len); |
| 2548 | pSMB->SetupCount = setup_count; /* no need to le convert byte fields */ |
| 2549 | pSMB->SubCommand = cpu_to_le16(sub_command); |
| 2550 | return 0; |
| 2551 | } |
| 2552 | |
| 2553 | static int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2554 | validate_ntransact(char *buf, char **ppparm, char **ppdata, |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 2555 | __u32 *pparmlen, __u32 *pdatalen) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2556 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2557 | char *end_of_smb; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2558 | __u32 data_count, data_offset, parm_count, parm_offset; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2559 | struct smb_com_ntransact_rsp *pSMBr; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2560 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 2561 | *pdatalen = 0; |
| 2562 | *pparmlen = 0; |
| 2563 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2564 | if (buf == NULL) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2565 | return -EINVAL; |
| 2566 | |
| 2567 | pSMBr = (struct smb_com_ntransact_rsp *)buf; |
| 2568 | |
| 2569 | /* ByteCount was converted from little endian in SendReceive */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2570 | end_of_smb = 2 /* sizeof byte count */ + pSMBr->ByteCount + |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2571 | (char *)&pSMBr->ByteCount; |
| 2572 | |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2573 | data_offset = le32_to_cpu(pSMBr->DataOffset); |
| 2574 | data_count = le32_to_cpu(pSMBr->DataCount); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2575 | parm_offset = le32_to_cpu(pSMBr->ParameterOffset); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2576 | parm_count = le32_to_cpu(pSMBr->ParameterCount); |
| 2577 | |
| 2578 | *ppparm = (char *)&pSMBr->hdr.Protocol + parm_offset; |
| 2579 | *ppdata = (char *)&pSMBr->hdr.Protocol + data_offset; |
| 2580 | |
| 2581 | /* should we also check that parm and data areas do not overlap? */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2582 | if (*ppparm > end_of_smb) { |
| 2583 | cFYI(1, ("parms start after end of smb")); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2584 | return -EINVAL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2585 | } else if (parm_count + *ppparm > end_of_smb) { |
| 2586 | cFYI(1, ("parm end after end of smb")); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2587 | return -EINVAL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2588 | } else if (*ppdata > end_of_smb) { |
| 2589 | cFYI(1, ("data starts after end of smb")); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2590 | return -EINVAL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2591 | } else if (data_count + *ppdata > end_of_smb) { |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 2592 | cFYI(1, ("data %p + count %d (%p) ends after end of smb %p start %p", |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2593 | *ppdata, data_count, (data_count + *ppdata), |
| 2594 | end_of_smb, pSMBr)); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2595 | return -EINVAL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2596 | } else if (parm_count + data_count > pSMBr->ByteCount) { |
| 2597 | cFYI(1, ("parm count and data count larger than SMB")); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2598 | return -EINVAL; |
| 2599 | } |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 2600 | *pdatalen = data_count; |
| 2601 | *pparmlen = parm_count; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2602 | return 0; |
| 2603 | } |
Parag Warudkar | c948977 | 2007-10-23 18:09:48 +0000 | [diff] [blame] | 2604 | #endif /* CIFS_EXPERIMENTAL */ |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | int |
| 2607 | CIFSSMBQueryReparseLinkInfo(const int xid, struct cifsTconInfo *tcon, |
| 2608 | const unsigned char *searchName, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2609 | char *symlinkinfo, const int buflen, __u16 fid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | const struct nls_table *nls_codepage) |
| 2611 | { |
| 2612 | int rc = 0; |
| 2613 | int bytes_returned; |
| 2614 | int name_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2615 | struct smb_com_transaction_ioctl_req *pSMB; |
| 2616 | struct smb_com_transaction_ioctl_rsp *pSMBr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | |
| 2618 | cFYI(1, ("In Windows reparse style QueryLink for path %s", searchName)); |
| 2619 | rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB, |
| 2620 | (void **) &pSMBr); |
| 2621 | if (rc) |
| 2622 | return rc; |
| 2623 | |
| 2624 | pSMB->TotalParameterCount = 0 ; |
| 2625 | pSMB->TotalDataCount = 0; |
| 2626 | pSMB->MaxParameterCount = cpu_to_le32(2); |
| 2627 | /* BB find exact data count max from sess structure BB */ |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2628 | pSMB->MaxDataCount = cpu_to_le32((tcon->ses->server->maxBuf - |
| 2629 | MAX_CIFS_HDR_SIZE) & 0xFFFFFF00); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | pSMB->MaxSetupCount = 4; |
| 2631 | pSMB->Reserved = 0; |
| 2632 | pSMB->ParameterOffset = 0; |
| 2633 | pSMB->DataCount = 0; |
| 2634 | pSMB->DataOffset = 0; |
| 2635 | pSMB->SetupCount = 4; |
| 2636 | pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_IOCTL); |
| 2637 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 2638 | pSMB->FunctionCode = cpu_to_le32(FSCTL_GET_REPARSE_POINT); |
| 2639 | pSMB->IsFsctl = 1; /* FSCTL */ |
| 2640 | pSMB->IsRootFlag = 0; |
| 2641 | pSMB->Fid = fid; /* file handle always le */ |
| 2642 | pSMB->ByteCount = 0; |
| 2643 | |
| 2644 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2645 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 2646 | if (rc) { |
| 2647 | cFYI(1, ("Send error in QueryReparseLinkInfo = %d", rc)); |
| 2648 | } else { /* decode response */ |
| 2649 | __u32 data_offset = le32_to_cpu(pSMBr->DataOffset); |
| 2650 | __u32 data_count = le32_to_cpu(pSMBr->DataCount); |
| 2651 | if ((pSMBr->ByteCount < 2) || (data_offset > 512)) |
| 2652 | /* BB also check enough total bytes returned */ |
| 2653 | rc = -EIO; /* bad smb */ |
| 2654 | else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2655 | if (data_count && (data_count < 2048)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2656 | char *end_of_smb = 2 /* sizeof byte count */ + |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2657 | pSMBr->ByteCount + |
| 2658 | (char *)&pSMBr->ByteCount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2660 | struct reparse_data *reparse_buf = |
| 2661 | (struct reparse_data *) |
| 2662 | ((char *)&pSMBr->hdr.Protocol |
| 2663 | + data_offset); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2664 | if ((char *)reparse_buf >= end_of_smb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | rc = -EIO; |
| 2666 | goto qreparse_out; |
| 2667 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2668 | if ((reparse_buf->LinkNamesBuf + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | reparse_buf->TargetNameOffset + |
| 2670 | reparse_buf->TargetNameLen) > |
| 2671 | end_of_smb) { |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 2672 | cFYI(1, ("reparse buf beyond SMB")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | rc = -EIO; |
| 2674 | goto qreparse_out; |
| 2675 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2676 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2678 | name_len = UniStrnlen((wchar_t *) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2679 | (reparse_buf->LinkNamesBuf + |
| 2680 | reparse_buf->TargetNameOffset), |
| 2681 | min(buflen/2, |
| 2682 | reparse_buf->TargetNameLen / 2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | cifs_strfromUCS_le(symlinkinfo, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2684 | (__le16 *) (reparse_buf->LinkNamesBuf + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | reparse_buf->TargetNameOffset), |
| 2686 | name_len, nls_codepage); |
| 2687 | } else { /* ASCII names */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2688 | strncpy(symlinkinfo, |
| 2689 | reparse_buf->LinkNamesBuf + |
| 2690 | reparse_buf->TargetNameOffset, |
| 2691 | min_t(const int, buflen, |
| 2692 | reparse_buf->TargetNameLen)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | } |
| 2694 | } else { |
| 2695 | rc = -EIO; |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 2696 | cFYI(1, ("Invalid return data count on " |
| 2697 | "get reparse info ioctl")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | } |
| 2699 | symlinkinfo[buflen] = 0; /* just in case so the caller |
| 2700 | does not go off the end of the buffer */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2701 | cFYI(1, ("readlink result - %s", symlinkinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | } |
| 2703 | } |
| 2704 | qreparse_out: |
Steve French | 4a6d87f | 2005-08-13 08:15:54 -0700 | [diff] [blame] | 2705 | cifs_buf_release(pSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | |
| 2707 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
| 2708 | since file handle passed in no longer valid */ |
| 2709 | |
| 2710 | return rc; |
| 2711 | } |
| 2712 | |
| 2713 | #ifdef CONFIG_CIFS_POSIX |
| 2714 | |
| 2715 | /*Convert an Access Control Entry from wire format to local POSIX xattr format*/ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2716 | static void cifs_convert_ace(posix_acl_xattr_entry *ace, |
| 2717 | struct cifs_posix_ace *cifs_ace) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | { |
| 2719 | /* u8 cifs fields do not need le conversion */ |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2720 | ace->e_perm = cpu_to_le16(cifs_ace->cifs_e_perm); |
| 2721 | ace->e_tag = cpu_to_le16(cifs_ace->cifs_e_tag); |
| 2722 | ace->e_id = cpu_to_le32(le64_to_cpu(cifs_ace->cifs_uid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | /* cFYI(1,("perm %d tag %d id %d",ace->e_perm,ace->e_tag,ace->e_id)); */ |
| 2724 | |
| 2725 | return; |
| 2726 | } |
| 2727 | |
| 2728 | /* Convert ACL from CIFS POSIX wire format to local Linux POSIX ACL xattr */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2729 | static int cifs_copy_posix_acl(char *trgt, char *src, const int buflen, |
| 2730 | const int acl_type, const int size_of_data_area) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | { |
| 2732 | int size = 0; |
| 2733 | int i; |
| 2734 | __u16 count; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2735 | struct cifs_posix_ace *pACE; |
| 2736 | struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)src; |
| 2737 | posix_acl_xattr_header *local_acl = (posix_acl_xattr_header *)trgt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | |
| 2739 | if (le16_to_cpu(cifs_acl->version) != CIFS_ACL_VERSION) |
| 2740 | return -EOPNOTSUPP; |
| 2741 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2742 | if (acl_type & ACL_TYPE_ACCESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | count = le16_to_cpu(cifs_acl->access_entry_count); |
| 2744 | pACE = &cifs_acl->ace_array[0]; |
| 2745 | size = sizeof(struct cifs_posix_acl); |
| 2746 | size += sizeof(struct cifs_posix_ace) * count; |
| 2747 | /* check if we would go beyond end of SMB */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2748 | if (size_of_data_area < size) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2749 | cFYI(1, ("bad CIFS POSIX ACL size %d vs. %d", |
| 2750 | size_of_data_area, size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | return -EINVAL; |
| 2752 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2753 | } else if (acl_type & ACL_TYPE_DEFAULT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | count = le16_to_cpu(cifs_acl->access_entry_count); |
| 2755 | size = sizeof(struct cifs_posix_acl); |
| 2756 | size += sizeof(struct cifs_posix_ace) * count; |
| 2757 | /* skip past access ACEs to get to default ACEs */ |
| 2758 | pACE = &cifs_acl->ace_array[count]; |
| 2759 | count = le16_to_cpu(cifs_acl->default_entry_count); |
| 2760 | size += sizeof(struct cifs_posix_ace) * count; |
| 2761 | /* check if we would go beyond end of SMB */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2762 | if (size_of_data_area < size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | return -EINVAL; |
| 2764 | } else { |
| 2765 | /* illegal type */ |
| 2766 | return -EINVAL; |
| 2767 | } |
| 2768 | |
| 2769 | size = posix_acl_xattr_size(count); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2770 | if ((buflen == 0) || (local_acl == NULL)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2771 | /* used to query ACL EA size */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2772 | } else if (size > buflen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | return -ERANGE; |
| 2774 | } else /* buffer big enough */ { |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2775 | local_acl->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2776 | for (i = 0; i < count ; i++) { |
| 2777 | cifs_convert_ace(&local_acl->a_entries[i], pACE); |
| 2778 | pACE++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | } |
| 2780 | } |
| 2781 | return size; |
| 2782 | } |
| 2783 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2784 | static __u16 convert_ace_to_cifs_ace(struct cifs_posix_ace *cifs_ace, |
| 2785 | const posix_acl_xattr_entry *local_ace) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2786 | { |
| 2787 | __u16 rc = 0; /* 0 = ACL converted ok */ |
| 2788 | |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2789 | cifs_ace->cifs_e_perm = le16_to_cpu(local_ace->e_perm); |
| 2790 | cifs_ace->cifs_e_tag = le16_to_cpu(local_ace->e_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | /* BB is there a better way to handle the large uid? */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2792 | if (local_ace->e_id == cpu_to_le32(-1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | /* Probably no need to le convert -1 on any arch but can not hurt */ |
| 2794 | cifs_ace->cifs_uid = cpu_to_le64(-1); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2795 | } else |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2796 | cifs_ace->cifs_uid = cpu_to_le64(le32_to_cpu(local_ace->e_id)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2797 | /*cFYI(1,("perm %d tag %d id %d",ace->e_perm,ace->e_tag,ace->e_id));*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | return rc; |
| 2799 | } |
| 2800 | |
| 2801 | /* Convert ACL from local Linux POSIX xattr to CIFS POSIX ACL wire format */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2802 | static __u16 ACL_to_cifs_posix(char *parm_data, const char *pACL, |
| 2803 | const int buflen, const int acl_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | { |
| 2805 | __u16 rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2806 | struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)parm_data; |
| 2807 | posix_acl_xattr_header *local_acl = (posix_acl_xattr_header *)pACL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | int count; |
| 2809 | int i; |
| 2810 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2811 | if ((buflen == 0) || (pACL == NULL) || (cifs_acl == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | return 0; |
| 2813 | |
| 2814 | count = posix_acl_xattr_count((size_t)buflen); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 2815 | cFYI(1, ("setting acl with %d entries from buf of length %d and " |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 2816 | "version of %d", |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2817 | count, buflen, le32_to_cpu(local_acl->a_version))); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2818 | if (le32_to_cpu(local_acl->a_version) != 2) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2819 | cFYI(1, ("unknown POSIX ACL version %d", |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2820 | le32_to_cpu(local_acl->a_version))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | return 0; |
| 2822 | } |
| 2823 | cifs_acl->version = cpu_to_le16(1); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2824 | if (acl_type == ACL_TYPE_ACCESS) |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2825 | cifs_acl->access_entry_count = cpu_to_le16(count); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2826 | else if (acl_type == ACL_TYPE_DEFAULT) |
Steve French | ff7feac | 2005-11-15 16:45:16 -0800 | [diff] [blame] | 2827 | cifs_acl->default_entry_count = cpu_to_le16(count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2828 | else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2829 | cFYI(1, ("unknown ACL type %d", acl_type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | return 0; |
| 2831 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2832 | for (i = 0; i < count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | rc = convert_ace_to_cifs_ace(&cifs_acl->ace_array[i], |
| 2834 | &local_acl->a_entries[i]); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2835 | if (rc != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | /* ACE not converted */ |
| 2837 | break; |
| 2838 | } |
| 2839 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2840 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | rc = (__u16)(count * sizeof(struct cifs_posix_ace)); |
| 2842 | rc += sizeof(struct cifs_posix_acl); |
| 2843 | /* BB add check to make sure ACL does not overflow SMB */ |
| 2844 | } |
| 2845 | return rc; |
| 2846 | } |
| 2847 | |
| 2848 | int |
| 2849 | CIFSSMBGetPosixACL(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2850 | const unsigned char *searchName, |
| 2851 | char *acl_inf, const int buflen, const int acl_type, |
| 2852 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | { |
| 2854 | /* SMB_QUERY_POSIX_ACL */ |
| 2855 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 2856 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 2857 | int rc = 0; |
| 2858 | int bytes_returned; |
| 2859 | int name_len; |
| 2860 | __u16 params, byte_count; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | cFYI(1, ("In GetPosixACL (Unix) for path %s", searchName)); |
| 2863 | |
| 2864 | queryAclRetry: |
| 2865 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 2866 | (void **) &pSMBr); |
| 2867 | if (rc) |
| 2868 | return rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2871 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2872 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2873 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2874 | name_len++; /* trailing null */ |
| 2875 | name_len *= 2; |
| 2876 | pSMB->FileName[name_len] = 0; |
| 2877 | pSMB->FileName[name_len+1] = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2878 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | name_len = strnlen(searchName, PATH_MAX); |
| 2880 | name_len++; /* trailing null */ |
| 2881 | strncpy(pSMB->FileName, searchName, name_len); |
| 2882 | } |
| 2883 | |
| 2884 | params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; |
| 2885 | pSMB->TotalDataCount = 0; |
| 2886 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2887 | /* BB find exact max data count below from sess structure BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | pSMB->MaxDataCount = cpu_to_le16(4000); |
| 2889 | pSMB->MaxSetupCount = 0; |
| 2890 | pSMB->Reserved = 0; |
| 2891 | pSMB->Flags = 0; |
| 2892 | pSMB->Timeout = 0; |
| 2893 | pSMB->Reserved2 = 0; |
| 2894 | pSMB->ParameterOffset = cpu_to_le16( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2895 | offsetof(struct smb_com_transaction2_qpi_req, |
| 2896 | InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | pSMB->DataCount = 0; |
| 2898 | pSMB->DataOffset = 0; |
| 2899 | pSMB->SetupCount = 1; |
| 2900 | pSMB->Reserved3 = 0; |
| 2901 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 2902 | byte_count = params + 1 /* pad */ ; |
| 2903 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 2904 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 2905 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_ACL); |
| 2906 | pSMB->Reserved4 = 0; |
| 2907 | pSMB->hdr.smb_buf_length += byte_count; |
| 2908 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 2909 | |
| 2910 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 2911 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 2912 | cifs_stats_inc(&tcon->num_acl_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | if (rc) { |
| 2914 | cFYI(1, ("Send error in Query POSIX ACL = %d", rc)); |
| 2915 | } else { |
| 2916 | /* decode response */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 2919 | if (rc || (pSMBr->ByteCount < 2)) |
| 2920 | /* BB also check enough total bytes returned */ |
| 2921 | rc = -EIO; /* bad smb */ |
| 2922 | else { |
| 2923 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 2924 | __u16 count = le16_to_cpu(pSMBr->t2.DataCount); |
| 2925 | rc = cifs_copy_posix_acl(acl_inf, |
| 2926 | (char *)&pSMBr->hdr.Protocol+data_offset, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2927 | buflen, acl_type, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | } |
| 2929 | } |
| 2930 | cifs_buf_release(pSMB); |
| 2931 | if (rc == -EAGAIN) |
| 2932 | goto queryAclRetry; |
| 2933 | return rc; |
| 2934 | } |
| 2935 | |
| 2936 | int |
| 2937 | CIFSSMBSetPosixACL(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2938 | const unsigned char *fileName, |
| 2939 | const char *local_acl, const int buflen, |
| 2940 | const int acl_type, |
| 2941 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | { |
| 2943 | struct smb_com_transaction2_spi_req *pSMB = NULL; |
| 2944 | struct smb_com_transaction2_spi_rsp *pSMBr = NULL; |
| 2945 | char *parm_data; |
| 2946 | int name_len; |
| 2947 | int rc = 0; |
| 2948 | int bytes_returned = 0; |
| 2949 | __u16 params, byte_count, data_count, param_offset, offset; |
| 2950 | |
| 2951 | cFYI(1, ("In SetPosixACL (Unix) for path %s", fileName)); |
| 2952 | setAclRetry: |
| 2953 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2954 | (void **) &pSMBr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | if (rc) |
| 2956 | return rc; |
| 2957 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 2958 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2959 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 2960 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | name_len++; /* trailing null */ |
| 2962 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2963 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | name_len = strnlen(fileName, PATH_MAX); |
| 2965 | name_len++; /* trailing null */ |
| 2966 | strncpy(pSMB->FileName, fileName, name_len); |
| 2967 | } |
| 2968 | params = 6 + name_len; |
| 2969 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 2970 | /* BB find max SMB size from sess */ |
| 2971 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | pSMB->MaxSetupCount = 0; |
| 2973 | pSMB->Reserved = 0; |
| 2974 | pSMB->Flags = 0; |
| 2975 | pSMB->Timeout = 0; |
| 2976 | pSMB->Reserved2 = 0; |
| 2977 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2978 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | offset = param_offset + params; |
| 2980 | parm_data = ((char *) &pSMB->hdr.Protocol) + offset; |
| 2981 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 2982 | |
| 2983 | /* convert to on the wire format for POSIX ACL */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2984 | data_count = ACL_to_cifs_posix(parm_data, local_acl, buflen, acl_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 2986 | if (data_count == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | rc = -EOPNOTSUPP; |
| 2988 | goto setACLerrorExit; |
| 2989 | } |
| 2990 | pSMB->DataOffset = cpu_to_le16(offset); |
| 2991 | pSMB->SetupCount = 1; |
| 2992 | pSMB->Reserved3 = 0; |
| 2993 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 2994 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_ACL); |
| 2995 | byte_count = 3 /* pad */ + params + data_count; |
| 2996 | pSMB->DataCount = cpu_to_le16(data_count); |
| 2997 | pSMB->TotalDataCount = pSMB->DataCount; |
| 2998 | pSMB->ParameterCount = cpu_to_le16(params); |
| 2999 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 3000 | pSMB->Reserved4 = 0; |
| 3001 | pSMB->hdr.smb_buf_length += byte_count; |
| 3002 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 3003 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3004 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3005 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | cFYI(1, ("Set POSIX ACL returned %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3007 | |
| 3008 | setACLerrorExit: |
| 3009 | cifs_buf_release(pSMB); |
| 3010 | if (rc == -EAGAIN) |
| 3011 | goto setAclRetry; |
| 3012 | return rc; |
| 3013 | } |
| 3014 | |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3015 | /* BB fix tabs in this function FIXME BB */ |
| 3016 | int |
| 3017 | CIFSGetExtAttr(const int xid, struct cifsTconInfo *tcon, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3018 | const int netfid, __u64 *pExtAttrBits, __u64 *pMask) |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3019 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3020 | int rc = 0; |
| 3021 | struct smb_t2_qfi_req *pSMB = NULL; |
| 3022 | struct smb_t2_qfi_rsp *pSMBr = NULL; |
| 3023 | int bytes_returned; |
| 3024 | __u16 params, byte_count; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3025 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3026 | cFYI(1, ("In GetExtAttr")); |
| 3027 | if (tcon == NULL) |
| 3028 | return -ENODEV; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3029 | |
| 3030 | GetExtAttrRetry: |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3031 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 3032 | (void **) &pSMBr); |
| 3033 | if (rc) |
| 3034 | return rc; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3035 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3036 | params = 2 /* level */ + 2 /* fid */; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3037 | pSMB->t2.TotalDataCount = 0; |
| 3038 | pSMB->t2.MaxParameterCount = cpu_to_le16(4); |
| 3039 | /* BB find exact max data count below from sess structure BB */ |
| 3040 | pSMB->t2.MaxDataCount = cpu_to_le16(4000); |
| 3041 | pSMB->t2.MaxSetupCount = 0; |
| 3042 | pSMB->t2.Reserved = 0; |
| 3043 | pSMB->t2.Flags = 0; |
| 3044 | pSMB->t2.Timeout = 0; |
| 3045 | pSMB->t2.Reserved2 = 0; |
| 3046 | pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req, |
| 3047 | Fid) - 4); |
| 3048 | pSMB->t2.DataCount = 0; |
| 3049 | pSMB->t2.DataOffset = 0; |
| 3050 | pSMB->t2.SetupCount = 1; |
| 3051 | pSMB->t2.Reserved3 = 0; |
| 3052 | pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION); |
| 3053 | byte_count = params + 1 /* pad */ ; |
| 3054 | pSMB->t2.TotalParameterCount = cpu_to_le16(params); |
| 3055 | pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount; |
| 3056 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_ATTR_FLAGS); |
| 3057 | pSMB->Pad = 0; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3058 | pSMB->Fid = netfid; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3059 | pSMB->hdr.smb_buf_length += byte_count; |
| 3060 | pSMB->t2.ByteCount = cpu_to_le16(byte_count); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3061 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3062 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3063 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 3064 | if (rc) { |
| 3065 | cFYI(1, ("error %d in GetExtAttr", rc)); |
| 3066 | } else { |
| 3067 | /* decode response */ |
| 3068 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 3069 | if (rc || (pSMBr->ByteCount < 2)) |
| 3070 | /* BB also check enough total bytes returned */ |
| 3071 | /* If rc should we check for EOPNOSUPP and |
| 3072 | disable the srvino flag? or in caller? */ |
| 3073 | rc = -EIO; /* bad smb */ |
| 3074 | else { |
| 3075 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 3076 | __u16 count = le16_to_cpu(pSMBr->t2.DataCount); |
| 3077 | struct file_chattr_info *pfinfo; |
| 3078 | /* BB Do we need a cast or hash here ? */ |
| 3079 | if (count != 16) { |
| 3080 | cFYI(1, ("Illegal size ret in GetExtAttr")); |
| 3081 | rc = -EIO; |
| 3082 | goto GetExtAttrOut; |
| 3083 | } |
| 3084 | pfinfo = (struct file_chattr_info *) |
| 3085 | (data_offset + (char *) &pSMBr->hdr.Protocol); |
| 3086 | *pExtAttrBits = le64_to_cpu(pfinfo->mode); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3087 | *pMask = le64_to_cpu(pfinfo->mask); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3088 | } |
| 3089 | } |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3090 | GetExtAttrOut: |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3091 | cifs_buf_release(pSMB); |
| 3092 | if (rc == -EAGAIN) |
| 3093 | goto GetExtAttrRetry; |
| 3094 | return rc; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3095 | } |
| 3096 | |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 3097 | #endif /* CONFIG_POSIX */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 3099 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3100 | /* Get Security Descriptor (by handle) from remote server for a file or dir */ |
| 3101 | int |
| 3102 | CIFSSMBGetCIFSACL(const int xid, struct cifsTconInfo *tcon, __u16 fid, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3103 | struct cifs_ntsd **acl_inf, __u32 *pbuflen) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3104 | { |
| 3105 | int rc = 0; |
| 3106 | int buf_type = 0; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3107 | QUERY_SEC_DESC_REQ *pSMB; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3108 | struct kvec iov[1]; |
| 3109 | |
| 3110 | cFYI(1, ("GetCifsACL")); |
| 3111 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3112 | *pbuflen = 0; |
| 3113 | *acl_inf = NULL; |
| 3114 | |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 3115 | rc = smb_init_nttransact(NT_TRANSACT_QUERY_SECURITY_DESC, 0, |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3116 | 8 /* parm len */, tcon, (void **) &pSMB); |
| 3117 | if (rc) |
| 3118 | return rc; |
| 3119 | |
| 3120 | pSMB->MaxParameterCount = cpu_to_le32(4); |
| 3121 | /* BB TEST with big acls that might need to be e.g. larger than 16K */ |
| 3122 | pSMB->MaxSetupCount = 0; |
| 3123 | pSMB->Fid = fid; /* file handle always le */ |
| 3124 | pSMB->AclFlags = cpu_to_le32(CIFS_ACL_OWNER | CIFS_ACL_GROUP | |
| 3125 | CIFS_ACL_DACL); |
| 3126 | pSMB->ByteCount = cpu_to_le16(11); /* 3 bytes pad + 8 bytes parm */ |
| 3127 | pSMB->hdr.smb_buf_length += 11; |
| 3128 | iov[0].iov_base = (char *)pSMB; |
| 3129 | iov[0].iov_len = pSMB->hdr.smb_buf_length + 4; |
| 3130 | |
Steve French | a761ac5 | 2007-10-18 21:45:27 +0000 | [diff] [blame] | 3131 | rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovec */, &buf_type, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 3132 | CIFS_STD_OP); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3133 | cifs_stats_inc(&tcon->num_acl_get); |
| 3134 | if (rc) { |
| 3135 | cFYI(1, ("Send error in QuerySecDesc = %d", rc)); |
| 3136 | } else { /* decode response */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3137 | __le32 *parm; |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3138 | __u32 parm_len; |
| 3139 | __u32 acl_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3140 | struct smb_com_ntransact_rsp *pSMBr; |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3141 | char *pdata; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3142 | |
| 3143 | /* validate_nttransact */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3144 | rc = validate_ntransact(iov[0].iov_base, (char **)&parm, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3145 | &pdata, &parm_len, pbuflen); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3146 | if (rc) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3147 | goto qsec_out; |
| 3148 | pSMBr = (struct smb_com_ntransact_rsp *)iov[0].iov_base; |
| 3149 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3150 | cFYI(1, ("smb %p parm %p data %p", pSMBr, parm, *acl_inf)); |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3151 | |
| 3152 | if (le32_to_cpu(pSMBr->ParameterCount) != 4) { |
| 3153 | rc = -EIO; /* bad smb */ |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3154 | *pbuflen = 0; |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3155 | goto qsec_out; |
| 3156 | } |
| 3157 | |
| 3158 | /* BB check that data area is minimum length and as big as acl_len */ |
| 3159 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 3160 | acl_len = le32_to_cpu(*parm); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3161 | if (acl_len != *pbuflen) { |
| 3162 | cERROR(1, ("acl length %d does not match %d", |
| 3163 | acl_len, *pbuflen)); |
| 3164 | if (*pbuflen > acl_len) |
| 3165 | *pbuflen = acl_len; |
| 3166 | } |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3167 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3168 | /* check if buffer is big enough for the acl |
| 3169 | header followed by the smallest SID */ |
| 3170 | if ((*pbuflen < sizeof(struct cifs_ntsd) + 8) || |
| 3171 | (*pbuflen >= 64 * 1024)) { |
| 3172 | cERROR(1, ("bad acl length %d", *pbuflen)); |
| 3173 | rc = -EINVAL; |
| 3174 | *pbuflen = 0; |
| 3175 | } else { |
| 3176 | *acl_inf = kmalloc(*pbuflen, GFP_KERNEL); |
| 3177 | if (*acl_inf == NULL) { |
| 3178 | *pbuflen = 0; |
| 3179 | rc = -ENOMEM; |
| 3180 | } |
| 3181 | memcpy(*acl_inf, pdata, *pbuflen); |
| 3182 | } |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3183 | } |
| 3184 | qsec_out: |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3185 | if (buf_type == CIFS_SMALL_BUFFER) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3186 | cifs_small_buf_release(iov[0].iov_base); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3187 | else if (buf_type == CIFS_LARGE_BUFFER) |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3188 | cifs_buf_release(iov[0].iov_base); |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 3189 | /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3190 | return rc; |
| 3191 | } |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 3192 | |
| 3193 | int |
| 3194 | CIFSSMBSetCIFSACL(const int xid, struct cifsTconInfo *tcon, __u16 fid, |
| 3195 | struct cifs_ntsd *pntsd, __u32 acllen) |
| 3196 | { |
| 3197 | __u16 byte_count, param_count, data_count, param_offset, data_offset; |
| 3198 | int rc = 0; |
| 3199 | int bytes_returned = 0; |
| 3200 | SET_SEC_DESC_REQ *pSMB = NULL; |
| 3201 | NTRANSACT_RSP *pSMBr = NULL; |
| 3202 | |
| 3203 | setCifsAclRetry: |
| 3204 | rc = smb_init(SMB_COM_NT_TRANSACT, 19, tcon, (void **) &pSMB, |
| 3205 | (void **) &pSMBr); |
| 3206 | if (rc) |
| 3207 | return (rc); |
| 3208 | |
| 3209 | pSMB->MaxSetupCount = 0; |
| 3210 | pSMB->Reserved = 0; |
| 3211 | |
| 3212 | param_count = 8; |
| 3213 | param_offset = offsetof(struct smb_com_transaction_ssec_req, Fid) - 4; |
| 3214 | data_count = acllen; |
| 3215 | data_offset = param_offset + param_count; |
| 3216 | byte_count = 3 /* pad */ + param_count; |
| 3217 | |
| 3218 | pSMB->DataCount = cpu_to_le32(data_count); |
| 3219 | pSMB->TotalDataCount = pSMB->DataCount; |
| 3220 | pSMB->MaxParameterCount = cpu_to_le32(4); |
| 3221 | pSMB->MaxDataCount = cpu_to_le32(16384); |
| 3222 | pSMB->ParameterCount = cpu_to_le32(param_count); |
| 3223 | pSMB->ParameterOffset = cpu_to_le32(param_offset); |
| 3224 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 3225 | pSMB->DataOffset = cpu_to_le32(data_offset); |
| 3226 | pSMB->SetupCount = 0; |
| 3227 | pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_SET_SECURITY_DESC); |
| 3228 | pSMB->ByteCount = cpu_to_le16(byte_count+data_count); |
| 3229 | |
| 3230 | pSMB->Fid = fid; /* file handle always le */ |
| 3231 | pSMB->Reserved2 = 0; |
| 3232 | pSMB->AclFlags = cpu_to_le32(CIFS_ACL_DACL); |
| 3233 | |
| 3234 | if (pntsd && acllen) { |
| 3235 | memcpy((char *) &pSMBr->hdr.Protocol + data_offset, |
| 3236 | (char *) pntsd, |
| 3237 | acllen); |
| 3238 | pSMB->hdr.smb_buf_length += (byte_count + data_count); |
| 3239 | |
| 3240 | } else |
| 3241 | pSMB->hdr.smb_buf_length += byte_count; |
| 3242 | |
| 3243 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3244 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 3245 | |
| 3246 | cFYI(1, ("SetCIFSACL bytes_returned: %d, rc: %d", bytes_returned, rc)); |
| 3247 | if (rc) |
| 3248 | cFYI(1, ("Set CIFS ACL returned %d", rc)); |
| 3249 | cifs_buf_release(pSMB); |
| 3250 | |
| 3251 | if (rc == -EAGAIN) |
| 3252 | goto setCifsAclRetry; |
| 3253 | |
| 3254 | return (rc); |
| 3255 | } |
| 3256 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 3257 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 3258 | |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3259 | /* Legacy Query Path Information call for lookup to old servers such |
| 3260 | as Win9x/WinME */ |
| 3261 | int SMBQueryInformation(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3262 | const unsigned char *searchName, |
| 3263 | FILE_ALL_INFO *pFinfo, |
| 3264 | const struct nls_table *nls_codepage, int remap) |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3265 | { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3266 | QUERY_INFORMATION_REQ *pSMB; |
| 3267 | QUERY_INFORMATION_RSP *pSMBr; |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3268 | int rc = 0; |
| 3269 | int bytes_returned; |
| 3270 | int name_len; |
| 3271 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3272 | cFYI(1, ("In SMBQPath path %s", searchName)); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3273 | QInfRetry: |
| 3274 | rc = smb_init(SMB_COM_QUERY_INFORMATION, 0, tcon, (void **) &pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3275 | (void **) &pSMBr); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3276 | if (rc) |
| 3277 | return rc; |
| 3278 | |
| 3279 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 3280 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3281 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
| 3282 | PATH_MAX, nls_codepage, remap); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3283 | name_len++; /* trailing null */ |
| 3284 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3285 | } else { |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3286 | name_len = strnlen(searchName, PATH_MAX); |
| 3287 | name_len++; /* trailing null */ |
| 3288 | strncpy(pSMB->FileName, searchName, name_len); |
| 3289 | } |
| 3290 | pSMB->BufferFormat = 0x04; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3291 | name_len++; /* account for buffer type byte */ |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3292 | pSMB->hdr.smb_buf_length += (__u16) name_len; |
| 3293 | pSMB->ByteCount = cpu_to_le16(name_len); |
| 3294 | |
| 3295 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3296 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3297 | if (rc) { |
| 3298 | cFYI(1, ("Send error in QueryInfo = %d", rc)); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3299 | } else if (pFinfo) { |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 3300 | struct timespec ts; |
| 3301 | __u32 time = le32_to_cpu(pSMBr->last_write_time); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3302 | |
| 3303 | /* decode response */ |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 3304 | /* BB FIXME - add time zone adjustment BB */ |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3305 | memset(pFinfo, 0, sizeof(FILE_ALL_INFO)); |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 3306 | ts.tv_nsec = 0; |
| 3307 | ts.tv_sec = time; |
| 3308 | /* decode time fields */ |
Al Viro | 733f99a | 2006-10-14 16:48:26 +0100 | [diff] [blame] | 3309 | pFinfo->ChangeTime = cpu_to_le64(cifs_UnixTimeToNT(ts)); |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 3310 | pFinfo->LastWriteTime = pFinfo->ChangeTime; |
| 3311 | pFinfo->LastAccessTime = 0; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 3312 | pFinfo->AllocationSize = |
| 3313 | cpu_to_le64(le32_to_cpu(pSMBr->size)); |
| 3314 | pFinfo->EndOfFile = pFinfo->AllocationSize; |
| 3315 | pFinfo->Attributes = |
| 3316 | cpu_to_le32(le16_to_cpu(pSMBr->attr)); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 3317 | } else |
| 3318 | rc = -EIO; /* bad buffer passed in */ |
| 3319 | |
| 3320 | cifs_buf_release(pSMB); |
| 3321 | |
| 3322 | if (rc == -EAGAIN) |
| 3323 | goto QInfRetry; |
| 3324 | |
| 3325 | return rc; |
| 3326 | } |
| 3327 | |
| 3328 | |
| 3329 | |
| 3330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | int |
| 3332 | CIFSSMBQPathInfo(const int xid, struct cifsTconInfo *tcon, |
| 3333 | const unsigned char *searchName, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3334 | FILE_ALL_INFO *pFindData, |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3335 | int legacy /* old style infolevel */, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3336 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | { |
| 3338 | /* level 263 SMB_QUERY_FILE_ALL_INFO */ |
| 3339 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 3340 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 3341 | int rc = 0; |
| 3342 | int bytes_returned; |
| 3343 | int name_len; |
| 3344 | __u16 params, byte_count; |
| 3345 | |
| 3346 | /* cFYI(1, ("In QPathInfo path %s", searchName)); */ |
| 3347 | QPathInfoRetry: |
| 3348 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 3349 | (void **) &pSMBr); |
| 3350 | if (rc) |
| 3351 | return rc; |
| 3352 | |
| 3353 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 3354 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3355 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3356 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | name_len++; /* trailing null */ |
| 3358 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3359 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | name_len = strnlen(searchName, PATH_MAX); |
| 3361 | name_len++; /* trailing null */ |
| 3362 | strncpy(pSMB->FileName, searchName, name_len); |
| 3363 | } |
| 3364 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3365 | params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | pSMB->TotalDataCount = 0; |
| 3367 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 3368 | /* BB find exact max SMB PDU from sess structure BB */ |
| 3369 | pSMB->MaxDataCount = cpu_to_le16(4000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | pSMB->MaxSetupCount = 0; |
| 3371 | pSMB->Reserved = 0; |
| 3372 | pSMB->Flags = 0; |
| 3373 | pSMB->Timeout = 0; |
| 3374 | pSMB->Reserved2 = 0; |
| 3375 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3376 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3377 | pSMB->DataCount = 0; |
| 3378 | pSMB->DataOffset = 0; |
| 3379 | pSMB->SetupCount = 1; |
| 3380 | pSMB->Reserved3 = 0; |
| 3381 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 3382 | byte_count = params + 1 /* pad */ ; |
| 3383 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 3384 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3385 | if (legacy) |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3386 | pSMB->InformationLevel = cpu_to_le16(SMB_INFO_STANDARD); |
| 3387 | else |
| 3388 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3389 | pSMB->Reserved4 = 0; |
| 3390 | pSMB->hdr.smb_buf_length += byte_count; |
| 3391 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 3392 | |
| 3393 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3394 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 3395 | if (rc) { |
| 3396 | cFYI(1, ("Send error in QPathInfo = %d", rc)); |
| 3397 | } else { /* decode response */ |
| 3398 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 3399 | |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3400 | if (rc) /* BB add auto retry on EOPNOTSUPP? */ |
| 3401 | rc = -EIO; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3402 | else if (!legacy && (pSMBr->ByteCount < 40)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3403 | rc = -EIO; /* bad smb */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3404 | else if (legacy && (pSMBr->ByteCount < 24)) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3405 | rc = -EIO; /* 24 or 26 expected but we do not read |
| 3406 | last field */ |
| 3407 | else if (pFindData) { |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3408 | int size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3409 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3410 | |
| 3411 | /* On legacy responses we do not read the last field, |
| 3412 | EAsize, fortunately since it varies by subdialect and |
| 3413 | also note it differs on Set vs. Get, ie two bytes or 4 |
| 3414 | bytes depending but we don't care here */ |
| 3415 | if (legacy) |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3416 | size = sizeof(FILE_INFO_STANDARD); |
| 3417 | else |
| 3418 | size = sizeof(FILE_ALL_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3419 | memcpy((char *) pFindData, |
| 3420 | (char *) &pSMBr->hdr.Protocol + |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 3421 | data_offset, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3422 | } else |
| 3423 | rc = -ENOMEM; |
| 3424 | } |
| 3425 | cifs_buf_release(pSMB); |
| 3426 | if (rc == -EAGAIN) |
| 3427 | goto QPathInfoRetry; |
| 3428 | |
| 3429 | return rc; |
| 3430 | } |
| 3431 | |
| 3432 | int |
| 3433 | CIFSSMBUnixQPathInfo(const int xid, struct cifsTconInfo *tcon, |
| 3434 | const unsigned char *searchName, |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 3435 | FILE_UNIX_BASIC_INFO *pFindData, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3436 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 | { |
| 3438 | /* SMB_QUERY_FILE_UNIX_BASIC */ |
| 3439 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 3440 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 3441 | int rc = 0; |
| 3442 | int bytes_returned = 0; |
| 3443 | int name_len; |
| 3444 | __u16 params, byte_count; |
| 3445 | |
| 3446 | cFYI(1, ("In QPathInfo (Unix) the path %s", searchName)); |
| 3447 | UnixQPathInfoRetry: |
| 3448 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 3449 | (void **) &pSMBr); |
| 3450 | if (rc) |
| 3451 | return rc; |
| 3452 | |
| 3453 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 3454 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 3455 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3456 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3457 | name_len++; /* trailing null */ |
| 3458 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3459 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3460 | name_len = strnlen(searchName, PATH_MAX); |
| 3461 | name_len++; /* trailing null */ |
| 3462 | strncpy(pSMB->FileName, searchName, name_len); |
| 3463 | } |
| 3464 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3465 | params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | pSMB->TotalDataCount = 0; |
| 3467 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 3468 | /* BB find exact max SMB PDU from sess structure BB */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3469 | pSMB->MaxDataCount = cpu_to_le16(4000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | pSMB->MaxSetupCount = 0; |
| 3471 | pSMB->Reserved = 0; |
| 3472 | pSMB->Flags = 0; |
| 3473 | pSMB->Timeout = 0; |
| 3474 | pSMB->Reserved2 = 0; |
| 3475 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3476 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3477 | pSMB->DataCount = 0; |
| 3478 | pSMB->DataOffset = 0; |
| 3479 | pSMB->SetupCount = 1; |
| 3480 | pSMB->Reserved3 = 0; |
| 3481 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 3482 | byte_count = params + 1 /* pad */ ; |
| 3483 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 3484 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 3485 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC); |
| 3486 | pSMB->Reserved4 = 0; |
| 3487 | pSMB->hdr.smb_buf_length += byte_count; |
| 3488 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 3489 | |
| 3490 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3491 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 3492 | if (rc) { |
| 3493 | cFYI(1, ("Send error in QPathInfo = %d", rc)); |
| 3494 | } else { /* decode response */ |
| 3495 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 3496 | |
| 3497 | if (rc || (pSMBr->ByteCount < sizeof(FILE_UNIX_BASIC_INFO))) { |
Steve French | 1e71f25 | 2007-09-20 15:30:07 +0000 | [diff] [blame] | 3498 | cERROR(1, ("Malformed FILE_UNIX_BASIC_INFO response.\n" |
| 3499 | "Unix Extensions can be disabled on mount " |
| 3500 | "by specifying the nosfu mount option.")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3501 | rc = -EIO; /* bad smb */ |
| 3502 | } else { |
| 3503 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 3504 | memcpy((char *) pFindData, |
| 3505 | (char *) &pSMBr->hdr.Protocol + |
| 3506 | data_offset, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3507 | sizeof(FILE_UNIX_BASIC_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3508 | } |
| 3509 | } |
| 3510 | cifs_buf_release(pSMB); |
| 3511 | if (rc == -EAGAIN) |
| 3512 | goto UnixQPathInfoRetry; |
| 3513 | |
| 3514 | return rc; |
| 3515 | } |
| 3516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3517 | /* xid, tcon, searchName and codepage are input parms, rest are returned */ |
| 3518 | int |
| 3519 | CIFSFindFirst(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3520 | const char *searchName, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3521 | const struct nls_table *nls_codepage, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3522 | __u16 *pnetfid, |
| 3523 | struct cifs_search_info *psrch_inf, int remap, const char dirsep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | { |
| 3525 | /* level 257 SMB_ */ |
| 3526 | TRANSACTION2_FFIRST_REQ *pSMB = NULL; |
| 3527 | TRANSACTION2_FFIRST_RSP *pSMBr = NULL; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3528 | T2_FFIRST_RSP_PARMS *parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | int rc = 0; |
| 3530 | int bytes_returned = 0; |
| 3531 | int name_len; |
| 3532 | __u16 params, byte_count; |
| 3533 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3534 | cFYI(1, ("In FindFirst for %s", searchName)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | |
| 3536 | findFirstRetry: |
| 3537 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 3538 | (void **) &pSMBr); |
| 3539 | if (rc) |
| 3540 | return rc; |
| 3541 | |
| 3542 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 3543 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3544 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3545 | PATH_MAX, nls_codepage, remap); |
| 3546 | /* We can not add the asterik earlier in case |
| 3547 | it got remapped to 0xF03A as if it were part of the |
| 3548 | directory name instead of a wildcard */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3549 | name_len *= 2; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 3550 | pSMB->FileName[name_len] = dirsep; |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3551 | pSMB->FileName[name_len+1] = 0; |
| 3552 | pSMB->FileName[name_len+2] = '*'; |
| 3553 | pSMB->FileName[name_len+3] = 0; |
| 3554 | name_len += 4; /* now the trailing null */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3555 | pSMB->FileName[name_len] = 0; /* null terminate just in case */ |
| 3556 | pSMB->FileName[name_len+1] = 0; |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3557 | name_len += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | } else { /* BB add check for overrun of SMB buf BB */ |
| 3559 | name_len = strnlen(searchName, PATH_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | /* BB fix here and in unicode clause above ie |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3561 | if (name_len > buffersize-header) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3562 | free buffer exit; BB */ |
| 3563 | strncpy(pSMB->FileName, searchName, name_len); |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 3564 | pSMB->FileName[name_len] = dirsep; |
Steve French | 6857547 | 2005-04-30 11:10:57 -0700 | [diff] [blame] | 3565 | pSMB->FileName[name_len+1] = '*'; |
| 3566 | pSMB->FileName[name_len+2] = 0; |
| 3567 | name_len += 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | } |
| 3569 | |
| 3570 | params = 12 + name_len /* includes null */ ; |
| 3571 | pSMB->TotalDataCount = 0; /* no EAs */ |
| 3572 | pSMB->MaxParameterCount = cpu_to_le16(10); |
| 3573 | pSMB->MaxDataCount = cpu_to_le16((tcon->ses->server->maxBuf - |
| 3574 | MAX_CIFS_HDR_SIZE) & 0xFFFFFF00); |
| 3575 | pSMB->MaxSetupCount = 0; |
| 3576 | pSMB->Reserved = 0; |
| 3577 | pSMB->Flags = 0; |
| 3578 | pSMB->Timeout = 0; |
| 3579 | pSMB->Reserved2 = 0; |
| 3580 | byte_count = params + 1 /* pad */ ; |
| 3581 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 3582 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 3583 | pSMB->ParameterOffset = cpu_to_le16( |
Steve French | 8827481 | 2006-03-09 22:21:45 +0000 | [diff] [blame] | 3584 | offsetof(struct smb_com_transaction2_ffirst_req, SearchAttributes) |
| 3585 | - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | pSMB->DataCount = 0; |
| 3587 | pSMB->DataOffset = 0; |
| 3588 | pSMB->SetupCount = 1; /* one byte, no need to make endian neutral */ |
| 3589 | pSMB->Reserved3 = 0; |
| 3590 | pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_FIRST); |
| 3591 | pSMB->SearchAttributes = |
| 3592 | cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM | |
| 3593 | ATTR_DIRECTORY); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3594 | pSMB->SearchCount = cpu_to_le16(CIFSMaxBufSize/sizeof(FILE_UNIX_INFO)); |
| 3595 | pSMB->SearchFlags = cpu_to_le16(CIFS_SEARCH_CLOSE_AT_END | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | CIFS_SEARCH_RETURN_RESUME); |
| 3597 | pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level); |
| 3598 | |
| 3599 | /* BB what should we set StorageType to? Does it matter? BB */ |
| 3600 | pSMB->SearchStorageType = 0; |
| 3601 | pSMB->hdr.smb_buf_length += byte_count; |
| 3602 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 3603 | |
| 3604 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3605 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 3606 | cifs_stats_inc(&tcon->num_ffirst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | |
Steve French | 8827481 | 2006-03-09 22:21:45 +0000 | [diff] [blame] | 3608 | if (rc) {/* BB add logic to retry regular search if Unix search |
| 3609 | rejected unexpectedly by server */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3610 | /* BB Add code to handle unsupported level rc */ |
| 3611 | cFYI(1, ("Error in FindFirst = %d", rc)); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 3612 | |
Steve French | 8827481 | 2006-03-09 22:21:45 +0000 | [diff] [blame] | 3613 | cifs_buf_release(pSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | |
| 3615 | /* BB eventually could optimize out free and realloc of buf */ |
| 3616 | /* for this case */ |
| 3617 | if (rc == -EAGAIN) |
| 3618 | goto findFirstRetry; |
| 3619 | } else { /* decode response */ |
| 3620 | /* BB remember to free buffer if error BB */ |
| 3621 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3622 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3623 | if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3624 | psrch_inf->unicode = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3626 | psrch_inf->unicode = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3627 | |
| 3628 | psrch_inf->ntwrk_buf_start = (char *)pSMBr; |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 3629 | psrch_inf->smallBuf = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3630 | psrch_inf->srch_entries_start = |
| 3631 | (char *) &pSMBr->hdr.Protocol + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | le16_to_cpu(pSMBr->t2.DataOffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3633 | parms = (T2_FFIRST_RSP_PARMS *)((char *) &pSMBr->hdr.Protocol + |
| 3634 | le16_to_cpu(pSMBr->t2.ParameterOffset)); |
| 3635 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3636 | if (parms->EndofSearch) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3637 | psrch_inf->endOfSearch = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3639 | psrch_inf->endOfSearch = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3640 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3641 | psrch_inf->entries_in_buffer = |
| 3642 | le16_to_cpu(parms->SearchCount); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 3643 | psrch_inf->index_of_last_entry = 2 /* skip . and .. */ + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | psrch_inf->entries_in_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | *pnetfid = parms->SearchHandle; |
| 3646 | } else { |
| 3647 | cifs_buf_release(pSMB); |
| 3648 | } |
| 3649 | } |
| 3650 | |
| 3651 | return rc; |
| 3652 | } |
| 3653 | |
| 3654 | int CIFSFindNext(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3655 | __u16 searchHandle, struct cifs_search_info *psrch_inf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3656 | { |
| 3657 | TRANSACTION2_FNEXT_REQ *pSMB = NULL; |
| 3658 | TRANSACTION2_FNEXT_RSP *pSMBr = NULL; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3659 | T2_FNEXT_RSP_PARMS *parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3660 | char *response_data; |
| 3661 | int rc = 0; |
| 3662 | int bytes_returned, name_len; |
| 3663 | __u16 params, byte_count; |
| 3664 | |
| 3665 | cFYI(1, ("In FindNext")); |
| 3666 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3667 | if (psrch_inf->endOfSearch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3668 | return -ENOENT; |
| 3669 | |
| 3670 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 3671 | (void **) &pSMBr); |
| 3672 | if (rc) |
| 3673 | return rc; |
| 3674 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3675 | params = 14; /* includes 2 bytes of null string, converted to LE below*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3676 | byte_count = 0; |
| 3677 | pSMB->TotalDataCount = 0; /* no EAs */ |
| 3678 | pSMB->MaxParameterCount = cpu_to_le16(8); |
| 3679 | pSMB->MaxDataCount = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3680 | cpu_to_le16((tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & |
| 3681 | 0xFFFFFF00); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | pSMB->MaxSetupCount = 0; |
| 3683 | pSMB->Reserved = 0; |
| 3684 | pSMB->Flags = 0; |
| 3685 | pSMB->Timeout = 0; |
| 3686 | pSMB->Reserved2 = 0; |
| 3687 | pSMB->ParameterOffset = cpu_to_le16( |
| 3688 | offsetof(struct smb_com_transaction2_fnext_req,SearchHandle) - 4); |
| 3689 | pSMB->DataCount = 0; |
| 3690 | pSMB->DataOffset = 0; |
| 3691 | pSMB->SetupCount = 1; |
| 3692 | pSMB->Reserved3 = 0; |
| 3693 | pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_NEXT); |
| 3694 | pSMB->SearchHandle = searchHandle; /* always kept as le */ |
| 3695 | pSMB->SearchCount = |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 3696 | cpu_to_le16(CIFSMaxBufSize / sizeof(FILE_UNIX_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3697 | pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level); |
| 3698 | pSMB->ResumeKey = psrch_inf->resume_key; |
| 3699 | pSMB->SearchFlags = |
| 3700 | cpu_to_le16(CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME); |
| 3701 | |
| 3702 | name_len = psrch_inf->resume_name_len; |
| 3703 | params += name_len; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3704 | if (name_len < PATH_MAX) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3705 | memcpy(pSMB->ResumeFileName, psrch_inf->presume_name, name_len); |
| 3706 | byte_count += name_len; |
Steve French | ef6724e | 2005-08-02 21:31:05 -0700 | [diff] [blame] | 3707 | /* 14 byte parm len above enough for 2 byte null terminator */ |
| 3708 | pSMB->ResumeFileName[name_len] = 0; |
| 3709 | pSMB->ResumeFileName[name_len+1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3710 | } else { |
| 3711 | rc = -EINVAL; |
| 3712 | goto FNext2_err_exit; |
| 3713 | } |
| 3714 | byte_count = params + 1 /* pad */ ; |
| 3715 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 3716 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 3717 | pSMB->hdr.smb_buf_length += byte_count; |
| 3718 | pSMB->ByteCount = cpu_to_le16(byte_count); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3720 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3721 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 3722 | cifs_stats_inc(&tcon->num_fnext); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | if (rc) { |
| 3724 | if (rc == -EBADF) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3725 | psrch_inf->endOfSearch = true; |
Jeff Layton | 6353450 | 2008-05-12 19:56:05 -0700 | [diff] [blame] | 3726 | cifs_buf_release(pSMB); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3727 | rc = 0; /* search probably was closed at end of search*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3728 | } else |
| 3729 | cFYI(1, ("FindNext returned = %d", rc)); |
| 3730 | } else { /* decode response */ |
| 3731 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3732 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3733 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | /* BB fixme add lock for file (srch_info) struct here */ |
| 3735 | if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3736 | psrch_inf->unicode = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3738 | psrch_inf->unicode = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | response_data = (char *) &pSMBr->hdr.Protocol + |
| 3740 | le16_to_cpu(pSMBr->t2.ParameterOffset); |
| 3741 | parms = (T2_FNEXT_RSP_PARMS *)response_data; |
| 3742 | response_data = (char *)&pSMBr->hdr.Protocol + |
| 3743 | le16_to_cpu(pSMBr->t2.DataOffset); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3744 | if (psrch_inf->smallBuf) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 3745 | cifs_small_buf_release( |
| 3746 | psrch_inf->ntwrk_buf_start); |
| 3747 | else |
| 3748 | cifs_buf_release(psrch_inf->ntwrk_buf_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | psrch_inf->srch_entries_start = response_data; |
| 3750 | psrch_inf->ntwrk_buf_start = (char *)pSMB; |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 3751 | psrch_inf->smallBuf = 0; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3752 | if (parms->EndofSearch) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3753 | psrch_inf->endOfSearch = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3754 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3755 | psrch_inf->endOfSearch = false; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3756 | psrch_inf->entries_in_buffer = |
| 3757 | le16_to_cpu(parms->SearchCount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | psrch_inf->index_of_last_entry += |
| 3759 | psrch_inf->entries_in_buffer; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3760 | /* cFYI(1,("fnxt2 entries in buf %d index_of_last %d", |
| 3761 | psrch_inf->entries_in_buffer, psrch_inf->index_of_last_entry)); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3762 | |
| 3763 | /* BB fixme add unlock here */ |
| 3764 | } |
| 3765 | |
| 3766 | } |
| 3767 | |
| 3768 | /* BB On error, should we leave previous search buf (and count and |
| 3769 | last entry fields) intact or free the previous one? */ |
| 3770 | |
| 3771 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
| 3772 | since file handle passed in no longer valid */ |
| 3773 | FNext2_err_exit: |
| 3774 | if (rc != 0) |
| 3775 | cifs_buf_release(pSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | return rc; |
| 3777 | } |
| 3778 | |
| 3779 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3780 | CIFSFindClose(const int xid, struct cifsTconInfo *tcon, |
| 3781 | const __u16 searchHandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | { |
| 3783 | int rc = 0; |
| 3784 | FINDCLOSE_REQ *pSMB = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | |
| 3786 | cFYI(1, ("In CIFSSMBFindClose")); |
| 3787 | rc = small_smb_init(SMB_COM_FIND_CLOSE2, 1, tcon, (void **)&pSMB); |
| 3788 | |
| 3789 | /* no sense returning error if session restarted |
| 3790 | as file handle has been closed */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3791 | if (rc == -EAGAIN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3792 | return 0; |
| 3793 | if (rc) |
| 3794 | return rc; |
| 3795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | pSMB->FileID = searchHandle; |
| 3797 | pSMB->ByteCount = 0; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 3798 | rc = SendReceiveNoRsp(xid, tcon->ses, (struct smb_hdr *) pSMB, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3799 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3800 | cERROR(1, ("Send error in FindClose = %d", rc)); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3801 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 3802 | cifs_stats_inc(&tcon->num_fclose); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | |
| 3804 | /* Since session is dead, search handle closed on server already */ |
| 3805 | if (rc == -EAGAIN) |
| 3806 | rc = 0; |
| 3807 | |
| 3808 | return rc; |
| 3809 | } |
| 3810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | int |
| 3812 | CIFSGetSrvInodeNumber(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3813 | const unsigned char *searchName, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3814 | __u64 *inode_number, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3815 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | { |
| 3817 | int rc = 0; |
| 3818 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 3819 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 3820 | int name_len, bytes_returned; |
| 3821 | __u16 params, byte_count; |
| 3822 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3823 | cFYI(1, ("In GetSrvInodeNum for %s", searchName)); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3824 | if (tcon == NULL) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3825 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3826 | |
| 3827 | GetInodeNumberRetry: |
| 3828 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3829 | (void **) &pSMBr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | if (rc) |
| 3831 | return rc; |
| 3832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 3834 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 3835 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3836 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | name_len++; /* trailing null */ |
| 3838 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3839 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3840 | name_len = strnlen(searchName, PATH_MAX); |
| 3841 | name_len++; /* trailing null */ |
| 3842 | strncpy(pSMB->FileName, searchName, name_len); |
| 3843 | } |
| 3844 | |
| 3845 | params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; |
| 3846 | pSMB->TotalDataCount = 0; |
| 3847 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 3848 | /* BB find exact max data count below from sess structure BB */ |
| 3849 | pSMB->MaxDataCount = cpu_to_le16(4000); |
| 3850 | pSMB->MaxSetupCount = 0; |
| 3851 | pSMB->Reserved = 0; |
| 3852 | pSMB->Flags = 0; |
| 3853 | pSMB->Timeout = 0; |
| 3854 | pSMB->Reserved2 = 0; |
| 3855 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3856 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3857 | pSMB->DataCount = 0; |
| 3858 | pSMB->DataOffset = 0; |
| 3859 | pSMB->SetupCount = 1; |
| 3860 | pSMB->Reserved3 = 0; |
| 3861 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 3862 | byte_count = params + 1 /* pad */ ; |
| 3863 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 3864 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 3865 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_INTERNAL_INFO); |
| 3866 | pSMB->Reserved4 = 0; |
| 3867 | pSMB->hdr.smb_buf_length += byte_count; |
| 3868 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 3869 | |
| 3870 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 3871 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 3872 | if (rc) { |
| 3873 | cFYI(1, ("error %d in QueryInternalInfo", rc)); |
| 3874 | } else { |
| 3875 | /* decode response */ |
| 3876 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 3877 | if (rc || (pSMBr->ByteCount < 2)) |
| 3878 | /* BB also check enough total bytes returned */ |
| 3879 | /* If rc should we check for EOPNOSUPP and |
| 3880 | disable the srvino flag? or in caller? */ |
| 3881 | rc = -EIO; /* bad smb */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3882 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 3884 | __u16 count = le16_to_cpu(pSMBr->t2.DataCount); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3885 | struct file_internal_info *pfinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | /* BB Do we need a cast or hash here ? */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 3887 | if (count < 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | cFYI(1, ("Illegal size ret in QryIntrnlInf")); |
| 3889 | rc = -EIO; |
| 3890 | goto GetInodeNumOut; |
| 3891 | } |
| 3892 | pfinfo = (struct file_internal_info *) |
| 3893 | (data_offset + (char *) &pSMBr->hdr.Protocol); |
| 3894 | *inode_number = pfinfo->UniqueId; |
| 3895 | } |
| 3896 | } |
| 3897 | GetInodeNumOut: |
| 3898 | cifs_buf_release(pSMB); |
| 3899 | if (rc == -EAGAIN) |
| 3900 | goto GetInodeNumberRetry; |
| 3901 | return rc; |
| 3902 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3903 | |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3904 | /* parses DFS refferal V3 structure |
| 3905 | * caller is responsible for freeing target_nodes |
| 3906 | * returns: |
| 3907 | * on success - 0 |
| 3908 | * on failure - errno |
| 3909 | */ |
| 3910 | static int |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3911 | parse_DFS_referrals(TRANSACTION2_GET_DFS_REFER_RSP *pSMBr, |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3912 | unsigned int *num_of_nodes, |
| 3913 | struct dfs_info3_param **target_nodes, |
| 3914 | const struct nls_table *nls_codepage) |
| 3915 | { |
| 3916 | int i, rc = 0; |
| 3917 | char *data_end; |
| 3918 | bool is_unicode; |
| 3919 | struct dfs_referral_level_3 *ref; |
| 3920 | |
| 3921 | is_unicode = pSMBr->hdr.Flags2 & SMBFLG2_UNICODE; |
| 3922 | *num_of_nodes = le16_to_cpu(pSMBr->NumberOfReferrals); |
| 3923 | |
| 3924 | if (*num_of_nodes < 1) { |
| 3925 | cERROR(1, ("num_referrals: must be at least > 0," |
| 3926 | "but we get num_referrals = %d\n", *num_of_nodes)); |
| 3927 | rc = -EINVAL; |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3928 | goto parse_DFS_referrals_exit; |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3929 | } |
| 3930 | |
| 3931 | ref = (struct dfs_referral_level_3 *) &(pSMBr->referrals); |
| 3932 | if (ref->VersionNumber != 3) { |
| 3933 | cERROR(1, ("Referrals of V%d version are not supported," |
| 3934 | "should be V3", ref->VersionNumber)); |
| 3935 | rc = -EINVAL; |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3936 | goto parse_DFS_referrals_exit; |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3937 | } |
| 3938 | |
| 3939 | /* get the upper boundary of the resp buffer */ |
| 3940 | data_end = (char *)(&(pSMBr->PathConsumed)) + |
| 3941 | le16_to_cpu(pSMBr->t2.DataCount); |
| 3942 | |
| 3943 | cFYI(1, ("num_referrals: %d dfs flags: 0x%x ... \n", |
| 3944 | *num_of_nodes, |
| 3945 | le16_to_cpu(pSMBr->DFSFlags))); |
| 3946 | |
| 3947 | *target_nodes = kzalloc(sizeof(struct dfs_info3_param) * |
| 3948 | *num_of_nodes, GFP_KERNEL); |
| 3949 | if (*target_nodes == NULL) { |
| 3950 | cERROR(1, ("Failed to allocate buffer for target_nodes\n")); |
| 3951 | rc = -ENOMEM; |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3952 | goto parse_DFS_referrals_exit; |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3953 | } |
| 3954 | |
| 3955 | /* collect neccessary data from referrals */ |
| 3956 | for (i = 0; i < *num_of_nodes; i++) { |
| 3957 | char *temp; |
| 3958 | int max_len; |
| 3959 | struct dfs_info3_param *node = (*target_nodes)+i; |
| 3960 | |
| 3961 | node->flags = le16_to_cpu(pSMBr->DFSFlags); |
| 3962 | node->path_consumed = le16_to_cpu(pSMBr->PathConsumed); |
| 3963 | node->server_type = le16_to_cpu(ref->ServerType); |
| 3964 | node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags); |
| 3965 | |
| 3966 | /* copy DfsPath */ |
| 3967 | temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset); |
| 3968 | max_len = data_end - temp; |
| 3969 | rc = cifs_strncpy_to_host(&(node->path_name), temp, |
| 3970 | max_len, is_unicode, nls_codepage); |
| 3971 | if (rc) |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3972 | goto parse_DFS_referrals_exit; |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3973 | |
| 3974 | /* copy link target UNC */ |
| 3975 | temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset); |
| 3976 | max_len = data_end - temp; |
| 3977 | rc = cifs_strncpy_to_host(&(node->node_name), temp, |
| 3978 | max_len, is_unicode, nls_codepage); |
| 3979 | if (rc) |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3980 | goto parse_DFS_referrals_exit; |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3981 | |
| 3982 | ref += ref->Size; |
| 3983 | } |
| 3984 | |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 3985 | parse_DFS_referrals_exit: |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 3986 | if (rc) { |
| 3987 | free_dfs_info_array(*target_nodes, *num_of_nodes); |
| 3988 | *target_nodes = NULL; |
| 3989 | *num_of_nodes = 0; |
| 3990 | } |
| 3991 | return rc; |
| 3992 | } |
| 3993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | int |
| 3995 | CIFSGetDFSRefer(const int xid, struct cifsSesInfo *ses, |
| 3996 | const unsigned char *searchName, |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 3997 | struct dfs_info3_param **target_nodes, |
| 3998 | unsigned int *num_of_nodes, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 3999 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4000 | { |
| 4001 | /* TRANS2_GET_DFS_REFERRAL */ |
| 4002 | TRANSACTION2_GET_DFS_REFER_REQ *pSMB = NULL; |
| 4003 | TRANSACTION2_GET_DFS_REFER_RSP *pSMBr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4004 | int rc = 0; |
| 4005 | int bytes_returned; |
| 4006 | int name_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | __u16 params, byte_count; |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 4008 | *num_of_nodes = 0; |
| 4009 | *target_nodes = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4010 | |
| 4011 | cFYI(1, ("In GetDFSRefer the path %s", searchName)); |
| 4012 | if (ses == NULL) |
| 4013 | return -ENODEV; |
| 4014 | getDFSRetry: |
| 4015 | rc = smb_init(SMB_COM_TRANSACTION2, 15, NULL, (void **) &pSMB, |
| 4016 | (void **) &pSMBr); |
| 4017 | if (rc) |
| 4018 | return rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4019 | |
| 4020 | /* server pointer checked in called function, |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 4021 | but should never be null here anyway */ |
| 4022 | pSMB->hdr.Mid = GetNextMid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | pSMB->hdr.Tid = ses->ipc_tid; |
| 4024 | pSMB->hdr.Uid = ses->Suid; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4025 | if (ses->capabilities & CAP_STATUS32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | pSMB->hdr.Flags2 |= SMBFLG2_ERR_STATUS; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4027 | if (ses->capabilities & CAP_DFS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4028 | pSMB->hdr.Flags2 |= SMBFLG2_DFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4029 | |
| 4030 | if (ses->capabilities & CAP_UNICODE) { |
| 4031 | pSMB->hdr.Flags2 |= SMBFLG2_UNICODE; |
| 4032 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 4033 | cifsConvertToUCS((__le16 *) pSMB->RequestFileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4034 | searchName, PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | name_len++; /* trailing null */ |
| 4036 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4037 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4038 | name_len = strnlen(searchName, PATH_MAX); |
| 4039 | name_len++; /* trailing null */ |
| 4040 | strncpy(pSMB->RequestFileName, searchName, name_len); |
| 4041 | } |
| 4042 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4043 | if (ses->server) { |
| 4044 | if (ses->server->secMode & |
Steve French | 1a4e15a | 2006-10-12 21:33:51 +0000 | [diff] [blame] | 4045 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
| 4046 | pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 4047 | } |
| 4048 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4049 | pSMB->hdr.Uid = ses->Suid; |
Steve French | 1a4e15a | 2006-10-12 21:33:51 +0000 | [diff] [blame] | 4050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4051 | params = 2 /* level */ + name_len /*includes null */ ; |
| 4052 | pSMB->TotalDataCount = 0; |
| 4053 | pSMB->DataCount = 0; |
| 4054 | pSMB->DataOffset = 0; |
| 4055 | pSMB->MaxParameterCount = 0; |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4056 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4057 | pSMB->MaxDataCount = cpu_to_le16(4000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4058 | pSMB->MaxSetupCount = 0; |
| 4059 | pSMB->Reserved = 0; |
| 4060 | pSMB->Flags = 0; |
| 4061 | pSMB->Timeout = 0; |
| 4062 | pSMB->Reserved2 = 0; |
| 4063 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4064 | struct smb_com_transaction2_get_dfs_refer_req, MaxReferralLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4065 | pSMB->SetupCount = 1; |
| 4066 | pSMB->Reserved3 = 0; |
| 4067 | pSMB->SubCommand = cpu_to_le16(TRANS2_GET_DFS_REFERRAL); |
| 4068 | byte_count = params + 3 /* pad */ ; |
| 4069 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4070 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4071 | pSMB->MaxReferralLevel = cpu_to_le16(3); |
| 4072 | pSMB->hdr.smb_buf_length += byte_count; |
| 4073 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4074 | |
| 4075 | rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB, |
| 4076 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4077 | if (rc) { |
| 4078 | cFYI(1, ("Send error in GetDFSRefer = %d", rc)); |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 4079 | goto GetDFSRefExit; |
| 4080 | } |
| 4081 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4082 | |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 4083 | /* BB Also check if enough total bytes returned? */ |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 4084 | if (rc || (pSMBr->ByteCount < 17)) { |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 4085 | rc = -EIO; /* bad smb */ |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 4086 | goto GetDFSRefExit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4087 | } |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 4088 | |
| 4089 | cFYI(1, ("Decoding GetDFSRefer response BCC: %d Offset %d", |
| 4090 | pSMBr->ByteCount, |
| 4091 | le16_to_cpu(pSMBr->t2.DataOffset))); |
| 4092 | |
| 4093 | /* parse returned result into more usable form */ |
Steve French | a1fe78f | 2008-05-16 18:48:38 +0000 | [diff] [blame] | 4094 | rc = parse_DFS_referrals(pSMBr, num_of_nodes, |
Igor Mammedov | fec4585 | 2008-05-16 13:06:30 +0400 | [diff] [blame] | 4095 | target_nodes, nls_codepage); |
| 4096 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4097 | GetDFSRefExit: |
| 4098 | if (pSMB) |
| 4099 | cifs_buf_release(pSMB); |
| 4100 | |
| 4101 | if (rc == -EAGAIN) |
| 4102 | goto getDFSRetry; |
| 4103 | |
| 4104 | return rc; |
| 4105 | } |
| 4106 | |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4107 | /* Query File System Info such as free space to old servers such as Win 9x */ |
| 4108 | int |
| 4109 | SMBOldQFSInfo(const int xid, struct cifsTconInfo *tcon, struct kstatfs *FSData) |
| 4110 | { |
| 4111 | /* level 0x01 SMB_QUERY_FILE_SYSTEM_INFO */ |
| 4112 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4113 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4114 | FILE_SYSTEM_ALLOC_INFO *response_data; |
| 4115 | int rc = 0; |
| 4116 | int bytes_returned = 0; |
| 4117 | __u16 params, byte_count; |
| 4118 | |
| 4119 | cFYI(1, ("OldQFSInfo")); |
| 4120 | oldQFSInfoRetry: |
| 4121 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4122 | (void **) &pSMBr); |
| 4123 | if (rc) |
| 4124 | return rc; |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4125 | |
| 4126 | params = 2; /* level */ |
| 4127 | pSMB->TotalDataCount = 0; |
| 4128 | pSMB->MaxParameterCount = cpu_to_le16(2); |
| 4129 | pSMB->MaxDataCount = cpu_to_le16(1000); |
| 4130 | pSMB->MaxSetupCount = 0; |
| 4131 | pSMB->Reserved = 0; |
| 4132 | pSMB->Flags = 0; |
| 4133 | pSMB->Timeout = 0; |
| 4134 | pSMB->Reserved2 = 0; |
| 4135 | byte_count = params + 1 /* pad */ ; |
| 4136 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 4137 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 4138 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
| 4139 | struct smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
| 4140 | pSMB->DataCount = 0; |
| 4141 | pSMB->DataOffset = 0; |
| 4142 | pSMB->SetupCount = 1; |
| 4143 | pSMB->Reserved3 = 0; |
| 4144 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4145 | pSMB->InformationLevel = cpu_to_le16(SMB_INFO_ALLOCATION); |
| 4146 | pSMB->hdr.smb_buf_length += byte_count; |
| 4147 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4148 | |
| 4149 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4150 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4151 | if (rc) { |
| 4152 | cFYI(1, ("Send error in QFSInfo = %d", rc)); |
| 4153 | } else { /* decode response */ |
| 4154 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 4155 | |
| 4156 | if (rc || (pSMBr->ByteCount < 18)) |
| 4157 | rc = -EIO; /* bad smb */ |
| 4158 | else { |
| 4159 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4160 | cFYI(1, ("qfsinf resp BCC: %d Offset %d", |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4161 | pSMBr->ByteCount, data_offset)); |
| 4162 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4163 | response_data = (FILE_SYSTEM_ALLOC_INFO *) |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4164 | (((char *) &pSMBr->hdr.Protocol) + data_offset); |
| 4165 | FSData->f_bsize = |
| 4166 | le16_to_cpu(response_data->BytesPerSector) * |
| 4167 | le32_to_cpu(response_data-> |
| 4168 | SectorsPerAllocationUnit); |
| 4169 | FSData->f_blocks = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4170 | le32_to_cpu(response_data->TotalAllocationUnits); |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4171 | FSData->f_bfree = FSData->f_bavail = |
| 4172 | le32_to_cpu(response_data->FreeAllocationUnits); |
| 4173 | cFYI(1, |
| 4174 | ("Blocks: %lld Free: %lld Block size %ld", |
| 4175 | (unsigned long long)FSData->f_blocks, |
| 4176 | (unsigned long long)FSData->f_bfree, |
| 4177 | FSData->f_bsize)); |
| 4178 | } |
| 4179 | } |
| 4180 | cifs_buf_release(pSMB); |
| 4181 | |
| 4182 | if (rc == -EAGAIN) |
| 4183 | goto oldQFSInfoRetry; |
| 4184 | |
| 4185 | return rc; |
| 4186 | } |
| 4187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | int |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4189 | CIFSSMBQFSInfo(const int xid, struct cifsTconInfo *tcon, struct kstatfs *FSData) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | { |
| 4191 | /* level 0x103 SMB_QUERY_FILE_SYSTEM_INFO */ |
| 4192 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4193 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4194 | FILE_SYSTEM_INFO *response_data; |
| 4195 | int rc = 0; |
| 4196 | int bytes_returned = 0; |
| 4197 | __u16 params, byte_count; |
| 4198 | |
| 4199 | cFYI(1, ("In QFSInfo")); |
| 4200 | QFSInfoRetry: |
| 4201 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4202 | (void **) &pSMBr); |
| 4203 | if (rc) |
| 4204 | return rc; |
| 4205 | |
| 4206 | params = 2; /* level */ |
| 4207 | pSMB->TotalDataCount = 0; |
| 4208 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4209 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4210 | pSMB->MaxSetupCount = 0; |
| 4211 | pSMB->Reserved = 0; |
| 4212 | pSMB->Flags = 0; |
| 4213 | pSMB->Timeout = 0; |
| 4214 | pSMB->Reserved2 = 0; |
| 4215 | byte_count = params + 1 /* pad */ ; |
| 4216 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 4217 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 4218 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4219 | struct smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4220 | pSMB->DataCount = 0; |
| 4221 | pSMB->DataOffset = 0; |
| 4222 | pSMB->SetupCount = 1; |
| 4223 | pSMB->Reserved3 = 0; |
| 4224 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4225 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_SIZE_INFO); |
| 4226 | pSMB->hdr.smb_buf_length += byte_count; |
| 4227 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4228 | |
| 4229 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4230 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4231 | if (rc) { |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4232 | cFYI(1, ("Send error in QFSInfo = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4233 | } else { /* decode response */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4234 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4235 | |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 4236 | if (rc || (pSMBr->ByteCount < 24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4237 | rc = -EIO; /* bad smb */ |
| 4238 | else { |
| 4239 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4240 | |
| 4241 | response_data = |
| 4242 | (FILE_SYSTEM_INFO |
| 4243 | *) (((char *) &pSMBr->hdr.Protocol) + |
| 4244 | data_offset); |
| 4245 | FSData->f_bsize = |
| 4246 | le32_to_cpu(response_data->BytesPerSector) * |
| 4247 | le32_to_cpu(response_data-> |
| 4248 | SectorsPerAllocationUnit); |
| 4249 | FSData->f_blocks = |
| 4250 | le64_to_cpu(response_data->TotalAllocationUnits); |
| 4251 | FSData->f_bfree = FSData->f_bavail = |
| 4252 | le64_to_cpu(response_data->FreeAllocationUnits); |
| 4253 | cFYI(1, |
| 4254 | ("Blocks: %lld Free: %lld Block size %ld", |
| 4255 | (unsigned long long)FSData->f_blocks, |
| 4256 | (unsigned long long)FSData->f_bfree, |
| 4257 | FSData->f_bsize)); |
| 4258 | } |
| 4259 | } |
| 4260 | cifs_buf_release(pSMB); |
| 4261 | |
| 4262 | if (rc == -EAGAIN) |
| 4263 | goto QFSInfoRetry; |
| 4264 | |
| 4265 | return rc; |
| 4266 | } |
| 4267 | |
| 4268 | int |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4269 | CIFSSMBQFSAttributeInfo(const int xid, struct cifsTconInfo *tcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4270 | { |
| 4271 | /* level 0x105 SMB_QUERY_FILE_SYSTEM_INFO */ |
| 4272 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4273 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4274 | FILE_SYSTEM_ATTRIBUTE_INFO *response_data; |
| 4275 | int rc = 0; |
| 4276 | int bytes_returned = 0; |
| 4277 | __u16 params, byte_count; |
| 4278 | |
| 4279 | cFYI(1, ("In QFSAttributeInfo")); |
| 4280 | QFSAttributeRetry: |
| 4281 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4282 | (void **) &pSMBr); |
| 4283 | if (rc) |
| 4284 | return rc; |
| 4285 | |
| 4286 | params = 2; /* level */ |
| 4287 | pSMB->TotalDataCount = 0; |
| 4288 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4289 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4290 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4291 | pSMB->MaxSetupCount = 0; |
| 4292 | pSMB->Reserved = 0; |
| 4293 | pSMB->Flags = 0; |
| 4294 | pSMB->Timeout = 0; |
| 4295 | pSMB->Reserved2 = 0; |
| 4296 | byte_count = params + 1 /* pad */ ; |
| 4297 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 4298 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 4299 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4300 | struct smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | pSMB->DataCount = 0; |
| 4302 | pSMB->DataOffset = 0; |
| 4303 | pSMB->SetupCount = 1; |
| 4304 | pSMB->Reserved3 = 0; |
| 4305 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4306 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_ATTRIBUTE_INFO); |
| 4307 | pSMB->hdr.smb_buf_length += byte_count; |
| 4308 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4309 | |
| 4310 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4311 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4312 | if (rc) { |
| 4313 | cERROR(1, ("Send error in QFSAttributeInfo = %d", rc)); |
| 4314 | } else { /* decode response */ |
| 4315 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 4316 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4317 | if (rc || (pSMBr->ByteCount < 13)) { |
| 4318 | /* BB also check if enough bytes returned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4319 | rc = -EIO; /* bad smb */ |
| 4320 | } else { |
| 4321 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 4322 | response_data = |
| 4323 | (FILE_SYSTEM_ATTRIBUTE_INFO |
| 4324 | *) (((char *) &pSMBr->hdr.Protocol) + |
| 4325 | data_offset); |
| 4326 | memcpy(&tcon->fsAttrInfo, response_data, |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4327 | sizeof(FILE_SYSTEM_ATTRIBUTE_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4328 | } |
| 4329 | } |
| 4330 | cifs_buf_release(pSMB); |
| 4331 | |
| 4332 | if (rc == -EAGAIN) |
| 4333 | goto QFSAttributeRetry; |
| 4334 | |
| 4335 | return rc; |
| 4336 | } |
| 4337 | |
| 4338 | int |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4339 | CIFSSMBQFSDeviceInfo(const int xid, struct cifsTconInfo *tcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4340 | { |
| 4341 | /* level 0x104 SMB_QUERY_FILE_SYSTEM_INFO */ |
| 4342 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4343 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4344 | FILE_SYSTEM_DEVICE_INFO *response_data; |
| 4345 | int rc = 0; |
| 4346 | int bytes_returned = 0; |
| 4347 | __u16 params, byte_count; |
| 4348 | |
| 4349 | cFYI(1, ("In QFSDeviceInfo")); |
| 4350 | QFSDeviceRetry: |
| 4351 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4352 | (void **) &pSMBr); |
| 4353 | if (rc) |
| 4354 | return rc; |
| 4355 | |
| 4356 | params = 2; /* level */ |
| 4357 | pSMB->TotalDataCount = 0; |
| 4358 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4359 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4360 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4361 | pSMB->MaxSetupCount = 0; |
| 4362 | pSMB->Reserved = 0; |
| 4363 | pSMB->Flags = 0; |
| 4364 | pSMB->Timeout = 0; |
| 4365 | pSMB->Reserved2 = 0; |
| 4366 | byte_count = params + 1 /* pad */ ; |
| 4367 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 4368 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 4369 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4370 | struct smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4371 | |
| 4372 | pSMB->DataCount = 0; |
| 4373 | pSMB->DataOffset = 0; |
| 4374 | pSMB->SetupCount = 1; |
| 4375 | pSMB->Reserved3 = 0; |
| 4376 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4377 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_DEVICE_INFO); |
| 4378 | pSMB->hdr.smb_buf_length += byte_count; |
| 4379 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4380 | |
| 4381 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4382 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4383 | if (rc) { |
| 4384 | cFYI(1, ("Send error in QFSDeviceInfo = %d", rc)); |
| 4385 | } else { /* decode response */ |
| 4386 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 4387 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 4388 | if (rc || (pSMBr->ByteCount < sizeof(FILE_SYSTEM_DEVICE_INFO))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4389 | rc = -EIO; /* bad smb */ |
| 4390 | else { |
| 4391 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 4392 | response_data = |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4393 | (FILE_SYSTEM_DEVICE_INFO *) |
| 4394 | (((char *) &pSMBr->hdr.Protocol) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4395 | data_offset); |
| 4396 | memcpy(&tcon->fsDevInfo, response_data, |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4397 | sizeof(FILE_SYSTEM_DEVICE_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | } |
| 4399 | } |
| 4400 | cifs_buf_release(pSMB); |
| 4401 | |
| 4402 | if (rc == -EAGAIN) |
| 4403 | goto QFSDeviceRetry; |
| 4404 | |
| 4405 | return rc; |
| 4406 | } |
| 4407 | |
| 4408 | int |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4409 | CIFSSMBQFSUnixInfo(const int xid, struct cifsTconInfo *tcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4410 | { |
| 4411 | /* level 0x200 SMB_QUERY_CIFS_UNIX_INFO */ |
| 4412 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4413 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4414 | FILE_SYSTEM_UNIX_INFO *response_data; |
| 4415 | int rc = 0; |
| 4416 | int bytes_returned = 0; |
| 4417 | __u16 params, byte_count; |
| 4418 | |
| 4419 | cFYI(1, ("In QFSUnixInfo")); |
| 4420 | QFSUnixRetry: |
| 4421 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4422 | (void **) &pSMBr); |
| 4423 | if (rc) |
| 4424 | return rc; |
| 4425 | |
| 4426 | params = 2; /* level */ |
| 4427 | pSMB->TotalDataCount = 0; |
| 4428 | pSMB->DataCount = 0; |
| 4429 | pSMB->DataOffset = 0; |
| 4430 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4431 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4432 | pSMB->MaxDataCount = cpu_to_le16(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4433 | pSMB->MaxSetupCount = 0; |
| 4434 | pSMB->Reserved = 0; |
| 4435 | pSMB->Flags = 0; |
| 4436 | pSMB->Timeout = 0; |
| 4437 | pSMB->Reserved2 = 0; |
| 4438 | byte_count = params + 1 /* pad */ ; |
| 4439 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4440 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4441 | pSMB->ParameterOffset = cpu_to_le16(offsetof(struct |
| 4442 | smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | pSMB->SetupCount = 1; |
| 4444 | pSMB->Reserved3 = 0; |
| 4445 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4446 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_CIFS_UNIX_INFO); |
| 4447 | pSMB->hdr.smb_buf_length += byte_count; |
| 4448 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4449 | |
| 4450 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4451 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4452 | if (rc) { |
| 4453 | cERROR(1, ("Send error in QFSUnixInfo = %d", rc)); |
| 4454 | } else { /* decode response */ |
| 4455 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 4456 | |
| 4457 | if (rc || (pSMBr->ByteCount < 13)) { |
| 4458 | rc = -EIO; /* bad smb */ |
| 4459 | } else { |
| 4460 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 4461 | response_data = |
| 4462 | (FILE_SYSTEM_UNIX_INFO |
| 4463 | *) (((char *) &pSMBr->hdr.Protocol) + |
| 4464 | data_offset); |
| 4465 | memcpy(&tcon->fsUnixInfo, response_data, |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4466 | sizeof(FILE_SYSTEM_UNIX_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4467 | } |
| 4468 | } |
| 4469 | cifs_buf_release(pSMB); |
| 4470 | |
| 4471 | if (rc == -EAGAIN) |
| 4472 | goto QFSUnixRetry; |
| 4473 | |
| 4474 | |
| 4475 | return rc; |
| 4476 | } |
| 4477 | |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4478 | int |
Steve French | 45abc6e | 2005-06-23 13:42:03 -0500 | [diff] [blame] | 4479 | CIFSSMBSetFSUnixInfo(const int xid, struct cifsTconInfo *tcon, __u64 cap) |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4480 | { |
| 4481 | /* level 0x200 SMB_SET_CIFS_UNIX_INFO */ |
| 4482 | TRANSACTION2_SETFSI_REQ *pSMB = NULL; |
| 4483 | TRANSACTION2_SETFSI_RSP *pSMBr = NULL; |
| 4484 | int rc = 0; |
| 4485 | int bytes_returned = 0; |
| 4486 | __u16 params, param_offset, offset, byte_count; |
| 4487 | |
| 4488 | cFYI(1, ("In SETFSUnixInfo")); |
| 4489 | SETFSUnixRetry: |
Steve French | f26282c | 2006-03-01 09:17:37 +0000 | [diff] [blame] | 4490 | /* BB switch to small buf init to save memory */ |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4491 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4492 | (void **) &pSMBr); |
| 4493 | if (rc) |
| 4494 | return rc; |
| 4495 | |
| 4496 | params = 4; /* 2 bytes zero followed by info level. */ |
| 4497 | pSMB->MaxSetupCount = 0; |
| 4498 | pSMB->Reserved = 0; |
| 4499 | pSMB->Flags = 0; |
| 4500 | pSMB->Timeout = 0; |
| 4501 | pSMB->Reserved2 = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4502 | param_offset = offsetof(struct smb_com_transaction2_setfsi_req, FileNum) |
| 4503 | - 4; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4504 | offset = param_offset + params; |
| 4505 | |
| 4506 | pSMB->MaxParameterCount = cpu_to_le16(4); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4507 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4508 | pSMB->MaxDataCount = cpu_to_le16(100); |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4509 | pSMB->SetupCount = 1; |
| 4510 | pSMB->Reserved3 = 0; |
| 4511 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FS_INFORMATION); |
| 4512 | byte_count = 1 /* pad */ + params + 12; |
| 4513 | |
| 4514 | pSMB->DataCount = cpu_to_le16(12); |
| 4515 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4516 | pSMB->TotalDataCount = pSMB->DataCount; |
| 4517 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4518 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 4519 | pSMB->DataOffset = cpu_to_le16(offset); |
| 4520 | |
| 4521 | /* Params. */ |
| 4522 | pSMB->FileNum = 0; |
| 4523 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_CIFS_UNIX_INFO); |
| 4524 | |
| 4525 | /* Data. */ |
| 4526 | pSMB->ClientUnixMajor = cpu_to_le16(CIFS_UNIX_MAJOR_VERSION); |
| 4527 | pSMB->ClientUnixMinor = cpu_to_le16(CIFS_UNIX_MINOR_VERSION); |
| 4528 | pSMB->ClientUnixCap = cpu_to_le64(cap); |
| 4529 | |
| 4530 | pSMB->hdr.smb_buf_length += byte_count; |
| 4531 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4532 | |
| 4533 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4534 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4535 | if (rc) { |
| 4536 | cERROR(1, ("Send error in SETFSUnixInfo = %d", rc)); |
| 4537 | } else { /* decode response */ |
| 4538 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4539 | if (rc) |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4540 | rc = -EIO; /* bad smb */ |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 4541 | } |
| 4542 | cifs_buf_release(pSMB); |
| 4543 | |
| 4544 | if (rc == -EAGAIN) |
| 4545 | goto SETFSUnixRetry; |
| 4546 | |
| 4547 | return rc; |
| 4548 | } |
| 4549 | |
| 4550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4551 | |
| 4552 | int |
| 4553 | CIFSSMBQFSPosixInfo(const int xid, struct cifsTconInfo *tcon, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4554 | struct kstatfs *FSData) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4555 | { |
| 4556 | /* level 0x201 SMB_QUERY_CIFS_POSIX_INFO */ |
| 4557 | TRANSACTION2_QFSI_REQ *pSMB = NULL; |
| 4558 | TRANSACTION2_QFSI_RSP *pSMBr = NULL; |
| 4559 | FILE_SYSTEM_POSIX_INFO *response_data; |
| 4560 | int rc = 0; |
| 4561 | int bytes_returned = 0; |
| 4562 | __u16 params, byte_count; |
| 4563 | |
| 4564 | cFYI(1, ("In QFSPosixInfo")); |
| 4565 | QFSPosixRetry: |
| 4566 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4567 | (void **) &pSMBr); |
| 4568 | if (rc) |
| 4569 | return rc; |
| 4570 | |
| 4571 | params = 2; /* level */ |
| 4572 | pSMB->TotalDataCount = 0; |
| 4573 | pSMB->DataCount = 0; |
| 4574 | pSMB->DataOffset = 0; |
| 4575 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4576 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4577 | pSMB->MaxDataCount = cpu_to_le16(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4578 | pSMB->MaxSetupCount = 0; |
| 4579 | pSMB->Reserved = 0; |
| 4580 | pSMB->Flags = 0; |
| 4581 | pSMB->Timeout = 0; |
| 4582 | pSMB->Reserved2 = 0; |
| 4583 | byte_count = params + 1 /* pad */ ; |
| 4584 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4585 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4586 | pSMB->ParameterOffset = cpu_to_le16(offsetof(struct |
| 4587 | smb_com_transaction2_qfsi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4588 | pSMB->SetupCount = 1; |
| 4589 | pSMB->Reserved3 = 0; |
| 4590 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION); |
| 4591 | pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_FS_INFO); |
| 4592 | pSMB->hdr.smb_buf_length += byte_count; |
| 4593 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4594 | |
| 4595 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4596 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 4597 | if (rc) { |
| 4598 | cFYI(1, ("Send error in QFSUnixInfo = %d", rc)); |
| 4599 | } else { /* decode response */ |
| 4600 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 4601 | |
| 4602 | if (rc || (pSMBr->ByteCount < 13)) { |
| 4603 | rc = -EIO; /* bad smb */ |
| 4604 | } else { |
| 4605 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
| 4606 | response_data = |
| 4607 | (FILE_SYSTEM_POSIX_INFO |
| 4608 | *) (((char *) &pSMBr->hdr.Protocol) + |
| 4609 | data_offset); |
| 4610 | FSData->f_bsize = |
| 4611 | le32_to_cpu(response_data->BlockSize); |
| 4612 | FSData->f_blocks = |
| 4613 | le64_to_cpu(response_data->TotalBlocks); |
| 4614 | FSData->f_bfree = |
| 4615 | le64_to_cpu(response_data->BlocksAvail); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4616 | if (response_data->UserBlocksAvail == cpu_to_le64(-1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4617 | FSData->f_bavail = FSData->f_bfree; |
| 4618 | } else { |
| 4619 | FSData->f_bavail = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4620 | le64_to_cpu(response_data->UserBlocksAvail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4621 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4622 | if (response_data->TotalFileNodes != cpu_to_le64(-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4623 | FSData->f_files = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4624 | le64_to_cpu(response_data->TotalFileNodes); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4625 | if (response_data->FreeFileNodes != cpu_to_le64(-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4626 | FSData->f_ffree = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4627 | le64_to_cpu(response_data->FreeFileNodes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | } |
| 4629 | } |
| 4630 | cifs_buf_release(pSMB); |
| 4631 | |
| 4632 | if (rc == -EAGAIN) |
| 4633 | goto QFSPosixRetry; |
| 4634 | |
| 4635 | return rc; |
| 4636 | } |
| 4637 | |
| 4638 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4639 | /* We can not use write of zero bytes trick to |
| 4640 | set file size due to need for large file support. Also note that |
| 4641 | this SetPathInfo is preferred to SetFileInfo based method in next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4642 | routine which is only needed to work around a sharing violation bug |
| 4643 | in Samba which this routine can run into */ |
| 4644 | |
| 4645 | int |
| 4646 | CIFSSMBSetEOF(const int xid, struct cifsTconInfo *tcon, const char *fileName, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4647 | __u64 size, bool SetAllocation, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4648 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | { |
| 4650 | struct smb_com_transaction2_spi_req *pSMB = NULL; |
| 4651 | struct smb_com_transaction2_spi_rsp *pSMBr = NULL; |
| 4652 | struct file_end_of_file_info *parm_data; |
| 4653 | int name_len; |
| 4654 | int rc = 0; |
| 4655 | int bytes_returned = 0; |
| 4656 | __u16 params, byte_count, data_count, param_offset, offset; |
| 4657 | |
| 4658 | cFYI(1, ("In SetEOF")); |
| 4659 | SetEOFRetry: |
| 4660 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4661 | (void **) &pSMBr); |
| 4662 | if (rc) |
| 4663 | return rc; |
| 4664 | |
| 4665 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 4666 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 4667 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4668 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4669 | name_len++; /* trailing null */ |
| 4670 | name_len *= 2; |
Steve French | 3e87d80 | 2005-09-18 20:49:21 -0700 | [diff] [blame] | 4671 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4672 | name_len = strnlen(fileName, PATH_MAX); |
| 4673 | name_len++; /* trailing null */ |
| 4674 | strncpy(pSMB->FileName, fileName, name_len); |
| 4675 | } |
| 4676 | params = 6 + name_len; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4677 | data_count = sizeof(struct file_end_of_file_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4678 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 3e87d80 | 2005-09-18 20:49:21 -0700 | [diff] [blame] | 4679 | pSMB->MaxDataCount = cpu_to_le16(4100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4680 | pSMB->MaxSetupCount = 0; |
| 4681 | pSMB->Reserved = 0; |
| 4682 | pSMB->Flags = 0; |
| 4683 | pSMB->Timeout = 0; |
| 4684 | pSMB->Reserved2 = 0; |
| 4685 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4686 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4687 | offset = param_offset + params; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4688 | if (SetAllocation) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4689 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4690 | pSMB->InformationLevel = |
| 4691 | cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2); |
| 4692 | else |
| 4693 | pSMB->InformationLevel = |
| 4694 | cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO); |
| 4695 | } else /* Set File Size */ { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4696 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4697 | pSMB->InformationLevel = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4698 | cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4699 | else |
| 4700 | pSMB->InformationLevel = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4701 | cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4702 | } |
| 4703 | |
| 4704 | parm_data = |
| 4705 | (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) + |
| 4706 | offset); |
| 4707 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 4708 | pSMB->DataOffset = cpu_to_le16(offset); |
| 4709 | pSMB->SetupCount = 1; |
| 4710 | pSMB->Reserved3 = 0; |
| 4711 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 4712 | byte_count = 3 /* pad */ + params + data_count; |
| 4713 | pSMB->DataCount = cpu_to_le16(data_count); |
| 4714 | pSMB->TotalDataCount = pSMB->DataCount; |
| 4715 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4716 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4717 | pSMB->Reserved4 = 0; |
| 4718 | pSMB->hdr.smb_buf_length += byte_count; |
| 4719 | parm_data->FileSize = cpu_to_le64(size); |
| 4720 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4721 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4722 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4723 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4724 | cFYI(1, ("SetPathInfo (file size) returned %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4725 | |
| 4726 | cifs_buf_release(pSMB); |
| 4727 | |
| 4728 | if (rc == -EAGAIN) |
| 4729 | goto SetEOFRetry; |
| 4730 | |
| 4731 | return rc; |
| 4732 | } |
| 4733 | |
| 4734 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4735 | CIFSSMBSetFileSize(const int xid, struct cifsTconInfo *tcon, __u64 size, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4736 | __u16 fid, __u32 pid_of_opener, bool SetAllocation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | { |
| 4738 | struct smb_com_transaction2_sfi_req *pSMB = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | char *data_offset; |
| 4740 | struct file_end_of_file_info *parm_data; |
| 4741 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | __u16 params, param_offset, offset, byte_count, count; |
| 4743 | |
| 4744 | cFYI(1, ("SetFileSize (via SetFileInfo) %lld", |
| 4745 | (long long)size)); |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 4746 | rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB); |
| 4747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4748 | if (rc) |
| 4749 | return rc; |
| 4750 | |
| 4751 | pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener); |
| 4752 | pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4754 | params = 6; |
| 4755 | pSMB->MaxSetupCount = 0; |
| 4756 | pSMB->Reserved = 0; |
| 4757 | pSMB->Flags = 0; |
| 4758 | pSMB->Timeout = 0; |
| 4759 | pSMB->Reserved2 = 0; |
| 4760 | param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4; |
| 4761 | offset = param_offset + params; |
| 4762 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4763 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4764 | |
| 4765 | count = sizeof(struct file_end_of_file_info); |
| 4766 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4767 | /* BB find exact max SMB PDU from sess structure BB */ |
| 4768 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 | pSMB->SetupCount = 1; |
| 4770 | pSMB->Reserved3 = 0; |
| 4771 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION); |
| 4772 | byte_count = 3 /* pad */ + params + count; |
| 4773 | pSMB->DataCount = cpu_to_le16(count); |
| 4774 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4775 | pSMB->TotalDataCount = pSMB->DataCount; |
| 4776 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4777 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 4778 | parm_data = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4779 | (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) |
| 4780 | + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | pSMB->DataOffset = cpu_to_le16(offset); |
| 4782 | parm_data->FileSize = cpu_to_le64(size); |
| 4783 | pSMB->Fid = fid; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 4784 | if (SetAllocation) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4785 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4786 | pSMB->InformationLevel = |
| 4787 | cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2); |
| 4788 | else |
| 4789 | pSMB->InformationLevel = |
| 4790 | cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4791 | } else /* Set File Size */ { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4792 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4793 | pSMB->InformationLevel = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4794 | cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4795 | else |
| 4796 | pSMB->InformationLevel = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4797 | cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4798 | } |
| 4799 | pSMB->Reserved4 = 0; |
| 4800 | pSMB->hdr.smb_buf_length += byte_count; |
| 4801 | pSMB->ByteCount = cpu_to_le16(byte_count); |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 4802 | rc = SendReceiveNoRsp(xid, tcon->ses, (struct smb_hdr *) pSMB, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4803 | if (rc) { |
| 4804 | cFYI(1, |
| 4805 | ("Send error in SetFileInfo (SetFileSize) = %d", |
| 4806 | rc)); |
| 4807 | } |
| 4808 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4809 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4810 | since file handle passed in no longer valid */ |
| 4811 | |
| 4812 | return rc; |
| 4813 | } |
| 4814 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4815 | /* Some legacy servers such as NT4 require that the file times be set on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4816 | an open handle, rather than by pathname - this is awkward due to |
| 4817 | potential access conflicts on the open, but it is unavoidable for these |
| 4818 | old servers since the only other choice is to go from 100 nanosecond DCE |
| 4819 | time and resort to the original setpathinfo level which takes the ancient |
| 4820 | DOS time format with 2 second granularity */ |
| 4821 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4822 | CIFSSMBSetFileTimes(const int xid, struct cifsTconInfo *tcon, |
| 4823 | const FILE_BASIC_INFO *data, __u16 fid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4824 | { |
| 4825 | struct smb_com_transaction2_sfi_req *pSMB = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4826 | char *data_offset; |
| 4827 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4828 | __u16 params, param_offset, offset, byte_count, count; |
| 4829 | |
| 4830 | cFYI(1, ("Set Times (via SetFileInfo)")); |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 4831 | rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB); |
| 4832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4833 | if (rc) |
| 4834 | return rc; |
| 4835 | |
| 4836 | /* At this point there is no need to override the current pid |
| 4837 | with the pid of the opener, but that could change if we someday |
| 4838 | use an existing handle (rather than opening one on the fly) */ |
| 4839 | /* pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener); |
| 4840 | pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));*/ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | params = 6; |
| 4843 | pSMB->MaxSetupCount = 0; |
| 4844 | pSMB->Reserved = 0; |
| 4845 | pSMB->Flags = 0; |
| 4846 | pSMB->Timeout = 0; |
| 4847 | pSMB->Reserved2 = 0; |
| 4848 | param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4; |
| 4849 | offset = param_offset + params; |
| 4850 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4851 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4852 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4853 | count = sizeof(FILE_BASIC_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4854 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4855 | /* BB find max SMB PDU from sess */ |
| 4856 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4857 | pSMB->SetupCount = 1; |
| 4858 | pSMB->Reserved3 = 0; |
| 4859 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION); |
| 4860 | byte_count = 3 /* pad */ + params + count; |
| 4861 | pSMB->DataCount = cpu_to_le16(count); |
| 4862 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4863 | pSMB->TotalDataCount = pSMB->DataCount; |
| 4864 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4865 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 4866 | pSMB->DataOffset = cpu_to_le16(offset); |
| 4867 | pSMB->Fid = fid; |
| 4868 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4869 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2); |
| 4870 | else |
| 4871 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO); |
| 4872 | pSMB->Reserved4 = 0; |
| 4873 | pSMB->hdr.smb_buf_length += byte_count; |
| 4874 | pSMB->ByteCount = cpu_to_le16(byte_count); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4875 | memcpy(data_offset, data, sizeof(FILE_BASIC_INFO)); |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 4876 | rc = SendReceiveNoRsp(xid, tcon->ses, (struct smb_hdr *) pSMB, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4877 | if (rc) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4878 | cFYI(1, ("Send error in Set Time (SetFileInfo) = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4879 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4880 | /* Note: On -EAGAIN error only caller can retry on handle based calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | since file handle passed in no longer valid */ |
| 4882 | |
| 4883 | return rc; |
| 4884 | } |
| 4885 | |
| 4886 | |
| 4887 | int |
| 4888 | CIFSSMBSetTimes(const int xid, struct cifsTconInfo *tcon, const char *fileName, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4889 | const FILE_BASIC_INFO *data, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4890 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | { |
| 4892 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 4893 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 4894 | int name_len; |
| 4895 | int rc = 0; |
| 4896 | int bytes_returned = 0; |
| 4897 | char *data_offset; |
| 4898 | __u16 params, param_offset, offset, byte_count, count; |
| 4899 | |
| 4900 | cFYI(1, ("In SetTimes")); |
| 4901 | |
| 4902 | SetTimesRetry: |
| 4903 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 4904 | (void **) &pSMBr); |
| 4905 | if (rc) |
| 4906 | return rc; |
| 4907 | |
| 4908 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 4909 | name_len = |
Steve French | b1a4569 | 2005-05-17 16:07:23 -0500 | [diff] [blame] | 4910 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 4911 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4912 | name_len++; /* trailing null */ |
| 4913 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4914 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4915 | name_len = strnlen(fileName, PATH_MAX); |
| 4916 | name_len++; /* trailing null */ |
| 4917 | strncpy(pSMB->FileName, fileName, name_len); |
| 4918 | } |
| 4919 | |
| 4920 | params = 6 + name_len; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4921 | count = sizeof(FILE_BASIC_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 4923 | /* BB find max SMB PDU from sess structure BB */ |
| 4924 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4925 | pSMB->MaxSetupCount = 0; |
| 4926 | pSMB->Reserved = 0; |
| 4927 | pSMB->Flags = 0; |
| 4928 | pSMB->Timeout = 0; |
| 4929 | pSMB->Reserved2 = 0; |
| 4930 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4931 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4932 | offset = param_offset + params; |
| 4933 | data_offset = (char *) (&pSMB->hdr.Protocol) + offset; |
| 4934 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 4935 | pSMB->DataOffset = cpu_to_le16(offset); |
| 4936 | pSMB->SetupCount = 1; |
| 4937 | pSMB->Reserved3 = 0; |
| 4938 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 4939 | byte_count = 3 /* pad */ + params + count; |
| 4940 | |
| 4941 | pSMB->DataCount = cpu_to_le16(count); |
| 4942 | pSMB->ParameterCount = cpu_to_le16(params); |
| 4943 | pSMB->TotalDataCount = pSMB->DataCount; |
| 4944 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 4945 | if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU) |
| 4946 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2); |
| 4947 | else |
| 4948 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO); |
| 4949 | pSMB->Reserved4 = 0; |
| 4950 | pSMB->hdr.smb_buf_length += byte_count; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 4951 | memcpy(data_offset, data, sizeof(FILE_BASIC_INFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4952 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 4953 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 4954 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4955 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4956 | cFYI(1, ("SetPathInfo (times) returned %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4957 | |
| 4958 | cifs_buf_release(pSMB); |
| 4959 | |
| 4960 | if (rc == -EAGAIN) |
| 4961 | goto SetTimesRetry; |
| 4962 | |
| 4963 | return rc; |
| 4964 | } |
| 4965 | |
| 4966 | /* Can not be used to set time stamps yet (due to old DOS time format) */ |
| 4967 | /* Can be used to set attributes */ |
| 4968 | #if 0 /* Possibly not needed - since it turns out that strangely NT4 has a bug |
| 4969 | handling it anyway and NT4 was what we thought it would be needed for |
| 4970 | Do not delete it until we prove whether needed for Win9x though */ |
| 4971 | int |
| 4972 | CIFSSMBSetAttrLegacy(int xid, struct cifsTconInfo *tcon, char *fileName, |
| 4973 | __u16 dos_attrs, const struct nls_table *nls_codepage) |
| 4974 | { |
| 4975 | SETATTR_REQ *pSMB = NULL; |
| 4976 | SETATTR_RSP *pSMBr = NULL; |
| 4977 | int rc = 0; |
| 4978 | int bytes_returned; |
| 4979 | int name_len; |
| 4980 | |
| 4981 | cFYI(1, ("In SetAttrLegacy")); |
| 4982 | |
| 4983 | SetAttrLgcyRetry: |
| 4984 | rc = smb_init(SMB_COM_SETATTR, 8, tcon, (void **) &pSMB, |
| 4985 | (void **) &pSMBr); |
| 4986 | if (rc) |
| 4987 | return rc; |
| 4988 | |
| 4989 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 4990 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4991 | ConvertToUCS((__le16 *) pSMB->fileName, fileName, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4992 | PATH_MAX, nls_codepage); |
| 4993 | name_len++; /* trailing null */ |
| 4994 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4995 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4996 | name_len = strnlen(fileName, PATH_MAX); |
| 4997 | name_len++; /* trailing null */ |
| 4998 | strncpy(pSMB->fileName, fileName, name_len); |
| 4999 | } |
| 5000 | pSMB->attr = cpu_to_le16(dos_attrs); |
| 5001 | pSMB->BufferFormat = 0x04; |
| 5002 | pSMB->hdr.smb_buf_length += name_len + 1; |
| 5003 | pSMB->ByteCount = cpu_to_le16(name_len + 1); |
| 5004 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 5005 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 5006 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5007 | cFYI(1, ("Error in LegacySetAttr = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5008 | |
| 5009 | cifs_buf_release(pSMB); |
| 5010 | |
| 5011 | if (rc == -EAGAIN) |
| 5012 | goto SetAttrLgcyRetry; |
| 5013 | |
| 5014 | return rc; |
| 5015 | } |
| 5016 | #endif /* temporarily unneeded SetAttr legacy function */ |
| 5017 | |
| 5018 | int |
| 5019 | CIFSSMBUnixSetPerms(const int xid, struct cifsTconInfo *tcon, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5020 | char *fileName, __u64 mode, __u64 uid, __u64 gid, |
| 5021 | dev_t device, const struct nls_table *nls_codepage, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5022 | int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5023 | { |
| 5024 | TRANSACTION2_SPI_REQ *pSMB = NULL; |
| 5025 | TRANSACTION2_SPI_RSP *pSMBr = NULL; |
| 5026 | int name_len; |
| 5027 | int rc = 0; |
| 5028 | int bytes_returned = 0; |
| 5029 | FILE_UNIX_BASIC_INFO *data_offset; |
| 5030 | __u16 params, param_offset, offset, count, byte_count; |
| 5031 | |
| 5032 | cFYI(1, ("In SetUID/GID/Mode")); |
| 5033 | setPermsRetry: |
| 5034 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 5035 | (void **) &pSMBr); |
| 5036 | if (rc) |
| 5037 | return rc; |
| 5038 | |
| 5039 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 5040 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5041 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5042 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | name_len++; /* trailing null */ |
| 5044 | name_len *= 2; |
Steve French | 3e87d80 | 2005-09-18 20:49:21 -0700 | [diff] [blame] | 5045 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5046 | name_len = strnlen(fileName, PATH_MAX); |
| 5047 | name_len++; /* trailing null */ |
| 5048 | strncpy(pSMB->FileName, fileName, name_len); |
| 5049 | } |
| 5050 | |
| 5051 | params = 6 + name_len; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 5052 | count = sizeof(FILE_UNIX_BASIC_INFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5053 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 5054 | /* BB find max SMB PDU from sess structure BB */ |
| 5055 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5056 | pSMB->MaxSetupCount = 0; |
| 5057 | pSMB->Reserved = 0; |
| 5058 | pSMB->Flags = 0; |
| 5059 | pSMB->Timeout = 0; |
| 5060 | pSMB->Reserved2 = 0; |
| 5061 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5062 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5063 | offset = param_offset + params; |
| 5064 | data_offset = |
| 5065 | (FILE_UNIX_BASIC_INFO *) ((char *) &pSMB->hdr.Protocol + |
| 5066 | offset); |
| 5067 | memset(data_offset, 0, count); |
| 5068 | pSMB->DataOffset = cpu_to_le16(offset); |
| 5069 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 5070 | pSMB->SetupCount = 1; |
| 5071 | pSMB->Reserved3 = 0; |
| 5072 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 5073 | byte_count = 3 /* pad */ + params + count; |
| 5074 | pSMB->ParameterCount = cpu_to_le16(params); |
| 5075 | pSMB->DataCount = cpu_to_le16(count); |
| 5076 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 5077 | pSMB->TotalDataCount = pSMB->DataCount; |
| 5078 | pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC); |
| 5079 | pSMB->Reserved4 = 0; |
| 5080 | pSMB->hdr.smb_buf_length += byte_count; |
Steve French | c7af185 | 2007-03-01 04:11:22 +0000 | [diff] [blame] | 5081 | /* Samba server ignores set of file size to zero due to bugs in some |
| 5082 | older clients, but we should be precise - we use SetFileSize to |
| 5083 | set file size and do not want to truncate file size to zero |
| 5084 | accidently as happened on one Samba server beta by putting |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5085 | zero instead of -1 here */ |
Steve French | c7af185 | 2007-03-01 04:11:22 +0000 | [diff] [blame] | 5086 | data_offset->EndOfFile = NO_CHANGE_64; |
| 5087 | data_offset->NumOfBytes = NO_CHANGE_64; |
| 5088 | data_offset->LastStatusChange = NO_CHANGE_64; |
| 5089 | data_offset->LastAccessTime = NO_CHANGE_64; |
| 5090 | data_offset->LastModificationTime = NO_CHANGE_64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5091 | data_offset->Uid = cpu_to_le64(uid); |
| 5092 | data_offset->Gid = cpu_to_le64(gid); |
| 5093 | /* better to leave device as zero when it is */ |
| 5094 | data_offset->DevMajor = cpu_to_le64(MAJOR(device)); |
| 5095 | data_offset->DevMinor = cpu_to_le64(MINOR(device)); |
| 5096 | data_offset->Permissions = cpu_to_le64(mode); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5097 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5098 | if (S_ISREG(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5099 | data_offset->Type = cpu_to_le32(UNIX_FILE); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5100 | else if (S_ISDIR(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5101 | data_offset->Type = cpu_to_le32(UNIX_DIR); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5102 | else if (S_ISLNK(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5103 | data_offset->Type = cpu_to_le32(UNIX_SYMLINK); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5104 | else if (S_ISCHR(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | data_offset->Type = cpu_to_le32(UNIX_CHARDEV); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5106 | else if (S_ISBLK(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | data_offset->Type = cpu_to_le32(UNIX_BLOCKDEV); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5108 | else if (S_ISFIFO(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5109 | data_offset->Type = cpu_to_le32(UNIX_FIFO); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5110 | else if (S_ISSOCK(mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5111 | data_offset->Type = cpu_to_le32(UNIX_SOCKET); |
| 5112 | |
| 5113 | |
| 5114 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 5115 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 5116 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 5117 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5118 | cFYI(1, ("SetPathInfo (perms) returned %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5119 | |
| 5120 | if (pSMB) |
| 5121 | cifs_buf_release(pSMB); |
| 5122 | if (rc == -EAGAIN) |
| 5123 | goto setPermsRetry; |
| 5124 | return rc; |
| 5125 | } |
| 5126 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5127 | int CIFSSMBNotify(const int xid, struct cifsTconInfo *tcon, |
Steve French | 167a251 | 2005-08-24 20:03:11 -0700 | [diff] [blame] | 5128 | const int notify_subdirs, const __u16 netfid, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5129 | __u32 filter, struct file *pfile, int multishot, |
Steve French | 167a251 | 2005-08-24 20:03:11 -0700 | [diff] [blame] | 5130 | const struct nls_table *nls_codepage) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | { |
| 5132 | int rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5133 | struct smb_com_transaction_change_notify_req *pSMB = NULL; |
| 5134 | struct smb_com_ntransaction_change_notify_rsp *pSMBr = NULL; |
Steve French | abb15b8 | 2005-08-24 18:51:02 -0700 | [diff] [blame] | 5135 | struct dir_notify_req *dnotify_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5136 | int bytes_returned; |
| 5137 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5138 | cFYI(1, ("In CIFSSMBNotify for file handle %d", (int)netfid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5139 | rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5140 | (void **) &pSMBr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5141 | if (rc) |
| 5142 | return rc; |
| 5143 | |
| 5144 | pSMB->TotalParameterCount = 0 ; |
| 5145 | pSMB->TotalDataCount = 0; |
| 5146 | pSMB->MaxParameterCount = cpu_to_le32(2); |
| 5147 | /* BB find exact data count max from sess structure BB */ |
| 5148 | pSMB->MaxDataCount = 0; /* same in little endian or be */ |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 5149 | /* BB VERIFY verify which is correct for above BB */ |
| 5150 | pSMB->MaxDataCount = cpu_to_le32((tcon->ses->server->maxBuf - |
| 5151 | MAX_CIFS_HDR_SIZE) & 0xFFFFFF00); |
| 5152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | pSMB->MaxSetupCount = 4; |
| 5154 | pSMB->Reserved = 0; |
| 5155 | pSMB->ParameterOffset = 0; |
| 5156 | pSMB->DataCount = 0; |
| 5157 | pSMB->DataOffset = 0; |
| 5158 | pSMB->SetupCount = 4; /* single byte does not need le conversion */ |
| 5159 | pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_NOTIFY_CHANGE); |
| 5160 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5161 | if (notify_subdirs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5162 | pSMB->WatchTree = 1; /* one byte - no le conversion needed */ |
| 5163 | pSMB->Reserved2 = 0; |
| 5164 | pSMB->CompletionFilter = cpu_to_le32(filter); |
| 5165 | pSMB->Fid = netfid; /* file handle always le */ |
| 5166 | pSMB->ByteCount = 0; |
| 5167 | |
| 5168 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 5169 | (struct smb_hdr *)pSMBr, &bytes_returned, |
| 5170 | CIFS_ASYNC_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5171 | if (rc) { |
| 5172 | cFYI(1, ("Error in Notify = %d", rc)); |
Steve French | ff5dbd9 | 2005-08-24 17:10:36 -0700 | [diff] [blame] | 5173 | } else { |
| 5174 | /* Add file to outstanding requests */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5175 | /* BB change to kmem cache alloc */ |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 5176 | dnotify_req = kmalloc( |
Steve French | 47c786e | 2005-10-11 20:03:18 -0700 | [diff] [blame] | 5177 | sizeof(struct dir_notify_req), |
| 5178 | GFP_KERNEL); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5179 | if (dnotify_req) { |
Steve French | 47c786e | 2005-10-11 20:03:18 -0700 | [diff] [blame] | 5180 | dnotify_req->Pid = pSMB->hdr.Pid; |
| 5181 | dnotify_req->PidHigh = pSMB->hdr.PidHigh; |
| 5182 | dnotify_req->Mid = pSMB->hdr.Mid; |
| 5183 | dnotify_req->Tid = pSMB->hdr.Tid; |
| 5184 | dnotify_req->Uid = pSMB->hdr.Uid; |
| 5185 | dnotify_req->netfid = netfid; |
| 5186 | dnotify_req->pfile = pfile; |
| 5187 | dnotify_req->filter = filter; |
| 5188 | dnotify_req->multishot = multishot; |
| 5189 | spin_lock(&GlobalMid_Lock); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5190 | list_add_tail(&dnotify_req->lhead, |
Steve French | 47c786e | 2005-10-11 20:03:18 -0700 | [diff] [blame] | 5191 | &GlobalDnotifyReqList); |
| 5192 | spin_unlock(&GlobalMid_Lock); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5193 | } else |
Steve French | 47c786e | 2005-10-11 20:03:18 -0700 | [diff] [blame] | 5194 | rc = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5195 | } |
| 5196 | cifs_buf_release(pSMB); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5197 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5198 | } |
| 5199 | #ifdef CONFIG_CIFS_XATTR |
| 5200 | ssize_t |
| 5201 | CIFSSMBQAllEAs(const int xid, struct cifsTconInfo *tcon, |
| 5202 | const unsigned char *searchName, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5203 | char *EAData, size_t buf_size, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5204 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5205 | { |
| 5206 | /* BB assumes one setup word */ |
| 5207 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 5208 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 5209 | int rc = 0; |
| 5210 | int bytes_returned; |
| 5211 | int name_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5212 | struct fea *temp_fea; |
| 5213 | char *temp_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5214 | __u16 params, byte_count; |
| 5215 | |
| 5216 | cFYI(1, ("In Query All EAs path %s", searchName)); |
| 5217 | QAllEAsRetry: |
| 5218 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 5219 | (void **) &pSMBr); |
| 5220 | if (rc) |
| 5221 | return rc; |
| 5222 | |
| 5223 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 5224 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5225 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5226 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5227 | name_len++; /* trailing null */ |
| 5228 | name_len *= 2; |
| 5229 | } else { /* BB improve the check for buffer overruns BB */ |
| 5230 | name_len = strnlen(searchName, PATH_MAX); |
| 5231 | name_len++; /* trailing null */ |
| 5232 | strncpy(pSMB->FileName, searchName, name_len); |
| 5233 | } |
| 5234 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5235 | params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | pSMB->TotalDataCount = 0; |
| 5237 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 5238 | /* BB find exact max SMB PDU from sess structure BB */ |
| 5239 | pSMB->MaxDataCount = cpu_to_le16(4000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | pSMB->MaxSetupCount = 0; |
| 5241 | pSMB->Reserved = 0; |
| 5242 | pSMB->Flags = 0; |
| 5243 | pSMB->Timeout = 0; |
| 5244 | pSMB->Reserved2 = 0; |
| 5245 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5246 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5247 | pSMB->DataCount = 0; |
| 5248 | pSMB->DataOffset = 0; |
| 5249 | pSMB->SetupCount = 1; |
| 5250 | pSMB->Reserved3 = 0; |
| 5251 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 5252 | byte_count = params + 1 /* pad */ ; |
| 5253 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 5254 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 5255 | pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS); |
| 5256 | pSMB->Reserved4 = 0; |
| 5257 | pSMB->hdr.smb_buf_length += byte_count; |
| 5258 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 5259 | |
| 5260 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 5261 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 5262 | if (rc) { |
| 5263 | cFYI(1, ("Send error in QueryAllEAs = %d", rc)); |
| 5264 | } else { /* decode response */ |
| 5265 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 5266 | |
| 5267 | /* BB also check enough total bytes returned */ |
| 5268 | /* BB we need to improve the validity checking |
| 5269 | of these trans2 responses */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5270 | if (rc || (pSMBr->ByteCount < 4)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5271 | rc = -EIO; /* bad smb */ |
| 5272 | /* else if (pFindData){ |
| 5273 | memcpy((char *) pFindData, |
| 5274 | (char *) &pSMBr->hdr.Protocol + |
| 5275 | data_offset, kl); |
| 5276 | }*/ else { |
| 5277 | /* check that length of list is not more than bcc */ |
| 5278 | /* check that each entry does not go beyond length |
| 5279 | of list */ |
| 5280 | /* check that each element of each entry does not |
| 5281 | go beyond end of list */ |
| 5282 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5283 | struct fealist *ea_response_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | rc = 0; |
| 5285 | /* validate_trans2_offsets() */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5286 | /* BB check if start of smb + data_offset > &bcc+ bcc */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5287 | ea_response_data = (struct fealist *) |
| 5288 | (((char *) &pSMBr->hdr.Protocol) + |
| 5289 | data_offset); |
| 5290 | name_len = le32_to_cpu(ea_response_data->list_len); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5291 | cFYI(1, ("ea length %d", name_len)); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5292 | if (name_len <= 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5293 | /* returned EA size zeroed at top of function */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5294 | cFYI(1, ("empty EA list returned from server")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | } else { |
| 5296 | /* account for ea list len */ |
| 5297 | name_len -= 4; |
| 5298 | temp_fea = ea_response_data->list; |
| 5299 | temp_ptr = (char *)temp_fea; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5300 | while (name_len > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5301 | __u16 value_len; |
| 5302 | name_len -= 4; |
| 5303 | temp_ptr += 4; |
| 5304 | rc += temp_fea->name_len; |
| 5305 | /* account for prefix user. and trailing null */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5306 | rc = rc + 5 + 1; |
| 5307 | if (rc < (int)buf_size) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5308 | memcpy(EAData, "user.", 5); |
| 5309 | EAData += 5; |
| 5310 | memcpy(EAData, temp_ptr, |
| 5311 | temp_fea->name_len); |
| 5312 | EAData += temp_fea->name_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5313 | /* null terminate name */ |
| 5314 | *EAData = 0; |
| 5315 | EAData = EAData + 1; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5316 | } else if (buf_size == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5317 | /* skip copy - calc size only */ |
| 5318 | } else { |
| 5319 | /* stop before overrun buffer */ |
| 5320 | rc = -ERANGE; |
| 5321 | break; |
| 5322 | } |
| 5323 | name_len -= temp_fea->name_len; |
| 5324 | temp_ptr += temp_fea->name_len; |
| 5325 | /* account for trailing null */ |
| 5326 | name_len--; |
| 5327 | temp_ptr++; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5328 | value_len = |
| 5329 | le16_to_cpu(temp_fea->value_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | name_len -= value_len; |
| 5331 | temp_ptr += value_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5332 | /* BB check that temp_ptr is still |
| 5333 | within the SMB BB*/ |
| 5334 | |
| 5335 | /* no trailing null to account for |
| 5336 | in value len */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5337 | /* go on to next EA */ |
| 5338 | temp_fea = (struct fea *)temp_ptr; |
| 5339 | } |
| 5340 | } |
| 5341 | } |
| 5342 | } |
| 5343 | if (pSMB) |
| 5344 | cifs_buf_release(pSMB); |
| 5345 | if (rc == -EAGAIN) |
| 5346 | goto QAllEAsRetry; |
| 5347 | |
| 5348 | return (ssize_t)rc; |
| 5349 | } |
| 5350 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5351 | ssize_t CIFSSMBQueryEA(const int xid, struct cifsTconInfo *tcon, |
| 5352 | const unsigned char *searchName, const unsigned char *ea_name, |
| 5353 | unsigned char *ea_value, size_t buf_size, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5354 | const struct nls_table *nls_codepage, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | { |
| 5356 | TRANSACTION2_QPI_REQ *pSMB = NULL; |
| 5357 | TRANSACTION2_QPI_RSP *pSMBr = NULL; |
| 5358 | int rc = 0; |
| 5359 | int bytes_returned; |
| 5360 | int name_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5361 | struct fea *temp_fea; |
| 5362 | char *temp_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5363 | __u16 params, byte_count; |
| 5364 | |
| 5365 | cFYI(1, ("In Query EA path %s", searchName)); |
| 5366 | QEARetry: |
| 5367 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 5368 | (void **) &pSMBr); |
| 5369 | if (rc) |
| 5370 | return rc; |
| 5371 | |
| 5372 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 5373 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5374 | cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5375 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5376 | name_len++; /* trailing null */ |
| 5377 | name_len *= 2; |
| 5378 | } else { /* BB improve the check for buffer overruns BB */ |
| 5379 | name_len = strnlen(searchName, PATH_MAX); |
| 5380 | name_len++; /* trailing null */ |
| 5381 | strncpy(pSMB->FileName, searchName, name_len); |
| 5382 | } |
| 5383 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5384 | params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | pSMB->TotalDataCount = 0; |
| 5386 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 5387 | /* BB find exact max SMB PDU from sess structure BB */ |
| 5388 | pSMB->MaxDataCount = cpu_to_le16(4000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5389 | pSMB->MaxSetupCount = 0; |
| 5390 | pSMB->Reserved = 0; |
| 5391 | pSMB->Flags = 0; |
| 5392 | pSMB->Timeout = 0; |
| 5393 | pSMB->Reserved2 = 0; |
| 5394 | pSMB->ParameterOffset = cpu_to_le16(offsetof( |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5395 | struct smb_com_transaction2_qpi_req, InformationLevel) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5396 | pSMB->DataCount = 0; |
| 5397 | pSMB->DataOffset = 0; |
| 5398 | pSMB->SetupCount = 1; |
| 5399 | pSMB->Reserved3 = 0; |
| 5400 | pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION); |
| 5401 | byte_count = params + 1 /* pad */ ; |
| 5402 | pSMB->TotalParameterCount = cpu_to_le16(params); |
| 5403 | pSMB->ParameterCount = pSMB->TotalParameterCount; |
| 5404 | pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS); |
| 5405 | pSMB->Reserved4 = 0; |
| 5406 | pSMB->hdr.smb_buf_length += byte_count; |
| 5407 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 5408 | |
| 5409 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 5410 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
| 5411 | if (rc) { |
| 5412 | cFYI(1, ("Send error in Query EA = %d", rc)); |
| 5413 | } else { /* decode response */ |
| 5414 | rc = validate_t2((struct smb_t2_rsp *)pSMBr); |
| 5415 | |
| 5416 | /* BB also check enough total bytes returned */ |
| 5417 | /* BB we need to improve the validity checking |
| 5418 | of these trans2 responses */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5419 | if (rc || (pSMBr->ByteCount < 4)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5420 | rc = -EIO; /* bad smb */ |
| 5421 | /* else if (pFindData){ |
| 5422 | memcpy((char *) pFindData, |
| 5423 | (char *) &pSMBr->hdr.Protocol + |
| 5424 | data_offset, kl); |
| 5425 | }*/ else { |
| 5426 | /* check that length of list is not more than bcc */ |
| 5427 | /* check that each entry does not go beyond length |
| 5428 | of list */ |
| 5429 | /* check that each element of each entry does not |
| 5430 | go beyond end of list */ |
| 5431 | __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5432 | struct fealist *ea_response_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5433 | rc = -ENODATA; |
| 5434 | /* validate_trans2_offsets() */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5435 | /* BB check if start of smb + data_offset > &bcc+ bcc*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | ea_response_data = (struct fealist *) |
| 5437 | (((char *) &pSMBr->hdr.Protocol) + |
| 5438 | data_offset); |
| 5439 | name_len = le32_to_cpu(ea_response_data->list_len); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5440 | cFYI(1, ("ea length %d", name_len)); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5441 | if (name_len <= 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5442 | /* returned EA size zeroed at top of function */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5443 | cFYI(1, ("empty EA list returned from server")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5444 | } else { |
| 5445 | /* account for ea list len */ |
| 5446 | name_len -= 4; |
| 5447 | temp_fea = ea_response_data->list; |
| 5448 | temp_ptr = (char *)temp_fea; |
| 5449 | /* loop through checking if we have a matching |
| 5450 | name and then return the associated value */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5451 | while (name_len > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5452 | __u16 value_len; |
| 5453 | name_len -= 4; |
| 5454 | temp_ptr += 4; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5455 | value_len = |
| 5456 | le16_to_cpu(temp_fea->value_len); |
| 5457 | /* BB validate that value_len falls within SMB, |
| 5458 | even though maximum for name_len is 255 */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5459 | if (memcmp(temp_fea->name, ea_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5460 | temp_fea->name_len) == 0) { |
| 5461 | /* found a match */ |
| 5462 | rc = value_len; |
| 5463 | /* account for prefix user. and trailing null */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5464 | if (rc <= (int)buf_size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5465 | memcpy(ea_value, |
| 5466 | temp_fea->name+temp_fea->name_len+1, |
| 5467 | rc); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5468 | /* ea values, unlike ea |
| 5469 | names, are not null |
| 5470 | terminated */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5471 | } else if (buf_size == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5472 | /* skip copy - calc size only */ |
| 5473 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5474 | /* stop before overrun buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5475 | rc = -ERANGE; |
| 5476 | } |
| 5477 | break; |
| 5478 | } |
| 5479 | name_len -= temp_fea->name_len; |
| 5480 | temp_ptr += temp_fea->name_len; |
| 5481 | /* account for trailing null */ |
| 5482 | name_len--; |
| 5483 | temp_ptr++; |
| 5484 | name_len -= value_len; |
| 5485 | temp_ptr += value_len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5486 | /* No trailing null to account for in |
| 5487 | value_len. Go on to next EA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5488 | temp_fea = (struct fea *)temp_ptr; |
| 5489 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5490 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5491 | } |
| 5492 | } |
| 5493 | if (pSMB) |
| 5494 | cifs_buf_release(pSMB); |
| 5495 | if (rc == -EAGAIN) |
| 5496 | goto QEARetry; |
| 5497 | |
| 5498 | return (ssize_t)rc; |
| 5499 | } |
| 5500 | |
| 5501 | int |
| 5502 | CIFSSMBSetEA(const int xid, struct cifsTconInfo *tcon, const char *fileName, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5503 | const char *ea_name, const void *ea_value, |
| 5504 | const __u16 ea_value_len, const struct nls_table *nls_codepage, |
| 5505 | int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5506 | { |
| 5507 | struct smb_com_transaction2_spi_req *pSMB = NULL; |
| 5508 | struct smb_com_transaction2_spi_rsp *pSMBr = NULL; |
| 5509 | struct fealist *parm_data; |
| 5510 | int name_len; |
| 5511 | int rc = 0; |
| 5512 | int bytes_returned = 0; |
| 5513 | __u16 params, param_offset, byte_count, offset, count; |
| 5514 | |
| 5515 | cFYI(1, ("In SetEA")); |
| 5516 | SetEARetry: |
| 5517 | rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, |
| 5518 | (void **) &pSMBr); |
| 5519 | if (rc) |
| 5520 | return rc; |
| 5521 | |
| 5522 | if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { |
| 5523 | name_len = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5524 | cifsConvertToUCS((__le16 *) pSMB->FileName, fileName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 5525 | PATH_MAX, nls_codepage, remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5526 | name_len++; /* trailing null */ |
| 5527 | name_len *= 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5528 | } else { /* BB improve the check for buffer overruns BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5529 | name_len = strnlen(fileName, PATH_MAX); |
| 5530 | name_len++; /* trailing null */ |
| 5531 | strncpy(pSMB->FileName, fileName, name_len); |
| 5532 | } |
| 5533 | |
| 5534 | params = 6 + name_len; |
| 5535 | |
| 5536 | /* done calculating parms using name_len of file name, |
| 5537 | now use name_len to calculate length of ea name |
| 5538 | we are going to create in the inode xattrs */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5539 | if (ea_name == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5540 | name_len = 0; |
| 5541 | else |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5542 | name_len = strnlen(ea_name, 255); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5543 | |
Steve French | dae5dbd | 2007-12-30 23:49:57 +0000 | [diff] [blame] | 5544 | count = sizeof(*parm_data) + ea_value_len + name_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5545 | pSMB->MaxParameterCount = cpu_to_le16(2); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 5546 | /* BB find max SMB PDU from sess */ |
| 5547 | pSMB->MaxDataCount = cpu_to_le16(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5548 | pSMB->MaxSetupCount = 0; |
| 5549 | pSMB->Reserved = 0; |
| 5550 | pSMB->Flags = 0; |
| 5551 | pSMB->Timeout = 0; |
| 5552 | pSMB->Reserved2 = 0; |
| 5553 | param_offset = offsetof(struct smb_com_transaction2_spi_req, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5554 | InformationLevel) - 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5555 | offset = param_offset + params; |
| 5556 | pSMB->InformationLevel = |
| 5557 | cpu_to_le16(SMB_SET_FILE_EA); |
| 5558 | |
| 5559 | parm_data = |
| 5560 | (struct fealist *) (((char *) &pSMB->hdr.Protocol) + |
| 5561 | offset); |
| 5562 | pSMB->ParameterOffset = cpu_to_le16(param_offset); |
| 5563 | pSMB->DataOffset = cpu_to_le16(offset); |
| 5564 | pSMB->SetupCount = 1; |
| 5565 | pSMB->Reserved3 = 0; |
| 5566 | pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION); |
| 5567 | byte_count = 3 /* pad */ + params + count; |
| 5568 | pSMB->DataCount = cpu_to_le16(count); |
| 5569 | parm_data->list_len = cpu_to_le32(count); |
| 5570 | parm_data->list[0].EA_flags = 0; |
| 5571 | /* we checked above that name len is less than 255 */ |
Alexey Dobriyan | 53b3531 | 2006-03-24 03:16:13 -0800 | [diff] [blame] | 5572 | parm_data->list[0].name_len = (__u8)name_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5573 | /* EA names are always ASCII */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5574 | if (ea_name) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5575 | strncpy(parm_data->list[0].name, ea_name, name_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5576 | parm_data->list[0].name[name_len] = 0; |
| 5577 | parm_data->list[0].value_len = cpu_to_le16(ea_value_len); |
| 5578 | /* caller ensures that ea_value_len is less than 64K but |
| 5579 | we need to ensure that it fits within the smb */ |
| 5580 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5581 | /*BB add length check to see if it would fit in |
| 5582 | negotiated SMB buffer size BB */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 5583 | /* if (ea_value_len > buffer_size - 512 (enough for header)) */ |
| 5584 | if (ea_value_len) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5585 | memcpy(parm_data->list[0].name+name_len+1, |
| 5586 | ea_value, ea_value_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5587 | |
| 5588 | pSMB->TotalDataCount = pSMB->DataCount; |
| 5589 | pSMB->ParameterCount = cpu_to_le16(params); |
| 5590 | pSMB->TotalParameterCount = pSMB->ParameterCount; |
| 5591 | pSMB->Reserved4 = 0; |
| 5592 | pSMB->hdr.smb_buf_length += byte_count; |
| 5593 | pSMB->ByteCount = cpu_to_le16(byte_count); |
| 5594 | rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, |
| 5595 | (struct smb_hdr *) pSMBr, &bytes_returned, 0); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 5596 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5597 | cFYI(1, ("SetPathInfo (EA) returned %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5598 | |
| 5599 | cifs_buf_release(pSMB); |
| 5600 | |
| 5601 | if (rc == -EAGAIN) |
| 5602 | goto SetEARetry; |
| 5603 | |
| 5604 | return rc; |
| 5605 | } |
| 5606 | |
| 5607 | #endif |