Merge branch 'master' of ctdb into 'master' of samba
[samba.git] / ctdb / server / ctdb_tunables.c
1 /* 
2    ctdb tunables code
3
4    Copyright (C) Andrew Tridgell  2007
5
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.
10    
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.
15    
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/>.
18 */
19 #include "includes.h"
20 #include "../include/ctdb_private.h"
21
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 };
86
87 /*
88   set all tunables to defaults
89  */
90 void ctdb_tunables_set_defaults(struct ctdb_context *ctdb)
91 {
92         int i;
93         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
94                 *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = tunable_map[i].default_v;
95         }
96 }
97
98
99 /*
100   get a tunable
101  */
102 int32_t ctdb_control_get_tunable(struct ctdb_context *ctdb, TDB_DATA indata, 
103                                  TDB_DATA *outdata)
104 {
105         struct ctdb_control_get_tunable *t = 
106                 (struct ctdb_control_get_tunable *)indata.dptr;
107         char *name;
108         uint32_t val;
109         int i;
110
111         if (indata.dsize < sizeof(*t) ||
112             t->length > indata.dsize - offsetof(struct ctdb_control_get_tunable, name)) {
113                 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_get_tunable\n"));
114                 return -1;
115         }
116
117         name = talloc_strndup(ctdb, (char*)t->name, t->length);
118         CTDB_NO_MEMORY(ctdb, name);
119
120         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
121                 if (strcasecmp(name, tunable_map[i].name) == 0) break;
122         }
123         talloc_free(name);
124         
125         if (i == ARRAY_SIZE(tunable_map)) {
126                 return -EINVAL;
127         }
128
129         val = *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable);
130
131         outdata->dptr = (uint8_t *)talloc(outdata, uint32_t);
132         CTDB_NO_MEMORY(ctdb, outdata->dptr);
133
134         *(uint32_t *)outdata->dptr = val;
135         outdata->dsize = sizeof(uint32_t);
136
137         return 0;
138 }
139
140
141 /*
142   set a tunable
143  */
144 int32_t ctdb_control_set_tunable(struct ctdb_context *ctdb, TDB_DATA indata)
145 {
146         struct ctdb_control_set_tunable *t = 
147                 (struct ctdb_control_set_tunable *)indata.dptr;
148         char *name;
149         int i;
150
151         if (indata.dsize < sizeof(*t) ||
152             t->length > indata.dsize - offsetof(struct ctdb_control_set_tunable, name)) {
153                 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_set_tunable\n"));
154                 return -1;
155         }
156
157         name = talloc_strndup(ctdb, (char *)t->name, t->length);
158         CTDB_NO_MEMORY(ctdb, name);
159
160         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
161                 if (strcasecmp(name, tunable_map[i].name) == 0) break;
162         }
163
164         if (!strcmp(name, "VerifyRecoveryLock") && t->value != 0
165         && ctdb->recovery_lock_file == NULL) {
166                 DEBUG(DEBUG_ERR,("Can not activate tunable \"VerifyRecoveryLock\" since there is no recovery lock file set.\n"));
167                 talloc_free(name);
168                 return -1;
169         }
170
171         talloc_free(name);
172         
173         if (i == ARRAY_SIZE(tunable_map)) {
174                 return -1;
175         }
176
177         *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = t->value;
178
179         return 0;
180 }
181
182 /*
183   list tunables
184  */
185 int32_t ctdb_control_list_tunables(struct ctdb_context *ctdb, TDB_DATA *outdata)
186 {
187         char *list = NULL;
188         int i;
189         struct ctdb_control_list_tunable *t;
190
191         list = talloc_strdup(outdata, tunable_map[0].name);
192         CTDB_NO_MEMORY(ctdb, list);
193
194         for (i=1;i<ARRAY_SIZE(tunable_map);i++) {
195                 if (tunable_map[i].obsolete) {
196                         continue;
197                 }
198                 list = talloc_asprintf_append(list, ":%s", tunable_map[i].name);
199                 CTDB_NO_MEMORY(ctdb, list);             
200         }
201
202         outdata->dsize = offsetof(struct ctdb_control_list_tunable, data) + 
203                 strlen(list) + 1;
204         outdata->dptr = talloc_size(outdata, outdata->dsize);
205         CTDB_NO_MEMORY(ctdb, outdata->dptr);
206
207         t = (struct ctdb_control_list_tunable *)outdata->dptr;
208         t->length = strlen(list)+1;
209
210         memcpy(t->data, list, t->length);
211         talloc_free(list);
212
213         return 0;       
214 }