a030ca73c28f20e0250f0792c9d5076c38c1fd0c
[samba.git] / source / libcli / dgram / netlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    handling for netlogon 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 netlogon mailslot request 
33 */
34 NTSTATUS dgram_mailslot_netlogon_send(struct nbt_dgram_socket *dgmsock,
35                                       struct nbt_name *dest_name,
36                                       const char *dest_address,
37                                       int dest_port,
38                                       struct nbt_name *src_name,
39                                       struct nbt_netlogon_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_netlogon_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, DGRAM_DIRECT_UNIQUE, 
54                                      NBT_MAILSLOT_NETLOGON,
55                                      dest_name, dest_address, dest_port, 
56                                      src_name, &blob);
57         talloc_free(tmp_ctx);
58         return status;
59 }
60
61
62 /* 
63    send a netlogon mailslot reply
64 */
65 NTSTATUS dgram_mailslot_netlogon_reply(struct nbt_dgram_socket *dgmsock,
66                                        struct nbt_dgram_packet *request,
67                                        const char *mailslot_name,
68                                        struct nbt_netlogon_packet *reply)
69 {
70         NTSTATUS status;
71         DATA_BLOB blob;
72         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
73         struct nbt_name myname;
74
75         status = ndr_push_struct_blob(&blob, tmp_ctx, reply, 
76                                       (ndr_push_flags_fn_t)ndr_push_nbt_netlogon_packet);
77         if (!NT_STATUS_IS_OK(status)) {
78                 talloc_free(tmp_ctx);
79                 return status;
80         }
81
82         myname.name = lp_netbios_name();
83         myname.type = NBT_NAME_CLIENT;
84         myname.scope = NULL;
85
86         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
87                                      mailslot_name,
88                                      &request->data.msg.source_name,
89                                      request->source, request->src_port,
90                                      &myname, &blob);
91         talloc_free(tmp_ctx);
92         return status;
93 }
94
95
96 /*
97   parse a netlogon response. The packet must be a valid mailslot packet
98 */
99 NTSTATUS dgram_mailslot_netlogon_parse(struct dgram_mailslot_handler *dgmslot,
100                                        TALLOC_CTX *mem_ctx,
101                                        struct nbt_dgram_packet *dgram,
102                                        struct nbt_netlogon_packet *netlogon)
103 {
104         DATA_BLOB *data = &dgram->data.msg.body.smb.body.trans.data;
105         NTSTATUS status;
106
107         status = ndr_pull_struct_blob(data, mem_ctx, netlogon, 
108                                       (ndr_pull_flags_fn_t)ndr_pull_nbt_netlogon_packet);
109         if (!NT_STATUS_IS_OK(status)) {
110                 DEBUG(0,("Failed to parse netlogon packet of length %d\n", 
111                          data->length));
112 #if 0
113                 file_save("netlogon.dat", data->data, data->length);
114 #endif
115         }
116         return status;
117 }