staging: hv: update dist release parsing in hv_kvp_daemon
The current code to parse the distribution file handles only files with at least 3 lines. openSuSE has 2 lines and Redhat only one (according to google). Update the parser to handle up to three lines properly. Also make the buffer allocation dynamic and remove a few casts to avoid compiler warnings. Signed-off-by: Olaf Hering <olaf@aepfle.de> Acked-by: KY Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2235658571
commit
7989f7d5ea
@@ -102,22 +102,22 @@ static char kvp_send_buffer[4096];
|
|||||||
static char kvp_recv_buffer[4096];
|
static char kvp_recv_buffer[4096];
|
||||||
static struct sockaddr_nl addr;
|
static struct sockaddr_nl addr;
|
||||||
|
|
||||||
static char os_name[100];
|
static char *os_name = "";
|
||||||
static char os_major[50];
|
static char *os_major = "";
|
||||||
static char os_minor[50];
|
static char *os_minor = "";
|
||||||
static char processor_arch[50];
|
static char *processor_arch;
|
||||||
static char os_build[100];
|
static char *os_build;
|
||||||
static char *lic_version;
|
static char *lic_version;
|
||||||
|
static struct utsname uts_buf;
|
||||||
|
|
||||||
void kvp_get_os_info(void)
|
void kvp_get_os_info(void)
|
||||||
{
|
{
|
||||||
FILE *file;
|
FILE *file;
|
||||||
char *eol;
|
char *p, buf[512];
|
||||||
struct utsname buf;
|
|
||||||
|
|
||||||
uname(&buf);
|
uname(&uts_buf);
|
||||||
strcpy(os_build, buf.release);
|
os_build = uts_buf.release;
|
||||||
strcpy(processor_arch, buf.machine);
|
processor_arch= uts_buf.machine;
|
||||||
|
|
||||||
file = fopen("/etc/SuSE-release", "r");
|
file = fopen("/etc/SuSE-release", "r");
|
||||||
if (file != NULL)
|
if (file != NULL)
|
||||||
@@ -132,21 +132,46 @@ void kvp_get_os_info(void)
|
|||||||
/*
|
/*
|
||||||
* We don't have information about the os.
|
* We don't have information about the os.
|
||||||
*/
|
*/
|
||||||
strcpy(os_name, "Linux");
|
os_name = uts_buf.sysname;
|
||||||
strcpy(os_major, "0");
|
|
||||||
strcpy(os_minor, "0");
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
kvp_osinfo_found:
|
kvp_osinfo_found:
|
||||||
fgets(os_name, 99, file);
|
/* up to three lines */
|
||||||
eol = index(os_name, '\n');
|
p = fgets(buf, sizeof(buf), file);
|
||||||
*eol = '\0';
|
if (p) {
|
||||||
fgets(os_major, 49, file);
|
p = strchr(buf, '\n');
|
||||||
eol = index(os_major, '\n');
|
if (p)
|
||||||
*eol = '\0';
|
*p = '\0';
|
||||||
fgets(os_minor, 49, file);
|
p = strdup(buf);
|
||||||
eol = index(os_minor, '\n');
|
if (!p)
|
||||||
*eol = '\0';
|
goto done;
|
||||||
|
os_name = p;
|
||||||
|
|
||||||
|
/* second line */
|
||||||
|
p = fgets(buf, sizeof(buf), file);
|
||||||
|
if (p) {
|
||||||
|
p = strchr(buf, '\n');
|
||||||
|
if (p)
|
||||||
|
*p = '\0';
|
||||||
|
p = strdup(buf);
|
||||||
|
if (!p)
|
||||||
|
goto done;
|
||||||
|
os_major = p;
|
||||||
|
|
||||||
|
/* third line */
|
||||||
|
p = fgets(buf, sizeof(buf), file);
|
||||||
|
if (p) {
|
||||||
|
p = strchr(buf, '\n');
|
||||||
|
if (p)
|
||||||
|
*p = '\0';
|
||||||
|
p = strdup(buf);
|
||||||
|
if (p)
|
||||||
|
os_minor = p;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
done:
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -293,7 +318,7 @@ netlink_send(int fd, struct cn_msg *msg)
|
|||||||
return sendmsg(fd, &message, 0);
|
return sendmsg(fd, &message, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
int fd, len, sock_opt;
|
int fd, len, sock_opt;
|
||||||
int error;
|
int error;
|
||||||
@@ -301,9 +326,10 @@ main(void)
|
|||||||
struct pollfd pfd;
|
struct pollfd pfd;
|
||||||
struct nlmsghdr *incoming_msg;
|
struct nlmsghdr *incoming_msg;
|
||||||
struct cn_msg *incoming_cn_msg;
|
struct cn_msg *incoming_cn_msg;
|
||||||
|
struct hv_ku_msg *hv_msg;
|
||||||
|
char *p;
|
||||||
char *key_value;
|
char *key_value;
|
||||||
char *key_name;
|
char *key_name;
|
||||||
int key_index;
|
|
||||||
|
|
||||||
daemon(1, 0);
|
daemon(1, 0);
|
||||||
openlog("KVP", 0, LOG_USER);
|
openlog("KVP", 0, LOG_USER);
|
||||||
@@ -373,9 +399,10 @@ main(void)
|
|||||||
* Driver is registering with us; stash away the version
|
* Driver is registering with us; stash away the version
|
||||||
* information.
|
* information.
|
||||||
*/
|
*/
|
||||||
lic_version = malloc(strlen(incoming_cn_msg->data) + 1);
|
p = (char *)incoming_cn_msg->data;
|
||||||
|
lic_version = malloc(strlen(p) + 1);
|
||||||
if (lic_version) {
|
if (lic_version) {
|
||||||
strcpy(lic_version, incoming_cn_msg->data);
|
strcpy(lic_version, p);
|
||||||
syslog(LOG_INFO, "KVP LIC Version: %s",
|
syslog(LOG_INFO, "KVP LIC Version: %s",
|
||||||
lic_version);
|
lic_version);
|
||||||
} else {
|
} else {
|
||||||
@@ -389,14 +416,11 @@ main(void)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
key_index =
|
hv_msg = (struct hv_ku_msg *)incoming_cn_msg->data;
|
||||||
((struct hv_ku_msg *)incoming_cn_msg->data)->kvp_index;
|
key_name = (char *)hv_msg->kvp_key;
|
||||||
key_name =
|
key_value = (char *)hv_msg->kvp_value;
|
||||||
((struct hv_ku_msg *)incoming_cn_msg->data)->kvp_key;
|
|
||||||
key_value =
|
|
||||||
((struct hv_ku_msg *)incoming_cn_msg->data)->kvp_value;
|
|
||||||
|
|
||||||
switch (key_index) {
|
switch (hv_msg->kvp_index) {
|
||||||
case FullyQualifiedDomainName:
|
case FullyQualifiedDomainName:
|
||||||
kvp_get_domain_name(key_value,
|
kvp_get_domain_name(key_value,
|
||||||
HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
|
HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
|
||||||
|
Reference in New Issue
Block a user