6ad4c28811866dde2d8358f6a936200671be1016
[kai/samba-autobuild/.git] / source4 / 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 "libcli/dgram/libdgram.h"
25 #include "lib/socket/socket.h"
26
27 /* 
28    send a netlogon mailslot request 
29 */
30 NTSTATUS dgram_mailslot_netlogon_send(struct nbt_dgram_socket *dgmsock,
31                                       struct nbt_name *dest_name,
32                                       struct socket_address *dest,
33                                       struct nbt_name *src_name,
34                                       struct nbt_netlogon_packet *request)
35 {
36         NTSTATUS status;
37         DATA_BLOB blob;
38         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
39
40         status = ndr_push_struct_blob(&blob, tmp_ctx, request, 
41                                       (ndr_push_flags_fn_t)ndr_push_nbt_netlogon_packet);
42         if (!NT_STATUS_IS_OK(status)) {
43                 talloc_free(tmp_ctx);
44                 return status;
45         }
46
47
48         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
49                                      NBT_MAILSLOT_NETLOGON,
50                                      dest_name, dest, 
51                                      src_name, &blob);
52         talloc_free(tmp_ctx);
53         return status;
54 }
55
56
57 /* 
58    send a netlogon mailslot reply
59 */
60 NTSTATUS dgram_mailslot_netlogon_reply(struct nbt_dgram_socket *dgmsock,
61                                        struct nbt_dgram_packet *request,
62                                        const char *mailslot_name,
63                                        struct nbt_netlogon_packet *reply)
64 {
65         NTSTATUS status;
66         DATA_BLOB blob;
67         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
68         struct nbt_name myname;
69         struct socket_address *dest;
70
71         status = ndr_push_struct_blob(&blob, tmp_ctx, reply, 
72                                       (ndr_push_flags_fn_t)ndr_push_nbt_netlogon_packet);
73         if (!NT_STATUS_IS_OK(status)) {
74                 talloc_free(tmp_ctx);
75                 return status;
76         }
77
78         make_nbt_name_client(&myname, lp_netbios_name());
79
80         dest = socket_address_from_strings(tmp_ctx, dgmsock->sock->backend_name, 
81                                            request->src_addr, request->src_port);
82         if (!dest) {
83                 talloc_free(tmp_ctx);
84                 return NT_STATUS_NO_MEMORY;
85         }
86
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 netlogon response. The packet must be a valid mailslot packet
99 */
100 NTSTATUS dgram_mailslot_netlogon_parse(struct dgram_mailslot_handler *dgmslot,
101                                        TALLOC_CTX *mem_ctx,
102                                        struct nbt_dgram_packet *dgram,
103                                        struct nbt_netlogon_packet *netlogon)
104 {
105         DATA_BLOB data = dgram_mailslot_data(dgram);
106         NTSTATUS status;
107
108         status = ndr_pull_struct_blob(&data, mem_ctx, netlogon, 
109                                       (ndr_pull_flags_fn_t)ndr_pull_nbt_netlogon_packet);
110         if (!NT_STATUS_IS_OK(status)) {
111                 DEBUG(0,("Failed to parse netlogon packet of length %d\n", 
112                          (int)data.length));
113                 if (DEBUGLVL(10)) {
114                         file_save("netlogon.dat", data.data, data.length);
115                 }
116         }
117         return status;
118 }