]> git.proxmox.com Git - pve-cluster.git/blob - data/src/pmxcfs.c
corretly enable/disable logs to stderr
[pve-cluster.git] / data / src / pmxcfs.c
1 /*
2 Copyright (C) 2010 Proxmox Server Solutions GmbH
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Affero General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Affero General Public License for more details.
13
14 You should have received a copy of the GNU Affero General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 Author: Dietmar Maurer <dietmar@proxmox.com>
18
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif /* HAVE_CONFIG_H */
24
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <glib.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <sys/mount.h>
33 #include <fcntl.h>
34 #include <errno.h>
35 #include <sys/file.h>
36 #include <sys/types.h>
37 #include <dirent.h>
38 #include <sys/utsname.h>
39 #include <grp.h>
40 #include <netdb.h>
41 #include <sys/socket.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44
45 #include <qb/qbdefs.h>
46 #include <qb/qbutil.h>
47 #include <qb/qblog.h>
48
49 #include "cfs-utils.h"
50 #include "cfs-plug.h"
51 #include "cfs-plug-memdb.h"
52 #include "status.h"
53 #include "dcdb.h"
54 #include "dfsm.h"
55 #include "quorum.h"
56 #include "confdb.h"
57 #include "server.h"
58
59 #define DBFILENAME VARLIBDIR "/config.db"
60 #define LOCKFILE VARLIBDIR "/.pmxcfs.lockfile"
61
62 #define CFSDIR "/etc/pve"
63
64 cfs_t cfs = {
65 .debug = 0,
66 };
67
68 static struct fuse *fuse = NULL;
69
70 static cfs_plug_t *root_plug;
71
72 static void glib_print_handler(const gchar *string)
73 {
74 printf("%s", string);
75 }
76
77 static void glib_log_handler(const gchar *log_domain,
78 GLogLevelFlags log_level,
79 const gchar *message,
80 gpointer user_data)
81 {
82
83 cfs_log(log_domain, log_level, NULL, 0, NULL, message);
84 }
85
86 static gboolean write_pidfile(pid_t pid)
87 {
88 char *strpid = g_strdup_printf("%d\n", pid);
89 gboolean res = atomic_write_file(CFS_PID_FN, strpid, strlen(strpid), 0644, getgid());
90 g_free(strpid);
91
92 return res;
93 }
94
95 static cfs_plug_t *find_plug(const char *path, char **sub)
96 {
97 g_return_val_if_fail(root_plug != NULL, NULL);
98 g_return_val_if_fail(path != NULL, NULL);
99
100 while(*path == '/') path++;
101
102 cfs_debug("find_plug start %s", path);
103
104 char *tmppath = g_strdup(path);
105 char *subpath = tmppath;
106
107 cfs_plug_t *plug = root_plug->lookup_plug(root_plug, &subpath);
108
109 cfs_debug("find_plug end %s = %p (%s)", path, plug, subpath);
110
111 if (subpath && subpath[0])
112 *sub = g_strdup(subpath);
113
114 g_free(tmppath);
115
116 return plug;
117 }
118
119 void *cfs_fuse_init(struct fuse_conn_info *conn)
120 {
121 return NULL;
122 }
123
124 static int cfs_fuse_getattr(const char *path, struct stat *stbuf)
125 {
126 cfs_debug("enter cfs_fuse_getattr %s", path);
127
128 int ret = -EACCES;
129
130 char *subpath = NULL;
131 cfs_plug_t *plug = find_plug(path, &subpath);
132
133 if (plug && plug->ops && plug->ops->getattr) {
134 ret = plug->ops->getattr(plug, subpath ? subpath : "", stbuf);
135
136 stbuf->st_gid = cfs.gid;
137
138 stbuf->st_mode &= 0777750; // no access for other users
139
140 if (path_is_private(path))
141 stbuf->st_mode &= 0777700;
142 }
143
144 cfs_debug("leave cfs_fuse_getattr %s (%d)", path, ret);
145
146 if (subpath)
147 g_free(subpath);
148
149 return ret;
150
151 }
152
153 static int cfs_fuse_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
154 off_t offset, struct fuse_file_info *fi)
155 {
156 (void) offset;
157 (void) fi;
158
159 cfs_debug("enter cfs_fuse_readdir %s", path);
160
161 int ret = -EACCES;
162
163 char *subpath = NULL;
164 cfs_plug_t *plug = find_plug(path, &subpath);
165
166 if (!plug)
167 goto ret;
168
169 if (plug->ops && plug->ops->readdir)
170 ret = plug->ops->readdir(plug, subpath ? subpath : "", buf, filler, 0, fi);
171 ret:
172 cfs_debug("leave cfs_fuse_readdir %s (%d)", path, ret);
173
174 if (subpath)
175 g_free(subpath);
176
177 return ret;
178 }
179
180 static int cfs_fuse_mkdir(const char *path, mode_t mode)
181 {
182 cfs_debug("enter cfs_fuse_mkdir %s", path);
183
184 int ret = -EACCES;
185
186 char *subpath = NULL;
187 cfs_plug_t *plug = find_plug(path, &subpath);
188
189 if (!plug)
190 goto ret;
191
192 if (subpath && plug->ops && plug->ops->mkdir)
193 ret = plug->ops->mkdir(plug, subpath, mode);
194
195 ret:
196 cfs_debug("leave cfs_fuse_mkdir %s (%d)", path, ret);
197
198 if (subpath)
199 g_free(subpath);
200
201 return ret;
202 }
203
204 static int cfs_fuse_rmdir(const char *path)
205 {
206 cfs_debug("enter cfs_fuse_rmdir %s", path);
207
208 int ret = -EACCES;
209
210 char *subpath = NULL;
211 cfs_plug_t *plug = find_plug(path, &subpath);
212
213 if (!plug)
214 goto ret;
215
216 if (subpath && plug->ops && plug->ops->rmdir)
217 ret = plug->ops->rmdir(plug, subpath);
218
219 ret:
220 cfs_debug("leave cfs_fuse_rmdir %s (%d)", path, ret);
221
222 if (subpath)
223 g_free(subpath);
224
225 return ret;
226 }
227
228 static int cfs_fuse_rename(const char *from, const char *to)
229 {
230 cfs_debug("enter cfs_fuse_rename from %s to %s", from, to);
231
232 int ret = -EACCES;
233
234 char *sub_from = NULL;
235 cfs_plug_t *plug_from = find_plug(from, &sub_from);
236
237 char *sub_to = NULL;
238 cfs_plug_t *plug_to = find_plug(to, &sub_to);
239
240 if (!plug_from || !plug_to || plug_from != plug_to)
241 goto ret;
242
243 if (plug_from->ops && plug_from->ops->rename && sub_from && sub_to)
244 ret = plug_from->ops->rename(plug_from, sub_from, sub_to);
245
246 ret:
247 cfs_debug("leave cfs_fuse_rename from %s to %s (%d)", from, to, ret);
248
249 if (sub_from)
250 g_free(sub_from);
251
252 if (sub_to)
253 g_free(sub_to);
254
255 return ret;
256 }
257
258 static int cfs_fuse_open(const char *path, struct fuse_file_info *fi)
259 {
260 cfs_debug("enter cfs_fuse_open %s", path);
261
262 fi->direct_io = 1;
263 fi->keep_cache = 0;
264
265 int ret = -EACCES;
266
267 char *subpath = NULL;
268 cfs_plug_t *plug = find_plug(path, &subpath);
269
270 if (plug && plug->ops) {
271 if ((subpath || !plug->ops->readdir) && plug->ops->open) {
272 ret = plug->ops->open(plug, subpath ? subpath : "", fi);
273 }
274 }
275
276 cfs_debug("leave cfs_fuse_open %s (%d)", path, ret);
277
278 if (subpath)
279 g_free(subpath);
280
281 return ret;
282 }
283
284 static int cfs_fuse_read(const char *path, char *buf, size_t size, off_t offset,
285 struct fuse_file_info *fi)
286 {
287 (void) fi;
288
289 cfs_debug("enter cfs_fuse_read %s %lu %ld", path, size, offset);
290
291 int ret = -EACCES;
292
293 char *subpath = NULL;
294 cfs_plug_t *plug = find_plug(path, &subpath);
295
296 if (plug && plug->ops) {
297 if ((subpath || !plug->ops->readdir) && plug->ops->read)
298 ret = plug->ops->read(plug, subpath ? subpath : "", buf, size, offset, fi);
299 }
300
301 cfs_debug("leave cfs_fuse_read %s (%d)", path, ret);
302
303 if (subpath)
304 g_free(subpath);
305
306 return ret;
307 }
308
309 static int cfs_fuse_write(const char *path, const char *buf, size_t size,
310 off_t offset, struct fuse_file_info *fi)
311 {
312 (void) fi;
313
314 cfs_debug("enter cfs_fuse_write %s %lu %ld", path, size, offset);
315
316 int ret = -EACCES;
317
318 char *subpath = NULL;
319 cfs_plug_t *plug = find_plug(path, &subpath);
320
321 if (plug && plug->ops) {
322 if ((subpath || !plug->ops->readdir) && plug->ops->write)
323 ret = plug->ops->write(plug, subpath ? subpath : "",
324 buf, size, offset, fi);
325 }
326
327 cfs_debug("leave cfs_fuse_write %s (%d)", path, ret);
328
329 if (subpath)
330 g_free(subpath);
331
332 return ret;
333 }
334
335 static int cfs_fuse_truncate(const char *path, off_t size)
336 {
337 cfs_debug("enter cfs_fuse_truncate %s %ld", path, size);
338
339 int ret = -EACCES;
340
341 char *subpath = NULL;
342 cfs_plug_t *plug = find_plug(path, &subpath);
343
344 if (plug && plug->ops) {
345 if ((subpath || !plug->ops->readdir) && plug->ops->truncate)
346 ret = plug->ops->truncate(plug, subpath ? subpath : "", size);
347 }
348
349 cfs_debug("leave cfs_fuse_truncate %s (%d)", path, ret);
350
351 if (subpath)
352 g_free(subpath);
353
354 return ret;
355 }
356
357 static int cfs_fuse_create(const char *path, mode_t mode, struct fuse_file_info *fi)
358 {
359 cfs_debug("enter cfs_fuse_create %s", path);
360
361 int ret = -EACCES;
362
363 char *subpath = NULL;
364 cfs_plug_t *plug = find_plug(path, &subpath);
365
366 if (!plug)
367 goto ret;
368
369 if (subpath && plug->ops && plug->ops->create)
370 ret = plug->ops->create(plug, subpath, mode, fi);
371
372 ret:
373 cfs_debug("leave cfs_fuse_create %s (%d)", path, ret);
374
375 if (subpath)
376 g_free(subpath);
377
378 return ret;
379 }
380
381 static int cfs_fuse_unlink(const char *path)
382 {
383 cfs_debug("enter cfs_fuse_unlink %s", path);
384
385 int ret = -EACCES;
386
387 char *subpath = NULL;
388 cfs_plug_t *plug = find_plug(path, &subpath);
389
390 if (!plug)
391 goto ret;
392
393 if (subpath && plug->ops && plug->ops->unlink)
394 ret = plug->ops->unlink(plug, subpath);
395
396 ret:
397 cfs_debug("leave cfs_fuse_unlink %s (%d)", path, ret);
398
399 if (subpath)
400 g_free(subpath);
401
402 return ret;
403 }
404
405 static int cfs_fuse_readlink(const char *path, char *buf, size_t max)
406 {
407 cfs_debug("enter cfs_fuse_readlink %s", path);
408
409 int ret = -EACCES;
410
411 char *subpath = NULL;
412 cfs_plug_t *plug = find_plug(path, &subpath);
413
414 if (!plug)
415 goto ret;
416
417 if (plug->ops && plug->ops->readlink)
418 ret = plug->ops->readlink(plug, subpath ? subpath : "", buf, max);
419
420 ret:
421 cfs_debug("leave cfs_fuse_readlink %s (%d)", path, ret);
422
423 if (subpath)
424 g_free(subpath);
425
426 return ret;
427 }
428
429 static int cfs_fuse_utimens(const char *path, const struct timespec tv[2])
430 {
431 cfs_debug("enter cfs_fuse_utimens %s", path);
432
433 int ret = -EACCES;
434
435 char *subpath = NULL;
436 cfs_plug_t *plug = find_plug(path, &subpath);
437
438 if (!plug)
439 goto ret;
440
441 if (plug->ops && plug->ops->utimens)
442 ret = plug->ops->utimens(plug, subpath ? subpath : "", tv);
443
444 ret:
445 cfs_debug("leave cfs_fuse_utimens %s (%d)", path, ret);
446
447 if (subpath)
448 g_free(subpath);
449
450 return ret;
451 }
452
453 static int cfs_fuse_statfs(const char *path, struct statvfs *stbuf)
454 {
455 g_return_val_if_fail(root_plug != NULL, PARAM_CHECK_ERRNO);
456
457 cfs_debug("enter cfs_fuse_statfs %s", path);
458
459 int ret = -EACCES;
460
461 if (root_plug && root_plug->ops && root_plug->ops->statfs)
462 ret = root_plug->ops->statfs(root_plug, "", stbuf);
463
464 return ret;
465 }
466
467 static struct fuse_operations fuse_ops = {
468 .getattr = cfs_fuse_getattr,
469 .readdir = cfs_fuse_readdir,
470 .mkdir = cfs_fuse_mkdir,
471 .rmdir = cfs_fuse_rmdir,
472 .rename = cfs_fuse_rename,
473 .open = cfs_fuse_open,
474 .read = cfs_fuse_read,
475 .write = cfs_fuse_write,
476 .truncate = cfs_fuse_truncate,
477 .create = cfs_fuse_create,
478 .unlink = cfs_fuse_unlink,
479 .readlink = cfs_fuse_readlink,
480 .utimens = cfs_fuse_utimens,
481 .statfs = cfs_fuse_statfs,
482 .init = cfs_fuse_init
483 };
484
485 static char *
486 create_dot_version_cb(cfs_plug_t *plug)
487 {
488 GString *outbuf = g_string_new(NULL);
489 char *data = NULL;
490
491 if (cfs_create_version_msg(outbuf) == 0) {
492 data = outbuf->str;
493 g_string_free(outbuf, FALSE);
494 } else {
495 g_string_free(outbuf, TRUE);
496 }
497
498 return data;
499 }
500
501 static char *
502 create_dot_members_cb(cfs_plug_t *plug)
503 {
504 GString *outbuf = g_string_new(NULL);
505 char *data = NULL;
506
507 if (cfs_create_memberlist_msg(outbuf) == 0) {
508 data = outbuf->str;
509 g_string_free(outbuf, FALSE);
510 } else {
511 g_string_free(outbuf, TRUE);
512 }
513
514 return data;
515 }
516
517 static char *
518 create_dot_vmlist_cb(cfs_plug_t *plug)
519 {
520 GString *outbuf = g_string_new(NULL);
521 char *data = NULL;
522
523 if (cfs_create_vmlist_msg(outbuf) == 0) {
524 data = outbuf->str;
525 g_string_free(outbuf, FALSE);
526 } else {
527 g_string_free(outbuf, TRUE);
528 }
529
530 return data;
531 }
532
533 static char *
534 create_dot_rrd_cb(cfs_plug_t *plug)
535 {
536 GString *outbuf = g_string_new(NULL);
537
538 cfs_rrd_dump(outbuf);
539 char *data = outbuf->str;
540 g_string_free(outbuf, FALSE);
541
542 return data;
543 }
544
545 static char *
546 create_dot_clusterlog_cb(cfs_plug_t *plug)
547 {
548 GString *outbuf = g_string_new(NULL);
549
550 cfs_cluster_log_dump(outbuf, NULL, 50);
551 char *data = outbuf->str;
552 g_string_free(outbuf, FALSE);
553
554 return data;
555 }
556
557 static char *
558 read_debug_setting_cb(cfs_plug_t *plug)
559 {
560 return g_strdup_printf("%d\n", !!cfs.debug);
561 }
562
563 static void
564 update_qb_log_settings(void)
565 {
566 qb_log_filter_ctl(QB_LOG_STDERR, QB_LOG_FILTER_REMOVE, QB_LOG_FILTER_FILE, "*", LOG_DEBUG);
567
568 if (cfs.debug) {
569 qb_log_format_set(QB_LOG_SYSLOG, "[%g] %p: %b (%f:%l:%n)");
570 qb_log_format_set(QB_LOG_STDERR, "[%g] %p: %b (%f:%l:%n)");
571 qb_log_ctl(QB_LOG_SYSLOG, QB_LOG_CONF_PRIORITY_BUMP, LOG_INFO - LOG_DEBUG);
572 qb_log_filter_ctl(QB_LOG_STDERR, QB_LOG_FILTER_ADD, QB_LOG_FILTER_FILE, "*", LOG_DEBUG);
573 } else {
574 qb_log_format_set(QB_LOG_SYSLOG, "[%g] %p: %b");
575 qb_log_format_set(QB_LOG_STDERR, "[%g] %p: %b");
576 qb_log_ctl(QB_LOG_SYSLOG, QB_LOG_CONF_PRIORITY_BUMP, LOG_DEBUG - LOG_INFO);
577 qb_log_filter_ctl(QB_LOG_STDERR, QB_LOG_FILTER_ADD, QB_LOG_FILTER_FILE, "*", LOG_INFO);
578 }
579 }
580
581 static int write_debug_setting_cb(
582 cfs_plug_t *plug,
583 const char *buf,
584 size_t size)
585 {
586 int res = -EIO;
587
588 if (size < 2)
589 return res;
590
591 if (strncmp(buf, "0\n", 2) == 0) {
592 if (cfs.debug) {
593 cfs_message("disable debug mode");
594 cfs.debug = 0;
595 update_qb_log_settings();
596 }
597 return 2;
598 } else if (strncmp(buf, "1\n", 2) == 0) {
599 if (!cfs.debug) {
600 cfs.debug = 1;
601 update_qb_log_settings();
602 cfs_message("enable debug mode");
603 }
604 return 2;
605 }
606
607 return res;
608 }
609
610
611 static void
612 create_symlinks(cfs_plug_base_t *bplug, const char *nodename)
613 {
614 g_return_if_fail(bplug != NULL);
615 g_return_if_fail(nodename != NULL);
616
617 char *lnktarget = g_strdup_printf("nodes/%s", nodename);
618 cfs_plug_link_t *lnk = cfs_plug_link_new("local", lnktarget);
619 g_free(lnktarget);
620 cfs_plug_base_insert(bplug, (cfs_plug_t*)lnk);
621
622 lnktarget = g_strdup_printf("nodes/%s/qemu-server", nodename);
623 lnk = cfs_plug_link_new("qemu-server", lnktarget);
624 g_free(lnktarget);
625 cfs_plug_base_insert(bplug, (cfs_plug_t*)lnk);
626
627 lnktarget = g_strdup_printf("nodes/%s/openvz", nodename);
628 lnk = cfs_plug_link_new("openvz", lnktarget);
629 g_free(lnktarget);
630 cfs_plug_base_insert(bplug, (cfs_plug_t*)lnk);
631
632 cfs_plug_func_t *fplug = cfs_plug_func_new(".version", 0440, create_dot_version_cb, NULL);
633 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
634
635 fplug = cfs_plug_func_new(".members", 0440, create_dot_members_cb, NULL);
636 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
637
638 fplug = cfs_plug_func_new(".vmlist", 0440, create_dot_vmlist_cb, NULL);
639 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
640
641 fplug = cfs_plug_func_new(".rrd", 0440, create_dot_rrd_cb, NULL);
642 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
643
644 fplug = cfs_plug_func_new(".clusterlog", 0440, create_dot_clusterlog_cb, NULL);
645 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
646
647 fplug = cfs_plug_func_new(".debug", 0640, read_debug_setting_cb, write_debug_setting_cb);
648 cfs_plug_base_insert(bplug, (cfs_plug_t*)fplug);
649
650
651 }
652
653 static char *
654 lookup_node_ip(const char *nodename)
655 {
656 struct addrinfo *ainfo;
657 struct addrinfo ahints;
658 memset(&ahints, 0, sizeof(ahints));
659
660 if (getaddrinfo(nodename, NULL, &ahints, &ainfo))
661 return NULL;
662
663 if (ainfo->ai_family == AF_INET) {
664 char buf[INET6_ADDRSTRLEN];
665 struct sockaddr_in *sa = (struct sockaddr_in *)ainfo->ai_addr;
666 inet_ntop(ainfo->ai_family, &sa->sin_addr, buf, sizeof(buf));
667 if (strncmp(buf, "127.", 4) != 0) {
668 return g_strdup(buf);
669 }
670 }
671
672 // ipv6 support ?
673
674 return NULL;
675 }
676
677 static const char*
678 log_tags_stringify(uint32_t tags) {
679 if (qb_bit_is_set(tags, QB_LOG_TAG_LIBQB_MSG_BIT)) {
680 return "libqb";
681 } else {
682 GQuark quark = tags;
683 const char *domain = g_quark_to_string(quark);
684 if (domain != NULL) {
685 return domain;
686 } else {
687 return "main";
688 }
689 }
690 }
691
692 int main(int argc, char *argv[])
693 {
694 int ret = -1;
695 int lockfd = -1;
696
697 gboolean foreground = FALSE;
698 gboolean force_local_mode = FALSE;
699 gboolean wrote_pidfile = FALSE;
700 memdb_t *memdb = NULL;
701 dfsm_t *dcdb = NULL;
702 dfsm_t *status_fsm = NULL;
703
704 qb_log_init("pmxcfs", LOG_DAEMON, LOG_DEBUG);
705 qb_log_tags_stringify_fn_set(log_tags_stringify);
706
707 qb_log_ctl(QB_LOG_STDERR, QB_LOG_CONF_ENABLED, QB_TRUE);
708
709 update_qb_log_settings();
710
711 g_set_print_handler(glib_print_handler);
712 g_set_printerr_handler(glib_print_handler);
713 g_log_set_default_handler(glib_log_handler, NULL);
714
715 GOptionContext *context;
716
717 GOptionEntry entries[] = {
718 { "debug", 'd', 0, G_OPTION_ARG_NONE, &cfs.debug, "Turn on debug messages", NULL },
719 { "foreground", 'f', 0, G_OPTION_ARG_NONE, &foreground, "Do not daemonize server", NULL },
720 { "local", 'l', 0, G_OPTION_ARG_NONE, &force_local_mode,
721 "Force local mode (ignore cluster.conf, force quorum)", NULL },
722 { NULL },
723 };
724
725 context = g_option_context_new ("");
726 g_option_context_add_main_entries (context, entries, NULL);
727
728 GError *err = NULL;
729 if (!g_option_context_parse (context, &argc, &argv, &err))
730 {
731 cfs_critical("option parsing failed: %s", err->message);
732 g_error_free (err);
733 qb_log_fini();
734 exit (1);
735 }
736 g_option_context_free(context);
737
738 if (optind < argc) {
739 cfs_critical("too many arguments");
740 qb_log_fini();
741 exit(-1);
742 }
743
744 if (cfs.debug) {
745 update_qb_log_settings();
746 }
747
748 struct utsname utsname;
749 if (uname(&utsname) != 0) {
750 cfs_critical("Unable to read local node name");
751 qb_log_fini();
752 exit (-1);
753 }
754
755 for (int i=0; i < sizeof(utsname.nodename); i++) {
756 if (utsname.nodename[i] =='.') utsname.nodename[i] = 0;
757 }
758
759 cfs.nodename = g_strdup(utsname.nodename);
760
761 if (!(cfs.ip = lookup_node_ip(cfs.nodename))) {
762 cfs_critical("Unable to get local IP address");
763 qb_log_fini();
764 exit(-1);
765 }
766
767 struct group *www_data = getgrnam("www-data");
768 if (!www_data) {
769 cfs_critical("Unable to get www-data group ID");
770 qb_log_fini();
771 exit (-1);
772 }
773 cfs.gid = www_data->gr_gid;
774
775 g_thread_init(NULL);
776
777 umask(027);
778
779 mkdir(VARLIBDIR, 0755);
780
781 if ((lockfd = open(LOCKFILE, O_RDWR|O_CREAT|O_APPEND)) == -1) {
782 cfs_critical("unable to create lock '%s': %s", LOCKFILE, strerror (errno));
783 goto err;
784 }
785
786 for (int i = 10; i >= 0; i--) {
787 if (flock(lockfd, LOCK_EX|LOCK_NB) != 0) {
788 if (!i) {
789 cfs_critical("unable to aquire pmxcfs lock: %s", strerror (errno));
790 goto err;
791 }
792 if (i == 10)
793 cfs_message("unable to aquire pmxcfs lock - trying again");
794
795 sleep(1);
796 }
797 }
798
799 cfs_status_init();
800
801 gboolean create = !g_file_test(DBFILENAME, G_FILE_TEST_EXISTS);
802
803 if (!(memdb = memdb_open (DBFILENAME))) {
804 cfs_critical("memdb_open failed - unable to open database '%s'", DBFILENAME);
805 goto err;
806 }
807
808 // automatically import cluster.conf from host
809 if (create && !force_local_mode) {
810 char *cdata = NULL;
811 gsize clen = 0;
812 if (g_file_get_contents(HOST_CLUSTER_CONF_FN, &cdata, &clen, NULL)) {
813
814 guint32 mtime = time(NULL);
815
816 memdb_create(memdb, "/cluster.conf", 0, mtime);
817 if (memdb_write(memdb, "/cluster.conf", 0, mtime, cdata, clen, 0, 1) < 0) {
818 cfs_critical("memdb_write failed - unable to import cluster.conf");
819 goto err;
820 }
821 }
822 }
823
824 // does cluster.conf exist?
825 gpointer conf_data = NULL;
826 int len = memdb_read(memdb, "cluster.conf", &conf_data);
827 if (len >= 0) {
828 if (force_local_mode) {
829 cfs_message("forcing local mode (althought cluster.conf exists)");
830 cfs_set_quorate(1, TRUE);
831 } else {
832 if (!(dcdb = dcdb_new(memdb)))
833 goto err;
834 dcdb_sync_cluster_conf(memdb, 1);
835 }
836 } else {
837 cfs_debug("using local mode (cluster.conf does not exist)");
838 cfs_set_quorate(1, TRUE);
839 }
840 if (conf_data) g_free(conf_data);
841
842 cfs_plug_memdb_t *config = cfs_plug_memdb_new("memdb", memdb, dcdb);
843
844 cfs_plug_base_t *bplug = cfs_plug_base_new("", (cfs_plug_t *)config);
845
846 create_symlinks(bplug, cfs.nodename);
847
848 root_plug = (cfs_plug_t *)bplug;
849
850 system("umount -f " CFSDIR " >/dev/null 2>&1");
851
852 char *fa[] = { "-f", "-odefault_permissions", "-oallow_other", NULL};
853
854 struct fuse_args fuse_args = FUSE_ARGS_INIT(sizeof (fa)/sizeof(gpointer) - 1, fa);
855
856 struct fuse_chan *fuse_chan = fuse_mount(CFSDIR, &fuse_args);
857 if (!fuse_chan) {
858 cfs_critical("fuse_mount error: %s", strerror(errno));
859 goto err;
860 }
861
862 if (!(fuse = fuse_new(fuse_chan, &fuse_args, &fuse_ops, sizeof(fuse_ops), NULL))) {
863 cfs_critical("fuse_new error: %s", strerror(errno));
864 goto err;
865 }
866
867 fuse_set_signal_handlers(fuse_get_session(fuse));
868
869 if (!foreground) {
870 pid_t cpid = fork();
871
872 if (cpid == -1) {
873 cfs_critical("failed to daemonize program - %s", strerror (errno));
874 goto err;
875 } else if (cpid) {
876 write_pidfile(cpid);
877 qb_log_fini();
878 _exit (0);
879 } else {
880 int nullfd;
881
882 chroot("/");
883
884 if ((nullfd = open("/dev/null", O_RDWR, 0)) != -1) {
885 dup2(nullfd, 0);
886 dup2(nullfd, 1);
887 dup2(nullfd, 2);
888 if (nullfd > 2)
889 close (nullfd);
890 }
891
892 // do not print to the console after this point
893 qb_log_ctl(QB_LOG_STDERR, QB_LOG_CONF_ENABLED, QB_FALSE);
894
895 setsid();
896 }
897 } else {
898 write_pidfile(getpid());
899 }
900
901 wrote_pidfile = TRUE;
902
903 cfs_loop_t *corosync_loop = cfs_loop_new(fuse);
904
905 cfs_service_t *service_quorum = NULL;
906 cfs_service_t *service_confdb = NULL;
907 cfs_service_t *service_dcdb = NULL;
908 cfs_service_t *service_status = NULL;
909
910 if (dcdb) {
911
912 service_quorum = service_quorum_new();
913
914 cfs_loop_add_service(corosync_loop, service_quorum, QB_LOOP_HIGH);
915
916 service_confdb = service_confdb_new();
917
918 cfs_loop_add_service(corosync_loop, service_confdb, QB_LOOP_MED);
919
920 service_dcdb = service_dfsm_new(dcdb);
921 cfs_service_set_timer(service_dcdb, DCDB_VERIFY_TIME);
922
923 cfs_loop_add_service(corosync_loop, service_dcdb, QB_LOOP_MED);
924
925 status_fsm = cfs_status_dfsm_new();
926 service_status = service_dfsm_new(status_fsm);
927
928 cfs_loop_add_service(corosync_loop, service_status, QB_LOOP_LOW);
929
930 }
931
932 cfs_loop_start_worker(corosync_loop);
933
934 server_start(memdb);
935
936 ret = fuse_loop_mt(fuse);
937
938 cfs_message("teardown filesystem");
939
940 server_stop();
941
942 fuse_unmount(CFSDIR, fuse_chan);
943
944 fuse_destroy(fuse);
945
946 cfs_debug("set stop event loop flag");
947
948 cfs_loop_stop_worker(corosync_loop);
949
950 cfs_loop_destroy(corosync_loop);
951
952 cfs_debug("worker finished");
953
954 if (service_dcdb)
955 service_dfsm_destroy(service_dcdb);
956
957 if (service_confdb)
958 service_confdb_destroy(service_confdb);
959
960 if (service_quorum)
961 service_quorum_destroy(service_quorum);
962
963 if (service_status)
964 service_dfsm_destroy(service_status);
965
966 sleep(1); /* do not restart too fast */
967 ret:
968
969 if (status_fsm)
970 dfsm_destroy(status_fsm);
971
972 if (dcdb)
973 dfsm_destroy(dcdb);
974
975 if (memdb)
976 memdb_close(memdb);
977
978 if (wrote_pidfile)
979 unlink(CFS_PID_FN);
980
981 cfs_message("exit proxmox configuration filesystem (%d)", ret);
982
983 cfs_status_cleanup();
984
985 qb_log_fini();
986
987 exit(ret);
988
989 err:
990 goto ret;
991 }