Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifsacl.c |
| 3 | * |
| 4 | * Copyright (C) International Business Machines Corp., 2007 |
| 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * Contains the routines for mapping CIFS/NTFS ACLs |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU Lesser General Public License as published |
| 11 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 17 | * the GNU Lesser General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Lesser General Public License |
| 20 | * along with this library; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 24 | #include <linux/fs.h> |
| 25 | #include "cifspdu.h" |
| 26 | #include "cifsglob.h" |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 27 | #include "cifsacl.h" |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 28 | #include "cifsproto.h" |
| 29 | #include "cifs_debug.h" |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 30 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 31 | |
| 32 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 33 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 34 | static struct cifs_wksid wksidarr[NUM_WK_SIDS] = { |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 35 | {{1, 0, {0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0} }, "null user"}, |
| 36 | {{1, 1, {0, 0, 0, 0, 0, 1}, {0, 0, 0, 0, 0} }, "nobody"}, |
Dave Kleikamp | ce51ae1 | 2007-10-16 21:35:39 +0000 | [diff] [blame] | 37 | {{1, 1, {0, 0, 0, 0, 0, 5}, {cpu_to_le32(11), 0, 0, 0, 0} }, "net-users"}, |
| 38 | {{1, 1, {0, 0, 0, 0, 0, 5}, {cpu_to_le32(18), 0, 0, 0, 0} }, "sys"}, |
| 39 | {{1, 2, {0, 0, 0, 0, 0, 5}, {cpu_to_le32(32), cpu_to_le32(544), 0, 0, 0} }, "root"}, |
| 40 | {{1, 2, {0, 0, 0, 0, 0, 5}, {cpu_to_le32(32), cpu_to_le32(545), 0, 0, 0} }, "users"}, |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 41 | {{1, 2, {0, 0, 0, 0, 0, 5}, {cpu_to_le32(32), cpu_to_le32(546), 0, 0, 0} }, "guest"} } |
| 42 | ; |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 43 | |
| 44 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 45 | /* security id for everyone */ |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 46 | static const struct cifs_sid sid_everyone = { |
| 47 | 1, 1, {0, 0, 0, 0, 0, 1}, {0} }; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 48 | /* group users */ |
| 49 | static const struct cifs_sid sid_user = |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 50 | {1, 2 , {0, 0, 0, 0, 0, 5}, {} }; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 51 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 52 | |
| 53 | int match_sid(struct cifs_sid *ctsid) |
| 54 | { |
| 55 | int i, j; |
| 56 | int num_subauth, num_sat, num_saw; |
| 57 | struct cifs_sid *cwsid; |
| 58 | |
| 59 | if (!ctsid) |
| 60 | return (-1); |
| 61 | |
| 62 | for (i = 0; i < NUM_WK_SIDS; ++i) { |
| 63 | cwsid = &(wksidarr[i].cifssid); |
| 64 | |
| 65 | /* compare the revision */ |
| 66 | if (ctsid->revision != cwsid->revision) |
| 67 | continue; |
| 68 | |
| 69 | /* compare all of the six auth values */ |
| 70 | for (j = 0; j < 6; ++j) { |
| 71 | if (ctsid->authority[j] != cwsid->authority[j]) |
| 72 | break; |
| 73 | } |
| 74 | if (j < 6) |
| 75 | continue; /* all of the auth values did not match */ |
| 76 | |
| 77 | /* compare all of the subauth values if any */ |
Dave Kleikamp | ce51ae1 | 2007-10-16 21:35:39 +0000 | [diff] [blame] | 78 | num_sat = ctsid->num_subauth; |
| 79 | num_saw = cwsid->num_subauth; |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 80 | num_subauth = num_sat < num_saw ? num_sat : num_saw; |
| 81 | if (num_subauth) { |
| 82 | for (j = 0; j < num_subauth; ++j) { |
| 83 | if (ctsid->sub_auth[j] != cwsid->sub_auth[j]) |
| 84 | break; |
| 85 | } |
| 86 | if (j < num_subauth) |
| 87 | continue; /* all sub_auth values do not match */ |
| 88 | } |
| 89 | |
| 90 | cFYI(1, ("matching sid: %s\n", wksidarr[i].sidname)); |
| 91 | return (0); /* sids compare/match */ |
| 92 | } |
| 93 | |
| 94 | cFYI(1, ("No matching sid")); |
| 95 | return (-1); |
| 96 | } |
| 97 | |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 98 | /* if the two SIDs (roughly equivalent to a UUID for a user or group) are |
| 99 | the same returns 1, if they do not match returns 0 */ |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 100 | int compare_sids(const struct cifs_sid *ctsid, const struct cifs_sid *cwsid) |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 101 | { |
| 102 | int i; |
| 103 | int num_subauth, num_sat, num_saw; |
| 104 | |
| 105 | if ((!ctsid) || (!cwsid)) |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 106 | return (0); |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 107 | |
| 108 | /* compare the revision */ |
| 109 | if (ctsid->revision != cwsid->revision) |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 110 | return (0); |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 111 | |
| 112 | /* compare all of the six auth values */ |
| 113 | for (i = 0; i < 6; ++i) { |
| 114 | if (ctsid->authority[i] != cwsid->authority[i]) |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 115 | return (0); |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* compare all of the subauth values if any */ |
Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 119 | num_sat = ctsid->num_subauth; |
Steve French | adddd49 | 2007-10-17 02:48:17 +0000 | [diff] [blame] | 120 | num_saw = cwsid->num_subauth; |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 121 | num_subauth = num_sat < num_saw ? num_sat : num_saw; |
| 122 | if (num_subauth) { |
| 123 | for (i = 0; i < num_subauth; ++i) { |
| 124 | if (ctsid->sub_auth[i] != cwsid->sub_auth[i]) |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 125 | return (0); |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 129 | return (1); /* sids compare/match */ |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 132 | /* |
| 133 | change posix mode to reflect permissions |
| 134 | pmode is the existing mode (we only want to overwrite part of this |
| 135 | bits to set can be: S_IRWXU, S_IRWXG or S_IRWXO ie 00700 or 00070 or 00007 |
| 136 | */ |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 137 | static void access_flags_to_mode(__u32 ace_flags, int type, umode_t *pmode, |
| 138 | umode_t *pbits_to_set) |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 139 | { |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 140 | /* the order of ACEs is important. The canonical order is to begin with |
| 141 | DENY entries then follow with ALLOW, otherwise an allow entry could be |
| 142 | encountered first, making the subsequent deny entry like "dead code" |
| 143 | which would be superflous since Windows stops when a match is made |
| 144 | for the operation you are trying to perform for your user */ |
| 145 | |
| 146 | /* For deny ACEs we change the mask so that subsequent allow access |
| 147 | control entries do not turn on the bits we are denying */ |
| 148 | if (type == ACCESS_DENIED) { |
| 149 | if (ace_flags & GENERIC_ALL) { |
| 150 | *pbits_to_set &= ~S_IRWXUGO; |
| 151 | } |
| 152 | if ((ace_flags & GENERIC_WRITE) || |
| 153 | ((ace_flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) |
| 154 | *pbits_to_set &= ~S_IWUGO; |
| 155 | if ((ace_flags & GENERIC_READ) || |
| 156 | ((ace_flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) |
| 157 | *pbits_to_set &= ~S_IRUGO; |
| 158 | if ((ace_flags & GENERIC_EXECUTE) || |
| 159 | ((ace_flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) |
| 160 | *pbits_to_set &= ~S_IXUGO; |
| 161 | return; |
| 162 | } else if (type != ACCESS_ALLOWED) { |
| 163 | cERROR(1, ("unknown access control type %d", type)); |
| 164 | return; |
| 165 | } |
| 166 | /* else ACCESS_ALLOWED type */ |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 167 | |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 168 | if (ace_flags & GENERIC_ALL) { |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 169 | *pmode |= (S_IRWXUGO & (*pbits_to_set)); |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 170 | #ifdef CONFIG_CIFS_DEBUG2 |
| 171 | cFYI(1, ("all perms")); |
| 172 | #endif |
| 173 | return; |
| 174 | } |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 175 | if ((ace_flags & GENERIC_WRITE) || |
| 176 | ((ace_flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 177 | *pmode |= (S_IWUGO & (*pbits_to_set)); |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 178 | if ((ace_flags & GENERIC_READ) || |
| 179 | ((ace_flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 180 | *pmode |= (S_IRUGO & (*pbits_to_set)); |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 181 | if ((ace_flags & GENERIC_EXECUTE) || |
| 182 | ((ace_flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 183 | *pmode |= (S_IXUGO & (*pbits_to_set)); |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 184 | |
| 185 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 186 | cFYI(1, ("access flags 0x%x mode now 0x%x", ace_flags, *pmode)); |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 187 | #endif |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 188 | return; |
| 189 | } |
| 190 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 191 | |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 192 | #ifdef CONFIG_CIFS_DEBUG2 |
| 193 | static void dump_ace(struct cifs_ace *pace, char *end_of_acl) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 194 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 195 | int num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 196 | |
| 197 | /* validate that we do not go past end of acl */ |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 198 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 199 | if (le16_to_cpu(pace->size) < 16) { |
| 200 | cERROR(1, ("ACE too small, %d", le16_to_cpu(pace->size))); |
| 201 | return; |
| 202 | } |
| 203 | |
| 204 | if (end_of_acl < (char *)pace + le16_to_cpu(pace->size)) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 205 | cERROR(1, ("ACL too small to parse ACE")); |
| 206 | return; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 207 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 208 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 209 | num_subauth = pace->sid.num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 210 | if (num_subauth) { |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 211 | int i; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 212 | cFYI(1, ("ACE revision %d num_auth %d type %d flags %d size %d", |
| 213 | pace->sid.revision, pace->sid.num_subauth, pace->type, |
| 214 | pace->flags, pace->size)); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 215 | for (i = 0; i < num_subauth; ++i) { |
| 216 | cFYI(1, ("ACE sub_auth[%d]: 0x%x", i, |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 217 | le32_to_cpu(pace->sid.sub_auth[i]))); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 218 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 219 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 220 | /* BB add length check to make sure that we do not have huge |
| 221 | num auths and therefore go off the end */ |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 222 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 223 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 224 | return; |
| 225 | } |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 226 | #endif |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 227 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 228 | |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 229 | static void parse_dacl(struct cifs_acl *pdacl, char *end_of_acl, |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 230 | struct cifs_sid *pownersid, struct cifs_sid *pgrpsid, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 231 | struct inode *inode) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 232 | { |
| 233 | int i; |
| 234 | int num_aces = 0; |
| 235 | int acl_size; |
| 236 | char *acl_base; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 237 | struct cifs_ace **ppace; |
| 238 | |
| 239 | /* BB need to add parm so we can store the SID BB */ |
| 240 | |
| 241 | /* validate that we do not go past end of acl */ |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 242 | if (end_of_acl < (char *)pdacl + le16_to_cpu(pdacl->size)) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 243 | cERROR(1, ("ACL too small to parse DACL")); |
| 244 | return; |
| 245 | } |
| 246 | |
| 247 | #ifdef CONFIG_CIFS_DEBUG2 |
| 248 | cFYI(1, ("DACL revision %d size %d num aces %d", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 249 | le16_to_cpu(pdacl->revision), le16_to_cpu(pdacl->size), |
| 250 | le32_to_cpu(pdacl->num_aces))); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 251 | #endif |
| 252 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 253 | /* reset rwx permissions for user/group/other. |
| 254 | Also, if num_aces is 0 i.e. DACL has no ACEs, |
| 255 | user/group/other have no permissions */ |
| 256 | inode->i_mode &= ~(S_IRWXUGO); |
| 257 | |
| 258 | if (!pdacl) { |
| 259 | /* no DACL in the security descriptor, set |
| 260 | all the permissions for user/group/other */ |
| 261 | inode->i_mode |= S_IRWXUGO; |
| 262 | return; |
| 263 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 264 | acl_base = (char *)pdacl; |
| 265 | acl_size = sizeof(struct cifs_acl); |
| 266 | |
Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 267 | num_aces = le32_to_cpu(pdacl->num_aces); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 268 | if (num_aces > 0) { |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 269 | umode_t user_mask = S_IRWXU; |
| 270 | umode_t group_mask = S_IRWXG; |
| 271 | umode_t other_mask = S_IRWXO; |
| 272 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 273 | ppace = kmalloc(num_aces * sizeof(struct cifs_ace *), |
| 274 | GFP_KERNEL); |
| 275 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 276 | /* cifscred->cecount = pdacl->num_aces; |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 277 | cifscred->aces = kmalloc(num_aces * |
| 278 | sizeof(struct cifs_ace *), GFP_KERNEL);*/ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 279 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 280 | for (i = 0; i < num_aces; ++i) { |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 281 | ppace[i] = (struct cifs_ace *) (acl_base + acl_size); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 282 | #ifdef CONFIG_CIFS_DEBUG2 |
| 283 | dump_ace(ppace[i], end_of_acl); |
| 284 | #endif |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 285 | if (compare_sids(&(ppace[i]->sid), pownersid)) |
| 286 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 287 | ppace[i]->type, |
| 288 | &(inode->i_mode), |
| 289 | &user_mask); |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 290 | if (compare_sids(&(ppace[i]->sid), pgrpsid)) |
| 291 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 292 | ppace[i]->type, |
| 293 | &(inode->i_mode), |
| 294 | &group_mask); |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 295 | if (compare_sids(&(ppace[i]->sid), &sid_everyone)) |
| 296 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame^] | 297 | ppace[i]->type, |
| 298 | &(inode->i_mode), |
| 299 | &other_mask); |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 300 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 301 | /* memcpy((void *)(&(cifscred->aces[i])), |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 302 | (void *)ppace[i], |
| 303 | sizeof(struct cifs_ace)); */ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 304 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 305 | acl_base = (char *)ppace[i]; |
| 306 | acl_size = le16_to_cpu(ppace[i]->size); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | kfree(ppace); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | return; |
| 313 | } |
| 314 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 315 | |
| 316 | static int parse_sid(struct cifs_sid *psid, char *end_of_acl) |
| 317 | { |
| 318 | /* BB need to add parm so we can store the SID BB */ |
| 319 | |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 320 | /* validate that we do not go past end of ACL - sid must be at least 8 |
| 321 | bytes long (assuming no sub-auths - e.g. the null SID */ |
| 322 | if (end_of_acl < (char *)psid + 8) { |
| 323 | cERROR(1, ("ACL too small to parse SID %p", psid)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 324 | return -EINVAL; |
| 325 | } |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 326 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 327 | if (psid->num_subauth) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 328 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 329 | int i; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 330 | cFYI(1, ("SID revision %d num_auth %d", |
| 331 | psid->revision, psid->num_subauth)); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 332 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 333 | for (i = 0; i < psid->num_subauth; i++) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 334 | cFYI(1, ("SID sub_auth[%d]: 0x%x ", i, |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 335 | le32_to_cpu(psid->sub_auth[i]))); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 338 | /* BB add length check to make sure that we do not have huge |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 339 | num auths and therefore go off the end */ |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 340 | cFYI(1, ("RID 0x%x", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 341 | le32_to_cpu(psid->sub_auth[psid->num_subauth-1]))); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 342 | #endif |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 348 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 349 | /* Convert CIFS ACL to POSIX form */ |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 350 | static int parse_sec_desc(struct cifs_ntsd *pntsd, int acl_len, |
| 351 | struct inode *inode) |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 352 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 353 | int rc; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 354 | struct cifs_sid *owner_sid_ptr, *group_sid_ptr; |
| 355 | struct cifs_acl *dacl_ptr; /* no need for SACL ptr */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 356 | char *end_of_acl = ((char *)pntsd) + acl_len; |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 357 | __u32 dacloffset; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 358 | |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 359 | if ((inode == NULL) || (pntsd == NULL)) |
| 360 | return -EIO; |
| 361 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 362 | owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 363 | le32_to_cpu(pntsd->osidoffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 364 | group_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 365 | le32_to_cpu(pntsd->gsidoffset)); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 366 | dacloffset = le32_to_cpu(pntsd->dacloffset); |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 367 | dacl_ptr = (struct cifs_acl *)((char *)pntsd + dacloffset); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 368 | #ifdef CONFIG_CIFS_DEBUG2 |
| 369 | cFYI(1, ("revision %d type 0x%x ooffset 0x%x goffset 0x%x " |
| 370 | "sacloffset 0x%x dacloffset 0x%x", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 371 | pntsd->revision, pntsd->type, le32_to_cpu(pntsd->osidoffset), |
| 372 | le32_to_cpu(pntsd->gsidoffset), |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 373 | le32_to_cpu(pntsd->sacloffset), dacloffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 374 | #endif |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 375 | /* cifs_dump_mem("owner_sid: ", owner_sid_ptr, 64); */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 376 | rc = parse_sid(owner_sid_ptr, end_of_acl); |
| 377 | if (rc) |
| 378 | return rc; |
| 379 | |
| 380 | rc = parse_sid(group_sid_ptr, end_of_acl); |
| 381 | if (rc) |
| 382 | return rc; |
| 383 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 384 | if (dacloffset) |
| 385 | parse_dacl(dacl_ptr, end_of_acl, owner_sid_ptr, |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 386 | group_sid_ptr, inode); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 387 | else |
| 388 | cFYI(1, ("no ACL")); /* BB grant all or default perms? */ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 389 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 390 | /* cifscred->uid = owner_sid_ptr->rid; |
| 391 | cifscred->gid = group_sid_ptr->rid; |
| 392 | memcpy((void *)(&(cifscred->osid)), (void *)owner_sid_ptr, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 393 | sizeof(struct cifs_sid)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 394 | memcpy((void *)(&(cifscred->gsid)), (void *)group_sid_ptr, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 395 | sizeof(struct cifs_sid)); */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 396 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 397 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 398 | return (0); |
| 399 | } |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 400 | |
| 401 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 402 | /* Retrieve an ACL from the server */ |
| 403 | static struct cifs_ntsd *get_cifs_acl(u32 *pacllen, struct inode *inode, |
| 404 | const char *path) |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 405 | { |
| 406 | struct cifsFileInfo *open_file; |
| 407 | int unlock_file = FALSE; |
| 408 | int xid; |
| 409 | int rc = -EIO; |
| 410 | __u16 fid; |
| 411 | struct super_block *sb; |
| 412 | struct cifs_sb_info *cifs_sb; |
| 413 | struct cifs_ntsd *pntsd = NULL; |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 414 | |
| 415 | cFYI(1, ("get mode from ACL for %s", path)); |
| 416 | |
| 417 | if (inode == NULL) |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 418 | return NULL; |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 419 | |
| 420 | xid = GetXid(); |
| 421 | open_file = find_readable_file(CIFS_I(inode)); |
| 422 | sb = inode->i_sb; |
| 423 | if (sb == NULL) { |
| 424 | FreeXid(xid); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 425 | return NULL; |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 426 | } |
| 427 | cifs_sb = CIFS_SB(sb); |
| 428 | |
| 429 | if (open_file) { |
| 430 | unlock_file = TRUE; |
| 431 | fid = open_file->netfid; |
| 432 | } else { |
| 433 | int oplock = FALSE; |
| 434 | /* open file */ |
| 435 | rc = CIFSSMBOpen(xid, cifs_sb->tcon, path, FILE_OPEN, |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 436 | READ_CONTROL, 0, &fid, &oplock, NULL, |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 437 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 438 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 439 | if (rc != 0) { |
| 440 | cERROR(1, ("Unable to open file to get ACL")); |
| 441 | FreeXid(xid); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 442 | return NULL; |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 446 | rc = CIFSSMBGetCIFSACL(xid, cifs_sb->tcon, fid, &pntsd, pacllen); |
| 447 | cFYI(1, ("GetCIFSACL rc = %d ACL len %d", rc, *pacllen)); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 448 | if (unlock_file == TRUE) |
| 449 | atomic_dec(&open_file->wrtPending); |
| 450 | else |
| 451 | CIFSSMBClose(xid, cifs_sb->tcon, fid); |
| 452 | |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 453 | FreeXid(xid); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 454 | return pntsd; |
| 455 | } |
| 456 | |
| 457 | /* Translate the CIFS ACL (simlar to NTFS ACL) for a file into mode bits */ |
| 458 | void acl_to_uid_mode(struct inode *inode, const char *path) |
| 459 | { |
| 460 | struct cifs_ntsd *pntsd = NULL; |
| 461 | u32 acllen = 0; |
| 462 | int rc = 0; |
| 463 | |
| 464 | #ifdef CONFIG_CIFS_DEBUG2 |
| 465 | cFYI(1, ("converting ACL to mode for %s", path)); |
| 466 | #endif |
| 467 | pntsd = get_cifs_acl(&acllen, inode, path); |
| 468 | |
| 469 | /* if we can retrieve the ACL, now parse Access Control Entries, ACEs */ |
| 470 | if (pntsd) |
| 471 | rc = parse_sec_desc(pntsd, acllen, inode); |
| 472 | if (rc) |
| 473 | cFYI(1, ("parse sec desc failed rc = %d", rc)); |
| 474 | |
| 475 | kfree(pntsd); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 476 | return; |
| 477 | } |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 478 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 479 | /* Convert mode bits to an ACL so we can update the ACL on the server */ |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 480 | int mode_to_acl(struct inode *inode, const char *path) |
| 481 | { |
| 482 | int rc = 0; |
| 483 | __u32 acllen = 0; |
| 484 | struct cifs_ntsd *pntsd = NULL; |
| 485 | |
| 486 | cFYI(1, ("set ACL from mode for %s", path)); |
| 487 | |
| 488 | /* Get the security descriptor */ |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 489 | pntsd = get_cifs_acl(&acllen, inode, path); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 490 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 491 | /* Add/Modify the three ACEs for owner, group, everyone |
| 492 | while retaining the other ACEs */ |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 493 | |
| 494 | /* Set the security descriptor */ |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 495 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 496 | |
| 497 | kfree(pntsd); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 498 | return rc; |
| 499 | } |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 500 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |