Don't use crossRef records to find our own domain
[metze/samba/wip.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    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
8   
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "includes.h"
24 #include "nbt_server/nbt_server.h"
25 #include "lib/socket/socket.h"
26 #include "lib/ldb/include/ldb.h"
27 #include "dsdb/samdb/samdb.h"
28 #include "auth/auth.h"
29 #include "../lib/util/util_ldb.h"
30 #include "param/param.h"
31 #include "smbd/service_task.h"
32 #include "cldap_server/cldap_server.h"
33 #include "libcli/security/security.h"
34 #include "nbt_server/dgram/proto.h"
35
36 /*
37   reply to a GETDC request
38  */
39 static void nbtd_netlogon_getdc(struct dgram_mailslot_handler *dgmslot, 
40                                 struct nbtd_interface *iface,
41                                 struct nbt_dgram_packet *packet, 
42                                 const struct socket_address *src,
43                                 struct nbt_netlogon_packet *netlogon)
44 {
45         struct nbt_name *name = &packet->data.msg.dest_name;
46         struct nbtd_interface *reply_iface = nbtd_find_reply_iface(iface, src->addr, false);
47         struct nbt_netlogon_response_from_pdc *pdc;
48         struct ldb_context *samctx;
49         struct nbt_netlogon_response netlogon_response;
50
51         /* only answer getdc requests on the PDC or LOGON names */
52         if (name->type != NBT_NAME_PDC && name->type != NBT_NAME_LOGON) {
53                 return;
54         }
55
56         if (lp_server_role(iface->nbtsrv->task->lp_ctx) != ROLE_DOMAIN_CONTROLLER
57             || !samdb_is_pdc(samctx)) {
58                 DEBUG(2, ("Not a PDC, so not processing LOGON_PRIMARY_QUERY\n"));
59                 return;         
60         }
61
62         if (strcasecmp_m(name->name, lp_workgroup(iface->nbtsrv->task->lp_ctx)) != 0) {
63                 DEBUG(5,("GetDC requested for a domian %s that we don't host\n", name->name));
64                 return;
65         }
66
67         /* setup a GETDC reply */
68         ZERO_STRUCT(netlogon_response);
69         netlogon_response.response_type = NETLOGON_GET_PDC;
70         pdc = &netlogon_response.data.get_pdc;
71
72         pdc->command = NETLOGON_RESPONSE_FROM_PDC;
73         pdc->pdc_name         = lp_netbios_name(iface->nbtsrv->task->lp_ctx);
74         pdc->unicode_pdc_name = pdc->pdc_name;
75         pdc->domain_name      = lp_workgroup(iface->nbtsrv->task->lp_ctx);
76         pdc->nt_version       = 1;
77         pdc->lmnt_token       = 0xFFFF;
78         pdc->lm20_token       = 0xFFFF;
79
80         dgram_mailslot_netlogon_reply(reply_iface->dgmsock, 
81                                       packet, 
82                                       lp_netbios_name(iface->nbtsrv->task->lp_ctx),
83                                       netlogon->req.pdc.mailslot_name,
84                                       &netlogon_response);
85 }
86
87
88 /*
89   reply to a ADS style GETDC request
90  */
91 static void nbtd_netlogon_samlogon(struct dgram_mailslot_handler *dgmslot,
92                                    struct nbtd_interface *iface,
93                                    struct nbt_dgram_packet *packet, 
94                                    const struct socket_address *src,
95                                    struct nbt_netlogon_packet *netlogon)
96 {
97         struct nbt_name *name = &packet->data.msg.dest_name;
98         struct nbtd_interface *reply_iface = nbtd_find_reply_iface(iface, src->addr, false);
99         struct ldb_context *samctx;
100         const char *my_ip = reply_iface->ip_address; 
101         struct dom_sid *sid;
102         struct nbt_netlogon_response netlogon_response;
103         NTSTATUS status;
104
105         if (!my_ip) {
106                 DEBUG(0, ("Could not obtain own IP address for datagram socket\n"));
107                 return;
108         }
109
110         /* only answer getdc requests on the PDC or LOGON names */
111         if (name->type != NBT_NAME_PDC && name->type != NBT_NAME_LOGON) {
112                 return;
113         }
114
115         samctx = iface->nbtsrv->sam_ctx;
116
117         if (netlogon->req.logon.sid_size) {
118                 sid = &netlogon->req.logon.sid;
119         } else {
120                 sid = NULL;
121         }
122
123         status = fill_netlogon_samlogon_response(samctx, packet, NULL, name->name, sid, NULL, 
124                                                  netlogon->req.logon.user_name, netlogon->req.logon.acct_control, src->addr, 
125                                                  netlogon->req.logon.nt_version, iface->nbtsrv->task->lp_ctx, &netlogon_response.data.samlogon);
126         if (!NT_STATUS_IS_OK(status)) {
127                 DEBUG(2,("NBT netlogon query failed domain=%s sid=%s version=%d - %s\n",
128                          name->name, dom_sid_string(packet, sid), netlogon->req.logon.nt_version, nt_errstr(status)));
129                 return;
130         }
131
132         netlogon_response.response_type = NETLOGON_SAMLOGON;
133
134         packet->data.msg.dest_name.type = 0;
135
136         dgram_mailslot_netlogon_reply(reply_iface->dgmsock, 
137                                       packet, 
138                                       lp_netbios_name(iface->nbtsrv->task->lp_ctx),
139                                       netlogon->req.logon.mailslot_name,
140                                       &netlogon_response);
141 }
142
143
144 /*
145   handle incoming netlogon mailslot requests
146 */
147 void nbtd_mailslot_netlogon_handler(struct dgram_mailslot_handler *dgmslot, 
148                                     struct nbt_dgram_packet *packet, 
149                                     struct socket_address *src)
150 {
151         NTSTATUS status = NT_STATUS_NO_MEMORY;
152         struct nbtd_interface *iface = 
153                 talloc_get_type(dgmslot->private_data, struct nbtd_interface);
154         struct nbt_netlogon_packet *netlogon = 
155                 talloc(dgmslot, struct nbt_netlogon_packet);
156         struct nbtd_iface_name *iname;
157         struct nbt_name *name = &packet->data.msg.dest_name;
158
159         if (netlogon == NULL) goto failed;
160
161         /*
162           see if the we are listening on the destination netbios name
163         */
164         iname = nbtd_find_iname(iface, name, 0);
165         if (iname == NULL) {
166                 status = NT_STATUS_BAD_NETWORK_NAME;
167                 goto failed;
168         }
169
170         DEBUG(2,("netlogon request to %s from %s:%d\n", 
171                  nbt_name_string(netlogon, name), src->addr, src->port));
172         status = dgram_mailslot_netlogon_parse_request(dgmslot, netlogon, packet, netlogon);
173         if (!NT_STATUS_IS_OK(status)) goto failed;
174
175         switch (netlogon->command) {
176         case LOGON_PRIMARY_QUERY:
177                 nbtd_netlogon_getdc(dgmslot, iface, packet, 
178                                     src, netlogon);
179                 break;
180         case LOGON_SAM_LOGON_REQUEST:
181                 nbtd_netlogon_samlogon(dgmslot, iface, packet, 
182                                        src, netlogon);
183                 break;
184         default:
185                 DEBUG(2,("unknown netlogon op %d from %s:%d\n", 
186                          netlogon->command, src->addr, src->port));
187                 NDR_PRINT_DEBUG(nbt_netlogon_packet, netlogon);
188                 break;
189         }
190
191         talloc_free(netlogon);
192         return;
193
194 failed:
195         DEBUG(2,("nbtd netlogon handler failed from %s:%d to %s - %s\n",
196                  src->addr, src->port, nbt_name_string(netlogon, name),
197                  nt_errstr(status)));
198         talloc_free(netlogon);
199 }