1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s3: Remove some unused dual functions

This commit is contained in:
Volker Lendecke 2009-12-21 14:47:57 +01:00
parent 4b84d75399
commit a8875c5724
2 changed files with 0 additions and 125 deletions

View File

@ -34,128 +34,11 @@ struct winbindd_child *idmap_child(void)
return &static_idmap_child;
}
enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
struct winbindd_cli_state *state)
{
DOM_SID sid;
NTSTATUS result;
DEBUG(3, ("[%5lu]: sid to uid %s\n", (unsigned long)state->pid,
state->request->data.dual_sid2id.sid));
if (!string_to_sid(&sid, state->request->data.dual_sid2id.sid)) {
DEBUG(1, ("Could not get convert sid %s from string\n",
state->request->data.dual_sid2id.sid));
return WINBINDD_ERROR;
}
result = idmap_sid_to_uid(state->request->domain_name, &sid,
&state->response->data.uid);
DEBUG(10, ("winbindd_dual_sid2uid: 0x%08x - %s - %u\n",
NT_STATUS_V(result), sid_string_dbg(&sid),
(unsigned int)state->response->data.uid));
return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
}
enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
struct winbindd_cli_state *state)
{
DOM_SID sid;
NTSTATUS result;
DEBUG(3, ("[%5lu]: sid to gid %s\n", (unsigned long)state->pid,
state->request->data.dual_sid2id.sid));
if (!string_to_sid(&sid, state->request->data.dual_sid2id.sid)) {
DEBUG(1, ("Could not get convert sid %s from string\n",
state->request->data.dual_sid2id.sid));
return WINBINDD_ERROR;
}
/* Find gid for this sid and return it, possibly ask the slow remote idmap */
result = idmap_sid_to_gid(state->request->domain_name, &sid,
&state->response->data.gid);
DEBUG(10, ("winbindd_dual_sid2gid: 0x%08x - %s - %u\n",
NT_STATUS_V(result), sid_string_dbg(&sid),
(unsigned int)state->response->data.gid));
return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
}
enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
struct winbindd_cli_state *state)
{
DOM_SID sid;
NTSTATUS result;
DEBUG(3,("[%5lu]: uid to sid %lu\n",
(unsigned long)state->pid,
(unsigned long) state->request->data.uid));
/* Find sid for this uid and return it, possibly ask the slow remote idmap */
result = idmap_uid_to_sid(state->request->domain_name, &sid,
state->request->data.uid);
if (NT_STATUS_IS_OK(result)) {
sid_to_fstring(state->response->data.sid.sid, &sid);
state->response->data.sid.type = SID_NAME_USER;
return WINBINDD_OK;
}
return WINBINDD_ERROR;
}
enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
struct winbindd_cli_state *state)
{
DOM_SID sid;
NTSTATUS result;
DEBUG(3,("[%5lu]: gid %lu to sid\n",
(unsigned long)state->pid,
(unsigned long) state->request->data.gid));
/* Find sid for this gid and return it, possibly ask the slow remote idmap */
result = idmap_gid_to_sid(state->request->domain_name, &sid,
state->request->data.gid);
if (NT_STATUS_IS_OK(result)) {
sid_to_fstring(state->response->data.sid.sid, &sid);
DEBUG(10, ("[%5lu]: retrieved sid: %s\n",
(unsigned long)state->pid,
state->response->data.sid.sid));
state->response->data.sid.type = SID_NAME_DOM_GRP;
return WINBINDD_OK;
}
return WINBINDD_ERROR;
}
static const struct winbindd_child_dispatch_table idmap_dispatch_table[] = {
{
.name = "PING",
.struct_cmd = WINBINDD_PING,
.struct_fn = winbindd_dual_ping,
},{
.name = "DUAL_SID2UID",
.struct_cmd = WINBINDD_DUAL_SID2UID,
.struct_fn = winbindd_dual_sid2uid,
},{
.name = "DUAL_SID2GID",
.struct_cmd = WINBINDD_DUAL_SID2GID,
.struct_fn = winbindd_dual_sid2gid,
},{
.name = "DUAL_UID2SID",
.struct_cmd = WINBINDD_DUAL_UID2SID,
.struct_fn = winbindd_dual_uid2sid,
},{
.name = "DUAL_GID2SID",
.struct_cmd = WINBINDD_DUAL_GID2SID,
.struct_fn = winbindd_dual_gid2sid,
},{
.name = "NDRCMD",
.struct_cmd = WINBINDD_DUAL_NDRCMD,

View File

@ -391,14 +391,6 @@ void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
void *private_data);
enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
struct winbindd_cli_state *state);
enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
struct winbindd_cli_state *state);
enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
struct winbindd_cli_state *state);
enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
struct winbindd_cli_state *state);
enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
struct winbindd_cli_state *state);
/* The following definitions come from winbindd/winbindd_locator.c */