r17163: correct version and save draf of release notes
[Samba.git] / source / passdb / util_unixsids.c
blobd3f0999d6ac09496b65f7b5cb17ce351b0b7ec7f
1 /*
2 Unix SMB/CIFS implementation.
3 Translate unix-defined names to SIDs and vice versa
4 Copyright (C) Volker Lendecke 2005
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 BOOL sid_check_is_unix_users(const DOM_SID *sid)
25 return sid_equal(sid, &global_sid_Unix_Users);
28 BOOL sid_check_is_in_unix_users(const DOM_SID *sid)
30 DOM_SID dom_sid;
31 uint32 rid;
33 sid_copy(&dom_sid, sid);
34 sid_split_rid(&dom_sid, &rid);
36 return sid_check_is_unix_users(&dom_sid);
39 BOOL uid_to_unix_users_sid(uid_t uid, DOM_SID *sid)
41 sid_copy(sid, &global_sid_Unix_Users);
42 return sid_append_rid(sid, uid);
45 const char *unix_users_domain_name(void)
47 return "Unix User";
50 BOOL lookup_unix_user_name(const char *name, DOM_SID *sid)
52 struct passwd *pwd;
54 pwd = getpwnam_alloc(NULL, name);
55 if (pwd == NULL) {
56 return False;
59 sid_copy(sid, &global_sid_Unix_Users);
60 sid_append_rid(sid, pwd->pw_uid); /* For 64-bit uid's we have enough
61 * space ... */
62 TALLOC_FREE(pwd);
63 return True;
66 BOOL sid_check_is_unix_groups(const DOM_SID *sid)
68 return sid_equal(sid, &global_sid_Unix_Groups);
71 BOOL sid_check_is_in_unix_groups(const DOM_SID *sid)
73 DOM_SID dom_sid;
74 uint32 rid;
76 sid_copy(&dom_sid, sid);
77 sid_split_rid(&dom_sid, &rid);
79 return sid_check_is_unix_groups(&dom_sid);
82 const char *unix_groups_domain_name(void)
84 return "Unix Group";
87 BOOL lookup_unix_group_name(const char *name, DOM_SID *sid)
89 struct group *grp;
91 grp = getgrnam(name);
92 if (grp == NULL) {
93 return False;
96 sid_copy(sid, &global_sid_Unix_Groups);
97 sid_append_rid(sid, grp->gr_gid); /* For 64-bit uid's we have enough
98 * space ... */
99 return True;