r13571: Replace all calls to talloc_free() with thye TALLOC_FREE()
[jra/samba/.git] / source / passdb / util_unixsids.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Translate unix-defined names to SIDs and vice versa
4    Copyright (C) Volker Lendecke 2005
5       
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.
10    
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.
15    
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.
19 */
20
21 #include "includes.h"
22
23 BOOL sid_check_is_unix_users(const DOM_SID *sid)
24 {
25         return sid_equal(sid, &global_sid_Unix_Users);
26 }
27
28 BOOL sid_check_is_in_unix_users(const DOM_SID *sid)
29 {
30         DOM_SID dom_sid;
31         uint32 rid;
32
33         sid_copy(&dom_sid, sid);
34         sid_split_rid(&dom_sid, &rid);
35         
36         return sid_check_is_unix_users(&dom_sid);
37 }
38
39 const char *unix_users_domain_name(void)
40 {
41         return "Unix User";
42 }
43
44 BOOL lookup_unix_user_name(const char *name, DOM_SID *sid)
45 {
46         struct passwd *pwd;
47
48         pwd = getpwnam_alloc(NULL, name);
49         if (pwd == NULL) {
50                 return False;
51         }
52
53         sid_copy(sid, &global_sid_Unix_Users);
54         sid_append_rid(sid, pwd->pw_uid); /* For 64-bit uid's we have enough
55                                           * space ... */
56         TALLOC_FREE(pwd);
57         return True;
58 }
59
60 BOOL sid_check_is_unix_groups(const DOM_SID *sid)
61 {
62         return sid_equal(sid, &global_sid_Unix_Groups);
63 }
64
65 BOOL sid_check_is_in_unix_groups(const DOM_SID *sid)
66 {
67         DOM_SID dom_sid;
68         uint32 rid;
69
70         sid_copy(&dom_sid, sid);
71         sid_split_rid(&dom_sid, &rid);
72         
73         return sid_check_is_unix_groups(&dom_sid);
74 }
75
76 const char *unix_groups_domain_name(void)
77 {
78         return "Unix Group";
79 }
80
81 BOOL lookup_unix_group_name(const char *name, DOM_SID *sid)
82 {
83         struct group *grp;
84
85         grp = getgrnam(name);
86         if (grp == NULL) {
87                 return False;
88         }
89
90         sid_copy(sid, &global_sid_Unix_Groups);
91         sid_append_rid(sid, grp->gr_gid); /* For 64-bit uid's we have enough
92                                            * space ... */
93         return True;
94 }