2bdce6f853763981436ecf30f6df9eade93c3b7c
[kamenim/samba.git] / source4 / libcli / dgram / ntlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    handling for ntlogon dgram requests
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "lib/events/events.h"
25 #include "dlinklist.h"
26 #include "libcli/nbt/libnbt.h"
27 #include "libcli/dgram/libdgram.h"
28 #include "lib/socket/socket.h"
29 #include "librpc/gen_ndr/ndr_nbt.h"
30
31 /* 
32    send a ntlogon mailslot request 
33 */
34 NTSTATUS dgram_mailslot_ntlogon_send(struct nbt_dgram_socket *dgmsock,
35                                      enum dgram_msg_type msg_type,
36                                      struct nbt_name *dest_name,
37                                      const struct nbt_peer_socket *dest,
38                                      struct nbt_name *src_name,
39                                      struct nbt_ntlogon_packet *request)
40 {
41         NTSTATUS status;
42         DATA_BLOB blob;
43         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
44
45         status = ndr_push_struct_blob(&blob, tmp_ctx, request, 
46                                       (ndr_push_flags_fn_t)ndr_push_nbt_ntlogon_packet);
47         if (!NT_STATUS_IS_OK(status)) {
48                 talloc_free(tmp_ctx);
49                 return status;
50         }
51
52
53         status = dgram_mailslot_send(dgmsock, msg_type,
54                                      NBT_MAILSLOT_NTLOGON,
55                                      dest_name, dest, 
56                                      src_name, &blob);
57         talloc_free(tmp_ctx);
58         return status;
59 }
60
61
62 /* 
63    send a ntlogon mailslot reply
64 */
65 NTSTATUS dgram_mailslot_ntlogon_reply(struct nbt_dgram_socket *dgmsock,
66                                       struct nbt_dgram_packet *request,
67                                       const char *mailslot_name,
68                                       struct nbt_ntlogon_packet *reply)
69 {
70         NTSTATUS status;
71         DATA_BLOB blob;
72         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
73         struct nbt_name myname;
74         struct nbt_peer_socket dest;
75
76         status = ndr_push_struct_blob(&blob, tmp_ctx, reply, 
77                                       (ndr_push_flags_fn_t)ndr_push_nbt_ntlogon_packet);
78         if (!NT_STATUS_IS_OK(status)) {
79                 talloc_free(tmp_ctx);
80                 return status;
81         }
82
83         make_nbt_name_client(&myname, lp_netbios_name());
84
85         dest.port = request->src_port;
86         dest.addr = request->src_addr;
87         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
88                                      mailslot_name,
89                                      &request->data.msg.source_name,
90                                      &dest,
91                                      &myname, &blob);
92         talloc_free(tmp_ctx);
93         return status;
94 }
95
96
97 /*
98   parse a ntlogon response. The packet must be a valid mailslot packet
99 */
100 NTSTATUS dgram_mailslot_ntlogon_parse(struct dgram_mailslot_handler *dgmslot,
101                                       TALLOC_CTX *mem_ctx,
102                                       struct nbt_dgram_packet *dgram,
103                                       struct nbt_ntlogon_packet *ntlogon)
104 {
105         DATA_BLOB data = dgram_mailslot_data(dgram);
106         NTSTATUS status;
107
108         status = ndr_pull_struct_blob(&data, mem_ctx, ntlogon, 
109                                       (ndr_pull_flags_fn_t)ndr_pull_nbt_ntlogon_packet);
110         if (!NT_STATUS_IS_OK(status)) {
111                 DEBUG(0,("Failed to parse ntlogon packet of length %d\n", 
112                          (int)data.length));
113                 if (DEBUGLVL(10)) {
114                         file_save("ntlogon.dat", data.data, data.length);
115                 }
116         }
117         return status;
118 }