userns,pidns: Verify the userns for new pid namespaces
[cris-mirror.git] / fs / cifs / inode.c
bloba8693632235f02b349db28e8d77aa45e30d4c783
1 /*
2 * fs/cifs/inode.c
4 * Copyright (C) International Business Machines Corp., 2002,2010
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/fs.h>
22 #include <linux/stat.h>
23 #include <linux/slab.h>
24 #include <linux/pagemap.h>
25 #include <linux/freezer.h>
26 #include <linux/sched/signal.h>
27 #include <linux/wait_bit.h>
29 #include <asm/div64.h>
30 #include "cifsfs.h"
31 #include "cifspdu.h"
32 #include "cifsglob.h"
33 #include "cifsproto.h"
34 #include "cifs_debug.h"
35 #include "cifs_fs_sb.h"
36 #include "cifs_unicode.h"
37 #include "fscache.h"
40 static void cifs_set_ops(struct inode *inode)
42 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
44 switch (inode->i_mode & S_IFMT) {
45 case S_IFREG:
46 inode->i_op = &cifs_file_inode_ops;
47 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
48 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
49 inode->i_fop = &cifs_file_direct_nobrl_ops;
50 else
51 inode->i_fop = &cifs_file_direct_ops;
52 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) {
53 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
54 inode->i_fop = &cifs_file_strict_nobrl_ops;
55 else
56 inode->i_fop = &cifs_file_strict_ops;
57 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
58 inode->i_fop = &cifs_file_nobrl_ops;
59 else { /* not direct, send byte range locks */
60 inode->i_fop = &cifs_file_ops;
63 /* check if server can support readpages */
64 if (cifs_sb_master_tcon(cifs_sb)->ses->server->maxBuf <
65 PAGE_SIZE + MAX_CIFS_HDR_SIZE)
66 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
67 else
68 inode->i_data.a_ops = &cifs_addr_ops;
69 break;
70 case S_IFDIR:
71 #ifdef CONFIG_CIFS_DFS_UPCALL
72 if (IS_AUTOMOUNT(inode)) {
73 inode->i_op = &cifs_dfs_referral_inode_operations;
74 } else {
75 #else /* NO DFS support, treat as a directory */
77 #endif
78 inode->i_op = &cifs_dir_inode_ops;
79 inode->i_fop = &cifs_dir_ops;
81 break;
82 case S_IFLNK:
83 inode->i_op = &cifs_symlink_inode_ops;
84 break;
85 default:
86 init_special_inode(inode, inode->i_mode, inode->i_rdev);
87 break;
91 /* check inode attributes against fattr. If they don't match, tag the
92 * inode for cache invalidation
94 static void
95 cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr)
97 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
99 cifs_dbg(FYI, "%s: revalidating inode %llu\n",
100 __func__, cifs_i->uniqueid);
102 if (inode->i_state & I_NEW) {
103 cifs_dbg(FYI, "%s: inode %llu is new\n",
104 __func__, cifs_i->uniqueid);
105 return;
108 /* don't bother with revalidation if we have an oplock */
109 if (CIFS_CACHE_READ(cifs_i)) {
110 cifs_dbg(FYI, "%s: inode %llu is oplocked\n",
111 __func__, cifs_i->uniqueid);
112 return;
115 /* revalidate if mtime or size have changed */
116 if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) &&
117 cifs_i->server_eof == fattr->cf_eof) {
118 cifs_dbg(FYI, "%s: inode %llu is unchanged\n",
119 __func__, cifs_i->uniqueid);
120 return;
123 cifs_dbg(FYI, "%s: invalidating inode %llu mapping\n",
124 __func__, cifs_i->uniqueid);
125 set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
129 * copy nlink to the inode, unless it wasn't provided. Provide
130 * sane values if we don't have an existing one and none was provided
132 static void
133 cifs_nlink_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
136 * if we're in a situation where we can't trust what we
137 * got from the server (readdir, some non-unix cases)
138 * fake reasonable values
140 if (fattr->cf_flags & CIFS_FATTR_UNKNOWN_NLINK) {
141 /* only provide fake values on a new inode */
142 if (inode->i_state & I_NEW) {
143 if (fattr->cf_cifsattrs & ATTR_DIRECTORY)
144 set_nlink(inode, 2);
145 else
146 set_nlink(inode, 1);
148 return;
151 /* we trust the server, so update it */
152 set_nlink(inode, fattr->cf_nlink);
155 /* populate an inode with info from a cifs_fattr struct */
156 void
157 cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
159 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
160 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
162 cifs_revalidate_cache(inode, fattr);
164 spin_lock(&inode->i_lock);
165 inode->i_atime = fattr->cf_atime;
166 inode->i_mtime = fattr->cf_mtime;
167 inode->i_ctime = fattr->cf_ctime;
168 inode->i_rdev = fattr->cf_rdev;
169 cifs_nlink_fattr_to_inode(inode, fattr);
170 inode->i_uid = fattr->cf_uid;
171 inode->i_gid = fattr->cf_gid;
173 /* if dynperm is set, don't clobber existing mode */
174 if (inode->i_state & I_NEW ||
175 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM))
176 inode->i_mode = fattr->cf_mode;
178 cifs_i->cifsAttrs = fattr->cf_cifsattrs;
180 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
181 cifs_i->time = 0;
182 else
183 cifs_i->time = jiffies;
185 if (fattr->cf_flags & CIFS_FATTR_DELETE_PENDING)
186 set_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
187 else
188 clear_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
190 cifs_i->server_eof = fattr->cf_eof;
192 * Can't safely change the file size here if the client is writing to
193 * it due to potential races.
195 if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) {
196 i_size_write(inode, fattr->cf_eof);
199 * i_blocks is not related to (i_size / i_blksize),
200 * but instead 512 byte (2**9) size is required for
201 * calculating num blocks.
203 inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9;
205 spin_unlock(&inode->i_lock);
207 if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL)
208 inode->i_flags |= S_AUTOMOUNT;
209 if (inode->i_state & I_NEW)
210 cifs_set_ops(inode);
213 void
214 cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr)
216 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
218 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
219 return;
221 fattr->cf_uniqueid = iunique(sb, ROOT_I);
224 /* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
225 void
226 cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info,
227 struct cifs_sb_info *cifs_sb)
229 memset(fattr, 0, sizeof(*fattr));
230 fattr->cf_uniqueid = le64_to_cpu(info->UniqueId);
231 fattr->cf_bytes = le64_to_cpu(info->NumOfBytes);
232 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
234 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
235 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime);
236 fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange);
237 fattr->cf_mode = le64_to_cpu(info->Permissions);
240 * Since we set the inode type below we need to mask off
241 * to avoid strange results if bits set above.
243 fattr->cf_mode &= ~S_IFMT;
244 switch (le32_to_cpu(info->Type)) {
245 case UNIX_FILE:
246 fattr->cf_mode |= S_IFREG;
247 fattr->cf_dtype = DT_REG;
248 break;
249 case UNIX_SYMLINK:
250 fattr->cf_mode |= S_IFLNK;
251 fattr->cf_dtype = DT_LNK;
252 break;
253 case UNIX_DIR:
254 fattr->cf_mode |= S_IFDIR;
255 fattr->cf_dtype = DT_DIR;
256 break;
257 case UNIX_CHARDEV:
258 fattr->cf_mode |= S_IFCHR;
259 fattr->cf_dtype = DT_CHR;
260 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
261 le64_to_cpu(info->DevMinor) & MINORMASK);
262 break;
263 case UNIX_BLOCKDEV:
264 fattr->cf_mode |= S_IFBLK;
265 fattr->cf_dtype = DT_BLK;
266 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
267 le64_to_cpu(info->DevMinor) & MINORMASK);
268 break;
269 case UNIX_FIFO:
270 fattr->cf_mode |= S_IFIFO;
271 fattr->cf_dtype = DT_FIFO;
272 break;
273 case UNIX_SOCKET:
274 fattr->cf_mode |= S_IFSOCK;
275 fattr->cf_dtype = DT_SOCK;
276 break;
277 default:
278 /* safest to call it a file if we do not know */
279 fattr->cf_mode |= S_IFREG;
280 fattr->cf_dtype = DT_REG;
281 cifs_dbg(FYI, "unknown type %d\n", le32_to_cpu(info->Type));
282 break;
285 fattr->cf_uid = cifs_sb->mnt_uid;
286 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) {
287 u64 id = le64_to_cpu(info->Uid);
288 if (id < ((uid_t)-1)) {
289 kuid_t uid = make_kuid(&init_user_ns, id);
290 if (uid_valid(uid))
291 fattr->cf_uid = uid;
295 fattr->cf_gid = cifs_sb->mnt_gid;
296 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) {
297 u64 id = le64_to_cpu(info->Gid);
298 if (id < ((gid_t)-1)) {
299 kgid_t gid = make_kgid(&init_user_ns, id);
300 if (gid_valid(gid))
301 fattr->cf_gid = gid;
305 fattr->cf_nlink = le64_to_cpu(info->Nlinks);
309 * Fill a cifs_fattr struct with fake inode info.
311 * Needed to setup cifs_fattr data for the directory which is the
312 * junction to the new submount (ie to setup the fake directory
313 * which represents a DFS referral).
315 static void
316 cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb)
318 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
320 cifs_dbg(FYI, "creating fake fattr for DFS referral\n");
322 memset(fattr, 0, sizeof(*fattr));
323 fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU;
324 fattr->cf_uid = cifs_sb->mnt_uid;
325 fattr->cf_gid = cifs_sb->mnt_gid;
326 ktime_get_real_ts(&fattr->cf_mtime);
327 fattr->cf_mtime = timespec_trunc(fattr->cf_mtime, sb->s_time_gran);
328 fattr->cf_atime = fattr->cf_ctime = fattr->cf_mtime;
329 fattr->cf_nlink = 2;
330 fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL;
333 static int
334 cifs_get_file_info_unix(struct file *filp)
336 int rc;
337 unsigned int xid;
338 FILE_UNIX_BASIC_INFO find_data;
339 struct cifs_fattr fattr;
340 struct inode *inode = file_inode(filp);
341 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
342 struct cifsFileInfo *cfile = filp->private_data;
343 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
345 xid = get_xid();
346 rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data);
347 if (!rc) {
348 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
349 } else if (rc == -EREMOTE) {
350 cifs_create_dfs_fattr(&fattr, inode->i_sb);
351 rc = 0;
354 cifs_fattr_to_inode(inode, &fattr);
355 free_xid(xid);
356 return rc;
359 int cifs_get_inode_info_unix(struct inode **pinode,
360 const unsigned char *full_path,
361 struct super_block *sb, unsigned int xid)
363 int rc;
364 FILE_UNIX_BASIC_INFO find_data;
365 struct cifs_fattr fattr;
366 struct cifs_tcon *tcon;
367 struct tcon_link *tlink;
368 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
370 cifs_dbg(FYI, "Getting info on %s\n", full_path);
372 tlink = cifs_sb_tlink(cifs_sb);
373 if (IS_ERR(tlink))
374 return PTR_ERR(tlink);
375 tcon = tlink_tcon(tlink);
377 /* could have done a find first instead but this returns more info */
378 rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data,
379 cifs_sb->local_nls, cifs_remap(cifs_sb));
380 cifs_put_tlink(tlink);
382 if (!rc) {
383 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
384 } else if (rc == -EREMOTE) {
385 cifs_create_dfs_fattr(&fattr, sb);
386 rc = 0;
387 } else {
388 return rc;
391 /* check for Minshall+French symlinks */
392 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
393 int tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
394 full_path);
395 if (tmprc)
396 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
399 if (*pinode == NULL) {
400 /* get new inode */
401 cifs_fill_uniqueid(sb, &fattr);
402 *pinode = cifs_iget(sb, &fattr);
403 if (!*pinode)
404 rc = -ENOMEM;
405 } else {
406 /* we already have inode, update it */
408 /* if uniqueid is different, return error */
409 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
410 CIFS_I(*pinode)->uniqueid != fattr.cf_uniqueid)) {
411 rc = -ESTALE;
412 goto cgiiu_exit;
415 /* if filetype is different, return error */
416 if (unlikely(((*pinode)->i_mode & S_IFMT) !=
417 (fattr.cf_mode & S_IFMT))) {
418 rc = -ESTALE;
419 goto cgiiu_exit;
422 cifs_fattr_to_inode(*pinode, &fattr);
425 cgiiu_exit:
426 return rc;
429 static int
430 cifs_sfu_type(struct cifs_fattr *fattr, const char *path,
431 struct cifs_sb_info *cifs_sb, unsigned int xid)
433 int rc;
434 __u32 oplock;
435 struct tcon_link *tlink;
436 struct cifs_tcon *tcon;
437 struct cifs_fid fid;
438 struct cifs_open_parms oparms;
439 struct cifs_io_parms io_parms;
440 char buf[24];
441 unsigned int bytes_read;
442 char *pbuf;
443 int buf_type = CIFS_NO_BUFFER;
445 pbuf = buf;
447 fattr->cf_mode &= ~S_IFMT;
449 if (fattr->cf_eof == 0) {
450 fattr->cf_mode |= S_IFIFO;
451 fattr->cf_dtype = DT_FIFO;
452 return 0;
453 } else if (fattr->cf_eof < 8) {
454 fattr->cf_mode |= S_IFREG;
455 fattr->cf_dtype = DT_REG;
456 return -EINVAL; /* EOPNOTSUPP? */
459 tlink = cifs_sb_tlink(cifs_sb);
460 if (IS_ERR(tlink))
461 return PTR_ERR(tlink);
462 tcon = tlink_tcon(tlink);
464 oparms.tcon = tcon;
465 oparms.cifs_sb = cifs_sb;
466 oparms.desired_access = GENERIC_READ;
467 oparms.create_options = CREATE_NOT_DIR;
468 oparms.disposition = FILE_OPEN;
469 oparms.path = path;
470 oparms.fid = &fid;
471 oparms.reconnect = false;
473 if (tcon->ses->server->oplocks)
474 oplock = REQ_OPLOCK;
475 else
476 oplock = 0;
477 rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, NULL);
478 if (rc) {
479 cifs_dbg(FYI, "check sfu type of %s, open rc = %d\n", path, rc);
480 cifs_put_tlink(tlink);
481 return rc;
484 /* Read header */
485 io_parms.netfid = fid.netfid;
486 io_parms.pid = current->tgid;
487 io_parms.tcon = tcon;
488 io_parms.offset = 0;
489 io_parms.length = 24;
491 rc = tcon->ses->server->ops->sync_read(xid, &fid, &io_parms,
492 &bytes_read, &pbuf, &buf_type);
493 if ((rc == 0) && (bytes_read >= 8)) {
494 if (memcmp("IntxBLK", pbuf, 8) == 0) {
495 cifs_dbg(FYI, "Block device\n");
496 fattr->cf_mode |= S_IFBLK;
497 fattr->cf_dtype = DT_BLK;
498 if (bytes_read == 24) {
499 /* we have enough to decode dev num */
500 __u64 mjr; /* major */
501 __u64 mnr; /* minor */
502 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
503 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
504 fattr->cf_rdev = MKDEV(mjr, mnr);
506 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
507 cifs_dbg(FYI, "Char device\n");
508 fattr->cf_mode |= S_IFCHR;
509 fattr->cf_dtype = DT_CHR;
510 if (bytes_read == 24) {
511 /* we have enough to decode dev num */
512 __u64 mjr; /* major */
513 __u64 mnr; /* minor */
514 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
515 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
516 fattr->cf_rdev = MKDEV(mjr, mnr);
518 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
519 cifs_dbg(FYI, "Symlink\n");
520 fattr->cf_mode |= S_IFLNK;
521 fattr->cf_dtype = DT_LNK;
522 } else {
523 fattr->cf_mode |= S_IFREG; /* file? */
524 fattr->cf_dtype = DT_REG;
525 rc = -EOPNOTSUPP;
527 } else {
528 fattr->cf_mode |= S_IFREG; /* then it is a file */
529 fattr->cf_dtype = DT_REG;
530 rc = -EOPNOTSUPP; /* or some unknown SFU type */
533 tcon->ses->server->ops->close(xid, tcon, &fid);
534 cifs_put_tlink(tlink);
535 return rc;
538 #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
541 * Fetch mode bits as provided by SFU.
543 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
545 static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path,
546 struct cifs_sb_info *cifs_sb, unsigned int xid)
548 #ifdef CONFIG_CIFS_XATTR
549 ssize_t rc;
550 char ea_value[4];
551 __u32 mode;
552 struct tcon_link *tlink;
553 struct cifs_tcon *tcon;
555 tlink = cifs_sb_tlink(cifs_sb);
556 if (IS_ERR(tlink))
557 return PTR_ERR(tlink);
558 tcon = tlink_tcon(tlink);
560 if (tcon->ses->server->ops->query_all_EAs == NULL) {
561 cifs_put_tlink(tlink);
562 return -EOPNOTSUPP;
565 rc = tcon->ses->server->ops->query_all_EAs(xid, tcon, path,
566 "SETFILEBITS", ea_value, 4 /* size of buf */,
567 cifs_sb);
568 cifs_put_tlink(tlink);
569 if (rc < 0)
570 return (int)rc;
571 else if (rc > 3) {
572 mode = le32_to_cpu(*((__le32 *)ea_value));
573 fattr->cf_mode &= ~SFBITS_MASK;
574 cifs_dbg(FYI, "special bits 0%o org mode 0%o\n",
575 mode, fattr->cf_mode);
576 fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode;
577 cifs_dbg(FYI, "special mode bits 0%o\n", mode);
580 return 0;
581 #else
582 return -EOPNOTSUPP;
583 #endif
586 /* Fill a cifs_fattr struct with info from FILE_ALL_INFO */
587 static void
588 cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info,
589 struct super_block *sb, bool adjust_tz,
590 bool symlink)
592 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
593 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
595 memset(fattr, 0, sizeof(*fattr));
596 fattr->cf_cifsattrs = le32_to_cpu(info->Attributes);
597 if (info->DeletePending)
598 fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING;
600 if (info->LastAccessTime)
601 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
602 else {
603 ktime_get_real_ts(&fattr->cf_atime);
604 fattr->cf_atime = timespec_trunc(fattr->cf_atime, sb->s_time_gran);
607 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
608 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
610 if (adjust_tz) {
611 fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj;
612 fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj;
615 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
616 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
617 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
619 fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks);
621 if (symlink) {
622 fattr->cf_mode = S_IFLNK;
623 fattr->cf_dtype = DT_LNK;
624 } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
625 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
626 fattr->cf_dtype = DT_DIR;
628 * Server can return wrong NumberOfLinks value for directories
629 * when Unix extensions are disabled - fake it.
631 if (!tcon->unix_ext)
632 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
633 } else {
634 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
635 fattr->cf_dtype = DT_REG;
637 /* clear write bits if ATTR_READONLY is set */
638 if (fattr->cf_cifsattrs & ATTR_READONLY)
639 fattr->cf_mode &= ~(S_IWUGO);
642 * Don't accept zero nlink from non-unix servers unless
643 * delete is pending. Instead mark it as unknown.
645 if ((fattr->cf_nlink < 1) && !tcon->unix_ext &&
646 !info->DeletePending) {
647 cifs_dbg(1, "bogus file nlink value %u\n",
648 fattr->cf_nlink);
649 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
653 fattr->cf_uid = cifs_sb->mnt_uid;
654 fattr->cf_gid = cifs_sb->mnt_gid;
657 static int
658 cifs_get_file_info(struct file *filp)
660 int rc;
661 unsigned int xid;
662 FILE_ALL_INFO find_data;
663 struct cifs_fattr fattr;
664 struct inode *inode = file_inode(filp);
665 struct cifsFileInfo *cfile = filp->private_data;
666 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
667 struct TCP_Server_Info *server = tcon->ses->server;
669 if (!server->ops->query_file_info)
670 return -ENOSYS;
672 xid = get_xid();
673 rc = server->ops->query_file_info(xid, tcon, &cfile->fid, &find_data);
674 switch (rc) {
675 case 0:
676 cifs_all_info_to_fattr(&fattr, &find_data, inode->i_sb, false,
677 false);
678 break;
679 case -EREMOTE:
680 cifs_create_dfs_fattr(&fattr, inode->i_sb);
681 rc = 0;
682 break;
683 case -EOPNOTSUPP:
684 case -EINVAL:
686 * FIXME: legacy server -- fall back to path-based call?
687 * for now, just skip revalidating and mark inode for
688 * immediate reval.
690 rc = 0;
691 CIFS_I(inode)->time = 0;
692 default:
693 goto cgfi_exit;
697 * don't bother with SFU junk here -- just mark inode as needing
698 * revalidation.
700 fattr.cf_uniqueid = CIFS_I(inode)->uniqueid;
701 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
702 cifs_fattr_to_inode(inode, &fattr);
703 cgfi_exit:
704 free_xid(xid);
705 return rc;
709 cifs_get_inode_info(struct inode **inode, const char *full_path,
710 FILE_ALL_INFO *data, struct super_block *sb, int xid,
711 const struct cifs_fid *fid)
713 bool validinum = false;
714 __u16 srchflgs;
715 int rc = 0, tmprc = ENOSYS;
716 struct cifs_tcon *tcon;
717 struct TCP_Server_Info *server;
718 struct tcon_link *tlink;
719 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
720 char *buf = NULL;
721 bool adjust_tz = false;
722 struct cifs_fattr fattr;
723 struct cifs_search_info *srchinf = NULL;
724 bool symlink = false;
726 tlink = cifs_sb_tlink(cifs_sb);
727 if (IS_ERR(tlink))
728 return PTR_ERR(tlink);
729 tcon = tlink_tcon(tlink);
730 server = tcon->ses->server;
732 cifs_dbg(FYI, "Getting info on %s\n", full_path);
734 if ((data == NULL) && (*inode != NULL)) {
735 if (CIFS_CACHE_READ(CIFS_I(*inode))) {
736 cifs_dbg(FYI, "No need to revalidate cached inode sizes\n");
737 goto cgii_exit;
741 /* if inode info is not passed, get it from server */
742 if (data == NULL) {
743 if (!server->ops->query_path_info) {
744 rc = -ENOSYS;
745 goto cgii_exit;
747 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
748 if (buf == NULL) {
749 rc = -ENOMEM;
750 goto cgii_exit;
752 data = (FILE_ALL_INFO *)buf;
753 rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path,
754 data, &adjust_tz, &symlink);
757 if (!rc) {
758 cifs_all_info_to_fattr(&fattr, data, sb, adjust_tz,
759 symlink);
760 } else if (rc == -EREMOTE) {
761 cifs_create_dfs_fattr(&fattr, sb);
762 rc = 0;
763 } else if (rc == -EACCES && backup_cred(cifs_sb)) {
764 srchinf = kzalloc(sizeof(struct cifs_search_info),
765 GFP_KERNEL);
766 if (srchinf == NULL) {
767 rc = -ENOMEM;
768 goto cgii_exit;
771 srchinf->endOfSearch = false;
772 srchinf->info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
774 srchflgs = CIFS_SEARCH_CLOSE_ALWAYS |
775 CIFS_SEARCH_CLOSE_AT_END |
776 CIFS_SEARCH_BACKUP_SEARCH;
778 rc = CIFSFindFirst(xid, tcon, full_path,
779 cifs_sb, NULL, srchflgs, srchinf, false);
780 if (!rc) {
781 data =
782 (FILE_ALL_INFO *)srchinf->srch_entries_start;
784 cifs_dir_info_to_fattr(&fattr,
785 (FILE_DIRECTORY_INFO *)data, cifs_sb);
786 fattr.cf_uniqueid = le64_to_cpu(
787 ((SEARCH_ID_FULL_DIR_INFO *)data)->UniqueId);
788 validinum = true;
790 cifs_buf_release(srchinf->ntwrk_buf_start);
792 kfree(srchinf);
793 if (rc)
794 goto cgii_exit;
795 } else
796 goto cgii_exit;
799 * If an inode wasn't passed in, then get the inode number
801 * Is an i_ino of zero legal? Can we use that to check if the server
802 * supports returning inode numbers? Are there other sanity checks we
803 * can use to ensure that the server is really filling in that field?
805 if (*inode == NULL) {
806 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
807 if (validinum == false) {
808 if (server->ops->get_srv_inum)
809 tmprc = server->ops->get_srv_inum(xid,
810 tcon, cifs_sb, full_path,
811 &fattr.cf_uniqueid, data);
812 if (tmprc) {
813 cifs_dbg(FYI, "GetSrvInodeNum rc %d\n",
814 tmprc);
815 fattr.cf_uniqueid = iunique(sb, ROOT_I);
816 cifs_autodisable_serverino(cifs_sb);
819 } else
820 fattr.cf_uniqueid = iunique(sb, ROOT_I);
821 } else {
822 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
823 validinum == false && server->ops->get_srv_inum) {
825 * Pass a NULL tcon to ensure we don't make a round
826 * trip to the server. This only works for SMB2+.
828 tmprc = server->ops->get_srv_inum(xid,
829 NULL, cifs_sb, full_path,
830 &fattr.cf_uniqueid, data);
831 if (tmprc)
832 fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid;
833 } else
834 fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid;
837 /* query for SFU type info if supported and needed */
838 if (fattr.cf_cifsattrs & ATTR_SYSTEM &&
839 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
840 tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid);
841 if (tmprc)
842 cifs_dbg(FYI, "cifs_sfu_type failed: %d\n", tmprc);
845 #ifdef CONFIG_CIFS_ACL
846 /* fill in 0777 bits from ACL */
847 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
848 rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, full_path, fid);
849 if (rc) {
850 cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
851 __func__, rc);
852 goto cgii_exit;
855 #endif /* CONFIG_CIFS_ACL */
857 /* fill in remaining high mode bits e.g. SUID, VTX */
858 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
859 cifs_sfu_mode(&fattr, full_path, cifs_sb, xid);
861 /* check for Minshall+French symlinks */
862 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
863 tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
864 full_path);
865 if (tmprc)
866 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
869 if (!*inode) {
870 *inode = cifs_iget(sb, &fattr);
871 if (!*inode)
872 rc = -ENOMEM;
873 } else {
874 /* we already have inode, update it */
876 /* if uniqueid is different, return error */
877 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
878 CIFS_I(*inode)->uniqueid != fattr.cf_uniqueid)) {
879 rc = -ESTALE;
880 goto cgii_exit;
883 /* if filetype is different, return error */
884 if (unlikely(((*inode)->i_mode & S_IFMT) !=
885 (fattr.cf_mode & S_IFMT))) {
886 rc = -ESTALE;
887 goto cgii_exit;
890 cifs_fattr_to_inode(*inode, &fattr);
893 cgii_exit:
894 kfree(buf);
895 cifs_put_tlink(tlink);
896 return rc;
899 static const struct inode_operations cifs_ipc_inode_ops = {
900 .lookup = cifs_lookup,
903 static int
904 cifs_find_inode(struct inode *inode, void *opaque)
906 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
908 /* don't match inode with different uniqueid */
909 if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid)
910 return 0;
912 /* use createtime like an i_generation field */
913 if (CIFS_I(inode)->createtime != fattr->cf_createtime)
914 return 0;
916 /* don't match inode of different type */
917 if ((inode->i_mode & S_IFMT) != (fattr->cf_mode & S_IFMT))
918 return 0;
920 /* if it's not a directory or has no dentries, then flag it */
921 if (S_ISDIR(inode->i_mode) && !hlist_empty(&inode->i_dentry))
922 fattr->cf_flags |= CIFS_FATTR_INO_COLLISION;
924 return 1;
927 static int
928 cifs_init_inode(struct inode *inode, void *opaque)
930 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
932 CIFS_I(inode)->uniqueid = fattr->cf_uniqueid;
933 CIFS_I(inode)->createtime = fattr->cf_createtime;
934 return 0;
938 * walk dentry list for an inode and report whether it has aliases that
939 * are hashed. We use this to determine if a directory inode can actually
940 * be used.
942 static bool
943 inode_has_hashed_dentries(struct inode *inode)
945 struct dentry *dentry;
947 spin_lock(&inode->i_lock);
948 hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
949 if (!d_unhashed(dentry) || IS_ROOT(dentry)) {
950 spin_unlock(&inode->i_lock);
951 return true;
954 spin_unlock(&inode->i_lock);
955 return false;
958 /* Given fattrs, get a corresponding inode */
959 struct inode *
960 cifs_iget(struct super_block *sb, struct cifs_fattr *fattr)
962 unsigned long hash;
963 struct inode *inode;
965 retry_iget5_locked:
966 cifs_dbg(FYI, "looking for uniqueid=%llu\n", fattr->cf_uniqueid);
968 /* hash down to 32-bits on 32-bit arch */
969 hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid);
971 inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr);
972 if (inode) {
973 /* was there a potentially problematic inode collision? */
974 if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) {
975 fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION;
977 if (inode_has_hashed_dentries(inode)) {
978 cifs_autodisable_serverino(CIFS_SB(sb));
979 iput(inode);
980 fattr->cf_uniqueid = iunique(sb, ROOT_I);
981 goto retry_iget5_locked;
985 cifs_fattr_to_inode(inode, fattr);
986 if (sb->s_flags & MS_NOATIME)
987 inode->i_flags |= S_NOATIME | S_NOCMTIME;
988 if (inode->i_state & I_NEW) {
989 inode->i_ino = hash;
990 #ifdef CONFIG_CIFS_FSCACHE
991 /* initialize per-inode cache cookie pointer */
992 CIFS_I(inode)->fscache = NULL;
993 #endif
994 unlock_new_inode(inode);
998 return inode;
1001 /* gets root inode */
1002 struct inode *cifs_root_iget(struct super_block *sb)
1004 unsigned int xid;
1005 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1006 struct inode *inode = NULL;
1007 long rc;
1008 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
1009 char *path = NULL;
1010 int len;
1012 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
1013 && cifs_sb->prepath) {
1014 len = strlen(cifs_sb->prepath);
1015 path = kzalloc(len + 2 /* leading sep + null */, GFP_KERNEL);
1016 if (path == NULL)
1017 return ERR_PTR(-ENOMEM);
1018 path[0] = '/';
1019 memcpy(path+1, cifs_sb->prepath, len);
1020 } else {
1021 path = kstrdup("", GFP_KERNEL);
1022 if (path == NULL)
1023 return ERR_PTR(-ENOMEM);
1026 xid = get_xid();
1027 if (tcon->unix_ext) {
1028 rc = cifs_get_inode_info_unix(&inode, path, sb, xid);
1029 /* some servers mistakenly claim POSIX support */
1030 if (rc != -EOPNOTSUPP)
1031 goto iget_no_retry;
1032 cifs_dbg(VFS, "server does not support POSIX extensions");
1033 tcon->unix_ext = false;
1036 convert_delimiter(path, CIFS_DIR_SEP(cifs_sb));
1037 rc = cifs_get_inode_info(&inode, path, NULL, sb, xid, NULL);
1039 iget_no_retry:
1040 if (!inode) {
1041 inode = ERR_PTR(rc);
1042 goto out;
1045 #ifdef CONFIG_CIFS_FSCACHE
1046 /* populate tcon->resource_id */
1047 tcon->resource_id = CIFS_I(inode)->uniqueid;
1048 #endif
1050 if (rc && tcon->ipc) {
1051 cifs_dbg(FYI, "ipc connection - fake read inode\n");
1052 spin_lock(&inode->i_lock);
1053 inode->i_mode |= S_IFDIR;
1054 set_nlink(inode, 2);
1055 inode->i_op = &cifs_ipc_inode_ops;
1056 inode->i_fop = &simple_dir_operations;
1057 inode->i_uid = cifs_sb->mnt_uid;
1058 inode->i_gid = cifs_sb->mnt_gid;
1059 spin_unlock(&inode->i_lock);
1060 } else if (rc) {
1061 iget_failed(inode);
1062 inode = ERR_PTR(rc);
1065 out:
1066 kfree(path);
1067 /* can not call macro free_xid here since in a void func
1068 * TODO: This is no longer true
1070 _free_xid(xid);
1071 return inode;
1075 cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid,
1076 char *full_path, __u32 dosattr)
1078 bool set_time = false;
1079 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1080 struct TCP_Server_Info *server;
1081 FILE_BASIC_INFO info_buf;
1083 if (attrs == NULL)
1084 return -EINVAL;
1086 server = cifs_sb_master_tcon(cifs_sb)->ses->server;
1087 if (!server->ops->set_file_info)
1088 return -ENOSYS;
1090 if (attrs->ia_valid & ATTR_ATIME) {
1091 set_time = true;
1092 info_buf.LastAccessTime =
1093 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1094 } else
1095 info_buf.LastAccessTime = 0;
1097 if (attrs->ia_valid & ATTR_MTIME) {
1098 set_time = true;
1099 info_buf.LastWriteTime =
1100 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1101 } else
1102 info_buf.LastWriteTime = 0;
1105 * Samba throws this field away, but windows may actually use it.
1106 * Do not set ctime unless other time stamps are changed explicitly
1107 * (i.e. by utimes()) since we would then have a mix of client and
1108 * server times.
1110 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
1111 cifs_dbg(FYI, "CIFS - CTIME changed\n");
1112 info_buf.ChangeTime =
1113 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1114 } else
1115 info_buf.ChangeTime = 0;
1117 info_buf.CreationTime = 0; /* don't change */
1118 info_buf.Attributes = cpu_to_le32(dosattr);
1120 return server->ops->set_file_info(inode, full_path, &info_buf, xid);
1124 * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
1125 * and rename it to a random name that hopefully won't conflict with
1126 * anything else.
1129 cifs_rename_pending_delete(const char *full_path, struct dentry *dentry,
1130 const unsigned int xid)
1132 int oplock = 0;
1133 int rc;
1134 struct cifs_fid fid;
1135 struct cifs_open_parms oparms;
1136 struct inode *inode = d_inode(dentry);
1137 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1138 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1139 struct tcon_link *tlink;
1140 struct cifs_tcon *tcon;
1141 __u32 dosattr, origattr;
1142 FILE_BASIC_INFO *info_buf = NULL;
1144 tlink = cifs_sb_tlink(cifs_sb);
1145 if (IS_ERR(tlink))
1146 return PTR_ERR(tlink);
1147 tcon = tlink_tcon(tlink);
1150 * We cannot rename the file if the server doesn't support
1151 * CAP_INFOLEVEL_PASSTHRU
1153 if (!(tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)) {
1154 rc = -EBUSY;
1155 goto out;
1158 oparms.tcon = tcon;
1159 oparms.cifs_sb = cifs_sb;
1160 oparms.desired_access = DELETE | FILE_WRITE_ATTRIBUTES;
1161 oparms.create_options = CREATE_NOT_DIR;
1162 oparms.disposition = FILE_OPEN;
1163 oparms.path = full_path;
1164 oparms.fid = &fid;
1165 oparms.reconnect = false;
1167 rc = CIFS_open(xid, &oparms, &oplock, NULL);
1168 if (rc != 0)
1169 goto out;
1171 origattr = cifsInode->cifsAttrs;
1172 if (origattr == 0)
1173 origattr |= ATTR_NORMAL;
1175 dosattr = origattr & ~ATTR_READONLY;
1176 if (dosattr == 0)
1177 dosattr |= ATTR_NORMAL;
1178 dosattr |= ATTR_HIDDEN;
1180 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
1181 if (dosattr != origattr) {
1182 info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL);
1183 if (info_buf == NULL) {
1184 rc = -ENOMEM;
1185 goto out_close;
1187 info_buf->Attributes = cpu_to_le32(dosattr);
1188 rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
1189 current->tgid);
1190 /* although we would like to mark the file hidden
1191 if that fails we will still try to rename it */
1192 if (!rc)
1193 cifsInode->cifsAttrs = dosattr;
1194 else
1195 dosattr = origattr; /* since not able to change them */
1198 /* rename the file */
1199 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, NULL,
1200 cifs_sb->local_nls,
1201 cifs_remap(cifs_sb));
1202 if (rc != 0) {
1203 rc = -EBUSY;
1204 goto undo_setattr;
1207 /* try to set DELETE_ON_CLOSE */
1208 if (!test_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags)) {
1209 rc = CIFSSMBSetFileDisposition(xid, tcon, true, fid.netfid,
1210 current->tgid);
1212 * some samba versions return -ENOENT when we try to set the
1213 * file disposition here. Likely a samba bug, but work around
1214 * it for now. This means that some cifsXXX files may hang
1215 * around after they shouldn't.
1217 * BB: remove this hack after more servers have the fix
1219 if (rc == -ENOENT)
1220 rc = 0;
1221 else if (rc != 0) {
1222 rc = -EBUSY;
1223 goto undo_rename;
1225 set_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags);
1228 out_close:
1229 CIFSSMBClose(xid, tcon, fid.netfid);
1230 out:
1231 kfree(info_buf);
1232 cifs_put_tlink(tlink);
1233 return rc;
1236 * reset everything back to the original state. Don't bother
1237 * dealing with errors here since we can't do anything about
1238 * them anyway.
1240 undo_rename:
1241 CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, dentry->d_name.name,
1242 cifs_sb->local_nls, cifs_remap(cifs_sb));
1243 undo_setattr:
1244 if (dosattr != origattr) {
1245 info_buf->Attributes = cpu_to_le32(origattr);
1246 if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
1247 current->tgid))
1248 cifsInode->cifsAttrs = origattr;
1251 goto out_close;
1254 /* copied from fs/nfs/dir.c with small changes */
1255 static void
1256 cifs_drop_nlink(struct inode *inode)
1258 spin_lock(&inode->i_lock);
1259 if (inode->i_nlink > 0)
1260 drop_nlink(inode);
1261 spin_unlock(&inode->i_lock);
1265 * If d_inode(dentry) is null (usually meaning the cached dentry
1266 * is a negative dentry) then we would attempt a standard SMB delete, but
1267 * if that fails we can not attempt the fall back mechanisms on EACCESS
1268 * but will return the EACCESS to the caller. Note that the VFS does not call
1269 * unlink on negative dentries currently.
1271 int cifs_unlink(struct inode *dir, struct dentry *dentry)
1273 int rc = 0;
1274 unsigned int xid;
1275 char *full_path = NULL;
1276 struct inode *inode = d_inode(dentry);
1277 struct cifsInodeInfo *cifs_inode;
1278 struct super_block *sb = dir->i_sb;
1279 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1280 struct tcon_link *tlink;
1281 struct cifs_tcon *tcon;
1282 struct TCP_Server_Info *server;
1283 struct iattr *attrs = NULL;
1284 __u32 dosattr = 0, origattr = 0;
1286 cifs_dbg(FYI, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir, dentry);
1288 tlink = cifs_sb_tlink(cifs_sb);
1289 if (IS_ERR(tlink))
1290 return PTR_ERR(tlink);
1291 tcon = tlink_tcon(tlink);
1292 server = tcon->ses->server;
1294 xid = get_xid();
1296 /* Unlink can be called from rename so we can not take the
1297 * sb->s_vfs_rename_mutex here */
1298 full_path = build_path_from_dentry(dentry);
1299 if (full_path == NULL) {
1300 rc = -ENOMEM;
1301 goto unlink_out;
1304 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1305 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
1306 rc = CIFSPOSIXDelFile(xid, tcon, full_path,
1307 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
1308 cifs_remap(cifs_sb));
1309 cifs_dbg(FYI, "posix del rc %d\n", rc);
1310 if ((rc == 0) || (rc == -ENOENT))
1311 goto psx_del_no_retry;
1314 retry_std_delete:
1315 if (!server->ops->unlink) {
1316 rc = -ENOSYS;
1317 goto psx_del_no_retry;
1320 rc = server->ops->unlink(xid, tcon, full_path, cifs_sb);
1322 psx_del_no_retry:
1323 if (!rc) {
1324 if (inode)
1325 cifs_drop_nlink(inode);
1326 } else if (rc == -ENOENT) {
1327 d_drop(dentry);
1328 } else if (rc == -EBUSY) {
1329 if (server->ops->rename_pending_delete) {
1330 rc = server->ops->rename_pending_delete(full_path,
1331 dentry, xid);
1332 if (rc == 0)
1333 cifs_drop_nlink(inode);
1335 } else if ((rc == -EACCES) && (dosattr == 0) && inode) {
1336 attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
1337 if (attrs == NULL) {
1338 rc = -ENOMEM;
1339 goto out_reval;
1342 /* try to reset dos attributes */
1343 cifs_inode = CIFS_I(inode);
1344 origattr = cifs_inode->cifsAttrs;
1345 if (origattr == 0)
1346 origattr |= ATTR_NORMAL;
1347 dosattr = origattr & ~ATTR_READONLY;
1348 if (dosattr == 0)
1349 dosattr |= ATTR_NORMAL;
1350 dosattr |= ATTR_HIDDEN;
1352 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
1353 if (rc != 0)
1354 goto out_reval;
1356 goto retry_std_delete;
1359 /* undo the setattr if we errored out and it's needed */
1360 if (rc != 0 && dosattr != 0)
1361 cifs_set_file_info(inode, attrs, xid, full_path, origattr);
1363 out_reval:
1364 if (inode) {
1365 cifs_inode = CIFS_I(inode);
1366 cifs_inode->time = 0; /* will force revalidate to get info
1367 when needed */
1368 inode->i_ctime = current_time(inode);
1370 dir->i_ctime = dir->i_mtime = current_time(dir);
1371 cifs_inode = CIFS_I(dir);
1372 CIFS_I(dir)->time = 0; /* force revalidate of dir as well */
1373 unlink_out:
1374 kfree(full_path);
1375 kfree(attrs);
1376 free_xid(xid);
1377 cifs_put_tlink(tlink);
1378 return rc;
1381 static int
1382 cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode,
1383 const char *full_path, struct cifs_sb_info *cifs_sb,
1384 struct cifs_tcon *tcon, const unsigned int xid)
1386 int rc = 0;
1387 struct inode *inode = NULL;
1389 if (tcon->unix_ext)
1390 rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb,
1391 xid);
1392 else
1393 rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb,
1394 xid, NULL);
1396 if (rc)
1397 return rc;
1400 * setting nlink not necessary except in cases where we failed to get it
1401 * from the server or was set bogus. Also, since this is a brand new
1402 * inode, no need to grab the i_lock before setting the i_nlink.
1404 if (inode->i_nlink < 2)
1405 set_nlink(inode, 2);
1406 mode &= ~current_umask();
1407 /* must turn on setgid bit if parent dir has it */
1408 if (parent->i_mode & S_ISGID)
1409 mode |= S_ISGID;
1411 if (tcon->unix_ext) {
1412 struct cifs_unix_set_info_args args = {
1413 .mode = mode,
1414 .ctime = NO_CHANGE_64,
1415 .atime = NO_CHANGE_64,
1416 .mtime = NO_CHANGE_64,
1417 .device = 0,
1419 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1420 args.uid = current_fsuid();
1421 if (parent->i_mode & S_ISGID)
1422 args.gid = parent->i_gid;
1423 else
1424 args.gid = current_fsgid();
1425 } else {
1426 args.uid = INVALID_UID; /* no change */
1427 args.gid = INVALID_GID; /* no change */
1429 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
1430 cifs_sb->local_nls,
1431 cifs_remap(cifs_sb));
1432 } else {
1433 struct TCP_Server_Info *server = tcon->ses->server;
1434 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
1435 (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo)
1436 server->ops->mkdir_setinfo(inode, full_path, cifs_sb,
1437 tcon, xid);
1438 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
1439 inode->i_mode = (mode | S_IFDIR);
1441 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1442 inode->i_uid = current_fsuid();
1443 if (inode->i_mode & S_ISGID)
1444 inode->i_gid = parent->i_gid;
1445 else
1446 inode->i_gid = current_fsgid();
1449 d_instantiate(dentry, inode);
1450 return rc;
1453 static int
1454 cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode,
1455 const char *full_path, struct cifs_sb_info *cifs_sb,
1456 struct cifs_tcon *tcon, const unsigned int xid)
1458 int rc = 0;
1459 u32 oplock = 0;
1460 FILE_UNIX_BASIC_INFO *info = NULL;
1461 struct inode *newinode = NULL;
1462 struct cifs_fattr fattr;
1464 info = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1465 if (info == NULL) {
1466 rc = -ENOMEM;
1467 goto posix_mkdir_out;
1470 mode &= ~current_umask();
1471 rc = CIFSPOSIXCreate(xid, tcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode,
1472 NULL /* netfid */, info, &oplock, full_path,
1473 cifs_sb->local_nls, cifs_remap(cifs_sb));
1474 if (rc == -EOPNOTSUPP)
1475 goto posix_mkdir_out;
1476 else if (rc) {
1477 cifs_dbg(FYI, "posix mkdir returned 0x%x\n", rc);
1478 d_drop(dentry);
1479 goto posix_mkdir_out;
1482 if (info->Type == cpu_to_le32(-1))
1483 /* no return info, go query for it */
1484 goto posix_mkdir_get_info;
1486 * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if
1487 * need to set uid/gid.
1490 cifs_unix_basic_to_fattr(&fattr, info, cifs_sb);
1491 cifs_fill_uniqueid(inode->i_sb, &fattr);
1492 newinode = cifs_iget(inode->i_sb, &fattr);
1493 if (!newinode)
1494 goto posix_mkdir_get_info;
1496 d_instantiate(dentry, newinode);
1498 #ifdef CONFIG_CIFS_DEBUG2
1499 cifs_dbg(FYI, "instantiated dentry %p %pd to inode %p\n",
1500 dentry, dentry, newinode);
1502 if (newinode->i_nlink != 2)
1503 cifs_dbg(FYI, "unexpected number of links %d\n",
1504 newinode->i_nlink);
1505 #endif
1507 posix_mkdir_out:
1508 kfree(info);
1509 return rc;
1510 posix_mkdir_get_info:
1511 rc = cifs_mkdir_qinfo(inode, dentry, mode, full_path, cifs_sb, tcon,
1512 xid);
1513 goto posix_mkdir_out;
1516 int cifs_mkdir(struct inode *inode, struct dentry *direntry, umode_t mode)
1518 int rc = 0;
1519 unsigned int xid;
1520 struct cifs_sb_info *cifs_sb;
1521 struct tcon_link *tlink;
1522 struct cifs_tcon *tcon;
1523 struct TCP_Server_Info *server;
1524 char *full_path;
1526 cifs_dbg(FYI, "In cifs_mkdir, mode = 0x%hx inode = 0x%p\n",
1527 mode, inode);
1529 cifs_sb = CIFS_SB(inode->i_sb);
1530 tlink = cifs_sb_tlink(cifs_sb);
1531 if (IS_ERR(tlink))
1532 return PTR_ERR(tlink);
1533 tcon = tlink_tcon(tlink);
1535 xid = get_xid();
1537 full_path = build_path_from_dentry(direntry);
1538 if (full_path == NULL) {
1539 rc = -ENOMEM;
1540 goto mkdir_out;
1543 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1544 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
1545 rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb,
1546 tcon, xid);
1547 if (rc != -EOPNOTSUPP)
1548 goto mkdir_out;
1551 server = tcon->ses->server;
1553 if (!server->ops->mkdir) {
1554 rc = -ENOSYS;
1555 goto mkdir_out;
1558 /* BB add setting the equivalent of mode via CreateX w/ACLs */
1559 rc = server->ops->mkdir(xid, tcon, full_path, cifs_sb);
1560 if (rc) {
1561 cifs_dbg(FYI, "cifs_mkdir returned 0x%x\n", rc);
1562 d_drop(direntry);
1563 goto mkdir_out;
1566 rc = cifs_mkdir_qinfo(inode, direntry, mode, full_path, cifs_sb, tcon,
1567 xid);
1568 mkdir_out:
1570 * Force revalidate to get parent dir info when needed since cached
1571 * attributes are invalid now.
1573 CIFS_I(inode)->time = 0;
1574 kfree(full_path);
1575 free_xid(xid);
1576 cifs_put_tlink(tlink);
1577 return rc;
1580 int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1582 int rc = 0;
1583 unsigned int xid;
1584 struct cifs_sb_info *cifs_sb;
1585 struct tcon_link *tlink;
1586 struct cifs_tcon *tcon;
1587 struct TCP_Server_Info *server;
1588 char *full_path = NULL;
1589 struct cifsInodeInfo *cifsInode;
1591 cifs_dbg(FYI, "cifs_rmdir, inode = 0x%p\n", inode);
1593 xid = get_xid();
1595 full_path = build_path_from_dentry(direntry);
1596 if (full_path == NULL) {
1597 rc = -ENOMEM;
1598 goto rmdir_exit;
1601 cifs_sb = CIFS_SB(inode->i_sb);
1602 tlink = cifs_sb_tlink(cifs_sb);
1603 if (IS_ERR(tlink)) {
1604 rc = PTR_ERR(tlink);
1605 goto rmdir_exit;
1607 tcon = tlink_tcon(tlink);
1608 server = tcon->ses->server;
1610 if (!server->ops->rmdir) {
1611 rc = -ENOSYS;
1612 cifs_put_tlink(tlink);
1613 goto rmdir_exit;
1616 rc = server->ops->rmdir(xid, tcon, full_path, cifs_sb);
1617 cifs_put_tlink(tlink);
1619 if (!rc) {
1620 spin_lock(&d_inode(direntry)->i_lock);
1621 i_size_write(d_inode(direntry), 0);
1622 clear_nlink(d_inode(direntry));
1623 spin_unlock(&d_inode(direntry)->i_lock);
1626 cifsInode = CIFS_I(d_inode(direntry));
1627 /* force revalidate to go get info when needed */
1628 cifsInode->time = 0;
1630 cifsInode = CIFS_I(inode);
1632 * Force revalidate to get parent dir info when needed since cached
1633 * attributes are invalid now.
1635 cifsInode->time = 0;
1637 d_inode(direntry)->i_ctime = inode->i_ctime = inode->i_mtime =
1638 current_time(inode);
1640 rmdir_exit:
1641 kfree(full_path);
1642 free_xid(xid);
1643 return rc;
1646 static int
1647 cifs_do_rename(const unsigned int xid, struct dentry *from_dentry,
1648 const char *from_path, struct dentry *to_dentry,
1649 const char *to_path)
1651 struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb);
1652 struct tcon_link *tlink;
1653 struct cifs_tcon *tcon;
1654 struct TCP_Server_Info *server;
1655 struct cifs_fid fid;
1656 struct cifs_open_parms oparms;
1657 int oplock, rc;
1659 tlink = cifs_sb_tlink(cifs_sb);
1660 if (IS_ERR(tlink))
1661 return PTR_ERR(tlink);
1662 tcon = tlink_tcon(tlink);
1663 server = tcon->ses->server;
1665 if (!server->ops->rename)
1666 return -ENOSYS;
1668 /* try path-based rename first */
1669 rc = server->ops->rename(xid, tcon, from_path, to_path, cifs_sb);
1672 * Don't bother with rename by filehandle unless file is busy and
1673 * source. Note that cross directory moves do not work with
1674 * rename by filehandle to various Windows servers.
1676 if (rc == 0 || rc != -EBUSY)
1677 goto do_rename_exit;
1679 /* open-file renames don't work across directories */
1680 if (to_dentry->d_parent != from_dentry->d_parent)
1681 goto do_rename_exit;
1683 oparms.tcon = tcon;
1684 oparms.cifs_sb = cifs_sb;
1685 /* open the file to be renamed -- we need DELETE perms */
1686 oparms.desired_access = DELETE;
1687 oparms.create_options = CREATE_NOT_DIR;
1688 oparms.disposition = FILE_OPEN;
1689 oparms.path = from_path;
1690 oparms.fid = &fid;
1691 oparms.reconnect = false;
1693 rc = CIFS_open(xid, &oparms, &oplock, NULL);
1694 if (rc == 0) {
1695 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid,
1696 (const char *) to_dentry->d_name.name,
1697 cifs_sb->local_nls, cifs_remap(cifs_sb));
1698 CIFSSMBClose(xid, tcon, fid.netfid);
1700 do_rename_exit:
1701 cifs_put_tlink(tlink);
1702 return rc;
1706 cifs_rename2(struct inode *source_dir, struct dentry *source_dentry,
1707 struct inode *target_dir, struct dentry *target_dentry,
1708 unsigned int flags)
1710 char *from_name = NULL;
1711 char *to_name = NULL;
1712 struct cifs_sb_info *cifs_sb;
1713 struct tcon_link *tlink;
1714 struct cifs_tcon *tcon;
1715 FILE_UNIX_BASIC_INFO *info_buf_source = NULL;
1716 FILE_UNIX_BASIC_INFO *info_buf_target;
1717 unsigned int xid;
1718 int rc, tmprc;
1720 if (flags & ~RENAME_NOREPLACE)
1721 return -EINVAL;
1723 cifs_sb = CIFS_SB(source_dir->i_sb);
1724 tlink = cifs_sb_tlink(cifs_sb);
1725 if (IS_ERR(tlink))
1726 return PTR_ERR(tlink);
1727 tcon = tlink_tcon(tlink);
1729 xid = get_xid();
1732 * we already have the rename sem so we do not need to
1733 * grab it again here to protect the path integrity
1735 from_name = build_path_from_dentry(source_dentry);
1736 if (from_name == NULL) {
1737 rc = -ENOMEM;
1738 goto cifs_rename_exit;
1741 to_name = build_path_from_dentry(target_dentry);
1742 if (to_name == NULL) {
1743 rc = -ENOMEM;
1744 goto cifs_rename_exit;
1747 rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry,
1748 to_name);
1751 * No-replace is the natural behavior for CIFS, so skip unlink hacks.
1753 if (flags & RENAME_NOREPLACE)
1754 goto cifs_rename_exit;
1756 if (rc == -EEXIST && tcon->unix_ext) {
1758 * Are src and dst hardlinks of same inode? We can only tell
1759 * with unix extensions enabled.
1761 info_buf_source =
1762 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO),
1763 GFP_KERNEL);
1764 if (info_buf_source == NULL) {
1765 rc = -ENOMEM;
1766 goto cifs_rename_exit;
1769 info_buf_target = info_buf_source + 1;
1770 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, from_name,
1771 info_buf_source,
1772 cifs_sb->local_nls,
1773 cifs_remap(cifs_sb));
1774 if (tmprc != 0)
1775 goto unlink_target;
1777 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, to_name,
1778 info_buf_target,
1779 cifs_sb->local_nls,
1780 cifs_remap(cifs_sb));
1782 if (tmprc == 0 && (info_buf_source->UniqueId ==
1783 info_buf_target->UniqueId)) {
1784 /* same file, POSIX says that this is a noop */
1785 rc = 0;
1786 goto cifs_rename_exit;
1790 * else ... BB we could add the same check for Windows by
1791 * checking the UniqueId via FILE_INTERNAL_INFO
1794 unlink_target:
1795 /* Try unlinking the target dentry if it's not negative */
1796 if (d_really_is_positive(target_dentry) && (rc == -EACCES || rc == -EEXIST)) {
1797 if (d_is_dir(target_dentry))
1798 tmprc = cifs_rmdir(target_dir, target_dentry);
1799 else
1800 tmprc = cifs_unlink(target_dir, target_dentry);
1801 if (tmprc)
1802 goto cifs_rename_exit;
1803 rc = cifs_do_rename(xid, source_dentry, from_name,
1804 target_dentry, to_name);
1807 /* force revalidate to go get info when needed */
1808 CIFS_I(source_dir)->time = CIFS_I(target_dir)->time = 0;
1810 source_dir->i_ctime = source_dir->i_mtime = target_dir->i_ctime =
1811 target_dir->i_mtime = current_time(source_dir);
1813 cifs_rename_exit:
1814 kfree(info_buf_source);
1815 kfree(from_name);
1816 kfree(to_name);
1817 free_xid(xid);
1818 cifs_put_tlink(tlink);
1819 return rc;
1822 static bool
1823 cifs_inode_needs_reval(struct inode *inode)
1825 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
1826 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1828 if (CIFS_CACHE_READ(cifs_i))
1829 return false;
1831 if (!lookupCacheEnabled)
1832 return true;
1834 if (cifs_i->time == 0)
1835 return true;
1837 if (!cifs_sb->actimeo)
1838 return true;
1840 if (!time_in_range(jiffies, cifs_i->time,
1841 cifs_i->time + cifs_sb->actimeo))
1842 return true;
1844 /* hardlinked files w/ noserverino get "special" treatment */
1845 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
1846 S_ISREG(inode->i_mode) && inode->i_nlink != 1)
1847 return true;
1849 return false;
1853 * Zap the cache. Called when invalid_mapping flag is set.
1856 cifs_invalidate_mapping(struct inode *inode)
1858 int rc = 0;
1860 if (inode->i_mapping && inode->i_mapping->nrpages != 0) {
1861 rc = invalidate_inode_pages2(inode->i_mapping);
1862 if (rc)
1863 cifs_dbg(VFS, "%s: could not invalidate inode %p\n",
1864 __func__, inode);
1867 cifs_fscache_reset_inode_cookie(inode);
1868 return rc;
1872 * cifs_wait_bit_killable - helper for functions that are sleeping on bit locks
1873 * @word: long word containing the bit lock
1875 static int
1876 cifs_wait_bit_killable(struct wait_bit_key *key, int mode)
1878 freezable_schedule_unsafe();
1879 if (signal_pending_state(mode, current))
1880 return -ERESTARTSYS;
1881 return 0;
1885 cifs_revalidate_mapping(struct inode *inode)
1887 int rc;
1888 unsigned long *flags = &CIFS_I(inode)->flags;
1890 rc = wait_on_bit_lock_action(flags, CIFS_INO_LOCK, cifs_wait_bit_killable,
1891 TASK_KILLABLE);
1892 if (rc)
1893 return rc;
1895 if (test_and_clear_bit(CIFS_INO_INVALID_MAPPING, flags)) {
1896 rc = cifs_invalidate_mapping(inode);
1897 if (rc)
1898 set_bit(CIFS_INO_INVALID_MAPPING, flags);
1901 clear_bit_unlock(CIFS_INO_LOCK, flags);
1902 smp_mb__after_atomic();
1903 wake_up_bit(flags, CIFS_INO_LOCK);
1905 return rc;
1909 cifs_zap_mapping(struct inode *inode)
1911 set_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags);
1912 return cifs_revalidate_mapping(inode);
1915 int cifs_revalidate_file_attr(struct file *filp)
1917 int rc = 0;
1918 struct inode *inode = file_inode(filp);
1919 struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data;
1921 if (!cifs_inode_needs_reval(inode))
1922 return rc;
1924 if (tlink_tcon(cfile->tlink)->unix_ext)
1925 rc = cifs_get_file_info_unix(filp);
1926 else
1927 rc = cifs_get_file_info(filp);
1929 return rc;
1932 int cifs_revalidate_dentry_attr(struct dentry *dentry)
1934 unsigned int xid;
1935 int rc = 0;
1936 struct inode *inode = d_inode(dentry);
1937 struct super_block *sb = dentry->d_sb;
1938 char *full_path = NULL;
1940 if (inode == NULL)
1941 return -ENOENT;
1943 if (!cifs_inode_needs_reval(inode))
1944 return rc;
1946 xid = get_xid();
1948 /* can not safely grab the rename sem here if rename calls revalidate
1949 since that would deadlock */
1950 full_path = build_path_from_dentry(dentry);
1951 if (full_path == NULL) {
1952 rc = -ENOMEM;
1953 goto out;
1956 cifs_dbg(FYI, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n",
1957 full_path, inode, inode->i_count.counter,
1958 dentry, cifs_get_time(dentry), jiffies);
1960 if (cifs_sb_master_tcon(CIFS_SB(sb))->unix_ext)
1961 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
1962 else
1963 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
1964 xid, NULL);
1966 out:
1967 kfree(full_path);
1968 free_xid(xid);
1969 return rc;
1972 int cifs_revalidate_file(struct file *filp)
1974 int rc;
1975 struct inode *inode = file_inode(filp);
1977 rc = cifs_revalidate_file_attr(filp);
1978 if (rc)
1979 return rc;
1981 return cifs_revalidate_mapping(inode);
1984 /* revalidate a dentry's inode attributes */
1985 int cifs_revalidate_dentry(struct dentry *dentry)
1987 int rc;
1988 struct inode *inode = d_inode(dentry);
1990 rc = cifs_revalidate_dentry_attr(dentry);
1991 if (rc)
1992 return rc;
1994 return cifs_revalidate_mapping(inode);
1997 int cifs_getattr(const struct path *path, struct kstat *stat,
1998 u32 request_mask, unsigned int flags)
2000 struct dentry *dentry = path->dentry;
2001 struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb);
2002 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
2003 struct inode *inode = d_inode(dentry);
2004 int rc;
2007 * We need to be sure that all dirty pages are written and the server
2008 * has actual ctime, mtime and file length.
2010 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
2011 inode->i_mapping->nrpages != 0) {
2012 rc = filemap_fdatawait(inode->i_mapping);
2013 if (rc) {
2014 mapping_set_error(inode->i_mapping, rc);
2015 return rc;
2019 rc = cifs_revalidate_dentry_attr(dentry);
2020 if (rc)
2021 return rc;
2023 generic_fillattr(inode, stat);
2024 stat->blksize = CIFS_MAX_MSGSIZE;
2025 stat->ino = CIFS_I(inode)->uniqueid;
2028 * If on a multiuser mount without unix extensions or cifsacl being
2029 * enabled, and the admin hasn't overridden them, set the ownership
2030 * to the fsuid/fsgid of the current process.
2032 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) &&
2033 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
2034 !tcon->unix_ext) {
2035 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID))
2036 stat->uid = current_fsuid();
2037 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID))
2038 stat->gid = current_fsgid();
2040 return rc;
2043 static int cifs_truncate_page(struct address_space *mapping, loff_t from)
2045 pgoff_t index = from >> PAGE_SHIFT;
2046 unsigned offset = from & (PAGE_SIZE - 1);
2047 struct page *page;
2048 int rc = 0;
2050 page = grab_cache_page(mapping, index);
2051 if (!page)
2052 return -ENOMEM;
2054 zero_user_segment(page, offset, PAGE_SIZE);
2055 unlock_page(page);
2056 put_page(page);
2057 return rc;
2060 static void cifs_setsize(struct inode *inode, loff_t offset)
2062 spin_lock(&inode->i_lock);
2063 i_size_write(inode, offset);
2064 spin_unlock(&inode->i_lock);
2066 truncate_pagecache(inode, offset);
2069 static int
2070 cifs_set_file_size(struct inode *inode, struct iattr *attrs,
2071 unsigned int xid, char *full_path)
2073 int rc;
2074 struct cifsFileInfo *open_file;
2075 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2076 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2077 struct tcon_link *tlink = NULL;
2078 struct cifs_tcon *tcon = NULL;
2079 struct TCP_Server_Info *server;
2082 * To avoid spurious oplock breaks from server, in the case of
2083 * inodes that we already have open, avoid doing path based
2084 * setting of file size if we can do it by handle.
2085 * This keeps our caching token (oplock) and avoids timeouts
2086 * when the local oplock break takes longer to flush
2087 * writebehind data than the SMB timeout for the SetPathInfo
2088 * request would allow
2090 open_file = find_writable_file(cifsInode, true);
2091 if (open_file) {
2092 tcon = tlink_tcon(open_file->tlink);
2093 server = tcon->ses->server;
2094 if (server->ops->set_file_size)
2095 rc = server->ops->set_file_size(xid, tcon, open_file,
2096 attrs->ia_size, false);
2097 else
2098 rc = -ENOSYS;
2099 cifsFileInfo_put(open_file);
2100 cifs_dbg(FYI, "SetFSize for attrs rc = %d\n", rc);
2101 } else
2102 rc = -EINVAL;
2104 if (!rc)
2105 goto set_size_out;
2107 if (tcon == NULL) {
2108 tlink = cifs_sb_tlink(cifs_sb);
2109 if (IS_ERR(tlink))
2110 return PTR_ERR(tlink);
2111 tcon = tlink_tcon(tlink);
2112 server = tcon->ses->server;
2116 * Set file size by pathname rather than by handle either because no
2117 * valid, writeable file handle for it was found or because there was
2118 * an error setting it by handle.
2120 if (server->ops->set_path_size)
2121 rc = server->ops->set_path_size(xid, tcon, full_path,
2122 attrs->ia_size, cifs_sb, false);
2123 else
2124 rc = -ENOSYS;
2125 cifs_dbg(FYI, "SetEOF by path (setattrs) rc = %d\n", rc);
2127 if (tlink)
2128 cifs_put_tlink(tlink);
2130 set_size_out:
2131 if (rc == 0) {
2132 cifsInode->server_eof = attrs->ia_size;
2133 cifs_setsize(inode, attrs->ia_size);
2134 cifs_truncate_page(inode->i_mapping, inode->i_size);
2137 return rc;
2140 static int
2141 cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs)
2143 int rc;
2144 unsigned int xid;
2145 char *full_path = NULL;
2146 struct inode *inode = d_inode(direntry);
2147 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2148 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2149 struct tcon_link *tlink;
2150 struct cifs_tcon *pTcon;
2151 struct cifs_unix_set_info_args *args = NULL;
2152 struct cifsFileInfo *open_file;
2154 cifs_dbg(FYI, "setattr_unix on file %pd attrs->ia_valid=0x%x\n",
2155 direntry, attrs->ia_valid);
2157 xid = get_xid();
2159 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2160 attrs->ia_valid |= ATTR_FORCE;
2162 rc = setattr_prepare(direntry, attrs);
2163 if (rc < 0)
2164 goto out;
2166 full_path = build_path_from_dentry(direntry);
2167 if (full_path == NULL) {
2168 rc = -ENOMEM;
2169 goto out;
2173 * Attempt to flush data before changing attributes. We need to do
2174 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2175 * ownership or mode then we may also need to do this. Here, we take
2176 * the safe way out and just do the flush on all setattr requests. If
2177 * the flush returns error, store it to report later and continue.
2179 * BB: This should be smarter. Why bother flushing pages that
2180 * will be truncated anyway? Also, should we error out here if
2181 * the flush returns error?
2183 rc = filemap_write_and_wait(inode->i_mapping);
2184 mapping_set_error(inode->i_mapping, rc);
2185 rc = 0;
2187 if (attrs->ia_valid & ATTR_SIZE) {
2188 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2189 if (rc != 0)
2190 goto out;
2193 /* skip mode change if it's just for clearing setuid/setgid */
2194 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2195 attrs->ia_valid &= ~ATTR_MODE;
2197 args = kmalloc(sizeof(*args), GFP_KERNEL);
2198 if (args == NULL) {
2199 rc = -ENOMEM;
2200 goto out;
2203 /* set up the struct */
2204 if (attrs->ia_valid & ATTR_MODE)
2205 args->mode = attrs->ia_mode;
2206 else
2207 args->mode = NO_CHANGE_64;
2209 if (attrs->ia_valid & ATTR_UID)
2210 args->uid = attrs->ia_uid;
2211 else
2212 args->uid = INVALID_UID; /* no change */
2214 if (attrs->ia_valid & ATTR_GID)
2215 args->gid = attrs->ia_gid;
2216 else
2217 args->gid = INVALID_GID; /* no change */
2219 if (attrs->ia_valid & ATTR_ATIME)
2220 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
2221 else
2222 args->atime = NO_CHANGE_64;
2224 if (attrs->ia_valid & ATTR_MTIME)
2225 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
2226 else
2227 args->mtime = NO_CHANGE_64;
2229 if (attrs->ia_valid & ATTR_CTIME)
2230 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
2231 else
2232 args->ctime = NO_CHANGE_64;
2234 args->device = 0;
2235 open_file = find_writable_file(cifsInode, true);
2236 if (open_file) {
2237 u16 nfid = open_file->fid.netfid;
2238 u32 npid = open_file->pid;
2239 pTcon = tlink_tcon(open_file->tlink);
2240 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
2241 cifsFileInfo_put(open_file);
2242 } else {
2243 tlink = cifs_sb_tlink(cifs_sb);
2244 if (IS_ERR(tlink)) {
2245 rc = PTR_ERR(tlink);
2246 goto out;
2248 pTcon = tlink_tcon(tlink);
2249 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
2250 cifs_sb->local_nls,
2251 cifs_remap(cifs_sb));
2252 cifs_put_tlink(tlink);
2255 if (rc)
2256 goto out;
2258 if ((attrs->ia_valid & ATTR_SIZE) &&
2259 attrs->ia_size != i_size_read(inode))
2260 truncate_setsize(inode, attrs->ia_size);
2262 setattr_copy(inode, attrs);
2263 mark_inode_dirty(inode);
2265 /* force revalidate when any of these times are set since some
2266 of the fs types (eg ext3, fat) do not have fine enough
2267 time granularity to match protocol, and we do not have a
2268 a way (yet) to query the server fs's time granularity (and
2269 whether it rounds times down).
2271 if (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2272 cifsInode->time = 0;
2273 out:
2274 kfree(args);
2275 kfree(full_path);
2276 free_xid(xid);
2277 return rc;
2280 static int
2281 cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs)
2283 unsigned int xid;
2284 kuid_t uid = INVALID_UID;
2285 kgid_t gid = INVALID_GID;
2286 struct inode *inode = d_inode(direntry);
2287 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2288 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2289 char *full_path = NULL;
2290 int rc = -EACCES;
2291 __u32 dosattr = 0;
2292 __u64 mode = NO_CHANGE_64;
2294 xid = get_xid();
2296 cifs_dbg(FYI, "setattr on file %pd attrs->iavalid 0x%x\n",
2297 direntry, attrs->ia_valid);
2299 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2300 attrs->ia_valid |= ATTR_FORCE;
2302 rc = setattr_prepare(direntry, attrs);
2303 if (rc < 0) {
2304 free_xid(xid);
2305 return rc;
2308 full_path = build_path_from_dentry(direntry);
2309 if (full_path == NULL) {
2310 rc = -ENOMEM;
2311 free_xid(xid);
2312 return rc;
2316 * Attempt to flush data before changing attributes. We need to do
2317 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2318 * ownership or mode then we may also need to do this. Here, we take
2319 * the safe way out and just do the flush on all setattr requests. If
2320 * the flush returns error, store it to report later and continue.
2322 * BB: This should be smarter. Why bother flushing pages that
2323 * will be truncated anyway? Also, should we error out here if
2324 * the flush returns error?
2326 rc = filemap_write_and_wait(inode->i_mapping);
2327 mapping_set_error(inode->i_mapping, rc);
2328 rc = 0;
2330 if (attrs->ia_valid & ATTR_SIZE) {
2331 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2332 if (rc != 0)
2333 goto cifs_setattr_exit;
2336 if (attrs->ia_valid & ATTR_UID)
2337 uid = attrs->ia_uid;
2339 if (attrs->ia_valid & ATTR_GID)
2340 gid = attrs->ia_gid;
2342 #ifdef CONFIG_CIFS_ACL
2343 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
2344 if (uid_valid(uid) || gid_valid(gid)) {
2345 rc = id_mode_to_cifs_acl(inode, full_path, NO_CHANGE_64,
2346 uid, gid);
2347 if (rc) {
2348 cifs_dbg(FYI, "%s: Setting id failed with error: %d\n",
2349 __func__, rc);
2350 goto cifs_setattr_exit;
2353 } else
2354 #endif /* CONFIG_CIFS_ACL */
2355 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID))
2356 attrs->ia_valid &= ~(ATTR_UID | ATTR_GID);
2358 /* skip mode change if it's just for clearing setuid/setgid */
2359 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2360 attrs->ia_valid &= ~ATTR_MODE;
2362 if (attrs->ia_valid & ATTR_MODE) {
2363 mode = attrs->ia_mode;
2364 rc = 0;
2365 #ifdef CONFIG_CIFS_ACL
2366 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
2367 rc = id_mode_to_cifs_acl(inode, full_path, mode,
2368 INVALID_UID, INVALID_GID);
2369 if (rc) {
2370 cifs_dbg(FYI, "%s: Setting ACL failed with error: %d\n",
2371 __func__, rc);
2372 goto cifs_setattr_exit;
2374 } else
2375 #endif /* CONFIG_CIFS_ACL */
2376 if (((mode & S_IWUGO) == 0) &&
2377 (cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
2379 dosattr = cifsInode->cifsAttrs | ATTR_READONLY;
2381 /* fix up mode if we're not using dynperm */
2382 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0)
2383 attrs->ia_mode = inode->i_mode & ~S_IWUGO;
2384 } else if ((mode & S_IWUGO) &&
2385 (cifsInode->cifsAttrs & ATTR_READONLY)) {
2387 dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY;
2388 /* Attributes of 0 are ignored */
2389 if (dosattr == 0)
2390 dosattr |= ATTR_NORMAL;
2392 /* reset local inode permissions to normal */
2393 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2394 attrs->ia_mode &= ~(S_IALLUGO);
2395 if (S_ISDIR(inode->i_mode))
2396 attrs->ia_mode |=
2397 cifs_sb->mnt_dir_mode;
2398 else
2399 attrs->ia_mode |=
2400 cifs_sb->mnt_file_mode;
2402 } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2403 /* ignore mode change - ATTR_READONLY hasn't changed */
2404 attrs->ia_valid &= ~ATTR_MODE;
2408 if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) ||
2409 ((attrs->ia_valid & ATTR_MODE) && dosattr)) {
2410 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
2411 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
2413 /* Even if error on time set, no sense failing the call if
2414 the server would set the time to a reasonable value anyway,
2415 and this check ensures that we are not being called from
2416 sys_utimes in which case we ought to fail the call back to
2417 the user when the server rejects the call */
2418 if ((rc) && (attrs->ia_valid &
2419 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
2420 rc = 0;
2423 /* do not need local check to inode_check_ok since the server does
2424 that */
2425 if (rc)
2426 goto cifs_setattr_exit;
2428 if ((attrs->ia_valid & ATTR_SIZE) &&
2429 attrs->ia_size != i_size_read(inode))
2430 truncate_setsize(inode, attrs->ia_size);
2432 setattr_copy(inode, attrs);
2433 mark_inode_dirty(inode);
2435 cifs_setattr_exit:
2436 kfree(full_path);
2437 free_xid(xid);
2438 return rc;
2442 cifs_setattr(struct dentry *direntry, struct iattr *attrs)
2444 struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
2445 struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb);
2447 if (pTcon->unix_ext)
2448 return cifs_setattr_unix(direntry, attrs);
2450 return cifs_setattr_nounix(direntry, attrs);
2452 /* BB: add cifs_setattr_legacy for really old servers */
2455 #if 0
2456 void cifs_delete_inode(struct inode *inode)
2458 cifs_dbg(FYI, "In cifs_delete_inode, inode = 0x%p\n", inode);
2459 /* may have to add back in if and when safe distributed caching of
2460 directories added e.g. via FindNotify */
2462 #endif