b37d4a2ee6ce97eb9113e0c7ffe06099b6126ae2
[ira/wip.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 3 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, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "libcli/dgram/libdgram.h"
24 #include "lib/socket/socket.h"
25 #include "libcli/resolve/resolve.h"
26 #include "librpc/gen_ndr/ndr_nbt.h"
27 #include "param/param.h"
28
29 /* 
30    send a netlogon mailslot request 
31 */
32 NTSTATUS dgram_mailslot_netlogon_send(struct nbt_dgram_socket *dgmsock,
33                                       struct nbt_name *dest_name,
34                                       struct socket_address *dest,
35                                       const char *mailslot,
36                                       struct nbt_name *src_name,
37                                       struct nbt_netlogon_packet *request)
38 {
39         NTSTATUS status;
40         enum ndr_err_code ndr_err;
41         DATA_BLOB blob;
42         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
43
44         ndr_err = ndr_push_struct_blob(&blob, tmp_ctx, 
45                                        dgmsock->iconv_convenience,
46                                        request,
47                                       (ndr_push_flags_fn_t)ndr_push_nbt_netlogon_packet);
48         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
49                 talloc_free(tmp_ctx);
50                 return ndr_map_error2ntstatus(ndr_err);
51         }
52
53
54         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
55                                      mailslot,
56                                      dest_name, dest, 
57                                      src_name, &blob);
58         talloc_free(tmp_ctx);
59         return status;
60 }
61
62
63 /* 
64    send a netlogon mailslot reply
65 */
66 NTSTATUS dgram_mailslot_netlogon_reply(struct nbt_dgram_socket *dgmsock,
67                                        struct nbt_dgram_packet *request,
68                                        const char *my_netbios_name,
69                                        const char *mailslot_name,
70                                        struct nbt_netlogon_response *reply)
71 {
72         NTSTATUS status;
73         DATA_BLOB blob;
74         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
75         struct nbt_name myname;
76         struct socket_address *dest;
77
78         status = push_nbt_netlogon_response(&blob, tmp_ctx, dgmsock->iconv_convenience,
79                                             reply);
80         if (!NT_STATUS_IS_OK(status)) {
81                 return status;
82         }
83
84         make_nbt_name_client(&myname, my_netbios_name);
85
86         dest = socket_address_from_strings(tmp_ctx, dgmsock->sock->backend_name, 
87                                            request->src_addr, request->src_port);
88         if (!dest) {
89                 talloc_free(tmp_ctx);
90                 return NT_STATUS_NO_MEMORY;
91         }
92
93         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
94                                      mailslot_name,
95                                      &request->data.msg.source_name,
96                                      dest,
97                                      &myname, &blob);
98         talloc_free(tmp_ctx);
99         return status;
100 }
101
102
103 /*
104   parse a netlogon response. The packet must be a valid mailslot packet
105 */
106 NTSTATUS dgram_mailslot_netlogon_parse_request(struct dgram_mailslot_handler *dgmslot,
107                                                TALLOC_CTX *mem_ctx,
108                                                struct nbt_dgram_packet *dgram,
109                                                struct nbt_netlogon_packet *netlogon)
110 {
111         DATA_BLOB data = dgram_mailslot_data(dgram);
112         enum ndr_err_code ndr_err;
113
114         ndr_err = ndr_pull_struct_blob(&data, mem_ctx, dgmslot->dgmsock->iconv_convenience, netlogon,
115                                       (ndr_pull_flags_fn_t)ndr_pull_nbt_netlogon_packet);
116         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
117                 NTSTATUS status = ndr_map_error2ntstatus(ndr_err);
118                 DEBUG(0,("Failed to parse netlogon packet of length %d: %s\n",
119                          (int)data.length, nt_errstr(status)));
120                 if (DEBUGLVL(10)) {
121                         file_save("netlogon.dat", data.data, data.length);
122                 }
123                 return status;
124         }
125         return NT_STATUS_OK;
126 }
127
128 /*
129   parse a netlogon response. The packet must be a valid mailslot packet
130 */
131 NTSTATUS dgram_mailslot_netlogon_parse_response(struct dgram_mailslot_handler *dgmslot,
132                                        TALLOC_CTX *mem_ctx,
133                                        struct nbt_dgram_packet *dgram,
134                                        struct nbt_netlogon_response *netlogon)
135 {
136         NTSTATUS status;
137         DATA_BLOB data = dgram_mailslot_data(dgram);
138         
139         status = pull_nbt_netlogon_response(&data, mem_ctx, dgmslot->dgmsock->iconv_convenience, netlogon);
140         if (!NT_STATUS_IS_OK(status)) {
141                 return status;
142         }
143         
144         return NT_STATUS_OK;
145 }
146