1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/source4/winbind/wb_cmd_userdomgroups.c
Volker Lendecke 0f51ae83f0 r11181: Implement wbinfo -s and wbinfo --user-sids. The patch is so large because
--user-sids required the extension to trusted domains.

Implement "winbind sealed pipes" parameter for debugging purposes.

Volker
(This used to be commit 3821a17bdb)
2007-10-10 13:44:57 -05:00

127 lines
3.6 KiB
C

/*
Unix SMB/CIFS implementation.
Command backend for wbinfo --user-domgroups
Copyright (C) Volker Lendecke 2005
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
#include "libcli/composite/composite.h"
#include "winbind/wb_server.h"
#include "smbd/service_stream.h"
#include "lib/events/events.h"
#include "librpc/gen_ndr/ndr_security.h"
struct cmd_userdomgroups_state {
struct composite_context *ctx;
struct dom_sid *dom_sid;
uint32_t user_rid;
int num_rids;
uint32_t *rids;
};
static struct composite_context *userdomgroups_send_req(struct wbsrv_domain *domain, void *p);
static NTSTATUS userdomgroups_recv_req(struct composite_context *ctx, void *p);
struct composite_context *wb_cmd_userdomgroups_send(struct wbsrv_service *service,
const struct dom_sid *sid)
{
struct cmd_userdomgroups_state *state;
state = talloc(NULL, struct cmd_userdomgroups_state);
state->user_rid = sid->sub_auths[sid->num_auths-1];
state->ctx = wb_domain_request_send(state, service, sid,
userdomgroups_send_req,
userdomgroups_recv_req,
state);
if (state->ctx == NULL) goto failed;
state->ctx->private_data = state;
return state->ctx;
failed:
talloc_free(state);
return NULL;
}
static struct composite_context *userdomgroups_send_req(struct wbsrv_domain *domain,
void *p)
{
struct cmd_userdomgroups_state *state =
talloc_get_type(p, struct cmd_userdomgroups_state);
state->dom_sid = talloc_reference(state, domain->sid);
if (state->dom_sid == NULL) return NULL;
return wb_samr_userdomgroups_send(domain->samr_pipe,
domain->domain_handle,
state->user_rid);
}
static NTSTATUS userdomgroups_recv_req(struct composite_context *ctx, void *p)
{
struct cmd_userdomgroups_state *state =
talloc_get_type(p, struct cmd_userdomgroups_state);
return wb_samr_userdomgroups_recv(ctx, state, &state->num_rids,
&state->rids);
}
NTSTATUS wb_cmd_userdomgroups_recv(struct composite_context *c,
TALLOC_CTX *mem_ctx,
int *num_sids, struct dom_sid ***sids)
{
struct cmd_userdomgroups_state *state =
talloc_get_type(c->private_data,
struct cmd_userdomgroups_state);
int i;
NTSTATUS status;
status = composite_wait(c);
if (!NT_STATUS_IS_OK(status)) goto done;
*num_sids = state->num_rids;
*sids = talloc_array(mem_ctx, struct dom_sid *, state->num_rids);
if (*sids == NULL) {
status = NT_STATUS_NO_MEMORY;
goto done;
}
for (i=0; i<state->num_rids; i++) {
(*sids)[i] = dom_sid_add_rid((*sids), state->dom_sid,
state->rids[i]);
if ((*sids)[i] == NULL) {
status = NT_STATUS_NO_MEMORY;
goto done;
}
}
done:
talloc_free(state);
return status;
}
NTSTATUS wb_cmd_userdomgroups(struct wbsrv_service *service,
const struct dom_sid *sid,
TALLOC_CTX *mem_ctx, int *num_sids,
struct dom_sid ***sids)
{
struct composite_context *c =
wb_cmd_userdomgroups_send(service, sid);
return wb_cmd_userdomgroups_recv(c, mem_ctx, num_sids, sids);
}