Merge commit 'origin/master'
[sahlberg/ctdb.git] / 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 } tunable_map[] = {
27         { "MaxRedirectCount",     3,  offsetof(struct ctdb_tunable, max_redirect_count) },
28         { "SeqnumInterval",      1000,  offsetof(struct ctdb_tunable, seqnum_interval) },
29         { "ControlTimeout",      60, offsetof(struct ctdb_tunable, control_timeout) },
30         { "TraverseTimeout",     20, offsetof(struct ctdb_tunable, traverse_timeout) },
31         { "KeepaliveInterval",    5,  offsetof(struct ctdb_tunable, keepalive_interval) },
32         { "KeepaliveLimit",       5,  offsetof(struct ctdb_tunable, keepalive_limit) },
33         { "MaxLACount",           7,  offsetof(struct ctdb_tunable, max_lacount) },
34         { "RecoverTimeout",      20,  offsetof(struct ctdb_tunable, recover_timeout) },
35         { "RecoverInterval",      1,  offsetof(struct ctdb_tunable, recover_interval) },
36         { "ElectionTimeout",      3,  offsetof(struct ctdb_tunable, election_timeout) },
37         { "TakeoverTimeout",      5,  offsetof(struct ctdb_tunable, takeover_timeout) },
38         { "MonitorInterval",     15,  offsetof(struct ctdb_tunable, monitor_interval) },
39         { "TickleUpdateInterval",20,  offsetof(struct ctdb_tunable, tickle_update_interval) },
40         { "EventScriptTimeout",  30,  offsetof(struct ctdb_tunable, script_timeout) },
41         { "EventScriptBanCount", 10,  offsetof(struct ctdb_tunable, script_ban_count) },
42         { "EventScriptUnhealthyOnTimeout", 0, offsetof(struct ctdb_tunable, script_unhealthy_on_timeout) },
43         { "RecoveryGracePeriod", 120,  offsetof(struct ctdb_tunable, recovery_grace_period) },
44         { "RecoveryBanPeriod",  300,  offsetof(struct ctdb_tunable, recovery_ban_period) },
45         { "DatabaseHashSize", 10000,  offsetof(struct ctdb_tunable, database_hash_size) },
46         { "DatabaseMaxDead",      5,  offsetof(struct ctdb_tunable, database_max_dead) },
47         { "RerecoveryTimeout",   10,  offsetof(struct ctdb_tunable, rerecovery_timeout) },
48         { "EnableBans",           1,  offsetof(struct ctdb_tunable, enable_bans) },
49         { "DeterministicIPs",     1,  offsetof(struct ctdb_tunable, deterministic_public_ips) },
50         { "DisableWhenUnhealthy", 0,  offsetof(struct ctdb_tunable, disable_when_unhealthy) },
51         { "ReclockPingPeriod",   60,  offsetof(struct ctdb_tunable,  reclock_ping_period) },
52         { "NoIPFailback",         0,  offsetof(struct ctdb_tunable, no_ip_failback) },
53         { "VerboseMemoryNames",   0,  offsetof(struct ctdb_tunable, verbose_memory_names) },
54         { "RecdPingTimeout",     60,  offsetof(struct ctdb_tunable, recd_ping_timeout) },
55         { "RecdFailCount",       10,  offsetof(struct ctdb_tunable, recd_ping_failcount) },
56         { "LogLatencyMs",         0,  offsetof(struct ctdb_tunable, log_latency_ms) },
57         { "RecLockLatencyMs",  1000,  offsetof(struct ctdb_tunable, reclock_latency_ms) },
58         { "RecoveryDropAllIPs",  60,  offsetof(struct ctdb_tunable, recovery_drop_all_ips) },
59         { "VerifyRecoveryLock",   1,  offsetof(struct ctdb_tunable, verify_recovery_lock) },
60         { "VacuumDefaultInterval", 300,  offsetof(struct ctdb_tunable, vacuum_default_interval) },
61         { "VacuumMaxRunTime",     30,  offsetof(struct ctdb_tunable, vacuum_max_run_time) },
62         { "RepackLimit",      10000,  offsetof(struct ctdb_tunable, repack_limit) },
63         { "VacuumLimit",       5000,  offsetof(struct ctdb_tunable, vacuum_limit) },
64         { "VacuumMinInterval",   60,  offsetof(struct ctdb_tunable, vacuum_min_interval) },
65         { "VacuumMaxInterval",  600,  offsetof(struct ctdb_tunable, vacuum_max_interval) },
66         { "MaxQueueDropMsg",  1000,  offsetof(struct ctdb_tunable, max_queue_depth_drop_msg) }
67 };
68
69 /*
70   set all tunables to defaults
71  */
72 void ctdb_tunables_set_defaults(struct ctdb_context *ctdb)
73 {
74         int i;
75         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
76                 *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = tunable_map[i].default_v;
77         }
78 }
79
80
81 /*
82   get a tunable
83  */
84 int32_t ctdb_control_get_tunable(struct ctdb_context *ctdb, TDB_DATA indata, 
85                                  TDB_DATA *outdata)
86 {
87         struct ctdb_control_get_tunable *t = 
88                 (struct ctdb_control_get_tunable *)indata.dptr;
89         char *name;
90         uint32_t val;
91         int i;
92
93         if (indata.dsize < sizeof(*t) ||
94             t->length > indata.dsize - offsetof(struct ctdb_control_get_tunable, name)) {
95                 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_get_tunable\n"));
96                 return -1;
97         }
98
99         name = talloc_strndup(ctdb, (char*)t->name, t->length);
100         CTDB_NO_MEMORY(ctdb, name);
101
102         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
103                 if (strcasecmp(name, tunable_map[i].name) == 0) break;
104         }
105         talloc_free(name);
106         
107         if (i == ARRAY_SIZE(tunable_map)) {
108                 return -1;
109         }
110
111         val = *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable);
112
113         outdata->dptr = (uint8_t *)talloc(outdata, uint32_t);
114         CTDB_NO_MEMORY(ctdb, outdata->dptr);
115
116         *(uint32_t *)outdata->dptr = val;
117         outdata->dsize = sizeof(uint32_t);
118
119         return 0;
120 }
121
122
123 /*
124   set a tunable
125  */
126 int32_t ctdb_control_set_tunable(struct ctdb_context *ctdb, TDB_DATA indata)
127 {
128         struct ctdb_control_set_tunable *t = 
129                 (struct ctdb_control_set_tunable *)indata.dptr;
130         char *name;
131         int i;
132
133         if (indata.dsize < sizeof(*t) ||
134             t->length > indata.dsize - offsetof(struct ctdb_control_set_tunable, name)) {
135                 DEBUG(DEBUG_ERR,("Bad indata in ctdb_control_set_tunable\n"));
136                 return -1;
137         }
138
139         name = talloc_strndup(ctdb, (char *)t->name, t->length);
140         CTDB_NO_MEMORY(ctdb, name);
141
142         for (i=0;i<ARRAY_SIZE(tunable_map);i++) {
143                 if (strcasecmp(name, tunable_map[i].name) == 0) break;
144         }
145
146         if (!strcmp(name, "VerifyRecoveryLock") && t->value != 0
147         && ctdb->recovery_lock_file == NULL) {
148                 DEBUG(DEBUG_ERR,("Can not activate tunable \"VerifyRecoveryLock\" since there is no recovery lock file set.\n"));
149                 talloc_free(name);
150                 return -1;
151         }
152
153         talloc_free(name);
154         
155         if (i == ARRAY_SIZE(tunable_map)) {
156                 return -1;
157         }
158
159         *(uint32_t *)(tunable_map[i].offset + (uint8_t*)&ctdb->tunable) = t->value;
160
161         return 0;
162 }
163
164 /*
165   list tunables
166  */
167 int32_t ctdb_control_list_tunables(struct ctdb_context *ctdb, TDB_DATA *outdata)
168 {
169         char *list = NULL;
170         int i;
171         struct ctdb_control_list_tunable *t;
172
173         list = talloc_strdup(outdata, tunable_map[0].name);
174         CTDB_NO_MEMORY(ctdb, list);
175
176         for (i=1;i<ARRAY_SIZE(tunable_map);i++) {
177                 list = talloc_asprintf_append(list, ":%s", tunable_map[i].name);
178                 CTDB_NO_MEMORY(ctdb, list);             
179         }
180
181         outdata->dsize = offsetof(struct ctdb_control_list_tunable, data) + 
182                 strlen(list) + 1;
183         outdata->dptr = talloc_size(outdata, outdata->dsize);
184         CTDB_NO_MEMORY(ctdb, outdata->dptr);
185
186         t = (struct ctdb_control_list_tunable *)outdata->dptr;
187         t->length = strlen(list)+1;
188
189         memcpy(t->data, list, t->length);
190         talloc_free(list);
191
192         return 0;       
193 }