[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / nsswitch / idmap_util.c
blob40a5fb854bef275bd95985fb818d3ad771e3b115
1 /*
2 Unix SMB/CIFS implementation.
3 ID Mapping
4 Copyright (C) Simo Sorce 2003
5 Copyright (C) Jeremy Allison 2006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/
21 #include "includes.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_IDMAP
26 /*****************************************************************
27 Returns the SID mapped to the given UID.
28 If mapping is not possible returns an error.
29 *****************************************************************/
31 NTSTATUS idmap_uid_to_sid(DOM_SID *sid, uid_t uid)
33 NTSTATUS ret;
34 struct id_map map;
35 struct id_map *maps[2];
37 DEBUG(10,("uid = [%lu]\n", (unsigned long)uid));
39 map.sid = sid;
40 map.xid.type = ID_TYPE_UID;
41 map.xid.id = uid;
43 maps[0] = ↦
44 maps[1] = NULL;
46 ret = idmap_unixids_to_sids(maps);
47 if ( ! NT_STATUS_IS_OK(ret)) {
48 DEBUG(10, ("error mapping uid [%lu]\n", (unsigned long)uid));
49 return ret;
52 if (map.status != ID_MAPPED) {
53 DEBUG(10, ("uid [%lu] not mapped\n", (unsigned long)uid));
54 return NT_STATUS_NONE_MAPPED;
57 return NT_STATUS_OK;
60 /*****************************************************************
61 Returns SID mapped to the given GID.
62 If mapping is not possible returns an error.
63 *****************************************************************/
65 NTSTATUS idmap_gid_to_sid(DOM_SID *sid, gid_t gid)
67 NTSTATUS ret;
68 struct id_map map;
69 struct id_map *maps[2];
71 DEBUG(10,("gid = [%lu]\n", (unsigned long)gid));
73 map.sid = sid;
74 map.xid.type = ID_TYPE_GID;
75 map.xid.id = gid;
77 maps[0] = ↦
78 maps[1] = NULL;
80 ret = idmap_unixids_to_sids(maps);
81 if ( ! NT_STATUS_IS_OK(ret)) {
82 DEBUG(10, ("error mapping gid [%lu]\n", (unsigned long)gid));
83 return ret;
86 if (map.status != ID_MAPPED) {
87 DEBUG(10, ("gid [%lu] not mapped\n", (unsigned long)gid));
88 return NT_STATUS_NONE_MAPPED;
91 return NT_STATUS_OK;
94 /*****************************************************************
95 Returns the UID mapped to the given SID.
96 If mapping is not possible or SID maps to a GID returns an error.
97 *****************************************************************/
99 NTSTATUS idmap_sid_to_uid(DOM_SID *sid, uid_t *uid)
101 NTSTATUS ret;
102 struct id_map map;
103 struct id_map *maps[2];
105 DEBUG(10,("idmap_sid_to_uid: sid = [%s]\n", sid_string_static(sid)));
107 map.sid = sid;
108 map.xid.type = ID_TYPE_UID;
110 maps[0] = ↦
111 maps[1] = NULL;
113 ret = idmap_sids_to_unixids(maps);
114 if ( ! NT_STATUS_IS_OK(ret)) {
115 DEBUG(10, ("error mapping sid [%s] to uid\n",
116 sid_string_static(sid)));
117 return ret;
120 if ((map.status != ID_MAPPED) || (map.xid.type != ID_TYPE_UID)) {
121 DEBUG(10, ("sid [%s] not mapped to an uid [%u,%u,%u]\n",
122 sid_string_static(sid),
123 map.status,
124 map.xid.type,
125 map.xid.id));
126 return NT_STATUS_NONE_MAPPED;
129 *uid = map.xid.id;
131 return NT_STATUS_OK;
134 /*****************************************************************
135 Returns the GID mapped to the given SID.
136 If mapping is not possible or SID maps to a UID returns an error.
137 *****************************************************************/
139 NTSTATUS idmap_sid_to_gid(DOM_SID *sid, gid_t *gid)
141 NTSTATUS ret;
142 struct id_map map;
143 struct id_map *maps[2];
145 DEBUG(10,("idmap_sid_to_gid: sid = [%s]\n", sid_string_static(sid)));
147 map.sid = sid;
148 map.xid.type = ID_TYPE_GID;
150 maps[0] = ↦
151 maps[1] = NULL;
153 ret = idmap_sids_to_unixids(maps);
154 if ( ! NT_STATUS_IS_OK(ret)) {
155 DEBUG(10, ("error mapping sid [%s] to gid\n",
156 sid_string_static(sid)));
157 return ret;
160 if ((map.status != ID_MAPPED) || (map.xid.type != ID_TYPE_GID)) {
161 DEBUG(10, ("sid [%s] not mapped to an gid [%u,%u,%u]\n",
162 sid_string_static(sid),
163 map.status,
164 map.xid.type,
165 map.xid.id));
166 return NT_STATUS_NONE_MAPPED;
169 *gid = map.xid.id;
171 return NT_STATUS_OK;