2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 BOOL global_encrypted_passwords_negotiated
= False
;
26 BOOL global_spnego_negotiated
= False
;
27 struct auth_context
*negprot_global_auth_context
= NULL
;
29 static void get_challenge(char buff
[8])
32 const uint8
*cryptkey
;
34 /* We might be called more than once, muliple negprots are premitted */
35 if (negprot_global_auth_context
) {
36 DEBUG(3, ("get challenge: is this a secondary negprot? negprot_global_auth_context is non-NULL!\n"));
37 (negprot_global_auth_context
->free
)(&negprot_global_auth_context
);
40 DEBUG(10, ("get challenge: creating negprot_global_auth_context\n"));
41 if (!NT_STATUS_IS_OK(nt_status
= make_auth_context_subsystem(&negprot_global_auth_context
))) {
42 DEBUG(0, ("make_auth_context_subsystem returned %s", nt_errstr(nt_status
)));
43 smb_panic("cannot make_negprot_global_auth_context!\n");
45 DEBUG(10, ("get challenge: getting challenge\n"));
46 cryptkey
= negprot_global_auth_context
->get_ntlm_challenge(negprot_global_auth_context
);
47 memcpy(buff
, cryptkey
, 8);
50 /****************************************************************************
51 Reply for the core protocol.
52 ****************************************************************************/
54 static int reply_corep(char *inbuf
, char *outbuf
)
56 int outsize
= set_message(outbuf
,1,0,True
);
58 Protocol
= PROTOCOL_CORE
;
63 /****************************************************************************
64 Reply for the coreplus protocol.
65 ****************************************************************************/
67 static int reply_coreplus(char *inbuf
, char *outbuf
)
69 int raw
= (lp_readraw()?1:0) | (lp_writeraw()?2:0);
70 int outsize
= set_message(outbuf
,13,0,True
);
71 SSVAL(outbuf
,smb_vwv5
,raw
); /* tell redirector we support
72 readbraw and writebraw (possibly) */
73 /* Reply, SMBlockread, SMBwritelock supported. */
74 SCVAL(outbuf
,smb_flg
,FLAG_REPLY
|FLAG_SUPPORT_LOCKREAD
);
75 SSVAL(outbuf
,smb_vwv1
,0x1); /* user level security, don't encrypt */
77 Protocol
= PROTOCOL_COREPLUS
;
82 /****************************************************************************
83 Reply for the lanman 1.0 protocol.
84 ****************************************************************************/
86 static int reply_lanman1(char *inbuf
, char *outbuf
)
88 int raw
= (lp_readraw()?1:0) | (lp_writeraw()?2:0);
90 time_t t
= time(NULL
);
92 global_encrypted_passwords_negotiated
= lp_encrypted_passwords();
94 if (lp_security()>=SEC_USER
)
95 secword
|= NEGOTIATE_SECURITY_USER_LEVEL
;
96 if (global_encrypted_passwords_negotiated
)
97 secword
|= NEGOTIATE_SECURITY_CHALLENGE_RESPONSE
;
99 set_message(outbuf
,13,global_encrypted_passwords_negotiated
?8:0,True
);
100 SSVAL(outbuf
,smb_vwv1
,secword
);
101 /* Create a token value and add it to the outgoing packet. */
102 if (global_encrypted_passwords_negotiated
) {
103 get_challenge(smb_buf(outbuf
));
106 Protocol
= PROTOCOL_LANMAN1
;
108 /* Reply, SMBlockread, SMBwritelock supported. */
109 SCVAL(outbuf
,smb_flg
,FLAG_REPLY
|FLAG_SUPPORT_LOCKREAD
);
110 SSVAL(outbuf
,smb_vwv2
,max_recv
);
111 SSVAL(outbuf
,smb_vwv3
,lp_maxmux()); /* maxmux */
112 SSVAL(outbuf
,smb_vwv4
,1);
113 SSVAL(outbuf
,smb_vwv5
,raw
); /* tell redirector we support
114 readbraw writebraw (possibly) */
115 SIVAL(outbuf
,smb_vwv6
,sys_getpid());
116 SSVAL(outbuf
,smb_vwv10
, TimeDiff(t
)/60);
118 put_dos_date(outbuf
,smb_vwv8
,t
);
120 return (smb_len(outbuf
)+4);
123 /****************************************************************************
124 Reply for the lanman 2.0 protocol.
125 ****************************************************************************/
127 static int reply_lanman2(char *inbuf
, char *outbuf
)
129 int raw
= (lp_readraw()?1:0) | (lp_writeraw()?2:0);
131 time_t t
= time(NULL
);
133 global_encrypted_passwords_negotiated
= lp_encrypted_passwords();
135 if (lp_security()>=SEC_USER
)
136 secword
|= NEGOTIATE_SECURITY_USER_LEVEL
;
137 if (global_encrypted_passwords_negotiated
)
138 secword
|= NEGOTIATE_SECURITY_CHALLENGE_RESPONSE
;
140 set_message(outbuf
,13,global_encrypted_passwords_negotiated
?8:0,True
);
141 SSVAL(outbuf
,smb_vwv1
,secword
);
142 SIVAL(outbuf
,smb_vwv6
,sys_getpid());
144 /* Create a token value and add it to the outgoing packet. */
145 if (global_encrypted_passwords_negotiated
) {
146 get_challenge(smb_buf(outbuf
));
149 Protocol
= PROTOCOL_LANMAN2
;
151 /* Reply, SMBlockread, SMBwritelock supported. */
152 SCVAL(outbuf
,smb_flg
,FLAG_REPLY
|FLAG_SUPPORT_LOCKREAD
);
153 SSVAL(outbuf
,smb_vwv2
,max_recv
);
154 SSVAL(outbuf
,smb_vwv3
,lp_maxmux());
155 SSVAL(outbuf
,smb_vwv4
,1);
156 SSVAL(outbuf
,smb_vwv5
,raw
); /* readbraw and/or writebraw */
157 SSVAL(outbuf
,smb_vwv10
, TimeDiff(t
)/60);
158 put_dos_date(outbuf
,smb_vwv8
,t
);
160 return (smb_len(outbuf
)+4);
163 /****************************************************************************
164 Generate the spnego negprot reply blob. Return the number of bytes used.
165 ****************************************************************************/
167 static int negprot_spnego(char *p
)
171 const char *OIDs_krb5
[] = {OID_KERBEROS5
,
175 const char *OIDs_plain
[] = {OID_NTLMSSP
, NULL
};
179 global_spnego_negotiated
= True
;
182 safe_strcpy((char *)guid
, global_myname(), 16);
183 strlower((char *)guid
);
186 /* strangely enough, NT does not sent the single OID NTLMSSP when
187 not a ADS member, it sends no OIDs at all
189 we can't do this until we teach our sesssion setup parser to know
190 about raw NTLMSSP (clients send no ASN.1 wrapping if we do this)
192 if (lp_security() != SEC_ADS
) {
197 if (lp_security() != SEC_ADS
) {
198 blob
= spnego_gen_negTokenInit(guid
, OIDs_plain
, "NONE");
200 asprintf(&principal
, "%s$@%s", guid
, lp_realm());
201 blob
= spnego_gen_negTokenInit(guid
, OIDs_krb5
, principal
);
204 memcpy(p
, blob
.data
, blob
.length
);
206 data_blob_free(&blob
);
210 /****************************************************************************
211 Reply for the nt protocol.
212 ****************************************************************************/
214 static int reply_nt1(char *inbuf
, char *outbuf
)
216 /* dual names + lock_and_read + nt SMBs + remote API calls */
217 int capabilities
= CAP_NT_FIND
|CAP_LOCK_AND_READ
|
218 CAP_LEVEL_II_OPLOCKS
;
221 time_t t
= time(NULL
);
223 BOOL negotiate_spnego
= False
;
225 global_encrypted_passwords_negotiated
= lp_encrypted_passwords();
227 /* do spnego in user level security if the client
228 supports it and we can do encrypted passwords */
230 if (global_encrypted_passwords_negotiated
&&
231 (lp_security() != SEC_SHARE
) &&
233 (SVAL(inbuf
, smb_flg2
) & FLAGS2_EXTENDED_SECURITY
)) {
234 negotiate_spnego
= True
;
235 capabilities
|= CAP_EXTENDED_SECURITY
;
238 capabilities
|= CAP_NT_SMBS
|CAP_RPC_REMOTE_APIS
;
240 if (lp_unix_extensions()) {
241 capabilities
|= CAP_UNIX
;
244 if (lp_large_readwrite() && (SMB_OFF_T_BITS
== 64))
245 capabilities
|= CAP_LARGE_READX
|CAP_LARGE_WRITEX
|CAP_W2K_SMBS
;
247 if (SMB_OFF_T_BITS
== 64)
248 capabilities
|= CAP_LARGE_FILES
;
250 if (lp_readraw() && lp_writeraw())
251 capabilities
|= CAP_RAW_MODE
;
253 /* allow for disabling unicode */
255 capabilities
|= CAP_UNICODE
;
257 if (lp_nt_status_support())
258 capabilities
|= CAP_STATUS32
;
261 capabilities
|= CAP_DFS
;
263 if (lp_security() >= SEC_USER
)
264 secword
|= NEGOTIATE_SECURITY_USER_LEVEL
;
265 if (global_encrypted_passwords_negotiated
)
266 secword
|= NEGOTIATE_SECURITY_CHALLENGE_RESPONSE
;
268 set_message(outbuf
,17,0,True
);
270 SCVAL(outbuf
,smb_vwv1
,secword
);
272 Protocol
= PROTOCOL_NT1
;
274 SSVAL(outbuf
,smb_vwv1
+1,lp_maxmux()); /* maxmpx */
275 SSVAL(outbuf
,smb_vwv2
+1,1); /* num vcs */
276 SIVAL(outbuf
,smb_vwv3
+1,max_recv
); /* max buffer. LOTS! */
277 SIVAL(outbuf
,smb_vwv5
+1,0x10000); /* raw size. full 64k */
278 SIVAL(outbuf
,smb_vwv7
+1,sys_getpid()); /* session key */
279 SIVAL(outbuf
,smb_vwv9
+1,capabilities
); /* capabilities */
280 put_long_date(outbuf
+smb_vwv11
+1,t
);
281 SSVALS(outbuf
,smb_vwv15
+1,TimeDiff(t
)/60);
283 p
= q
= smb_buf(outbuf
);
284 if (!negotiate_spnego
) {
285 /* Create a token value and add it to the outgoing packet. */
286 if (global_encrypted_passwords_negotiated
) {
287 /* note that we do not send a challenge at all if
288 we are using plaintext */
290 SSVALS(outbuf
,smb_vwv16
+1,8);
293 p
+= srvstr_push(outbuf
, p
, lp_workgroup(), -1,
294 STR_UNICODE
|STR_TERMINATE
|STR_NOALIGN
);
295 DEBUG(3,("not using SPNEGO\n"));
297 int len
= negprot_spnego(p
);
299 SSVALS(outbuf
,smb_vwv16
+1,len
);
301 DEBUG(3,("using SPNEGO\n"));
304 SSVAL(outbuf
,smb_vwv17
, p
- q
); /* length of challenge+domain strings */
305 set_message_end(outbuf
, p
);
307 return (smb_len(outbuf
)+4);
310 /* these are the protocol lists used for auto architecture detection:
313 protocol [PC NETWORK PROGRAM 1.0]
314 protocol [XENIX CORE]
315 protocol [MICROSOFT NETWORKS 1.03]
317 protocol [Windows for Workgroups 3.1a]
320 protocol [NT LM 0.12]
323 protocol [PC NETWORK PROGRAM 1.0]
324 protocol [XENIX CORE]
325 protocol [MICROSOFT NETWORKS 1.03]
327 protocol [Windows for Workgroups 3.1a]
330 protocol [NT LM 0.12]
333 protocol [PC NETWORK PROGRAM 1.0]
335 protocol [Windows for Workgroups 3.1a]
338 protocol [NT LM 0.12]
341 protocol [PC NETWORK PROGRAM 1.0]
342 protocol [XENIX CORE]
349 * Modified to recognize the architecture of the remote machine better.
351 * This appears to be the matrix of which protocol is used by which
353 Protocol WfWg Win95 WinNT Win2K OS/2
354 PC NETWORK PROGRAM 1.0 1 1 1 1 1
356 MICROSOFT NETWORKS 3.0 2 2
358 MICROSOFT NETWORKS 1.03 3
361 Windows for Workgroups 3.1a 5 5 5 3
366 * tim@fsg.com 09/29/95
367 * Win2K added by matty 17/7/99
370 #define ARCH_WFWG 0x3 /* This is a fudge because WfWg is like Win95 */
371 #define ARCH_WIN95 0x2
372 #define ARCH_WINNT 0x4
373 #define ARCH_WIN2K 0xC /* Win2K is like NT */
374 #define ARCH_OS2 0x14 /* Again OS/2 is like NT */
375 #define ARCH_SAMBA 0x20
377 #define ARCH_ALL 0x3F
379 /* List of supported protocols, most desired first */
380 static const struct {
381 const char *proto_name
;
382 const char *short_name
;
383 int (*proto_reply_fn
)(char *, char *);
385 } supported_protocols
[] = {
386 {"NT LANMAN 1.0", "NT1", reply_nt1
, PROTOCOL_NT1
},
387 {"NT LM 0.12", "NT1", reply_nt1
, PROTOCOL_NT1
},
388 {"LM1.2X002", "LANMAN2", reply_lanman2
, PROTOCOL_LANMAN2
},
389 {"Samba", "LANMAN2", reply_lanman2
, PROTOCOL_LANMAN2
},
390 {"DOS LM1.2X002", "LANMAN2", reply_lanman2
, PROTOCOL_LANMAN2
},
391 {"LANMAN1.0", "LANMAN1", reply_lanman1
, PROTOCOL_LANMAN1
},
392 {"MICROSOFT NETWORKS 3.0", "LANMAN1", reply_lanman1
, PROTOCOL_LANMAN1
},
393 {"MICROSOFT NETWORKS 1.03", "COREPLUS", reply_coreplus
, PROTOCOL_COREPLUS
},
394 {"PC NETWORK PROGRAM 1.0", "CORE", reply_corep
, PROTOCOL_CORE
},
398 /****************************************************************************
400 ****************************************************************************/
402 int reply_negprot(connection_struct
*conn
,
403 char *inbuf
,char *outbuf
, int dum_size
,
406 int outsize
= set_message(outbuf
,1,0,True
);
411 int bcc
= SVAL(smb_buf(inbuf
),-2);
414 static BOOL done_negprot
= False
;
416 START_PROFILE(SMBnegprot
);
419 END_PROFILE(SMBnegprot
);
420 exit_server("multiple negprot's are not permitted");
424 p
= smb_buf(inbuf
)+1;
425 while (p
< (smb_buf(inbuf
) + bcc
)) {
427 DEBUG(3,("Requested protocol [%s]\n",p
));
428 if (strcsequal(p
,"Windows for Workgroups 3.1a"))
429 arch
&= ( ARCH_WFWG
| ARCH_WIN95
| ARCH_WINNT
| ARCH_WIN2K
);
430 else if (strcsequal(p
,"DOS LM1.2X002"))
431 arch
&= ( ARCH_WFWG
| ARCH_WIN95
);
432 else if (strcsequal(p
,"DOS LANMAN2.1"))
433 arch
&= ( ARCH_WFWG
| ARCH_WIN95
);
434 else if (strcsequal(p
,"NT LM 0.12"))
435 arch
&= ( ARCH_WIN95
| ARCH_WINNT
| ARCH_WIN2K
);
436 else if (strcsequal(p
,"LANMAN2.1"))
437 arch
&= ( ARCH_WINNT
| ARCH_WIN2K
| ARCH_OS2
);
438 else if (strcsequal(p
,"LM1.2X002"))
439 arch
&= ( ARCH_WINNT
| ARCH_WIN2K
| ARCH_OS2
);
440 else if (strcsequal(p
,"MICROSOFT NETWORKS 1.03"))
442 else if (strcsequal(p
,"XENIX CORE"))
443 arch
&= ( ARCH_WINNT
| ARCH_OS2
);
444 else if (strcsequal(p
,"Samba")) {
454 set_remote_arch(RA_SAMBA
);
457 set_remote_arch(RA_WFWG
);
460 set_remote_arch(RA_WIN95
);
463 if(SVAL(inbuf
,smb_flg2
)==FLAGS2_WIN2K_SIGNATURE
)
464 set_remote_arch(RA_WIN2K
);
466 set_remote_arch(RA_WINNT
);
469 set_remote_arch(RA_WIN2K
);
472 set_remote_arch(RA_OS2
);
475 set_remote_arch(RA_UNKNOWN
);
479 /* possibly reload - change of architecture */
480 reload_services(True
);
482 /* Check for protocols, most desirable first */
483 for (protocol
= 0; supported_protocols
[protocol
].proto_name
; protocol
++) {
484 p
= smb_buf(inbuf
)+1;
486 if ((supported_protocols
[protocol
].protocol_level
<= lp_maxprotocol()) &&
487 (supported_protocols
[protocol
].protocol_level
>= lp_minprotocol()))
488 while (p
< (smb_buf(inbuf
) + bcc
)) {
489 if (strequal(p
,supported_protocols
[protocol
].proto_name
))
498 SSVAL(outbuf
,smb_vwv0
,choice
);
500 extern fstring remote_proto
;
501 fstrcpy(remote_proto
,supported_protocols
[protocol
].short_name
);
502 reload_services(True
);
503 outsize
= supported_protocols
[protocol
].proto_reply_fn(inbuf
, outbuf
);
504 DEBUG(3,("Selected protocol %s\n",supported_protocols
[protocol
].proto_name
));
506 DEBUG(0,("No protocol supported !\n"));
508 SSVAL(outbuf
,smb_vwv0
,choice
);
510 DEBUG( 5, ( "negprot index=%d\n", choice
) );
512 END_PROFILE(SMBnegprot
);