2 * An implementation of key value pair (KVP) functionality for Linux.
5 * Copyright (C) 2010, Novell, Inc.
6 * Author : K. Y. Srinivasan <ksrinivasan@novell.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <sys/types.h>
26 #include <sys/socket.h>
28 #include <sys/utsname.h>
35 #include <arpa/inet.h>
36 #include <linux/hyperv.h>
37 #include <linux/netlink.h>
48 * KVP protocol: The user mode component first registers with the
49 * the kernel component. Subsequently, the kernel component requests, data
50 * for the specified keys. In response to this message the user mode component
51 * fills in the value corresponding to the specified key. We overload the
52 * sequence field in the cn_msg header to define our KVP message types.
54 * We use this infrastructure for also supporting queries from user mode
55 * application for state that may be maintained in the KVP kernel component.
61 FullyQualifiedDomainName
= 0,
62 IntegrationServicesVersion
, /*This key is serviced in the kernel*/
81 static int in_hand_shake
= 1;
83 static char *os_name
= "";
84 static char *os_major
= "";
85 static char *os_minor
= "";
86 static char *processor_arch
;
87 static char *os_build
;
88 static char *os_version
;
89 static char *lic_version
= "Unknown version";
90 static char full_domain_name
[HV_KVP_EXCHANGE_MAX_VALUE_SIZE
];
91 static struct utsname uts_buf
;
94 * The location of the interface configuration file.
97 #define KVP_CONFIG_LOC "/var/lib/hyperv"
99 #define MAX_FILE_NAME 100
100 #define ENTRIES_PER_BLOCK 50
103 #define SOL_NETLINK 270
107 char key
[HV_KVP_EXCHANGE_MAX_KEY_SIZE
];
108 char value
[HV_KVP_EXCHANGE_MAX_VALUE_SIZE
];
111 struct kvp_file_state
{
114 struct kvp_record
*records
;
116 char fname
[MAX_FILE_NAME
];
119 static struct kvp_file_state kvp_file_info
[KVP_POOL_COUNT
];
121 static void kvp_acquire_lock(int pool
)
123 struct flock fl
= {F_WRLCK
, SEEK_SET
, 0, 0, 0};
126 if (fcntl(kvp_file_info
[pool
].fd
, F_SETLKW
, &fl
) == -1) {
127 syslog(LOG_ERR
, "Failed to acquire the lock pool: %d; error: %d %s", pool
,
128 errno
, strerror(errno
));
133 static void kvp_release_lock(int pool
)
135 struct flock fl
= {F_UNLCK
, SEEK_SET
, 0, 0, 0};
138 if (fcntl(kvp_file_info
[pool
].fd
, F_SETLK
, &fl
) == -1) {
139 syslog(LOG_ERR
, "Failed to release the lock pool: %d; error: %d %s", pool
,
140 errno
, strerror(errno
));
145 static void kvp_update_file(int pool
)
150 * We are going to write our in-memory registry out to
151 * disk; acquire the lock first.
153 kvp_acquire_lock(pool
);
155 filep
= fopen(kvp_file_info
[pool
].fname
, "we");
157 syslog(LOG_ERR
, "Failed to open file, pool: %d; error: %d %s", pool
,
158 errno
, strerror(errno
));
159 kvp_release_lock(pool
);
163 fwrite(kvp_file_info
[pool
].records
, sizeof(struct kvp_record
),
164 kvp_file_info
[pool
].num_records
, filep
);
166 if (ferror(filep
) || fclose(filep
)) {
167 kvp_release_lock(pool
);
168 syslog(LOG_ERR
, "Failed to write file, pool: %d", pool
);
172 kvp_release_lock(pool
);
175 static void kvp_update_mem_state(int pool
)
178 size_t records_read
= 0;
179 struct kvp_record
*record
= kvp_file_info
[pool
].records
;
180 struct kvp_record
*readp
;
181 int num_blocks
= kvp_file_info
[pool
].num_blocks
;
182 int alloc_unit
= sizeof(struct kvp_record
) * ENTRIES_PER_BLOCK
;
184 kvp_acquire_lock(pool
);
186 filep
= fopen(kvp_file_info
[pool
].fname
, "re");
188 syslog(LOG_ERR
, "Failed to open file, pool: %d; error: %d %s", pool
,
189 errno
, strerror(errno
));
190 kvp_release_lock(pool
);
194 readp
= &record
[records_read
];
195 records_read
+= fread(readp
, sizeof(struct kvp_record
),
196 ENTRIES_PER_BLOCK
* num_blocks
- records_read
,
201 "Failed to read file, pool: %d; error: %d %s",
202 pool
, errno
, strerror(errno
));
203 kvp_release_lock(pool
);
209 * We have more data to read.
212 record
= realloc(record
, alloc_unit
* num_blocks
);
214 if (record
== NULL
) {
215 syslog(LOG_ERR
, "malloc failed");
216 kvp_release_lock(pool
);
224 kvp_file_info
[pool
].num_blocks
= num_blocks
;
225 kvp_file_info
[pool
].records
= record
;
226 kvp_file_info
[pool
].num_records
= records_read
;
229 kvp_release_lock(pool
);
232 static int kvp_file_init(void)
237 int alloc_unit
= sizeof(struct kvp_record
) * ENTRIES_PER_BLOCK
;
239 if (access(KVP_CONFIG_LOC
, F_OK
)) {
240 if (mkdir(KVP_CONFIG_LOC
, 0755 /* rwxr-xr-x */)) {
241 syslog(LOG_ERR
, "Failed to create '%s'; error: %d %s", KVP_CONFIG_LOC
,
242 errno
, strerror(errno
));
247 for (i
= 0; i
< KVP_POOL_COUNT
; i
++) {
248 fname
= kvp_file_info
[i
].fname
;
249 sprintf(fname
, "%s/.kvp_pool_%d", KVP_CONFIG_LOC
, i
);
250 fd
= open(fname
, O_RDWR
| O_CREAT
| O_CLOEXEC
, 0644 /* rw-r--r-- */);
255 kvp_file_info
[i
].fd
= fd
;
256 kvp_file_info
[i
].num_blocks
= 1;
257 kvp_file_info
[i
].records
= malloc(alloc_unit
);
258 if (kvp_file_info
[i
].records
== NULL
)
260 kvp_file_info
[i
].num_records
= 0;
261 kvp_update_mem_state(i
);
267 static int kvp_key_delete(int pool
, const __u8
*key
, int key_size
)
272 struct kvp_record
*record
;
275 * First update the in-memory state.
277 kvp_update_mem_state(pool
);
279 num_records
= kvp_file_info
[pool
].num_records
;
280 record
= kvp_file_info
[pool
].records
;
282 for (i
= 0; i
< num_records
; i
++) {
283 if (memcmp(key
, record
[i
].key
, key_size
))
286 * Found a match; just move the remaining
289 if (i
== (num_records
- 1)) {
290 kvp_file_info
[pool
].num_records
--;
291 kvp_update_file(pool
);
297 for (; k
< num_records
; k
++) {
298 strcpy(record
[j
].key
, record
[k
].key
);
299 strcpy(record
[j
].value
, record
[k
].value
);
303 kvp_file_info
[pool
].num_records
--;
304 kvp_update_file(pool
);
310 static int kvp_key_add_or_modify(int pool
, const __u8
*key
, int key_size
,
311 const __u8
*value
, int value_size
)
315 struct kvp_record
*record
;
318 if ((key_size
> HV_KVP_EXCHANGE_MAX_KEY_SIZE
) ||
319 (value_size
> HV_KVP_EXCHANGE_MAX_VALUE_SIZE
))
323 * First update the in-memory state.
325 kvp_update_mem_state(pool
);
327 num_records
= kvp_file_info
[pool
].num_records
;
328 record
= kvp_file_info
[pool
].records
;
329 num_blocks
= kvp_file_info
[pool
].num_blocks
;
331 for (i
= 0; i
< num_records
; i
++) {
332 if (memcmp(key
, record
[i
].key
, key_size
))
335 * Found a match; just update the value -
336 * this is the modify case.
338 memcpy(record
[i
].value
, value
, value_size
);
339 kvp_update_file(pool
);
344 * Need to add a new entry;
346 if (num_records
== (ENTRIES_PER_BLOCK
* num_blocks
)) {
347 /* Need to allocate a larger array for reg entries. */
348 record
= realloc(record
, sizeof(struct kvp_record
) *
349 ENTRIES_PER_BLOCK
* (num_blocks
+ 1));
353 kvp_file_info
[pool
].num_blocks
++;
356 memcpy(record
[i
].value
, value
, value_size
);
357 memcpy(record
[i
].key
, key
, key_size
);
358 kvp_file_info
[pool
].records
= record
;
359 kvp_file_info
[pool
].num_records
++;
360 kvp_update_file(pool
);
364 static int kvp_get_value(int pool
, const __u8
*key
, int key_size
, __u8
*value
,
369 struct kvp_record
*record
;
371 if ((key_size
> HV_KVP_EXCHANGE_MAX_KEY_SIZE
) ||
372 (value_size
> HV_KVP_EXCHANGE_MAX_VALUE_SIZE
))
376 * First update the in-memory state.
378 kvp_update_mem_state(pool
);
380 num_records
= kvp_file_info
[pool
].num_records
;
381 record
= kvp_file_info
[pool
].records
;
383 for (i
= 0; i
< num_records
; i
++) {
384 if (memcmp(key
, record
[i
].key
, key_size
))
387 * Found a match; just copy the value out.
389 memcpy(value
, record
[i
].value
, value_size
);
396 static int kvp_pool_enumerate(int pool
, int index
, __u8
*key
, int key_size
,
397 __u8
*value
, int value_size
)
399 struct kvp_record
*record
;
402 * First update our in-memory database.
404 kvp_update_mem_state(pool
);
405 record
= kvp_file_info
[pool
].records
;
407 if (index
>= kvp_file_info
[pool
].num_records
) {
411 memcpy(key
, record
[index
].key
, key_size
);
412 memcpy(value
, record
[index
].value
, value_size
);
417 void kvp_get_os_info(void)
423 os_version
= uts_buf
.release
;
424 os_build
= strdup(uts_buf
.release
);
426 os_name
= uts_buf
.sysname
;
427 processor_arch
= uts_buf
.machine
;
430 * The current windows host (win7) expects the build
431 * string to be of the form: x.y.z
432 * Strip additional information we may have.
434 p
= strchr(os_version
, '-');
439 * Parse the /etc/os-release file if present:
440 * http://www.freedesktop.org/software/systemd/man/os-release.html
442 file
= fopen("/etc/os-release", "r");
444 while (fgets(buf
, sizeof(buf
), file
)) {
447 /* Ignore comments */
451 /* Split into name=value */
452 p
= strchr(buf
, '=');
457 /* Remove quotes and newline; un-escape */
466 } else if (*p
== '\'' || *p
== '"' ||
475 if (!strcmp(buf
, "NAME")) {
480 } else if (!strcmp(buf
, "VERSION_ID")) {
491 /* Fallback for older RH/SUSE releases */
492 file
= fopen("/etc/SuSE-release", "r");
494 goto kvp_osinfo_found
;
495 file
= fopen("/etc/redhat-release", "r");
497 goto kvp_osinfo_found
;
500 * We don't have information about the os.
505 /* up to three lines */
506 p
= fgets(buf
, sizeof(buf
), file
);
508 p
= strchr(buf
, '\n');
517 p
= fgets(buf
, sizeof(buf
), file
);
519 p
= strchr(buf
, '\n');
528 p
= fgets(buf
, sizeof(buf
), file
);
530 p
= strchr(buf
, '\n');
548 * Retrieve an interface name corresponding to the specified guid.
549 * If there is a match, the function returns a pointer
550 * to the interface name and if not, a NULL is returned.
551 * If a match is found, the caller is responsible for
552 * freeing the memory.
555 static char *kvp_get_if_name(char *guid
)
558 struct dirent
*entry
;
561 char *if_name
= NULL
;
563 char *kvp_net_dir
= "/sys/class/net/";
566 dir
= opendir(kvp_net_dir
);
570 snprintf(dev_id
, sizeof(dev_id
), "%s", kvp_net_dir
);
571 q
= dev_id
+ strlen(kvp_net_dir
);
573 while ((entry
= readdir(dir
)) != NULL
) {
575 * Set the state for the next pass.
578 strcat(dev_id
, entry
->d_name
);
579 strcat(dev_id
, "/device/device_id");
581 file
= fopen(dev_id
, "r");
585 p
= fgets(buf
, sizeof(buf
), file
);
591 if (!strcmp(p
, guid
)) {
593 * Found the guid match; return the interface
594 * name. The caller will free the memory.
596 if_name
= strdup(entry
->d_name
);
609 * Retrieve the MAC address given the interface name.
612 static char *kvp_if_name_to_mac(char *if_name
)
619 char *mac_addr
= NULL
;
621 snprintf(addr_file
, sizeof(addr_file
), "%s%s%s", "/sys/class/net/",
622 if_name
, "/address");
624 file
= fopen(addr_file
, "r");
628 p
= fgets(buf
, sizeof(buf
), file
);
633 for (i
= 0; i
< strlen(p
); i
++)
634 p
[i
] = toupper(p
[i
]);
635 mac_addr
= strdup(p
);
644 * Retrieve the interface name given tha MAC address.
647 static char *kvp_mac_to_if_name(char *mac
)
650 struct dirent
*entry
;
653 char *if_name
= NULL
;
655 char *kvp_net_dir
= "/sys/class/net/";
659 dir
= opendir(kvp_net_dir
);
663 snprintf(dev_id
, sizeof(dev_id
), kvp_net_dir
);
664 q
= dev_id
+ strlen(kvp_net_dir
);
666 while ((entry
= readdir(dir
)) != NULL
) {
668 * Set the state for the next pass.
672 strcat(dev_id
, entry
->d_name
);
673 strcat(dev_id
, "/address");
675 file
= fopen(dev_id
, "r");
679 p
= fgets(buf
, sizeof(buf
), file
);
685 for (i
= 0; i
< strlen(p
); i
++)
686 p
[i
] = toupper(p
[i
]);
688 if (!strcmp(p
, mac
)) {
690 * Found the MAC match; return the interface
691 * name. The caller will free the memory.
693 if_name
= strdup(entry
->d_name
);
706 static void kvp_process_ipconfig_file(char *cmd
,
707 char *config_buf
, unsigned int len
,
708 int element_size
, int offset
)
716 * First execute the command.
718 file
= popen(cmd
, "r");
723 memset(config_buf
, 0, len
);
724 while ((p
= fgets(buf
, sizeof(buf
), file
)) != NULL
) {
725 if (len
< strlen(config_buf
) + element_size
+ 1)
732 strcat(config_buf
, p
);
733 strcat(config_buf
, ";");
738 static void kvp_get_ipconfig_info(char *if_name
,
739 struct hv_kvp_ipaddr_value
*buffer
)
747 * Get the address of default gateway (ipv4).
749 sprintf(cmd
, "%s %s", "ip route show dev", if_name
);
750 strcat(cmd
, " | awk '/default/ {print $3 }'");
753 * Execute the command to gather gateway info.
755 kvp_process_ipconfig_file(cmd
, (char *)buffer
->gate_way
,
756 (MAX_GATEWAY_SIZE
* 2), INET_ADDRSTRLEN
, 0);
759 * Get the address of default gateway (ipv6).
761 sprintf(cmd
, "%s %s", "ip -f inet6 route show dev", if_name
);
762 strcat(cmd
, " | awk '/default/ {print $3 }'");
765 * Execute the command to gather gateway info (ipv6).
767 kvp_process_ipconfig_file(cmd
, (char *)buffer
->gate_way
,
768 (MAX_GATEWAY_SIZE
* 2), INET6_ADDRSTRLEN
, 1);
772 * Gather the DNS state.
773 * Since there is no standard way to get this information
774 * across various distributions of interest; we just invoke
775 * an external script that needs to be ported across distros
778 * Following is the expected format of the information from the script:
780 * ipaddr1 (nameserver1)
781 * ipaddr2 (nameserver2)
786 sprintf(cmd
, "%s", "hv_get_dns_info");
789 * Execute the command to gather DNS info.
791 kvp_process_ipconfig_file(cmd
, (char *)buffer
->dns_addr
,
792 (MAX_IP_ADDR_SIZE
* 2), INET_ADDRSTRLEN
, 0);
795 * Gather the DHCP state.
796 * We will gather this state by invoking an external script.
797 * The parameter to the script is the interface name.
798 * Here is the expected output:
800 * Enabled: DHCP enabled.
803 sprintf(cmd
, "%s %s", "hv_get_dhcp_info", if_name
);
805 file
= popen(cmd
, "r");
809 p
= fgets(dhcp_info
, sizeof(dhcp_info
), file
);
815 if (!strncmp(p
, "Enabled", 7))
816 buffer
->dhcp_enabled
= 1;
818 buffer
->dhcp_enabled
= 0;
824 static unsigned int hweight32(unsigned int *w
)
826 unsigned int res
= *w
- ((*w
>> 1) & 0x55555555);
827 res
= (res
& 0x33333333) + ((res
>> 2) & 0x33333333);
828 res
= (res
+ (res
>> 4)) & 0x0F0F0F0F;
829 res
= res
+ (res
>> 8);
830 return (res
+ (res
>> 16)) & 0x000000FF;
833 static int kvp_process_ip_address(void *addrp
,
834 int family
, char *buffer
,
835 int length
, int *offset
)
837 struct sockaddr_in
*addr
;
838 struct sockaddr_in6
*addr6
;
843 if (family
== AF_INET
) {
844 addr
= (struct sockaddr_in
*)addrp
;
845 str
= inet_ntop(family
, &addr
->sin_addr
, tmp
, 50);
846 addr_length
= INET_ADDRSTRLEN
;
848 addr6
= (struct sockaddr_in6
*)addrp
;
849 str
= inet_ntop(family
, &addr6
->sin6_addr
.s6_addr
, tmp
, 50);
850 addr_length
= INET6_ADDRSTRLEN
;
853 if ((length
- *offset
) < addr_length
+ 2)
856 strcpy(buffer
, "inet_ntop failed\n");
866 *offset
+= strlen(str
) + 1;
872 kvp_get_ip_info(int family
, char *if_name
, int op
,
873 void *out_buffer
, unsigned int length
)
875 struct ifaddrs
*ifap
;
876 struct ifaddrs
*curp
;
881 struct hv_kvp_ipaddr_value
*ip_buffer
= NULL
;
882 char cidr_mask
[5]; /* /xyz */
887 struct sockaddr_in6
*addr6
;
889 if (op
== KVP_OP_ENUMERATE
) {
892 ip_buffer
= out_buffer
;
893 buffer
= (char *)ip_buffer
->ip_addr
;
894 ip_buffer
->addr_family
= 0;
897 * On entry into this function, the buffer is capable of holding the
901 if (getifaddrs(&ifap
)) {
902 strcpy(buffer
, "getifaddrs failed\n");
907 while (curp
!= NULL
) {
908 if (curp
->ifa_addr
== NULL
) {
909 curp
= curp
->ifa_next
;
913 if ((if_name
!= NULL
) &&
914 (strncmp(curp
->ifa_name
, if_name
, strlen(if_name
)))) {
916 * We want info about a specific interface;
919 curp
= curp
->ifa_next
;
924 * We only support two address families: AF_INET and AF_INET6.
925 * If a family value of 0 is specified, we collect both
926 * supported address families; if not we gather info on
927 * the specified address family.
929 if ((((family
!= 0) &&
930 (curp
->ifa_addr
->sa_family
!= family
))) ||
931 (curp
->ifa_flags
& IFF_LOOPBACK
)) {
932 curp
= curp
->ifa_next
;
935 if ((curp
->ifa_addr
->sa_family
!= AF_INET
) &&
936 (curp
->ifa_addr
->sa_family
!= AF_INET6
)) {
937 curp
= curp
->ifa_next
;
941 if (op
== KVP_OP_GET_IP_INFO
) {
943 * Gather info other than the IP address.
944 * IP address info will be gathered later.
946 if (curp
->ifa_addr
->sa_family
== AF_INET
) {
947 ip_buffer
->addr_family
|= ADDR_FAMILY_IPV4
;
951 error
= kvp_process_ip_address(
961 ip_buffer
->addr_family
|= ADDR_FAMILY_IPV6
;
964 * Get subnet info in CIDR format.
967 sn_str
= (char *)ip_buffer
->sub_net
;
968 addr6
= (struct sockaddr_in6
*)
970 w
= addr6
->sin6_addr
.s6_addr32
;
972 for (i
= 0; i
< 4; i
++)
973 weight
+= hweight32(&w
[i
]);
975 sprintf(cidr_mask
, "/%d", weight
);
976 if (length
< sn_offset
+ strlen(cidr_mask
) + 1)
980 strcpy(sn_str
, cidr_mask
);
982 strcat((char *)ip_buffer
->sub_net
, ";");
983 strcat(sn_str
, cidr_mask
);
985 sn_offset
+= strlen(sn_str
) + 1;
989 * Collect other ip related configuration info.
992 kvp_get_ipconfig_info(if_name
, ip_buffer
);
996 error
= kvp_process_ip_address(curp
->ifa_addr
,
997 curp
->ifa_addr
->sa_family
,
1003 curp
= curp
->ifa_next
;
1012 static int expand_ipv6(char *addr
, int type
)
1015 struct in6_addr v6_addr
;
1017 ret
= inet_pton(AF_INET6
, addr
, &v6_addr
);
1020 if (type
== NETMASK
)
1025 sprintf(addr
, "%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
1026 "%02x%02x:%02x%02x:%02x%02x",
1027 (int)v6_addr
.s6_addr
[0], (int)v6_addr
.s6_addr
[1],
1028 (int)v6_addr
.s6_addr
[2], (int)v6_addr
.s6_addr
[3],
1029 (int)v6_addr
.s6_addr
[4], (int)v6_addr
.s6_addr
[5],
1030 (int)v6_addr
.s6_addr
[6], (int)v6_addr
.s6_addr
[7],
1031 (int)v6_addr
.s6_addr
[8], (int)v6_addr
.s6_addr
[9],
1032 (int)v6_addr
.s6_addr
[10], (int)v6_addr
.s6_addr
[11],
1033 (int)v6_addr
.s6_addr
[12], (int)v6_addr
.s6_addr
[13],
1034 (int)v6_addr
.s6_addr
[14], (int)v6_addr
.s6_addr
[15]);
1040 static int is_ipv4(char *addr
)
1043 struct in_addr ipv4_addr
;
1045 ret
= inet_pton(AF_INET
, addr
, &ipv4_addr
);
1052 static int parse_ip_val_buffer(char *in_buf
, int *offset
,
1053 char *out_buf
, int out_len
)
1059 * in_buf has sequence of characters that are seperated by
1060 * the character ';'. The last sequence does not have the
1061 * terminating ";" character.
1063 start
= in_buf
+ *offset
;
1065 x
= strchr(start
, ';');
1069 x
= start
+ strlen(start
);
1071 if (strlen(start
) != 0) {
1074 * Get rid of leading spaces.
1076 while (start
[i
] == ' ')
1079 if ((x
- start
) <= out_len
) {
1080 strcpy(out_buf
, (start
+ i
));
1081 *offset
+= (x
- start
) + 1;
1088 static int kvp_write_file(FILE *f
, char *s1
, char *s2
, char *s3
)
1092 ret
= fprintf(f
, "%s%s%s%s\n", s1
, s2
, "=", s3
);
1101 static int process_ip_string(FILE *f
, char *ip_string
, int type
)
1104 char addr
[INET6_ADDRSTRLEN
];
1111 memset(addr
, 0, sizeof(addr
));
1113 while (parse_ip_val_buffer(ip_string
, &offset
, addr
,
1114 (MAX_IP_ADDR_SIZE
* 2))) {
1117 if (is_ipv4(addr
)) {
1120 snprintf(str
, sizeof(str
), "%s", "IPADDR");
1123 snprintf(str
, sizeof(str
), "%s", "NETMASK");
1126 snprintf(str
, sizeof(str
), "%s", "GATEWAY");
1129 snprintf(str
, sizeof(str
), "%s", "DNS");
1134 snprintf(sub_str
, sizeof(sub_str
), "%d", ++i
);
1135 } else if (type
== GATEWAY
&& i
== 0) {
1138 snprintf(sub_str
, sizeof(sub_str
), "%d", i
++);
1142 } else if (expand_ipv6(addr
, type
)) {
1145 snprintf(str
, sizeof(str
), "%s", "IPV6ADDR");
1148 snprintf(str
, sizeof(str
), "%s", "IPV6NETMASK");
1151 snprintf(str
, sizeof(str
), "%s",
1155 snprintf(str
, sizeof(str
), "%s", "DNS");
1160 snprintf(sub_str
, sizeof(sub_str
), "%d", ++i
);
1161 } else if (j
== 0) {
1164 snprintf(sub_str
, sizeof(sub_str
), "_%d", j
++);
1167 return HV_INVALIDARG
;
1170 error
= kvp_write_file(f
, str
, sub_str
, addr
);
1173 memset(addr
, 0, sizeof(addr
));
1179 static int kvp_set_ip_info(char *if_name
, struct hv_kvp_ipaddr_value
*new_val
)
1188 * Set the configuration for the specified interface with
1189 * the information provided. Since there is no standard
1190 * way to configure an interface, we will have an external
1191 * script that does the job of configuring the interface and
1192 * flushing the configuration.
1194 * The parameters passed to this external script are:
1195 * 1. A configuration file that has the specified configuration.
1197 * We will embed the name of the interface in the configuration
1198 * file: ifcfg-ethx (where ethx is the interface name).
1200 * The information provided here may be more than what is needed
1201 * in a given distro to configure the interface and so are free
1202 * ignore information that may not be relevant.
1204 * Here is the format of the ip configuration file:
1207 * DEVICE=interface name
1208 * BOOTPROTO=<protocol> (where <protocol> is "dhcp" if DHCP is configured
1209 * or "none" if no boot-time protocol should be used)
1213 * IPADDRx=ipaddry (where y = x + 1)
1216 * NETMASKx=netmasky (where y = x + 1)
1219 * GATEWAYx=ipaddry (where y = x + 1)
1221 * DNSx=ipaddrx (where first DNS address is tagged as DNS1 etc)
1223 * IPV6 addresses will be tagged as IPV6ADDR, IPV6 gateway will be
1224 * tagged as IPV6_DEFAULTGW and IPV6 NETMASK will be tagged as
1227 * The host can specify multiple ipv4 and ipv6 addresses to be
1228 * configured for the interface. Furthermore, the configuration
1229 * needs to be persistent. A subsequent GET call on the interface
1230 * is expected to return the configuration that is set via the SET
1234 snprintf(if_file
, sizeof(if_file
), "%s%s%s", KVP_CONFIG_LOC
,
1235 "/ifcfg-", if_name
);
1237 file
= fopen(if_file
, "w");
1240 syslog(LOG_ERR
, "Failed to open config file; error: %d %s",
1241 errno
, strerror(errno
));
1246 * First write out the MAC address.
1249 mac_addr
= kvp_if_name_to_mac(if_name
);
1250 if (mac_addr
== NULL
) {
1255 error
= kvp_write_file(file
, "HWADDR", "", mac_addr
);
1260 error
= kvp_write_file(file
, "DEVICE", "", if_name
);
1265 * The dhcp_enabled flag is only for IPv4. In the case the host only
1266 * injects an IPv6 address, the flag is true, but we still need to
1267 * proceed to parse and pass the IPv6 information to the
1268 * disto-specific script hv_set_ifconfig.
1270 if (new_val
->dhcp_enabled
) {
1271 error
= kvp_write_file(file
, "BOOTPROTO", "", "dhcp");
1276 error
= kvp_write_file(file
, "BOOTPROTO", "", "none");
1282 * Write the configuration for ipaddress, netmask, gateway and
1286 error
= process_ip_string(file
, (char *)new_val
->ip_addr
, IPADDR
);
1290 error
= process_ip_string(file
, (char *)new_val
->sub_net
, NETMASK
);
1294 error
= process_ip_string(file
, (char *)new_val
->gate_way
, GATEWAY
);
1298 error
= process_ip_string(file
, (char *)new_val
->dns_addr
, DNS
);
1305 * Now that we have populated the configuration file,
1306 * invoke the external script to do its magic.
1309 snprintf(cmd
, sizeof(cmd
), "%s %s", "hv_set_ifconfig", if_file
);
1311 syslog(LOG_ERR
, "Failed to execute cmd '%s'; error: %d %s",
1312 cmd
, errno
, strerror(errno
));
1318 syslog(LOG_ERR
, "Failed to write config file");
1325 kvp_get_domain_name(char *buffer
, int length
)
1327 struct addrinfo hints
, *info
;
1330 gethostname(buffer
, length
);
1331 memset(&hints
, 0, sizeof(hints
));
1332 hints
.ai_family
= AF_INET
; /*Get only ipv4 addrinfo. */
1333 hints
.ai_socktype
= SOCK_STREAM
;
1334 hints
.ai_flags
= AI_CANONNAME
;
1336 error
= getaddrinfo(buffer
, NULL
, &hints
, &info
);
1338 snprintf(buffer
, length
, "getaddrinfo failed: 0x%x %s",
1339 error
, gai_strerror(error
));
1342 snprintf(buffer
, length
, "%s", info
->ai_canonname
);
1346 void print_usage(char *argv
[])
1348 fprintf(stderr
, "Usage: %s [options]\n"
1350 " -n, --no-daemon stay in foreground, don't daemonize\n"
1351 " -h, --help print this help\n", argv
[0]);
1354 int main(int argc
, char *argv
[])
1360 struct hv_kvp_msg hv_msg
[1];
1366 struct hv_kvp_ipaddr_value
*kvp_ip_val
;
1367 int daemonize
= 1, long_index
= 0, opt
;
1369 static struct option long_options
[] = {
1370 {"help", no_argument
, 0, 'h' },
1371 {"no-daemon", no_argument
, 0, 'n' },
1375 while ((opt
= getopt_long(argc
, argv
, "hn", long_options
,
1376 &long_index
)) != -1) {
1390 if (daemonize
&& daemon(1, 0))
1393 openlog("KVP", 0, LOG_USER
);
1394 syslog(LOG_INFO
, "KVP starting; pid is:%d", getpid());
1396 kvp_fd
= open("/dev/vmbus/hv_kvp", O_RDWR
| O_CLOEXEC
);
1399 syslog(LOG_ERR
, "open /dev/vmbus/hv_kvp failed; error: %d %s",
1400 errno
, strerror(errno
));
1405 * Retrieve OS release information.
1409 * Cache Fully Qualified Domain Name because getaddrinfo takes an
1410 * unpredictable amount of time to finish.
1412 kvp_get_domain_name(full_domain_name
, sizeof(full_domain_name
));
1414 if (kvp_file_init()) {
1415 syslog(LOG_ERR
, "Failed to initialize the pools");
1420 * Register ourselves with the kernel.
1422 hv_msg
->kvp_hdr
.operation
= KVP_OP_REGISTER1
;
1423 len
= write(kvp_fd
, hv_msg
, sizeof(struct hv_kvp_msg
));
1424 if (len
!= sizeof(struct hv_kvp_msg
)) {
1425 syslog(LOG_ERR
, "registration to kernel failed; error: %d %s",
1426 errno
, strerror(errno
));
1434 pfd
.events
= POLLIN
;
1437 if (poll(&pfd
, 1, -1) < 0) {
1438 syslog(LOG_ERR
, "poll failed; error: %d %s", errno
, strerror(errno
));
1439 if (errno
== EINVAL
) {
1447 len
= read(kvp_fd
, hv_msg
, sizeof(struct hv_kvp_msg
));
1449 if (len
!= sizeof(struct hv_kvp_msg
)) {
1450 syslog(LOG_ERR
, "read failed; error:%d %s",
1451 errno
, strerror(errno
));
1454 return EXIT_FAILURE
;
1458 * We will use the KVP header information to pass back
1459 * the error from this daemon. So, first copy the state
1460 * and set the error code to success.
1462 op
= hv_msg
->kvp_hdr
.operation
;
1463 pool
= hv_msg
->kvp_hdr
.pool
;
1464 hv_msg
->error
= HV_S_OK
;
1466 if ((in_hand_shake
) && (op
== KVP_OP_REGISTER1
)) {
1468 * Driver is registering with us; stash away the version
1472 p
= (char *)hv_msg
->body
.kvp_register
.version
;
1473 lic_version
= malloc(strlen(p
) + 1);
1475 strcpy(lic_version
, p
);
1476 syslog(LOG_INFO
, "KVP LIC Version: %s",
1479 syslog(LOG_ERR
, "malloc failed");
1485 case KVP_OP_GET_IP_INFO
:
1486 kvp_ip_val
= &hv_msg
->body
.kvp_ip_val
;
1488 kvp_mac_to_if_name((char *)kvp_ip_val
->adapter_id
);
1490 if (if_name
== NULL
) {
1492 * We could not map the mac address to an
1493 * interface name; return error.
1495 hv_msg
->error
= HV_E_FAIL
;
1498 error
= kvp_get_ip_info(
1499 0, if_name
, KVP_OP_GET_IP_INFO
,
1501 (MAX_IP_ADDR_SIZE
* 2));
1504 hv_msg
->error
= error
;
1509 case KVP_OP_SET_IP_INFO
:
1510 kvp_ip_val
= &hv_msg
->body
.kvp_ip_val
;
1511 if_name
= kvp_get_if_name(
1512 (char *)kvp_ip_val
->adapter_id
);
1513 if (if_name
== NULL
) {
1515 * We could not map the guid to an
1516 * interface name; return error.
1518 hv_msg
->error
= HV_GUID_NOTFOUND
;
1521 error
= kvp_set_ip_info(if_name
, kvp_ip_val
);
1523 hv_msg
->error
= error
;
1529 if (kvp_key_add_or_modify(pool
,
1530 hv_msg
->body
.kvp_set
.data
.key
,
1531 hv_msg
->body
.kvp_set
.data
.key_size
,
1532 hv_msg
->body
.kvp_set
.data
.value
,
1533 hv_msg
->body
.kvp_set
.data
.value_size
))
1534 hv_msg
->error
= HV_S_CONT
;
1538 if (kvp_get_value(pool
,
1539 hv_msg
->body
.kvp_set
.data
.key
,
1540 hv_msg
->body
.kvp_set
.data
.key_size
,
1541 hv_msg
->body
.kvp_set
.data
.value
,
1542 hv_msg
->body
.kvp_set
.data
.value_size
))
1543 hv_msg
->error
= HV_S_CONT
;
1547 if (kvp_key_delete(pool
,
1548 hv_msg
->body
.kvp_delete
.key
,
1549 hv_msg
->body
.kvp_delete
.key_size
))
1550 hv_msg
->error
= HV_S_CONT
;
1557 if (op
!= KVP_OP_ENUMERATE
)
1561 * If the pool is KVP_POOL_AUTO, dynamically generate
1562 * both the key and the value; if not read from the
1565 if (pool
!= KVP_POOL_AUTO
) {
1566 if (kvp_pool_enumerate(pool
,
1567 hv_msg
->body
.kvp_enum_data
.index
,
1568 hv_msg
->body
.kvp_enum_data
.data
.key
,
1569 HV_KVP_EXCHANGE_MAX_KEY_SIZE
,
1570 hv_msg
->body
.kvp_enum_data
.data
.value
,
1571 HV_KVP_EXCHANGE_MAX_VALUE_SIZE
))
1572 hv_msg
->error
= HV_S_CONT
;
1576 key_name
= (char *)hv_msg
->body
.kvp_enum_data
.data
.key
;
1577 key_value
= (char *)hv_msg
->body
.kvp_enum_data
.data
.value
;
1579 switch (hv_msg
->body
.kvp_enum_data
.index
) {
1580 case FullyQualifiedDomainName
:
1581 strcpy(key_value
, full_domain_name
);
1582 strcpy(key_name
, "FullyQualifiedDomainName");
1584 case IntegrationServicesVersion
:
1585 strcpy(key_name
, "IntegrationServicesVersion");
1586 strcpy(key_value
, lic_version
);
1588 case NetworkAddressIPv4
:
1589 kvp_get_ip_info(AF_INET
, NULL
, KVP_OP_ENUMERATE
,
1590 key_value
, HV_KVP_EXCHANGE_MAX_VALUE_SIZE
);
1591 strcpy(key_name
, "NetworkAddressIPv4");
1593 case NetworkAddressIPv6
:
1594 kvp_get_ip_info(AF_INET6
, NULL
, KVP_OP_ENUMERATE
,
1595 key_value
, HV_KVP_EXCHANGE_MAX_VALUE_SIZE
);
1596 strcpy(key_name
, "NetworkAddressIPv6");
1599 strcpy(key_value
, os_build
);
1600 strcpy(key_name
, "OSBuildNumber");
1603 strcpy(key_value
, os_name
);
1604 strcpy(key_name
, "OSName");
1606 case OSMajorVersion
:
1607 strcpy(key_value
, os_major
);
1608 strcpy(key_name
, "OSMajorVersion");
1610 case OSMinorVersion
:
1611 strcpy(key_value
, os_minor
);
1612 strcpy(key_name
, "OSMinorVersion");
1615 strcpy(key_value
, os_version
);
1616 strcpy(key_name
, "OSVersion");
1618 case ProcessorArchitecture
:
1619 strcpy(key_value
, processor_arch
);
1620 strcpy(key_name
, "ProcessorArchitecture");
1623 hv_msg
->error
= HV_S_CONT
;
1627 /* Send the value back to the kernel. */
1629 len
= write(kvp_fd
, hv_msg
, sizeof(struct hv_kvp_msg
));
1630 if (len
!= sizeof(struct hv_kvp_msg
)) {
1631 syslog(LOG_ERR
, "write failed; error: %d %s", errno
,