2 * Unix SMB/Netbios implementation.
4 * RPC Pipe client / server routines
5 * Copyright (C) Andrew Tridgell 1992-1998
6 * Copyright (C) Luke Kenneth Casson Leighton 1996-1998,
7 * Copyright (C) Paul Ashton 1997-1998.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program 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 the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 /* this module apparently provides an implementation of DCE/RPC over a
25 * named pipe (IPC$ connection using SMBtrans). details of DCE/RPC
26 * documentation are available (in on-line form) from the X-Open group.
28 * this module should provide a level of abstraction between SMB
29 * and DCE/RPC, while minimising the amount of mallocs, unnecessary
30 * data copies, and network traffic.
32 * in this version, which takes a "let's learn what's going on and
33 * get something running" approach, there is additional network
34 * traffic generated, but the code should be easier to understand...
36 * ... if you read the docs. or stare at packets for weeks on end.
43 * A list of the rids of well known BUILTIN and Domain users
47 rid_name builtin_alias_rids
[] =
49 { BUILTIN_ALIAS_RID_ADMINS
, "Administrators" },
50 { BUILTIN_ALIAS_RID_USERS
, "Users" },
51 { BUILTIN_ALIAS_RID_GUESTS
, "Guests" },
52 { BUILTIN_ALIAS_RID_POWER_USERS
, "Power Users" },
54 { BUILTIN_ALIAS_RID_ACCOUNT_OPS
, "Account Operators" },
55 { BUILTIN_ALIAS_RID_SYSTEM_OPS
, "System Operators" },
56 { BUILTIN_ALIAS_RID_PRINT_OPS
, "Print Operators" },
57 { BUILTIN_ALIAS_RID_BACKUP_OPS
, "Backup Operators" },
58 { BUILTIN_ALIAS_RID_REPLICATOR
, "Replicator" },
62 /* array lookup of well-known Domain RID users. */
63 rid_name domain_user_rids
[] =
65 { DOMAIN_USER_RID_ADMIN
, "Administrator" },
66 { DOMAIN_USER_RID_GUEST
, "Guest" },
70 /* array lookup of well-known Domain RID groups. */
71 rid_name domain_group_rids
[] =
73 { DOMAIN_GROUP_RID_ADMINS
, "Domain Admins" },
74 { DOMAIN_GROUP_RID_USERS
, "Domain Users" },
75 { DOMAIN_GROUP_RID_GUESTS
, "Domain Guests" },
79 int make_dom_gids(TALLOC_CTX
*ctx
, char *gids_str
, DOM_GID
**ppgids
)
88 DEBUG(4,("make_dom_gids: %s\n", gids_str
));
90 if (gids_str
== NULL
|| *gids_str
== 0)
93 for (count
= 0, ptr
= gids_str
;
94 next_token(&ptr
, s2
, NULL
, sizeof(s2
));
98 gids
= (DOM_GID
*)talloc(ctx
, sizeof(DOM_GID
) * count
);
101 DEBUG(0,("make_dom_gids: talloc fail !\n"));
105 for (count
= 0, ptr
= gids_str
;
106 next_token(&ptr
, s2
, NULL
, sizeof(s2
)) &&
107 count
< LSA_MAX_GROUPS
;
110 /* the entries are of the form GID/ATTR, ATTR being optional.*/
115 attr
= strchr_m(s2
,'/');
120 attr
= "7"; /* default value for attribute is 7 */
122 /* look up the RID string and see if we can turn it into a rid number */
123 for (i
= 0; builtin_alias_rids
[i
].name
!= NULL
; i
++)
125 if (strequal(builtin_alias_rids
[i
].name
, s2
))
127 rid
= builtin_alias_rids
[i
].rid
;
137 DEBUG(1,("make_dom_gids: unknown well-known alias RID %s/%s\n", s2
, attr
));
142 gids
[count
].g_rid
= rid
;
143 gids
[count
].attr
= atoi(attr
);
145 DEBUG(5,("group id: %d attr: %d\n", gids
[count
].g_rid
, gids
[count
].attr
));
154 /*******************************************************************
155 gets a domain user's groups
156 ********************************************************************/
157 void get_domain_user_groups(char *domain_groups
, const char *user
)
161 if (domain_groups
== NULL
|| user
== NULL
) return;
163 /* can only be a user or a guest. cannot be guest _and_ admin */
164 if (user_in_list(user
, lp_domain_guest_group()))
166 slprintf(tmp
, sizeof(tmp
) - 1, " %ld/7 ", DOMAIN_GROUP_RID_GUESTS
);
167 pstrcat(domain_groups
, tmp
);
169 DEBUG(3,("domain guest group access %s granted\n", tmp
));
173 slprintf(tmp
, sizeof(tmp
) -1, " %ld/7 ", DOMAIN_GROUP_RID_USERS
);
174 pstrcat(domain_groups
, tmp
);
176 DEBUG(3,("domain group access %s granted\n", tmp
));
178 if (user_in_list(user
, lp_domain_admin_group()))
180 slprintf(tmp
, sizeof(tmp
) - 1, " %ld/7 ", DOMAIN_GROUP_RID_ADMINS
);
181 pstrcat(domain_groups
, tmp
);
183 DEBUG(3,("domain admin group access %s granted\n", tmp
));
188 /*******************************************************************
189 Look up a local (domain) rid and return a name and type.
190 ********************************************************************/
191 NTSTATUS
local_lookup_group_name(uint32 rid
, char *group_name
, uint32
*type
)
194 (*type
) = SID_NAME_DOM_GRP
;
196 DEBUG(5,("lookup_group_name: rid: %d", rid
));
198 while (domain_group_rids
[i
].rid
!= rid
&& domain_group_rids
[i
].rid
!= 0)
203 if (domain_group_rids
[i
].rid
!= 0)
205 fstrcpy(group_name
, domain_group_rids
[i
].name
);
206 DEBUG(5,(" = %s\n", group_name
));
210 DEBUG(5,(" none mapped\n"));
211 return NT_STATUS_NONE_MAPPED
;
214 /*******************************************************************
215 Look up a local alias rid and return a name and type.
216 ********************************************************************/
217 NTSTATUS
local_lookup_alias_name(uint32 rid
, char *alias_name
, uint32
*type
)
220 (*type
) = SID_NAME_WKN_GRP
;
222 DEBUG(5,("lookup_alias_name: rid: %d", rid
));
224 while (builtin_alias_rids
[i
].rid
!= rid
&& builtin_alias_rids
[i
].rid
!= 0)
229 if (builtin_alias_rids
[i
].rid
!= 0)
231 fstrcpy(alias_name
, builtin_alias_rids
[i
].name
);
232 DEBUG(5,(" = %s\n", alias_name
));
236 DEBUG(5,(" none mapped\n"));
237 return NT_STATUS_NONE_MAPPED
;
240 /*******************************************************************
241 Look up a local user rid and return a name and type.
242 ********************************************************************/
243 NTSTATUS
local_lookup_user_name(uint32 rid
, char *user_name
, uint32
*type
)
245 SAM_ACCOUNT
*sampwd
=NULL
;
249 (*type
) = SID_NAME_USER
;
251 DEBUG(5,("lookup_user_name: rid: %d", rid
));
253 /* look up the well-known domain user rids first */
254 while (domain_user_rids
[i
].rid
!= rid
&& domain_user_rids
[i
].rid
!= 0)
259 if (domain_user_rids
[i
].rid
!= 0) {
260 fstrcpy(user_name
, domain_user_rids
[i
].name
);
261 DEBUG(5,(" = %s\n", user_name
));
265 pdb_init_sam(&sampwd
);
267 /* ok, it's a user. find the user account */
269 ret
= pdb_getsampwrid(sampwd
, rid
);
273 fstrcpy(user_name
, pdb_get_username(sampwd
) );
274 DEBUG(5,(" = %s\n", user_name
));
275 pdb_free_sam(&sampwd
);
279 DEBUG(5,(" none mapped\n"));
280 pdb_free_sam(&sampwd
);
281 return NT_STATUS_NONE_MAPPED
;
284 /*******************************************************************
285 Look up a local (domain) group name and return a rid
286 ********************************************************************/
287 NTSTATUS
local_lookup_group_rid(char *group_name
, uint32
*rid
)
290 int i
= -1; /* start do loop at -1 */
292 do /* find, if it exists, a group rid for the group name*/
295 (*rid
) = domain_group_rids
[i
].rid
;
296 grp_name
= domain_group_rids
[i
].name
;
298 } while (grp_name
!= NULL
&& !strequal(grp_name
, group_name
));
300 return (grp_name
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NONE_MAPPED
;
303 /*******************************************************************
304 Look up a local (BUILTIN) alias name and return a rid
305 ********************************************************************/
306 NTSTATUS
local_lookup_alias_rid(char *alias_name
, uint32
*rid
)
309 int i
= -1; /* start do loop at -1 */
311 do /* find, if it exists, a alias rid for the alias name*/
314 (*rid
) = builtin_alias_rids
[i
].rid
;
315 als_name
= builtin_alias_rids
[i
].name
;
317 } while (als_name
!= NULL
&& !strequal(als_name
, alias_name
));
319 return (als_name
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NONE_MAPPED
;
322 /*******************************************************************
323 Look up a local user name and return a rid
324 ********************************************************************/
325 NTSTATUS
local_lookup_user_rid(char *user_name
, uint32
*rid
)
327 SAM_ACCOUNT
*sampass
=NULL
;
332 pdb_init_sam(&sampass
);
334 /* find the user account */
336 ret
= pdb_getsampwnam(sampass
, user_name
);
340 (*rid
) = pdb_get_user_rid(sampass
);
341 pdb_free_sam(&sampass
);
345 pdb_free_sam(&sampass
);
346 return NT_STATUS_NONE_MAPPED
;