2 Unix SMB/Netbios implementation.
4 NBT netbios routines and daemon - version 2
5 Copyright (C) Andrew Tridgell 1994-1995
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 14 jan 96: lkcl@pires.co.uk
24 added multiple workgroup domain master support
30 extern int ClientDGRAM
;
32 #define TEST_CODE /* want to debug unknown browse packets */
34 extern int DEBUGLEVEL
;
36 extern pstring myname
;
39 /****************************************************************************
40 process a domain logon packet
42 08aug96 lkcl@pires.co.uk
43 reply_code == 0xC courtesy of jim@oxfordcc.co.uk forwarded by
44 lewis2@server.uwindsor.ca
45 **************************************************************************/
46 void process_logon_packet(struct packet_struct
*p
,char *buf
,int len
)
48 struct dgram_packet
*dgram
= &p
->packet
.dgram
;
49 struct in_addr ip
= dgram
->header
.source_ip
;
50 struct subnet_record
*d
= find_subnet(ip
);
53 BOOL add_slashes
= False
;
56 struct work_record
*work
;
60 if (!(work
= find_workgroupstruct(d
,dgram
->dest_name
.name
, False
)))
63 if (!lp_domain_logons()) {
64 DEBUG(3,("No domain logons\n"));
72 char *machine
= buf
+2;
73 char *user
= skip_string(machine
,1);
74 logname
= skip_string(user
,1);
76 strcpy(reply_name
,myname
);
79 DEBUG(3,("Domain login request from %s(%s) user=%s\n",
80 machine
,inet_ntoa(p
->ip
),user
));
85 char *machine
= buf
+2;
86 logname
= skip_string(machine
,1);
88 strcpy(reply_name
,lp_domain_controller());
90 strcpy(reply_name
,myname
);
94 DEBUG(3,("GETDC request from %s(%s), reporting %s 0x%2x\n",
95 machine
,inet_ntoa(p
->ip
), reply_name
, reply_code
));
99 DEBUG(3,("Unknown domain request %d\n",code
));
103 bzero(outbuf
,sizeof(outbuf
));
105 SSVAL(q
,0,reply_code
);
111 StrnCpy(q
,reply_name
,16);
112 q
= skip_string(q
,1);
114 if (reply_code
== 0xC)
116 if ( PTR_DIFF (q
,outbuf
) & 1 )
121 PutUniCode(q
,reply_name
);
122 q
+= 2*(strlen(reply_name
) + 1);
124 PutUniCode(q
,lp_workgroup());
125 q
+= 2*(strlen(lp_workgroup()) + 1);
136 send_mailslot_reply(logname
,ClientDGRAM
,outbuf
,PTR_DIFF(q
,outbuf
),
137 myname
,&dgram
->source_name
.name
[0],0x20,0,p
->ip
,