| 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> | 
 | 25 | #include "cifspdu.h" | 
 | 26 | #include "cifsglob.h" | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 27 | #include "cifsacl.h" | 
| Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 28 | #include "cifsproto.h" | 
 | 29 | #include "cifs_debug.h" | 
| Steve French | 6587400 | 2007-09-25 19:53:44 +0000 | [diff] [blame] | 30 |  | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 31 |  | 
 | 32 | #ifdef CONFIG_CIFS_EXPERIMENTAL | 
 | 33 |  | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 34 | static struct cifs_wksid wksidarr[NUM_WK_SIDS] = { | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 35 | 	{{1, 0, {0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0} }, "null user"}, | 
 | 36 | 	{{1, 1, {0, 0, 0, 0, 0, 1}, {0, 0, 0, 0, 0} }, "nobody"}, | 
| Jeff Layton | 536abdb | 2008-07-12 13:48:00 -0700 | [diff] [blame] | 37 | 	{{1, 1, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(11), 0, 0, 0, 0} }, "net-users"}, | 
 | 38 | 	{{1, 1, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(18), 0, 0, 0, 0} }, "sys"}, | 
 | 39 | 	{{1, 2, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(32), __constant_cpu_to_le32(544), 0, 0, 0} }, "root"}, | 
 | 40 | 	{{1, 2, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(32), __constant_cpu_to_le32(545), 0, 0, 0} }, "users"}, | 
 | 41 | 	{{1, 2, {0, 0, 0, 0, 0, 5}, {__constant_cpu_to_le32(32), __constant_cpu_to_le32(546), 0, 0, 0} }, "guest"} } | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 42 | ; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 43 |  | 
 | 44 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 45 | /* security id for everyone */ | 
| Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 46 | static const struct cifs_sid sid_everyone = { | 
 | 47 | 	1, 1, {0, 0, 0, 0, 0, 1}, {0} }; | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 48 | /* group users */ | 
| Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 49 | 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] | 50 |  | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 51 |  | 
 | 52 | int match_sid(struct cifs_sid *ctsid) | 
 | 53 | { | 
 | 54 | 	int i, j; | 
 | 55 | 	int num_subauth, num_sat, num_saw; | 
 | 56 | 	struct cifs_sid *cwsid; | 
 | 57 |  | 
 | 58 | 	if (!ctsid) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 59 | 		return -1; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 60 |  | 
 | 61 | 	for (i = 0; i < NUM_WK_SIDS; ++i) { | 
 | 62 | 		cwsid = &(wksidarr[i].cifssid); | 
 | 63 |  | 
 | 64 | 		/* compare the revision */ | 
 | 65 | 		if (ctsid->revision != cwsid->revision) | 
 | 66 | 			continue; | 
 | 67 |  | 
 | 68 | 		/* compare all of the six auth values */ | 
 | 69 | 		for (j = 0; j < 6; ++j) { | 
 | 70 | 			if (ctsid->authority[j] != cwsid->authority[j]) | 
 | 71 | 				break; | 
 | 72 | 		} | 
 | 73 | 		if (j < 6) | 
 | 74 | 			continue; /* all of the auth values did not match */ | 
 | 75 |  | 
 | 76 | 		/* compare all of the subauth values if any */ | 
| Dave Kleikamp | ce51ae1 | 2007-10-16 21:35:39 +0000 | [diff] [blame] | 77 | 		num_sat = ctsid->num_subauth; | 
 | 78 | 		num_saw = cwsid->num_subauth; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 79 | 		num_subauth = num_sat < num_saw ? num_sat : num_saw; | 
 | 80 | 		if (num_subauth) { | 
 | 81 | 			for (j = 0; j < num_subauth; ++j) { | 
 | 82 | 				if (ctsid->sub_auth[j] != cwsid->sub_auth[j]) | 
 | 83 | 					break; | 
 | 84 | 			} | 
 | 85 | 			if (j < num_subauth) | 
 | 86 | 				continue; /* all sub_auth values do not match */ | 
 | 87 | 		} | 
 | 88 |  | 
 | 89 | 		cFYI(1, ("matching sid: %s\n", wksidarr[i].sidname)); | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 90 | 		return 0; /* sids compare/match */ | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 91 | 	} | 
 | 92 |  | 
 | 93 | 	cFYI(1, ("No matching sid")); | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 94 | 	return -1; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 95 | } | 
 | 96 |  | 
| Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 97 | /* if the two SIDs (roughly equivalent to a UUID for a user or group) are | 
 | 98 |    the same returns 1, if they do not match returns 0 */ | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 99 | int compare_sids(const struct cifs_sid *ctsid, const struct cifs_sid *cwsid) | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 100 | { | 
 | 101 | 	int i; | 
 | 102 | 	int num_subauth, num_sat, num_saw; | 
 | 103 |  | 
 | 104 | 	if ((!ctsid) || (!cwsid)) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 105 | 		return 0; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 106 |  | 
 | 107 | 	/* compare the revision */ | 
 | 108 | 	if (ctsid->revision != cwsid->revision) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 109 | 		return 0; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 110 |  | 
 | 111 | 	/* compare all of the six auth values */ | 
 | 112 | 	for (i = 0; i < 6; ++i) { | 
 | 113 | 		if (ctsid->authority[i] != cwsid->authority[i]) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 114 | 			return 0; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 115 | 	} | 
 | 116 |  | 
 | 117 | 	/* compare all of the subauth values if any */ | 
| Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 118 | 	num_sat = ctsid->num_subauth; | 
| Steve French | adddd49 | 2007-10-17 02:48:17 +0000 | [diff] [blame] | 119 | 	num_saw = cwsid->num_subauth; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 120 | 	num_subauth = num_sat < num_saw ? num_sat : num_saw; | 
 | 121 | 	if (num_subauth) { | 
 | 122 | 		for (i = 0; i < num_subauth; ++i) { | 
 | 123 | 			if (ctsid->sub_auth[i] != cwsid->sub_auth[i]) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 124 | 				return 0; | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 125 | 		} | 
 | 126 | 	} | 
 | 127 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 128 | 	return 1; /* sids compare/match */ | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 129 | } | 
 | 130 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 131 |  | 
 | 132 | /* copy ntsd, owner sid, and group sid from a security descriptor to another */ | 
 | 133 | static void copy_sec_desc(const struct cifs_ntsd *pntsd, | 
 | 134 | 				struct cifs_ntsd *pnntsd, __u32 sidsoffset) | 
 | 135 | { | 
 | 136 | 	int i; | 
 | 137 |  | 
 | 138 | 	struct cifs_sid *owner_sid_ptr, *group_sid_ptr; | 
 | 139 | 	struct cifs_sid *nowner_sid_ptr, *ngroup_sid_ptr; | 
 | 140 |  | 
 | 141 | 	/* copy security descriptor control portion */ | 
 | 142 | 	pnntsd->revision = pntsd->revision; | 
 | 143 | 	pnntsd->type = pntsd->type; | 
 | 144 | 	pnntsd->dacloffset = cpu_to_le32(sizeof(struct cifs_ntsd)); | 
 | 145 | 	pnntsd->sacloffset = 0; | 
 | 146 | 	pnntsd->osidoffset = cpu_to_le32(sidsoffset); | 
 | 147 | 	pnntsd->gsidoffset = cpu_to_le32(sidsoffset + sizeof(struct cifs_sid)); | 
 | 148 |  | 
 | 149 | 	/* copy owner sid */ | 
 | 150 | 	owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
 | 151 | 				le32_to_cpu(pntsd->osidoffset)); | 
 | 152 | 	nowner_sid_ptr = (struct cifs_sid *)((char *)pnntsd + sidsoffset); | 
 | 153 |  | 
 | 154 | 	nowner_sid_ptr->revision = owner_sid_ptr->revision; | 
 | 155 | 	nowner_sid_ptr->num_subauth = owner_sid_ptr->num_subauth; | 
 | 156 | 	for (i = 0; i < 6; i++) | 
 | 157 | 		nowner_sid_ptr->authority[i] = owner_sid_ptr->authority[i]; | 
 | 158 | 	for (i = 0; i < 5; i++) | 
 | 159 | 		nowner_sid_ptr->sub_auth[i] = owner_sid_ptr->sub_auth[i]; | 
 | 160 |  | 
 | 161 | 	/* copy group sid */ | 
 | 162 | 	group_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
 | 163 | 				le32_to_cpu(pntsd->gsidoffset)); | 
 | 164 | 	ngroup_sid_ptr = (struct cifs_sid *)((char *)pnntsd + sidsoffset + | 
 | 165 | 					sizeof(struct cifs_sid)); | 
 | 166 |  | 
 | 167 | 	ngroup_sid_ptr->revision = group_sid_ptr->revision; | 
 | 168 | 	ngroup_sid_ptr->num_subauth = group_sid_ptr->num_subauth; | 
 | 169 | 	for (i = 0; i < 6; i++) | 
 | 170 | 		ngroup_sid_ptr->authority[i] = group_sid_ptr->authority[i]; | 
 | 171 | 	for (i = 0; i < 5; i++) | 
| Shirish Pargaonkar | b1910ad | 2008-07-24 14:53:20 +0000 | [diff] [blame] | 172 | 		ngroup_sid_ptr->sub_auth[i] = group_sid_ptr->sub_auth[i]; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 173 |  | 
 | 174 | 	return; | 
 | 175 | } | 
 | 176 |  | 
 | 177 |  | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 178 | /* | 
 | 179 |    change posix mode to reflect permissions | 
 | 180 |    pmode is the existing mode (we only want to overwrite part of this | 
 | 181 |    bits to set can be: S_IRWXU, S_IRWXG or S_IRWXO ie 00700 or 00070 or 00007 | 
 | 182 | */ | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 183 | 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] | 184 | 				 umode_t *pbits_to_set) | 
| Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 185 | { | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 186 | 	__u32 flags = le32_to_cpu(ace_flags); | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 187 | 	/* 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] | 188 | 	   DENY entries followed by ALLOW, otherwise an allow entry could be | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 189 | 	   encountered first, making the subsequent deny entry like "dead code" | 
| Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 190 | 	   which would be superflous since Windows stops when a match is made | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 191 | 	   for the operation you are trying to perform for your user */ | 
 | 192 |  | 
 | 193 | 	/* For deny ACEs we change the mask so that subsequent allow access | 
 | 194 | 	   control entries do not turn on the bits we are denying */ | 
 | 195 | 	if (type == ACCESS_DENIED) { | 
| Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 196 | 		if (flags & GENERIC_ALL) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 197 | 			*pbits_to_set &= ~S_IRWXUGO; | 
| Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 198 |  | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 199 | 		if ((flags & GENERIC_WRITE) || | 
 | 200 | 			((flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 201 | 			*pbits_to_set &= ~S_IWUGO; | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 202 | 		if ((flags & GENERIC_READ) || | 
 | 203 | 			((flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 204 | 			*pbits_to_set &= ~S_IRUGO; | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 205 | 		if ((flags & GENERIC_EXECUTE) || | 
 | 206 | 			((flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 207 | 			*pbits_to_set &= ~S_IXUGO; | 
 | 208 | 		return; | 
 | 209 | 	} else if (type != ACCESS_ALLOWED) { | 
 | 210 | 		cERROR(1, ("unknown access control type %d", type)); | 
 | 211 | 		return; | 
 | 212 | 	} | 
 | 213 | 	/* else ACCESS_ALLOWED type */ | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 214 |  | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 215 | 	if (flags & GENERIC_ALL) { | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 216 | 		*pmode |= (S_IRWXUGO & (*pbits_to_set)); | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 217 | 		cFYI(DBG2, ("all perms")); | 
| Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 218 | 		return; | 
 | 219 | 	} | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 220 | 	if ((flags & GENERIC_WRITE) || | 
 | 221 | 			((flags & FILE_WRITE_RIGHTS) == FILE_WRITE_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 222 | 		*pmode |= (S_IWUGO & (*pbits_to_set)); | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 223 | 	if ((flags & GENERIC_READ) || | 
 | 224 | 			((flags & FILE_READ_RIGHTS) == FILE_READ_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 225 | 		*pmode |= (S_IRUGO & (*pbits_to_set)); | 
| Al Viro | 9b5e685 | 2007-12-05 08:24:38 +0000 | [diff] [blame] | 226 | 	if ((flags & GENERIC_EXECUTE) || | 
 | 227 | 			((flags & FILE_EXEC_RIGHTS) == FILE_EXEC_RIGHTS)) | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 228 | 		*pmode |= (S_IXUGO & (*pbits_to_set)); | 
| Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 229 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 230 | 	cFYI(DBG2, ("access flags 0x%x mode now 0x%x", flags, *pmode)); | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 231 | 	return; | 
 | 232 | } | 
 | 233 |  | 
| Steve French | ce06c9f | 2007-11-08 21:12:01 +0000 | [diff] [blame] | 234 | /* | 
 | 235 |    Generate access flags to reflect permissions mode is the existing mode. | 
 | 236 |    This function is called for every ACE in the DACL whose SID matches | 
 | 237 |    with either owner or group or everyone. | 
 | 238 | */ | 
 | 239 |  | 
 | 240 | static void mode_to_access_flags(umode_t mode, umode_t bits_to_use, | 
 | 241 | 				__u32 *pace_flags) | 
 | 242 | { | 
 | 243 | 	/* reset access mask */ | 
 | 244 | 	*pace_flags = 0x0; | 
 | 245 |  | 
 | 246 | 	/* bits to use are either S_IRWXU or S_IRWXG or S_IRWXO */ | 
 | 247 | 	mode &= bits_to_use; | 
 | 248 |  | 
 | 249 | 	/* check for R/W/X UGO since we do not know whose flags | 
 | 250 | 	   is this but we have cleared all the bits sans RWX for | 
 | 251 | 	   either user or group or other as per bits_to_use */ | 
 | 252 | 	if (mode & S_IRUGO) | 
 | 253 | 		*pace_flags |= SET_FILE_READ_RIGHTS; | 
 | 254 | 	if (mode & S_IWUGO) | 
 | 255 | 		*pace_flags |= SET_FILE_WRITE_RIGHTS; | 
 | 256 | 	if (mode & S_IXUGO) | 
 | 257 | 		*pace_flags |= SET_FILE_EXEC_RIGHTS; | 
 | 258 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 259 | 	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] | 260 | 	return; | 
 | 261 | } | 
 | 262 |  | 
| Al Viro | 2b210ad | 2008-03-29 03:09:18 +0000 | [diff] [blame] | 263 | static __u16 fill_ace_for_sid(struct cifs_ace *pntace, | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 264 | 			const struct cifs_sid *psid, __u64 nmode, umode_t bits) | 
 | 265 | { | 
 | 266 | 	int i; | 
 | 267 | 	__u16 size = 0; | 
 | 268 | 	__u32 access_req = 0; | 
 | 269 |  | 
 | 270 | 	pntace->type = ACCESS_ALLOWED; | 
 | 271 | 	pntace->flags = 0x0; | 
 | 272 | 	mode_to_access_flags(nmode, bits, &access_req); | 
 | 273 | 	if (!access_req) | 
 | 274 | 		access_req = SET_MINIMUM_RIGHTS; | 
 | 275 | 	pntace->access_req = cpu_to_le32(access_req); | 
 | 276 |  | 
 | 277 | 	pntace->sid.revision = psid->revision; | 
 | 278 | 	pntace->sid.num_subauth = psid->num_subauth; | 
 | 279 | 	for (i = 0; i < 6; i++) | 
 | 280 | 		pntace->sid.authority[i] = psid->authority[i]; | 
 | 281 | 	for (i = 0; i < psid->num_subauth; i++) | 
 | 282 | 		pntace->sid.sub_auth[i] = psid->sub_auth[i]; | 
 | 283 |  | 
 | 284 | 	size = 1 + 1 + 2 + 4 + 1 + 1 + 6 + (psid->num_subauth * 4); | 
 | 285 | 	pntace->size = cpu_to_le16(size); | 
 | 286 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 287 | 	return size; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 288 | } | 
 | 289 |  | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 290 |  | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 291 | #ifdef CONFIG_CIFS_DEBUG2 | 
 | 292 | static void dump_ace(struct cifs_ace *pace, char *end_of_acl) | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 293 | { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 294 | 	int num_subauth; | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 295 |  | 
 | 296 | 	/* validate that we do not go past end of acl */ | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 297 |  | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 298 | 	if (le16_to_cpu(pace->size) < 16) { | 
 | 299 | 		cERROR(1, ("ACE too small, %d", le16_to_cpu(pace->size))); | 
 | 300 | 		return; | 
 | 301 | 	} | 
 | 302 |  | 
 | 303 | 	if (end_of_acl < (char *)pace + le16_to_cpu(pace->size)) { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 304 | 		cERROR(1, ("ACL too small to parse ACE")); | 
 | 305 | 		return; | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 306 | 	} | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 307 |  | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 308 | 	num_subauth = pace->sid.num_subauth; | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 309 | 	if (num_subauth) { | 
| Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 310 | 		int i; | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 311 | 		cFYI(1, ("ACE revision %d num_auth %d type %d flags %d size %d", | 
 | 312 | 			pace->sid.revision, pace->sid.num_subauth, pace->type, | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 313 | 			pace->flags, le16_to_cpu(pace->size))); | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 314 | 		for (i = 0; i < num_subauth; ++i) { | 
 | 315 | 			cFYI(1, ("ACE sub_auth[%d]: 0x%x", i, | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 316 | 				le32_to_cpu(pace->sid.sub_auth[i]))); | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 317 | 		} | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 318 |  | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 319 | 		/* BB add length check to make sure that we do not have huge | 
 | 320 | 			num auths and therefore go off the end */ | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 321 | 	} | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 322 |  | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 323 | 	return; | 
 | 324 | } | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 325 | #endif | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 326 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 327 |  | 
| Steve French | a750e77 | 2007-10-17 22:50:39 +0000 | [diff] [blame] | 328 | static void parse_dacl(struct cifs_acl *pdacl, char *end_of_acl, | 
| Steve French | d61e580 | 2007-10-26 04:32:43 +0000 | [diff] [blame] | 329 | 		       struct cifs_sid *pownersid, struct cifs_sid *pgrpsid, | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 330 | 		       struct inode *inode) | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 331 | { | 
 | 332 | 	int i; | 
 | 333 | 	int num_aces = 0; | 
 | 334 | 	int acl_size; | 
 | 335 | 	char *acl_base; | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 336 | 	struct cifs_ace **ppace; | 
 | 337 |  | 
 | 338 | 	/* BB need to add parm so we can store the SID BB */ | 
 | 339 |  | 
| Steve French | 2b83457 | 2007-11-25 10:01:00 +0000 | [diff] [blame] | 340 | 	if (!pdacl) { | 
 | 341 | 		/* no DACL in the security descriptor, set | 
 | 342 | 		   all the permissions for user/group/other */ | 
 | 343 | 		inode->i_mode |= S_IRWXUGO; | 
 | 344 | 		return; | 
 | 345 | 	} | 
 | 346 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 347 | 	/* validate that we do not go past end of acl */ | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 348 | 	if (end_of_acl < (char *)pdacl + le16_to_cpu(pdacl->size)) { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 349 | 		cERROR(1, ("ACL too small to parse DACL")); | 
 | 350 | 		return; | 
 | 351 | 	} | 
 | 352 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 353 | 	cFYI(DBG2, ("DACL revision %d size %d num aces %d", | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 354 | 		le16_to_cpu(pdacl->revision), le16_to_cpu(pdacl->size), | 
 | 355 | 		le32_to_cpu(pdacl->num_aces))); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 356 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 357 | 	/* reset rwx permissions for user/group/other. | 
 | 358 | 	   Also, if num_aces is 0 i.e. DACL has no ACEs, | 
 | 359 | 	   user/group/other have no permissions */ | 
 | 360 | 	inode->i_mode &= ~(S_IRWXUGO); | 
 | 361 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 362 | 	acl_base = (char *)pdacl; | 
 | 363 | 	acl_size = sizeof(struct cifs_acl); | 
 | 364 |  | 
| Steve French | adbc035 | 2007-10-17 02:12:46 +0000 | [diff] [blame] | 365 | 	num_aces = le32_to_cpu(pdacl->num_aces); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 366 | 	if (num_aces  > 0) { | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 367 | 		umode_t user_mask = S_IRWXU; | 
 | 368 | 		umode_t group_mask = S_IRWXG; | 
 | 369 | 		umode_t other_mask = S_IRWXO; | 
 | 370 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 371 | 		ppace = kmalloc(num_aces * sizeof(struct cifs_ace *), | 
 | 372 | 				GFP_KERNEL); | 
 | 373 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 374 | 		for (i = 0; i < num_aces; ++i) { | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 375 | 			ppace[i] = (struct cifs_ace *) (acl_base + acl_size); | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 376 | #ifdef CONFIG_CIFS_DEBUG2 | 
 | 377 | 			dump_ace(ppace[i], end_of_acl); | 
 | 378 | #endif | 
| Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 379 | 			if (compare_sids(&(ppace[i]->sid), pownersid)) | 
 | 380 | 				access_flags_to_mode(ppace[i]->access_req, | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 381 | 						     ppace[i]->type, | 
 | 382 | 						     &(inode->i_mode), | 
 | 383 | 						     &user_mask); | 
| Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 384 | 			if (compare_sids(&(ppace[i]->sid), pgrpsid)) | 
 | 385 | 				access_flags_to_mode(ppace[i]->access_req, | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 386 | 						     ppace[i]->type, | 
 | 387 | 						     &(inode->i_mode), | 
 | 388 | 						     &group_mask); | 
| Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 389 | 			if (compare_sids(&(ppace[i]->sid), &sid_everyone)) | 
 | 390 | 				access_flags_to_mode(ppace[i]->access_req, | 
| Steve French | 15b0395 | 2007-11-08 17:57:40 +0000 | [diff] [blame] | 391 | 						     ppace[i]->type, | 
 | 392 | 						     &(inode->i_mode), | 
 | 393 | 						     &other_mask); | 
| Shirish Pargaonkar | e01b640 | 2007-10-30 04:45:14 +0000 | [diff] [blame] | 394 |  | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 395 | /*			memcpy((void *)(&(cifscred->aces[i])), | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 396 | 				(void *)ppace[i], | 
 | 397 | 				sizeof(struct cifs_ace)); */ | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 398 |  | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 399 | 			acl_base = (char *)ppace[i]; | 
 | 400 | 			acl_size = le16_to_cpu(ppace[i]->size); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 401 | 		} | 
 | 402 |  | 
 | 403 | 		kfree(ppace); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 404 | 	} | 
 | 405 |  | 
 | 406 | 	return; | 
 | 407 | } | 
 | 408 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 409 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 410 | static int set_chmod_dacl(struct cifs_acl *pndacl, struct cifs_sid *pownersid, | 
 | 411 | 			struct cifs_sid *pgrpsid, __u64 nmode) | 
 | 412 | { | 
| Al Viro | 2b210ad | 2008-03-29 03:09:18 +0000 | [diff] [blame] | 413 | 	u16 size = 0; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 414 | 	struct cifs_acl *pnndacl; | 
 | 415 |  | 
 | 416 | 	pnndacl = (struct cifs_acl *)((char *)pndacl + sizeof(struct cifs_acl)); | 
 | 417 |  | 
 | 418 | 	size += fill_ace_for_sid((struct cifs_ace *) ((char *)pnndacl + size), | 
 | 419 | 					pownersid, nmode, S_IRWXU); | 
 | 420 | 	size += fill_ace_for_sid((struct cifs_ace *)((char *)pnndacl + size), | 
 | 421 | 					pgrpsid, nmode, S_IRWXG); | 
 | 422 | 	size += fill_ace_for_sid((struct cifs_ace *)((char *)pnndacl + size), | 
 | 423 | 					 &sid_everyone, nmode, S_IRWXO); | 
 | 424 |  | 
 | 425 | 	pndacl->size = cpu_to_le16(size + sizeof(struct cifs_acl)); | 
| Shirish Pargaonkar | d9f382e | 2008-02-12 20:46:26 +0000 | [diff] [blame] | 426 | 	pndacl->num_aces = cpu_to_le32(3); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 427 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 428 | 	return 0; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 429 | } | 
 | 430 |  | 
 | 431 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 432 | static int parse_sid(struct cifs_sid *psid, char *end_of_acl) | 
 | 433 | { | 
 | 434 | 	/* BB need to add parm so we can store the SID BB */ | 
 | 435 |  | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 436 | 	/* validate that we do not go past end of ACL - sid must be at least 8 | 
 | 437 | 	   bytes long (assuming no sub-auths - e.g. the null SID */ | 
 | 438 | 	if (end_of_acl < (char *)psid + 8) { | 
 | 439 | 		cERROR(1, ("ACL too small to parse SID %p", psid)); | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 440 | 		return -EINVAL; | 
 | 441 | 	} | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 442 |  | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 443 | 	if (psid->num_subauth) { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 444 | #ifdef CONFIG_CIFS_DEBUG2 | 
| Steve French | 8f18c13 | 2007-10-12 18:54:12 +0000 | [diff] [blame] | 445 | 		int i; | 
| Steve French | 44093ca | 2007-10-23 21:22:55 +0000 | [diff] [blame] | 446 | 		cFYI(1, ("SID revision %d num_auth %d", | 
 | 447 | 			psid->revision, psid->num_subauth)); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 448 |  | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 449 | 		for (i = 0; i < psid->num_subauth; i++) { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 450 | 			cFYI(1, ("SID sub_auth[%d]: 0x%x ", i, | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 451 | 				le32_to_cpu(psid->sub_auth[i]))); | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 452 | 		} | 
 | 453 |  | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 454 | 		/* 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] | 455 | 			num auths and therefore go off the end */ | 
| Steve French | d12fd12 | 2007-10-03 19:43:19 +0000 | [diff] [blame] | 456 | 		cFYI(1, ("RID 0x%x", | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 457 | 			le32_to_cpu(psid->sub_auth[psid->num_subauth-1]))); | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 458 | #endif | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 459 | 	} | 
 | 460 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 461 | 	return 0; | 
 | 462 | } | 
 | 463 |  | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 464 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 465 | /* Convert CIFS ACL to POSIX form */ | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 466 | static int parse_sec_desc(struct cifs_ntsd *pntsd, int acl_len, | 
 | 467 | 			  struct inode *inode) | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 468 | { | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 469 | 	int rc; | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 470 | 	struct cifs_sid *owner_sid_ptr, *group_sid_ptr; | 
 | 471 | 	struct cifs_acl *dacl_ptr; /* no need for SACL ptr */ | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 472 | 	char *end_of_acl = ((char *)pntsd) + acl_len; | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 473 | 	__u32 dacloffset; | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 474 |  | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 475 | 	if ((inode == NULL) || (pntsd == NULL)) | 
 | 476 | 		return -EIO; | 
 | 477 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 478 | 	owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 479 | 				le32_to_cpu(pntsd->osidoffset)); | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 480 | 	group_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 481 | 				le32_to_cpu(pntsd->gsidoffset)); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 482 | 	dacloffset = le32_to_cpu(pntsd->dacloffset); | 
| Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 483 | 	dacl_ptr = (struct cifs_acl *)((char *)pntsd + dacloffset); | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 484 | 	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] | 485 | 		 "sacloffset 0x%x dacloffset 0x%x", | 
| Steve French | af6f461 | 2007-10-16 18:40:37 +0000 | [diff] [blame] | 486 | 		 pntsd->revision, pntsd->type, le32_to_cpu(pntsd->osidoffset), | 
 | 487 | 		 le32_to_cpu(pntsd->gsidoffset), | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 488 | 		 le32_to_cpu(pntsd->sacloffset), dacloffset)); | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 489 | /*	cifs_dump_mem("owner_sid: ", owner_sid_ptr, 64); */ | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 490 | 	rc = parse_sid(owner_sid_ptr, end_of_acl); | 
 | 491 | 	if (rc) | 
 | 492 | 		return rc; | 
 | 493 |  | 
 | 494 | 	rc = parse_sid(group_sid_ptr, end_of_acl); | 
 | 495 | 	if (rc) | 
 | 496 | 		return rc; | 
 | 497 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 498 | 	if (dacloffset) | 
 | 499 | 		parse_dacl(dacl_ptr, end_of_acl, owner_sid_ptr, | 
| Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 500 | 			   group_sid_ptr, inode); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 501 | 	else | 
 | 502 | 		cFYI(1, ("no ACL")); /* BB grant all or default perms? */ | 
| Shirish Pargaonkar | d0d66c4 | 2007-10-03 18:22:19 +0000 | [diff] [blame] | 503 |  | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 504 | /*	cifscred->uid = owner_sid_ptr->rid; | 
 | 505 | 	cifscred->gid = group_sid_ptr->rid; | 
 | 506 | 	memcpy((void *)(&(cifscred->osid)), (void *)owner_sid_ptr, | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 507 | 			sizeof(struct cifs_sid)); | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 508 | 	memcpy((void *)(&(cifscred->gsid)), (void *)group_sid_ptr, | 
| Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 509 | 			sizeof(struct cifs_sid)); */ | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 510 |  | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 511 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 512 | 	return 0; | 
| Steve French | bcb0203 | 2007-09-25 16:17:24 +0000 | [diff] [blame] | 513 | } | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 514 |  | 
 | 515 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 516 | /* Convert permission bits from mode to equivalent CIFS ACL */ | 
 | 517 | static int build_sec_desc(struct cifs_ntsd *pntsd, struct cifs_ntsd *pnntsd, | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 518 | 				struct inode *inode, __u64 nmode) | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 519 | { | 
 | 520 | 	int rc = 0; | 
 | 521 | 	__u32 dacloffset; | 
 | 522 | 	__u32 ndacloffset; | 
 | 523 | 	__u32 sidsoffset; | 
 | 524 | 	struct cifs_sid *owner_sid_ptr, *group_sid_ptr; | 
 | 525 | 	struct cifs_acl *dacl_ptr = NULL;  /* no need for SACL ptr */ | 
 | 526 | 	struct cifs_acl *ndacl_ptr = NULL; /* no need for SACL ptr */ | 
 | 527 |  | 
 | 528 | 	if ((inode == NULL) || (pntsd == NULL) || (pnntsd == NULL)) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 529 | 		return -EIO; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 530 |  | 
 | 531 | 	owner_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
 | 532 | 				le32_to_cpu(pntsd->osidoffset)); | 
 | 533 | 	group_sid_ptr = (struct cifs_sid *)((char *)pntsd + | 
 | 534 | 				le32_to_cpu(pntsd->gsidoffset)); | 
 | 535 |  | 
 | 536 | 	dacloffset = le32_to_cpu(pntsd->dacloffset); | 
 | 537 | 	dacl_ptr = (struct cifs_acl *)((char *)pntsd + dacloffset); | 
 | 538 |  | 
 | 539 | 	ndacloffset = sizeof(struct cifs_ntsd); | 
 | 540 | 	ndacl_ptr = (struct cifs_acl *)((char *)pnntsd + ndacloffset); | 
 | 541 | 	ndacl_ptr->revision = dacl_ptr->revision; | 
 | 542 | 	ndacl_ptr->size = 0; | 
 | 543 | 	ndacl_ptr->num_aces = 0; | 
 | 544 |  | 
 | 545 | 	rc = set_chmod_dacl(ndacl_ptr, owner_sid_ptr, group_sid_ptr, nmode); | 
 | 546 |  | 
 | 547 | 	sidsoffset = ndacloffset + le16_to_cpu(ndacl_ptr->size); | 
 | 548 |  | 
 | 549 | 	/* copy security descriptor control portion and owner and group sid */ | 
 | 550 | 	copy_sec_desc(pntsd, pnntsd, sidsoffset); | 
 | 551 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 552 | 	return rc; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 553 | } | 
 | 554 |  | 
 | 555 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 556 | /* Retrieve an ACL from the server */ | 
 | 557 | static struct cifs_ntsd *get_cifs_acl(u32 *pacllen, struct inode *inode, | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 558 | 				       const char *path, const __u16 *pfid) | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 559 | { | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 560 | 	struct cifsFileInfo *open_file = NULL; | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 561 | 	bool unlock_file = false; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 562 | 	int xid; | 
 | 563 | 	int rc = -EIO; | 
 | 564 | 	__u16 fid; | 
 | 565 | 	struct super_block *sb; | 
 | 566 | 	struct cifs_sb_info *cifs_sb; | 
 | 567 | 	struct cifs_ntsd *pntsd = NULL; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 568 |  | 
 | 569 | 	cFYI(1, ("get mode from ACL for %s", path)); | 
 | 570 |  | 
 | 571 | 	if (inode == NULL) | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 572 | 		return NULL; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 573 |  | 
 | 574 | 	xid = GetXid(); | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 575 | 	if (pfid == NULL) | 
 | 576 | 		open_file = find_readable_file(CIFS_I(inode)); | 
 | 577 | 	else | 
 | 578 | 		fid = *pfid; | 
 | 579 |  | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 580 | 	sb = inode->i_sb; | 
 | 581 | 	if (sb == NULL) { | 
 | 582 | 		FreeXid(xid); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 583 | 		return NULL; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 584 | 	} | 
 | 585 | 	cifs_sb = CIFS_SB(sb); | 
 | 586 |  | 
 | 587 | 	if (open_file) { | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 588 | 		unlock_file = true; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 589 | 		fid = open_file->netfid; | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 590 | 	} else if (pfid == NULL) { | 
| Steve French | af4b3c3 | 2008-05-09 03:48:05 +0000 | [diff] [blame] | 591 | 		int oplock = 0; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 592 | 		/* open file */ | 
 | 593 | 		rc = CIFSSMBOpen(xid, cifs_sb->tcon, path, FILE_OPEN, | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 594 | 				READ_CONTROL, 0, &fid, &oplock, NULL, | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 595 | 				cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & | 
 | 596 | 					CIFS_MOUNT_MAP_SPECIAL_CHR); | 
 | 597 | 		if (rc != 0) { | 
 | 598 | 			cERROR(1, ("Unable to open file to get ACL")); | 
 | 599 | 			FreeXid(xid); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 600 | 			return NULL; | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 601 | 		} | 
 | 602 | 	} | 
 | 603 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 604 | 	rc = CIFSSMBGetCIFSACL(xid, cifs_sb->tcon, fid, &pntsd, pacllen); | 
 | 605 | 	cFYI(1, ("GetCIFSACL rc = %d ACL len %d", rc, *pacllen)); | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 606 | 	if (unlock_file == true) /* find_readable_file increments ref count */ | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 607 | 		atomic_dec(&open_file->wrtPending); | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 608 | 	else if (pfid == NULL) /* if opened above we have to close the handle */ | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 609 | 		CIFSSMBClose(xid, cifs_sb->tcon, fid); | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 610 | 	/* else handle was passed in by caller */ | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 611 |  | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 612 | 	FreeXid(xid); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 613 | 	return pntsd; | 
 | 614 | } | 
 | 615 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 616 | /* Set an ACL on the server */ | 
 | 617 | static int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, | 
 | 618 | 				struct inode *inode, const char *path) | 
 | 619 | { | 
 | 620 | 	struct cifsFileInfo *open_file; | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 621 | 	bool unlock_file = false; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 622 | 	int xid; | 
 | 623 | 	int rc = -EIO; | 
 | 624 | 	__u16 fid; | 
 | 625 | 	struct super_block *sb; | 
 | 626 | 	struct cifs_sb_info *cifs_sb; | 
 | 627 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 628 | 	cFYI(DBG2, ("set ACL for %s from mode 0x%x", path, inode->i_mode)); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 629 |  | 
 | 630 | 	if (!inode) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 631 | 		return rc; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 632 |  | 
 | 633 | 	sb = inode->i_sb; | 
 | 634 | 	if (sb == NULL) | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 635 | 		return rc; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 636 |  | 
 | 637 | 	cifs_sb = CIFS_SB(sb); | 
 | 638 | 	xid = GetXid(); | 
 | 639 |  | 
 | 640 | 	open_file = find_readable_file(CIFS_I(inode)); | 
 | 641 | 	if (open_file) { | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 642 | 		unlock_file = true; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 643 | 		fid = open_file->netfid; | 
 | 644 | 	} else { | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 645 | 		int oplock = 0; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 646 | 		/* open file */ | 
 | 647 | 		rc = CIFSSMBOpen(xid, cifs_sb->tcon, path, FILE_OPEN, | 
 | 648 | 				WRITE_DAC, 0, &fid, &oplock, NULL, | 
 | 649 | 				cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & | 
 | 650 | 					CIFS_MOUNT_MAP_SPECIAL_CHR); | 
 | 651 | 		if (rc != 0) { | 
 | 652 | 			cERROR(1, ("Unable to open file to set ACL")); | 
 | 653 | 			FreeXid(xid); | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 654 | 			return rc; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 655 | 		} | 
 | 656 | 	} | 
 | 657 |  | 
 | 658 | 	rc = CIFSSMBSetCIFSACL(xid, cifs_sb->tcon, fid, pnntsd, acllen); | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 659 | 	cFYI(DBG2, ("SetCIFSACL rc = %d", rc)); | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 660 | 	if (unlock_file) | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 661 | 		atomic_dec(&open_file->wrtPending); | 
 | 662 | 	else | 
 | 663 | 		CIFSSMBClose(xid, cifs_sb->tcon, fid); | 
 | 664 |  | 
 | 665 | 	FreeXid(xid); | 
 | 666 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 667 | 	return rc; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 668 | } | 
 | 669 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 670 | /* Translate the CIFS ACL (simlar to NTFS ACL) for a file into mode bits */ | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 671 | void acl_to_uid_mode(struct inode *inode, const char *path, const __u16 *pfid) | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 672 | { | 
 | 673 | 	struct cifs_ntsd *pntsd = NULL; | 
 | 674 | 	u32 acllen = 0; | 
 | 675 | 	int rc = 0; | 
 | 676 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 677 | 	cFYI(DBG2, ("converting ACL to mode for %s", path)); | 
| Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 678 | 	pntsd = get_cifs_acl(&acllen, inode, path, pfid); | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 679 |  | 
 | 680 | 	/* if we can retrieve the ACL, now parse Access Control Entries, ACEs */ | 
 | 681 | 	if (pntsd) | 
 | 682 | 		rc = parse_sec_desc(pntsd, acllen, inode); | 
 | 683 | 	if (rc) | 
 | 684 | 		cFYI(1, ("parse sec desc failed rc = %d", rc)); | 
 | 685 |  | 
 | 686 | 	kfree(pntsd); | 
| Steve French | b9c7a2b | 2007-10-26 23:40:20 +0000 | [diff] [blame] | 687 | 	return; | 
 | 688 | } | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 689 |  | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 690 | /* Convert mode bits to an ACL so we can update the ACL on the server */ | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 691 | int mode_to_acl(struct inode *inode, const char *path, __u64 nmode) | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 692 | { | 
 | 693 | 	int rc = 0; | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 694 | 	__u32 secdesclen = 0; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 695 | 	struct cifs_ntsd *pntsd = NULL; /* acl obtained from server */ | 
 | 696 | 	struct cifs_ntsd *pnntsd = NULL; /* modified acl to be sent to server */ | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 697 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 698 | 	cFYI(DBG2, ("set ACL from mode for %s", path)); | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 699 |  | 
 | 700 | 	/* Get the security descriptor */ | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 701 | 	pntsd = get_cifs_acl(&secdesclen, inode, path, NULL); | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 702 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 703 | 	/* Add three ACEs for owner, group, everyone getting rid of | 
 | 704 | 	   other ACEs as chmod disables ACEs and set the security descriptor */ | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 705 |  | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 706 | 	if (pntsd) { | 
 | 707 | 		/* allocate memory for the smb header, | 
 | 708 | 		   set security descriptor request security descriptor | 
 | 709 | 		   parameters, and secuirty descriptor itself */ | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 710 |  | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 711 | 		secdesclen = secdesclen < DEFSECDESCLEN ? | 
 | 712 | 					DEFSECDESCLEN : secdesclen; | 
 | 713 | 		pnntsd = kmalloc(secdesclen, GFP_KERNEL); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 714 | 		if (!pnntsd) { | 
 | 715 | 			cERROR(1, ("Unable to allocate security descriptor")); | 
 | 716 | 			kfree(pntsd); | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 717 | 			return -ENOMEM; | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 718 | 		} | 
| Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 719 |  | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 720 | 		rc = build_sec_desc(pntsd, pnntsd, inode, nmode); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 721 |  | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 722 | 		cFYI(DBG2, ("build_sec_desc rc: %d", rc)); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 723 |  | 
 | 724 | 		if (!rc) { | 
 | 725 | 			/* Set the security descriptor */ | 
| Steve French | cce246e | 2008-04-09 20:55:31 +0000 | [diff] [blame] | 726 | 			rc = set_cifs_acl(pnntsd, secdesclen, inode, path); | 
| Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 727 | 			cFYI(DBG2, ("set_cifs_acl rc: %d", rc)); | 
| Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 728 | 		} | 
 | 729 |  | 
 | 730 | 		kfree(pnntsd); | 
 | 731 | 		kfree(pntsd); | 
 | 732 | 	} | 
 | 733 |  | 
| Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 734 | 	return rc; | 
| Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 735 | } | 
| Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 736 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |