r7378: Lowercase netbios name when forming the DNS name of the DC in the
[samba.git] / source4 / 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   reply to a ADS style GETDC request
70  */
71 static void nbtd_netlogon_getdc2(struct dgram_mailslot_handler *dgmslot, 
72                                  struct nbt_dgram_packet *packet, 
73                                  const char *src_address, int src_port,
74                                  struct nbt_netlogon_packet *netlogon)
75 {
76         struct nbt_name *name = &packet->data.msg.dest_name;
77         struct nbt_netlogon_packet reply;
78         struct nbt_netlogon_response_from_pdc2 *pdc;
79         struct ldb_context *samctx;
80         const char *attrs[] = {"realm", "dnsDomain", "objectGUID", NULL};
81         struct ldb_message **res;
82         int ret;
83         const char **services = lp_server_services();
84
85         /* only answer getdc requests on the PDC or LOGON names */
86         if (name->type != NBT_NAME_PDC && name->type != NBT_NAME_LOGON) {
87                 return;
88         }
89
90         samctx = samdb_connect(packet);
91         if (samctx == NULL) {
92                 DEBUG(2,("Unable to open sam in getdc reply\n"));
93                 return;
94         }
95
96         /* try and find the domain */
97         ret = gendb_search(samctx, samctx, NULL, &res, attrs, 
98                            "(&(name=%s)(objectClass=domainDNS))", name->name);
99         if (ret != 1) {
100                 DEBUG(2,("Unable to find domain '%s' in sam\n", name->name));
101                 return;
102         }
103
104         /* setup a GETDC reply */
105         ZERO_STRUCT(reply);
106         if (netlogon->req.pdc2.user_name[0]) {
107                 reply.command = NETLOGON_RESPONSE_FROM_PDC_USER;
108         } else {
109                 reply.command = NETLOGON_RESPONSE_FROM_PDC2;
110         }
111         pdc = &reply.req.response2;
112
113         /* TODO: accurately depict which services we are running */
114         pdc->server_type      = 
115                 NBT_SERVER_PDC | NBT_SERVER_GC | 
116                 NBT_SERVER_DS | NBT_SERVER_TIMESERV |
117                 NBT_SERVER_CLOSEST | NBT_SERVER_WRITABLE | 
118                 NBT_SERVER_GOOD_TIMESERV;
119
120         /* hmm, probably a better way to do this */
121         if (str_list_check(services, "ldap")) {
122                 pdc->server_type |= NBT_SERVER_LDAP;
123         }
124
125         if (str_list_check(services, "kdc")) {
126                 pdc->server_type |= NBT_SERVER_KDC;
127         }
128
129         pdc->domain_uuid      = samdb_result_guid(res[0], "objectGUID");
130         pdc->forest           = samdb_result_string(res[0], "realm", lp_realm());
131         pdc->dns_domain       = samdb_result_string(res[0], "dnsDomain", lp_realm());
132
133         /* TODO: get our full DNS name from somewhere else */
134         pdc->pdc_dns_name     = talloc_asprintf(packet, "%s.%s", 
135                                                 strlower_talloc(packet, lp_netbios_name()), 
136                                                 pdc->dns_domain);
137         pdc->domain           = name->name;
138         pdc->pdc_name         = lp_netbios_name();
139         pdc->user_name        = netlogon->req.pdc2.user_name;
140         /* TODO: we need to make sure these are in our DNS zone */
141         pdc->site_name        = "Default-First-Site-Name";
142         pdc->site_name2       = "Default-First-Site-Name";
143         pdc->unknown          = 0x10; /* what is this? */
144         pdc->unknown2         = 2; /* and this ... */
145         pdc->pdc_ip           = socket_get_my_addr(dgmslot->dgmsock->sock, packet);
146         pdc->nt_version       = 13;
147         pdc->lmnt_token       = 0xFFFF;
148         pdc->lm20_token       = 0xFFFF;
149
150         packet->data.msg.dest_name.type = 0;
151
152         dgram_mailslot_netlogon_reply(dgmslot->dgmsock, 
153                                       packet, 
154                                       netlogon->req.pdc2.mailslot_name,
155                                       &reply);
156 }
157
158
159 /*
160   handle incoming netlogon mailslot requests
161 */
162 void nbtd_mailslot_netlogon_handler(struct dgram_mailslot_handler *dgmslot, 
163                                     struct nbt_dgram_packet *packet, 
164                                     const char *src_address, int src_port)
165 {
166         NTSTATUS status = NT_STATUS_NO_MEMORY;
167         struct nbtd_interface *iface = 
168                 talloc_get_type(dgmslot->private, struct nbtd_interface);
169         struct nbt_netlogon_packet *netlogon = 
170                 talloc(dgmslot, struct nbt_netlogon_packet);
171         struct nbtd_iface_name *iname;
172         struct nbt_name *name = &packet->data.msg.dest_name;
173
174         if (netlogon == NULL) goto failed;
175
176         /*
177           see if the we are listening on the destination netbios name
178         */
179         iname = nbtd_find_iname(iface, name, 0);
180         if (iname == NULL) {
181                 status = NT_STATUS_BAD_NETWORK_NAME;
182                 goto failed;
183         }
184
185         DEBUG(2,("netlogon request to %s from %s:%d\n", 
186                  nbt_name_string(netlogon, name), src_address, src_port));
187         status = dgram_mailslot_netlogon_parse(dgmslot, netlogon, packet, netlogon);
188         if (!NT_STATUS_IS_OK(status)) goto failed;
189
190         switch (netlogon->command) {
191         case NETLOGON_QUERY_FOR_PDC:
192                 nbtd_netlogon_getdc(dgmslot, packet, src_address, src_port, netlogon);
193                 break;
194         case NETLOGON_QUERY_FOR_PDC2:
195                 nbtd_netlogon_getdc2(dgmslot, packet, src_address, src_port, netlogon);
196                 break;
197         default:
198                 DEBUG(2,("unknown netlogon op %d from %s:%d\n", 
199                          netlogon->command, src_address, src_port));
200                 NDR_PRINT_DEBUG(nbt_netlogon_packet, netlogon);
201                 break;
202         }
203
204         talloc_free(netlogon);
205         return;
206
207 failed:
208         DEBUG(2,("nbtd netlogon handler failed from %s:%d - %s\n",
209                  src_address, src_port, nt_errstr(status)));
210         talloc_free(netlogon);
211 }