3 Unix SMB/Netbios implementation.
5 process incoming packets - main loop
6 Copyright (C) Andrew Tridgell 1992-1998
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.
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.
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.
25 extern int DEBUGLEVEL
;
27 struct timeval smb_last_time
;
29 static char *InBuffer
= NULL
;
30 char *OutBuffer
= NULL
;
31 char *last_inbuf
= NULL
;
34 * Size of data we can send to client. Set
35 * by the client for all protocols above CORE.
36 * Set by us for CORE protocol.
38 int max_send
= BUFFER_SIZE
;
40 * Size of the data we can receive. Set by us.
41 * Can be modified by the max xmit parameter.
43 int max_recv
= BUFFER_SIZE
;
45 extern int last_message
;
46 extern int global_oplock_break
;
47 extern pstring sesssetup_user
;
48 extern char *last_inbuf
;
49 extern char *InBuffer
;
50 extern char *OutBuffer
;
51 extern int smb_read_error
;
52 extern VOLATILE SIG_ATOMIC_T reload_after_sighup
;
53 extern BOOL global_machine_password_needs_changing
;
54 extern fstring global_myworkgroup
;
55 extern pstring global_myname
;
58 /****************************************************************************
59 structure to hold a linked list of queued messages.
61 ****************************************************************************/
67 } pending_message_list
;
69 static ubi_slList smb_oplock_queue
= { NULL
, (ubi_slNodePtr
)&smb_oplock_queue
, 0};
71 /****************************************************************************
72 Function to push a message onto the tail of a linked list of smb messages ready
74 ****************************************************************************/
76 static BOOL
push_message(ubi_slList
*list_head
, char *buf
, int msg_len
)
78 pending_message_list
*msg
= (pending_message_list
*)
79 malloc(sizeof(pending_message_list
));
83 DEBUG(0,("push_message: malloc fail (1)\n"));
87 msg
->msg_buf
= (char *)malloc(msg_len
);
88 if(msg
->msg_buf
== NULL
)
90 DEBUG(0,("push_message: malloc fail (2)\n"));
95 memcpy(msg
->msg_buf
, buf
, msg_len
);
96 msg
->msg_len
= msg_len
;
98 ubi_slAddTail( list_head
, msg
);
103 /****************************************************************************
104 Function to push a smb message onto a linked list of local smb messages ready
106 ****************************************************************************/
108 BOOL
push_oplock_pending_smb_message(char *buf
, int msg_len
)
110 return push_message(&smb_oplock_queue
, buf
, msg_len
);
113 /****************************************************************************
114 do all async processing in here. This includes UDB oplock messages, kernel
115 oplock messages, change notify events etc.
116 ****************************************************************************/
117 static void async_processing(fd_set
*fds
, char *buffer
, int buffer_len
)
119 /* check for oplock messages (both UDP and kernel) */
120 if (receive_local_message(fds
, buffer
, buffer_len
, 0)) {
121 process_local_message(buffer
, buffer_len
);
124 /* check for async change notify events */
125 process_pending_change_notify_queue(0);
127 /* check for sighup processing */
128 if (reload_after_sighup
) {
130 DEBUG(1,("Reloading services after SIGHUP\n"));
131 reload_services(False
);
132 reload_after_sighup
= False
;
135 /* check for any pending internal messages */
139 /****************************************************************************
140 Do a select on an two fd's - with timeout.
142 If a local udp message has been pushed onto the
143 queue (this can only happen during oplock break
144 processing) call async_processing()
146 If a pending smb message has been pushed onto the
147 queue (this can only happen during oplock break
148 processing) return this next.
150 If the first smbfd is ready then read an smb from it.
151 if the second (loopback UDP) fd is ready then read a message
152 from it and setup the buffer header to identify the length
154 Returns False on timeout or error.
157 The timeout is in milli seconds
158 ****************************************************************************/
160 static BOOL
receive_message_or_smb(char *buffer
, int buffer_len
, int timeout
)
170 * Check to see if we already have a message on the smb queue.
171 * If so - copy and return it.
173 if(ubi_slCount(&smb_oplock_queue
) != 0) {
174 pending_message_list
*msg
= (pending_message_list
*)ubi_slRemHead(&smb_oplock_queue
);
175 memcpy(buffer
, msg
->msg_buf
, MIN(buffer_len
, msg
->msg_len
));
177 /* Free the message we just copied. */
178 free((char *)msg
->msg_buf
);
181 DEBUG(5,("receive_message_or_smb: returning queued smb message.\n"));
187 * Setup the select read fd set.
192 FD_SET(smbd_server_fd(),&fds
);
193 maxfd
= setup_oplock_select_set(&fds
);
195 to
.tv_sec
= timeout
/ 1000;
196 to
.tv_usec
= (timeout
% 1000) * 1000;
198 selrtn
= sys_select(MAX(maxfd
,smbd_server_fd())+1,&fds
,timeout
>0?&to
:NULL
);
200 /* if we get EINTR then maybe we have received an oplock
201 signal - treat this as select returning 1. This is ugly, but
202 is the best we can do until the oplock code knows more about
204 if (selrtn
== -1 && errno
== EINTR
) {
205 async_processing(&fds
, buffer
, buffer_len
);
211 /* something is wrong. Maybe the socket is dead? */
212 smb_read_error
= READ_ERROR
;
216 /* Did we timeout ? */
218 smb_read_error
= READ_TIMEOUT
;
222 if (!FD_ISSET(smbd_server_fd(),&fds
) || selrtn
> 1) {
223 async_processing(&fds
, buffer
, buffer_len
);
224 if (!FD_ISSET(smbd_server_fd(),&fds
)) goto again
;
227 return receive_smb(smbd_server_fd(), buffer
, 0);
230 /****************************************************************************
231 Get the next SMB packet, doing the local message processing automatically.
232 ****************************************************************************/
234 BOOL
receive_next_smb(char *inbuf
, int bufsize
, int timeout
)
240 ret
= receive_message_or_smb(inbuf
,bufsize
,timeout
);
242 got_keepalive
= (ret
&& (CVAL(inbuf
,0) == 0x85));
243 } while (ret
&& got_keepalive
);
248 /****************************************************************************
249 We're terminating and have closed all our files/connections etc.
250 If there are any pending local messages we need to respond to them
251 before termination so that other smbds don't think we just died whilst
253 ****************************************************************************/
255 void respond_to_all_remaining_local_messages(void)
261 * Assert we have no exclusive open oplocks.
264 if(get_number_of_exclusive_open_oplocks()) {
265 DEBUG(0,("respond_to_all_remaining_local_messages: PANIC : we have %d exclusive oplocks.\n",
266 get_number_of_exclusive_open_oplocks() ));
271 * Setup the select read fd set.
275 if(!setup_oplock_select_set(&fds
))
279 * Keep doing receive_local_message with a 1 ms timeout until
280 * we have no more messages.
282 while(receive_local_message(&fds
, buffer
, sizeof(buffer
), 1)) {
283 /* Deal with oplock break requests from other smbd's. */
284 process_local_message(buffer
, sizeof(buffer
));
287 (void)setup_oplock_select_set(&fds
);
295 These flags determine some of the permissions required to do an operation
297 Note that I don't set NEED_WRITE on some write operations because they
298 are used by some brain-dead clients when printing, and I don't want to
299 force write permissions on print services.
301 #define AS_USER (1<<0)
302 #define NEED_WRITE (1<<1)
303 #define TIME_INIT (1<<2)
304 #define CAN_IPC (1<<3)
305 #define AS_GUEST (1<<5)
306 #define QUEUE_IN_OPLOCK (1<<6)
309 define a list of possible SMB messages and their corresponding
310 functions. Any message that has a NULL function is unimplemented -
311 please feel free to contribute implementations!
313 struct smb_message_struct
317 int (*fn
)(connection_struct
*conn
, char *, char *, int, int);
324 {SMBnegprot
,"SMBnegprot",reply_negprot
,0},
325 {SMBtcon
,"SMBtcon",reply_tcon
,0},
326 {SMBtdis
,"SMBtdis",reply_tdis
,0},
327 {SMBexit
,"SMBexit",reply_exit
,0},
328 {SMBioctl
,"SMBioctl",reply_ioctl
,0},
329 {SMBecho
,"SMBecho",reply_echo
,0},
330 {SMBsesssetupX
,"SMBsesssetupX",reply_sesssetup_and_X
,0},
331 {SMBtconX
,"SMBtconX",reply_tcon_and_X
,0},
332 {SMBulogoffX
, "SMBulogoffX", reply_ulogoffX
, 0}, /* ulogoff doesn't give a valid TID */
333 {SMBgetatr
,"SMBgetatr",reply_getatr
,AS_USER
},
334 {SMBsetatr
,"SMBsetatr",reply_setatr
,AS_USER
| NEED_WRITE
},
335 {SMBchkpth
,"SMBchkpth",reply_chkpth
,AS_USER
},
336 {SMBsearch
,"SMBsearch",reply_search
,AS_USER
},
337 {SMBopen
,"SMBopen",reply_open
,AS_USER
| QUEUE_IN_OPLOCK
},
339 /* note that SMBmknew and SMBcreate are deliberately overloaded */
340 {SMBcreate
,"SMBcreate",reply_mknew
,AS_USER
},
341 {SMBmknew
,"SMBmknew",reply_mknew
,AS_USER
},
343 {SMBunlink
,"SMBunlink",reply_unlink
,AS_USER
| NEED_WRITE
| QUEUE_IN_OPLOCK
},
344 {SMBread
,"SMBread",reply_read
,AS_USER
},
345 {SMBwrite
,"SMBwrite",reply_write
,AS_USER
| CAN_IPC
},
346 {SMBclose
,"SMBclose",reply_close
,AS_USER
| CAN_IPC
},
347 {SMBmkdir
,"SMBmkdir",reply_mkdir
,AS_USER
| NEED_WRITE
},
348 {SMBrmdir
,"SMBrmdir",reply_rmdir
,AS_USER
| NEED_WRITE
},
349 {SMBdskattr
,"SMBdskattr",reply_dskattr
,AS_USER
},
350 {SMBmv
,"SMBmv",reply_mv
,AS_USER
| NEED_WRITE
| QUEUE_IN_OPLOCK
},
352 /* this is a Pathworks specific call, allowing the
353 changing of the root path */
354 {pSETDIR
,"pSETDIR",reply_setdir
,AS_USER
},
356 {SMBlseek
,"SMBlseek",reply_lseek
,AS_USER
},
357 {SMBflush
,"SMBflush",reply_flush
,AS_USER
},
358 {SMBctemp
,"SMBctemp",reply_ctemp
,AS_USER
| QUEUE_IN_OPLOCK
},
359 {SMBsplopen
,"SMBsplopen",reply_printopen
,AS_USER
| QUEUE_IN_OPLOCK
},
360 {SMBsplclose
,"SMBsplclose",reply_printclose
,AS_USER
},
361 {SMBsplretq
,"SMBsplretq",reply_printqueue
,AS_USER
},
362 {SMBsplwr
,"SMBsplwr",reply_printwrite
,AS_USER
},
363 {SMBlock
,"SMBlock",reply_lock
,AS_USER
},
364 {SMBunlock
,"SMBunlock",reply_unlock
,AS_USER
},
366 /* CORE+ PROTOCOL FOLLOWS */
368 {SMBreadbraw
,"SMBreadbraw",reply_readbraw
,AS_USER
},
369 {SMBwritebraw
,"SMBwritebraw",reply_writebraw
,AS_USER
},
370 {SMBwriteclose
,"SMBwriteclose",reply_writeclose
,AS_USER
},
371 {SMBlockread
,"SMBlockread",reply_lockread
,AS_USER
},
372 {SMBwriteunlock
,"SMBwriteunlock",reply_writeunlock
,AS_USER
},
374 /* LANMAN1.0 PROTOCOL FOLLOWS */
376 {SMBreadBmpx
,"SMBreadBmpx",reply_readbmpx
,AS_USER
},
377 {SMBreadBs
,"SMBreadBs",NULL
,AS_USER
},
378 {SMBwriteBmpx
,"SMBwriteBmpx",reply_writebmpx
,AS_USER
},
379 {SMBwriteBs
,"SMBwriteBs",reply_writebs
,AS_USER
},
380 {SMBwritec
,"SMBwritec",NULL
,AS_USER
},
381 {SMBsetattrE
,"SMBsetattrE",reply_setattrE
,AS_USER
| NEED_WRITE
},
382 {SMBgetattrE
,"SMBgetattrE",reply_getattrE
,AS_USER
},
383 {SMBtrans
,"SMBtrans",reply_trans
,AS_USER
| CAN_IPC
| QUEUE_IN_OPLOCK
},
384 {SMBtranss
,"SMBtranss",NULL
,AS_USER
| CAN_IPC
},
385 {SMBioctls
,"SMBioctls",NULL
,AS_USER
},
386 {SMBcopy
,"SMBcopy",reply_copy
,AS_USER
| NEED_WRITE
| QUEUE_IN_OPLOCK
},
387 {SMBmove
,"SMBmove",NULL
,AS_USER
| NEED_WRITE
| QUEUE_IN_OPLOCK
},
389 {SMBopenX
,"SMBopenX",reply_open_and_X
,AS_USER
| CAN_IPC
| QUEUE_IN_OPLOCK
},
390 {SMBreadX
,"SMBreadX",reply_read_and_X
,AS_USER
| CAN_IPC
},
391 {SMBwriteX
,"SMBwriteX",reply_write_and_X
,AS_USER
| CAN_IPC
},
392 {SMBlockingX
,"SMBlockingX",reply_lockingX
,AS_USER
},
394 {SMBffirst
,"SMBffirst",reply_search
,AS_USER
},
395 {SMBfunique
,"SMBfunique",reply_search
,AS_USER
},
396 {SMBfclose
,"SMBfclose",reply_fclose
,AS_USER
},
398 /* LANMAN2.0 PROTOCOL FOLLOWS */
399 {SMBfindnclose
, "SMBfindnclose", reply_findnclose
, AS_USER
},
400 {SMBfindclose
, "SMBfindclose", reply_findclose
,AS_USER
},
401 {SMBtrans2
, "SMBtrans2", reply_trans2
, AS_USER
| QUEUE_IN_OPLOCK
| CAN_IPC
},
402 {SMBtranss2
, "SMBtranss2", reply_transs2
, AS_USER
},
404 /* NT PROTOCOL FOLLOWS */
405 {SMBntcreateX
, "SMBntcreateX", reply_ntcreate_and_X
, AS_USER
| CAN_IPC
| QUEUE_IN_OPLOCK
},
406 {SMBnttrans
, "SMBnttrans", reply_nttrans
, AS_USER
| CAN_IPC
| QUEUE_IN_OPLOCK
},
407 {SMBnttranss
, "SMBnttranss", reply_nttranss
, AS_USER
| CAN_IPC
},
408 {SMBntcancel
, "SMBntcancel", reply_ntcancel
, 0 },
410 /* messaging routines */
411 {SMBsends
,"SMBsends",reply_sends
,AS_GUEST
},
412 {SMBsendstrt
,"SMBsendstrt",reply_sendstrt
,AS_GUEST
},
413 {SMBsendend
,"SMBsendend",reply_sendend
,AS_GUEST
},
414 {SMBsendtxt
,"SMBsendtxt",reply_sendtxt
,AS_GUEST
},
416 /* NON-IMPLEMENTED PARTS OF THE CORE PROTOCOL */
418 {SMBsendb
,"SMBsendb",NULL
,AS_GUEST
},
419 {SMBfwdname
,"SMBfwdname",NULL
,AS_GUEST
},
420 {SMBcancelf
,"SMBcancelf",NULL
,AS_GUEST
},
421 {SMBgetmac
,"SMBgetmac",NULL
,AS_GUEST
}
424 /*******************************************************************
426 ********************************************************************/
427 static void smb_dump(char *name
, int type
, char *data
, ssize_t len
)
431 if (DEBUGLEVEL
< 50) return;
433 if (len
< 4) len
= smb_len(data
)+4;
434 for (i
=1;i
<100;i
++) {
435 slprintf(fname
,sizeof(fname
), "/tmp/%s.%d.%s", name
, i
,
436 type
? "req" : "resp");
437 fd
= open(fname
, O_WRONLY
|O_CREAT
|O_EXCL
, 0644);
438 if (fd
!= -1 || errno
!= EEXIST
) break;
441 write(fd
, data
, len
);
443 DEBUG(0,("created %s len %d\n", fname
, len
));
448 /****************************************************************************
449 do a switch on the message type, and return the response size
450 ****************************************************************************/
451 static int switch_message(int type
,char *inbuf
,char *outbuf
,int size
,int bufsize
)
453 static pid_t pid
= (pid_t
)-1;
455 static int num_smb_messages
=
456 sizeof(smb_messages
) / sizeof(struct smb_message_struct
);
458 extern int global_smbpid
;
460 if (pid
== (pid_t
)-1)
466 /* make sure this is an SMB packet */
467 if (strncmp(smb_base(inbuf
),"\377SMB",4) != 0)
469 DEBUG(2,("Non-SMB packet of length %d\n",smb_len(inbuf
)));
473 for (match
=0;match
<num_smb_messages
;match
++)
474 if (smb_messages
[match
].code
== type
)
477 /* yuck! this is an interim measure before we get rid of our
478 current inbuf/outbuf system */
479 global_smbpid
= SVAL(inbuf
,smb_pid
);
481 if (match
== num_smb_messages
)
483 DEBUG(0,("Unknown message type %d!\n",type
));
484 smb_dump("Unknown", 1, inbuf
, size
);
485 outsize
= reply_unknown(inbuf
,outbuf
);
489 DEBUG(3,("switch message %s (pid %d)\n",smb_messages
[match
].name
,(int)pid
));
491 smb_dump(smb_messages
[match
].name
, 1, inbuf
, size
);
492 if(global_oplock_break
)
494 int flags
= smb_messages
[match
].flags
;
496 if(flags
& QUEUE_IN_OPLOCK
)
499 * Queue this message as we are the process of an oplock break.
502 DEBUG( 2, ( "switch_message: queueing message due to being in " ) );
503 DEBUGADD( 2, ( "oplock break state.\n" ) );
505 push_oplock_pending_smb_message( inbuf
, size
);
509 if (smb_messages
[match
].fn
)
511 int flags
= smb_messages
[match
].flags
;
512 static uint16 last_session_tag
= UID_FIELD_INVALID
;
513 /* In share mode security we must ignore the vuid. */
514 uint16 session_tag
= (lp_security() == SEC_SHARE
) ? UID_FIELD_INVALID
: SVAL(inbuf
,smb_uid
);
515 connection_struct
*conn
= conn_find(SVAL(inbuf
,smb_tid
));
518 /* Ensure this value is replaced in the incoming packet. */
519 SSVAL(inbuf
,smb_uid
,session_tag
);
522 * Ensure the correct username is in sesssetup_user.
523 * This is a really ugly bugfix for problems with
524 * multiple session_setup_and_X's being done and
525 * allowing %U and %G substitutions to work correctly.
526 * There is a reason this code is done here, don't
527 * move it unless you know what you're doing... :-).
530 if (session_tag
!= last_session_tag
) {
531 user_struct
*vuser
= NULL
;
533 last_session_tag
= session_tag
;
534 if(session_tag
!= UID_FIELD_INVALID
)
535 vuser
= get_valid_user_struct(session_tag
);
537 pstrcpy( sesssetup_user
, vuser
->user
.smb_name
);
540 /* does this protocol need to be run as root? */
541 if (!(flags
& AS_USER
))
544 /* does this protocol need to be run as the connected user? */
545 if ((flags
& AS_USER
) && !become_user(conn
,session_tag
)) {
546 if (flags
& AS_GUEST
)
549 return(ERROR(ERRSRV
,ERRaccess
));
551 /* this code is to work around a bug is MS client 3 without
552 introducing a security hole - it needs to be able to do
553 print queue checks as guest if it isn't logged in properly */
557 /* does it need write permission? */
558 if ((flags
& NEED_WRITE
) && !CAN_WRITE(conn
))
559 return(ERROR(ERRSRV
,ERRaccess
));
561 /* ipc services are limited */
562 if (IS_IPC(conn
) && (flags
& AS_USER
) && !(flags
& CAN_IPC
)) {
563 return(ERROR(ERRSRV
,ERRaccess
));
566 /* load service specific parameters */
567 if (conn
&& !become_service(conn
,(flags
& AS_USER
)?True
:False
)) {
568 return(ERROR(ERRSRV
,ERRaccess
));
571 /* does this protocol need to be run as guest? */
572 if ((flags
& AS_GUEST
) &&
574 !check_access(smbd_server_fd(), lp_hostsallow(-1), lp_hostsdeny(-1)))) {
575 return(ERROR(ERRSRV
,ERRaccess
));
580 outsize
= smb_messages
[match
].fn(conn
, inbuf
,outbuf
,size
,bufsize
);
584 outsize
= reply_unknown(inbuf
,outbuf
);
588 smb_dump(smb_messages
[match
].name
, 0, outbuf
, outsize
);
594 /****************************************************************************
595 construct a reply to the incoming packet
596 ****************************************************************************/
597 static int construct_reply(char *inbuf
,char *outbuf
,int size
,int bufsize
)
599 int type
= CVAL(inbuf
,smb_com
);
601 int msg_type
= CVAL(inbuf
,0);
603 GetTimeOfDay(&smb_last_time
);
610 return(reply_special(inbuf
,outbuf
));
612 construct_reply_common(inbuf
, outbuf
);
614 outsize
= switch_message(type
,inbuf
,outbuf
,size
,bufsize
);
616 outsize
+= chain_size
;
619 smb_setlen(outbuf
,outsize
- 4);
624 /****************************************************************************
625 process an smb from the client - split out from the process() code so
626 it can be used by the oplock break code.
627 ****************************************************************************/
628 void process_smb(char *inbuf
, char *outbuf
)
631 extern BOOL sslEnabled
; /* don't use function for performance reasons */
632 static int sslConnected
= 0;
633 #endif /* WITH_SSL */
634 static int trans_num
;
635 int msg_type
= CVAL(inbuf
,0);
636 int32 len
= smb_len(inbuf
);
639 DO_PROFILE_INC(smb_count
);
641 if (trans_num
== 0) {
642 /* on the first packet, check the global hosts allow/ hosts
643 deny parameters before doing any parsing of the packet
644 passed to us by the client. This prevents attacks on our
645 parsing code from hosts not in the hosts allow list */
646 if (!check_access(smbd_server_fd(), lp_hostsallow(-1), lp_hostsdeny(-1))) {
647 /* send a negative session response "not listining on calling
649 static unsigned char buf
[5] = {0x83, 0, 0, 1, 0x81};
650 DEBUG( 1, ( "Connection denied from %s\n",
652 send_smb(smbd_server_fd(),(char *)buf
);
653 exit_server("connection denied");
657 DEBUG( 6, ( "got message type 0x%x of len 0x%x\n", msg_type
, len
) );
658 DEBUG( 3, ( "Transaction %d of length %d\n", trans_num
, nread
) );
661 if(sslEnabled
&& !sslConnected
){
662 sslConnected
= sslutil_negotiate_ssl(smbd_server_fd(), msg_type
);
663 if(sslConnected
< 0){ /* an error occured */
664 exit_server("SSL negotiation failed");
665 }else if(sslConnected
){
670 #endif /* WITH_SSL */
674 else if(msg_type
== 0x85)
675 return; /* Keepalive packet. */
677 nread
= construct_reply(inbuf
,outbuf
,nread
,max_send
);
681 if (CVAL(outbuf
,0) == 0)
684 if (nread
!= smb_len(outbuf
) + 4)
686 DEBUG(0,("ERROR: Invalid message response size! %d %d\n",
687 nread
, smb_len(outbuf
)));
690 send_smb(smbd_server_fd(),outbuf
);
697 /****************************************************************************
698 return a string containing the function name of a SMB command
699 ****************************************************************************/
700 char *smb_fn_name(int type
)
702 static char *unknown_name
= "SMBunknown";
703 static int num_smb_messages
=
704 sizeof(smb_messages
) / sizeof(struct smb_message_struct
);
707 for (match
=0;match
<num_smb_messages
;match
++)
708 if (smb_messages
[match
].code
== type
)
711 if (match
== num_smb_messages
)
712 return(unknown_name
);
714 return(smb_messages
[match
].name
);
718 /****************************************************************************
719 Helper function for contruct_reply.
720 ****************************************************************************/
722 void construct_reply_common(char *inbuf
,char *outbuf
)
724 memset(outbuf
,'\0',smb_size
);
726 set_message(outbuf
,0,0,True
);
727 CVAL(outbuf
,smb_com
) = CVAL(inbuf
,smb_com
);
729 memcpy(outbuf
+4,inbuf
+4,4);
730 CVAL(outbuf
,smb_rcls
) = SMB_SUCCESS
;
731 CVAL(outbuf
,smb_reh
) = 0;
732 SCVAL(outbuf
,smb_flg
, FLAG_REPLY
| (CVAL(inbuf
,smb_flg
) & FLAG_CASELESS_PATHNAMES
)); /* bit 7 set
734 SSVAL(outbuf
,smb_flg2
,FLAGS2_LONG_PATH_COMPONENTS
);
735 /* say we support long filenames */
737 SSVAL(outbuf
,smb_err
,SMB_SUCCESS
);
738 SSVAL(outbuf
,smb_tid
,SVAL(inbuf
,smb_tid
));
739 SSVAL(outbuf
,smb_pid
,SVAL(inbuf
,smb_pid
));
740 SSVAL(outbuf
,smb_uid
,SVAL(inbuf
,smb_uid
));
741 SSVAL(outbuf
,smb_mid
,SVAL(inbuf
,smb_mid
));
744 /****************************************************************************
745 construct a chained reply and add it to the already made reply
746 **************************************************************************/
747 int chain_reply(char *inbuf
,char *outbuf
,int size
,int bufsize
)
749 static char *orig_inbuf
;
750 static char *orig_outbuf
;
751 int smb_com1
, smb_com2
= CVAL(inbuf
,smb_vwv0
);
752 unsigned smb_off2
= SVAL(inbuf
,smb_vwv1
);
753 char *inbuf2
, *outbuf2
;
755 char inbuf_saved
[smb_wct
];
756 char outbuf_saved
[smb_wct
];
757 int wct
= CVAL(outbuf
,smb_wct
);
758 int outsize
= smb_size
+ 2*wct
+ SVAL(outbuf
,smb_vwv0
+2*wct
);
760 /* maybe its not chained */
761 if (smb_com2
== 0xFF) {
762 CVAL(outbuf
,smb_vwv0
) = 0xFF;
766 if (chain_size
== 0) {
767 /* this is the first part of the chain */
769 orig_outbuf
= outbuf
;
773 * The original Win95 redirector dies on a reply to
774 * a lockingX and read chain unless the chain reply is
775 * 4 byte aligned. JRA.
778 outsize
= (outsize
+ 3) & ~3;
780 /* we need to tell the client where the next part of the reply will be */
781 SSVAL(outbuf
,smb_vwv1
,smb_offset(outbuf
+outsize
,outbuf
));
782 CVAL(outbuf
,smb_vwv0
) = smb_com2
;
784 /* remember how much the caller added to the chain, only counting stuff
785 after the parameter words */
786 chain_size
+= outsize
- smb_wct
;
788 /* work out pointers into the original packets. The
789 headers on these need to be filled in */
790 inbuf2
= orig_inbuf
+ smb_off2
+ 4 - smb_wct
;
791 outbuf2
= orig_outbuf
+ SVAL(outbuf
,smb_vwv1
) + 4 - smb_wct
;
793 /* remember the original command type */
794 smb_com1
= CVAL(orig_inbuf
,smb_com
);
796 /* save the data which will be overwritten by the new headers */
797 memcpy(inbuf_saved
,inbuf2
,smb_wct
);
798 memcpy(outbuf_saved
,outbuf2
,smb_wct
);
800 /* give the new packet the same header as the last part of the SMB */
801 memmove(inbuf2
,inbuf
,smb_wct
);
803 /* create the in buffer */
804 CVAL(inbuf2
,smb_com
) = smb_com2
;
806 /* create the out buffer */
807 construct_reply_common(inbuf2
, outbuf2
);
809 DEBUG(3,("Chained message\n"));
812 /* process the request */
813 outsize2
= switch_message(smb_com2
,inbuf2
,outbuf2
,size
-chain_size
,
816 /* copy the new reply and request headers over the old ones, but
817 preserve the smb_com field */
818 memmove(orig_outbuf
,outbuf2
,smb_wct
);
819 CVAL(orig_outbuf
,smb_com
) = smb_com1
;
821 /* restore the saved data, being careful not to overwrite any
822 data from the reply header */
823 memcpy(inbuf2
,inbuf_saved
,smb_wct
);
825 int ofs
= smb_wct
- PTR_DIFF(outbuf2
,orig_outbuf
);
826 if (ofs
< 0) ofs
= 0;
827 memmove(outbuf2
+ofs
,outbuf_saved
+ofs
,smb_wct
-ofs
);
833 /****************************************************************************
834 Setup the needed select timeout.
835 ****************************************************************************/
837 static int setup_select_timeout(void)
843 * Increase the select timeout back to SMBD_SELECT_TIMEOUT if we
844 * have removed any blocking locks. JRA.
847 select_timeout
= blocking_locks_pending() ? SMBD_SELECT_TIMEOUT_WITH_PENDING_LOCKS
*1000 :
848 SMBD_SELECT_TIMEOUT
*1000;
850 t
= change_notify_timeout();
851 if (t
!= -1) select_timeout
= MIN(select_timeout
, t
*1000);
853 return select_timeout
;
856 /****************************************************************************
857 Check if services need reloading.
858 ****************************************************************************/
860 void check_reload(int t
)
862 static time_t last_smb_conf_reload_time
= 0;
864 if(last_smb_conf_reload_time
== 0)
865 last_smb_conf_reload_time
= t
;
867 if (reload_after_sighup
|| (t
>= last_smb_conf_reload_time
+SMBD_RELOAD_CHECK
))
869 reload_services(True
);
870 reload_after_sighup
= False
;
871 last_smb_conf_reload_time
= t
;
875 /****************************************************************************
876 Process any timeout housekeeping. Return False if the caller should exit.
877 ****************************************************************************/
879 static BOOL
timeout_processing(int deadtime
, int *select_timeout
, time_t *last_timeout_processing_time
)
881 static time_t last_keepalive_sent_time
= 0;
882 static time_t last_idle_closed_check
= 0;
885 extern int keepalive
;
887 if (smb_read_error
== READ_EOF
)
889 DEBUG(3,("end of file from client\n"));
893 if (smb_read_error
== READ_ERROR
)
895 DEBUG(3,("receive_smb error (%s) exiting\n",
900 *last_timeout_processing_time
= t
= time(NULL
);
902 if(last_keepalive_sent_time
== 0)
903 last_keepalive_sent_time
= t
;
905 if(last_idle_closed_check
== 0)
906 last_idle_closed_check
= t
;
908 /* become root again if waiting */
911 /* check if we need to reload services */
914 /* automatic timeout if all connections are closed */
915 if (conn_num_open()==0 && (t
- last_idle_closed_check
) >= IDLE_CLOSED_TIMEOUT
)
917 DEBUG( 2, ( "Closing idle connection\n" ) );
921 last_idle_closed_check
= t
;
923 if (keepalive
&& (t
- last_keepalive_sent_time
)>keepalive
)
925 struct cli_state
*cli
= server_client();
926 if (!send_keepalive(smbd_server_fd())) {
927 DEBUG( 2, ( "Keepalive failed - exiting.\n" ) );
930 /* also send a keepalive to the password server if its still
932 if (cli
&& cli
->initialised
)
933 send_keepalive(cli
->fd
);
934 last_keepalive_sent_time
= t
;
937 /* check for connection timeouts */
938 allidle
= conn_idle_all(t
, deadtime
);
940 if (allidle
&& conn_num_open()>0) {
941 DEBUG(2,("Closing idle connection 2.\n"));
945 if(global_machine_password_needs_changing
)
947 unsigned char trust_passwd_hash
[16];
949 pstring remote_machine_list
;
952 * We're in domain level security, and the code that
953 * read the machine password flagged that the machine
954 * password needs changing.
958 * First, open the machine password file with an exclusive lock.
961 if(!secrets_fetch_trust_account_password(global_myworkgroup
, trust_passwd_hash
, &lct
)) {
962 DEBUG(0,("process: unable to read the machine account password for \
963 machine %s in domain %s.\n", global_myname
, global_myworkgroup
));
968 * Make sure someone else hasn't already done this.
971 if(t
< lct
+ lp_machine_password_timeout()) {
972 global_machine_password_needs_changing
= False
;
976 pstrcpy(remote_machine_list
, lp_passwordserver());
978 change_trust_account_password( global_myworkgroup
, remote_machine_list
);
979 global_machine_password_needs_changing
= False
;
983 * Check to see if we have any blocking locks
984 * outstanding on the queue.
986 process_blocking_lock_queue(t
);
989 * Check to see if we have any change notifies
990 * outstanding on the queue.
992 process_pending_change_notify_queue(t
);
995 * Now we are root, check if the log files need pruning.
997 if(need_to_check_log_size())
1001 * Modify the select timeout depending upon
1002 * what we have remaining in our queues.
1005 *select_timeout
= setup_select_timeout();
1010 /****************************************************************************
1011 process commands from the client
1012 ****************************************************************************/
1014 void smbd_process(void)
1016 extern int smb_echo_count
;
1017 time_t last_timeout_processing_time
= time(NULL
);
1018 unsigned int num_smbs
= 0;
1020 InBuffer
= (char *)malloc(BUFFER_SIZE
+ SAFETY_MARGIN
);
1021 OutBuffer
= (char *)malloc(BUFFER_SIZE
+ SAFETY_MARGIN
);
1022 if ((InBuffer
== NULL
) || (OutBuffer
== NULL
))
1025 InBuffer
+= SMB_ALIGNMENT
;
1026 OutBuffer
+= SMB_ALIGNMENT
;
1028 max_recv
= MIN(lp_maxxmit(),BUFFER_SIZE
);
1030 /* re-initialise the timezone */
1034 int deadtime
= lp_deadtime()*60;
1035 int select_timeout
= setup_select_timeout();
1039 deadtime
= DEFAULT_SMBD_TIMEOUT
;
1043 /* free up temporary memory */
1045 parse_talloc_free();
1047 while (!receive_message_or_smb(InBuffer
,BUFFER_SIZE
,select_timeout
)) {
1048 if(!timeout_processing( deadtime
, &select_timeout
, &last_timeout_processing_time
))
1050 num_smbs
= 0; /* Reset smb counter. */
1054 * Ensure we do timeout processing if the SMB we just got was
1055 * only an echo request. This allows us to set the select
1056 * timeout in 'receive_message_or_smb()' to any value we like
1057 * without worrying that the client will send echo requests
1058 * faster than the select timeout, thus starving out the
1059 * essential processing (change notify, blocking locks) that
1060 * the timeout code does. JRA.
1062 num_echos
= smb_echo_count
;
1064 process_smb(InBuffer
, OutBuffer
);
1066 if (smb_echo_count
!= num_echos
) {
1067 if(!timeout_processing( deadtime
, &select_timeout
, &last_timeout_processing_time
))
1069 num_smbs
= 0; /* Reset smb counter. */
1075 * If we are getting smb requests in a constant stream
1076 * with no echos, make sure we attempt timeout processing
1077 * every select_timeout milliseconds - but only check for this
1078 * every 200 smb requests.
1081 if ((num_smbs
% 200) == 0) {
1082 time_t new_check_time
= time(NULL
);
1083 if(last_timeout_processing_time
- new_check_time
>= (select_timeout
/1000)) {
1084 if(!timeout_processing( deadtime
, &select_timeout
, &last_timeout_processing_time
))
1086 num_smbs
= 0; /* Reset smb counter. */
1087 last_timeout_processing_time
= new_check_time
; /* Reset time. */