forked from pool/hyper-v
- update buffer handling in hv_fcopy_daemon
- remove unnecessary header files and netlink related code - Avoid reading past allocated blocks from KVP file - fix snprintf warning in kvp_daemon - properly handle long paths - kvp: configurable external scripts path - vss: Thaw the filesystem and continue if freeze call has timed out - vss: Skip freezing filesystems backed by loop OBS-URL: https://build.opensuse.org/package/show/Virtualization/hyper-v?expand=0&rev=123
This commit is contained in:
@@ -22,8 +22,6 @@
|
||||
*/
|
||||
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/poll.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <stdio.h>
|
||||
@@ -34,7 +32,6 @@
|
||||
#include <errno.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <linux/hyperv.h>
|
||||
#include <linux/netlink.h>
|
||||
#include <ifaddrs.h>
|
||||
#include <netdb.h>
|
||||
#include <syslog.h>
|
||||
@@ -42,6 +39,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <dirent.h>
|
||||
#include <net/if.h>
|
||||
#include <limits.h>
|
||||
#include <getopt.h>
|
||||
|
||||
/*
|
||||
@@ -96,13 +94,15 @@ static struct utsname uts_buf;
|
||||
|
||||
#define KVP_CONFIG_LOC "/var/lib/hyperv"
|
||||
|
||||
#ifndef KVP_SCRIPTS_PATH
|
||||
#define KVP_SCRIPTS_PATH "/usr/libexec/hypervkvpd/"
|
||||
#endif
|
||||
|
||||
#define KVP_NET_DIR "/sys/class/net/"
|
||||
|
||||
#define MAX_FILE_NAME 100
|
||||
#define ENTRIES_PER_BLOCK 50
|
||||
|
||||
#ifndef SOL_NETLINK
|
||||
#define SOL_NETLINK 270
|
||||
#endif
|
||||
|
||||
struct kvp_record {
|
||||
char key[HV_KVP_EXCHANGE_MAX_KEY_SIZE];
|
||||
char value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE];
|
||||
@@ -193,11 +193,14 @@ static void kvp_update_mem_state(int pool)
|
||||
for (;;) {
|
||||
readp = &record[records_read];
|
||||
records_read += fread(readp, sizeof(struct kvp_record),
|
||||
ENTRIES_PER_BLOCK * num_blocks,
|
||||
filep);
|
||||
ENTRIES_PER_BLOCK * num_blocks - records_read,
|
||||
filep);
|
||||
|
||||
if (ferror(filep)) {
|
||||
syslog(LOG_ERR, "Failed to read file, pool: %d", pool);
|
||||
syslog(LOG_ERR,
|
||||
"Failed to read file, pool: %d; error: %d %s",
|
||||
pool, errno, strerror(errno));
|
||||
kvp_release_lock(pool);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
@@ -210,6 +213,7 @@ static void kvp_update_mem_state(int pool)
|
||||
|
||||
if (record == NULL) {
|
||||
syslog(LOG_ERR, "malloc failed");
|
||||
kvp_release_lock(pool);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
continue;
|
||||
@@ -224,15 +228,11 @@ static void kvp_update_mem_state(int pool)
|
||||
fclose(filep);
|
||||
kvp_release_lock(pool);
|
||||
}
|
||||
|
||||
static int kvp_file_init(void)
|
||||
{
|
||||
int fd;
|
||||
FILE *filep;
|
||||
size_t records_read;
|
||||
char *fname;
|
||||
struct kvp_record *record;
|
||||
struct kvp_record *readp;
|
||||
int num_blocks;
|
||||
int i;
|
||||
int alloc_unit = sizeof(struct kvp_record) * ENTRIES_PER_BLOCK;
|
||||
|
||||
@@ -246,61 +246,19 @@ static int kvp_file_init(void)
|
||||
|
||||
for (i = 0; i < KVP_POOL_COUNT; i++) {
|
||||
fname = kvp_file_info[i].fname;
|
||||
records_read = 0;
|
||||
num_blocks = 1;
|
||||
sprintf(fname, "%s/.kvp_pool_%d", KVP_CONFIG_LOC, i);
|
||||
fd = open(fname, O_RDWR | O_CREAT | O_CLOEXEC, 0644 /* rw-r--r-- */);
|
||||
|
||||
if (fd == -1)
|
||||
return 1;
|
||||
|
||||
|
||||
filep = fopen(fname, "re");
|
||||
if (!filep) {
|
||||
close(fd);
|
||||
return 1;
|
||||
}
|
||||
|
||||
record = malloc(alloc_unit * num_blocks);
|
||||
if (record == NULL) {
|
||||
fclose(filep);
|
||||
close(fd);
|
||||
return 1;
|
||||
}
|
||||
for (;;) {
|
||||
readp = &record[records_read];
|
||||
records_read += fread(readp, sizeof(struct kvp_record),
|
||||
ENTRIES_PER_BLOCK,
|
||||
filep);
|
||||
|
||||
if (ferror(filep)) {
|
||||
syslog(LOG_ERR, "Failed to read file, pool: %d",
|
||||
i);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (!feof(filep)) {
|
||||
/*
|
||||
* We have more data to read.
|
||||
*/
|
||||
num_blocks++;
|
||||
record = realloc(record, alloc_unit *
|
||||
num_blocks);
|
||||
if (record == NULL) {
|
||||
fclose(filep);
|
||||
close(fd);
|
||||
return 1;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
kvp_file_info[i].fd = fd;
|
||||
kvp_file_info[i].num_blocks = num_blocks;
|
||||
kvp_file_info[i].records = record;
|
||||
kvp_file_info[i].num_records = records_read;
|
||||
fclose(filep);
|
||||
|
||||
kvp_file_info[i].num_blocks = 1;
|
||||
kvp_file_info[i].records = malloc(alloc_unit);
|
||||
if (kvp_file_info[i].records == NULL)
|
||||
return 1;
|
||||
kvp_file_info[i].num_records = 0;
|
||||
kvp_update_mem_state(i);
|
||||
}
|
||||
|
||||
return 0;
|
||||
@@ -599,26 +557,21 @@ static char *kvp_get_if_name(char *guid)
|
||||
DIR *dir;
|
||||
struct dirent *entry;
|
||||
FILE *file;
|
||||
char *p, *q, *x;
|
||||
char *p, *x;
|
||||
char *if_name = NULL;
|
||||
char buf[256];
|
||||
char *kvp_net_dir = "/sys/class/net/";
|
||||
char dev_id[256];
|
||||
char dev_id[PATH_MAX];
|
||||
|
||||
dir = opendir(kvp_net_dir);
|
||||
dir = opendir(KVP_NET_DIR);
|
||||
if (dir == NULL)
|
||||
return NULL;
|
||||
|
||||
snprintf(dev_id, sizeof(dev_id), "%s", kvp_net_dir);
|
||||
q = dev_id + strlen(kvp_net_dir);
|
||||
|
||||
while ((entry = readdir(dir)) != NULL) {
|
||||
/*
|
||||
* Set the state for the next pass.
|
||||
*/
|
||||
*q = '\0';
|
||||
strcat(dev_id, entry->d_name);
|
||||
strcat(dev_id, "/device/device_id");
|
||||
snprintf(dev_id, sizeof(dev_id), "%s%s/device/device_id",
|
||||
KVP_NET_DIR, entry->d_name);
|
||||
|
||||
file = fopen(dev_id, "r");
|
||||
if (file == NULL)
|
||||
@@ -656,12 +609,12 @@ static char *kvp_if_name_to_mac(char *if_name)
|
||||
FILE *file;
|
||||
char *p, *x;
|
||||
char buf[256];
|
||||
char addr_file[256];
|
||||
char addr_file[PATH_MAX];
|
||||
unsigned int i;
|
||||
char *mac_addr = NULL;
|
||||
|
||||
snprintf(addr_file, sizeof(addr_file), "%s%s%s", "/sys/class/net/",
|
||||
if_name, "/address");
|
||||
snprintf(addr_file, sizeof(addr_file), "%s%s%s", KVP_NET_DIR,
|
||||
if_name, "/address");
|
||||
|
||||
file = fopen(addr_file, "r");
|
||||
if (file == NULL)
|
||||
@@ -691,28 +644,22 @@ static char *kvp_mac_to_if_name(char *mac)
|
||||
DIR *dir;
|
||||
struct dirent *entry;
|
||||
FILE *file;
|
||||
char *p, *q, *x;
|
||||
char *p, *x;
|
||||
char *if_name = NULL;
|
||||
char buf[256];
|
||||
char *kvp_net_dir = "/sys/class/net/";
|
||||
char dev_id[256];
|
||||
char dev_id[PATH_MAX];
|
||||
unsigned int i;
|
||||
|
||||
dir = opendir(kvp_net_dir);
|
||||
dir = opendir(KVP_NET_DIR);
|
||||
if (dir == NULL)
|
||||
return NULL;
|
||||
|
||||
snprintf(dev_id, sizeof(dev_id), "%s", kvp_net_dir);
|
||||
q = dev_id + strlen(kvp_net_dir);
|
||||
|
||||
while ((entry = readdir(dir)) != NULL) {
|
||||
/*
|
||||
* Set the state for the next pass.
|
||||
*/
|
||||
*q = '\0';
|
||||
|
||||
strcat(dev_id, entry->d_name);
|
||||
strcat(dev_id, "/address");
|
||||
snprintf(dev_id, sizeof(dev_id), "%s%s/address", KVP_NET_DIR,
|
||||
entry->d_name);
|
||||
|
||||
file = fopen(dev_id, "r");
|
||||
if (file == NULL)
|
||||
@@ -825,7 +772,7 @@ static void kvp_get_ipconfig_info(char *if_name,
|
||||
* .
|
||||
*/
|
||||
|
||||
sprintf(cmd, "%s", "hv_get_dns_info");
|
||||
sprintf(cmd, KVP_SCRIPTS_PATH "%s", "hv_get_dns_info");
|
||||
|
||||
/*
|
||||
* Execute the command to gather DNS info.
|
||||
@@ -842,7 +789,7 @@ static void kvp_get_ipconfig_info(char *if_name,
|
||||
* Enabled: DHCP enabled.
|
||||
*/
|
||||
|
||||
sprintf(cmd, "%s %s", "hv_get_dhcp_info", if_name);
|
||||
sprintf(cmd, KVP_SCRIPTS_PATH "%s %s", "hv_get_dhcp_info", if_name);
|
||||
|
||||
file = popen(cmd, "r");
|
||||
if (file == NULL)
|
||||
@@ -1147,7 +1094,7 @@ static int process_ip_string(FILE *f, char *ip_string, int type)
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
char str[256];
|
||||
char sub_str[10];
|
||||
char sub_str[13];
|
||||
int offset = 0;
|
||||
|
||||
memset(addr, 0, sizeof(addr));
|
||||
@@ -1221,9 +1168,9 @@ static int process_ip_string(FILE *f, char *ip_string, int type)
|
||||
static int kvp_set_ip_info(char *if_name, struct hv_kvp_ipaddr_value *new_val)
|
||||
{
|
||||
int error = 0;
|
||||
char if_file[128];
|
||||
char if_file[PATH_MAX];
|
||||
FILE *file;
|
||||
char cmd[512];
|
||||
char cmd[PATH_MAX];
|
||||
char *mac_addr;
|
||||
|
||||
/*
|
||||
@@ -1348,7 +1295,8 @@ static int kvp_set_ip_info(char *if_name, struct hv_kvp_ipaddr_value *new_val)
|
||||
* invoke the external script to do its magic.
|
||||
*/
|
||||
|
||||
snprintf(cmd, sizeof(cmd), "%s %s", "hv_set_ifconfig", if_file);
|
||||
snprintf(cmd, sizeof(cmd), KVP_SCRIPTS_PATH "%s %s",
|
||||
"hv_set_ifconfig", if_file);
|
||||
if (system(cmd)) {
|
||||
syslog(LOG_ERR, "Failed to execute cmd '%s'; error: %d %s",
|
||||
cmd, errno, strerror(errno));
|
||||
|
Reference in New Issue
Block a user