2 Unix SMB/CIFS implementation.
6 Copyright (C) 2020 Ralph Boehme <slow@samba.org>
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 3 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, see <http://www.gnu.org/licenses/>.
23 #include "lib/tevent/tevent.h"
24 #include "lib/util/unix_privs.h"
25 #include "server_util.h"
27 struct samba_tevent_trace_state
{
29 time_t last_logsize_check
;
32 struct samba_tevent_trace_state
*create_samba_tevent_trace_state(
35 return talloc_zero(mem_ctx
, struct samba_tevent_trace_state
);
38 void samba_tevent_trace_callback(enum tevent_trace_point point
,
41 struct samba_tevent_trace_state
*state
=
42 talloc_get_type_abort(private_data
,
43 struct samba_tevent_trace_state
);
44 time_t now
= time(NULL
);
45 bool do_check_logs
= false;
49 case TEVENT_TRACE_BEFORE_WAIT
:
58 * Throttling by some random numbers. smbd uses a similar logic
59 * checking every 50 SMB requests. Assuming 4 events per request
60 * we get to the number of 200.
62 if ((state
->events
% 200) == 0) {
66 * Throttling by some delay, choosing 29 to avoid lockstep with
67 * the default tevent tickle timer.
69 if ((state
->last_logsize_check
+ 29) < now
) {
78 * need_to_check_log_size() checks both the number of messages
79 * that have been logged and if the logging backend is actually
80 * going to file. We want to bypass the "number of messages"
81 * check, so we have to call force_check_log_size() before.
83 force_check_log_size();
84 if (!need_to_check_log_size()) {
88 priv
= root_privileges();
92 state
->last_logsize_check
= now
;