4 * Copyright (C) International Business Machines Corp., 2007,2008
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Contains the routines for mapping CIFS/NTFS ACLs
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.
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.
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
25 #include <linux/slab.h>
26 #include <linux/string.h>
27 #include <linux/keyctl.h>
28 #include <linux/key-type.h>
29 #include <keys/user-type.h>
33 #include "cifsproto.h"
34 #include "cifs_debug.h"
36 /* security id for everyone/world system group */
37 static const struct cifs_sid sid_everyone
= {
38 1, 1, {0, 0, 0, 0, 0, 1}, {0} };
39 /* security id for Authenticated Users system group */
40 static const struct cifs_sid sid_authusers
= {
41 1, 1, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(11)} };
43 static const struct cifs_sid sid_user
= {1, 2 , {0, 0, 0, 0, 0, 5}, {} };
45 static const struct cred
*root_cred
;
48 cifs_idmap_key_instantiate(struct key
*key
, struct key_preparsed_payload
*prep
)
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.
57 * With this however, you must check the datalen before trying to
58 * dereference payload.data!
60 if (prep
->datalen
<= sizeof(key
->payload
)) {
61 key
->payload
.value
= 0;
62 memcpy(&key
->payload
.value
, prep
->data
, prep
->datalen
);
63 key
->datalen
= prep
->datalen
;
66 payload
= kmalloc(prep
->datalen
, GFP_KERNEL
);
70 memcpy(payload
, prep
->data
, prep
->datalen
);
71 key
->payload
.data
= payload
;
72 key
->datalen
= prep
->datalen
;
77 cifs_idmap_key_destroy(struct key
*key
)
79 if (key
->datalen
> sizeof(key
->payload
))
80 kfree(key
->payload
.data
);
83 static struct key_type cifs_idmap_key_type
= {
85 .instantiate
= cifs_idmap_key_instantiate
,
86 .destroy
= cifs_idmap_key_destroy
,
87 .describe
= user_describe
,
92 sid_to_key_str(struct cifs_sid
*sidptr
, unsigned int type
)
96 char *sidstr
, *strptr
;
97 unsigned long long id_auth_val
;
99 /* 3 bytes for prefix */
100 sidstr
= kmalloc(3 + SID_STRING_BASE_SIZE
+
101 (SID_STRING_SUBAUTH_SIZE
* sidptr
->num_subauth
),
107 len
= sprintf(strptr
, "%cs:S-%hhu", type
== SIDOWNER
? 'o' : 'g',
111 /* The authority field is a single 48-bit number */
112 id_auth_val
= (unsigned long long)sidptr
->authority
[5];
113 id_auth_val
|= (unsigned long long)sidptr
->authority
[4] << 8;
114 id_auth_val
|= (unsigned long long)sidptr
->authority
[3] << 16;
115 id_auth_val
|= (unsigned long long)sidptr
->authority
[2] << 24;
116 id_auth_val
|= (unsigned long long)sidptr
->authority
[1] << 32;
117 id_auth_val
|= (unsigned long long)sidptr
->authority
[0] << 48;
120 * MS-DTYP states that if the authority is >= 2^32, then it should be
121 * expressed as a hex value.
123 if (id_auth_val
<= UINT_MAX
)
124 len
= sprintf(strptr
, "-%llu", id_auth_val
);
126 len
= sprintf(strptr
, "-0x%llx", id_auth_val
);
130 for (i
= 0; i
< sidptr
->num_subauth
; ++i
) {
131 saval
= le32_to_cpu(sidptr
->sub_auth
[i
]);
132 len
= sprintf(strptr
, "-%u", saval
);
140 * if the two SIDs (roughly equivalent to a UUID for a user or group) are
141 * the same returns zero, if they do not match returns non-zero.
144 compare_sids(const struct cifs_sid
*ctsid
, const struct cifs_sid
*cwsid
)
147 int num_subauth
, num_sat
, num_saw
;
149 if ((!ctsid
) || (!cwsid
))
152 /* compare the revision */
153 if (ctsid
->revision
!= cwsid
->revision
) {
154 if (ctsid
->revision
> cwsid
->revision
)
160 /* compare all of the six auth values */
161 for (i
= 0; i
< NUM_AUTHS
; ++i
) {
162 if (ctsid
->authority
[i
] != cwsid
->authority
[i
]) {
163 if (ctsid
->authority
[i
] > cwsid
->authority
[i
])
170 /* compare all of the subauth values if any */
171 num_sat
= ctsid
->num_subauth
;
172 num_saw
= cwsid
->num_subauth
;
173 num_subauth
= num_sat
< num_saw
? num_sat
: num_saw
;
175 for (i
= 0; i
< num_subauth
; ++i
) {
176 if (ctsid
->sub_auth
[i
] != cwsid
->sub_auth
[i
]) {
177 if (le32_to_cpu(ctsid
->sub_auth
[i
]) >
178 le32_to_cpu(cwsid
->sub_auth
[i
]))
186 return 0; /* sids compare/match */
190 cifs_copy_sid(struct cifs_sid
*dst
, const struct cifs_sid
*src
)
194 dst
->revision
= src
->revision
;
195 dst
->num_subauth
= min_t(u8
, src
->num_subauth
, SID_MAX_SUB_AUTHORITIES
);
196 for (i
= 0; i
< NUM_AUTHS
; ++i
)
197 dst
->authority
[i
] = src
->authority
[i
];
198 for (i
= 0; i
< dst
->num_subauth
; ++i
)
199 dst
->sub_auth
[i
] = src
->sub_auth
[i
];
203 id_to_sid(unsigned int cid
, uint sidtype
, struct cifs_sid
*ssid
)
207 struct cifs_sid
*ksid
;
208 unsigned int ksid_size
;
209 char desc
[3 + 10 + 1]; /* 3 byte prefix + 10 bytes for value + NULL */
210 const struct cred
*saved_cred
;
212 rc
= snprintf(desc
, sizeof(desc
), "%ci:%u",
213 sidtype
== SIDOWNER
? 'o' : 'g', cid
);
214 if (rc
>= sizeof(desc
))
218 saved_cred
= override_creds(root_cred
);
219 sidkey
= request_key(&cifs_idmap_key_type
, desc
, "");
220 if (IS_ERR(sidkey
)) {
222 cFYI(1, "%s: Can't map %cid %u to a SID", __func__
,
223 sidtype
== SIDOWNER
? 'u' : 'g', cid
);
224 goto out_revert_creds
;
225 } else if (sidkey
->datalen
< CIFS_SID_BASE_SIZE
) {
227 cFYI(1, "%s: Downcall contained malformed key "
228 "(datalen=%hu)", __func__
, sidkey
->datalen
);
233 * A sid is usually too large to be embedded in payload.value, but if
234 * there are no subauthorities and the host has 8-byte pointers, then
237 ksid
= sidkey
->datalen
<= sizeof(sidkey
->payload
) ?
238 (struct cifs_sid
*)&sidkey
->payload
.value
:
239 (struct cifs_sid
*)sidkey
->payload
.data
;
241 ksid_size
= CIFS_SID_BASE_SIZE
+ (ksid
->num_subauth
* sizeof(__le32
));
242 if (ksid_size
> sidkey
->datalen
) {
244 cFYI(1, "%s: Downcall contained malformed key (datalen=%hu, "
245 "ksid_size=%u)", __func__
, sidkey
->datalen
, ksid_size
);
249 cifs_copy_sid(ssid
, ksid
);
253 revert_creds(saved_cred
);
257 key_invalidate(sidkey
);
262 sid_to_id(struct cifs_sb_info
*cifs_sb
, struct cifs_sid
*psid
,
263 struct cifs_fattr
*fattr
, uint sidtype
)
268 const struct cred
*saved_cred
;
269 uid_t fuid
= cifs_sb
->mnt_uid
;
270 gid_t fgid
= cifs_sb
->mnt_gid
;
273 * If we have too many subauthorities, then something is really wrong.
274 * Just return an error.
276 if (unlikely(psid
->num_subauth
> SID_MAX_SUB_AUTHORITIES
)) {
277 cFYI(1, "%s: %u subauthorities is too many!", __func__
,
282 sidstr
= sid_to_key_str(psid
, sidtype
);
286 saved_cred
= override_creds(root_cred
);
287 sidkey
= request_key(&cifs_idmap_key_type
, sidstr
, "");
288 if (IS_ERR(sidkey
)) {
290 cFYI(1, "%s: Can't map SID %s to a %cid", __func__
, sidstr
,
291 sidtype
== SIDOWNER
? 'u' : 'g');
292 goto out_revert_creds
;
296 * FIXME: Here we assume that uid_t and gid_t are same size. It's
297 * probably a safe assumption but might be better to check based on
300 if (sidkey
->datalen
!= sizeof(uid_t
)) {
302 cFYI(1, "%s: Downcall contained malformed key "
303 "(datalen=%hu)", __func__
, sidkey
->datalen
);
304 key_invalidate(sidkey
);
308 if (sidtype
== SIDOWNER
)
309 memcpy(&fuid
, &sidkey
->payload
.value
, sizeof(uid_t
));
311 memcpy(&fgid
, &sidkey
->payload
.value
, sizeof(gid_t
));
316 revert_creds(saved_cred
);
320 * Note that we return 0 here unconditionally. If the mapping
321 * fails then we just fall back to using the mnt_uid/mnt_gid.
323 if (sidtype
== SIDOWNER
)
324 fattr
->cf_uid
= fuid
;
326 fattr
->cf_gid
= fgid
;
331 init_cifs_idmap(void)
337 cFYI(1, "Registering the %s key type", cifs_idmap_key_type
.name
);
339 /* create an override credential set with a special thread keyring in
340 * which requests are cached
342 * this is used to prevent malicious redirections from being installed
345 cred
= prepare_kernel_cred(NULL
);
349 keyring
= keyring_alloc(".cifs_idmap", 0, 0, cred
,
350 (KEY_POS_ALL
& ~KEY_POS_SETATTR
) |
351 KEY_USR_VIEW
| KEY_USR_READ
,
352 KEY_ALLOC_NOT_IN_QUOTA
, NULL
);
353 if (IS_ERR(keyring
)) {
354 ret
= PTR_ERR(keyring
);
355 goto failed_put_cred
;
358 ret
= register_key_type(&cifs_idmap_key_type
);
362 /* instruct request_key() to use this special keyring as a cache for
363 * the results it looks up */
364 set_bit(KEY_FLAG_ROOT_CAN_CLEAR
, &keyring
->flags
);
365 cred
->thread_keyring
= keyring
;
366 cred
->jit_keyring
= KEY_REQKEY_DEFL_THREAD_KEYRING
;
369 cFYI(1, "cifs idmap keyring: %d", key_serial(keyring
));
380 exit_cifs_idmap(void)
382 key_revoke(root_cred
->thread_keyring
);
383 unregister_key_type(&cifs_idmap_key_type
);
385 cFYI(1, "Unregistered %s key type", cifs_idmap_key_type
.name
);
388 /* copy ntsd, owner sid, and group sid from a security descriptor to another */
389 static void copy_sec_desc(const struct cifs_ntsd
*pntsd
,
390 struct cifs_ntsd
*pnntsd
, __u32 sidsoffset
)
392 struct cifs_sid
*owner_sid_ptr
, *group_sid_ptr
;
393 struct cifs_sid
*nowner_sid_ptr
, *ngroup_sid_ptr
;
395 /* copy security descriptor control portion */
396 pnntsd
->revision
= pntsd
->revision
;
397 pnntsd
->type
= pntsd
->type
;
398 pnntsd
->dacloffset
= cpu_to_le32(sizeof(struct cifs_ntsd
));
399 pnntsd
->sacloffset
= 0;
400 pnntsd
->osidoffset
= cpu_to_le32(sidsoffset
);
401 pnntsd
->gsidoffset
= cpu_to_le32(sidsoffset
+ sizeof(struct cifs_sid
));
404 owner_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
405 le32_to_cpu(pntsd
->osidoffset
));
406 nowner_sid_ptr
= (struct cifs_sid
*)((char *)pnntsd
+ sidsoffset
);
407 cifs_copy_sid(nowner_sid_ptr
, owner_sid_ptr
);
410 group_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
411 le32_to_cpu(pntsd
->gsidoffset
));
412 ngroup_sid_ptr
= (struct cifs_sid
*)((char *)pnntsd
+ sidsoffset
+
413 sizeof(struct cifs_sid
));
414 cifs_copy_sid(ngroup_sid_ptr
, group_sid_ptr
);
421 change posix mode to reflect permissions
422 pmode is the existing mode (we only want to overwrite part of this
423 bits to set can be: S_IRWXU, S_IRWXG or S_IRWXO ie 00700 or 00070 or 00007
425 static void access_flags_to_mode(__le32 ace_flags
, int type
, umode_t
*pmode
,
426 umode_t
*pbits_to_set
)
428 __u32 flags
= le32_to_cpu(ace_flags
);
429 /* the order of ACEs is important. The canonical order is to begin with
430 DENY entries followed by ALLOW, otherwise an allow entry could be
431 encountered first, making the subsequent deny entry like "dead code"
432 which would be superflous since Windows stops when a match is made
433 for the operation you are trying to perform for your user */
435 /* For deny ACEs we change the mask so that subsequent allow access
436 control entries do not turn on the bits we are denying */
437 if (type
== ACCESS_DENIED
) {
438 if (flags
& GENERIC_ALL
)
439 *pbits_to_set
&= ~S_IRWXUGO
;
441 if ((flags
& GENERIC_WRITE
) ||
442 ((flags
& FILE_WRITE_RIGHTS
) == FILE_WRITE_RIGHTS
))
443 *pbits_to_set
&= ~S_IWUGO
;
444 if ((flags
& GENERIC_READ
) ||
445 ((flags
& FILE_READ_RIGHTS
) == FILE_READ_RIGHTS
))
446 *pbits_to_set
&= ~S_IRUGO
;
447 if ((flags
& GENERIC_EXECUTE
) ||
448 ((flags
& FILE_EXEC_RIGHTS
) == FILE_EXEC_RIGHTS
))
449 *pbits_to_set
&= ~S_IXUGO
;
451 } else if (type
!= ACCESS_ALLOWED
) {
452 cERROR(1, "unknown access control type %d", type
);
455 /* else ACCESS_ALLOWED type */
457 if (flags
& GENERIC_ALL
) {
458 *pmode
|= (S_IRWXUGO
& (*pbits_to_set
));
459 cFYI(DBG2
, "all perms");
462 if ((flags
& GENERIC_WRITE
) ||
463 ((flags
& FILE_WRITE_RIGHTS
) == FILE_WRITE_RIGHTS
))
464 *pmode
|= (S_IWUGO
& (*pbits_to_set
));
465 if ((flags
& GENERIC_READ
) ||
466 ((flags
& FILE_READ_RIGHTS
) == FILE_READ_RIGHTS
))
467 *pmode
|= (S_IRUGO
& (*pbits_to_set
));
468 if ((flags
& GENERIC_EXECUTE
) ||
469 ((flags
& FILE_EXEC_RIGHTS
) == FILE_EXEC_RIGHTS
))
470 *pmode
|= (S_IXUGO
& (*pbits_to_set
));
472 cFYI(DBG2
, "access flags 0x%x mode now 0x%x", flags
, *pmode
);
477 Generate access flags to reflect permissions mode is the existing mode.
478 This function is called for every ACE in the DACL whose SID matches
479 with either owner or group or everyone.
482 static void mode_to_access_flags(umode_t mode
, umode_t bits_to_use
,
485 /* reset access mask */
488 /* bits to use are either S_IRWXU or S_IRWXG or S_IRWXO */
491 /* check for R/W/X UGO since we do not know whose flags
492 is this but we have cleared all the bits sans RWX for
493 either user or group or other as per bits_to_use */
495 *pace_flags
|= SET_FILE_READ_RIGHTS
;
497 *pace_flags
|= SET_FILE_WRITE_RIGHTS
;
499 *pace_flags
|= SET_FILE_EXEC_RIGHTS
;
501 cFYI(DBG2
, "mode: 0x%x, access flags now 0x%x", mode
, *pace_flags
);
505 static __u16
fill_ace_for_sid(struct cifs_ace
*pntace
,
506 const struct cifs_sid
*psid
, __u64 nmode
, umode_t bits
)
510 __u32 access_req
= 0;
512 pntace
->type
= ACCESS_ALLOWED
;
514 mode_to_access_flags(nmode
, bits
, &access_req
);
516 access_req
= SET_MINIMUM_RIGHTS
;
517 pntace
->access_req
= cpu_to_le32(access_req
);
519 pntace
->sid
.revision
= psid
->revision
;
520 pntace
->sid
.num_subauth
= psid
->num_subauth
;
521 for (i
= 0; i
< NUM_AUTHS
; i
++)
522 pntace
->sid
.authority
[i
] = psid
->authority
[i
];
523 for (i
= 0; i
< psid
->num_subauth
; i
++)
524 pntace
->sid
.sub_auth
[i
] = psid
->sub_auth
[i
];
526 size
= 1 + 1 + 2 + 4 + 1 + 1 + 6 + (psid
->num_subauth
* 4);
527 pntace
->size
= cpu_to_le16(size
);
533 #ifdef CONFIG_CIFS_DEBUG2
534 static void dump_ace(struct cifs_ace
*pace
, char *end_of_acl
)
538 /* validate that we do not go past end of acl */
540 if (le16_to_cpu(pace
->size
) < 16) {
541 cERROR(1, "ACE too small %d", le16_to_cpu(pace
->size
));
545 if (end_of_acl
< (char *)pace
+ le16_to_cpu(pace
->size
)) {
546 cERROR(1, "ACL too small to parse ACE");
550 num_subauth
= pace
->sid
.num_subauth
;
553 cFYI(1, "ACE revision %d num_auth %d type %d flags %d size %d",
554 pace
->sid
.revision
, pace
->sid
.num_subauth
, pace
->type
,
555 pace
->flags
, le16_to_cpu(pace
->size
));
556 for (i
= 0; i
< num_subauth
; ++i
) {
557 cFYI(1, "ACE sub_auth[%d]: 0x%x", i
,
558 le32_to_cpu(pace
->sid
.sub_auth
[i
]));
561 /* BB add length check to make sure that we do not have huge
562 num auths and therefore go off the end */
570 static void parse_dacl(struct cifs_acl
*pdacl
, char *end_of_acl
,
571 struct cifs_sid
*pownersid
, struct cifs_sid
*pgrpsid
,
572 struct cifs_fattr
*fattr
)
578 struct cifs_ace
**ppace
;
580 /* BB need to add parm so we can store the SID BB */
583 /* no DACL in the security descriptor, set
584 all the permissions for user/group/other */
585 fattr
->cf_mode
|= S_IRWXUGO
;
589 /* validate that we do not go past end of acl */
590 if (end_of_acl
< (char *)pdacl
+ le16_to_cpu(pdacl
->size
)) {
591 cERROR(1, "ACL too small to parse DACL");
595 cFYI(DBG2
, "DACL revision %d size %d num aces %d",
596 le16_to_cpu(pdacl
->revision
), le16_to_cpu(pdacl
->size
),
597 le32_to_cpu(pdacl
->num_aces
));
599 /* reset rwx permissions for user/group/other.
600 Also, if num_aces is 0 i.e. DACL has no ACEs,
601 user/group/other have no permissions */
602 fattr
->cf_mode
&= ~(S_IRWXUGO
);
604 acl_base
= (char *)pdacl
;
605 acl_size
= sizeof(struct cifs_acl
);
607 num_aces
= le32_to_cpu(pdacl
->num_aces
);
609 umode_t user_mask
= S_IRWXU
;
610 umode_t group_mask
= S_IRWXG
;
611 umode_t other_mask
= S_IRWXU
| S_IRWXG
| S_IRWXO
;
613 if (num_aces
> ULONG_MAX
/ sizeof(struct cifs_ace
*))
615 ppace
= kmalloc(num_aces
* sizeof(struct cifs_ace
*),
618 cERROR(1, "DACL memory allocation error");
622 for (i
= 0; i
< num_aces
; ++i
) {
623 ppace
[i
] = (struct cifs_ace
*) (acl_base
+ acl_size
);
624 #ifdef CONFIG_CIFS_DEBUG2
625 dump_ace(ppace
[i
], end_of_acl
);
627 if (compare_sids(&(ppace
[i
]->sid
), pownersid
) == 0)
628 access_flags_to_mode(ppace
[i
]->access_req
,
632 if (compare_sids(&(ppace
[i
]->sid
), pgrpsid
) == 0)
633 access_flags_to_mode(ppace
[i
]->access_req
,
637 if (compare_sids(&(ppace
[i
]->sid
), &sid_everyone
) == 0)
638 access_flags_to_mode(ppace
[i
]->access_req
,
642 if (compare_sids(&(ppace
[i
]->sid
), &sid_authusers
) == 0)
643 access_flags_to_mode(ppace
[i
]->access_req
,
649 /* memcpy((void *)(&(cifscred->aces[i])),
651 sizeof(struct cifs_ace)); */
653 acl_base
= (char *)ppace
[i
];
654 acl_size
= le16_to_cpu(ppace
[i
]->size
);
664 static int set_chmod_dacl(struct cifs_acl
*pndacl
, struct cifs_sid
*pownersid
,
665 struct cifs_sid
*pgrpsid
, __u64 nmode
)
668 struct cifs_acl
*pnndacl
;
670 pnndacl
= (struct cifs_acl
*)((char *)pndacl
+ sizeof(struct cifs_acl
));
672 size
+= fill_ace_for_sid((struct cifs_ace
*) ((char *)pnndacl
+ size
),
673 pownersid
, nmode
, S_IRWXU
);
674 size
+= fill_ace_for_sid((struct cifs_ace
*)((char *)pnndacl
+ size
),
675 pgrpsid
, nmode
, S_IRWXG
);
676 size
+= fill_ace_for_sid((struct cifs_ace
*)((char *)pnndacl
+ size
),
677 &sid_everyone
, nmode
, S_IRWXO
);
679 pndacl
->size
= cpu_to_le16(size
+ sizeof(struct cifs_acl
));
680 pndacl
->num_aces
= cpu_to_le32(3);
686 static int parse_sid(struct cifs_sid
*psid
, char *end_of_acl
)
688 /* BB need to add parm so we can store the SID BB */
690 /* validate that we do not go past end of ACL - sid must be at least 8
691 bytes long (assuming no sub-auths - e.g. the null SID */
692 if (end_of_acl
< (char *)psid
+ 8) {
693 cERROR(1, "ACL too small to parse SID %p", psid
);
697 #ifdef CONFIG_CIFS_DEBUG2
698 if (psid
->num_subauth
) {
700 cFYI(1, "SID revision %d num_auth %d",
701 psid
->revision
, psid
->num_subauth
);
703 for (i
= 0; i
< psid
->num_subauth
; i
++) {
704 cFYI(1, "SID sub_auth[%d]: 0x%x ", i
,
705 le32_to_cpu(psid
->sub_auth
[i
]));
708 /* BB add length check to make sure that we do not have huge
709 num auths and therefore go off the end */
711 le32_to_cpu(psid
->sub_auth
[psid
->num_subauth
-1]));
719 /* Convert CIFS ACL to POSIX form */
720 static int parse_sec_desc(struct cifs_sb_info
*cifs_sb
,
721 struct cifs_ntsd
*pntsd
, int acl_len
, struct cifs_fattr
*fattr
)
724 struct cifs_sid
*owner_sid_ptr
, *group_sid_ptr
;
725 struct cifs_acl
*dacl_ptr
; /* no need for SACL ptr */
726 char *end_of_acl
= ((char *)pntsd
) + acl_len
;
732 owner_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
733 le32_to_cpu(pntsd
->osidoffset
));
734 group_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
735 le32_to_cpu(pntsd
->gsidoffset
));
736 dacloffset
= le32_to_cpu(pntsd
->dacloffset
);
737 dacl_ptr
= (struct cifs_acl
*)((char *)pntsd
+ dacloffset
);
738 cFYI(DBG2
, "revision %d type 0x%x ooffset 0x%x goffset 0x%x "
739 "sacloffset 0x%x dacloffset 0x%x",
740 pntsd
->revision
, pntsd
->type
, le32_to_cpu(pntsd
->osidoffset
),
741 le32_to_cpu(pntsd
->gsidoffset
),
742 le32_to_cpu(pntsd
->sacloffset
), dacloffset
);
743 /* cifs_dump_mem("owner_sid: ", owner_sid_ptr, 64); */
744 rc
= parse_sid(owner_sid_ptr
, end_of_acl
);
746 cFYI(1, "%s: Error %d parsing Owner SID", __func__
, rc
);
749 rc
= sid_to_id(cifs_sb
, owner_sid_ptr
, fattr
, SIDOWNER
);
751 cFYI(1, "%s: Error %d mapping Owner SID to uid", __func__
, rc
);
755 rc
= parse_sid(group_sid_ptr
, end_of_acl
);
757 cFYI(1, "%s: Error %d mapping Owner SID to gid", __func__
, rc
);
760 rc
= sid_to_id(cifs_sb
, group_sid_ptr
, fattr
, SIDGROUP
);
762 cFYI(1, "%s: Error %d mapping Group SID to gid", __func__
, rc
);
767 parse_dacl(dacl_ptr
, end_of_acl
, owner_sid_ptr
,
768 group_sid_ptr
, fattr
);
770 cFYI(1, "no ACL"); /* BB grant all or default perms? */
775 /* Convert permission bits from mode to equivalent CIFS ACL */
776 static int build_sec_desc(struct cifs_ntsd
*pntsd
, struct cifs_ntsd
*pnntsd
,
777 __u32 secdesclen
, __u64 nmode
, uid_t uid
, gid_t gid
, int *aclflag
)
783 struct cifs_sid
*owner_sid_ptr
, *group_sid_ptr
;
784 struct cifs_sid
*nowner_sid_ptr
, *ngroup_sid_ptr
;
785 struct cifs_acl
*dacl_ptr
= NULL
; /* no need for SACL ptr */
786 struct cifs_acl
*ndacl_ptr
= NULL
; /* no need for SACL ptr */
788 if (nmode
!= NO_CHANGE_64
) { /* chmod */
789 owner_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
790 le32_to_cpu(pntsd
->osidoffset
));
791 group_sid_ptr
= (struct cifs_sid
*)((char *)pntsd
+
792 le32_to_cpu(pntsd
->gsidoffset
));
793 dacloffset
= le32_to_cpu(pntsd
->dacloffset
);
794 dacl_ptr
= (struct cifs_acl
*)((char *)pntsd
+ dacloffset
);
795 ndacloffset
= sizeof(struct cifs_ntsd
);
796 ndacl_ptr
= (struct cifs_acl
*)((char *)pnntsd
+ ndacloffset
);
797 ndacl_ptr
->revision
= dacl_ptr
->revision
;
799 ndacl_ptr
->num_aces
= 0;
801 rc
= set_chmod_dacl(ndacl_ptr
, owner_sid_ptr
, group_sid_ptr
,
803 sidsoffset
= ndacloffset
+ le16_to_cpu(ndacl_ptr
->size
);
804 /* copy sec desc control portion & owner and group sids */
805 copy_sec_desc(pntsd
, pnntsd
, sidsoffset
);
806 *aclflag
= CIFS_ACL_DACL
;
808 memcpy(pnntsd
, pntsd
, secdesclen
);
809 if (uid
!= NO_CHANGE_32
) { /* chown */
810 owner_sid_ptr
= (struct cifs_sid
*)((char *)pnntsd
+
811 le32_to_cpu(pnntsd
->osidoffset
));
812 nowner_sid_ptr
= kmalloc(sizeof(struct cifs_sid
),
816 rc
= id_to_sid(uid
, SIDOWNER
, nowner_sid_ptr
);
818 cFYI(1, "%s: Mapping error %d for owner id %d",
820 kfree(nowner_sid_ptr
);
823 cifs_copy_sid(owner_sid_ptr
, nowner_sid_ptr
);
824 kfree(nowner_sid_ptr
);
825 *aclflag
= CIFS_ACL_OWNER
;
827 if (gid
!= NO_CHANGE_32
) { /* chgrp */
828 group_sid_ptr
= (struct cifs_sid
*)((char *)pnntsd
+
829 le32_to_cpu(pnntsd
->gsidoffset
));
830 ngroup_sid_ptr
= kmalloc(sizeof(struct cifs_sid
),
834 rc
= id_to_sid(gid
, SIDGROUP
, ngroup_sid_ptr
);
836 cFYI(1, "%s: Mapping error %d for group id %d",
838 kfree(ngroup_sid_ptr
);
841 cifs_copy_sid(group_sid_ptr
, ngroup_sid_ptr
);
842 kfree(ngroup_sid_ptr
);
843 *aclflag
= CIFS_ACL_GROUP
;
850 static struct cifs_ntsd
*get_cifs_acl_by_fid(struct cifs_sb_info
*cifs_sb
,
851 __u16 fid
, u32
*pacllen
)
853 struct cifs_ntsd
*pntsd
= NULL
;
856 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
859 return ERR_CAST(tlink
);
862 rc
= CIFSSMBGetCIFSACL(xid
, tlink_tcon(tlink
), fid
, &pntsd
, pacllen
);
865 cifs_put_tlink(tlink
);
867 cFYI(1, "%s: rc = %d ACL len %d", __func__
, rc
, *pacllen
);
873 static struct cifs_ntsd
*get_cifs_acl_by_path(struct cifs_sb_info
*cifs_sb
,
874 const char *path
, u32
*pacllen
)
876 struct cifs_ntsd
*pntsd
= NULL
;
879 int rc
, create_options
= 0;
881 struct cifs_tcon
*tcon
;
882 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
885 return ERR_CAST(tlink
);
887 tcon
= tlink_tcon(tlink
);
890 if (backup_cred(cifs_sb
))
891 create_options
|= CREATE_OPEN_BACKUP_INTENT
;
893 rc
= CIFSSMBOpen(xid
, tcon
, path
, FILE_OPEN
, READ_CONTROL
,
894 create_options
, &fid
, &oplock
, NULL
, cifs_sb
->local_nls
,
895 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
897 rc
= CIFSSMBGetCIFSACL(xid
, tcon
, fid
, &pntsd
, pacllen
);
898 CIFSSMBClose(xid
, tcon
, fid
);
901 cifs_put_tlink(tlink
);
904 cFYI(1, "%s: rc = %d ACL len %d", __func__
, rc
, *pacllen
);
910 /* Retrieve an ACL from the server */
911 struct cifs_ntsd
*get_cifs_acl(struct cifs_sb_info
*cifs_sb
,
912 struct inode
*inode
, const char *path
,
915 struct cifs_ntsd
*pntsd
= NULL
;
916 struct cifsFileInfo
*open_file
= NULL
;
919 open_file
= find_readable_file(CIFS_I(inode
), true);
921 return get_cifs_acl_by_path(cifs_sb
, path
, pacllen
);
923 pntsd
= get_cifs_acl_by_fid(cifs_sb
, open_file
->fid
.netfid
, pacllen
);
924 cifsFileInfo_put(open_file
);
928 /* Set an ACL on the server */
929 int set_cifs_acl(struct cifs_ntsd
*pnntsd
, __u32 acllen
,
930 struct inode
*inode
, const char *path
, int aclflag
)
934 int rc
, access_flags
, create_options
= 0;
936 struct cifs_tcon
*tcon
;
937 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
938 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
941 return PTR_ERR(tlink
);
943 tcon
= tlink_tcon(tlink
);
946 if (backup_cred(cifs_sb
))
947 create_options
|= CREATE_OPEN_BACKUP_INTENT
;
949 if (aclflag
== CIFS_ACL_OWNER
|| aclflag
== CIFS_ACL_GROUP
)
950 access_flags
= WRITE_OWNER
;
952 access_flags
= WRITE_DAC
;
954 rc
= CIFSSMBOpen(xid
, tcon
, path
, FILE_OPEN
, access_flags
,
955 create_options
, &fid
, &oplock
, NULL
, cifs_sb
->local_nls
,
956 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
958 cERROR(1, "Unable to open file to set ACL");
962 rc
= CIFSSMBSetCIFSACL(xid
, tcon
, fid
, pnntsd
, acllen
, aclflag
);
963 cFYI(DBG2
, "SetCIFSACL rc = %d", rc
);
965 CIFSSMBClose(xid
, tcon
, fid
);
968 cifs_put_tlink(tlink
);
972 /* Translate the CIFS ACL (simlar to NTFS ACL) for a file into mode bits */
974 cifs_acl_to_fattr(struct cifs_sb_info
*cifs_sb
, struct cifs_fattr
*fattr
,
975 struct inode
*inode
, const char *path
, const __u16
*pfid
)
977 struct cifs_ntsd
*pntsd
= NULL
;
981 cFYI(DBG2
, "converting ACL to mode for %s", path
);
984 pntsd
= get_cifs_acl_by_fid(cifs_sb
, *pfid
, &acllen
);
986 pntsd
= get_cifs_acl(cifs_sb
, inode
, path
, &acllen
);
988 /* if we can retrieve the ACL, now parse Access Control Entries, ACEs */
991 cERROR(1, "%s: error %d getting sec desc", __func__
, rc
);
993 rc
= parse_sec_desc(cifs_sb
, pntsd
, acllen
, fattr
);
996 cERROR(1, "parse sec desc failed rc = %d", rc
);
1002 /* Convert mode bits to an ACL so we can update the ACL on the server */
1004 id_mode_to_cifs_acl(struct inode
*inode
, const char *path
, __u64 nmode
,
1005 uid_t uid
, gid_t gid
)
1008 int aclflag
= CIFS_ACL_DACL
; /* default flag to set */
1009 __u32 secdesclen
= 0;
1010 struct cifs_ntsd
*pntsd
= NULL
; /* acl obtained from server */
1011 struct cifs_ntsd
*pnntsd
= NULL
; /* modified acl to be sent to server */
1013 cFYI(DBG2
, "set ACL from mode for %s", path
);
1015 /* Get the security descriptor */
1016 pntsd
= get_cifs_acl(CIFS_SB(inode
->i_sb
), inode
, path
, &secdesclen
);
1017 if (IS_ERR(pntsd
)) {
1018 rc
= PTR_ERR(pntsd
);
1019 cERROR(1, "%s: error %d getting sec desc", __func__
, rc
);
1024 * Add three ACEs for owner, group, everyone getting rid of other ACEs
1025 * as chmod disables ACEs and set the security descriptor. Allocate
1026 * memory for the smb header, set security descriptor request security
1027 * descriptor parameters, and secuirty descriptor itself
1029 secdesclen
= max_t(u32
, secdesclen
, DEFAULT_SEC_DESC_LEN
);
1030 pnntsd
= kmalloc(secdesclen
, GFP_KERNEL
);
1032 cERROR(1, "Unable to allocate security descriptor");
1037 rc
= build_sec_desc(pntsd
, pnntsd
, secdesclen
, nmode
, uid
, gid
,
1040 cFYI(DBG2
, "build_sec_desc rc: %d", rc
);
1043 /* Set the security descriptor */
1044 rc
= set_cifs_acl(pnntsd
, secdesclen
, inode
, path
, aclflag
);
1045 cFYI(DBG2
, "set_cifs_acl rc: %d", rc
);