r24318: Print a prominent warning when reply_prep_legacy is called
[amitay/samba.git] / source3 / smbd / process.c
1 /* 
2    Unix SMB/CIFS implementation.
3    process incoming packets - main loop
4    Copyright (C) Andrew Tridgell 1992-1998
5    Copyright (C) Volker Lendecke 2005-2007
6    
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 3 of the License, or
10    (at your option) any later version.
11    
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.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 extern struct auth_context *negprot_global_auth_context;
24 extern int smb_echo_count;
25
26 const int total_buffer_size = (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE + SAFETY_MARGIN);
27
28 static char *InBuffer = NULL;
29 static char *OutBuffer = NULL;
30 static const char *current_inbuf = NULL;
31
32 static char *NewInBuffer(char **old_inbuf);
33 static char *NewOutBuffer(char **old_outbuf);
34
35 /* 
36  * Size of data we can send to client. Set
37  *  by the client for all protocols above CORE.
38  *  Set by us for CORE protocol.
39  */
40 int max_send = BUFFER_SIZE;
41 /*
42  * Size of the data we can receive. Set by us.
43  * Can be modified by the max xmit parameter.
44  */
45 int max_recv = BUFFER_SIZE;
46
47 extern int last_message;
48 extern int smb_read_error;
49 SIG_ATOMIC_T reload_after_sighup = 0;
50 SIG_ATOMIC_T got_sig_term = 0;
51 extern BOOL global_machine_password_needs_changing;
52 extern int max_send;
53
54 /*
55  * Initialize a struct smb_request from an inbuf
56  */
57
58 void init_smb_request(struct smb_request *req, const uint8 *inbuf)
59 {
60         req->flags2 = SVAL(inbuf, smb_flg2);
61         req->smbpid = SVAL(inbuf, smb_pid);
62         req->mid    = SVAL(inbuf, smb_mid);
63         req->vuid   = SVAL(inbuf, smb_uid);
64         req->tid    = SVAL(inbuf, smb_tid);
65         req->wct    = CVAL(inbuf, smb_wct);
66         req->inbuf  = inbuf;
67         req->outbuf = NULL;
68 }
69
70 /*
71  * From within a converted call you might have to call non-converted
72  * subroutines that still take the old inbuf/outbuf/lenght/bufsize
73  * parameters. This takes a struct smb_request and prepares the legacy
74  * parameters.
75  */
76
77 BOOL reply_prep_legacy(struct smb_request *req,
78                        char **pinbuf, char **poutbuf,
79                        int *psize, int *pbufsize)
80 {
81         const int bufsize = (BUFFER_SIZE + LARGE_WRITEX_HDR_SIZE
82                              + SAFETY_MARGIN);
83         char *inbuf, *outbuf;
84
85         DEBUG(1, ("reply_prep_legacy called\n"));
86
87         if (!(inbuf = TALLOC_ARRAY(req, char, bufsize))) {
88                 DEBUG(0, ("Could not allocate legacy inbuf\n"));
89                 return False;
90         }
91         memcpy(inbuf, req->inbuf, MIN(smb_len(req->inbuf)+4, bufsize));
92         req->inbuf = (uint8 *)inbuf;
93
94         if (!(outbuf = TALLOC_ARRAY(req, char, bufsize))) {
95                 DEBUG(0, ("Could not allocate legacy outbuf\n"));
96                 return False;
97         }
98         req->outbuf = (uint8 *)outbuf;
99
100         construct_reply_common(inbuf, outbuf);
101
102         *pinbuf   = inbuf;
103         *poutbuf  = outbuf;
104         *psize    = smb_len(inbuf)+4;
105         *pbufsize = bufsize;
106
107         return True;
108 }
109
110 /*
111  * Post-process the output of the legacy routine so that the result fits into
112  * the new reply_xxx API
113  */
114
115 void reply_post_legacy(struct smb_request *req, int outsize)
116 {
117         if (outsize > 0) {
118                 smb_setlen((char *)req->inbuf, (char *)req->outbuf,
119                            outsize);
120         }
121         else {
122                 TALLOC_FREE(req->outbuf);
123         }
124 }
125
126 /****************************************************************************
127  structure to hold a linked list of queued messages.
128  for processing.
129 ****************************************************************************/
130
131 static struct pending_message_list *deferred_open_queue;
132
133 /****************************************************************************
134  Function to push a message onto the tail of a linked list of smb messages
135  ready for processing.
136 ****************************************************************************/
137
138 static BOOL push_queued_message(const char *buf, int msg_len,
139                                 struct timeval request_time,
140                                 struct timeval end_time,
141                                 char *private_data, size_t private_len)
142 {
143         struct pending_message_list *msg;
144
145         msg = TALLOC_ZERO_P(NULL, struct pending_message_list);
146
147         if(msg == NULL) {
148                 DEBUG(0,("push_message: malloc fail (1)\n"));
149                 return False;
150         }
151
152         msg->buf = data_blob_talloc(msg, buf, msg_len);
153         if(msg->buf.data == NULL) {
154                 DEBUG(0,("push_message: malloc fail (2)\n"));
155                 TALLOC_FREE(msg);
156                 return False;
157         }
158
159         msg->request_time = request_time;
160         msg->end_time = end_time;
161
162         if (private_data) {
163                 msg->private_data = data_blob_talloc(msg, private_data,
164                                                      private_len);
165                 if (msg->private_data.data == NULL) {
166                         DEBUG(0,("push_message: malloc fail (3)\n"));
167                         TALLOC_FREE(msg);
168                         return False;
169                 }
170         }
171
172         DLIST_ADD_END(deferred_open_queue, msg, struct pending_message_list *);
173
174         DEBUG(10,("push_message: pushed message length %u on "
175                   "deferred_open_queue\n", (unsigned int)msg_len));
176
177         return True;
178 }
179
180 /****************************************************************************
181  Function to delete a sharing violation open message by mid.
182 ****************************************************************************/
183
184 void remove_deferred_open_smb_message(uint16 mid)
185 {
186         struct pending_message_list *pml;
187
188         for (pml = deferred_open_queue; pml; pml = pml->next) {
189                 if (mid == SVAL(pml->buf.data,smb_mid)) {
190                         DEBUG(10,("remove_deferred_open_smb_message: "
191                                   "deleting mid %u len %u\n",
192                                   (unsigned int)mid,
193                                   (unsigned int)pml->buf.length ));
194                         DLIST_REMOVE(deferred_open_queue, pml);
195                         TALLOC_FREE(pml);
196                         return;
197                 }
198         }
199 }
200
201 /****************************************************************************
202  Move a sharing violation open retry message to the front of the list and
203  schedule it for immediate processing.
204 ****************************************************************************/
205
206 void schedule_deferred_open_smb_message(uint16 mid)
207 {
208         struct pending_message_list *pml;
209         int i = 0;
210
211         for (pml = deferred_open_queue; pml; pml = pml->next) {
212                 uint16 msg_mid = SVAL(pml->buf.data,smb_mid);
213                 DEBUG(10, ("schedule_deferred_open_smb_message: [%d] "
214                            "msg_mid = %u\n", i++, (unsigned int)msg_mid ));
215                 if (mid == msg_mid) {
216                         DEBUG(10, ("schedule_deferred_open_smb_message: "
217                                    "scheduling mid %u\n", mid));
218                         pml->end_time.tv_sec = 0;
219                         pml->end_time.tv_usec = 0;
220                         DLIST_PROMOTE(deferred_open_queue, pml);
221                         return;
222                 }
223         }
224
225         DEBUG(10, ("schedule_deferred_open_smb_message: failed to find "
226                    "message mid %u\n", mid ));
227 }
228
229 /****************************************************************************
230  Return true if this mid is on the deferred queue.
231 ****************************************************************************/
232
233 BOOL open_was_deferred(uint16 mid)
234 {
235         struct pending_message_list *pml;
236
237         for (pml = deferred_open_queue; pml; pml = pml->next) {
238                 if (SVAL(pml->buf.data,smb_mid) == mid) {
239                         return True;
240                 }
241         }
242         return False;
243 }
244
245 /****************************************************************************
246  Return the message queued by this mid.
247 ****************************************************************************/
248
249 struct pending_message_list *get_open_deferred_message(uint16 mid)
250 {
251         struct pending_message_list *pml;
252
253         for (pml = deferred_open_queue; pml; pml = pml->next) {
254                 if (SVAL(pml->buf.data,smb_mid) == mid) {
255                         return pml;
256                 }
257         }
258         return NULL;
259 }
260
261 /****************************************************************************
262  Function to push a deferred open smb message onto a linked list of local smb
263  messages ready for processing.
264 ****************************************************************************/
265
266 BOOL push_deferred_smb_message(uint16 mid,
267                                struct timeval request_time,
268                                struct timeval timeout,
269                                char *private_data, size_t priv_len)
270 {
271         struct timeval end_time;
272
273         end_time = timeval_sum(&request_time, &timeout);
274
275         DEBUG(10,("push_deferred_open_smb_message: pushing message len %u mid %u "
276                   "timeout time [%u.%06u]\n",
277                   (unsigned int) smb_len(current_inbuf)+4, (unsigned int)mid,
278                   (unsigned int)end_time.tv_sec,
279                   (unsigned int)end_time.tv_usec));
280
281         return push_queued_message(current_inbuf, smb_len(current_inbuf)+4,
282                                    request_time, end_time,
283                                    private_data, priv_len);
284 }
285
286 struct idle_event {
287         struct timed_event *te;
288         struct timeval interval;
289         char *name;
290         BOOL (*handler)(const struct timeval *now, void *private_data);
291         void *private_data;
292 };
293
294 static void idle_event_handler(struct event_context *ctx,
295                                struct timed_event *te,
296                                const struct timeval *now,
297                                void *private_data)
298 {
299         struct idle_event *event =
300                 talloc_get_type_abort(private_data, struct idle_event);
301
302         TALLOC_FREE(event->te);
303
304         if (!event->handler(now, event->private_data)) {
305                 /* Don't repeat, delete ourselves */
306                 TALLOC_FREE(event);
307                 return;
308         }
309
310         event->te = event_add_timed(ctx, event,
311                                     timeval_sum(now, &event->interval),
312                                     event->name,
313                                     idle_event_handler, event);
314
315         /* We can't do much but fail here. */
316         SMB_ASSERT(event->te != NULL);
317 }
318
319 struct idle_event *event_add_idle(struct event_context *event_ctx,
320                                   TALLOC_CTX *mem_ctx,
321                                   struct timeval interval,
322                                   const char *name,
323                                   BOOL (*handler)(const struct timeval *now,
324                                                   void *private_data),
325                                   void *private_data)
326 {
327         struct idle_event *result;
328         struct timeval now = timeval_current();
329
330         result = TALLOC_P(mem_ctx, struct idle_event);
331         if (result == NULL) {
332                 DEBUG(0, ("talloc failed\n"));
333                 return NULL;
334         }
335
336         result->interval = interval;
337         result->handler = handler;
338         result->private_data = private_data;
339
340         if (!(result->name = talloc_asprintf(result, "idle_evt(%s)", name))) {
341                 DEBUG(0, ("talloc failed\n"));
342                 TALLOC_FREE(result);
343                 return NULL;
344         }
345
346         result->te = event_add_timed(event_ctx, result,
347                                      timeval_sum(&now, &interval),
348                                      result->name,
349                                      idle_event_handler, result);
350         if (result->te == NULL) {
351                 DEBUG(0, ("event_add_timed failed\n"));
352                 TALLOC_FREE(result);
353                 return NULL;
354         }
355
356         return result;
357 }
358
359 /****************************************************************************
360  Do all async processing in here. This includes kernel oplock messages, change
361  notify events etc.
362 ****************************************************************************/
363
364 static void async_processing(fd_set *pfds)
365 {
366         DEBUG(10,("async_processing: Doing async processing.\n"));
367
368         process_aio_queue();
369
370         process_kernel_oplocks(smbd_messaging_context(), pfds);
371
372         /* Do the aio check again after receive_local_message as it does a
373            select and may have eaten our signal. */
374         /* Is this till true? -- vl */
375         process_aio_queue();
376
377         if (got_sig_term) {
378                 exit_server_cleanly("termination signal");
379         }
380
381         /* check for sighup processing */
382         if (reload_after_sighup) {
383                 change_to_root_user();
384                 DEBUG(1,("Reloading services after SIGHUP\n"));
385                 reload_services(False);
386                 reload_after_sighup = 0;
387         }
388 }
389
390 /****************************************************************************
391  Add a fd to the set we will be select(2)ing on.
392 ****************************************************************************/
393
394 static int select_on_fd(int fd, int maxfd, fd_set *fds)
395 {
396         if (fd != -1) {
397                 FD_SET(fd, fds);
398                 maxfd = MAX(maxfd, fd);
399         }
400
401         return maxfd;
402 }
403
404 /****************************************************************************
405   Do a select on an two fd's - with timeout. 
406
407   If a local udp message has been pushed onto the
408   queue (this can only happen during oplock break
409   processing) call async_processing()
410
411   If a pending smb message has been pushed onto the
412   queue (this can only happen during oplock break
413   processing) return this next.
414
415   If the first smbfd is ready then read an smb from it.
416   if the second (loopback UDP) fd is ready then read a message
417   from it and setup the buffer header to identify the length
418   and from address.
419   Returns False on timeout or error.
420   Else returns True.
421
422 The timeout is in milliseconds
423 ****************************************************************************/
424
425 static BOOL receive_message_or_smb(TALLOC_CTX *mem_ctx, char **buffer,
426                                    size_t *buffer_len, int timeout)
427 {
428         fd_set r_fds, w_fds;
429         int selrtn;
430         struct timeval to;
431         int maxfd = 0;
432         ssize_t len;
433
434         smb_read_error = 0;
435
436  again:
437
438         if (timeout >= 0) {
439                 to.tv_sec = timeout / 1000;
440                 to.tv_usec = (timeout % 1000) * 1000;
441         } else {
442                 to.tv_sec = SMBD_SELECT_TIMEOUT;
443                 to.tv_usec = 0;
444         }
445
446         /*
447          * Note that this call must be before processing any SMB
448          * messages as we need to synchronously process any messages
449          * we may have sent to ourselves from the previous SMB.
450          */
451         message_dispatch(smbd_messaging_context());
452
453         /*
454          * Check to see if we already have a message on the deferred open queue
455          * and it's time to schedule.
456          */
457         if(deferred_open_queue != NULL) {
458                 BOOL pop_message = False;
459                 struct pending_message_list *msg = deferred_open_queue;
460
461                 if (timeval_is_zero(&msg->end_time)) {
462                         pop_message = True;
463                 } else {
464                         struct timeval tv;
465                         SMB_BIG_INT tdif;
466
467                         GetTimeOfDay(&tv);
468                         tdif = usec_time_diff(&msg->end_time, &tv);
469                         if (tdif <= 0) {
470                                 /* Timed out. Schedule...*/
471                                 pop_message = True;
472                                 DEBUG(10,("receive_message_or_smb: queued message timed out.\n"));
473                         } else {
474                                 /* Make a more accurate select timeout. */
475                                 to.tv_sec = tdif / 1000000;
476                                 to.tv_usec = tdif % 1000000;
477                                 DEBUG(10,("receive_message_or_smb: select with timeout of [%u.%06u]\n",
478                                         (unsigned int)to.tv_sec, (unsigned int)to.tv_usec ));
479                         }
480                 }
481
482                 if (pop_message) {
483
484                         *buffer = (char *)talloc_memdup(mem_ctx, msg->buf.data,
485                                                         msg->buf.length);
486                         if (*buffer == NULL) {
487                                 DEBUG(0, ("talloc failed\n"));
488                                 smb_read_error = READ_ERROR;
489                                 return False;
490                         }
491                         *buffer_len = msg->buf.length;
492
493                         /* We leave this message on the queue so the open code can
494                            know this is a retry. */
495                         DEBUG(5,("receive_message_or_smb: returning deferred open smb message.\n"));
496                         return True;
497                 }
498         }
499
500         /*
501          * Setup the select fd sets.
502          */
503
504         FD_ZERO(&r_fds);
505         FD_ZERO(&w_fds);
506
507         /*
508          * Ensure we process oplock break messages by preference.
509          * We have to do this before the select, after the select
510          * and if the select returns EINTR. This is due to the fact
511          * that the selects called from async_processing can eat an EINTR
512          * caused by a signal (we can't take the break message there).
513          * This is hideously complex - *MUST* be simplified for 3.0 ! JRA.
514          */
515
516         if (oplock_message_waiting(&r_fds)) {
517                 DEBUG(10,("receive_message_or_smb: oplock_message is waiting.\n"));
518                 async_processing(&r_fds);
519                 /*
520                  * After async processing we must go and do the select again, as
521                  * the state of the flag in fds for the server file descriptor is
522                  * indeterminate - we may have done I/O on it in the oplock processing. JRA.
523                  */
524                 goto again;
525         }
526
527         /*
528          * Are there any timed events waiting ? If so, ensure we don't
529          * select for longer than it would take to wait for them.
530          */
531
532         {
533                 struct timeval now;
534                 GetTimeOfDay(&now);
535
536                 event_add_to_select_args(smbd_event_context(), &now,
537                                          &r_fds, &w_fds, &to, &maxfd);
538         }
539
540         if (timeval_is_zero(&to)) {
541                 /* Process a timed event now... */
542                 if (run_events(smbd_event_context(), 0, NULL, NULL)) {
543                         goto again;
544                 }
545         }
546         
547         {
548                 int sav;
549                 START_PROFILE(smbd_idle);
550
551                 maxfd = select_on_fd(smbd_server_fd(), maxfd, &r_fds);
552                 maxfd = select_on_fd(oplock_notify_fd(), maxfd, &r_fds);
553
554                 selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&to);
555                 sav = errno;
556
557                 END_PROFILE(smbd_idle);
558                 errno = sav;
559         }
560
561         if (run_events(smbd_event_context(), selrtn, &r_fds, &w_fds)) {
562                 goto again;
563         }
564
565         /* if we get EINTR then maybe we have received an oplock
566            signal - treat this as select returning 1. This is ugly, but
567            is the best we can do until the oplock code knows more about
568            signals */
569         if (selrtn == -1 && errno == EINTR) {
570                 async_processing(&r_fds);
571                 /*
572                  * After async processing we must go and do the select again, as
573                  * the state of the flag in fds for the server file descriptor is
574                  * indeterminate - we may have done I/O on it in the oplock processing. JRA.
575                  */
576                 goto again;
577         }
578
579         /* Check if error */
580         if (selrtn == -1) {
581                 /* something is wrong. Maybe the socket is dead? */
582                 smb_read_error = READ_ERROR;
583                 return False;
584         } 
585     
586         /* Did we timeout ? */
587         if (selrtn == 0) {
588                 smb_read_error = READ_TIMEOUT;
589                 return False;
590         }
591
592         /*
593          * Ensure we process oplock break messages by preference.
594          * This is IMPORTANT ! Otherwise we can starve other processes
595          * sending us an oplock break message. JRA.
596          */
597
598         if (oplock_message_waiting(&r_fds)) {
599                 async_processing(&r_fds);
600                 /*
601                  * After async processing we must go and do the select again, as
602                  * the state of the flag in fds for the server file descriptor is
603                  * indeterminate - we may have done I/O on it in the oplock processing. JRA.
604                  */
605                 goto again;
606         }
607
608         len = receive_smb_talloc(mem_ctx, smbd_server_fd(), buffer, 0);
609
610         if (len == -1) {
611                 return False;
612         }
613
614         *buffer_len = (size_t)len;
615
616         return True;
617 }
618
619 /*
620  * Only allow 5 outstanding trans requests. We're allocating memory, so
621  * prevent a DoS.
622  */
623
624 NTSTATUS allow_new_trans(struct trans_state *list, int mid)
625 {
626         int count = 0;
627         for (; list != NULL; list = list->next) {
628
629                 if (list->mid == mid) {
630                         return NT_STATUS_INVALID_PARAMETER;
631                 }
632
633                 count += 1;
634         }
635         if (count > 5) {
636                 return NT_STATUS_INSUFFICIENT_RESOURCES;
637         }
638
639         return NT_STATUS_OK;
640 }
641
642 /****************************************************************************
643  We're terminating and have closed all our files/connections etc.
644  If there are any pending local messages we need to respond to them
645  before termination so that other smbds don't think we just died whilst
646  holding oplocks.
647 ****************************************************************************/
648
649 void respond_to_all_remaining_local_messages(void)
650 {
651         /*
652          * Assert we have no exclusive open oplocks.
653          */
654
655         if(get_number_of_exclusive_open_oplocks()) {
656                 DEBUG(0,("respond_to_all_remaining_local_messages: PANIC : we have %d exclusive oplocks.\n",
657                         get_number_of_exclusive_open_oplocks() ));
658                 return;
659         }
660
661         process_kernel_oplocks(smbd_messaging_context(), NULL);
662
663         return;
664 }
665
666
667 /*
668 These flags determine some of the permissions required to do an operation 
669
670 Note that I don't set NEED_WRITE on some write operations because they
671 are used by some brain-dead clients when printing, and I don't want to
672 force write permissions on print services.
673 */
674 #define AS_USER (1<<0)
675 #define NEED_WRITE (1<<1) /* Must be paired with AS_USER */
676 #define TIME_INIT (1<<2)
677 #define CAN_IPC (1<<3) /* Must be paired with AS_USER */
678 #define AS_GUEST (1<<5) /* Must *NOT* be paired with AS_USER */
679 #define DO_CHDIR (1<<6)
680
681 /* 
682    define a list of possible SMB messages and their corresponding
683    functions. Any message that has a NULL function is unimplemented -
684    please feel free to contribute implementations!
685 */
686 static const struct smb_message_struct {
687         const char *name;
688         int (*fn)(connection_struct *conn, char *, char *, int, int);
689         void (*fn_new)(connection_struct *conn, struct smb_request *req);
690         int flags;
691 } smb_messages[256] = {
692
693 /* 0x00 */ { "SMBmkdir",NULL,reply_mkdir,AS_USER | NEED_WRITE},
694 /* 0x01 */ { "SMBrmdir",NULL,reply_rmdir,AS_USER | NEED_WRITE},
695 /* 0x02 */ { "SMBopen",reply_open,NULL,AS_USER },
696 /* 0x03 */ { "SMBcreate",reply_mknew,NULL,AS_USER},
697 /* 0x04 */ { "SMBclose",NULL,reply_close,AS_USER | CAN_IPC },
698 /* 0x05 */ { "SMBflush",NULL,reply_flush,AS_USER},
699 /* 0x06 */ { "SMBunlink",NULL,reply_unlink,AS_USER | NEED_WRITE },
700 /* 0x07 */ { "SMBmv",reply_mv,NULL,AS_USER | NEED_WRITE },
701 /* 0x08 */ { "SMBgetatr",reply_getatr,NULL,AS_USER},
702 /* 0x09 */ { "SMBsetatr",reply_setatr,NULL,AS_USER | NEED_WRITE},
703 /* 0x0a */ { "SMBread",reply_read,NULL,AS_USER},
704 /* 0x0b */ { "SMBwrite",reply_write,NULL,AS_USER | CAN_IPC },
705 /* 0x0c */ { "SMBlock",reply_lock,NULL,AS_USER},
706 /* 0x0d */ { "SMBunlock",reply_unlock,NULL,AS_USER},
707 /* 0x0e */ { "SMBctemp",reply_ctemp,NULL,AS_USER },
708 /* 0x0f */ { "SMBmknew",reply_mknew,NULL,AS_USER},
709 /* 0x10 */ { "SMBcheckpath",NULL,reply_checkpath,AS_USER},
710 /* 0x11 */ { "SMBexit",NULL,reply_exit,DO_CHDIR},
711 /* 0x12 */ { "SMBlseek",reply_lseek,NULL,AS_USER},
712 /* 0x13 */ { "SMBlockread",reply_lockread,NULL,AS_USER},
713 /* 0x14 */ { "SMBwriteunlock",reply_writeunlock,NULL,AS_USER},
714 /* 0x15 */ { NULL, NULL, NULL, 0 },
715 /* 0x16 */ { NULL, NULL, NULL, 0 },
716 /* 0x17 */ { NULL, NULL, NULL, 0 },
717 /* 0x18 */ { NULL, NULL, NULL, 0 },
718 /* 0x19 */ { NULL, NULL, NULL, 0 },
719 /* 0x1a */ { "SMBreadbraw",reply_readbraw,NULL,AS_USER},
720 /* 0x1b */ { "SMBreadBmpx",reply_readbmpx,NULL,AS_USER},
721 /* 0x1c */ { "SMBreadBs",NULL, NULL,0 },
722 /* 0x1d */ { "SMBwritebraw",reply_writebraw,NULL,AS_USER},
723 /* 0x1e */ { "SMBwriteBmpx",reply_writebmpx,NULL,AS_USER},
724 /* 0x1f */ { "SMBwriteBs",reply_writebs,NULL,AS_USER},
725 /* 0x20 */ { "SMBwritec",NULL, NULL,0},
726 /* 0x21 */ { NULL, NULL, NULL, 0 },
727 /* 0x22 */ { "SMBsetattrE",reply_setattrE,NULL,AS_USER | NEED_WRITE },
728 /* 0x23 */ { "SMBgetattrE",reply_getattrE,NULL,AS_USER },
729 /* 0x24 */ { "SMBlockingX",reply_lockingX,NULL,AS_USER },
730 /* 0x25 */ { "SMBtrans",NULL,reply_trans,AS_USER | CAN_IPC },
731 /* 0x26 */ { "SMBtranss",NULL,reply_transs,AS_USER | CAN_IPC},
732 /* 0x27 */ { "SMBioctl",reply_ioctl,NULL,0},
733 /* 0x28 */ { "SMBioctls",NULL, NULL,AS_USER},
734 /* 0x29 */ { "SMBcopy",reply_copy,NULL,AS_USER | NEED_WRITE },
735 /* 0x2a */ { "SMBmove",NULL, NULL,AS_USER | NEED_WRITE },
736 /* 0x2b */ { "SMBecho",NULL,reply_echo,0},
737 /* 0x2c */ { "SMBwriteclose",reply_writeclose,NULL,AS_USER},
738 /* 0x2d */ { "SMBopenX",NULL,reply_open_and_X,AS_USER | CAN_IPC },
739 /* 0x2e */ { "SMBreadX",reply_read_and_X,NULL,AS_USER | CAN_IPC },
740 /* 0x2f */ { "SMBwriteX",NULL,reply_write_and_X,AS_USER | CAN_IPC },
741 /* 0x30 */ { NULL, NULL, NULL, 0 },
742 /* 0x31 */ { NULL, NULL, NULL, 0 },
743 /* 0x32 */ { "SMBtrans2", NULL,reply_trans2, AS_USER | CAN_IPC },
744 /* 0x33 */ { "SMBtranss2", NULL,reply_transs2, AS_USER},
745 /* 0x34 */ { "SMBfindclose", reply_findclose,NULL,AS_USER},
746 /* 0x35 */ { "SMBfindnclose", reply_findnclose,NULL, AS_USER},
747 /* 0x36 */ { NULL, NULL, NULL, 0 },
748 /* 0x37 */ { NULL, NULL, NULL, 0 },
749 /* 0x38 */ { NULL, NULL, NULL, 0 },
750 /* 0x39 */ { NULL, NULL, NULL, 0 },
751 /* 0x3a */ { NULL, NULL, NULL, 0 },
752 /* 0x3b */ { NULL, NULL, NULL, 0 },
753 /* 0x3c */ { NULL, NULL, NULL, 0 },
754 /* 0x3d */ { NULL, NULL, NULL, 0 },
755 /* 0x3e */ { NULL, NULL, NULL, 0 },
756 /* 0x3f */ { NULL, NULL, NULL, 0 },
757 /* 0x40 */ { NULL, NULL, NULL, 0 },
758 /* 0x41 */ { NULL, NULL, NULL, 0 },
759 /* 0x42 */ { NULL, NULL, NULL, 0 },
760 /* 0x43 */ { NULL, NULL, NULL, 0 },
761 /* 0x44 */ { NULL, NULL, NULL, 0 },
762 /* 0x45 */ { NULL, NULL, NULL, 0 },
763 /* 0x46 */ { NULL, NULL, NULL, 0 },
764 /* 0x47 */ { NULL, NULL, NULL, 0 },
765 /* 0x48 */ { NULL, NULL, NULL, 0 },
766 /* 0x49 */ { NULL, NULL, NULL, 0 },
767 /* 0x4a */ { NULL, NULL, NULL, 0 },
768 /* 0x4b */ { NULL, NULL, NULL, 0 },
769 /* 0x4c */ { NULL, NULL, NULL, 0 },
770 /* 0x4d */ { NULL, NULL, NULL, 0 },
771 /* 0x4e */ { NULL, NULL, NULL, 0 },
772 /* 0x4f */ { NULL, NULL, NULL, 0 },
773 /* 0x50 */ { NULL, NULL, NULL, 0 },
774 /* 0x51 */ { NULL, NULL, NULL, 0 },
775 /* 0x52 */ { NULL, NULL, NULL, 0 },
776 /* 0x53 */ { NULL, NULL, NULL, 0 },
777 /* 0x54 */ { NULL, NULL, NULL, 0 },
778 /* 0x55 */ { NULL, NULL, NULL, 0 },
779 /* 0x56 */ { NULL, NULL, NULL, 0 },
780 /* 0x57 */ { NULL, NULL, NULL, 0 },
781 /* 0x58 */ { NULL, NULL, NULL, 0 },
782 /* 0x59 */ { NULL, NULL, NULL, 0 },
783 /* 0x5a */ { NULL, NULL, NULL, 0 },
784 /* 0x5b */ { NULL, NULL, NULL, 0 },
785 /* 0x5c */ { NULL, NULL, NULL, 0 },
786 /* 0x5d */ { NULL, NULL, NULL, 0 },
787 /* 0x5e */ { NULL, NULL, NULL, 0 },
788 /* 0x5f */ { NULL, NULL, NULL, 0 },
789 /* 0x60 */ { NULL, NULL, NULL, 0 },
790 /* 0x61 */ { NULL, NULL, NULL, 0 },
791 /* 0x62 */ { NULL, NULL, NULL, 0 },
792 /* 0x63 */ { NULL, NULL, NULL, 0 },
793 /* 0x64 */ { NULL, NULL, NULL, 0 },
794 /* 0x65 */ { NULL, NULL, NULL, 0 },
795 /* 0x66 */ { NULL, NULL, NULL, 0 },
796 /* 0x67 */ { NULL, NULL, NULL, 0 },
797 /* 0x68 */ { NULL, NULL, NULL, 0 },
798 /* 0x69 */ { NULL, NULL, NULL, 0 },
799 /* 0x6a */ { NULL, NULL, NULL, 0 },
800 /* 0x6b */ { NULL, NULL, NULL, 0 },
801 /* 0x6c */ { NULL, NULL, NULL, 0 },
802 /* 0x6d */ { NULL, NULL, NULL, 0 },
803 /* 0x6e */ { NULL, NULL, NULL, 0 },
804 /* 0x6f */ { NULL, NULL, NULL, 0 },
805 /* 0x70 */ { "SMBtcon",reply_tcon,NULL,0},
806 /* 0x71 */ { "SMBtdis",NULL,reply_tdis,DO_CHDIR},
807 /* 0x72 */ { "SMBnegprot",NULL,reply_negprot,0},
808 /* 0x73 */ { "SMBsesssetupX",NULL,reply_sesssetup_and_X,0},
809 /* 0x74 */ { "SMBulogoffX", NULL,reply_ulogoffX, 0}, /* ulogoff doesn't give a valid TID */
810 /* 0x75 */ { "SMBtconX",NULL,reply_tcon_and_X,0},
811 /* 0x76 */ { NULL, NULL, NULL, 0 },
812 /* 0x77 */ { NULL, NULL, NULL, 0 },
813 /* 0x78 */ { NULL, NULL, NULL, 0 },
814 /* 0x79 */ { NULL, NULL, NULL, 0 },
815 /* 0x7a */ { NULL, NULL, NULL, 0 },
816 /* 0x7b */ { NULL, NULL, NULL, 0 },
817 /* 0x7c */ { NULL, NULL, NULL, 0 },
818 /* 0x7d */ { NULL, NULL, NULL, 0 },
819 /* 0x7e */ { NULL, NULL, NULL, 0 },
820 /* 0x7f */ { NULL, NULL, NULL, 0 },
821 /* 0x80 */ { "SMBdskattr",NULL,reply_dskattr,AS_USER},
822 /* 0x81 */ { "SMBsearch",reply_search,NULL,AS_USER},
823 /* 0x82 */ { "SMBffirst",reply_search,NULL,AS_USER},
824 /* 0x83 */ { "SMBfunique",reply_search,NULL,AS_USER},
825 /* 0x84 */ { "SMBfclose",reply_fclose,NULL,AS_USER},
826 /* 0x85 */ { NULL, NULL, NULL, 0 },
827 /* 0x86 */ { NULL, NULL, NULL, 0 },
828 /* 0x87 */ { NULL, NULL, NULL, 0 },
829 /* 0x88 */ { NULL, NULL, NULL, 0 },
830 /* 0x89 */ { NULL, NULL, NULL, 0 },
831 /* 0x8a */ { NULL, NULL, NULL, 0 },
832 /* 0x8b */ { NULL, NULL, NULL, 0 },
833 /* 0x8c */ { NULL, NULL, NULL, 0 },
834 /* 0x8d */ { NULL, NULL, NULL, 0 },
835 /* 0x8e */ { NULL, NULL, NULL, 0 },
836 /* 0x8f */ { NULL, NULL, NULL, 0 },
837 /* 0x90 */ { NULL, NULL, NULL, 0 },
838 /* 0x91 */ { NULL, NULL, NULL, 0 },
839 /* 0x92 */ { NULL, NULL, NULL, 0 },
840 /* 0x93 */ { NULL, NULL, NULL, 0 },
841 /* 0x94 */ { NULL, NULL, NULL, 0 },
842 /* 0x95 */ { NULL, NULL, NULL, 0 },
843 /* 0x96 */ { NULL, NULL, NULL, 0 },
844 /* 0x97 */ { NULL, NULL, NULL, 0 },
845 /* 0x98 */ { NULL, NULL, NULL, 0 },
846 /* 0x99 */ { NULL, NULL, NULL, 0 },
847 /* 0x9a */ { NULL, NULL, NULL, 0 },
848 /* 0x9b */ { NULL, NULL, NULL, 0 },
849 /* 0x9c */ { NULL, NULL, NULL, 0 },
850 /* 0x9d */ { NULL, NULL, NULL, 0 },
851 /* 0x9e */ { NULL, NULL, NULL, 0 },
852 /* 0x9f */ { NULL, NULL, NULL, 0 },
853 /* 0xa0 */ { "SMBnttrans", reply_nttrans,NULL, AS_USER | CAN_IPC },
854 /* 0xa1 */ { "SMBnttranss", reply_nttranss,NULL, AS_USER | CAN_IPC },
855 /* 0xa2 */ { "SMBntcreateX", NULL,reply_ntcreate_and_X, AS_USER | CAN_IPC },
856 /* 0xa3 */ { NULL, NULL, NULL, 0 },
857 /* 0xa4 */ { "SMBntcancel", NULL,reply_ntcancel, 0 },
858 /* 0xa5 */ { "SMBntrename", reply_ntrename,NULL, AS_USER | NEED_WRITE },
859 /* 0xa6 */ { NULL, NULL, NULL, 0 },
860 /* 0xa7 */ { NULL, NULL, NULL, 0 },
861 /* 0xa8 */ { NULL, NULL, NULL, 0 },
862 /* 0xa9 */ { NULL, NULL, NULL, 0 },
863 /* 0xaa */ { NULL, NULL, NULL, 0 },
864 /* 0xab */ { NULL, NULL, NULL, 0 },
865 /* 0xac */ { NULL, NULL, NULL, 0 },
866 /* 0xad */ { NULL, NULL, NULL, 0 },
867 /* 0xae */ { NULL, NULL, NULL, 0 },
868 /* 0xaf */ { NULL, NULL, NULL, 0 },
869 /* 0xb0 */ { NULL, NULL, NULL, 0 },
870 /* 0xb1 */ { NULL, NULL, NULL, 0 },
871 /* 0xb2 */ { NULL, NULL, NULL, 0 },
872 /* 0xb3 */ { NULL, NULL, NULL, 0 },
873 /* 0xb4 */ { NULL, NULL, NULL, 0 },
874 /* 0xb5 */ { NULL, NULL, NULL, 0 },
875 /* 0xb6 */ { NULL, NULL, NULL, 0 },
876 /* 0xb7 */ { NULL, NULL, NULL, 0 },
877 /* 0xb8 */ { NULL, NULL, NULL, 0 },
878 /* 0xb9 */ { NULL, NULL, NULL, 0 },
879 /* 0xba */ { NULL, NULL, NULL, 0 },
880 /* 0xbb */ { NULL, NULL, NULL, 0 },
881 /* 0xbc */ { NULL, NULL, NULL, 0 },
882 /* 0xbd */ { NULL, NULL, NULL, 0 },
883 /* 0xbe */ { NULL, NULL, NULL, 0 },
884 /* 0xbf */ { NULL, NULL, NULL, 0 },
885 /* 0xc0 */ { "SMBsplopen",reply_printopen,NULL,AS_USER},
886 /* 0xc1 */ { "SMBsplwr",reply_printwrite,NULL,AS_USER},
887 /* 0xc2 */ { "SMBsplclose",reply_printclose,NULL,AS_USER},
888 /* 0xc3 */ { "SMBsplretq",reply_printqueue,NULL,AS_USER},
889 /* 0xc4 */ { NULL, NULL, NULL, 0 },
890 /* 0xc5 */ { NULL, NULL, NULL, 0 },
891 /* 0xc6 */ { NULL, NULL, NULL, 0 },
892 /* 0xc7 */ { NULL, NULL, NULL, 0 },
893 /* 0xc8 */ { NULL, NULL, NULL, 0 },
894 /* 0xc9 */ { NULL, NULL, NULL, 0 },
895 /* 0xca */ { NULL, NULL, NULL, 0 },
896 /* 0xcb */ { NULL, NULL, NULL, 0 },
897 /* 0xcc */ { NULL, NULL, NULL, 0 },
898 /* 0xcd */ { NULL, NULL, NULL, 0 },
899 /* 0xce */ { NULL, NULL, NULL, 0 },
900 /* 0xcf */ { NULL, NULL, NULL, 0 },
901 /* 0xd0 */ { "SMBsends",reply_sends,NULL,AS_GUEST},
902 /* 0xd1 */ { "SMBsendb",NULL, NULL,AS_GUEST},
903 /* 0xd2 */ { "SMBfwdname",NULL, NULL,AS_GUEST},
904 /* 0xd3 */ { "SMBcancelf",NULL, NULL,AS_GUEST},
905 /* 0xd4 */ { "SMBgetmac",NULL, NULL,AS_GUEST},
906 /* 0xd5 */ { "SMBsendstrt",reply_sendstrt,NULL,AS_GUEST},
907 /* 0xd6 */ { "SMBsendend",reply_sendend,NULL,AS_GUEST},
908 /* 0xd7 */ { "SMBsendtxt",reply_sendtxt,NULL,AS_GUEST},
909 /* 0xd8 */ { NULL, NULL, NULL, 0 },
910 /* 0xd9 */ { NULL, NULL, NULL, 0 },
911 /* 0xda */ { NULL, NULL, NULL, 0 },
912 /* 0xdb */ { NULL, NULL, NULL, 0 },
913 /* 0xdc */ { NULL, NULL, NULL, 0 },
914 /* 0xdd */ { NULL, NULL, NULL, 0 },
915 /* 0xde */ { NULL, NULL, NULL, 0 },
916 /* 0xdf */ { NULL, NULL, NULL, 0 },
917 /* 0xe0 */ { NULL, NULL, NULL, 0 },
918 /* 0xe1 */ { NULL, NULL, NULL, 0 },
919 /* 0xe2 */ { NULL, NULL, NULL, 0 },
920 /* 0xe3 */ { NULL, NULL, NULL, 0 },
921 /* 0xe4 */ { NULL, NULL, NULL, 0 },
922 /* 0xe5 */ { NULL, NULL, NULL, 0 },
923 /* 0xe6 */ { NULL, NULL, NULL, 0 },
924 /* 0xe7 */ { NULL, NULL, NULL, 0 },
925 /* 0xe8 */ { NULL, NULL, NULL, 0 },
926 /* 0xe9 */ { NULL, NULL, NULL, 0 },
927 /* 0xea */ { NULL, NULL, NULL, 0 },
928 /* 0xeb */ { NULL, NULL, NULL, 0 },
929 /* 0xec */ { NULL, NULL, NULL, 0 },
930 /* 0xed */ { NULL, NULL, NULL, 0 },
931 /* 0xee */ { NULL, NULL, NULL, 0 },
932 /* 0xef */ { NULL, NULL, NULL, 0 },
933 /* 0xf0 */ { NULL, NULL, NULL, 0 },
934 /* 0xf1 */ { NULL, NULL, NULL, 0 },
935 /* 0xf2 */ { NULL, NULL, NULL, 0 },
936 /* 0xf3 */ { NULL, NULL, NULL, 0 },
937 /* 0xf4 */ { NULL, NULL, NULL, 0 },
938 /* 0xf5 */ { NULL, NULL, NULL, 0 },
939 /* 0xf6 */ { NULL, NULL, NULL, 0 },
940 /* 0xf7 */ { NULL, NULL, NULL, 0 },
941 /* 0xf8 */ { NULL, NULL, NULL, 0 },
942 /* 0xf9 */ { NULL, NULL, NULL, 0 },
943 /* 0xfa */ { NULL, NULL, NULL, 0 },
944 /* 0xfb */ { NULL, NULL, NULL, 0 },
945 /* 0xfc */ { NULL, NULL, NULL, 0 },
946 /* 0xfd */ { NULL, NULL, NULL, 0 },
947 /* 0xfe */ { NULL, NULL, NULL, 0 },
948 /* 0xff */ { NULL, NULL, NULL, 0 }
949
950 };
951
952 /*******************************************************************
953  allocate and initialize a reply packet
954 ********************************************************************/
955
956 void reply_outbuf(struct smb_request *req, uint8 num_words, uint16 num_bytes)
957 {
958         if (!(req->outbuf = TALLOC_ARRAY(
959                       req, uint8,
960                       smb_size + num_words*2 + num_bytes))) {
961                 smb_panic("could not allocate output buffer\n");
962         }
963
964         construct_reply_common((char *)req->inbuf, (char *)req->outbuf);
965         set_message((char *)req->inbuf, (char *)req->outbuf,
966                     num_words, num_bytes, False);
967         /*
968          * Zero out the word area, the caller has to take care of the bcc area
969          * himself
970          */
971         if (num_words != 0) {
972                 memset(req->outbuf + smb_vwv0, 0, num_words*2);
973         }
974
975         return;
976 }
977
978
979 /*******************************************************************
980  Dump a packet to a file.
981 ********************************************************************/
982
983 static void smb_dump(const char *name, int type, const char *data, ssize_t len)
984 {
985         int fd, i;
986         pstring fname;
987         if (DEBUGLEVEL < 50) return;
988
989         if (len < 4) len = smb_len(data)+4;
990         for (i=1;i<100;i++) {
991                 slprintf(fname,sizeof(fname)-1, "/tmp/%s.%d.%s", name, i,
992                                 type ? "req" : "resp");
993                 fd = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0644);
994                 if (fd != -1 || errno != EEXIST) break;
995         }
996         if (fd != -1) {
997                 ssize_t ret = write(fd, data, len);
998                 if (ret != len)
999                         DEBUG(0,("smb_dump: problem: write returned %d\n", (int)ret ));
1000                 close(fd);
1001                 DEBUG(0,("created %s len %lu\n", fname, (unsigned long)len));
1002         }
1003 }
1004
1005 /****************************************************************************
1006  Prepare everything for calling the actual request function, and potentially
1007  call the request function via the "new" interface.
1008
1009  Return False if the "legacy" function needs to be called, everything is
1010  prepared.
1011
1012  Return True if we're done.
1013
1014  I know this API sucks, but it is the one with the least code change I could
1015  find.
1016 ****************************************************************************/
1017
1018 static BOOL switch_message_new(uint8 type, struct smb_request *req, int size,
1019                                connection_struct **pconn)
1020 {
1021         int flags;
1022         uint16 session_tag;
1023         connection_struct *conn;
1024
1025         static uint16 last_session_tag = UID_FIELD_INVALID;
1026
1027         errno = 0;
1028
1029         last_message = type;
1030
1031         /* Make sure this is an SMB packet. smb_size contains NetBIOS header
1032          * so subtract 4 from it. */
1033         if ((strncmp(smb_base(req->inbuf),"\377SMB",4) != 0)
1034             || (size < (smb_size - 4))) {
1035                 DEBUG(2,("Non-SMB packet of length %d. Terminating server\n",
1036                          smb_len(req->inbuf)));
1037                 exit_server_cleanly("Non-SMB packet");
1038                 return True;
1039         }
1040
1041         if ((smb_messages[type].fn == NULL)
1042             && (smb_messages[type].fn_new == NULL)) {
1043                 DEBUG(0,("Unknown message type %d!\n",type));
1044                 smb_dump("Unknown", 1, (char *)req->inbuf, size);
1045                 reply_unknown_new(req, type);
1046                 goto done;
1047         }
1048
1049         flags = smb_messages[type].flags;
1050
1051         /* In share mode security we must ignore the vuid. */
1052         session_tag = (lp_security() == SEC_SHARE)
1053                 ? UID_FIELD_INVALID : req->vuid;
1054         conn = conn_find(req->tid);
1055
1056         DEBUG(3,("switch message %s (pid %d) conn 0x%lx\n", smb_fn_name(type),
1057                  (int)sys_getpid(), (unsigned long)conn));
1058
1059         smb_dump(smb_fn_name(type), 1, (char *)req->inbuf, size);
1060
1061         /* Ensure this value is replaced in the incoming packet. */
1062         SSVAL(req->inbuf,smb_uid,session_tag);
1063
1064         /*
1065          * Ensure the correct username is in current_user_info.  This is a
1066          * really ugly bugfix for problems with multiple session_setup_and_X's
1067          * being done and allowing %U and %G substitutions to work correctly.
1068          * There is a reason this code is done here, don't move it unless you
1069          * know what you're doing... :-).
1070          * JRA.
1071          */
1072
1073         if (session_tag != last_session_tag) {
1074                 user_struct *vuser = NULL;
1075
1076                 last_session_tag = session_tag;
1077                 if(session_tag != UID_FIELD_INVALID) {
1078                         vuser = get_valid_user_struct(session_tag);
1079                         if (vuser) {
1080                                 set_current_user_info(&vuser->user);
1081                         }
1082                 }
1083         }
1084
1085         /* Does this call need to be run as the connected user? */
1086         if (flags & AS_USER) {
1087
1088                 /* Does this call need a valid tree connection? */
1089                 if (!conn) {
1090                         /*
1091                          * Amazingly, the error code depends on the command
1092                          * (from Samba4).
1093                          */
1094                         if (type == SMBntcreateX) {
1095                                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
1096                         } else {
1097                                 reply_doserror(req, ERRSRV, ERRinvnid);
1098                         }
1099                         goto done;
1100                 }
1101
1102                 if (!change_to_user(conn,session_tag)) {
1103                         reply_nterror(req, NT_STATUS_DOS(ERRSRV, ERRbaduid));
1104                         goto done;
1105                 }
1106
1107                 /* All NEED_WRITE and CAN_IPC flags must also have AS_USER. */
1108
1109                 /* Does it need write permission? */
1110                 if ((flags & NEED_WRITE) && !CAN_WRITE(conn)) {
1111                         reply_nterror(req, NT_STATUS_MEDIA_WRITE_PROTECTED);
1112                         goto done;
1113                 }
1114
1115                 /* IPC services are limited */
1116                 if (IS_IPC(conn) && !(flags & CAN_IPC)) {
1117                         reply_doserror(req, ERRSRV,ERRaccess);
1118                         goto done;
1119                 }
1120         } else {
1121                 /* This call needs to be run as root */
1122                 change_to_root_user();
1123         }
1124
1125         /* load service specific parameters */
1126         if (conn) {
1127                 if (!set_current_service(conn,SVAL(req->inbuf,smb_flg),
1128                                          (flags & (AS_USER|DO_CHDIR)
1129                                           ?True:False))) {
1130                         reply_doserror(req, ERRSRV, ERRaccess);
1131                         goto done;
1132                 }
1133                 conn->num_smb_operations++;
1134         }
1135
1136         /* does this protocol need to be run as guest? */
1137         if ((flags & AS_GUEST)
1138             && (!change_to_guest() ||
1139                 !check_access(smbd_server_fd(), lp_hostsallow(-1),
1140                               lp_hostsdeny(-1)))) {
1141                 reply_doserror(req, ERRSRV, ERRaccess);
1142                 goto done;
1143         }
1144
1145         current_inbuf = (char *)req->inbuf; /* In case we need to defer this
1146                                              * message in open... */
1147
1148         if (smb_messages[type].fn_new != NULL) {
1149                 smb_messages[type].fn_new(conn, req);
1150                 goto done;
1151         }
1152
1153         /*
1154          * Indicate the upper layer that there's still work.
1155          */
1156         *pconn = conn;
1157         return False;
1158
1159  done:
1160         return True;
1161 }
1162
1163
1164 /****************************************************************************
1165  Do a switch on the message type, and return the response size
1166 ****************************************************************************/
1167
1168 static int switch_message(uint8 type, struct smb_request *req, char **outbuf,
1169                           int size, int bufsize)
1170 {
1171         int outsize = 0;
1172         connection_struct *conn = NULL;
1173
1174         if (switch_message_new(type, req, size, &conn)) {
1175                 if (req->outbuf != NULL) {
1176                         *outbuf = (char *)req->outbuf;
1177                         return smb_len(req->outbuf)+4;
1178                 }
1179                 return -1;
1180         }
1181
1182         if (InBuffer == NULL) {
1183                 DEBUG(1, ("have to alloc InBuffer for %s\n",
1184                           smb_fn_name(type)));
1185                 if (NewInBuffer(NULL) == NULL) {
1186                         smb_panic("Could not allocate InBuffer");
1187                 }
1188         }
1189
1190         if ((OutBuffer == NULL) && (NewOutBuffer(NULL) == NULL)) {
1191                 smb_panic("Could not allocate OutBuffer");
1192         }
1193
1194         clobber_region(SAFE_STRING_FUNCTION_NAME, SAFE_STRING_LINE, OutBuffer,
1195                        total_buffer_size);
1196
1197         memcpy(InBuffer, req->inbuf, MIN(size, total_buffer_size));
1198
1199         construct_reply_common(InBuffer, OutBuffer);
1200
1201         outsize = smb_messages[type].fn(conn, InBuffer, OutBuffer, size,
1202                                         bufsize);
1203
1204         smb_dump(smb_fn_name(type), 0, OutBuffer, outsize);
1205
1206         *outbuf = OutBuffer;
1207
1208         return(outsize);
1209 }
1210
1211 /****************************************************************************
1212  Construct a reply to the incoming packet.
1213 ****************************************************************************/
1214
1215 static void construct_reply(char *inbuf, int size)
1216 {
1217         uint8 type = CVAL(inbuf,smb_com);
1218         int outsize = 0;
1219         struct smb_request *req;
1220         char *outbuf;
1221
1222         chain_size = 0;
1223         file_chain_reset();
1224         reset_chain_p();
1225
1226         if (!(req = talloc(tmp_talloc_ctx(), struct smb_request))) {
1227                 smb_panic("could not allocate smb_request");
1228         }
1229         init_smb_request(req, (uint8 *)inbuf);
1230
1231         outsize = switch_message(type, req, &outbuf, size, max_send);
1232
1233         if (outsize > 4) {
1234                 smb_setlen(inbuf,outbuf,outsize - 4);
1235         }
1236
1237         if (outsize > 0) {
1238                 if (CVAL(outbuf,0) == 0)
1239                         show_msg(outbuf);
1240
1241                 if (outsize != smb_len(outbuf) + 4) {
1242                         DEBUG(0,("ERROR: Invalid message response size! "
1243                                  "%d %d\n", outsize, smb_len(outbuf)));
1244                 } else if (!send_smb(smbd_server_fd(),outbuf)) {
1245                         exit_server_cleanly("construct_reply: send_smb "
1246                                             "failed.");
1247                 }
1248         }
1249
1250         TALLOC_FREE(req);
1251
1252         return;
1253 }
1254
1255 /****************************************************************************
1256  Process an smb from the client
1257 ****************************************************************************/
1258
1259 static void process_smb(char *inbuf, size_t nread)
1260 {
1261         static int trans_num;
1262         int msg_type = CVAL(inbuf,0);
1263
1264         DO_PROFILE_INC(smb_count);
1265
1266         if (trans_num == 0) {
1267                 /* on the first packet, check the global hosts allow/ hosts
1268                 deny parameters before doing any parsing of the packet
1269                 passed to us by the client.  This prevents attacks on our
1270                 parsing code from hosts not in the hosts allow list */
1271                 if (!check_access(smbd_server_fd(), lp_hostsallow(-1),
1272                                   lp_hostsdeny(-1))) {
1273                         /* send a negative session response "not listening on calling name" */
1274                         static unsigned char buf[5] = {0x83, 0, 0, 1, 0x81};
1275                         DEBUG( 1, ( "Connection denied from %s\n", client_addr() ) );
1276                         (void)send_smb(smbd_server_fd(),(char *)buf);
1277                         exit_server_cleanly("connection denied");
1278                 }
1279         }
1280
1281         DEBUG( 6, ( "got message type 0x%x of len 0x%x\n", msg_type,
1282                     smb_len(inbuf) ) );
1283         DEBUG( 3, ( "Transaction %d of length %d\n", trans_num, (int)nread ) );
1284
1285         if (msg_type != 0) {
1286                 /*
1287                  * NetBIOS session request, keepalive, etc.
1288                  */
1289                 reply_special(inbuf);
1290                 return;
1291         }
1292
1293         show_msg(inbuf);
1294
1295         construct_reply(inbuf,nread);
1296       
1297         trans_num++;
1298 }
1299
1300 /****************************************************************************
1301  Return a string containing the function name of a SMB command.
1302 ****************************************************************************/
1303
1304 const char *smb_fn_name(int type)
1305 {
1306         const char *unknown_name = "SMBunknown";
1307
1308         if (smb_messages[type].name == NULL)
1309                 return(unknown_name);
1310
1311         return(smb_messages[type].name);
1312 }
1313
1314 /****************************************************************************
1315  Helper functions for contruct_reply.
1316 ****************************************************************************/
1317
1318 static uint32 common_flags2 = FLAGS2_LONG_PATH_COMPONENTS|FLAGS2_32_BIT_ERROR_CODES;
1319
1320 void add_to_common_flags2(uint32 v)
1321 {
1322         common_flags2 |= v;
1323 }
1324
1325 void remove_from_common_flags2(uint32 v)
1326 {
1327         common_flags2 &= ~v;
1328 }
1329
1330 void construct_reply_common(const char *inbuf, char *outbuf)
1331 {
1332         set_message(inbuf,outbuf,0,0,False);
1333         
1334         SCVAL(outbuf,smb_com,CVAL(inbuf,smb_com));
1335         SIVAL(outbuf,smb_rcls,0);
1336         SCVAL(outbuf,smb_flg, FLAG_REPLY | (CVAL(inbuf,smb_flg) & FLAG_CASELESS_PATHNAMES)); 
1337         SSVAL(outbuf,smb_flg2,
1338                 (SVAL(inbuf,smb_flg2) & FLAGS2_UNICODE_STRINGS) |
1339                 common_flags2);
1340         memset(outbuf+smb_pidhigh,'\0',(smb_tid-smb_pidhigh));
1341
1342         SSVAL(outbuf,smb_tid,SVAL(inbuf,smb_tid));
1343         SSVAL(outbuf,smb_pid,SVAL(inbuf,smb_pid));
1344         SSVAL(outbuf,smb_uid,SVAL(inbuf,smb_uid));
1345         SSVAL(outbuf,smb_mid,SVAL(inbuf,smb_mid));
1346 }
1347
1348 /****************************************************************************
1349  Construct a chained reply and add it to the already made reply
1350 ****************************************************************************/
1351
1352 int chain_reply(char *inbuf,char **poutbuf,int size,int bufsize)
1353 {
1354         static char *orig_inbuf;
1355         int smb_com1, smb_com2 = CVAL(inbuf,smb_vwv0);
1356         unsigned smb_off2 = SVAL(inbuf,smb_vwv1);
1357         char *inbuf2;
1358         int outsize2;
1359         int new_size;
1360         char inbuf_saved[smb_wct];
1361         char *outbuf = *poutbuf;
1362         size_t outsize = smb_len(outbuf) + 4;
1363         size_t outsize_padded;
1364         size_t ofs, to_move;
1365
1366         struct smb_request *req;
1367         size_t caller_outputlen;
1368         char *caller_output;
1369
1370         /* Maybe its not chained, or it's an error packet. */
1371         if (smb_com2 == 0xFF || SVAL(outbuf,smb_rcls) != 0) {
1372                 SCVAL(outbuf,smb_vwv0,0xFF);
1373                 return outsize;
1374         }
1375
1376         if (chain_size == 0) {
1377                 /* this is the first part of the chain */
1378                 orig_inbuf = inbuf;
1379         }
1380
1381         /*
1382          * We need to save the output the caller added to the chain so that we
1383          * can splice it into the final output buffer later.
1384          */
1385
1386         caller_outputlen = outsize - smb_wct;
1387
1388         caller_output = (char *)memdup(outbuf + smb_wct, caller_outputlen);
1389
1390         if (caller_output == NULL) {
1391                 /* TODO: NT_STATUS_NO_MEMORY */
1392                 smb_panic("could not dup outbuf");
1393         }
1394
1395         /*
1396          * The original Win95 redirector dies on a reply to
1397          * a lockingX and read chain unless the chain reply is
1398          * 4 byte aligned. JRA.
1399          */
1400
1401         outsize_padded = (outsize + 3) & ~3;
1402
1403         /*
1404          * remember how much the caller added to the chain, only counting
1405          * stuff after the parameter words
1406          */
1407         chain_size += outsize_padded - smb_wct;
1408
1409         /*
1410          * work out pointers into the original packets. The
1411          * headers on these need to be filled in
1412          */
1413         inbuf2 = orig_inbuf + smb_off2 + 4 - smb_wct;
1414
1415         /* remember the original command type */
1416         smb_com1 = CVAL(orig_inbuf,smb_com);
1417
1418         /* save the data which will be overwritten by the new headers */
1419         memcpy(inbuf_saved,inbuf2,smb_wct);
1420
1421         /* give the new packet the same header as the last part of the SMB */
1422         memmove(inbuf2,inbuf,smb_wct);
1423
1424         /* create the in buffer */
1425         SCVAL(inbuf2,smb_com,smb_com2);
1426
1427         /* work out the new size for the in buffer. */
1428         new_size = size - (inbuf2 - inbuf);
1429         if (new_size < 0) {
1430                 DEBUG(0,("chain_reply: chain packet size incorrect "
1431                          "(orig size = %d, offset = %d)\n",
1432                          size, (int)(inbuf2 - inbuf) ));
1433                 exit_server_cleanly("Bad chained packet");
1434                 return(-1);
1435         }
1436
1437         /* And set it in the header. */
1438         smb_setlen(inbuf, inbuf2, new_size);
1439
1440         DEBUG(3,("Chained message\n"));
1441         show_msg(inbuf2);
1442
1443         if (!(req = talloc(tmp_talloc_ctx(), struct smb_request))) {
1444                 smb_panic("could not allocate smb_request");
1445         }
1446         init_smb_request(req, (uint8 *)inbuf2);
1447
1448         /* process the request */
1449         outsize2 = switch_message(smb_com2, req, &outbuf, new_size,
1450                                   bufsize-chain_size);
1451
1452         /*
1453          * We don't accept deferred operations in chained requests.
1454          */
1455         SMB_ASSERT(outsize2 >= smb_wct);
1456
1457         /*
1458          * Move away the new command output so that caller_output fits in,
1459          * copy in the caller_output saved above.
1460          */
1461
1462         SMB_ASSERT(outsize_padded >= smb_wct);
1463
1464         /*
1465          * "ofs" is the space we need for caller_output. Equal to
1466          * caller_outputlen plus the padding.
1467          */
1468
1469         ofs = outsize_padded - smb_wct;
1470
1471         /*
1472          * "to_move" is the amount of bytes the secondary routine gave us
1473          */
1474
1475         to_move = outsize2 - smb_wct;
1476
1477         if (to_move + ofs + smb_wct + chain_size > max_send) {
1478                 smb_panic("replies too large -- would have to cut");
1479         }
1480
1481         /*
1482          * In the "new" API "outbuf" is allocated via reply_outbuf, just for
1483          * the first request in the chain. So we have to re-allocate it. In
1484          * the "old" API the only outbuf ever used is the global OutBuffer
1485          * which is always large enough.
1486          */
1487
1488         if (outbuf != OutBuffer) {
1489                 outbuf = TALLOC_REALLOC_ARRAY(NULL, outbuf, char,
1490                                               to_move + ofs + smb_wct);
1491                 if (outbuf == NULL) {
1492                         smb_panic("could not realloc outbuf");
1493                 }
1494         }
1495
1496         *poutbuf = outbuf;
1497
1498         memmove(outbuf + smb_wct + ofs, outbuf + smb_wct, to_move);
1499         memcpy(outbuf + smb_wct, caller_output, caller_outputlen);
1500
1501         /*
1502          * The secondary function has overwritten smb_com
1503          */
1504
1505         SCVAL(outbuf, smb_com, smb_com1);
1506
1507         /*
1508          * We've just copied in the whole "wct" area from the secondary
1509          * function. Fix up the chaining: com2 and the offset need to be
1510          * readjusted.
1511          */
1512
1513         SCVAL(outbuf, smb_vwv0, smb_com2);
1514         SSVAL(outbuf, smb_vwv1, chain_size + smb_wct - 4);
1515
1516         if (outsize_padded > outsize) {
1517
1518                 /*
1519                  * Due to padding we have some uninitialized bytes after the
1520                  * caller's output
1521                  */
1522
1523                 memset(outbuf + outsize, 0, outsize_padded - outsize);
1524         }
1525
1526         smb_setlen(NULL, outbuf, outsize2 + chain_size - 4);
1527
1528         /*
1529          * restore the saved data, being careful not to overwrite any data
1530          * from the reply header
1531          */
1532         memcpy(inbuf2,inbuf_saved,smb_wct);
1533
1534         SAFE_FREE(caller_output);
1535         TALLOC_FREE(req);
1536
1537         return outsize2 + chain_size;
1538 }
1539
1540 void chain_reply_new(struct smb_request *req)
1541 {
1542         chain_reply(CONST_DISCARD(char *, req->inbuf),
1543                     (char **)(void *)&req->outbuf,
1544                     smb_len(req->inbuf)+4,
1545                     smb_len(req->outbuf)+4);
1546 }
1547
1548 /****************************************************************************
1549  Setup the needed select timeout in milliseconds.
1550 ****************************************************************************/
1551
1552 static int setup_select_timeout(void)
1553 {
1554         int select_timeout;
1555
1556         select_timeout = SMBD_SELECT_TIMEOUT*1000;
1557
1558         if (print_notify_messages_pending()) {
1559                 select_timeout = MIN(select_timeout, 1000);
1560         }
1561
1562         return select_timeout;
1563 }
1564
1565 /****************************************************************************
1566  Check if services need reloading.
1567 ****************************************************************************/
1568
1569 void check_reload(time_t t)
1570 {
1571         static pid_t mypid = 0;
1572         static time_t last_smb_conf_reload_time = 0;
1573         static time_t last_printer_reload_time = 0;
1574         time_t printcap_cache_time = (time_t)lp_printcap_cache_time();
1575
1576         if(last_smb_conf_reload_time == 0) {
1577                 last_smb_conf_reload_time = t;
1578                 /* Our printing subsystem might not be ready at smbd start up.
1579                    Then no printer is available till the first printers check
1580                    is performed.  A lower initial interval circumvents this. */
1581                 if ( printcap_cache_time > 60 )
1582                         last_printer_reload_time = t - printcap_cache_time + 60;
1583                 else
1584                         last_printer_reload_time = t;
1585         }
1586
1587         if (mypid != getpid()) { /* First time or fork happened meanwhile */
1588                 /* randomize over 60 second the printcap reload to avoid all
1589                  * process hitting cupsd at the same time */
1590                 int time_range = 60;
1591
1592                 last_printer_reload_time += random() % time_range;
1593                 mypid = getpid();
1594         }
1595
1596         if (reload_after_sighup || (t >= last_smb_conf_reload_time+SMBD_RELOAD_CHECK)) {
1597                 reload_services(True);
1598                 reload_after_sighup = False;
1599                 last_smb_conf_reload_time = t;
1600         }
1601
1602         /* 'printcap cache time = 0' disable the feature */
1603         
1604         if ( printcap_cache_time != 0 )
1605         { 
1606                 /* see if it's time to reload or if the clock has been set back */
1607                 
1608                 if ( (t >= last_printer_reload_time+printcap_cache_time) 
1609                         || (t-last_printer_reload_time  < 0) ) 
1610                 {
1611                         DEBUG( 3,( "Printcap cache time expired.\n"));
1612                         reload_printers();
1613                         last_printer_reload_time = t;
1614                 }
1615         }
1616 }
1617
1618 /****************************************************************************
1619  Process any timeout housekeeping. Return False if the caller should exit.
1620 ****************************************************************************/
1621
1622 static BOOL timeout_processing(int *select_timeout,
1623                                time_t *last_timeout_processing_time)
1624 {
1625         time_t t;
1626
1627         if (smb_read_error == READ_EOF) {
1628                 DEBUG(3,("timeout_processing: End of file from client (client has disconnected).\n"));
1629                 return False;
1630         }
1631
1632         if (smb_read_error == READ_ERROR) {
1633                 DEBUG(3,("timeout_processing: receive_smb error (%s) Exiting\n",
1634                         strerror(errno)));
1635                 return False;
1636         }
1637
1638         if (smb_read_error == READ_BAD_SIG) {
1639                 DEBUG(3,("timeout_processing: receive_smb error bad smb signature. Exiting\n"));
1640                 return False;
1641         }
1642
1643         *last_timeout_processing_time = t = time(NULL);
1644
1645         /* become root again if waiting */
1646         change_to_root_user();
1647
1648         /* check if we need to reload services */
1649         check_reload(t);
1650
1651         if(global_machine_password_needs_changing && 
1652                         /* for ADS we need to do a regular ADS password change, not a domain
1653                                         password change */
1654                         lp_security() == SEC_DOMAIN) {
1655
1656                 unsigned char trust_passwd_hash[16];
1657                 time_t lct;
1658
1659                 /*
1660                  * We're in domain level security, and the code that
1661                  * read the machine password flagged that the machine
1662                  * password needs changing.
1663                  */
1664
1665                 /*
1666                  * First, open the machine password file with an exclusive lock.
1667                  */
1668
1669                 if (secrets_lock_trust_account_password(lp_workgroup(), True) == False) {
1670                         DEBUG(0,("process: unable to lock the machine account password for \
1671 machine %s in domain %s.\n", global_myname(), lp_workgroup() ));
1672                         return True;
1673                 }
1674
1675                 if(!secrets_fetch_trust_account_password(lp_workgroup(), trust_passwd_hash, &lct, NULL)) {
1676                         DEBUG(0,("process: unable to read the machine account password for \
1677 machine %s in domain %s.\n", global_myname(), lp_workgroup()));
1678                         secrets_lock_trust_account_password(lp_workgroup(), False);
1679                         return True;
1680                 }
1681
1682                 /*
1683                  * Make sure someone else hasn't already done this.
1684                  */
1685
1686                 if(t < lct + lp_machine_password_timeout()) {
1687                         global_machine_password_needs_changing = False;
1688                         secrets_lock_trust_account_password(lp_workgroup(), False);
1689                         return True;
1690                 }
1691
1692                 /* always just contact the PDC here */
1693     
1694                 change_trust_account_password( lp_workgroup(), NULL);
1695                 global_machine_password_needs_changing = False;
1696                 secrets_lock_trust_account_password(lp_workgroup(), False);
1697         }
1698
1699         /* update printer queue caches if necessary */
1700   
1701         update_monitored_printq_cache();
1702   
1703         /*
1704          * Now we are root, check if the log files need pruning.
1705          * Force a log file check.
1706          */
1707         force_check_log_size();
1708         check_log_size();
1709
1710         /* Send any queued printer notify message to interested smbd's. */
1711
1712         print_notify_send_messages(smbd_messaging_context(), 0);
1713
1714         /*
1715          * Modify the select timeout depending upon
1716          * what we have remaining in our queues.
1717          */
1718
1719         *select_timeout = setup_select_timeout();
1720
1721         return True;
1722 }
1723
1724 /****************************************************************************
1725  Accessor functions for InBuffer, OutBuffer.
1726 ****************************************************************************/
1727
1728 char *get_InBuffer(void)
1729 {
1730         return InBuffer;
1731 }
1732
1733 char *get_OutBuffer(void)
1734 {
1735         return OutBuffer;
1736 }
1737
1738 /****************************************************************************
1739  Allocate a new InBuffer. Returns the new and old ones.
1740 ****************************************************************************/
1741
1742 static char *NewInBuffer(char **old_inbuf)
1743 {
1744         char *new_inbuf = (char *)SMB_MALLOC(total_buffer_size);
1745         if (!new_inbuf) {
1746                 return NULL;
1747         }
1748         if (old_inbuf) {
1749                 *old_inbuf = InBuffer;
1750         }
1751         InBuffer = new_inbuf;
1752 #if defined(DEVELOPER)
1753         clobber_region(SAFE_STRING_FUNCTION_NAME, SAFE_STRING_LINE, InBuffer, total_buffer_size);
1754 #endif
1755         return InBuffer;
1756 }
1757
1758 /****************************************************************************
1759  Allocate a new OutBuffer. Returns the new and old ones.
1760 ****************************************************************************/
1761
1762 static char *NewOutBuffer(char **old_outbuf)
1763 {
1764         char *new_outbuf = (char *)SMB_MALLOC(total_buffer_size);
1765         if (!new_outbuf) {
1766                 return NULL;
1767         }
1768         if (old_outbuf) {
1769                 *old_outbuf = OutBuffer;
1770         }
1771         OutBuffer = new_outbuf;
1772 #if defined(DEVELOPER)
1773         clobber_region(SAFE_STRING_FUNCTION_NAME, SAFE_STRING_LINE, OutBuffer, total_buffer_size);
1774 #endif
1775         return OutBuffer;
1776 }
1777
1778 /****************************************************************************
1779  Process commands from the client
1780 ****************************************************************************/
1781
1782 void smbd_process(void)
1783 {
1784         time_t last_timeout_processing_time = time(NULL);
1785         unsigned int num_smbs = 0;
1786
1787         max_recv = MIN(lp_maxxmit(),BUFFER_SIZE);
1788
1789         while (True) {
1790                 int select_timeout = setup_select_timeout();
1791                 int num_echos;
1792                 char *inbuf;
1793                 size_t inbuf_len;
1794
1795                 errno = 0;      
1796                 
1797                 /* free up temporary memory */
1798                 lp_TALLOC_FREE();
1799                 main_loop_TALLOC_FREE();
1800
1801                 /* Did someone ask for immediate checks on things like blocking locks ? */
1802                 if (select_timeout == 0) {
1803                         if(!timeout_processing(&select_timeout,
1804                                                &last_timeout_processing_time))
1805                                 return;
1806                         num_smbs = 0; /* Reset smb counter. */
1807                 }
1808
1809                 run_events(smbd_event_context(), 0, NULL, NULL);
1810
1811                 while (!receive_message_or_smb(NULL, &inbuf, &inbuf_len,
1812                                                select_timeout)) {
1813                         if(!timeout_processing(&select_timeout,
1814                                                &last_timeout_processing_time))
1815                                 return;
1816                         num_smbs = 0; /* Reset smb counter. */
1817                 }
1818
1819
1820                 /*
1821                  * Ensure we do timeout processing if the SMB we just got was
1822                  * only an echo request. This allows us to set the select
1823                  * timeout in 'receive_message_or_smb()' to any value we like
1824                  * without worrying that the client will send echo requests
1825                  * faster than the select timeout, thus starving out the
1826                  * essential processing (change notify, blocking locks) that
1827                  * the timeout code does. JRA.
1828                  */ 
1829                 num_echos = smb_echo_count;
1830
1831                 process_smb(inbuf, inbuf_len);
1832
1833                 TALLOC_FREE(inbuf);
1834
1835                 if (smb_echo_count != num_echos) {
1836                         if(!timeout_processing( &select_timeout, &last_timeout_processing_time))
1837                                 return;
1838                         num_smbs = 0; /* Reset smb counter. */
1839                 }
1840
1841                 num_smbs++;
1842
1843                 /*
1844                  * If we are getting smb requests in a constant stream
1845                  * with no echos, make sure we attempt timeout processing
1846                  * every select_timeout milliseconds - but only check for this
1847                  * every 200 smb requests.
1848                  */
1849                 
1850                 if ((num_smbs % 200) == 0) {
1851                         time_t new_check_time = time(NULL);
1852                         if(new_check_time - last_timeout_processing_time >= (select_timeout/1000)) {
1853                                 if(!timeout_processing(
1854                                            &select_timeout,
1855                                            &last_timeout_processing_time))
1856                                         return;
1857                                 num_smbs = 0; /* Reset smb counter. */
1858                                 last_timeout_processing_time = new_check_time; /* Reset time. */
1859                         }
1860                 }
1861
1862                 /* The timeout_processing function isn't run nearly
1863                    often enough to implement 'max log size' without
1864                    overrunning the size of the file by many megabytes.
1865                    This is especially true if we are running at debug
1866                    level 10.  Checking every 50 SMBs is a nice
1867                    tradeoff of performance vs log file size overrun. */
1868
1869                 if ((num_smbs % 50) == 0 && need_to_check_log_size()) {
1870                         change_to_root_user();
1871                         check_log_size();
1872                 }
1873         }
1874 }