Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifsacl.c |
| 3 | * |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2007,2008 |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 26 | #include <linux/string.h> |
| 27 | #include <linux/keyctl.h> |
| 28 | #include <linux/key-type.h> |
| 29 | #include <keys/user-type.h> |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 30 | #include "cifspdu.h" |
| 31 | #include "cifsglob.h" |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 32 | #include "cifsacl.h" |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 33 | #include "cifsproto.h" |
| 34 | #include "cifs_debug.h" |
Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 35 | |
Shirish Pargaonkar | 2fbc2f1 | 2010-12-06 14:56:46 -0600 | [diff] [blame] | 36 | /* security id for everyone/world system group */ |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 37 | static const struct cifs_sid sid_everyone = { |
| 38 | 1, 1, {0, 0, 0, 0, 0, 1}, {0} }; |
Shirish Pargaonkar | 2fbc2f1 | 2010-12-06 14:56:46 -0600 | [diff] [blame] | 39 | /* security id for Authenticated Users system group */ |
| 40 | static const struct cifs_sid sid_authusers = { |
Steve French | 4f61258 | 2011-05-27 20:40:18 +0000 | [diff] [blame] | 41 | 1, 1, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(11)} }; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 42 | /* group users */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 43 | static const struct cifs_sid sid_user = {1, 2 , {0, 0, 0, 0, 0, 5}, {} }; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 44 | |
Jeff Layton | b1a6dc2 | 2012-11-25 08:00:38 -0500 | [diff] [blame] | 45 | static const struct cred *root_cred; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 46 | |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 47 | static int |
David Howells | cf7f601 | 2012-09-13 13:06:29 +0100 | [diff] [blame] | 48 | cifs_idmap_key_instantiate(struct key *key, struct key_preparsed_payload *prep) |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 49 | { |
| 50 | char *payload; |
| 51 | |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 52 | /* |
| 53 | * If the payload is less than or equal to the size of a pointer, then |
| 54 | * an allocation here is wasteful. Just copy the data directly to the |
| 55 | * payload.value union member instead. |
| 56 | * |
| 57 | * With this however, you must check the datalen before trying to |
| 58 | * dereference payload.data! |
| 59 | */ |
Jeff Layton | 1f63068 | 2012-12-03 06:05:31 -0500 | [diff] [blame^] | 60 | if (prep->datalen <= sizeof(key->payload)) { |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 61 | key->payload.value = 0; |
| 62 | memcpy(&key->payload.value, prep->data, prep->datalen); |
| 63 | key->datalen = prep->datalen; |
| 64 | return 0; |
| 65 | } |
David Howells | cf7f601 | 2012-09-13 13:06:29 +0100 | [diff] [blame] | 66 | payload = kmalloc(prep->datalen, GFP_KERNEL); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 67 | if (!payload) |
| 68 | return -ENOMEM; |
| 69 | |
David Howells | cf7f601 | 2012-09-13 13:06:29 +0100 | [diff] [blame] | 70 | memcpy(payload, prep->data, prep->datalen); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 71 | key->payload.data = payload; |
David Howells | cf7f601 | 2012-09-13 13:06:29 +0100 | [diff] [blame] | 72 | key->datalen = prep->datalen; |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static inline void |
| 77 | cifs_idmap_key_destroy(struct key *key) |
| 78 | { |
Jeff Layton | 1f63068 | 2012-12-03 06:05:31 -0500 | [diff] [blame^] | 79 | if (key->datalen > sizeof(key->payload)) |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 80 | kfree(key->payload.data); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 81 | } |
| 82 | |
Jeff Layton | b1a6dc2 | 2012-11-25 08:00:38 -0500 | [diff] [blame] | 83 | static struct key_type cifs_idmap_key_type = { |
Shirish Pargaonkar | c4aca0c | 2011-05-06 02:35:00 -0500 | [diff] [blame] | 84 | .name = "cifs.idmap", |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 85 | .instantiate = cifs_idmap_key_instantiate, |
| 86 | .destroy = cifs_idmap_key_destroy, |
| 87 | .describe = user_describe, |
| 88 | .match = user_match, |
| 89 | }; |
| 90 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 91 | static char * |
| 92 | sid_to_key_str(struct cifs_sid *sidptr, unsigned int type) |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 93 | { |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 94 | int i, len; |
Jeff Layton | ee13b2b | 2012-11-25 08:00:38 -0500 | [diff] [blame] | 95 | unsigned int saval; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 96 | char *sidstr, *strptr; |
| 97 | |
| 98 | /* 3 bytes for prefix */ |
| 99 | sidstr = kmalloc(3 + SID_STRING_BASE_SIZE + |
| 100 | (SID_STRING_SUBAUTH_SIZE * sidptr->num_subauth), |
| 101 | GFP_KERNEL); |
| 102 | if (!sidstr) |
| 103 | return sidstr; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 104 | |
| 105 | strptr = sidstr; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 106 | len = sprintf(strptr, "%cs:S-%hhu", type == SIDOWNER ? 'o' : 'g', |
| 107 | sidptr->revision); |
| 108 | strptr += len; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 109 | |
Jeff Layton | 852e229 | 2012-11-25 08:00:36 -0500 | [diff] [blame] | 110 | for (i = 0; i < NUM_AUTHS; ++i) { |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 111 | if (sidptr->authority[i]) { |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 112 | len = sprintf(strptr, "-%hhu", sidptr->authority[i]); |
| 113 | strptr += len; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
| 117 | for (i = 0; i < sidptr->num_subauth; ++i) { |
| 118 | saval = le32_to_cpu(sidptr->sub_auth[i]); |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 119 | len = sprintf(strptr, "-%u", saval); |
| 120 | strptr += len; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 121 | } |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 122 | |
| 123 | return sidstr; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 124 | } |
| 125 | |
Jeff Layton | 436bb43 | 2012-11-25 08:00:36 -0500 | [diff] [blame] | 126 | /* |
| 127 | * if the two SIDs (roughly equivalent to a UUID for a user or group) are |
| 128 | * the same returns zero, if they do not match returns non-zero. |
| 129 | */ |
| 130 | static int |
| 131 | compare_sids(const struct cifs_sid *ctsid, const struct cifs_sid *cwsid) |
| 132 | { |
| 133 | int i; |
| 134 | int num_subauth, num_sat, num_saw; |
| 135 | |
| 136 | if ((!ctsid) || (!cwsid)) |
| 137 | return 1; |
| 138 | |
| 139 | /* compare the revision */ |
| 140 | if (ctsid->revision != cwsid->revision) { |
| 141 | if (ctsid->revision > cwsid->revision) |
| 142 | return 1; |
| 143 | else |
| 144 | return -1; |
| 145 | } |
| 146 | |
| 147 | /* compare all of the six auth values */ |
| 148 | for (i = 0; i < NUM_AUTHS; ++i) { |
| 149 | if (ctsid->authority[i] != cwsid->authority[i]) { |
| 150 | if (ctsid->authority[i] > cwsid->authority[i]) |
| 151 | return 1; |
| 152 | else |
| 153 | return -1; |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | /* compare all of the subauth values if any */ |
| 158 | num_sat = ctsid->num_subauth; |
| 159 | num_saw = cwsid->num_subauth; |
| 160 | num_subauth = num_sat < num_saw ? num_sat : num_saw; |
| 161 | if (num_subauth) { |
| 162 | for (i = 0; i < num_subauth; ++i) { |
| 163 | if (ctsid->sub_auth[i] != cwsid->sub_auth[i]) { |
| 164 | if (le32_to_cpu(ctsid->sub_auth[i]) > |
| 165 | le32_to_cpu(cwsid->sub_auth[i])) |
| 166 | return 1; |
| 167 | else |
| 168 | return -1; |
| 169 | } |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | return 0; /* sids compare/match */ |
| 174 | } |
| 175 | |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 176 | static void |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 177 | cifs_copy_sid(struct cifs_sid *dst, const struct cifs_sid *src) |
| 178 | { |
Jeff Layton | 36f87ee | 2012-11-25 08:00:37 -0500 | [diff] [blame] | 179 | int i; |
| 180 | |
| 181 | dst->revision = src->revision; |
Jeff Layton | 30c9d6c | 2012-11-25 08:00:37 -0500 | [diff] [blame] | 182 | dst->num_subauth = min_t(u8, src->num_subauth, SID_MAX_SUB_AUTHORITIES); |
Jeff Layton | 36f87ee | 2012-11-25 08:00:37 -0500 | [diff] [blame] | 183 | for (i = 0; i < NUM_AUTHS; ++i) |
| 184 | dst->authority[i] = src->authority[i]; |
| 185 | for (i = 0; i < dst->num_subauth; ++i) |
| 186 | dst->sub_auth[i] = src->sub_auth[i]; |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 187 | } |
| 188 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 189 | static int |
| 190 | id_to_sid(unsigned int cid, uint sidtype, struct cifs_sid *ssid) |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 191 | { |
| 192 | int rc; |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 193 | struct key *sidkey; |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 194 | struct cifs_sid *ksid; |
| 195 | unsigned int ksid_size; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 196 | char desc[3 + 10 + 1]; /* 3 byte prefix + 10 bytes for value + NULL */ |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 197 | const struct cred *saved_cred; |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 198 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 199 | rc = snprintf(desc, sizeof(desc), "%ci:%u", |
| 200 | sidtype == SIDOWNER ? 'o' : 'g', cid); |
| 201 | if (rc >= sizeof(desc)) |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 202 | return -EINVAL; |
| 203 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 204 | rc = 0; |
| 205 | saved_cred = override_creds(root_cred); |
| 206 | sidkey = request_key(&cifs_idmap_key_type, desc, ""); |
| 207 | if (IS_ERR(sidkey)) { |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 208 | rc = -EINVAL; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 209 | cFYI(1, "%s: Can't map %cid %u to a SID", __func__, |
| 210 | sidtype == SIDOWNER ? 'u' : 'g', cid); |
| 211 | goto out_revert_creds; |
| 212 | } else if (sidkey->datalen < CIFS_SID_BASE_SIZE) { |
| 213 | rc = -EIO; |
| 214 | cFYI(1, "%s: Downcall contained malformed key " |
| 215 | "(datalen=%hu)", __func__, sidkey->datalen); |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 216 | goto invalidate_key; |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 217 | } |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 218 | |
Jeff Layton | 1f63068 | 2012-12-03 06:05:31 -0500 | [diff] [blame^] | 219 | /* |
| 220 | * A sid is usually too large to be embedded in payload.value, but if |
| 221 | * there are no subauthorities and the host has 8-byte pointers, then |
| 222 | * it could be. |
| 223 | */ |
| 224 | ksid = sidkey->datalen <= sizeof(sidkey->payload) ? |
| 225 | (struct cifs_sid *)&sidkey->payload.value : |
| 226 | (struct cifs_sid *)sidkey->payload.data; |
| 227 | |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 228 | ksid_size = CIFS_SID_BASE_SIZE + (ksid->num_subauth * sizeof(__le32)); |
| 229 | if (ksid_size > sidkey->datalen) { |
| 230 | rc = -EIO; |
| 231 | cFYI(1, "%s: Downcall contained malformed key (datalen=%hu, " |
| 232 | "ksid_size=%u)", __func__, sidkey->datalen, ksid_size); |
| 233 | goto invalidate_key; |
| 234 | } |
Jeff Layton | 1f63068 | 2012-12-03 06:05:31 -0500 | [diff] [blame^] | 235 | |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 236 | cifs_copy_sid(ssid, ksid); |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 237 | out_key_put: |
| 238 | key_put(sidkey); |
| 239 | out_revert_creds: |
| 240 | revert_creds(saved_cred); |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 241 | return rc; |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 242 | |
| 243 | invalidate_key: |
| 244 | key_invalidate(sidkey); |
| 245 | goto out_key_put; |
Shirish Pargaonkar | 21fed0d | 2011-08-09 14:30:48 -0500 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static int |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 249 | sid_to_id(struct cifs_sb_info *cifs_sb, struct cifs_sid *psid, |
| 250 | struct cifs_fattr *fattr, uint sidtype) |
| 251 | { |
| 252 | int rc; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 253 | struct key *sidkey; |
| 254 | char *sidstr; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 255 | const struct cred *saved_cred; |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 256 | uid_t fuid = cifs_sb->mnt_uid; |
| 257 | gid_t fgid = cifs_sb->mnt_gid; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 258 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 259 | /* |
| 260 | * If we have too many subauthorities, then something is really wrong. |
| 261 | * Just return an error. |
| 262 | */ |
| 263 | if (unlikely(psid->num_subauth > SID_MAX_SUB_AUTHORITIES)) { |
| 264 | cFYI(1, "%s: %u subauthorities is too many!", __func__, |
| 265 | psid->num_subauth); |
| 266 | return -EIO; |
| 267 | } |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 268 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 269 | sidstr = sid_to_key_str(psid, sidtype); |
| 270 | if (!sidstr) |
| 271 | return -ENOMEM; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 272 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 273 | saved_cred = override_creds(root_cred); |
| 274 | sidkey = request_key(&cifs_idmap_key_type, sidstr, ""); |
| 275 | if (IS_ERR(sidkey)) { |
| 276 | rc = -EINVAL; |
| 277 | cFYI(1, "%s: Can't map SID %s to a %cid", __func__, sidstr, |
| 278 | sidtype == SIDOWNER ? 'u' : 'g'); |
| 279 | goto out_revert_creds; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 283 | * FIXME: Here we assume that uid_t and gid_t are same size. It's |
| 284 | * probably a safe assumption but might be better to check based on |
| 285 | * sidtype. |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 286 | */ |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 287 | if (sidkey->datalen != sizeof(uid_t)) { |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 288 | rc = -EIO; |
| 289 | cFYI(1, "%s: Downcall contained malformed key " |
| 290 | "(datalen=%hu)", __func__, sidkey->datalen); |
Jeff Layton | 2ae0302 | 2012-12-03 06:05:30 -0500 | [diff] [blame] | 291 | key_invalidate(sidkey); |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 292 | goto out_key_put; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 293 | } |
| 294 | |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 295 | if (sidtype == SIDOWNER) |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 296 | memcpy(&fuid, &sidkey->payload.value, sizeof(uid_t)); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 297 | else |
Jeff Layton | 41a9f1f | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 298 | memcpy(&fgid, &sidkey->payload.value, sizeof(gid_t)); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 299 | |
Jeff Layton | faa65f0 | 2012-12-03 06:05:29 -0500 | [diff] [blame] | 300 | out_key_put: |
| 301 | key_put(sidkey); |
| 302 | out_revert_creds: |
| 303 | revert_creds(saved_cred); |
| 304 | kfree(sidstr); |
| 305 | |
| 306 | /* |
| 307 | * Note that we return 0 here unconditionally. If the mapping |
| 308 | * fails then we just fall back to using the mnt_uid/mnt_gid. |
| 309 | */ |
| 310 | if (sidtype == SIDOWNER) |
| 311 | fattr->cf_uid = fuid; |
| 312 | else |
| 313 | fattr->cf_gid = fgid; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 317 | int |
| 318 | init_cifs_idmap(void) |
| 319 | { |
| 320 | struct cred *cred; |
| 321 | struct key *keyring; |
| 322 | int ret; |
| 323 | |
Jeff Layton | ac3aa2f | 2012-07-23 13:14:28 -0400 | [diff] [blame] | 324 | cFYI(1, "Registering the %s key type", cifs_idmap_key_type.name); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 325 | |
| 326 | /* create an override credential set with a special thread keyring in |
| 327 | * which requests are cached |
| 328 | * |
| 329 | * this is used to prevent malicious redirections from being installed |
| 330 | * with add_key(). |
| 331 | */ |
| 332 | cred = prepare_kernel_cred(NULL); |
| 333 | if (!cred) |
| 334 | return -ENOMEM; |
| 335 | |
| 336 | keyring = key_alloc(&key_type_keyring, ".cifs_idmap", 0, 0, cred, |
| 337 | (KEY_POS_ALL & ~KEY_POS_SETATTR) | |
| 338 | KEY_USR_VIEW | KEY_USR_READ, |
| 339 | KEY_ALLOC_NOT_IN_QUOTA); |
| 340 | if (IS_ERR(keyring)) { |
| 341 | ret = PTR_ERR(keyring); |
| 342 | goto failed_put_cred; |
| 343 | } |
| 344 | |
| 345 | ret = key_instantiate_and_link(keyring, NULL, 0, NULL, NULL); |
| 346 | if (ret < 0) |
| 347 | goto failed_put_key; |
| 348 | |
| 349 | ret = register_key_type(&cifs_idmap_key_type); |
| 350 | if (ret < 0) |
| 351 | goto failed_put_key; |
| 352 | |
| 353 | /* instruct request_key() to use this special keyring as a cache for |
| 354 | * the results it looks up */ |
David Howells | 700920e | 2012-01-18 15:31:45 +0000 | [diff] [blame] | 355 | set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 356 | cred->thread_keyring = keyring; |
| 357 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; |
| 358 | root_cred = cred; |
| 359 | |
Jeff Layton | ac3aa2f | 2012-07-23 13:14:28 -0400 | [diff] [blame] | 360 | cFYI(1, "cifs idmap keyring: %d", key_serial(keyring)); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 361 | return 0; |
| 362 | |
| 363 | failed_put_key: |
| 364 | key_put(keyring); |
| 365 | failed_put_cred: |
| 366 | put_cred(cred); |
| 367 | return ret; |
| 368 | } |
| 369 | |
| 370 | void |
| 371 | exit_cifs_idmap(void) |
| 372 | { |
| 373 | key_revoke(root_cred->thread_keyring); |
| 374 | unregister_key_type(&cifs_idmap_key_type); |
| 375 | put_cred(root_cred); |
Jeff Layton | ac3aa2f | 2012-07-23 13:14:28 -0400 | [diff] [blame] | 376 | cFYI(1, "Unregistered %s key type", cifs_idmap_key_type.name); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 377 | } |
| 378 | |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 379 | /* copy ntsd, owner sid, and group sid from a security descriptor to another */ |
| 380 | static void copy_sec_desc(const struct cifs_ntsd *pntsd, |
| 381 | struct cifs_ntsd *pnntsd, __u32 sidsoffset) |
| 382 | { |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 383 | struct cifs_sid *owner_sid_ptr, *group_sid_ptr; |
| 384 | struct cifs_sid *nowner_sid_ptr, *ngroup_sid_ptr; |
| 385 | |
| 386 | /* copy security descriptor control portion */ |
| 387 | pnntsd->revision = pntsd->revision; |
| 388 | pnntsd->type = pntsd->type; |
| 389 | pnntsd->dacloffset = cpu_to_le32(sizeof(struct cifs_ntsd)); |
| 390 | pnntsd->sacloffset = 0; |
| 391 | pnntsd->osidoffset = cpu_to_le32(sidsoffset); |
| 392 | pnntsd->gsidoffset = cpu_to_le32(sidsoffset + sizeof(struct cifs_sid)); |
| 393 | |
| 394 | /* copy owner sid */ |
| 395 | owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
| 396 | le32_to_cpu(pntsd->osidoffset)); |
| 397 | nowner_sid_ptr = (struct cifs_sid *)((char *)pnntsd + sidsoffset); |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 398 | cifs_copy_sid(nowner_sid_ptr, owner_sid_ptr); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 399 | |
| 400 | /* copy group sid */ |
| 401 | group_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
| 402 | le32_to_cpu(pntsd->gsidoffset)); |
| 403 | ngroup_sid_ptr = (struct cifs_sid *)((char *)pnntsd + sidsoffset + |
| 404 | sizeof(struct cifs_sid)); |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 405 | cifs_copy_sid(ngroup_sid_ptr, group_sid_ptr); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 406 | |
| 407 | return; |
| 408 | } |
| 409 | |
| 410 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 411 | /* |
| 412 | change posix mode to reflect permissions |
| 413 | pmode is the existing mode (we only want to overwrite part of this |
| 414 | bits to set can be: S_IRWXU, S_IRWXG or S_IRWXO ie 00700 or 00070 or 00007 |
| 415 | */ |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 416 | static void access_flags_to_mode(__le32 ace_flags, int type, umode_t *pmode, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 417 | umode_t *pbits_to_set) |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 418 | { |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 419 | __u32 flags = le32_to_cpu(ace_flags); |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 420 | /* the order of ACEs is important. The canonical order is to begin with |
Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 421 | DENY entries followed by ALLOW, otherwise an allow entry could be |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 422 | encountered first, making the subsequent deny entry like "dead code" |
Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 423 | which would be superflous since Windows stops when a match is made |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 424 | for the operation you are trying to perform for your user */ |
| 425 | |
| 426 | /* For deny ACEs we change the mask so that subsequent allow access |
| 427 | control entries do not turn on the bits we are denying */ |
| 428 | if (type == ACCESS_DENIED) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 429 | if (flags & GENERIC_ALL) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 430 | *pbits_to_set &= ~S_IRWXUGO; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 431 | |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 432 | if ((flags & GENERIC_WRITE) || |
| 433 | ((flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 434 | *pbits_to_set &= ~S_IWUGO; |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 435 | if ((flags & GENERIC_READ) || |
| 436 | ((flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 437 | *pbits_to_set &= ~S_IRUGO; |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 438 | if ((flags & GENERIC_EXECUTE) || |
| 439 | ((flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 440 | *pbits_to_set &= ~S_IXUGO; |
| 441 | return; |
| 442 | } else if (type != ACCESS_ALLOWED) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 443 | cERROR(1, "unknown access control type %d", type); |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 444 | return; |
| 445 | } |
| 446 | /* else ACCESS_ALLOWED type */ |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 447 | |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 448 | if (flags & GENERIC_ALL) { |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 449 | *pmode |= (S_IRWXUGO & (*pbits_to_set)); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 450 | cFYI(DBG2, "all perms"); |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 451 | return; |
| 452 | } |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 453 | if ((flags & GENERIC_WRITE) || |
| 454 | ((flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 455 | *pmode |= (S_IWUGO & (*pbits_to_set)); |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 456 | if ((flags & GENERIC_READ) || |
| 457 | ((flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 458 | *pmode |= (S_IRUGO & (*pbits_to_set)); |
Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 459 | if ((flags & GENERIC_EXECUTE) || |
| 460 | ((flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 461 | *pmode |= (S_IXUGO & (*pbits_to_set)); |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 462 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 463 | cFYI(DBG2, "access flags 0x%x mode now 0x%x", flags, *pmode); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 464 | return; |
| 465 | } |
| 466 | |
Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 467 | /* |
| 468 | Generate access flags to reflect permissions mode is the existing mode. |
| 469 | This function is called for every ACE in the DACL whose SID matches |
| 470 | with either owner or group or everyone. |
| 471 | */ |
| 472 | |
| 473 | static void mode_to_access_flags(umode_t mode, umode_t bits_to_use, |
| 474 | __u32 *pace_flags) |
| 475 | { |
| 476 | /* reset access mask */ |
| 477 | *pace_flags = 0x0; |
| 478 | |
| 479 | /* bits to use are either S_IRWXU or S_IRWXG or S_IRWXO */ |
| 480 | mode &= bits_to_use; |
| 481 | |
| 482 | /* check for R/W/X UGO since we do not know whose flags |
| 483 | is this but we have cleared all the bits sans RWX for |
| 484 | either user or group or other as per bits_to_use */ |
| 485 | if (mode & S_IRUGO) |
| 486 | *pace_flags |= SET_FILE_READ_RIGHTS; |
| 487 | if (mode & S_IWUGO) |
| 488 | *pace_flags |= SET_FILE_WRITE_RIGHTS; |
| 489 | if (mode & S_IXUGO) |
| 490 | *pace_flags |= SET_FILE_EXEC_RIGHTS; |
| 491 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 492 | cFYI(DBG2, "mode: 0x%x, access flags now 0x%x", mode, *pace_flags); |
Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 493 | return; |
| 494 | } |
| 495 | |
Al Viro | 2b210ad | 2008-03-29 03:09:18 +0000 | [diff] [blame] | 496 | static __u16 fill_ace_for_sid(struct cifs_ace *pntace, |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 497 | const struct cifs_sid *psid, __u64 nmode, umode_t bits) |
| 498 | { |
| 499 | int i; |
| 500 | __u16 size = 0; |
| 501 | __u32 access_req = 0; |
| 502 | |
| 503 | pntace->type = ACCESS_ALLOWED; |
| 504 | pntace->flags = 0x0; |
| 505 | mode_to_access_flags(nmode, bits, &access_req); |
| 506 | if (!access_req) |
| 507 | access_req = SET_MINIMUM_RIGHTS; |
| 508 | pntace->access_req = cpu_to_le32(access_req); |
| 509 | |
| 510 | pntace->sid.revision = psid->revision; |
| 511 | pntace->sid.num_subauth = psid->num_subauth; |
Jeff Layton | 852e229 | 2012-11-25 08:00:36 -0500 | [diff] [blame] | 512 | for (i = 0; i < NUM_AUTHS; i++) |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 513 | pntace->sid.authority[i] = psid->authority[i]; |
| 514 | for (i = 0; i < psid->num_subauth; i++) |
| 515 | pntace->sid.sub_auth[i] = psid->sub_auth[i]; |
| 516 | |
| 517 | size = 1 + 1 + 2 + 4 + 1 + 1 + 6 + (psid->num_subauth * 4); |
| 518 | pntace->size = cpu_to_le16(size); |
| 519 | |
Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 520 | return size; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 523 | |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 524 | #ifdef CONFIG_CIFS_DEBUG2 |
| 525 | static void dump_ace(struct cifs_ace *pace, char *end_of_acl) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 526 | { |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 527 | int num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 528 | |
| 529 | /* validate that we do not go past end of acl */ |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 530 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 531 | if (le16_to_cpu(pace->size) < 16) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 532 | cERROR(1, "ACE too small %d", le16_to_cpu(pace->size)); |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 533 | return; |
| 534 | } |
| 535 | |
| 536 | if (end_of_acl < (char *)pace + le16_to_cpu(pace->size)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 537 | cERROR(1, "ACL too small to parse ACE"); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 538 | return; |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 539 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 540 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 541 | num_subauth = pace->sid.num_subauth; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 542 | if (num_subauth) { |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 543 | int i; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 544 | cFYI(1, "ACE revision %d num_auth %d type %d flags %d size %d", |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 545 | pace->sid.revision, pace->sid.num_subauth, pace->type, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 546 | pace->flags, le16_to_cpu(pace->size)); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 547 | for (i = 0; i < num_subauth; ++i) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 548 | cFYI(1, "ACE sub_auth[%d]: 0x%x", i, |
| 549 | le32_to_cpu(pace->sid.sub_auth[i])); |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 550 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 551 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 552 | /* BB add length check to make sure that we do not have huge |
| 553 | num auths and therefore go off the end */ |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 554 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 555 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 556 | return; |
| 557 | } |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 558 | #endif |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 559 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 560 | |
Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 561 | static void parse_dacl(struct cifs_acl *pdacl, char *end_of_acl, |
Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 562 | struct cifs_sid *pownersid, struct cifs_sid *pgrpsid, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 563 | struct cifs_fattr *fattr) |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 564 | { |
| 565 | int i; |
| 566 | int num_aces = 0; |
| 567 | int acl_size; |
| 568 | char *acl_base; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 569 | struct cifs_ace **ppace; |
| 570 | |
| 571 | /* BB need to add parm so we can store the SID BB */ |
| 572 | |
Steve French | 2b83457 | 2007-11-25 10:01:00 +0000 | [diff] [blame] | 573 | if (!pdacl) { |
| 574 | /* no DACL in the security descriptor, set |
| 575 | all the permissions for user/group/other */ |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 576 | fattr->cf_mode |= S_IRWXUGO; |
Steve French | 2b83457 | 2007-11-25 10:01:00 +0000 | [diff] [blame] | 577 | return; |
| 578 | } |
| 579 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 580 | /* validate that we do not go past end of acl */ |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 581 | if (end_of_acl < (char *)pdacl + le16_to_cpu(pdacl->size)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 582 | cERROR(1, "ACL too small to parse DACL"); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 583 | return; |
| 584 | } |
| 585 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 586 | cFYI(DBG2, "DACL revision %d size %d num aces %d", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 587 | le16_to_cpu(pdacl->revision), le16_to_cpu(pdacl->size), |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 588 | le32_to_cpu(pdacl->num_aces)); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 589 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 590 | /* reset rwx permissions for user/group/other. |
| 591 | Also, if num_aces is 0 i.e. DACL has no ACEs, |
| 592 | user/group/other have no permissions */ |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 593 | fattr->cf_mode &= ~(S_IRWXUGO); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 594 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 595 | acl_base = (char *)pdacl; |
| 596 | acl_size = sizeof(struct cifs_acl); |
| 597 | |
Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 598 | num_aces = le32_to_cpu(pdacl->num_aces); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 599 | if (num_aces > 0) { |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 600 | umode_t user_mask = S_IRWXU; |
| 601 | umode_t group_mask = S_IRWXG; |
Shirish Pargaonkar | 2fbc2f1 | 2010-12-06 14:56:46 -0600 | [diff] [blame] | 602 | umode_t other_mask = S_IRWXU | S_IRWXG | S_IRWXO; |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 603 | |
Dan Carpenter | 7250170 | 2012-01-11 10:46:27 +0300 | [diff] [blame] | 604 | if (num_aces > ULONG_MAX / sizeof(struct cifs_ace *)) |
| 605 | return; |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 606 | ppace = kmalloc(num_aces * sizeof(struct cifs_ace *), |
| 607 | GFP_KERNEL); |
Stanislav Fomichev | 8132b65 | 2011-02-06 02:05:28 +0300 | [diff] [blame] | 608 | if (!ppace) { |
| 609 | cERROR(1, "DACL memory allocation error"); |
| 610 | return; |
| 611 | } |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 612 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 613 | for (i = 0; i < num_aces; ++i) { |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 614 | ppace[i] = (struct cifs_ace *) (acl_base + acl_size); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 615 | #ifdef CONFIG_CIFS_DEBUG2 |
| 616 | dump_ace(ppace[i], end_of_acl); |
| 617 | #endif |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 618 | if (compare_sids(&(ppace[i]->sid), pownersid) == 0) |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 619 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 620 | ppace[i]->type, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 621 | &fattr->cf_mode, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 622 | &user_mask); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 623 | if (compare_sids(&(ppace[i]->sid), pgrpsid) == 0) |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 624 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 625 | ppace[i]->type, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 626 | &fattr->cf_mode, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 627 | &group_mask); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 628 | if (compare_sids(&(ppace[i]->sid), &sid_everyone) == 0) |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 629 | access_flags_to_mode(ppace[i]->access_req, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 630 | ppace[i]->type, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 631 | &fattr->cf_mode, |
Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 632 | &other_mask); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 633 | if (compare_sids(&(ppace[i]->sid), &sid_authusers) == 0) |
Shirish Pargaonkar | 2fbc2f1 | 2010-12-06 14:56:46 -0600 | [diff] [blame] | 634 | access_flags_to_mode(ppace[i]->access_req, |
| 635 | ppace[i]->type, |
| 636 | &fattr->cf_mode, |
| 637 | &other_mask); |
| 638 | |
Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 639 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 640 | /* memcpy((void *)(&(cifscred->aces[i])), |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 641 | (void *)ppace[i], |
| 642 | sizeof(struct cifs_ace)); */ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 643 | |
Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 644 | acl_base = (char *)ppace[i]; |
| 645 | acl_size = le16_to_cpu(ppace[i]->size); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | kfree(ppace); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | return; |
| 652 | } |
| 653 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 654 | |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 655 | static int set_chmod_dacl(struct cifs_acl *pndacl, struct cifs_sid *pownersid, |
| 656 | struct cifs_sid *pgrpsid, __u64 nmode) |
| 657 | { |
Al Viro | 2b210ad | 2008-03-29 03:09:18 +0000 | [diff] [blame] | 658 | u16 size = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 659 | struct cifs_acl *pnndacl; |
| 660 | |
| 661 | pnndacl = (struct cifs_acl *)((char *)pndacl + sizeof(struct cifs_acl)); |
| 662 | |
| 663 | size += fill_ace_for_sid((struct cifs_ace *) ((char *)pnndacl + size), |
| 664 | pownersid, nmode, S_IRWXU); |
| 665 | size += fill_ace_for_sid((struct cifs_ace *)((char *)pnndacl + size), |
| 666 | pgrpsid, nmode, S_IRWXG); |
| 667 | size += fill_ace_for_sid((struct cifs_ace *)((char *)pnndacl + size), |
| 668 | &sid_everyone, nmode, S_IRWXO); |
| 669 | |
| 670 | pndacl->size = cpu_to_le16(size + sizeof(struct cifs_acl)); |
Shirish Pargaonkar | d9f382e | 2008-02-12 20:46:26 +0000 | [diff] [blame] | 671 | pndacl->num_aces = cpu_to_le32(3); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 672 | |
Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 673 | return 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 677 | static int parse_sid(struct cifs_sid *psid, char *end_of_acl) |
| 678 | { |
| 679 | /* BB need to add parm so we can store the SID BB */ |
| 680 | |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 681 | /* validate that we do not go past end of ACL - sid must be at least 8 |
| 682 | bytes long (assuming no sub-auths - e.g. the null SID */ |
| 683 | if (end_of_acl < (char *)psid + 8) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 684 | cERROR(1, "ACL too small to parse SID %p", psid); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 685 | return -EINVAL; |
| 686 | } |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 687 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 688 | #ifdef CONFIG_CIFS_DEBUG2 |
Jeff Layton | fc03d8a | 2012-11-25 08:00:35 -0500 | [diff] [blame] | 689 | if (psid->num_subauth) { |
Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 690 | int i; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 691 | cFYI(1, "SID revision %d num_auth %d", |
| 692 | psid->revision, psid->num_subauth); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 693 | |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 694 | for (i = 0; i < psid->num_subauth; i++) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 695 | cFYI(1, "SID sub_auth[%d]: 0x%x ", i, |
| 696 | le32_to_cpu(psid->sub_auth[i])); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 699 | /* 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] | 700 | num auths and therefore go off the end */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 701 | cFYI(1, "RID 0x%x", |
| 702 | le32_to_cpu(psid->sub_auth[psid->num_subauth-1])); |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 703 | } |
Jeff Layton | fc03d8a | 2012-11-25 08:00:35 -0500 | [diff] [blame] | 704 | #endif |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 705 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 706 | return 0; |
| 707 | } |
| 708 | |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 709 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 710 | /* Convert CIFS ACL to POSIX form */ |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 711 | static int parse_sec_desc(struct cifs_sb_info *cifs_sb, |
| 712 | struct cifs_ntsd *pntsd, int acl_len, struct cifs_fattr *fattr) |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 713 | { |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 714 | int rc = 0; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 715 | struct cifs_sid *owner_sid_ptr, *group_sid_ptr; |
| 716 | struct cifs_acl *dacl_ptr; /* no need for SACL ptr */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 717 | char *end_of_acl = ((char *)pntsd) + acl_len; |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 718 | __u32 dacloffset; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 719 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 720 | if (pntsd == NULL) |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 721 | return -EIO; |
| 722 | |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 723 | owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 724 | le32_to_cpu(pntsd->osidoffset)); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 725 | group_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 726 | le32_to_cpu(pntsd->gsidoffset)); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 727 | dacloffset = le32_to_cpu(pntsd->dacloffset); |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 728 | dacl_ptr = (struct cifs_acl *)((char *)pntsd + dacloffset); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 729 | cFYI(DBG2, "revision %d type 0x%x ooffset 0x%x goffset 0x%x " |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 730 | "sacloffset 0x%x dacloffset 0x%x", |
Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 731 | pntsd->revision, pntsd->type, le32_to_cpu(pntsd->osidoffset), |
| 732 | le32_to_cpu(pntsd->gsidoffset), |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 733 | le32_to_cpu(pntsd->sacloffset), dacloffset); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 734 | /* cifs_dump_mem("owner_sid: ", owner_sid_ptr, 64); */ |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 735 | rc = parse_sid(owner_sid_ptr, end_of_acl); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 736 | if (rc) { |
| 737 | cFYI(1, "%s: Error %d parsing Owner SID", __func__, rc); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 738 | return rc; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 739 | } |
| 740 | rc = sid_to_id(cifs_sb, owner_sid_ptr, fattr, SIDOWNER); |
| 741 | if (rc) { |
| 742 | cFYI(1, "%s: Error %d mapping Owner SID to uid", __func__, rc); |
| 743 | return rc; |
| 744 | } |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 745 | |
| 746 | rc = parse_sid(group_sid_ptr, end_of_acl); |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 747 | if (rc) { |
| 748 | cFYI(1, "%s: Error %d mapping Owner SID to gid", __func__, rc); |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 749 | return rc; |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 750 | } |
| 751 | rc = sid_to_id(cifs_sb, group_sid_ptr, fattr, SIDGROUP); |
| 752 | if (rc) { |
| 753 | cFYI(1, "%s: Error %d mapping Group SID to gid", __func__, rc); |
| 754 | return rc; |
| 755 | } |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 756 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 757 | if (dacloffset) |
| 758 | parse_dacl(dacl_ptr, end_of_acl, owner_sid_ptr, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 759 | group_sid_ptr, fattr); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 760 | else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 761 | cFYI(1, "no ACL"); /* BB grant all or default perms? */ |
Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 762 | |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 763 | return rc; |
Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 764 | } |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 765 | |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 766 | /* Convert permission bits from mode to equivalent CIFS ACL */ |
| 767 | static int build_sec_desc(struct cifs_ntsd *pntsd, struct cifs_ntsd *pnntsd, |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 768 | __u32 secdesclen, __u64 nmode, uid_t uid, gid_t gid, int *aclflag) |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 769 | { |
| 770 | int rc = 0; |
| 771 | __u32 dacloffset; |
| 772 | __u32 ndacloffset; |
| 773 | __u32 sidsoffset; |
| 774 | struct cifs_sid *owner_sid_ptr, *group_sid_ptr; |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 775 | struct cifs_sid *nowner_sid_ptr, *ngroup_sid_ptr; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 776 | struct cifs_acl *dacl_ptr = NULL; /* no need for SACL ptr */ |
| 777 | struct cifs_acl *ndacl_ptr = NULL; /* no need for SACL ptr */ |
| 778 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 779 | if (nmode != NO_CHANGE_64) { /* chmod */ |
| 780 | owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 781 | le32_to_cpu(pntsd->osidoffset)); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 782 | group_sid_ptr = (struct cifs_sid *)((char *)pntsd + |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 783 | le32_to_cpu(pntsd->gsidoffset)); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 784 | dacloffset = le32_to_cpu(pntsd->dacloffset); |
| 785 | dacl_ptr = (struct cifs_acl *)((char *)pntsd + dacloffset); |
| 786 | ndacloffset = sizeof(struct cifs_ntsd); |
| 787 | ndacl_ptr = (struct cifs_acl *)((char *)pnntsd + ndacloffset); |
| 788 | ndacl_ptr->revision = dacl_ptr->revision; |
| 789 | ndacl_ptr->size = 0; |
| 790 | ndacl_ptr->num_aces = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 791 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 792 | rc = set_chmod_dacl(ndacl_ptr, owner_sid_ptr, group_sid_ptr, |
| 793 | nmode); |
| 794 | sidsoffset = ndacloffset + le16_to_cpu(ndacl_ptr->size); |
| 795 | /* copy sec desc control portion & owner and group sids */ |
| 796 | copy_sec_desc(pntsd, pnntsd, sidsoffset); |
| 797 | *aclflag = CIFS_ACL_DACL; |
| 798 | } else { |
| 799 | memcpy(pnntsd, pntsd, secdesclen); |
| 800 | if (uid != NO_CHANGE_32) { /* chown */ |
| 801 | owner_sid_ptr = (struct cifs_sid *)((char *)pnntsd + |
| 802 | le32_to_cpu(pnntsd->osidoffset)); |
| 803 | nowner_sid_ptr = kmalloc(sizeof(struct cifs_sid), |
| 804 | GFP_KERNEL); |
| 805 | if (!nowner_sid_ptr) |
| 806 | return -ENOMEM; |
| 807 | rc = id_to_sid(uid, SIDOWNER, nowner_sid_ptr); |
| 808 | if (rc) { |
| 809 | cFYI(1, "%s: Mapping error %d for owner id %d", |
| 810 | __func__, rc, uid); |
| 811 | kfree(nowner_sid_ptr); |
| 812 | return rc; |
| 813 | } |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 814 | cifs_copy_sid(owner_sid_ptr, nowner_sid_ptr); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 815 | kfree(nowner_sid_ptr); |
| 816 | *aclflag = CIFS_ACL_OWNER; |
| 817 | } |
| 818 | if (gid != NO_CHANGE_32) { /* chgrp */ |
| 819 | group_sid_ptr = (struct cifs_sid *)((char *)pnntsd + |
| 820 | le32_to_cpu(pnntsd->gsidoffset)); |
| 821 | ngroup_sid_ptr = kmalloc(sizeof(struct cifs_sid), |
| 822 | GFP_KERNEL); |
| 823 | if (!ngroup_sid_ptr) |
| 824 | return -ENOMEM; |
| 825 | rc = id_to_sid(gid, SIDGROUP, ngroup_sid_ptr); |
| 826 | if (rc) { |
| 827 | cFYI(1, "%s: Mapping error %d for group id %d", |
| 828 | __func__, rc, gid); |
| 829 | kfree(ngroup_sid_ptr); |
| 830 | return rc; |
| 831 | } |
Jeff Layton | 36960e4 | 2012-11-03 09:37:28 -0400 | [diff] [blame] | 832 | cifs_copy_sid(group_sid_ptr, ngroup_sid_ptr); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 833 | kfree(ngroup_sid_ptr); |
| 834 | *aclflag = CIFS_ACL_GROUP; |
| 835 | } |
| 836 | } |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 837 | |
Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 838 | return rc; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 839 | } |
| 840 | |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 841 | static struct cifs_ntsd *get_cifs_acl_by_fid(struct cifs_sb_info *cifs_sb, |
| 842 | __u16 fid, u32 *pacllen) |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 843 | { |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 844 | struct cifs_ntsd *pntsd = NULL; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 845 | unsigned int xid; |
| 846 | int rc; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 847 | struct tcon_link *tlink = cifs_sb_tlink(cifs_sb); |
| 848 | |
| 849 | if (IS_ERR(tlink)) |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 850 | return ERR_CAST(tlink); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 851 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 852 | xid = get_xid(); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 853 | rc = CIFSSMBGetCIFSACL(xid, tlink_tcon(tlink), fid, &pntsd, pacllen); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 854 | free_xid(xid); |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 855 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 856 | cifs_put_tlink(tlink); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 857 | |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 858 | cFYI(1, "%s: rc = %d ACL len %d", __func__, rc, *pacllen); |
| 859 | if (rc) |
| 860 | return ERR_PTR(rc); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 861 | return pntsd; |
| 862 | } |
| 863 | |
| 864 | static struct cifs_ntsd *get_cifs_acl_by_path(struct cifs_sb_info *cifs_sb, |
| 865 | const char *path, u32 *pacllen) |
| 866 | { |
| 867 | struct cifs_ntsd *pntsd = NULL; |
| 868 | int oplock = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 869 | unsigned int xid; |
| 870 | int rc, create_options = 0; |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 871 | __u16 fid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 872 | struct cifs_tcon *tcon; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 873 | struct tcon_link *tlink = cifs_sb_tlink(cifs_sb); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 874 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 875 | if (IS_ERR(tlink)) |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 876 | return ERR_CAST(tlink); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 877 | |
| 878 | tcon = tlink_tcon(tlink); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 879 | xid = get_xid(); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 880 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 881 | if (backup_cred(cifs_sb)) |
| 882 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 883 | |
| 884 | rc = CIFSSMBOpen(xid, tcon, path, FILE_OPEN, READ_CONTROL, |
| 885 | create_options, &fid, &oplock, NULL, cifs_sb->local_nls, |
| 886 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 887 | if (!rc) { |
| 888 | rc = CIFSSMBGetCIFSACL(xid, tcon, fid, &pntsd, pacllen); |
| 889 | CIFSSMBClose(xid, tcon, fid); |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 890 | } |
| 891 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 892 | cifs_put_tlink(tlink); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 893 | free_xid(xid); |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 894 | |
| 895 | cFYI(1, "%s: rc = %d ACL len %d", __func__, rc, *pacllen); |
| 896 | if (rc) |
| 897 | return ERR_PTR(rc); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 898 | return pntsd; |
| 899 | } |
| 900 | |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 901 | /* Retrieve an ACL from the server */ |
Shirish Pargaonkar | fbeba8b | 2010-11-27 11:37:54 -0600 | [diff] [blame] | 902 | struct cifs_ntsd *get_cifs_acl(struct cifs_sb_info *cifs_sb, |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 903 | struct inode *inode, const char *path, |
| 904 | u32 *pacllen) |
| 905 | { |
| 906 | struct cifs_ntsd *pntsd = NULL; |
| 907 | struct cifsFileInfo *open_file = NULL; |
| 908 | |
| 909 | if (inode) |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 910 | open_file = find_readable_file(CIFS_I(inode), true); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 911 | if (!open_file) |
| 912 | return get_cifs_acl_by_path(cifs_sb, path, pacllen); |
| 913 | |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 914 | pntsd = get_cifs_acl_by_fid(cifs_sb, open_file->fid.netfid, pacllen); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 915 | cifsFileInfo_put(open_file); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 916 | return pntsd; |
| 917 | } |
| 918 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 919 | /* Set an ACL on the server */ |
| 920 | int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, |
| 921 | struct inode *inode, const char *path, int aclflag) |
Christoph Hellwig | b96d31a | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 922 | { |
| 923 | int oplock = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 924 | unsigned int xid; |
| 925 | int rc, access_flags, create_options = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 926 | __u16 fid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 927 | struct cifs_tcon *tcon; |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 928 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 929 | struct tcon_link *tlink = cifs_sb_tlink(cifs_sb); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 930 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 931 | if (IS_ERR(tlink)) |
| 932 | return PTR_ERR(tlink); |
| 933 | |
| 934 | tcon = tlink_tcon(tlink); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 935 | xid = get_xid(); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 936 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 937 | if (backup_cred(cifs_sb)) |
| 938 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 939 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 940 | if (aclflag == CIFS_ACL_OWNER || aclflag == CIFS_ACL_GROUP) |
| 941 | access_flags = WRITE_OWNER; |
| 942 | else |
| 943 | access_flags = WRITE_DAC; |
| 944 | |
| 945 | rc = CIFSSMBOpen(xid, tcon, path, FILE_OPEN, access_flags, |
| 946 | create_options, &fid, &oplock, NULL, cifs_sb->local_nls, |
| 947 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Christoph Hellwig | b96d31a | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 948 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 949 | cERROR(1, "Unable to open file to set ACL"); |
Christoph Hellwig | b96d31a | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 950 | goto out; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 953 | rc = CIFSSMBSetCIFSACL(xid, tcon, fid, pnntsd, acllen, aclflag); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 954 | cFYI(DBG2, "SetCIFSACL rc = %d", rc); |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 955 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 956 | CIFSSMBClose(xid, tcon, fid); |
| 957 | out: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 958 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 959 | cifs_put_tlink(tlink); |
Christoph Hellwig | b96d31a | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 960 | return rc; |
| 961 | } |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 962 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 963 | /* Translate the CIFS ACL (simlar to NTFS ACL) for a file into mode bits */ |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 964 | int |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 965 | cifs_acl_to_fattr(struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr, |
| 966 | struct inode *inode, const char *path, const __u16 *pfid) |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 967 | { |
| 968 | struct cifs_ntsd *pntsd = NULL; |
| 969 | u32 acllen = 0; |
| 970 | int rc = 0; |
| 971 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 972 | cFYI(DBG2, "converting ACL to mode for %s", path); |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 973 | |
| 974 | if (pfid) |
| 975 | pntsd = get_cifs_acl_by_fid(cifs_sb, *pfid, &acllen); |
| 976 | else |
| 977 | pntsd = get_cifs_acl(cifs_sb, inode, path, &acllen); |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 978 | |
| 979 | /* if we can retrieve the ACL, now parse Access Control Entries, ACEs */ |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 980 | if (IS_ERR(pntsd)) { |
| 981 | rc = PTR_ERR(pntsd); |
| 982 | cERROR(1, "%s: error %d getting sec desc", __func__, rc); |
| 983 | } else { |
Shirish Pargaonkar | 9409ae5 | 2011-04-22 12:09:36 -0500 | [diff] [blame] | 984 | rc = parse_sec_desc(cifs_sb, pntsd, acllen, fattr); |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 985 | kfree(pntsd); |
| 986 | if (rc) |
| 987 | cERROR(1, "parse sec desc failed rc = %d", rc); |
| 988 | } |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 989 | |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 990 | return rc; |
Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 991 | } |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 992 | |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 993 | /* Convert mode bits to an ACL so we can update the ACL on the server */ |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 994 | int |
| 995 | id_mode_to_cifs_acl(struct inode *inode, const char *path, __u64 nmode, |
| 996 | uid_t uid, gid_t gid) |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 997 | { |
| 998 | int rc = 0; |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 999 | int aclflag = CIFS_ACL_DACL; /* default flag to set */ |
Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 1000 | __u32 secdesclen = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1001 | struct cifs_ntsd *pntsd = NULL; /* acl obtained from server */ |
| 1002 | struct cifs_ntsd *pnntsd = NULL; /* modified acl to be sent to server */ |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 1003 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1004 | cFYI(DBG2, "set ACL from mode for %s", path); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 1005 | |
| 1006 | /* Get the security descriptor */ |
Christoph Hellwig | 1bf4072 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 1007 | pntsd = get_cifs_acl(CIFS_SB(inode->i_sb), inode, path, &secdesclen); |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 1008 | if (IS_ERR(pntsd)) { |
| 1009 | rc = PTR_ERR(pntsd); |
| 1010 | cERROR(1, "%s: error %d getting sec desc", __func__, rc); |
Jeff Layton | c78cd83 | 2012-11-25 08:00:35 -0500 | [diff] [blame] | 1011 | goto out; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
Jeff Layton | c78cd83 | 2012-11-25 08:00:35 -0500 | [diff] [blame] | 1014 | /* |
| 1015 | * Add three ACEs for owner, group, everyone getting rid of other ACEs |
| 1016 | * as chmod disables ACEs and set the security descriptor. Allocate |
| 1017 | * memory for the smb header, set security descriptor request security |
| 1018 | * descriptor parameters, and secuirty descriptor itself |
| 1019 | */ |
Jeff Layton | 7ee0b4c | 2012-12-03 06:05:31 -0500 | [diff] [blame] | 1020 | secdesclen = max_t(u32, secdesclen, DEFAULT_SEC_DESC_LEN); |
Jeff Layton | c78cd83 | 2012-11-25 08:00:35 -0500 | [diff] [blame] | 1021 | pnntsd = kmalloc(secdesclen, GFP_KERNEL); |
| 1022 | if (!pnntsd) { |
| 1023 | cERROR(1, "Unable to allocate security descriptor"); |
| 1024 | kfree(pntsd); |
| 1025 | return -ENOMEM; |
| 1026 | } |
| 1027 | |
| 1028 | rc = build_sec_desc(pntsd, pnntsd, secdesclen, nmode, uid, gid, |
| 1029 | &aclflag); |
| 1030 | |
| 1031 | cFYI(DBG2, "build_sec_desc rc: %d", rc); |
| 1032 | |
| 1033 | if (!rc) { |
| 1034 | /* Set the security descriptor */ |
| 1035 | rc = set_cifs_acl(pnntsd, secdesclen, inode, path, aclflag); |
| 1036 | cFYI(DBG2, "set_cifs_acl rc: %d", rc); |
| 1037 | } |
| 1038 | |
| 1039 | kfree(pnntsd); |
| 1040 | kfree(pntsd); |
| 1041 | out: |
Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 1042 | return rc; |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 1043 | } |