76331b0c3c
* Need to fix cpg_get_ids() - it is segfaulting * Need to reconcile "in-cluster" vs "fenced" * Message routing works. It doesn't matter which node gets the fence request - fence requests are handled after being distributed by cpg. * This makes fence_virtd 99% behavior-like compared to fence_xvmd Signed-off-by: Lon Hohberger <lhh@redhat.com>
81 lines
2.0 KiB
C
81 lines
2.0 KiB
C
/*
|
|
Copyright Red Hat, Inc. 2006
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2, or (at your option) any
|
|
later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING. If not, write to the
|
|
Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
|
|
MA 02139, USA.
|
|
*/
|
|
#ifndef _VIRT_H
|
|
#define _VIRT_H
|
|
#include <libvirt/libvirt.h>
|
|
#include <stdint.h>
|
|
#include <netinet/in.h>
|
|
|
|
#include "xvm.h"
|
|
|
|
/*
|
|
Owner 0 = no owner.
|
|
|
|
checkpoint "xen-vm-states" {
|
|
section "vm-name0" {
|
|
owner_nodeid;
|
|
vm_state;
|
|
}
|
|
section "vm-name1" {
|
|
owner_nodeid;
|
|
vm_state;
|
|
}
|
|
...
|
|
}
|
|
*/
|
|
|
|
typedef struct {
|
|
uint32_t s_owner;
|
|
int32_t s_state;
|
|
} vm_state_t;
|
|
|
|
typedef struct {
|
|
char v_name[MAX_DOMAINNAME_LENGTH];
|
|
char v_uuid[MAX_DOMAINNAME_LENGTH];
|
|
vm_state_t v_state;
|
|
} virt_state_t;
|
|
|
|
/**
|
|
This is stored in our private checkpoint section.
|
|
*/
|
|
typedef struct _virt_list {
|
|
uint32_t vm_count;
|
|
virt_state_t vm_states[0];
|
|
} virt_list_t;
|
|
|
|
virt_list_t *vl_get(virConnectPtr vp, int my_id);
|
|
|
|
int vl_cmp(virt_list_t *left, virt_list_t *right);
|
|
|
|
void vl_print(virt_list_t *vl);
|
|
void vl_free(virt_list_t *old);
|
|
virt_state_t * vl_find_uuid(virt_list_t *vl, const char *name);
|
|
virt_state_t * vl_find_name(virt_list_t *vl, const char *name);
|
|
|
|
|
|
typedef void ckpt_handle;
|
|
int ckpt_read(void *hp, const char *secid, void *buf, size_t maxlen);
|
|
int ckpt_finish(void *hp);
|
|
int ckpt_write(void *hp, const char *secid, void *buf, size_t maxlen);
|
|
void *ckpt_init(const char *ckpt_name, int maxlen, int maxsec, int maxseclen,
|
|
int timeout);
|
|
|
|
|
|
#endif
|