summaryrefslogtreecommitdiff
path: root/source3/sam
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2003-04-05 08:53:23 +0000
committerSimo Sorce <idra@samba.org>2003-04-05 08:53:23 +0000
commit2c1f725820584f279607db48e0003d6e7f67321e (patch)
tree9fbab724f2afabdeff1448cc9d8bfc63141d45e4 /source3/sam
parent2a9e71aa9bd171af47e4ed73c932e75160b32d88 (diff)
downloadsamba-2c1f725820584f279607db48e0003d6e7f67321e.tar.gz
samba-2c1f725820584f279607db48e0003d6e7f67321e.tar.bz2
samba-2c1f725820584f279607db48e0003d6e7f67321e.zip
some more idmapping :)
(This used to be commit 5ac94535d7b7ce0cc0d44b9a77d6e42ddfd0cd26)
Diffstat (limited to 'source3/sam')
-rw-r--r--source3/sam/idmap_winbind.c79
1 files changed, 61 insertions, 18 deletions
diff --git a/source3/sam/idmap_winbind.c b/source3/sam/idmap_winbind.c
index a5ba658674..c2c46cfb57 100644
--- a/source3/sam/idmap_winbind.c
+++ b/source3/sam/idmap_winbind.c
@@ -21,48 +21,91 @@
*/
#include "includes.h"
+#include "nsswitch/winbind_nss.h"
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_IDMAP
+extern DOM_SID global_sid_NULL; /* NULL sid */
+
+NSS_STATUS winbindd_request(int req_type,
+ struct winbindd_request *request,
+ struct winbindd_response *response);
+
/* Get a sid from an id */
-static NTSTATUS db_get_sid_from_id(DOM_SID *sid, unid_t id, int id_type) {
+static NTSTATUS db_get_sid_from_id(DOM_SID *sid, unid_t id, int id_type)
+{
+ struct winbindd_request request;
+ struct winbindd_response response;
+ int result, operation;
+ fstring sid_str;
+
+ ZERO_STRUCT(request);
+ ZERO_STRUCT(response);
+
switch (id_type & ID_TYPEMASK) {
case ID_USERID:
- if (winbind_uid_to_sid(sid, id.uid)) {
- return NT_STATUS_OK;
- }
+ request.data.uid = id.uid;
+ operation = WINBINDD_UID_TO_SID;
break;
case ID_GROUPID:
- if (winbind_gid_to_sid(sid, id.gid)) {
- return NT_STATUS_OK;
- }
+ request.data.gid = id.gid;
+ operation = WINBINDD_GID_TO_SID;
break;
default:
return NT_STATUS_INVALID_PARAMETER;
}
+ /* Make The Request */
+ result = winbindd_request(operation, &request, &response);
+ if (result == NSS_STATUS_SUCCESS) {
+ if (!string_to_sid(sid, response.data.sid.sid)) {
+ return NT_STATUS_INVALID_SID;
+ }
+ return NT_STATUS_OK;
+ } else {
+ sid_copy(sid, &global_sid_NULL);
+ }
+
return NT_STATUS_UNSUCCESSFUL;
}
/* Get an id from a sid */
-static NTSTATUS db_get_id_from_sid(unid_t *id, int *id_type, const DOM_SID *sid) {
+static NTSTATUS db_get_id_from_sid(unid_t *id, int *id_type, const DOM_SID *sid)
+{
+ struct winbindd_request request;
+ struct winbindd_response response;
+ int result, operation;
+ fstring sid_str;
+
+ if (!id || !id_type) {
+ return NT_STATUS_INVALID_PARAMETER;
+ }
+
+ ZERO_STRUCT(request);
+ ZERO_STRUCT(response);
+
switch (*id_type & ID_TYPEMASK) {
case ID_USERID:
- if (winbind_sid_to_uid(&((*id).uid), sid)) {
- return NT_STATUS_OK;
- }
+ operation = WINBINDD_SID_TO_UID;
break;
case ID_GROUPID:
- if (winbind_sid_to_gid(&((*id).gid), sid)) {
- return NT_STATUS_OK;
- }
+ operation = WINBINDD_SID_TO_GID;
break;
default:
- if (winbind_sid_to_uid(&((*id).uid), sid) ||
- winbind_sid_to_gid(&((*id).gid), sid)) {
- return NT_STATUS_OK;
- }
+ return NT_STATUS_INVALID_PARAMETER;
+ }
+
+ /* Make The Request */
+ result = winbindd_request(operation, &request, &response);
+
+ if (result == NSS_STATUS_SUCCESS) {
+ if (operation == WINBINDD_SID_TO_UID) {
+ (*id).uid = response.data.uid;
+ } else {
+ (*id).gid = response.data.gid;
+ }
+ return NT_STATUS_OK;
}
return NT_STATUS_UNSUCCESSFUL;