1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
Unix SMB/CIFS implementation.
Find and init a domain struct for a name
Copyright (C) Kai Blin 2007
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "libcli/composite/composite.h"
#include "winbind/wb_server.h"
#include "smbd/service_task.h"
#include "winbind/wb_helper.h"
struct name2domain_state {
struct composite_context *ctx;
struct wbsrv_service *service;
struct wbsrv_domain *domain;
};
static void name2domain_recv_sid(struct composite_context *ctx);
static void name2domain_recv_domain(struct composite_context *ctx);
struct composite_context *wb_name2domain_send(TALLOC_CTX *mem_ctx,
struct wbsrv_service *service, const char* name)
{
struct composite_context *result, *ctx;
struct name2domain_state *state;
char *user_dom, *user_name;
bool ok;
DEBUG(5, ("wb_name2domain_send called\n"));
result = composite_create(mem_ctx, service->task->event_ctx);
if (!result) return NULL;
state = talloc(result, struct name2domain_state);
if (composite_nomem(state, result)) return result;
state->ctx = result;
result->private_data = state;
state->service = service;
ok = wb_samba3_split_username(state, service->task->lp_ctx, name, &user_dom, &user_name);
if(!ok) {
composite_error(state->ctx, NT_STATUS_OBJECT_NAME_INVALID);
return result;
}
ctx = wb_cmd_lookupname_send(state, service, user_dom, user_name);
if (composite_nomem(ctx, state->ctx)) return result;
composite_continue(result, ctx, name2domain_recv_sid, state);
return result;
}
static void name2domain_recv_sid(struct composite_context *ctx)
{
struct name2domain_state *state =
talloc_get_type(ctx->async.private_data,
struct name2domain_state);
struct wb_sid_object *sid;
DEBUG(5, ("name2domain_recv_sid called\n"));
state->ctx->status = wb_cmd_lookupname_recv(ctx, state, &sid);
if(!composite_is_ok(state->ctx)) return;
ctx = wb_sid2domain_send(state, state->service, sid->sid);
composite_continue(state->ctx, ctx, name2domain_recv_domain, state);
}
static void name2domain_recv_domain(struct composite_context *ctx)
{
struct name2domain_state *state =
talloc_get_type(ctx->async.private_data,
struct name2domain_state);
struct wbsrv_domain *domain;
DEBUG(5, ("name2domain_recv_domain called\n"));
state->ctx->status = wb_sid2domain_recv(ctx, &domain);
if(!composite_is_ok(state->ctx)) return;
state->domain = domain;
composite_done(state->ctx);
}
NTSTATUS wb_name2domain_recv(struct composite_context *ctx,
struct wbsrv_domain **result)
{
NTSTATUS status = composite_wait(ctx);
DEBUG(5, ("wb_name2domain_recv called\n"));
if (NT_STATUS_IS_OK(status)) {
struct name2domain_state *state =
talloc_get_type(ctx->private_data,
struct name2domain_state);
*result = state->domain;
}
talloc_free(ctx);
return status;
}
|