]> git.proxmox.com Git - pve-cluster.git/blobdiff - data/src/status.c
pmxcfs: vminfo_type_to_string: fixup indendation and parenthesis
[pve-cluster.git] / data / src / status.c
index b5b282859f0599eb573ceacf41e307f1dba7f623..5e51d59a2c5816610b8f03e602e2064ee49d0733 100644 (file)
@@ -75,17 +75,26 @@ typedef struct {
 } memdb_change_t;
 
 static memdb_change_t memdb_change_array[] = {
-       { .path = "cluster.conf" },
-       { .path = "cluster.conf.new" },
+       { .path = "corosync.conf" },
+       { .path = "corosync.conf.new" },
        { .path = "storage.cfg" },
        { .path = "user.cfg" },
        { .path = "domains.cfg" },
        { .path = "priv/shadow.cfg" },
+       { .path = "priv/tfa.cfg" },
        { .path = "datacenter.cfg" },
        { .path = "vzdump.cron" },
+       { .path = "ha/crm_commands" },
+       { .path = "ha/manager_status" },
+       { .path = "ha/resources.cfg" },
+       { .path = "ha/groups.cfg" },
+       { .path = "ha/fence.cfg" },
+       { .path = "status.cfg" },
+       { .path = "replication.cfg" },
+       { .path = "ceph.conf" },
 };
 
-static GStaticMutex mutex = G_STATIC_MUTEX_INIT;
+static GMutex mutex;
 
 typedef struct {
        time_t start_time;
@@ -150,6 +159,19 @@ static void vminfo_free(vminfo_t *vminfo)
        g_free(vminfo);
 }
 
+static const char *vminfo_type_to_string(vminfo_t *vminfo)
+{
+       if (vminfo->vmtype == VMTYPE_QEMU) {
+               return "qemu";
+       } else if (vminfo->vmtype == VMTYPE_OPENVZ) {
+               return "openvz";
+       } else if (vminfo->vmtype == VMTYPE_LXC) {
+               return "lxc";
+       } else {
+               return "unknown";
+       }
+}
+
 void cfs_clnode_destroy(
        cfs_clnode_t *clnode)
 {
@@ -249,7 +271,7 @@ cfs_create_memberlist_msg(
 {
        g_return_val_if_fail(str != NULL, -EINVAL);
 
-       g_static_mutex_lock(&mutex);
+       g_mutex_lock (&mutex);
 
        g_string_append_printf(str,"{\n");
 
@@ -305,7 +327,7 @@ cfs_create_memberlist_msg(
 
        g_string_append_printf(str,"}\n");
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return 0;
 }
@@ -362,13 +384,14 @@ cfs_cluster_log(clog_entry_t *entry)
                iov[0].iov_base = (char *)entry;
                iov[0].iov_len = clog_entry_size(entry);
 
-               dfsm_send_message(cfs_status.kvstore, KVSTORE_MESSAGE_LOG, iov, 1);
+               if (dfsm_is_initialized(cfs_status.kvstore))
+                       dfsm_send_message(cfs_status.kvstore, KVSTORE_MESSAGE_LOG, iov, 1);
        }
 }
 
 void cfs_status_init(void)
 {
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.start_time = time(NULL);
 
@@ -394,12 +417,12 @@ void cfs_status_init(void)
        clusterlog_add(cfs_status.clusterlog, "root", "cluster", getpid(),
                       LOG_INFO, "starting cluster log");
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 void cfs_status_cleanup(void)
 {
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.clinfo_version++;
 
@@ -431,7 +454,7 @@ void cfs_status_cleanup(void)
        if (cfs_status.clusterlog)
                clusterlog_destroy(cfs_status.clusterlog);
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 void cfs_status_set_clinfo(
@@ -439,7 +462,7 @@ void cfs_status_set_clinfo(
 {
        g_return_if_fail(clinfo != NULL);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.clinfo_version++;
 
@@ -475,7 +498,7 @@ void cfs_status_set_clinfo(
                cfs_clinfo_destroy(old);
 
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 static void
@@ -512,7 +535,7 @@ cfs_create_version_msg(GString *str)
 {
        g_return_val_if_fail(str != NULL, -EINVAL);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        g_string_append_printf(str,"{\n");
 
@@ -554,7 +577,7 @@ cfs_create_version_msg(GString *str)
 
        g_string_append_printf(str,"}\n");
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return 0;
 }
@@ -577,7 +600,8 @@ vmlist_hash_insert_vm(
        g_return_val_if_fail(vmlist != NULL, FALSE);
        g_return_val_if_fail(nodename != NULL, FALSE);
        g_return_val_if_fail(vmid != 0, FALSE);
-       g_return_val_if_fail(vmtype == VMTYPE_QEMU || vmtype == VMTYPE_OPENVZ, FALSE);
+       g_return_val_if_fail(vmtype == VMTYPE_QEMU || vmtype == VMTYPE_OPENVZ ||
+                            vmtype == VMTYPE_LXC, FALSE);
 
        if (!replace && g_hash_table_lookup(vmlist, &vmid)) {
                cfs_critical("detected duplicate VMID %d", vmid);
@@ -606,17 +630,18 @@ vmlist_register_vm(
        g_return_if_fail(cfs_status.vmlist != NULL);
        g_return_if_fail(nodename != NULL);
        g_return_if_fail(vmid != 0);
-       g_return_if_fail(vmtype == VMTYPE_QEMU || vmtype == VMTYPE_OPENVZ);
+       g_return_if_fail(vmtype == VMTYPE_QEMU || vmtype == VMTYPE_OPENVZ ||
+                        vmtype == VMTYPE_LXC);
 
        cfs_debug("vmlist_register_vm: %s/%u %d", nodename, vmid, vmtype);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.vmlist_version++;
 
        vmlist_hash_insert_vm(cfs_status.vmlist, vmtype, vmid, nodename, TRUE);
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 gboolean
@@ -630,14 +655,14 @@ vmlist_different_vm_exists(
 
        gboolean res = FALSE;
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        vminfo_t *vminfo;
        if ((vminfo = (vminfo_t *)g_hash_table_lookup(cfs_status.vmlist, &vmid))) {
                if (!(vminfo->vmtype == vmtype && strcmp(vminfo->nodename, nodename) == 0))
                        res = TRUE;
        }
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return res;
 }
@@ -649,11 +674,11 @@ vmlist_vm_exists(
        g_return_val_if_fail(cfs_status.vmlist != NULL, FALSE);
        g_return_val_if_fail(vmid != 0, FALSE);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        gpointer res = g_hash_table_lookup(cfs_status.vmlist, &vmid);
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return res != NULL;
 }
@@ -665,13 +690,13 @@ vmlist_delete_vm(
        g_return_if_fail(cfs_status.vmlist != NULL);
        g_return_if_fail(vmid != 0);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.vmlist_version++;
 
        g_hash_table_remove(cfs_status.vmlist, &vmid);
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 void cfs_status_set_vmlist(
@@ -679,7 +704,7 @@ void cfs_status_set_vmlist(
 {
        g_return_if_fail(vmlist != NULL);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.vmlist_version++;
 
@@ -688,7 +713,7 @@ void cfs_status_set_vmlist(
 
        cfs_status.vmlist = vmlist;
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 int
@@ -697,7 +722,7 @@ cfs_create_vmlist_msg(GString *str)
        g_return_val_if_fail(cfs_status.vmlist != NULL, -EINVAL);
        g_return_val_if_fail(str != NULL, -EINVAL);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        g_string_append_printf(str,"{\n");
 
@@ -720,14 +745,7 @@ cfs_create_vmlist_msg(GString *str)
                int first = 1;
                while (g_hash_table_iter_next (&iter, &key, &value)) {
                        vminfo_t *vminfo = (vminfo_t *)value;
-                       char *type;
-                       if (vminfo->vmtype == VMTYPE_QEMU) {
-                               type = "qemu";
-                       } else if (vminfo->vmtype == VMTYPE_OPENVZ) {
-                               type = "openvz";
-                       } else {
-                               type = "unknown";
-                       }
+                       const char *type = vminfo_type_to_string(vminfo);
 
                        if (!first)
                                g_string_append_printf(str, ",\n");
@@ -741,7 +759,7 @@ cfs_create_vmlist_msg(GString *str)
        }
        g_string_append_printf(str,"\n}\n");
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return 0;
 }
@@ -778,7 +796,9 @@ kventry_hash_set(
        g_return_val_if_fail(data != NULL, FALSE);
 
        kventry_t *entry;
-       if ((entry = (kventry_t *)g_hash_table_lookup(kvhash, key))) {
+       if (!len) {
+               g_hash_table_remove(kvhash, key);
+       } else if ((entry = (kventry_t *)g_hash_table_lookup(kvhash, key))) {
                g_free(entry->data);
                entry->data = g_memdup(data, len);
                entry->len = len;
@@ -807,8 +827,8 @@ static const char *rrd_def_node[] = {
        "DS:swapused:GAUGE:120:0:U",
        "DS:roottotal:GAUGE:120:0:U",
        "DS:rootused:GAUGE:120:0:U",
-       "DS:netin:COUNTER:120:0:U",
-       "DS:netout:COUNTER:120:0:U",
+       "DS:netin:DERIVE:120:0:U",
+       "DS:netout:DERIVE:120:0:U",
 
        "RRA:AVERAGE:0.5:1:70", // 1 min avg - one hour
        "RRA:AVERAGE:0.5:30:70", // 30 min avg - one day
@@ -831,10 +851,10 @@ static const char *rrd_def_vm[] = {
        "DS:mem:GAUGE:120:0:U",
        "DS:maxdisk:GAUGE:120:0:U",
        "DS:disk:GAUGE:120:0:U",
-       "DS:netin:COUNTER:120:0:U",
-       "DS:netout:COUNTER:120:0:U",
-       "DS:diskread:COUNTER:120:0:U",
-       "DS:diskwrite:COUNTER:120:0:U",
+       "DS:netin:DERIVE:120:0:U",
+       "DS:netout:DERIVE:120:0:U",
+       "DS:diskread:DERIVE:120:0:U",
+       "DS:diskwrite:DERIVE:120:0:U",
 
        "RRA:AVERAGE:0.5:1:70", // 1 min avg - one hour
        "RRA:AVERAGE:0.5:30:70", // 30 min avg - one day
@@ -920,14 +940,14 @@ update_rrd_data(
         if (rrdc_connect(rrdcsock) != 0)
                use_daemon = 0;
 
-       char *filename = g_strdup_printf(RRDDIR "/%s", key);
+       char *filename = NULL;
 
        int skip = 0;
 
        if (strncmp(key, "pve2-node/", 10) == 0) {
                const char *node = key + 10;
 
-               skip = 1;
+               skip = 2;
 
                if (strchr(node, '/') != NULL)
                        goto keyerror;
@@ -935,6 +955,8 @@ update_rrd_data(
                if (strlen(node) < 1)
                        goto keyerror;
 
+               filename = g_strdup_printf(RRDDIR "/%s", key);
+
                if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
 
                        mkdir(RRDDIR "/pve2-node", 0755);
@@ -942,10 +964,17 @@ update_rrd_data(
                        create_rrd_file(filename, argcount, rrd_def_node);
                }
 
-       } else if (strncmp(key, "pve2-vm/", 8) == 0) {
-               const char *vmid = key + 8;
+       } else if ((strncmp(key, "pve2-vm/", 8) == 0) ||
+                  (strncmp(key, "pve2.3-vm/", 10) == 0)) {
+               const char *vmid;
 
-               skip = 2;
+               if (strncmp(key, "pve2-vm/", 8) == 0) {
+                       vmid = key + 8;
+                       skip = 2;
+               } else {
+                       vmid = key + 10;
+                       skip = 4;
+               }
 
                if (strchr(vmid, '/') != NULL)
                        goto keyerror;
@@ -953,6 +982,8 @@ update_rrd_data(
                if (strlen(vmid) < 1)
                        goto keyerror;
 
+               filename = g_strdup_printf(RRDDIR "/%s/%s", "pve2-vm", vmid);
+
                if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
 
                        mkdir(RRDDIR "/pve2-vm", 0755);
@@ -978,6 +1009,8 @@ update_rrd_data(
                if (strlen(storage) < 1)
                        goto keyerror;
 
+               filename = g_strdup_printf(RRDDIR "/%s", key);
+
                if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
 
                        mkdir(RRDDIR "/pve2-storage", 0755);
@@ -1017,7 +1050,9 @@ update_rrd_data(
        }
 
 ret:
-       g_free(filename);
+       if (filename) 
+               g_free(filename);
+
        return;
 
 keyerror:
@@ -1049,10 +1084,13 @@ void
 cfs_rrd_dump(GString *str)
 {
        time_t ctime;
-       time(&ctime);
 
+       g_mutex_lock (&mutex);
+
+       time(&ctime);
        if (rrd_dump_buf && (ctime - rrd_dump_last) < 2) {
                g_string_assign(str, rrd_dump_buf);
+               g_mutex_unlock (&mutex);
                return;
        }
 
@@ -1081,6 +1119,8 @@ cfs_rrd_dump(GString *str)
        if (rrd_dump_buf)
                g_free(rrd_dump_buf);
        rrd_dump_buf = g_strdup(str->str);
+
+       g_mutex_unlock (&mutex);
 }
 
 static gboolean
@@ -1150,6 +1190,8 @@ kvstore_send_update_message(
        gpointer data,
        guint32 len)
 {
+       if (!dfsm_is_initialized(dfsm))
+               return -EACCES;
 
        struct iovec iov[2];
 
@@ -1176,7 +1218,7 @@ kvstore_parse_log_message(
        g_return_val_if_fail(msg != NULL, NULL);
 
        if (msg_len < sizeof(clog_entry_t)) {
-               cfs_critical("received short log message (%lu < %lu)", msg_len, sizeof(clog_entry_t));
+               cfs_critical("received short log message (%zu < %zu)", msg_len, sizeof(clog_entry_t));
                return NULL;
        }
 
@@ -1186,7 +1228,7 @@ kvstore_parse_log_message(
                entry->ident_len + entry->tag_len + entry->msg_len;
 
        if (msg_len != size) {
-               cfs_critical("received log message with wrong size (%lu != %u)", msg_len, size);
+               cfs_critical("received log message with wrong size (%zu != %u)", msg_len, size);
                return NULL;
        }
 
@@ -1232,7 +1274,7 @@ kvstore_parse_update_message(
        g_return_val_if_fail(len != NULL, FALSE);
 
        if (msg_len < 256) {
-               cfs_critical("received short kvstore message (%lu < 256)", msg_len);
+               cfs_critical("received short kvstore message (%zu < 256)", msg_len);
                return FALSE;
        }
 
@@ -1266,11 +1308,11 @@ cfs_create_status_msg(
 
        GHashTable *kvhash = NULL;
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        if (!nodename || !nodename[0] || !strcmp(nodename, cfs.nodename)) {
                kvhash = cfs_status.kvhash;
-       } else {
+       } else if (cfs_status.clinfo && cfs_status.clinfo->nodes_byname) {
                cfs_clnode_t *clnode;
                if ((clnode = g_hash_table_lookup(cfs_status.clinfo->nodes_byname, nodename)))
                        kvhash = clnode->kvhash;
@@ -1282,7 +1324,7 @@ cfs_create_status_msg(
                res = 0;
        }
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return res;
 }
@@ -1300,7 +1342,7 @@ cfs_status_set(
        if (len > CFS_MAX_STATUS_SIZE)
                return -EFBIG;
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        gboolean res;
 
@@ -1311,7 +1353,7 @@ cfs_status_set(
        } else {
                res = kventry_hash_set(cfs_status.kvhash, key, data, len);
        }
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        if (cfs_status.kvstore)
                kvstore_send_update_message(cfs_status.kvstore, key, data, len);
@@ -1330,7 +1372,7 @@ cfs_kvstore_node_set(
        g_return_val_if_fail(key != NULL, FALSE);
        g_return_val_if_fail(data != NULL, FALSE);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        if (!cfs_status.clinfo || !cfs_status.clinfo->nodes_byid)
                goto ret; /* ignore */
@@ -1356,7 +1398,7 @@ cfs_kvstore_node_set(
 
        }
 ret:
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return TRUE;
 }
@@ -1369,7 +1411,7 @@ cfs_kvstore_sync(void)
 
        gboolean res = TRUE;
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        GHashTable *ht = cfs_status.kvhash;
        GHashTableIter iter;
@@ -1382,7 +1424,7 @@ cfs_kvstore_sync(void)
                kvstore_send_update_message(cfs_status.kvstore, entry->key, entry->data, entry->len);
        }
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return res;
 }
@@ -1450,7 +1492,7 @@ dfsm_confchg(
 
        cfs_debug("enter %s", __func__);
 
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_clinfo_t *clinfo = cfs_status.clinfo;
 
@@ -1477,7 +1519,7 @@ dfsm_confchg(
                cfs_status.clinfo_version++;
        }
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
 
 static gpointer
@@ -1593,11 +1635,11 @@ static dfsm_callbacks_t kvstore_dfsm_callbacks = {
 dfsm_t *
 cfs_status_dfsm_new(void)
 {
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        cfs_status.kvstore = dfsm_new(NULL, KVSTORE_CPG_GROUP_NAME, G_LOG_DOMAIN,
                                      0, &kvstore_dfsm_callbacks);
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return cfs_status.kvstore;
 }
@@ -1605,9 +1647,9 @@ cfs_status_dfsm_new(void)
 gboolean
 cfs_is_quorate(void)
 {
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
        gboolean res =  cfs_status.quorate;
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 
        return res;
 }
@@ -1617,7 +1659,7 @@ cfs_set_quorate(
        uint32_t quorate,
        gboolean quiet)
 {
-       g_static_mutex_lock (&mutex);
+       g_mutex_lock (&mutex);
 
        uint32_t prev_quorate = cfs_status.quorate;
        cfs_status.quorate = quorate;
@@ -1632,6 +1674,5 @@ cfs_set_quorate(
                        cfs_message("node lost quorum");
        }
 
-       g_static_mutex_unlock (&mutex);
+       g_mutex_unlock (&mutex);
 }
-