2 common system utilities
4 Copyright (C) Amitay Isaacs 2014
5 Copyright (C) Martin Schwenke 2014
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "system/filesys.h"
23 #include "system/shmem.h"
27 #include "ctdb_private.h"
38 if possible, make this task real time
40 bool set_scheduler(void)
43 #if HAVE_THREAD_SETSCHED
44 struct thrdentry64 te
;
48 if (getthrds64(getpid(), &te
, sizeof(te
), &ti
, 1) != 1) {
49 DEBUG(DEBUG_ERR
, ("Unable to get thread information\n"));
53 if (thread_setsched(te
.ti_tid
, 0, SCHED_RR
) == -1) {
54 DEBUG(DEBUG_ERR
, ("Unable to set scheduler to SCHED_RR (%s)\n",
62 #if HAVE_SCHED_SETSCHEDULER
64 int policy
= SCHED_FIFO
;
68 #ifdef SCHED_RESET_ON_FORK
69 policy
|= SCHED_RESET_ON_FORK
;
71 if (sched_setscheduler(0, policy
, &p
) == -1) {
72 DEBUG(DEBUG_CRIT
,("Unable to set scheduler to SCHED_FIFO (%s)\n",
80 DEBUG(DEBUG_CRIT
,("No way to set real-time priority.\n"));
85 reset scheduler from real-time to normal scheduling
87 void reset_scheduler(void)
90 #if HAVE_THREAD_SETSCHED
91 struct thrdentry64 te
;
95 if (getthrds64(getpid(), &te
, sizeof(te
), &ti
, 1) != 1) {
96 DEBUG(DEBUG_ERR
, ("Unable to get thread information\n"));
98 if (thread_setsched(te
.ti_tid
, 0, SCHED_OTHER
) == -1) {
99 DEBUG(DEBUG_ERR
, ("Unable to set scheduler to SCHED_OTHER\n"));
103 #if HAVE_SCHED_SETSCHEDULER
104 #ifndef SCHED_RESET_ON_FORK
105 struct sched_param p
;
107 p
.sched_priority
= 0;
108 if (sched_setscheduler(0, SCHED_OTHER
, &p
) == -1) {
109 DEBUG(DEBUG_ERR
, ("Unable to set scheduler to SCHED_OTHER\n"));
116 void set_nonblocking(int fd
)
120 v
= fcntl(fd
, F_GETFL
, 0);
122 DEBUG(DEBUG_WARNING
, ("Failed to get file status flags - %s\n",
126 if (fcntl(fd
, F_SETFL
, v
| O_NONBLOCK
) == -1) {
127 DEBUG(DEBUG_WARNING
, ("Failed to set non_blocking on fd - %s\n",
132 void set_close_on_exec(int fd
)
136 v
= fcntl(fd
, F_GETFD
, 0);
138 DEBUG(DEBUG_WARNING
, ("Failed to get file descriptor flags - %s\n",
142 if (fcntl(fd
, F_SETFD
, v
| FD_CLOEXEC
) != 0) {
143 DEBUG(DEBUG_WARNING
, ("Failed to set close_on_exec on fd - %s\n",
149 bool parse_ipv4(const char *s
, unsigned port
, struct sockaddr_in
*sin
)
151 sin
->sin_family
= AF_INET
;
152 sin
->sin_port
= htons(port
);
154 if (inet_pton(AF_INET
, s
, &sin
->sin_addr
) != 1) {
155 DEBUG(DEBUG_ERR
, (__location__
" Failed to translate %s into sin_addr\n", s
));
162 static bool parse_ipv6(const char *s
, const char *ifaces
, unsigned port
, ctdb_sock_addr
*saddr
)
164 saddr
->ip6
.sin6_family
= AF_INET6
;
165 saddr
->ip6
.sin6_port
= htons(port
);
166 saddr
->ip6
.sin6_flowinfo
= 0;
167 saddr
->ip6
.sin6_scope_id
= 0;
169 if (inet_pton(AF_INET6
, s
, &saddr
->ip6
.sin6_addr
) != 1) {
170 DEBUG(DEBUG_ERR
, (__location__
" Failed to translate %s into sin6_addr\n", s
));
174 if (ifaces
&& IN6_IS_ADDR_LINKLOCAL(&saddr
->ip6
.sin6_addr
)) {
175 if (strchr(ifaces
, ',')) {
176 DEBUG(DEBUG_ERR
, (__location__
" Link local address %s "
177 "is specified for multiple ifaces %s\n",
181 saddr
->ip6
.sin6_scope_id
= if_nametoindex(ifaces
);
190 bool parse_ip(const char *addr
, const char *ifaces
, unsigned port
, ctdb_sock_addr
*saddr
)
195 ZERO_STRUCTP(saddr
); /* valgrind :-) */
197 /* now is this a ipv4 or ipv6 address ?*/
198 p
= index(addr
, ':');
200 ret
= parse_ipv4(addr
, port
, &saddr
->ip
);
202 ret
= parse_ipv6(addr
, ifaces
, port
, saddr
);
211 bool parse_ip_mask(const char *str
, const char *ifaces
, ctdb_sock_addr
*addr
, unsigned *mask
)
214 char s
[64]; /* Much longer than INET6_ADDRSTRLEN */
222 if (len
>= sizeof(s
)) {
223 DEBUG(DEBUG_ERR
, ("Address %s is unreasonably long\n", str
));
227 strncpy(s
, str
, len
+1);
231 DEBUG(DEBUG_ERR
, (__location__
" This addr: %s does not contain a mask\n", s
));
235 *mask
= strtoul(p
+1, &endp
, 10);
236 if (endp
== NULL
|| *endp
!= 0) {
237 /* trailing garbage */
238 DEBUG(DEBUG_ERR
, (__location__
" Trailing garbage after the mask in %s\n", s
));
244 /* now is this a ipv4 or ipv6 address ?*/
245 ret
= parse_ip(s
, ifaces
, 0, addr
);
253 bool parse_ip_port(const char *addr
, ctdb_sock_addr
*saddr
)
256 char s
[64]; /* Much longer than INET6_ADDRSTRLEN */
263 if (len
>= sizeof(s
)) {
264 DEBUG(DEBUG_ERR
, ("Address %s is unreasonably long\n", addr
));
268 strncpy(s
, addr
, len
+1);
272 DEBUG(DEBUG_ERR
, (__location__
" This addr: %s does not contain a port number\n", s
));
276 port
= strtoul(p
+1, &endp
, 10);
277 if (endp
== NULL
|| *endp
!= 0) {
278 /* trailing garbage */
279 DEBUG(DEBUG_ERR
, (__location__
" Trailing garbage after the port in %s\n", s
));
284 /* now is this a ipv4 or ipv6 address ?*/
285 ret
= parse_ip(s
, NULL
, port
, saddr
);
290 /* we don't lock future pages here; it would increase the chance that
291 * we'd fail to mmap later on. */
292 void lockdown_memory(bool valgrinding
)
294 #if defined(HAVE_MLOCKALL) && !defined(_AIX_)
295 /* Extra stack, please! */
297 memset(dummy
, 0, sizeof(dummy
));
303 /* Ignore when running in local daemons mode */
308 /* Avoid compiler optimizing out dummy. */
309 mlock(dummy
, sizeof(dummy
));
310 if (mlockall(MCL_CURRENT
) != 0) {
311 DEBUG(DEBUG_WARNING
,("Failed to lockdown memory: %s'\n",
317 int mkdir_p(const char *dir
, int mode
)
323 if (strcmp(dir
, "/") == 0) {
327 if (strcmp(dir
, ".") == 0) {
331 /* Try to create directory */
332 ret
= mkdir(dir
, mode
);
333 /* Succeed if that worked or if it already existed */
334 if (ret
== 0 || errno
== EEXIST
) {
337 /* Fail on anything else except ENOENT */
338 if (errno
!= ENOENT
) {
342 /* Create ancestors */
344 if (len
>= PATH_MAX
) {
345 errno
= ENAMETOOLONG
;
348 strncpy(t
, dir
, len
+1);
350 ret
= mkdir_p(dirname(t
), mode
);
355 /* Create directory */
356 ret
= mkdir(dir
, mode
);
357 if ((ret
== -1) && (errno
== EEXIST
)) {
364 void mkdir_p_or_die(const char *dir
, int mode
)
368 ret
= mkdir_p(dir
, mode
);
371 ("ctdb exiting with error: "
372 "failed to create directory \"%s\" (%s)\n",
373 dir
, strerror(errno
)));
378 /* A read wrapper that will deal with EINTR. For now, copied from
379 * source3/lib/system.c
381 ssize_t
sys_read(int fd
, void *buf
, size_t count
)
386 ret
= read(fd
, buf
, count
);
387 #if defined(EWOULDBLOCK)
388 } while (ret
== -1 && (errno
== EINTR
|| errno
== EAGAIN
|| errno
== EWOULDBLOCK
));
390 } while (ret
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
395 /* A write wrapper that will deal with EINTR. For now, copied from
396 * source3/lib/system.c
398 ssize_t
sys_write(int fd
, const void *buf
, size_t count
)
403 ret
= write(fd
, buf
, count
);
404 #if defined(EWOULDBLOCK)
405 } while (ret
== -1 && (errno
== EINTR
|| errno
== EAGAIN
|| errno
== EWOULDBLOCK
));
407 } while (ret
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));