Remove RT priority, use niceness.
[metze/samba/wip.git] / ctdb / common / ctdb_util.c
1 /* 
2    ctdb utility code
3
4    Copyright (C) Andrew Tridgell  2006
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
20 #include "includes.h"
21 #include "lib/events/events.h"
22 #include "lib/tdb/include/tdb.h"
23 #include "system/network.h"
24 #include "system/filesys.h"
25 #include "system/wait.h"
26 #include "../include/ctdb_private.h"
27
28 int LogLevel = DEBUG_NOTICE;
29 int this_log_level = 0;
30
31 /*
32   return error string for last error
33 */
34 const char *ctdb_errstr(struct ctdb_context *ctdb)
35 {
36         return ctdb->err_msg;
37 }
38
39
40 /*
41   remember an error message
42 */
43 void ctdb_set_error(struct ctdb_context *ctdb, const char *fmt, ...)
44 {
45         va_list ap;
46         talloc_free(ctdb->err_msg);
47         va_start(ap, fmt);
48         ctdb->err_msg = talloc_vasprintf(ctdb, fmt, ap);
49         DEBUG(DEBUG_ERR,("ctdb error: %s\n", ctdb->err_msg));
50         va_end(ap);
51 }
52
53 /*
54   a fatal internal error occurred - no hope for recovery
55 */
56 void ctdb_fatal(struct ctdb_context *ctdb, const char *msg)
57 {
58         DEBUG(DEBUG_ALERT,("ctdb fatal error: %s\n", msg));
59         abort();
60 }
61
62 /*
63   parse a IP:port pair
64 */
65 int ctdb_parse_address(struct ctdb_context *ctdb,
66                        TALLOC_CTX *mem_ctx, const char *str,
67                        struct ctdb_address *address)
68 {
69         struct servent *se;
70
71         setservent(0);
72         se = getservbyname("ctdb", "tcp");
73         endservent();
74         
75         address->address = talloc_strdup(mem_ctx, str);
76         CTDB_NO_MEMORY(ctdb, address->address);
77
78         if (se == NULL) {
79                 address->port = CTDB_PORT;
80         } else {
81                 address->port = ntohs(se->s_port);
82         }
83         return 0;
84 }
85
86
87 /*
88   check if two addresses are the same
89 */
90 bool ctdb_same_address(struct ctdb_address *a1, struct ctdb_address *a2)
91 {
92         return strcmp(a1->address, a2->address) == 0 && a1->port == a2->port;
93 }
94
95
96 /*
97   hash function for mapping data to a VNN - taken from tdb
98 */
99 uint32_t ctdb_hash(const TDB_DATA *key)
100 {
101         uint32_t value; /* Used to compute the hash value.  */
102         uint32_t i;     /* Used to cycle through random values. */
103
104         /* Set the initial value from the key size. */
105         for (value = 0x238F13AF * key->dsize, i=0; i < key->dsize; i++)
106                 value = (value + (key->dptr[i] << (i*5 % 24)));
107
108         return (1103515243 * value + 12345);  
109 }
110
111 /*
112   a type checking varient of idr_find
113  */
114 static void *_idr_find_type(struct idr_context *idp, int id, const char *type, const char *location)
115 {
116         void *p = idr_find(idp, id);
117         if (p && talloc_check_name(p, type) == NULL) {
118                 DEBUG(DEBUG_ERR,("%s idr_find_type expected type %s  but got %s\n",
119                          location, type, talloc_get_name(p)));
120                 return NULL;
121         }
122         return p;
123 }
124
125
126 /*
127   update a max latency number
128  */
129 void ctdb_latency(struct ctdb_db_context *ctdb_db, const char *name, double *latency, struct timeval t)
130 {
131         double l = timeval_elapsed(&t);
132         if (l > *latency) {
133                 *latency = l;
134         }
135
136         if (ctdb_db->ctdb->tunable.log_latency_ms !=0) {
137                 if (l*1000 > ctdb_db->ctdb->tunable.log_latency_ms) {
138                         DEBUG(DEBUG_WARNING, ("High latency %fs for operation %s on database %s\n", l*1000000, name, ctdb_db->db_name));
139                 }
140         }
141 }
142
143 /*
144   update a reclock latency number
145  */
146 void ctdb_reclock_latency(struct ctdb_context *ctdb, const char *name, double *latency, double l)
147 {
148         if (l > *latency) {
149                 *latency = l;
150         }
151
152         if (ctdb->tunable.reclock_latency_ms !=0) {
153                 if (l*1000 > ctdb->tunable.reclock_latency_ms) {
154                         DEBUG(DEBUG_ERR, ("High RECLOCK latency %fs for operation %s\n", l, name));
155                 }
156         }
157 }
158
159 uint32_t ctdb_reqid_new(struct ctdb_context *ctdb, void *state)
160 {
161         uint32_t id;
162
163         id  = ctdb->idr_cnt++ & 0xFFFF;
164         id |= (idr_get_new(ctdb->idr, state, 0xFFFF)<<16);
165         return id;
166 }
167
168 void *_ctdb_reqid_find(struct ctdb_context *ctdb, uint32_t reqid, const char *type, const char *location)
169 {
170         void *p;
171
172         p = _idr_find_type(ctdb->idr, (reqid>>16)&0xFFFF, type, location);
173         if (p == NULL) {
174                 DEBUG(DEBUG_WARNING, ("Could not find idr:%u\n",reqid));
175         }
176
177         return p;
178 }
179
180
181 void ctdb_reqid_remove(struct ctdb_context *ctdb, uint32_t reqid)
182 {
183         int ret;
184
185         ret = idr_remove(ctdb->idr, (reqid>>16)&0xFFFF);
186         if (ret != 0) {
187                 DEBUG(DEBUG_ERR, ("Removing idr that does not exist\n"));
188         }
189 }
190
191
192 /*
193   form a ctdb_rec_data record from a key/data pair
194   
195   note that header may be NULL. If not NULL then it is included in the data portion
196   of the record
197  */
198 struct ctdb_rec_data *ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid, 
199                                            TDB_DATA key, 
200                                            struct ctdb_ltdb_header *header,
201                                            TDB_DATA data)
202 {
203         size_t length;
204         struct ctdb_rec_data *d;
205
206         length = offsetof(struct ctdb_rec_data, data) + key.dsize + 
207                 data.dsize + (header?sizeof(*header):0);
208         d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
209         if (d == NULL) {
210                 return NULL;
211         }
212         d->length = length;
213         d->reqid = reqid;
214         d->keylen = key.dsize;
215         memcpy(&d->data[0], key.dptr, key.dsize);
216         if (header) {
217                 d->datalen = data.dsize + sizeof(*header);
218                 memcpy(&d->data[key.dsize], header, sizeof(*header));
219                 memcpy(&d->data[key.dsize+sizeof(*header)], data.dptr, data.dsize);
220         } else {
221                 d->datalen = data.dsize;
222                 memcpy(&d->data[key.dsize], data.dptr, data.dsize);
223         }
224         return d;
225 }
226
227
228 /* helper function for marshalling multiple records */
229 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx, 
230                                                struct ctdb_marshall_buffer *m,
231                                                uint64_t db_id,
232                                                uint32_t reqid,
233                                                TDB_DATA key,
234                                                struct ctdb_ltdb_header *header,
235                                                TDB_DATA data)
236 {
237         struct ctdb_rec_data *r;
238         size_t m_size, r_size;
239         struct ctdb_marshall_buffer *m2;
240
241         r = ctdb_marshall_record(mem_ctx, reqid, key, header, data);
242         if (r == NULL) {
243                 talloc_free(m);
244                 return NULL;
245         }
246
247         if (m == NULL) {
248                 m = talloc_zero_size(mem_ctx, offsetof(struct ctdb_marshall_buffer, data));
249                 if (m == NULL) {
250                         return NULL;
251                 }
252                 m->db_id = db_id;
253         }
254
255         m_size = talloc_get_size(m);
256         r_size = talloc_get_size(r);
257
258         m2 = talloc_realloc_size(mem_ctx, m,  m_size + r_size);
259         if (m2 == NULL) {
260                 talloc_free(m);
261                 return NULL;
262         }
263
264         memcpy(m_size + (uint8_t *)m2, r, r_size);
265
266         talloc_free(r);
267
268         m2->count++;
269
270         return m2;
271 }
272
273 /* we've finished marshalling, return a data blob with the marshalled records */
274 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
275 {
276         TDB_DATA data;
277         data.dptr = (uint8_t *)m;
278         data.dsize = talloc_get_size(m);
279         return data;
280 }
281
282 /* 
283    loop over a marshalling buffer 
284    
285      - pass r==NULL to start
286      - loop the number of times indicated by m->count
287 */
288 struct ctdb_rec_data *ctdb_marshall_loop_next(struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r,
289                                               uint32_t *reqid,
290                                               struct ctdb_ltdb_header *header,
291                                               TDB_DATA *key, TDB_DATA *data)
292 {
293         if (r == NULL) {
294                 r = (struct ctdb_rec_data *)&m->data[0];
295         } else {
296                 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
297         }
298
299         if (reqid != NULL) {
300                 *reqid = r->reqid;
301         }
302         
303         if (key != NULL) {
304                 key->dptr   = &r->data[0];
305                 key->dsize  = r->keylen;
306         }
307         if (data != NULL) {
308                 data->dptr  = &r->data[r->keylen];
309                 data->dsize = r->datalen;
310                 if (header != NULL) {
311                         data->dptr += sizeof(*header);
312                         data->dsize -= sizeof(*header);
313                 }
314         }
315
316         if (header != NULL) {
317                 if (r->datalen < sizeof(*header)) {
318                         return NULL;
319                 }
320                 *header = *(struct ctdb_ltdb_header *)&r->data[r->keylen];
321         }
322
323         return r;
324 }
325
326 /*
327   if possible, make this task very high priority
328  */
329 void ctdb_high_priority(struct ctdb_context *ctdb)
330 {
331         errno = 0;
332         if (nice(-20) == -1 && errno != 0) {
333                 DEBUG(DEBUG_WARNING,("Unable to renice self: %s\n",
334                                      strerror(errno)));
335         } else {
336                 DEBUG(DEBUG_NOTICE,("Scheduler says I'm nice: %i\n",
337                                     getpriority(PRIO_PROCESS, getpid())));
338         }
339 }
340
341 void set_nonblocking(int fd)
342 {
343         unsigned v;
344         v = fcntl(fd, F_GETFL, 0);
345         fcntl(fd, F_SETFL, v | O_NONBLOCK);
346 }
347
348 void set_close_on_exec(int fd)
349 {
350         unsigned v;
351         v = fcntl(fd, F_GETFD, 0);
352         fcntl(fd, F_SETFD, v | FD_CLOEXEC);
353 }
354
355
356 bool parse_ipv4(const char *s, unsigned port, struct sockaddr_in *sin)
357 {
358         sin->sin_family = AF_INET;
359         sin->sin_port   = htons(port);
360
361         if (inet_pton(AF_INET, s, &sin->sin_addr) != 1) {
362                 DEBUG(DEBUG_ERR, (__location__ " Failed to translate %s into sin_addr\n", s));
363                 return false;
364         }
365
366         return true;
367 }
368
369 static bool parse_ipv6(const char *s, const char *iface, unsigned port, ctdb_sock_addr *saddr)
370 {
371         saddr->ip6.sin6_family   = AF_INET6;
372         saddr->ip6.sin6_port     = htons(port);
373         saddr->ip6.sin6_flowinfo = 0;
374         saddr->ip6.sin6_scope_id = 0;
375
376         if (inet_pton(AF_INET6, s, &saddr->ip6.sin6_addr) != 1) {
377                 DEBUG(DEBUG_ERR, (__location__ " Failed to translate %s into sin6_addr\n", s));
378                 return false;
379         }
380
381         if (iface && IN6_IS_ADDR_LINKLOCAL(&saddr->ip6.sin6_addr)) {
382                 saddr->ip6.sin6_scope_id = if_nametoindex(iface);
383         }
384
385         return true;
386 }
387 /*
388   parse a ip:port pair
389  */
390 bool parse_ip_port(const char *addr, ctdb_sock_addr *saddr)
391 {
392         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
393         char *s, *p;
394         unsigned port;
395         char *endp = NULL;
396         bool ret;
397
398         s = talloc_strdup(tmp_ctx, addr);
399         if (s == NULL) {
400                 DEBUG(DEBUG_ERR, (__location__ " Failed strdup()\n"));
401                 talloc_free(tmp_ctx);
402                 return false;
403         }
404
405         p = rindex(s, ':');
406         if (p == NULL) {
407                 DEBUG(DEBUG_ERR, (__location__ " This addr: %s does not contain a port number\n", s));
408                 talloc_free(tmp_ctx);
409                 return false;
410         }
411
412         port = strtoul(p+1, &endp, 10);
413         if (endp == NULL || *endp != 0) {
414                 /* trailing garbage */
415                 DEBUG(DEBUG_ERR, (__location__ " Trailing garbage after the port in %s\n", s));
416                 talloc_free(tmp_ctx);
417                 return false;
418         }
419         *p = 0;
420
421
422         /* now is this a ipv4 or ipv6 address ?*/
423         ret = parse_ip(s, NULL, port, saddr);
424
425         talloc_free(tmp_ctx);
426         return ret;
427 }
428
429 /*
430   parse an ip
431  */
432 bool parse_ip(const char *addr, const char *iface, unsigned port, ctdb_sock_addr *saddr)
433 {
434         char *p;
435         bool ret;
436
437         /* now is this a ipv4 or ipv6 address ?*/
438         p = index(addr, ':');
439         if (p == NULL) {
440                 ret = parse_ipv4(addr, port, &saddr->ip);
441         } else {
442                 ret = parse_ipv6(addr, iface, port, saddr);
443         }
444
445         return ret;
446 }
447
448 /*
449   parse a ip/mask pair
450  */
451 bool parse_ip_mask(const char *str, const char *iface, ctdb_sock_addr *addr, unsigned *mask)
452 {
453         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
454         char *s, *p;
455         char *endp = NULL;
456         bool ret;
457
458         ZERO_STRUCT(*addr);
459         s = talloc_strdup(tmp_ctx, str);
460         if (s == NULL) {
461                 DEBUG(DEBUG_ERR, (__location__ " Failed strdup()\n"));
462                 talloc_free(tmp_ctx);
463                 return false;
464         }
465
466         p = rindex(s, '/');
467         if (p == NULL) {
468                 DEBUG(DEBUG_ERR, (__location__ " This addr: %s does not contain a mask\n", s));
469                 talloc_free(tmp_ctx);
470                 return false;
471         }
472
473         *mask = strtoul(p+1, &endp, 10);
474         if (endp == NULL || *endp != 0) {
475                 /* trailing garbage */
476                 DEBUG(DEBUG_ERR, (__location__ " Trailing garbage after the mask in %s\n", s));
477                 talloc_free(tmp_ctx);
478                 return false;
479         }
480         *p = 0;
481
482
483         /* now is this a ipv4 or ipv6 address ?*/
484         ret = parse_ip(s, iface, 0, addr);
485
486         talloc_free(tmp_ctx);
487         return ret;
488 }
489
490 /*
491    This is used to canonicalize a ctdb_sock_addr structure.
492 */
493 void ctdb_canonicalize_ip(const ctdb_sock_addr *ip, ctdb_sock_addr *cip)
494 {
495         char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
496
497         memcpy(cip, ip, sizeof (*cip));
498
499         if ( (ip->sa.sa_family == AF_INET6)
500         && !memcmp(&ip->ip6.sin6_addr, prefix, 12)) {
501                 memset(cip, 0, sizeof(*cip));
502 #ifdef HAVE_SOCK_SIN_LEN
503                 cip->ip.sin_len = sizeof(*cip);
504 #endif
505                 cip->ip.sin_family = AF_INET;
506                 cip->ip.sin_port   = ip->ip6.sin6_port;
507                 memcpy(&cip->ip.sin_addr, &ip->ip6.sin6_addr.s6_addr32[3], 4);
508         }
509 }
510
511 bool ctdb_same_ip(const ctdb_sock_addr *tip1, const ctdb_sock_addr *tip2)
512 {
513         ctdb_sock_addr ip1, ip2;
514
515         ctdb_canonicalize_ip(tip1, &ip1);
516         ctdb_canonicalize_ip(tip2, &ip2);
517         
518         if (ip1.sa.sa_family != ip2.sa.sa_family) {
519                 return false;
520         }
521
522         switch (ip1.sa.sa_family) {
523         case AF_INET:
524                 return ip1.ip.sin_addr.s_addr == ip2.ip.sin_addr.s_addr;
525         case AF_INET6:
526                 return !memcmp(&ip1.ip6.sin6_addr.s6_addr[0],
527                                 &ip2.ip6.sin6_addr.s6_addr[0],
528                                 16);
529         default:
530                 DEBUG(DEBUG_ERR, (__location__ " CRITICAL Can not compare sockaddr structures of type %u\n", ip1.sa.sa_family));
531                 return false;
532         }
533
534         return true;
535 }
536
537 /*
538   compare two ctdb_sock_addr structures
539  */
540 bool ctdb_same_sockaddr(const ctdb_sock_addr *ip1, const ctdb_sock_addr *ip2)
541 {
542         return ctdb_same_ip(ip1, ip2) && ip1->ip.sin_port == ip2->ip.sin_port;
543 }
544
545 char *ctdb_addr_to_str(ctdb_sock_addr *addr)
546 {
547         static char cip[128] = "";
548
549         switch (addr->sa.sa_family) {
550         case AF_INET:
551                 inet_ntop(addr->ip.sin_family, &addr->ip.sin_addr, cip, sizeof(cip));
552                 break;
553         case AF_INET6:
554                 inet_ntop(addr->ip6.sin6_family, &addr->ip6.sin6_addr, cip, sizeof(cip));
555                 break;
556         default:
557                 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
558         }
559
560         return cip;
561 }
562
563 unsigned ctdb_addr_to_port(ctdb_sock_addr *addr)
564 {
565         switch (addr->sa.sa_family) {
566         case AF_INET:
567                 return ntohs(addr->ip.sin_port);
568                 break;
569         case AF_INET6:
570                 return ntohs(addr->ip6.sin6_port);
571                 break;
572         default:
573                 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
574         }
575
576         return 0;
577 }
578
579 void ctdb_block_signal(int signum)
580 {
581         sigset_t set;
582         sigemptyset(&set);
583         sigaddset(&set,signum);
584         sigprocmask(SIG_BLOCK,&set,NULL);
585 }
586
587 void ctdb_unblock_signal(int signum)
588 {
589         sigset_t set;
590         sigemptyset(&set);
591         sigaddset(&set,signum);
592         sigprocmask(SIG_UNBLOCK,&set,NULL);
593 }
594
595 struct debug_levels debug_levels[] = {
596         {DEBUG_EMERG,   "EMERG"},
597         {DEBUG_ALERT,   "ALERT"},
598         {DEBUG_CRIT,    "CRIT"},
599         {DEBUG_ERR,     "ERR"},
600         {DEBUG_WARNING, "WARNING"},
601         {DEBUG_NOTICE,  "NOTICE"},
602         {DEBUG_INFO,    "INFO"},
603         {DEBUG_DEBUG,   "DEBUG"},
604         {0, NULL}
605 };
606
607 const char *get_debug_by_level(int32_t level)
608 {
609         int i;
610
611         for (i=0; debug_levels[i].description != NULL; i++) {
612                 if (debug_levels[i].level == level) {
613                         return debug_levels[i].description;
614                 }
615         }
616         return "Unknown";
617 }
618
619 int32_t get_debug_by_desc(const char *desc)
620 {
621         int i;
622
623         for (i=0; debug_levels[i].description != NULL; i++) {
624                 if (!strcmp(debug_levels[i].description, desc)) {
625                         return debug_levels[i].level;
626                 }
627         }
628
629         return DEBUG_ERR;
630 }
631
632 const char *ctdb_eventscript_call_names[] = {
633         "startup",
634         "startrecovery",
635         "recovered",
636         "takeip",
637         "releaseip",
638         "stopped",
639         "monitor",
640         "status",
641         "shutdown",
642         "reload"
643 };