This commit is contained in:
parent
4d9f8dd3b6
commit
08459eed5d
7
get_release_number.sh
Normal file
7
get_release_number.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
if test "$PWD" = "/" || test "$PWD" = "$HOME"
|
||||||
|
then
|
||||||
|
cd /usr/src/packages/SOURCES
|
||||||
|
fi
|
||||||
|
exec env -i TZ=UTC date --reference="`ls -td * | head -n 1`" +%Y%m%d.%H%M%S
|
||||||
|
exec env -i TZ=UTC date +%Y%m%d.%H%M%S
|
494
hv_kvp_daemon.c
Normal file
494
hv_kvp_daemon.c
Normal file
@ -0,0 +1,494 @@
|
|||||||
|
/*
|
||||||
|
* An implementation of key value pair (KVP) functionality for Linux.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Copyright (C) 2010, Novell, Inc.
|
||||||
|
* Author : K. Y. Srinivasan <ksrinivasan@novell.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License version 2 as published
|
||||||
|
* by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* 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, GOOD TITLE or
|
||||||
|
* NON INFRINGEMENT. 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; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <sys/poll.h>
|
||||||
|
#include <sys/utsname.h>
|
||||||
|
#include <linux/types.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <linux/connector.h>
|
||||||
|
#include <linux/netlink.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <ifaddrs.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#include <syslog.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KYS: TODO. Need to register these in the kernel.
|
||||||
|
*
|
||||||
|
* The following definitions are shared with the in-kernel component; do not
|
||||||
|
* change any of this without making the corresponding changes in
|
||||||
|
* the KVP kernel component.
|
||||||
|
*/
|
||||||
|
#define CN_KVP_IDX 0x9 /* MSFT KVP functionality */
|
||||||
|
#define CN_KVP_VAL 0x1 /* This supports queries from the kernel */
|
||||||
|
#define CN_KVP_USER_VAL 0x2 /* This supports queries from the user */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KVP protocol: The user mode component first registers with the
|
||||||
|
* the kernel component. Subsequently, the kernel component requests, data
|
||||||
|
* for the specified keys. In response to this message the user mode component
|
||||||
|
* fills in the value corresponding to the specified key. We overload the
|
||||||
|
* sequence field in the cn_msg header to define our KVP message types.
|
||||||
|
*
|
||||||
|
* We use this infrastructure for also supporting queries from user mode
|
||||||
|
* application for state that may be maintained in the KVP kernel component.
|
||||||
|
*
|
||||||
|
* XXXKYS: Have a shared header file between the user and kernel (TODO)
|
||||||
|
*/
|
||||||
|
|
||||||
|
enum kvp_op {
|
||||||
|
KVP_REGISTER = 0, /* Register the user mode component*/
|
||||||
|
KVP_KERNEL_GET, /*Kernel is requesting the value for the specified key*/
|
||||||
|
KVP_KERNEL_SET, /*Kernel is providing the value for the specified key*/
|
||||||
|
KVP_USER_GET, /*User is requesting the value for the specified key*/
|
||||||
|
KVP_USER_SET /*User is providing the value for the specified key*/
|
||||||
|
};
|
||||||
|
|
||||||
|
#define HV_KVP_EXCHANGE_MAX_KEY_SIZE 512
|
||||||
|
#define HV_KVP_EXCHANGE_MAX_VALUE_SIZE 2048
|
||||||
|
|
||||||
|
struct hv_ku_msg {
|
||||||
|
__u32 kvp_index;
|
||||||
|
__u8 kvp_key[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; /* Key name */
|
||||||
|
__u8 kvp_value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE]; /* Key value */
|
||||||
|
};
|
||||||
|
|
||||||
|
enum key_index {
|
||||||
|
FullyQualifiedDomainName = 0,
|
||||||
|
IntegrationServicesVersion, /*This key is serviced in the kernel*/
|
||||||
|
NetworkAddressIPv4,
|
||||||
|
NetworkAddressIPv6,
|
||||||
|
OSBuildNumber,
|
||||||
|
OSName,
|
||||||
|
OSMajorVersion,
|
||||||
|
OSMinorVersion,
|
||||||
|
OSVersion,
|
||||||
|
ProcessorArchitecture
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* End of shared definitions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static char kvp_send_buffer[4096];
|
||||||
|
static char kvp_recv_buffer[4096];
|
||||||
|
static struct sockaddr_nl addr;
|
||||||
|
|
||||||
|
static char *os_name = "";
|
||||||
|
static char *os_major = "";
|
||||||
|
static char *os_minor = "";
|
||||||
|
static char *processor_arch;
|
||||||
|
static char *os_build;
|
||||||
|
static char *lic_version;
|
||||||
|
static struct utsname uts_buf;
|
||||||
|
|
||||||
|
void kvp_get_os_info(void)
|
||||||
|
{
|
||||||
|
FILE *file;
|
||||||
|
char *p, buf[512];
|
||||||
|
|
||||||
|
uname(&uts_buf);
|
||||||
|
os_build = uts_buf.release;
|
||||||
|
processor_arch= uts_buf.machine;
|
||||||
|
|
||||||
|
file = fopen("/etc/SuSE-release", "r");
|
||||||
|
if (file != NULL)
|
||||||
|
goto kvp_osinfo_found;
|
||||||
|
file = fopen("/etc/redhat-release", "r");
|
||||||
|
if (file != NULL)
|
||||||
|
goto kvp_osinfo_found;
|
||||||
|
/*
|
||||||
|
* Add code for other supported platforms.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We don't have information about the os.
|
||||||
|
*/
|
||||||
|
os_name = uts_buf.sysname;
|
||||||
|
return;
|
||||||
|
|
||||||
|
kvp_osinfo_found:
|
||||||
|
/* up to three lines */
|
||||||
|
p = fgets(buf, sizeof(buf), file);
|
||||||
|
if (p) {
|
||||||
|
p = strchr(buf, '\n');
|
||||||
|
if (p)
|
||||||
|
*p = '\0';
|
||||||
|
p = strdup(buf);
|
||||||
|
if (!p)
|
||||||
|
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);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
kvp_get_ip_address(int family, char *buffer, int length)
|
||||||
|
{
|
||||||
|
struct ifaddrs *ifap;
|
||||||
|
struct ifaddrs *curp;
|
||||||
|
int ipv4_len = strlen("255.255.255.255") + 1;
|
||||||
|
int ipv6_len = strlen("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")+1;
|
||||||
|
int offset = 0;
|
||||||
|
const char *str;
|
||||||
|
char tmp[50];
|
||||||
|
int error = 0;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* On entry into this function, the buffer is capable of holding the
|
||||||
|
* maximum key value (2048 bytes).
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (getifaddrs(&ifap)) {
|
||||||
|
strcpy(buffer, "getifaddrs failed\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
curp = ifap;
|
||||||
|
while (curp != NULL) {
|
||||||
|
if ((curp->ifa_addr != NULL) &&
|
||||||
|
(curp->ifa_addr->sa_family == family)) {
|
||||||
|
if (family == AF_INET) {
|
||||||
|
struct sockaddr_in *addr =
|
||||||
|
(struct sockaddr_in *) curp->ifa_addr;
|
||||||
|
|
||||||
|
str = inet_ntop(family, &addr->sin_addr,
|
||||||
|
tmp, 50);
|
||||||
|
if (str == NULL) {
|
||||||
|
strcpy(buffer, "inet_ntop failed\n");
|
||||||
|
error = 1;
|
||||||
|
goto getaddr_done;
|
||||||
|
}
|
||||||
|
if (offset == 0)
|
||||||
|
strcpy(buffer, tmp);
|
||||||
|
else
|
||||||
|
strcat(buffer, tmp);
|
||||||
|
strcat(buffer, ";");
|
||||||
|
|
||||||
|
offset += strlen(str) + 1;
|
||||||
|
if ((length - offset) < (ipv4_len + 1))
|
||||||
|
goto getaddr_done;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We only support AF_INET and AF_INET6
|
||||||
|
* and the list of addresses is seperated by a ";".
|
||||||
|
*/
|
||||||
|
struct sockaddr_in6 *addr =
|
||||||
|
(struct sockaddr_in6 *) curp->ifa_addr;
|
||||||
|
|
||||||
|
str = inet_ntop(family,
|
||||||
|
&addr->sin6_addr.s6_addr,
|
||||||
|
tmp, 50);
|
||||||
|
if (str == NULL) {
|
||||||
|
strcpy(buffer, "inet_ntop failed\n");
|
||||||
|
error = 1;
|
||||||
|
goto getaddr_done;
|
||||||
|
}
|
||||||
|
if (offset == 0)
|
||||||
|
strcpy(buffer, tmp);
|
||||||
|
else
|
||||||
|
strcat(buffer, tmp);
|
||||||
|
strcat(buffer, ";");
|
||||||
|
offset += strlen(str) + 1;
|
||||||
|
if ((length - offset) < (ipv6_len + 1))
|
||||||
|
goto getaddr_done;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
curp = curp->ifa_next;
|
||||||
|
}
|
||||||
|
|
||||||
|
getaddr_done:
|
||||||
|
freeifaddrs(ifap);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int
|
||||||
|
kvp_get_domain_name(char *buffer, int length)
|
||||||
|
{
|
||||||
|
struct addrinfo hints, *info ;
|
||||||
|
gethostname(buffer, length);
|
||||||
|
int error = 0;
|
||||||
|
|
||||||
|
memset(&hints, 0, sizeof(hints));
|
||||||
|
hints.ai_family = AF_INET; /*Get only ipv4 addrinfo. */
|
||||||
|
hints.ai_socktype = SOCK_STREAM;
|
||||||
|
hints.ai_flags = AI_CANONNAME;
|
||||||
|
|
||||||
|
error = getaddrinfo(buffer, "http", &hints, &info);
|
||||||
|
if (error != 0) {
|
||||||
|
strcpy(buffer, "getaddrinfo failed\n");
|
||||||
|
error = 1;
|
||||||
|
goto get_domain_done;
|
||||||
|
}
|
||||||
|
strcpy(buffer, info->ai_canonname);
|
||||||
|
get_domain_done:
|
||||||
|
freeaddrinfo(info);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
netlink_send(int fd, struct cn_msg *msg)
|
||||||
|
{
|
||||||
|
struct nlmsghdr *nlh;
|
||||||
|
unsigned int size;
|
||||||
|
struct msghdr message;
|
||||||
|
char buffer[64];
|
||||||
|
struct iovec iov[2];
|
||||||
|
|
||||||
|
size = NLMSG_SPACE(sizeof(struct cn_msg) + msg->len);
|
||||||
|
|
||||||
|
nlh = (struct nlmsghdr *)buffer;
|
||||||
|
nlh->nlmsg_seq = 0;
|
||||||
|
nlh->nlmsg_pid = getpid();
|
||||||
|
nlh->nlmsg_type = NLMSG_DONE;
|
||||||
|
nlh->nlmsg_len = NLMSG_LENGTH(size - sizeof(*nlh));
|
||||||
|
nlh->nlmsg_flags = 0;
|
||||||
|
|
||||||
|
iov[0].iov_base = nlh;
|
||||||
|
iov[0].iov_len = sizeof(*nlh);
|
||||||
|
|
||||||
|
iov[1].iov_base = msg;
|
||||||
|
iov[1].iov_len = size;
|
||||||
|
|
||||||
|
memset(&message, 0, sizeof(message));
|
||||||
|
message.msg_name = &addr;
|
||||||
|
message.msg_namelen = sizeof(addr);
|
||||||
|
message.msg_iov = iov;
|
||||||
|
message.msg_iovlen = 2;
|
||||||
|
|
||||||
|
return sendmsg(fd, &message, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
int fd, len, sock_opt;
|
||||||
|
int error;
|
||||||
|
struct cn_msg *message;
|
||||||
|
struct pollfd pfd;
|
||||||
|
struct nlmsghdr *incoming_msg;
|
||||||
|
struct cn_msg *incoming_cn_msg;
|
||||||
|
struct hv_ku_msg *hv_msg;
|
||||||
|
char *p;
|
||||||
|
char *key_value;
|
||||||
|
char *key_name;
|
||||||
|
|
||||||
|
daemon(1, 0);
|
||||||
|
openlog("KVP", 0, LOG_USER);
|
||||||
|
syslog(LOG_INFO, "KVP starting; pid is:%d", getpid());
|
||||||
|
/*
|
||||||
|
* Retrieve OS release information.
|
||||||
|
*/
|
||||||
|
kvp_get_os_info();
|
||||||
|
|
||||||
|
fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
|
||||||
|
if (fd < 0) {
|
||||||
|
syslog(LOG_ERR, "netlink socket creation failed; error:%d", fd);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
addr.nl_family = AF_NETLINK;
|
||||||
|
addr.nl_pad = 0;
|
||||||
|
addr.nl_pid = 0;
|
||||||
|
addr.nl_groups = CN_KVP_IDX;
|
||||||
|
|
||||||
|
|
||||||
|
error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
|
||||||
|
if (error < 0) {
|
||||||
|
syslog(LOG_ERR, "bind failed; error:%d", error);
|
||||||
|
close(fd);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
sock_opt = addr.nl_groups;
|
||||||
|
setsockopt(fd, 270, 1, &sock_opt, sizeof(sock_opt));
|
||||||
|
/*
|
||||||
|
* Register ourselves with the kernel.
|
||||||
|
*/
|
||||||
|
message = (struct cn_msg *)kvp_send_buffer;
|
||||||
|
message->id.idx = CN_KVP_IDX;
|
||||||
|
message->id.val = CN_KVP_VAL;
|
||||||
|
message->seq = KVP_REGISTER;
|
||||||
|
message->ack = 0;
|
||||||
|
message->len = 0;
|
||||||
|
|
||||||
|
len = netlink_send(fd, message);
|
||||||
|
if (len < 0) {
|
||||||
|
syslog(LOG_ERR, "netlink_send failed; error:%d", len);
|
||||||
|
close(fd);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
pfd.fd = fd;
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
pfd.events = POLLIN;
|
||||||
|
pfd.revents = 0;
|
||||||
|
poll(&pfd, 1, -1);
|
||||||
|
|
||||||
|
len = recv(fd, kvp_recv_buffer, sizeof(kvp_recv_buffer), 0);
|
||||||
|
|
||||||
|
if (len < 0) {
|
||||||
|
syslog(LOG_ERR, "recv failed; error:%d", len);
|
||||||
|
close(fd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
incoming_msg = (struct nlmsghdr *)kvp_recv_buffer;
|
||||||
|
incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
|
||||||
|
|
||||||
|
switch (incoming_cn_msg->seq) {
|
||||||
|
case KVP_REGISTER:
|
||||||
|
/*
|
||||||
|
* Driver is registering with us; stash away the version
|
||||||
|
* information.
|
||||||
|
*/
|
||||||
|
p = (char *)incoming_cn_msg->data;
|
||||||
|
lic_version = malloc(strlen(p) + 1);
|
||||||
|
if (lic_version) {
|
||||||
|
strcpy(lic_version, p);
|
||||||
|
syslog(LOG_INFO, "KVP LIC Version: %s",
|
||||||
|
lic_version);
|
||||||
|
} else {
|
||||||
|
syslog(LOG_ERR, "malloc failed");
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
|
||||||
|
case KVP_KERNEL_GET:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
hv_msg = (struct hv_ku_msg *)incoming_cn_msg->data;
|
||||||
|
key_name = (char *)hv_msg->kvp_key;
|
||||||
|
key_value = (char *)hv_msg->kvp_value;
|
||||||
|
|
||||||
|
switch (hv_msg->kvp_index) {
|
||||||
|
case FullyQualifiedDomainName:
|
||||||
|
kvp_get_domain_name(key_value,
|
||||||
|
HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
|
||||||
|
strcpy(key_name, "FullyQualifiedDomainName");
|
||||||
|
break;
|
||||||
|
case IntegrationServicesVersion:
|
||||||
|
strcpy(key_name, "IntegrationServicesVersion");
|
||||||
|
strcpy(key_value, lic_version);
|
||||||
|
break;
|
||||||
|
case NetworkAddressIPv4:
|
||||||
|
kvp_get_ip_address(AF_INET, key_value,
|
||||||
|
HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
|
||||||
|
strcpy(key_name, "NetworkAddressIPv4");
|
||||||
|
break;
|
||||||
|
case NetworkAddressIPv6:
|
||||||
|
kvp_get_ip_address(AF_INET6, key_value,
|
||||||
|
HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
|
||||||
|
strcpy(key_name, "NetworkAddressIPv6");
|
||||||
|
break;
|
||||||
|
case OSBuildNumber:
|
||||||
|
strcpy(key_value, os_build);
|
||||||
|
strcpy(key_name, "OSBuildNumber");
|
||||||
|
break;
|
||||||
|
case OSName:
|
||||||
|
strcpy(key_value, os_name);
|
||||||
|
strcpy(key_name, "OSName");
|
||||||
|
break;
|
||||||
|
case OSMajorVersion:
|
||||||
|
strcpy(key_value, os_major);
|
||||||
|
strcpy(key_name, "OSMajorVersion");
|
||||||
|
break;
|
||||||
|
case OSMinorVersion:
|
||||||
|
strcpy(key_value, os_minor);
|
||||||
|
strcpy(key_name, "OSMinorVersion");
|
||||||
|
break;
|
||||||
|
case OSVersion:
|
||||||
|
strcpy(key_value, os_build);
|
||||||
|
strcpy(key_name, "OSVersion");
|
||||||
|
break;
|
||||||
|
case ProcessorArchitecture:
|
||||||
|
strcpy(key_value, processor_arch);
|
||||||
|
strcpy(key_name, "ProcessorArchitecture");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
strcpy(key_value, "Unknown Key");
|
||||||
|
/*
|
||||||
|
* We use a null key name to terminate enumeration.
|
||||||
|
*/
|
||||||
|
strcpy(key_name, "");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Send the value back to the kernel. The response is
|
||||||
|
* already in the receive buffer. Update the cn_msg header to
|
||||||
|
* reflect the key value that has been added to the message
|
||||||
|
*/
|
||||||
|
|
||||||
|
incoming_cn_msg->id.idx = CN_KVP_IDX;
|
||||||
|
incoming_cn_msg->id.val = CN_KVP_VAL;
|
||||||
|
incoming_cn_msg->seq = KVP_USER_SET;
|
||||||
|
incoming_cn_msg->ack = 0;
|
||||||
|
incoming_cn_msg->len = sizeof(struct hv_ku_msg);
|
||||||
|
|
||||||
|
len = netlink_send(fd, incoming_cn_msg);
|
||||||
|
if (len < 0) {
|
||||||
|
syslog(LOG_ERR, "net_link send failed; error:%d", len);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 21 17:18:20 CEST 2011 - ohering@suse.de
|
||||||
|
|
||||||
|
- add hv_kvp_daemon to provide system infos to hypervisor [bnc#685189]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 16 15:13:36 CEST 2011 - ohering@suse.de
|
Sat Apr 16 15:13:36 CEST 2011 - ohering@suse.de
|
||||||
|
|
||||||
|
251
hyper-v.init.sh
Normal file
251
hyper-v.init.sh
Normal file
@ -0,0 +1,251 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Template SUSE system startup script for example service/daemon FOO
|
||||||
|
# Copyright (C) 1995--2005 Kurt Garloff, SUSE / Novell Inc.
|
||||||
|
#
|
||||||
|
# This library is free software; you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU Lesser General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2.1 of the License, or (at
|
||||||
|
# your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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
|
||||||
|
# Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public
|
||||||
|
# License along with this library; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
|
||||||
|
# USA.
|
||||||
|
#
|
||||||
|
# /etc/init.d/FOO
|
||||||
|
# and its symbolic link
|
||||||
|
# /(usr/)sbin/rcFOO
|
||||||
|
#
|
||||||
|
# Template system startup script for some example service/daemon FOO
|
||||||
|
#
|
||||||
|
# LSB compatible service control script; see http://www.linuxbase.org/spec/
|
||||||
|
#
|
||||||
|
# Note: This template uses functions rc_XXX defined in /etc/rc.status on
|
||||||
|
# UnitedLinux/SUSE/Novell based Linux distributions. If you want to base your
|
||||||
|
# script on this template and ensure that it works on non UL based LSB
|
||||||
|
# compliant Linux distributions, you either have to provide the rc.status
|
||||||
|
# functions from UL or change the script to work without them.
|
||||||
|
# See skeleton.compat for a template that works with other distros as well.
|
||||||
|
#
|
||||||
|
### BEGIN INIT INFO
|
||||||
|
# Provides: hv_kvp_daemon
|
||||||
|
# Required-Start: $syslog $remote_fs
|
||||||
|
# Should-Start: $time ypbind smtp
|
||||||
|
# Required-Stop: $syslog $remote_fs
|
||||||
|
# Should-Stop: ypbind smtp
|
||||||
|
# Default-Start: 3 5
|
||||||
|
# Default-Stop: 0 1 2 6
|
||||||
|
# Short-Description: hv_kvp_daemon XYZ daemon providing ZYX
|
||||||
|
# Description: Start hv_kvp_daemon to allow XY and provide YZ
|
||||||
|
# continued on second line by '#<TAB>'
|
||||||
|
# should contain enough info for the runlevel editor
|
||||||
|
# to give admin some idea what this service does and
|
||||||
|
# what it's needed for ...
|
||||||
|
# (The Short-Description should already be a good hint.)
|
||||||
|
### END INIT INFO
|
||||||
|
#
|
||||||
|
# Any extensions to the keywords given above should be preceeded by
|
||||||
|
# X-VendorTag- (X-UnitedLinux- X-SuSE- for us) according to LSB.
|
||||||
|
#
|
||||||
|
# Notes on Required-Start/Should-Start:
|
||||||
|
# * There are two different issues that are solved by Required-Start
|
||||||
|
# and Should-Start
|
||||||
|
# (a) Hard dependencies: This is used by the runlevel editor to determine
|
||||||
|
# which services absolutely need to be started to make the start of
|
||||||
|
# this service make sense. Example: nfsserver should have
|
||||||
|
# Required-Start: $portmap
|
||||||
|
# Also, required services are started before the dependent ones.
|
||||||
|
# The runlevel editor will warn about such missing hard dependencies
|
||||||
|
# and suggest enabling. During system startup, you may expect an error,
|
||||||
|
# if the dependency is not fulfilled.
|
||||||
|
# (b) Specifying the init script ordering, not real (hard) dependencies.
|
||||||
|
# This is needed by insserv to determine which service should be
|
||||||
|
# started first (and at a later stage what services can be started
|
||||||
|
# in parallel). The tag Should-Start: is used for this.
|
||||||
|
# It tells, that if a service is available, it should be started
|
||||||
|
# before. If not, never mind.
|
||||||
|
# * When specifying hard dependencies or ordering requirements, you can
|
||||||
|
# use names of services (contents of their Provides: section)
|
||||||
|
# or pseudo names starting with a $. The following ones are available
|
||||||
|
# according to LSB (1.1):
|
||||||
|
# $local_fs all local file systems are mounted
|
||||||
|
# (most services should need this!)
|
||||||
|
# $remote_fs all remote file systems are mounted
|
||||||
|
# (note that /usr may be remote, so
|
||||||
|
# many services should Require this!)
|
||||||
|
# $syslog system logging facility up
|
||||||
|
# $network low level networking (eth card, ...)
|
||||||
|
# $named hostname resolution available
|
||||||
|
# $netdaemons all network daemons are running
|
||||||
|
# The $netdaemons pseudo service has been removed in LSB 1.2.
|
||||||
|
# For now, we still offer it for backward compatibility.
|
||||||
|
# These are new (LSB 1.2):
|
||||||
|
# $time the system time has been set correctly
|
||||||
|
# $portmap SunRPC portmapping service available
|
||||||
|
# UnitedLinux extensions:
|
||||||
|
# $ALL indicates that a script should be inserted
|
||||||
|
# at the end
|
||||||
|
# * The services specified in the stop tags
|
||||||
|
# (Required-Stop/Should-Stop)
|
||||||
|
# specify which services need to be still running when this service
|
||||||
|
# is shut down. Often the entries there are just copies or a subset
|
||||||
|
# from the respective start tag.
|
||||||
|
# * Should-Start/Stop are now part of LSB as of 2.0,
|
||||||
|
# formerly SUSE/Unitedlinux used X-UnitedLinux-Should-Start/-Stop.
|
||||||
|
# insserv does support both variants.
|
||||||
|
# * X-UnitedLinux-Default-Enabled: yes/no is used at installation time
|
||||||
|
# (%fillup_and_insserv macro in %post of many RPMs) to specify whether
|
||||||
|
# a startup script should default to be enabled after installation.
|
||||||
|
# It's not used by insserv.
|
||||||
|
#
|
||||||
|
# Note on runlevels:
|
||||||
|
# 0 - halt/poweroff 6 - reboot
|
||||||
|
# 1 - single user 2 - multiuser without network exported
|
||||||
|
# 3 - multiuser w/ network (text mode) 5 - multiuser w/ network and X11 (xdm)
|
||||||
|
#
|
||||||
|
# Note on script names:
|
||||||
|
# http://www.linuxbase.org/spec/refspecs/LSB_1.3.0/gLSB/gLSB/scrptnames.html
|
||||||
|
# A registry has been set up to manage the init script namespace.
|
||||||
|
# http://www.lanana.org/
|
||||||
|
# Please use the names already registered or register one or use a
|
||||||
|
# vendor prefix.
|
||||||
|
|
||||||
|
|
||||||
|
# Check for missing binaries (stale symlinks should not happen)
|
||||||
|
# Note: Special treatment of stop for LSB conformance
|
||||||
|
HV_KVP_BIN=/usr/sbin/hv_kvp_daemon
|
||||||
|
test -x $HV_KVP_BIN || { echo "$HV_KVP_BIN not installed";
|
||||||
|
if [ "$1" = "stop" ]; then exit 0;
|
||||||
|
else exit 5; fi; }
|
||||||
|
|
||||||
|
# Source LSB init functions
|
||||||
|
# providing start_daemon, killproc, pidofproc,
|
||||||
|
# log_success_msg, log_failure_msg and log_warning_msg.
|
||||||
|
# This is currently not used by UnitedLinux based distributions and
|
||||||
|
# not needed for init scripts for UnitedLinux only. If it is used,
|
||||||
|
# the functions from rc.status should not be sourced or used.
|
||||||
|
#. /lib/lsb/init-functions
|
||||||
|
|
||||||
|
# Shell functions sourced from /etc/rc.status:
|
||||||
|
# rc_check check and set local and overall rc status
|
||||||
|
# rc_status check and set local and overall rc status
|
||||||
|
# rc_status -v be verbose in local rc status and clear it afterwards
|
||||||
|
# rc_status -v -r ditto and clear both the local and overall rc status
|
||||||
|
# rc_status -s display "skipped" and exit with status 3
|
||||||
|
# rc_status -u display "unused" and exit with status 3
|
||||||
|
# rc_failed set local and overall rc status to failed
|
||||||
|
# rc_failed <num> set local and overall rc status to <num>
|
||||||
|
# rc_reset clear both the local and overall rc status
|
||||||
|
# rc_exit exit appropriate to overall rc status
|
||||||
|
# rc_active checks whether a service is activated by symlinks
|
||||||
|
. /etc/rc.status
|
||||||
|
|
||||||
|
# Reset status of this service
|
||||||
|
rc_reset
|
||||||
|
|
||||||
|
# Return values acc. to LSB for all commands but status:
|
||||||
|
# 0 - success
|
||||||
|
# 1 - generic or unspecified error
|
||||||
|
# 2 - invalid or excess argument(s)
|
||||||
|
# 3 - unimplemented feature (e.g. "reload")
|
||||||
|
# 4 - user had insufficient privileges
|
||||||
|
# 5 - program is not installed
|
||||||
|
# 6 - program is not configured
|
||||||
|
# 7 - program is not running
|
||||||
|
# 8--199 - reserved (8--99 LSB, 100--149 distrib, 150--199 appl)
|
||||||
|
#
|
||||||
|
# Note that starting an already running service, stopping
|
||||||
|
# or restarting a not-running service as well as the restart
|
||||||
|
# with force-reload (in case signaling is not supported) are
|
||||||
|
# considered a success.
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
echo -n "Starting Hyper-V KVP daemon "
|
||||||
|
## Start daemon with startproc(8). If this fails
|
||||||
|
## the return value is set appropriately by startproc.
|
||||||
|
/sbin/startproc $HV_KVP_BIN
|
||||||
|
|
||||||
|
# Remember status and be verbose
|
||||||
|
rc_status -v
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
echo -n "Shutting down Hyper-V KVP daemon "
|
||||||
|
## Stop daemon with killproc(8) and if this fails
|
||||||
|
## killproc sets the return value according to LSB.
|
||||||
|
|
||||||
|
/sbin/killproc -TERM $HV_KVP_BIN
|
||||||
|
|
||||||
|
# Remember status and be verbose
|
||||||
|
rc_status -v
|
||||||
|
;;
|
||||||
|
try-restart|condrestart)
|
||||||
|
## Do a restart only if the service was active before.
|
||||||
|
## Note: try-restart is now part of LSB (as of 1.9).
|
||||||
|
## RH has a similar command named condrestart.
|
||||||
|
if test "$1" = "condrestart"; then
|
||||||
|
echo "${attn} Use try-restart ${done}(LSB)${attn} rather than condrestart ${warn}(RH)${norm}"
|
||||||
|
fi
|
||||||
|
$0 status
|
||||||
|
if test $? = 0; then
|
||||||
|
$0 restart
|
||||||
|
else
|
||||||
|
rc_reset # Not running is not a failure.
|
||||||
|
fi
|
||||||
|
# Remember status and be quiet
|
||||||
|
rc_status
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
## Stop the service and regardless of whether it was
|
||||||
|
## running or not, start it again.
|
||||||
|
$0 stop
|
||||||
|
$0 start
|
||||||
|
|
||||||
|
# Remember status and be quiet
|
||||||
|
rc_status
|
||||||
|
;;
|
||||||
|
force-reload)
|
||||||
|
## Signal the daemon to reload its config. Most daemons
|
||||||
|
## do this on signal 1 (SIGHUP).
|
||||||
|
## If it does not support it, restart the service if it
|
||||||
|
## is running.
|
||||||
|
|
||||||
|
echo -n "Reload service Hyper-V KVP daemon "
|
||||||
|
$0 try-restart
|
||||||
|
rc_status
|
||||||
|
;;
|
||||||
|
reload)
|
||||||
|
rc_failed 3
|
||||||
|
rc_status -v
|
||||||
|
;;
|
||||||
|
status)
|
||||||
|
echo -n "Checking for service Hyper-V KVP daemon "
|
||||||
|
## Check status with checkproc(8), if process is running
|
||||||
|
## checkproc will return with exit status 0.
|
||||||
|
|
||||||
|
# Return value is slightly different for the status command:
|
||||||
|
# 0 - service up and running
|
||||||
|
# 1 - service dead, but /var/run/ pid file exists
|
||||||
|
# 2 - service dead, but /var/lock/ lock file exists
|
||||||
|
# 3 - service not running (unused)
|
||||||
|
# 4 - service status unknown :-(
|
||||||
|
# 5--199 reserved (5--99 LSB, 100--149 distro, 150--199 appl.)
|
||||||
|
|
||||||
|
# NOTE: checkproc returns LSB compliant status values.
|
||||||
|
/sbin/checkproc $HV_KVP_BIN
|
||||||
|
# NOTE: rc_status knows that we called this init script with
|
||||||
|
# "status" option and adapts its messages accordingly.
|
||||||
|
rc_status -v
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
rc_exit
|
26
hyper-v.spec
26
hyper-v.spec
@ -30,17 +30,20 @@ BuildRequires: kernel-pae-devel
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
ExclusiveArch: %ix86 x86_64
|
ExclusiveArch: %ix86 x86_64
|
||||||
|
PreReq: %insserv_prereq
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Microsoft Hyper-V drivers
|
Summary: Microsoft Hyper-V drivers
|
||||||
Url: http://www.kernel.org
|
Url: http://www.kernel.org
|
||||||
Version: 0
|
Version: 0
|
||||||
Release: 0.<RELEASE14>
|
Release: %(bash %_sourcedir/get_release_number.sh)
|
||||||
Source: Module.supported
|
Source: Module.supported
|
||||||
Source1: hyperv_pvdrivers.conf
|
Source1: hyperv_pvdrivers.conf
|
||||||
Source2: kmp_filelist
|
Source2: kmp_filelist
|
||||||
Source3: hyper-v.supplements.txt
|
Source3: hyper-v.supplements.txt
|
||||||
Source4: hyper-v.dummy_ko.c
|
Source4: hyper-v.dummy_ko.c
|
||||||
|
Source10: hv_kvp_daemon.c
|
||||||
|
Source11: hyper-v.init.sh
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if %{with_kmp}
|
%if %{with_kmp}
|
||||||
@ -74,6 +77,7 @@ This package contains the Microsoft Hyper-V drivers.
|
|||||||
%setup -Tc
|
%setup -Tc
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
gcc $RPM_OPT_FLAGS -g %{S:10} -o hv_kvp_daemon
|
||||||
%if %{with_kmp}
|
%if %{with_kmp}
|
||||||
for flavor in %flavors_to_build; do
|
for flavor in %flavors_to_build; do
|
||||||
%if %{with_drivers_in_kmp}
|
%if %{with_drivers_in_kmp}
|
||||||
@ -99,15 +103,31 @@ for flavor in %flavors_to_build; do
|
|||||||
make -C %{kernel_source $flavor} modules_install M=$PWD/$flavor
|
make -C %{kernel_source $flavor} modules_install M=$PWD/$flavor
|
||||||
done
|
done
|
||||||
%endif
|
%endif
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/usr/sbin
|
||||||
|
install -m755 hv_kvp_daemon $RPM_BUILD_ROOT/usr/sbin
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/etc/init.d
|
||||||
|
install -m755 %{S:11} $RPM_BUILD_ROOT/etc/init.d/hv_kvp_daemon
|
||||||
|
ln -sfvbn ../..//etc/init.d/hv_kvp_daemon $RPM_BUILD_ROOT/usr/sbin/rchv_kvp_daemon
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/modprobe.d
|
mkdir -p $RPM_BUILD_ROOT/etc/modprobe.d
|
||||||
install -m644 %SOURCE1 $RPM_BUILD_ROOT/etc/modprobe.d/hyperv_pvdrivers.conf
|
install -m644 %SOURCE1 $RPM_BUILD_ROOT/etc/modprobe.d/hyperv_pvdrivers.conf
|
||||||
|
|
||||||
%if !%{with_kmp}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr (-,root,root)
|
%defattr (-,root,root)
|
||||||
|
%if !%{with_kmp}
|
||||||
%dir /etc/modprobe.d
|
%dir /etc/modprobe.d
|
||||||
%config /etc/modprobe.d/hyperv_pvdrivers.conf
|
%config /etc/modprobe.d/hyperv_pvdrivers.conf
|
||||||
%endif
|
%endif
|
||||||
|
/etc/init.d/hv_kvp_daemon
|
||||||
|
/usr/sbin/rchv_kvp_daemon
|
||||||
|
/usr/sbin/hv_kvp_daemon
|
||||||
|
|
||||||
|
%post
|
||||||
|
%{fillup_and_insserv hv_kvp_daemon}
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%stop_on_removal
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%insserv_cleanup
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user