Add tool for enabling accounts
[jelmer/samba4-debian.git] / source / winbind / wb_irpc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Main winbindd irpc handlers
4
5    Copyright (C) Stefan Metzmacher      2006
6    
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 3 of the License, or
10    (at your option) any later version.
11    
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.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "winbind/wb_server.h"
23 #include "lib/messaging/irpc.h"
24 #include "libcli/composite/composite.h"
25 #include "librpc/gen_ndr/ndr_winbind.h"
26 #include "smbd/service_task.h"
27
28 struct wb_irpc_SamLogon_state {
29         struct irpc_message *msg;
30         struct winbind_SamLogon *req;
31 };
32
33 static void wb_irpc_SamLogon_callback(struct composite_context *ctx);
34
35 static NTSTATUS wb_irpc_SamLogon(struct irpc_message *msg, 
36                                  struct winbind_SamLogon *req)
37 {
38         struct wbsrv_service *service = talloc_get_type(msg->private,
39                                         struct wbsrv_service);
40         struct wb_irpc_SamLogon_state *s;
41         struct composite_context *ctx;
42
43         DEBUG(5, ("wb_irpc_SamLogon called\n"));
44
45         s = talloc(msg, struct wb_irpc_SamLogon_state);
46         NT_STATUS_HAVE_NO_MEMORY(s);
47
48         s->msg = msg;
49         s->req = req;
50
51         ctx = wb_sam_logon_send(msg, service, req);
52         NT_STATUS_HAVE_NO_MEMORY(ctx);
53
54         ctx->async.fn = wb_irpc_SamLogon_callback;
55         ctx->async.private_data = s;
56
57         msg->defer_reply = true;
58         return NT_STATUS_OK;
59 }
60
61 static void wb_irpc_SamLogon_callback(struct composite_context *ctx)
62 {
63         struct wb_irpc_SamLogon_state *s = talloc_get_type(ctx->async.private_data,
64                                            struct wb_irpc_SamLogon_state);
65         NTSTATUS status;
66
67         DEBUG(5, ("wb_irpc_SamLogon_callback called\n"));
68
69         status = wb_sam_logon_recv(ctx, s, s->req);
70
71         irpc_send_reply(s->msg, status);
72 }
73
74 NTSTATUS wbsrv_init_irpc(struct wbsrv_service *service)
75 {
76         NTSTATUS status;
77
78         irpc_add_name(service->task->msg_ctx, "winbind_server");
79
80         status = IRPC_REGISTER(service->task->msg_ctx, winbind, WINBIND_SAMLOGON,
81                                wb_irpc_SamLogon, service);
82         NT_STATUS_NOT_OK_RETURN(status);
83
84         return NT_STATUS_OK;
85 }