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 | ce51ae14 | 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 */ |
| 46 | static const struct cifs_sid sid_everyone = |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 47 | {1, 1, {0, 0, 0, 0, 0, 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 | ce51ae14 | 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 | */ |
| 137 | static void access_flags_to_mode(__u32 access_flags, umode_t * pmode, |
| 138 | umode_t bits_to_set) |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 139 | { |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 140 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 141 | #ifdef CONFIG_CIFS_DEBUG2 |
| 142 | cFYI(1, ("access flags 0x%x mode now 0x%x", access_flags, *pmode); |
| 143 | #endif |
| 144 | |
| 145 | return; |
| 146 | } |
| 147 | |
| 148 | /* Translate the CIFS ACL (simlar to NTFS ACL) for a file into mode bits */ |
| 149 | |
| 150 | void acl_to_uid_mode(struct inode *inode, const char *path) |
| 151 | { |
| 152 | struct cifsFileInfo *open_file; |
| 153 | int unlock_file = FALSE; |
| 154 | int xid; |
| 155 | int rc = -EIO; |
| 156 | __u16 fid; |
| 157 | struct super_block *sb; |
| 158 | struct cifs_sb_info *cifs_sb; |
| 159 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 160 | cFYI(1, ("get mode from ACL for %s", path)); |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 161 | |
| 162 | if (inode == NULL) |
| 163 | return; |
| 164 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 165 | xid = GetXid(); |
| 166 | open_file = find_readable_file(CIFS_I(inode)); |
| 167 | if (open_file) { |
| 168 | unlock_file = TRUE; |
| 169 | fid = open_file->netfid; |
| 170 | } else { |
| 171 | int oplock = FALSE; |
| 172 | /* open file */ |
| 173 | sb = inode->i_sb; |
| 174 | if (sb == NULL) { |
| 175 | FreeXid(xid); |
| 176 | return; |
| 177 | } |
| 178 | cifs_sb = CIFS_SB(sb); |
| 179 | rc = CIFSSMBOpen(xid, cifs_sb->tcon, path, FILE_OPEN, |
| 180 | GENERIC_READ, 0, &fid, &oplock, NULL, |
| 181 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 182 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 183 | if (rc != 0) { |
| 184 | cERROR(1, ("Unable to open file to get ACL")); |
| 185 | FreeXid(xid); |
| 186 | return; |
| 187 | } |
| 188 | } |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 189 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 190 | /* rc = CIFSSMBGetCIFSACL(xid, cifs_sb->tcon, fid, pntsd, acllen, |
| 191 | ACL_TYPE_ACCESS); */ |
| 192 | |
| 193 | if (unlock_file == TRUE) |
| 194 | atomic_dec(&open_file->wrtPending); |
| 195 | else |
| 196 | CIFSSMBClose(xid, cifs_sb->tcon, fid); |
| 197 | |
| 198 | /* parse ACEs e.g. |
| 199 | rc = parse_sec_desc(pntsd, acllen, inode); |
| 200 | */ |
| 201 | |
| 202 | FreeXid(xid); |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 203 | return; |
| 204 | } |
| 205 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 206 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 207 | static void parse_ace(struct cifs_ace *pace, char *end_of_acl) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 208 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 209 | int num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 210 | |
| 211 | /* validate that we do not go past end of acl */ |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 212 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 213 | if (le16_to_cpu(pace->size) < 16) { |
| 214 | cERROR(1, ("ACE too small, %d", le16_to_cpu(pace->size))); |
| 215 | return; |
| 216 | } |
| 217 | |
| 218 | if (end_of_acl < (char *)pace + le16_to_cpu(pace->size)) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 219 | cERROR(1, ("ACL too small to parse ACE")); |
| 220 | return; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 221 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 222 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 223 | num_subauth = pace->sid.num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 224 | if (num_subauth) { |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 225 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 226 | int i; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 227 | cFYI(1, ("ACE revision %d num_auth %d type %d flags %d size %d", |
| 228 | pace->sid.revision, pace->sid.num_subauth, pace->type, |
| 229 | pace->flags, pace->size)); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 230 | for (i = 0; i < num_subauth; ++i) { |
| 231 | cFYI(1, ("ACE sub_auth[%d]: 0x%x", i, |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 232 | le32_to_cpu(pace->sid.sub_auth[i]))); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 233 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 234 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 235 | /* BB add length check to make sure that we do not have huge |
| 236 | num auths and therefore go off the end */ |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 237 | #endif |
| 238 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 239 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 240 | return; |
| 241 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 242 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 243 | |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 244 | static void parse_dacl(struct cifs_acl *pdacl, char *end_of_acl, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 245 | struct cifs_sid *pownersid, struct cifs_sid *pgrpsid |
| 246 | struct inode *inode) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 247 | { |
| 248 | int i; |
| 249 | int num_aces = 0; |
| 250 | int acl_size; |
| 251 | char *acl_base; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 252 | struct cifs_ace **ppace; |
| 253 | |
| 254 | /* BB need to add parm so we can store the SID BB */ |
| 255 | |
| 256 | /* validate that we do not go past end of acl */ |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 257 | if (end_of_acl < (char *)pdacl + le16_to_cpu(pdacl->size)) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 258 | cERROR(1, ("ACL too small to parse DACL")); |
| 259 | return; |
| 260 | } |
| 261 | |
| 262 | #ifdef CONFIG_CIFS_DEBUG2 |
| 263 | cFYI(1, ("DACL revision %d size %d num aces %d", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 264 | le16_to_cpu(pdacl->revision), le16_to_cpu(pdacl->size), |
| 265 | le32_to_cpu(pdacl->num_aces))); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 266 | #endif |
| 267 | |
| 268 | acl_base = (char *)pdacl; |
| 269 | acl_size = sizeof(struct cifs_acl); |
| 270 | |
Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 271 | num_aces = le32_to_cpu(pdacl->num_aces); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 272 | if (num_aces > 0) { |
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); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 282 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 283 | parse_ace(ppace[i], end_of_acl); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 284 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 285 | /* memcpy((void *)(&(cifscred->aces[i])), |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 286 | (void *)ppace[i], |
| 287 | sizeof(struct cifs_ace)); */ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 288 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 289 | acl_base = (char *)ppace[i]; |
| 290 | acl_size = le16_to_cpu(ppace[i]->size); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | kfree(ppace); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | return; |
| 297 | } |
| 298 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 299 | |
| 300 | static int parse_sid(struct cifs_sid *psid, char *end_of_acl) |
| 301 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 302 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 303 | /* BB need to add parm so we can store the SID BB */ |
| 304 | |
| 305 | /* validate that we do not go past end of acl */ |
| 306 | if (end_of_acl < (char *)psid + sizeof(struct cifs_sid)) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 307 | cERROR(1, ("ACL too small to parse SID")); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 308 | return -EINVAL; |
| 309 | } |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 310 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 311 | if (psid->num_subauth) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 312 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 313 | int i; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 314 | cFYI(1, ("SID revision %d num_auth %d", |
| 315 | psid->revision, psid->num_subauth)); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 316 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 317 | for (i = 0; i < psid->num_subauth; i++) { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 318 | cFYI(1, ("SID sub_auth[%d]: 0x%x ", i, |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 319 | le32_to_cpu(psid->sub_auth[i]))); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 322 | /* 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] | 323 | num auths and therefore go off the end */ |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 324 | cFYI(1, ("RID 0x%x", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 325 | le32_to_cpu(psid->sub_auth[psid->num_subauth-1]))); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 326 | #endif |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 329 | return 0; |
| 330 | } |
| 331 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 332 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 333 | /* Convert CIFS ACL to POSIX form */ |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 334 | static int parse_sec_desc(struct cifs_ntsd *pntsd, int acl_len, |
| 335 | struct inode *inode) |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 336 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 337 | int rc; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 338 | struct cifs_sid *owner_sid_ptr, *group_sid_ptr; |
| 339 | struct cifs_acl *dacl_ptr; /* no need for SACL ptr */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 340 | char *end_of_acl = ((char *)pntsd) + acl_len; |
| 341 | |
| 342 | owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 343 | le32_to_cpu(pntsd->osidoffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 344 | group_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 345 | le32_to_cpu(pntsd->gsidoffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 346 | dacl_ptr = (struct cifs_acl *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 347 | le32_to_cpu(pntsd->dacloffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 348 | #ifdef CONFIG_CIFS_DEBUG2 |
| 349 | cFYI(1, ("revision %d type 0x%x ooffset 0x%x goffset 0x%x " |
| 350 | "sacloffset 0x%x dacloffset 0x%x", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 351 | pntsd->revision, pntsd->type, le32_to_cpu(pntsd->osidoffset), |
| 352 | le32_to_cpu(pntsd->gsidoffset), |
| 353 | le32_to_cpu(pntsd->sacloffset), |
Dave Kleikamp | ce51ae14 | 2007-10-16 21:35:39 +0000 | [diff] [blame] | 354 | le32_to_cpu(pntsd->dacloffset))); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 355 | #endif |
| 356 | rc = parse_sid(owner_sid_ptr, end_of_acl); |
| 357 | if (rc) |
| 358 | return rc; |
| 359 | |
| 360 | rc = parse_sid(group_sid_ptr, end_of_acl); |
| 361 | if (rc) |
| 362 | return rc; |
| 363 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 364 | parse_dacl(dacl_ptr, end_of_acl, owner_sid_ptr, group_sid_ptr, inode); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 365 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 366 | /* cifscred->uid = owner_sid_ptr->rid; |
| 367 | cifscred->gid = group_sid_ptr->rid; |
| 368 | memcpy((void *)(&(cifscred->osid)), (void *)owner_sid_ptr, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 369 | sizeof(struct cifs_sid)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 370 | memcpy((void *)(&(cifscred->gsid)), (void *)group_sid_ptr, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame^] | 371 | sizeof(struct cifs_sid)); */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 372 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 373 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 374 | return (0); |
| 375 | } |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 376 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |