Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/xattr.c |
| 3 | * |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 4 | * Copyright (c) International Business Machines Corp., 2003, 2007 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 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. |
| 11 | * |
| 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. |
| 16 | * |
| 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 |
| 20 | */ |
| 21 | |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/posix_acl_xattr.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 25 | #include <linux/xattr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "cifsfs.h" |
| 27 | #include "cifspdu.h" |
| 28 | #include "cifsglob.h" |
| 29 | #include "cifsproto.h" |
| 30 | #include "cifs_debug.h" |
| 31 | |
| 32 | #define MAX_EA_VALUE_SIZE 65535 |
| 33 | #define CIFS_XATTR_DOS_ATTRIB "user.DosAttrib" |
Shirish Pargaonkar | fbeba8b | 2010-11-27 11:37:54 -0600 | [diff] [blame] | 34 | #define CIFS_XATTR_CIFS_ACL "system.cifs_acl" |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* BB need to add server (Samba e.g) support for security and trusted prefix */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 37 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 38 | int cifs_removexattr(struct dentry *direntry, const char *ea_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
| 40 | int rc = -EOPNOTSUPP; |
| 41 | #ifdef CONFIG_CIFS_XATTR |
| 42 | int xid; |
| 43 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 44 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 45 | struct cifs_tcon *pTcon; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 46 | struct super_block *sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 47 | char *full_path = NULL; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 48 | |
| 49 | if (direntry == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | return -EIO; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 51 | if (direntry->d_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | return -EIO; |
| 53 | sb = direntry->d_inode->i_sb; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 54 | if (sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | return -EIO; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | cifs_sb = CIFS_SB(sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 58 | tlink = cifs_sb_tlink(cifs_sb); |
| 59 | if (IS_ERR(tlink)) |
| 60 | return PTR_ERR(tlink); |
| 61 | pTcon = tlink_tcon(tlink); |
| 62 | |
| 63 | xid = GetXid(); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | full_path = build_path_from_dentry(direntry); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 66 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 67 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 68 | goto remove_ea_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 70 | if (ea_name == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 71 | cFYI(1, "Null xattr names not supported"); |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 72 | } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) |
| 73 | && (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN))) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 74 | cFYI(1, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 75 | "illegal xattr request %s (only user namespace supported)", |
| 76 | ea_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* BB what if no namespace prefix? */ |
| 78 | /* Should we just pass them to server, except for |
| 79 | system and perhaps security prefixes? */ |
| 80 | } else { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 81 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | goto remove_ea_exit; |
| 83 | |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 84 | ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 85 | rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, NULL, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 86 | (__u16)0, cifs_sb->local_nls, |
| 87 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | remove_ea_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 90 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 92 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #endif |
| 94 | return rc; |
| 95 | } |
| 96 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 97 | int cifs_setxattr(struct dentry *direntry, const char *ea_name, |
| 98 | const void *ea_value, size_t value_size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
| 100 | int rc = -EOPNOTSUPP; |
| 101 | #ifdef CONFIG_CIFS_XATTR |
| 102 | int xid; |
| 103 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 104 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 105 | struct cifs_tcon *pTcon; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 106 | struct super_block *sb; |
| 107 | char *full_path; |
Steve French | b73b9a4 | 2011-04-19 18:27:10 +0000 | [diff] [blame] | 108 | struct cifs_ntsd *pacl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 110 | if (direntry == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | return -EIO; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 112 | if (direntry->d_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | return -EIO; |
| 114 | sb = direntry->d_inode->i_sb; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 115 | if (sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | cifs_sb = CIFS_SB(sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 119 | tlink = cifs_sb_tlink(cifs_sb); |
| 120 | if (IS_ERR(tlink)) |
| 121 | return PTR_ERR(tlink); |
| 122 | pTcon = tlink_tcon(tlink); |
| 123 | |
| 124 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | full_path = build_path_from_dentry(direntry); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 127 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 128 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 129 | goto set_ea_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | /* return dos attributes as pseudo xattr */ |
| 132 | /* return alt name if available as pseudo attr */ |
| 133 | |
| 134 | /* if proc/fs/cifs/streamstoxattr is set then |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 135 | search server for EAs or streams to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | returns as xattrs */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 137 | if (value_size > MAX_EA_VALUE_SIZE) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 138 | cFYI(1, "size of EA value too large"); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 139 | rc = -EOPNOTSUPP; |
| 140 | goto set_ea_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 143 | if (ea_name == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 144 | cFYI(1, "Null xattr names not supported"); |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 145 | } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) |
| 146 | == 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 147 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | goto set_ea_exit; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 149 | if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 150 | cFYI(1, "attempt to set cifs inode metadata"); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 151 | |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 152 | ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 153 | rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 154 | (__u16)value_size, cifs_sb->local_nls, |
| 155 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 156 | } else if (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN) |
| 157 | == 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 158 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | goto set_ea_exit; |
| 160 | |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 161 | ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 162 | rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 163 | (__u16)value_size, cifs_sb->local_nls, |
| 164 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | b73b9a4 | 2011-04-19 18:27:10 +0000 | [diff] [blame] | 165 | } else if (strncmp(ea_name, CIFS_XATTR_CIFS_ACL, |
| 166 | strlen(CIFS_XATTR_CIFS_ACL)) == 0) { |
| 167 | pacl = kmalloc(value_size, GFP_KERNEL); |
| 168 | if (!pacl) { |
| 169 | cFYI(1, "%s: Can't allocate memory for ACL", |
| 170 | __func__); |
| 171 | rc = -ENOMEM; |
| 172 | } else { |
| 173 | #ifdef CONFIG_CIFS_ACL |
| 174 | memcpy(pacl, ea_value, value_size); |
| 175 | rc = set_cifs_acl(pacl, value_size, |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 176 | direntry->d_inode, full_path, CIFS_ACL_DACL); |
Steve French | b73b9a4 | 2011-04-19 18:27:10 +0000 | [diff] [blame] | 177 | if (rc == 0) /* force revalidate of the inode */ |
| 178 | CIFS_I(direntry->d_inode)->time = 0; |
| 179 | kfree(pacl); |
| 180 | #else |
| 181 | cFYI(1, "Set CIFS ACL not supported yet"); |
| 182 | #endif /* CONFIG_CIFS_ACL */ |
| 183 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } else { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 185 | int temp; |
| 186 | temp = strncmp(ea_name, POSIX_ACL_XATTR_ACCESS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | strlen(POSIX_ACL_XATTR_ACCESS)); |
| 188 | if (temp == 0) { |
| 189 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 190 | if (sb->s_flags & MS_POSIXACL) |
| 191 | rc = CIFSSMBSetPosixACL(xid, pTcon, full_path, |
| 192 | ea_value, (const int)value_size, |
| 193 | ACL_TYPE_ACCESS, cifs_sb->local_nls, |
| 194 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 195 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 196 | cFYI(1, "set POSIX ACL rc %d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | #else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 198 | cFYI(1, "set POSIX ACL not supported"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | #endif |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 200 | } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT, |
| 201 | strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 203 | if (sb->s_flags & MS_POSIXACL) |
| 204 | rc = CIFSSMBSetPosixACL(xid, pTcon, full_path, |
| 205 | ea_value, (const int)value_size, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 206 | ACL_TYPE_DEFAULT, cifs_sb->local_nls, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 207 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 208 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 209 | cFYI(1, "set POSIX default ACL rc %d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | #else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 211 | cFYI(1, "set default POSIX ACL not supported"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | #endif |
| 213 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 214 | cFYI(1, "illegal xattr request %s (only user namespace" |
| 215 | " supported)", ea_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | /* BB what if no namespace prefix? */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 217 | /* Should we just pass them to server, except for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | system and perhaps security prefixes? */ |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | set_ea_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 223 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 225 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | #endif |
| 227 | return rc; |
| 228 | } |
| 229 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 230 | ssize_t cifs_getxattr(struct dentry *direntry, const char *ea_name, |
| 231 | void *ea_value, size_t buf_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | ssize_t rc = -EOPNOTSUPP; |
| 234 | #ifdef CONFIG_CIFS_XATTR |
| 235 | int xid; |
| 236 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 237 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 238 | struct cifs_tcon *pTcon; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 239 | struct super_block *sb; |
| 240 | char *full_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 242 | if (direntry == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | return -EIO; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 244 | if (direntry->d_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | return -EIO; |
| 246 | sb = direntry->d_inode->i_sb; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 247 | if (sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return -EIO; |
| 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | cifs_sb = CIFS_SB(sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 251 | tlink = cifs_sb_tlink(cifs_sb); |
| 252 | if (IS_ERR(tlink)) |
| 253 | return PTR_ERR(tlink); |
| 254 | pTcon = tlink_tcon(tlink); |
| 255 | |
| 256 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | full_path = build_path_from_dentry(direntry); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 259 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 260 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 261 | goto get_ea_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
| 263 | /* return dos attributes as pseudo xattr */ |
| 264 | /* return alt name if available as pseudo attr */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 265 | if (ea_name == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 266 | cFYI(1, "Null xattr names not supported"); |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 267 | } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) |
| 268 | == 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 269 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | goto get_ea_exit; |
| 271 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 272 | if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 273 | cFYI(1, "attempt to query cifs inode metadata"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* revalidate/getattr then populate from inode */ |
| 275 | } /* BB add else when above is implemented */ |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 276 | ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ |
Jeff Layton | 31c0519 | 2010-02-10 16:18:26 -0500 | [diff] [blame] | 277 | rc = CIFSSMBQAllEAs(xid, pTcon, full_path, ea_name, ea_value, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 278 | buf_size, cifs_sb->local_nls, |
| 279 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 280 | } else if (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN) == 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 281 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | goto get_ea_exit; |
| 283 | |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 284 | ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */ |
Jeff Layton | 31c0519 | 2010-02-10 16:18:26 -0500 | [diff] [blame] | 285 | rc = CIFSSMBQAllEAs(xid, pTcon, full_path, ea_name, ea_value, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 286 | buf_size, cifs_sb->local_nls, |
| 287 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 288 | } else if (strncmp(ea_name, POSIX_ACL_XATTR_ACCESS, |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 289 | strlen(POSIX_ACL_XATTR_ACCESS)) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 291 | if (sb->s_flags & MS_POSIXACL) |
Steve French | 1da0c78 | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 292 | rc = CIFSSMBGetPosixACL(xid, pTcon, full_path, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 293 | ea_value, buf_size, ACL_TYPE_ACCESS, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 294 | cifs_sb->local_nls, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 295 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 296 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 297 | #else |
Shirish Pargaonkar | fbeba8b | 2010-11-27 11:37:54 -0600 | [diff] [blame] | 298 | cFYI(1, "Query POSIX ACL not supported yet"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | #endif /* CONFIG_CIFS_POSIX */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 300 | } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT, |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 301 | strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 303 | if (sb->s_flags & MS_POSIXACL) |
Steve French | 1da0c78 | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 304 | rc = CIFSSMBGetPosixACL(xid, pTcon, full_path, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 305 | ea_value, buf_size, ACL_TYPE_DEFAULT, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 306 | cifs_sb->local_nls, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 307 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 308 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 309 | #else |
Shirish Pargaonkar | fbeba8b | 2010-11-27 11:37:54 -0600 | [diff] [blame] | 310 | cFYI(1, "Query POSIX default ACL not supported yet"); |
| 311 | #endif /* CONFIG_CIFS_POSIX */ |
| 312 | } else if (strncmp(ea_name, CIFS_XATTR_CIFS_ACL, |
| 313 | strlen(CIFS_XATTR_CIFS_ACL)) == 0) { |
| 314 | #ifdef CONFIG_CIFS_ACL |
| 315 | u32 acllen; |
| 316 | struct cifs_ntsd *pacl; |
| 317 | |
| 318 | pacl = get_cifs_acl(cifs_sb, direntry->d_inode, |
| 319 | full_path, &acllen); |
| 320 | if (IS_ERR(pacl)) { |
| 321 | rc = PTR_ERR(pacl); |
| 322 | cERROR(1, "%s: error %zd getting sec desc", |
| 323 | __func__, rc); |
| 324 | } else { |
| 325 | if (ea_value) { |
| 326 | if (acllen > buf_size) |
| 327 | acllen = -ERANGE; |
| 328 | else |
| 329 | memcpy(ea_value, pacl, acllen); |
| 330 | } |
| 331 | rc = acllen; |
| 332 | kfree(pacl); |
| 333 | } |
| 334 | #else |
| 335 | cFYI(1, "Query CIFS ACL not supported yet"); |
| 336 | #endif /* CONFIG_CIFS_ACL */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 337 | } else if (strncmp(ea_name, |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 338 | XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 339 | cFYI(1, "Trusted xattr namespace not supported yet"); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 340 | } else if (strncmp(ea_name, |
Mimi Zohar | f995e74 | 2011-08-11 16:00:47 -0400 | [diff] [blame] | 341 | XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 342 | cFYI(1, "Security xattr namespace not supported yet"); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 343 | } else |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 344 | cFYI(1, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 345 | "illegal xattr request %s (only user namespace supported)", |
| 346 | ea_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 348 | /* We could add an additional check for streams ie |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | if proc/fs/cifs/streamstoxattr is set then |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 350 | search server for EAs or streams to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | returns as xattrs */ |
| 352 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 353 | if (rc == -EINVAL) |
| 354 | rc = -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | get_ea_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 357 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 359 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | #endif |
| 361 | return rc; |
| 362 | } |
| 363 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 364 | ssize_t cifs_listxattr(struct dentry *direntry, char *data, size_t buf_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
| 366 | ssize_t rc = -EOPNOTSUPP; |
| 367 | #ifdef CONFIG_CIFS_XATTR |
| 368 | int xid; |
| 369 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 370 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 371 | struct cifs_tcon *pTcon; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 372 | struct super_block *sb; |
| 373 | char *full_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 375 | if (direntry == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | return -EIO; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 377 | if (direntry->d_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | return -EIO; |
| 379 | sb = direntry->d_inode->i_sb; |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 380 | if (sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
| 383 | cifs_sb = CIFS_SB(sb); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 384 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Steve French | ea4c07d | 2006-08-16 19:44:25 +0000 | [diff] [blame] | 385 | return -EOPNOTSUPP; |
| 386 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 387 | tlink = cifs_sb_tlink(cifs_sb); |
| 388 | if (IS_ERR(tlink)) |
| 389 | return PTR_ERR(tlink); |
| 390 | pTcon = tlink_tcon(tlink); |
| 391 | |
Steve French | ea4c07d | 2006-08-16 19:44:25 +0000 | [diff] [blame] | 392 | xid = GetXid(); |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | full_path = build_path_from_dentry(direntry); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 395 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 396 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 397 | goto list_ea_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | /* return dos attributes as pseudo xattr */ |
| 400 | /* return alt name if available as pseudo attr */ |
| 401 | |
| 402 | /* if proc/fs/cifs/streamstoxattr is set then |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 403 | search server for EAs or streams to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | returns as xattrs */ |
Jeff Layton | 31c0519 | 2010-02-10 16:18:26 -0500 | [diff] [blame] | 405 | rc = CIFSSMBQAllEAs(xid, pTcon, full_path, NULL, data, |
| 406 | buf_size, cifs_sb->local_nls, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 407 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 408 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 410 | list_ea_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 411 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 413 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | #endif |
| 415 | return rc; |
| 416 | } |