smbd: Simplify strict_lock_default with early returns
[Samba.git] / ctdb / server / ctdb_tunables.c
blob4a252b61adadc9656b72f427c0090f52c3827d82
1 /*
2 ctdb tunables code
4 Copyright (C) Andrew Tridgell 2007
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "includes.h"
20 #include "../include/ctdb_private.h"
22 static const struct {
23 const char *name;
24 uint32_t default_v;
25 size_t offset;
26 bool obsolete;
27 } tunable_map[] = {
28 { "MaxRedirectCount", 3, offsetof(struct ctdb_tunable, max_redirect_count), false },
29 { "SeqnumInterval", 1000, offsetof(struct ctdb_tunable, seqnum_interval), false },
30 { "ControlTimeout", 60, offsetof(struct ctdb_tunable, control_timeout), false },
31 { "TraverseTimeout", 20, offsetof(struct ctdb_tunable, traverse_timeout), false },
32 { "KeepaliveInterval", 5, offsetof(struct ctdb_tunable, keepalive_interval), false },
33 { "KeepaliveLimit", 5, offsetof(struct ctdb_tunable, keepalive_limit), false },
34 { "RecoverTimeout", 120, offsetof(struct ctdb_tunable, recover_timeout), false },
35 { "RecoverInterval", 1, offsetof(struct ctdb_tunable, recover_interval), false },
36 { "ElectionTimeout", 3, offsetof(struct ctdb_tunable, election_timeout), false },
37 { "TakeoverTimeout", 9, offsetof(struct ctdb_tunable, takeover_timeout), false },
38 { "MonitorInterval", 15, offsetof(struct ctdb_tunable, monitor_interval), false },
39 { "TickleUpdateInterval",20, offsetof(struct ctdb_tunable, tickle_update_interval), false },
40 { "EventScriptTimeout", 30, offsetof(struct ctdb_tunable, script_timeout), false },
41 { "EventScriptTimeoutCount", 20, offsetof(struct ctdb_tunable, script_timeout_count), false },
42 { "EventScriptUnhealthyOnTimeout", 0, offsetof(struct ctdb_tunable, script_unhealthy_on_timeout), true },
43 { "RecoveryGracePeriod", 120, offsetof(struct ctdb_tunable, recovery_grace_period), false },
44 { "RecoveryBanPeriod", 300, offsetof(struct ctdb_tunable, recovery_ban_period), false },
45 { "DatabaseHashSize", 100001, offsetof(struct ctdb_tunable, database_hash_size), false },
46 { "DatabaseMaxDead", 5, offsetof(struct ctdb_tunable, database_max_dead), false },
47 { "RerecoveryTimeout", 10, offsetof(struct ctdb_tunable, rerecovery_timeout), false },
48 { "EnableBans", 1, offsetof(struct ctdb_tunable, enable_bans), false },
49 { "DeterministicIPs", 0, offsetof(struct ctdb_tunable, deterministic_public_ips), false },
50 { "LCP2PublicIPs", 1, offsetof(struct ctdb_tunable, lcp2_public_ip_assignment), false },
51 { "ReclockPingPeriod", 60, offsetof(struct ctdb_tunable, reclock_ping_period), false },
52 { "NoIPFailback", 0, offsetof(struct ctdb_tunable, no_ip_failback), false },
53 { "DisableIPFailover", 0, offsetof(struct ctdb_tunable, disable_ip_failover), false },
54 { "VerboseMemoryNames", 0, offsetof(struct ctdb_tunable, verbose_memory_names), false },
55 { "RecdPingTimeout", 60, offsetof(struct ctdb_tunable, recd_ping_timeout), false },
56 { "RecdFailCount", 10, offsetof(struct ctdb_tunable, recd_ping_failcount), false },
57 { "LogLatencyMs", 0, offsetof(struct ctdb_tunable, log_latency_ms), false },
58 { "RecLockLatencyMs", 1000, offsetof(struct ctdb_tunable, reclock_latency_ms), false },
59 { "RecoveryDropAllIPs", 120, offsetof(struct ctdb_tunable, recovery_drop_all_ips), false },
60 { "VerifyRecoveryLock", 1, offsetof(struct ctdb_tunable, verify_recovery_lock), false },
61 { "VacuumInterval", 10, offsetof(struct ctdb_tunable, vacuum_interval), false },
62 { "VacuumMaxRunTime", 120, offsetof(struct ctdb_tunable, vacuum_max_run_time), false },
63 { "RepackLimit", 10000, offsetof(struct ctdb_tunable, repack_limit), false },
64 { "VacuumLimit", 5000, offsetof(struct ctdb_tunable, vacuum_limit), false },
65 { "VacuumFastPathCount", 60, offsetof(struct ctdb_tunable, vacuum_fast_path_count), false },
66 { "MaxQueueDropMsg", 1000000, offsetof(struct ctdb_tunable, max_queue_depth_drop_msg), false },
67 { "UseStatusEvents", 0, offsetof(struct ctdb_tunable, use_status_events_for_monitoring), false },
68 { "AllowUnhealthyDBRead", 0, offsetof(struct ctdb_tunable, allow_unhealthy_db_read), false },
69 { "StatHistoryInterval", 1, offsetof(struct ctdb_tunable, stat_history_interval), false },
70 { "DeferredAttachTO", 120, offsetof(struct ctdb_tunable, deferred_attach_timeout), false },
71 { "AllowClientDBAttach", 1, offsetof(struct ctdb_tunable, allow_client_db_attach), false },
72 { "RecoverPDBBySeqNum", 1, offsetof(struct ctdb_tunable, recover_pdb_by_seqnum), false },
73 { "DeferredRebalanceOnNodeAdd", 300, offsetof(struct ctdb_tunable, deferred_rebalance_on_node_add) },
74 { "FetchCollapse", 1, offsetof(struct ctdb_tunable, fetch_collapse) },
75 { "HopcountMakeSticky", 50, offsetof(struct ctdb_tunable, hopcount_make_sticky) },
76 { "StickyDuration", 600, offsetof(struct ctdb_tunable, sticky_duration) },
77 { "StickyPindown", 200, offsetof(struct ctdb_tunable, sticky_pindown) },
78 { "NoIPTakeover", 0, offsetof(struct ctdb_tunable, no_ip_takeover), false },
79 { "DBRecordCountWarn", 100000, offsetof(struct ctdb_tunable, db_record_count_warn), false },
80 { "DBRecordSizeWarn", 10000000, offsetof(struct ctdb_tunable, db_record_size_warn), false },
81 { "DBSizeWarn", 100000000, offsetof(struct ctdb_tunable, db_size_warn), false },
82 { "PullDBPreallocation", 10*1024*1024, offsetof(struct ctdb_tunable, pulldb_preallocation_size), false },
83 { "NoIPHostOnAllDisabled", 0, offsetof(struct ctdb_tunable, no_ip_host_on_all_disabled), false },
84 { "Samba3AvoidDeadlocks", 0, offsetof(struct ctdb_tunable, samba3_hack), false },
85 { "TDBMutexEnabled", 0, offsetof(struct ctdb_tunable, mutex_enabled), false },
89 set all tunables to defaults
91 void ctdb_tunables_set_defaults(struct ctdb_context *ctdb)
93 int i;
94 for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
95 *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = tunable_map[i].default_v;
101 get a tunable
103 int32_t ctdb_control_get_tunable(struct ctdb_context *ctdb, TDB_DATA indata,
104 TDB_DATA *outdata)
106 struct ctdb_control_get_tunable *t =
107 (struct ctdb_control_get_tunable *)indata.dptr;
108 char *name;
109 uint32_t val;
110 int i;
112 if (indata.dsize < sizeof(*t) ||
113 t->length > indata.dsize - offsetof(struct ctdb_control_get_tunable, name)) {
114 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_get_tunable\n"));
115 return -1;
118 name = talloc_strndup(ctdb, (char*)t->name, t->length);
119 CTDB_NO_MEMORY(ctdb, name);
121 for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
122 if (strcasecmp(name, tunable_map[i].name) == 0) break;
124 talloc_free(name);
126 if (i == ARRAY_SIZE(tunable_map)) {
127 return -EINVAL;
130 val = *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable);
132 outdata->dptr = (uint8_t *)talloc(outdata, uint32_t);
133 CTDB_NO_MEMORY(ctdb, outdata->dptr);
135 *(uint32_t *)outdata->dptr = val;
136 outdata->dsize = sizeof(uint32_t);
138 return 0;
143 set a tunable
145 int32_t ctdb_control_set_tunable(struct ctdb_context *ctdb, TDB_DATA indata)
147 struct ctdb_control_set_tunable *t =
148 (struct ctdb_control_set_tunable *)indata.dptr;
149 char *name;
150 int i;
152 if (indata.dsize < sizeof(*t) ||
153 t->length > indata.dsize - offsetof(struct ctdb_control_set_tunable, name)) {
154 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_set_tunable\n"));
155 return -1;
158 name = talloc_strndup(ctdb, (char *)t->name, t->length);
159 CTDB_NO_MEMORY(ctdb, name);
161 for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
162 if (strcasecmp(name, tunable_map[i].name) == 0) break;
165 if (!strcmp(name, "VerifyRecoveryLock") && t->value != 0
166 && ctdb->recovery_lock_file == NULL) {
167 DEBUG(DEBUG_ERR,("Can not activate tunable \"VerifyRecoveryLock\" since there is no recovery lock file set.\n"));
168 talloc_free(name);
169 return -1;
172 talloc_free(name);
174 if (i == ARRAY_SIZE(tunable_map)) {
175 return -1;
178 *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = t->value;
180 return 0;
184 list tunables
186 int32_t ctdb_control_list_tunables(struct ctdb_context *ctdb, TDB_DATA *outdata)
188 char *list = NULL;
189 int i;
190 struct ctdb_control_list_tunable *t;
192 list = talloc_strdup(outdata, tunable_map[0].name);
193 CTDB_NO_MEMORY(ctdb, list);
195 for (i=1;i<ARRAY_SIZE(tunable_map);i++) {
196 if (tunable_map[i].obsolete) {
197 continue;
199 list = talloc_asprintf_append(list, ":%s", tunable_map[i].name);
200 CTDB_NO_MEMORY(ctdb, list);
203 outdata->dsize = offsetof(struct ctdb_control_list_tunable, data) +
204 strlen(list) + 1;
205 outdata->dptr = talloc_size(outdata, outdata->dsize);
206 CTDB_NO_MEMORY(ctdb, outdata->dptr);
208 t = (struct ctdb_control_list_tunable *)outdata->dptr;
209 t->length = strlen(list)+1;
211 memcpy(t->data, list, t->length);
212 talloc_free(list);
214 return 0;