r6320: some minor netlogon datagram fixes - NT4 can now join a Samba4 domain without
[samba.git] / source / nbt_server / dgram / netlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    NBT datagram netlogon server
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 "dlinklist.h"
25 #include "nbt_server/nbt_server.h"
26 #include "smbd/service_task.h"
27 #include "lib/socket/socket.h"
28
29 /*
30   reply to a GETDC request
31  */
32 static void nbtd_netlogon_getdc(struct dgram_mailslot_handler *dgmslot, 
33                                 struct nbt_dgram_packet *packet, 
34                                 const char *src_address, int src_port,
35                                 struct nbt_netlogon_packet *netlogon)
36 {
37         struct nbt_name *name = &packet->data.msg.dest_name;
38         struct nbt_netlogon_packet reply;
39         struct nbt_netlogon_response_from_pdc *pdc;
40
41         /* only answer getdc requests on the PDC or LOGON names */
42         if (name->type != NBT_NAME_PDC && name->type != NBT_NAME_LOGON) {
43                 return;
44         }
45
46         /* setup a GETDC reply */
47         ZERO_STRUCT(reply);
48         reply.command = NETLOGON_RESPONSE_FROM_PDC;
49         pdc = &reply.req.response;
50
51         pdc->pdc_name         = lp_netbios_name();
52         pdc->unicode_pdc_name = pdc->pdc_name;
53         pdc->domain_name      = lp_workgroup();
54         pdc->nt_version       = 1;
55         pdc->lmnt_token       = 0xFFFF;
56         pdc->lm20_token       = 0xFFFF;
57
58
59         packet->data.msg.dest_name.type = 0;
60
61         dgram_mailslot_netlogon_reply(dgmslot->dgmsock, 
62                                       packet, 
63                                       netlogon->req.pdc.mailslot_name,
64                                       &reply);
65 }
66
67
68 /*
69   handle incoming netlogon mailslot requests
70 */
71 void nbtd_mailslot_netlogon_handler(struct dgram_mailslot_handler *dgmslot, 
72                                     struct nbt_dgram_packet *packet, 
73                                     const char *src_address, int src_port)
74 {
75         NTSTATUS status = NT_STATUS_NO_MEMORY;
76         struct nbtd_interface *iface = 
77                 talloc_get_type(dgmslot->private, struct nbtd_interface);
78         struct nbt_netlogon_packet *netlogon = 
79                 talloc(dgmslot, struct nbt_netlogon_packet);
80         struct nbtd_iface_name *iname;
81         struct nbt_name *name = &packet->data.msg.dest_name;
82
83         if (netlogon == NULL) goto failed;
84
85         /*
86           see if the we are listening on the destination netbios name
87         */
88         iname = nbtd_find_iname(iface, name, 0);
89         if (iname == NULL) {
90                 status = NT_STATUS_BAD_NETWORK_NAME;
91                 goto failed;
92         }
93
94         DEBUG(2,("netlogon request to %s from %s:%d\n", 
95                  nbt_name_string(netlogon, name), src_address, src_port));
96         status = dgram_mailslot_netlogon_parse(dgmslot, netlogon, packet, netlogon);
97         if (!NT_STATUS_IS_OK(status)) goto failed;
98
99         NDR_PRINT_DEBUG(nbt_netlogon_packet, netlogon);
100
101         switch (netlogon->command) {
102         case NETLOGON_QUERY_FOR_PDC:
103                 nbtd_netlogon_getdc(dgmslot, packet, src_address, src_port, netlogon);
104                 break;
105         default:
106                 DEBUG(2,("unknown netlogon op %d from %s:%d\n", 
107                          netlogon->command, src_address, src_port));
108                 break;
109         }
110
111         talloc_free(netlogon);
112         return;
113
114 failed:
115         DEBUG(2,("nbtd netlogon handler failed from %s:%d - %s\n",
116                  src_address, src_port, nt_errstr(status)));
117         talloc_free(netlogon);
118 }