Tools: hv: Implement the KVP verb - KVP_OP_SET_IP_INFO
[deliverable/linux.git] / tools / hv / hv_kvp_daemon.c
CommitLineData
cc04acf5
KS
1/*
2 * An implementation of key value pair (KVP) functionality for Linux.
3 *
4 *
5 * Copyright (C) 2010, Novell, Inc.
6 * Author : K. Y. Srinivasan <ksrinivasan@novell.com>
7 *
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.
11 *
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
16 * details.
17 *
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.
21 *
22 */
23
24
25#include <sys/types.h>
26#include <sys/socket.h>
27#include <sys/poll.h>
28#include <sys/utsname.h>
29#include <linux/types.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <unistd.h>
33#include <string.h>
32061b4d 34#include <ctype.h>
cc04acf5
KS
35#include <errno.h>
36#include <arpa/inet.h>
37#include <linux/connector.h>
eab6af71 38#include <linux/hyperv.h>
cc04acf5 39#include <linux/netlink.h>
cc04acf5
KS
40#include <ifaddrs.h>
41#include <netdb.h>
42#include <syslog.h>
db425334
S
43#include <sys/stat.h>
44#include <fcntl.h>
32061b4d 45#include <dirent.h>
cc04acf5
KS
46
47/*
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.
53 *
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.
56 *
cc04acf5
KS
57 */
58
cc04acf5
KS
59
60enum key_index {
61 FullyQualifiedDomainName = 0,
62 IntegrationServicesVersion, /*This key is serviced in the kernel*/
63 NetworkAddressIPv4,
64 NetworkAddressIPv6,
65 OSBuildNumber,
66 OSName,
67 OSMajorVersion,
68 OSMinorVersion,
69 OSVersion,
70 ProcessorArchitecture
71};
72
32061b4d
S
73
74enum {
75 IPADDR = 0,
76 NETMASK,
77 GATEWAY,
78 DNS
79};
80
cc04acf5 81static char kvp_send_buffer[4096];
9b595780 82static char kvp_recv_buffer[4096 * 2];
cc04acf5 83static struct sockaddr_nl addr;
b47a81dc 84static int in_hand_shake = 1;
cc04acf5 85
7989f7d5
OH
86static char *os_name = "";
87static char *os_major = "";
88static char *os_minor = "";
89static char *processor_arch;
90static char *os_build;
b47a81dc 91static char *lic_version = "Unknown version";
7989f7d5 92static struct utsname uts_buf;
cc04acf5 93
32061b4d
S
94/*
95 * The location of the interface configuration file.
96 */
97
98#define KVP_CONFIG_LOC "/var/opt/"
db425334
S
99
100#define MAX_FILE_NAME 100
101#define ENTRIES_PER_BLOCK 50
102
103struct kvp_record {
d0cbc156
S
104 char key[HV_KVP_EXCHANGE_MAX_KEY_SIZE];
105 char value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE];
db425334
S
106};
107
108struct kvp_file_state {
109 int fd;
110 int num_blocks;
111 struct kvp_record *records;
112 int num_records;
d0cbc156 113 char fname[MAX_FILE_NAME];
db425334
S
114};
115
116static struct kvp_file_state kvp_file_info[KVP_POOL_COUNT];
117
118static void kvp_acquire_lock(int pool)
119{
120 struct flock fl = {F_WRLCK, SEEK_SET, 0, 0, 0};
121 fl.l_pid = getpid();
122
123 if (fcntl(kvp_file_info[pool].fd, F_SETLKW, &fl) == -1) {
124 syslog(LOG_ERR, "Failed to acquire the lock pool: %d", pool);
125 exit(-1);
126 }
127}
128
129static void kvp_release_lock(int pool)
130{
131 struct flock fl = {F_UNLCK, SEEK_SET, 0, 0, 0};
132 fl.l_pid = getpid();
133
134 if (fcntl(kvp_file_info[pool].fd, F_SETLK, &fl) == -1) {
135 perror("fcntl");
136 syslog(LOG_ERR, "Failed to release the lock pool: %d", pool);
137 exit(-1);
138 }
139}
140
141static void kvp_update_file(int pool)
142{
143 FILE *filep;
144 size_t bytes_written;
145
146 /*
147 * We are going to write our in-memory registry out to
148 * disk; acquire the lock first.
149 */
150 kvp_acquire_lock(pool);
151
152 filep = fopen(kvp_file_info[pool].fname, "w");
153 if (!filep) {
154 kvp_release_lock(pool);
155 syslog(LOG_ERR, "Failed to open file, pool: %d", pool);
156 exit(-1);
157 }
158
159 bytes_written = fwrite(kvp_file_info[pool].records,
160 sizeof(struct kvp_record),
161 kvp_file_info[pool].num_records, filep);
162
163 fflush(filep);
164 kvp_release_lock(pool);
165}
166
adc80ae6
S
167static void kvp_update_mem_state(int pool)
168{
169 FILE *filep;
170 size_t records_read = 0;
171 struct kvp_record *record = kvp_file_info[pool].records;
172 struct kvp_record *readp;
173 int num_blocks = kvp_file_info[pool].num_blocks;
174 int alloc_unit = sizeof(struct kvp_record) * ENTRIES_PER_BLOCK;
175
176 kvp_acquire_lock(pool);
177
178 filep = fopen(kvp_file_info[pool].fname, "r");
179 if (!filep) {
180 kvp_release_lock(pool);
181 syslog(LOG_ERR, "Failed to open file, pool: %d", pool);
182 exit(-1);
183 }
184 while (!feof(filep)) {
185 readp = &record[records_read];
186 records_read += fread(readp, sizeof(struct kvp_record),
187 ENTRIES_PER_BLOCK * num_blocks,
188 filep);
189
190 if (!feof(filep)) {
191 /*
192 * We have more data to read.
193 */
194 num_blocks++;
195 record = realloc(record, alloc_unit * num_blocks);
196
197 if (record == NULL) {
198 syslog(LOG_ERR, "malloc failed");
199 exit(-1);
200 }
201 continue;
202 }
203 break;
204 }
205
206 kvp_file_info[pool].num_blocks = num_blocks;
207 kvp_file_info[pool].records = record;
208 kvp_file_info[pool].num_records = records_read;
209
210 kvp_release_lock(pool);
211}
db425334
S
212static int kvp_file_init(void)
213{
00b83355 214 int fd;
db425334
S
215 FILE *filep;
216 size_t records_read;
d0cbc156 217 char *fname;
db425334
S
218 struct kvp_record *record;
219 struct kvp_record *readp;
220 int num_blocks;
221 int i;
222 int alloc_unit = sizeof(struct kvp_record) * ENTRIES_PER_BLOCK;
223
224 if (access("/var/opt/hyperv", F_OK)) {
225 if (mkdir("/var/opt/hyperv", S_IRUSR | S_IWUSR | S_IROTH)) {
226 syslog(LOG_ERR, " Failed to create /var/opt/hyperv");
227 exit(-1);
228 }
229 }
230
231 for (i = 0; i < KVP_POOL_COUNT; i++) {
232 fname = kvp_file_info[i].fname;
233 records_read = 0;
234 num_blocks = 1;
235 sprintf(fname, "/var/opt/hyperv/.kvp_pool_%d", i);
236 fd = open(fname, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IROTH);
237
238 if (fd == -1)
239 return 1;
240
241
242 filep = fopen(fname, "r");
243 if (!filep)
244 return 1;
245
246 record = malloc(alloc_unit * num_blocks);
247 if (record == NULL) {
248 fclose(filep);
249 return 1;
250 }
251 while (!feof(filep)) {
252 readp = &record[records_read];
253 records_read += fread(readp, sizeof(struct kvp_record),
254 ENTRIES_PER_BLOCK,
255 filep);
256
257 if (!feof(filep)) {
258 /*
259 * We have more data to read.
260 */
261 num_blocks++;
262 record = realloc(record, alloc_unit *
263 num_blocks);
264 if (record == NULL) {
265 fclose(filep);
266 return 1;
267 }
268 continue;
269 }
270 break;
271 }
272 kvp_file_info[i].fd = fd;
273 kvp_file_info[i].num_blocks = num_blocks;
274 kvp_file_info[i].records = record;
275 kvp_file_info[i].num_records = records_read;
276 fclose(filep);
277
278 }
279
280 return 0;
281}
282
283static int kvp_key_delete(int pool, __u8 *key, int key_size)
284{
285 int i;
286 int j, k;
adc80ae6
S
287 int num_records;
288 struct kvp_record *record;
289
290 /*
291 * First update the in-memory state.
292 */
293 kvp_update_mem_state(pool);
294
295 num_records = kvp_file_info[pool].num_records;
296 record = kvp_file_info[pool].records;
db425334
S
297
298 for (i = 0; i < num_records; i++) {
299 if (memcmp(key, record[i].key, key_size))
300 continue;
301 /*
302 * Found a match; just move the remaining
303 * entries up.
304 */
305 if (i == num_records) {
306 kvp_file_info[pool].num_records--;
307 kvp_update_file(pool);
308 return 0;
309 }
310
311 j = i;
312 k = j + 1;
313 for (; k < num_records; k++) {
314 strcpy(record[j].key, record[k].key);
315 strcpy(record[j].value, record[k].value);
316 j++;
317 }
318
319 kvp_file_info[pool].num_records--;
320 kvp_update_file(pool);
321 return 0;
322 }
323 return 1;
324}
325
326static int kvp_key_add_or_modify(int pool, __u8 *key, int key_size, __u8 *value,
327 int value_size)
328{
329 int i;
adc80ae6
S
330 int num_records;
331 struct kvp_record *record;
332 int num_blocks;
db425334
S
333
334 if ((key_size > HV_KVP_EXCHANGE_MAX_KEY_SIZE) ||
335 (value_size > HV_KVP_EXCHANGE_MAX_VALUE_SIZE))
336 return 1;
337
adc80ae6
S
338 /*
339 * First update the in-memory state.
340 */
341 kvp_update_mem_state(pool);
342
343 num_records = kvp_file_info[pool].num_records;
344 record = kvp_file_info[pool].records;
345 num_blocks = kvp_file_info[pool].num_blocks;
346
db425334
S
347 for (i = 0; i < num_records; i++) {
348 if (memcmp(key, record[i].key, key_size))
349 continue;
350 /*
351 * Found a match; just update the value -
352 * this is the modify case.
353 */
354 memcpy(record[i].value, value, value_size);
355 kvp_update_file(pool);
356 return 0;
357 }
358
359 /*
360 * Need to add a new entry;
361 */
362 if (num_records == (ENTRIES_PER_BLOCK * num_blocks)) {
363 /* Need to allocate a larger array for reg entries. */
364 record = realloc(record, sizeof(struct kvp_record) *
365 ENTRIES_PER_BLOCK * (num_blocks + 1));
366
367 if (record == NULL)
368 return 1;
369 kvp_file_info[pool].num_blocks++;
370
371 }
372 memcpy(record[i].value, value, value_size);
373 memcpy(record[i].key, key, key_size);
374 kvp_file_info[pool].records = record;
375 kvp_file_info[pool].num_records++;
376 kvp_update_file(pool);
377 return 0;
378}
379
380static int kvp_get_value(int pool, __u8 *key, int key_size, __u8 *value,
381 int value_size)
382{
383 int i;
adc80ae6
S
384 int num_records;
385 struct kvp_record *record;
db425334
S
386
387 if ((key_size > HV_KVP_EXCHANGE_MAX_KEY_SIZE) ||
388 (value_size > HV_KVP_EXCHANGE_MAX_VALUE_SIZE))
389 return 1;
390
adc80ae6
S
391 /*
392 * First update the in-memory state.
393 */
394 kvp_update_mem_state(pool);
395
396 num_records = kvp_file_info[pool].num_records;
397 record = kvp_file_info[pool].records;
398
db425334
S
399 for (i = 0; i < num_records; i++) {
400 if (memcmp(key, record[i].key, key_size))
401 continue;
402 /*
403 * Found a match; just copy the value out.
404 */
405 memcpy(value, record[i].value, value_size);
406 return 0;
407 }
408
409 return 1;
410}
411
b47a81dc 412static int kvp_pool_enumerate(int pool, int index, __u8 *key, int key_size,
adc80ae6
S
413 __u8 *value, int value_size)
414{
415 struct kvp_record *record;
416
417 /*
418 * First update our in-memory database.
419 */
420 kvp_update_mem_state(pool);
421 record = kvp_file_info[pool].records;
422
423 if (index >= kvp_file_info[pool].num_records) {
b47a81dc 424 return 1;
adc80ae6
S
425 }
426
427 memcpy(key, record[index].key, key_size);
428 memcpy(value, record[index].value, value_size);
b47a81dc 429 return 0;
adc80ae6
S
430}
431
432
cc04acf5
KS
433void kvp_get_os_info(void)
434{
435 FILE *file;
7989f7d5 436 char *p, buf[512];
cc04acf5 437
7989f7d5
OH
438 uname(&uts_buf);
439 os_build = uts_buf.release;
064931d0 440 processor_arch = uts_buf.machine;
cc04acf5 441
e54bbc64
S
442 /*
443 * The current windows host (win7) expects the build
444 * string to be of the form: x.y.z
445 * Strip additional information we may have.
446 */
447 p = strchr(os_build, '-');
448 if (p)
449 *p = '\0';
450
cc04acf5
KS
451 file = fopen("/etc/SuSE-release", "r");
452 if (file != NULL)
453 goto kvp_osinfo_found;
454 file = fopen("/etc/redhat-release", "r");
455 if (file != NULL)
456 goto kvp_osinfo_found;
457 /*
458 * Add code for other supported platforms.
459 */
460
461 /*
462 * We don't have information about the os.
463 */
7989f7d5 464 os_name = uts_buf.sysname;
cc04acf5
KS
465 return;
466
467kvp_osinfo_found:
7989f7d5
OH
468 /* up to three lines */
469 p = fgets(buf, sizeof(buf), file);
470 if (p) {
471 p = strchr(buf, '\n');
472 if (p)
473 *p = '\0';
474 p = strdup(buf);
475 if (!p)
476 goto done;
477 os_name = p;
478
479 /* second line */
480 p = fgets(buf, sizeof(buf), file);
481 if (p) {
482 p = strchr(buf, '\n');
483 if (p)
484 *p = '\0';
485 p = strdup(buf);
486 if (!p)
487 goto done;
488 os_major = p;
489
490 /* third line */
491 p = fgets(buf, sizeof(buf), file);
492 if (p) {
493 p = strchr(buf, '\n');
494 if (p)
495 *p = '\0';
496 p = strdup(buf);
497 if (p)
498 os_minor = p;
499 }
500 }
501 }
502
503done:
cc04acf5
KS
504 fclose(file);
505 return;
506}
507
32061b4d
S
508
509
510/*
511 * Retrieve an interface name corresponding to the specified guid.
512 * If there is a match, the function returns a pointer
513 * to the interface name and if not, a NULL is returned.
514 * If a match is found, the caller is responsible for
515 * freeing the memory.
516 */
517
518static char *kvp_get_if_name(char *guid)
519{
520 DIR *dir;
521 struct dirent *entry;
522 FILE *file;
523 char *p, *q, *x;
524 char *if_name = NULL;
525 char buf[256];
526 char *kvp_net_dir = "/sys/class/net/";
527 char dev_id[256];
528
529 dir = opendir(kvp_net_dir);
530 if (dir == NULL)
531 return NULL;
532
533 snprintf(dev_id, sizeof(dev_id), "%s", kvp_net_dir);
534 q = dev_id + strlen(kvp_net_dir);
535
536 while ((entry = readdir(dir)) != NULL) {
537 /*
538 * Set the state for the next pass.
539 */
540 *q = '\0';
541 strcat(dev_id, entry->d_name);
542 strcat(dev_id, "/device/device_id");
543
544 file = fopen(dev_id, "r");
545 if (file == NULL)
546 continue;
547
548 p = fgets(buf, sizeof(buf), file);
549 if (p) {
550 x = strchr(p, '\n');
551 if (x)
552 *x = '\0';
553
554 if (!strcmp(p, guid)) {
555 /*
556 * Found the guid match; return the interface
557 * name. The caller will free the memory.
558 */
559 if_name = strdup(entry->d_name);
560 fclose(file);
561 break;
562 }
563 }
564 fclose(file);
565 }
566
567 closedir(dir);
568 return if_name;
569}
570
571/*
572 * Retrieve the MAC address given the interface name.
573 */
574
575static char *kvp_if_name_to_mac(char *if_name)
576{
577 FILE *file;
578 char *p, *x;
579 char buf[256];
580 char addr_file[256];
581 int i;
582 char *mac_addr = NULL;
583
584 snprintf(addr_file, sizeof(addr_file), "%s%s%s", "/sys/class/net/",
585 if_name, "/address");
586
587 file = fopen(addr_file, "r");
588 if (file == NULL)
589 return NULL;
590
591 p = fgets(buf, sizeof(buf), file);
592 if (p) {
593 x = strchr(p, '\n');
594 if (x)
595 *x = '\0';
596 for (i = 0; i < strlen(p); i++)
597 p[i] = toupper(p[i]);
598 mac_addr = strdup(p);
599 }
600
601 fclose(file);
602 return mac_addr;
603}
604
605
4a52c4af
S
606static void kvp_process_ipconfig_file(char *cmd,
607 char *config_buf, int len,
608 int element_size, int offset)
609{
610 char buf[256];
611 char *p;
612 char *x;
613 FILE *file;
614
615 /*
616 * First execute the command.
617 */
618 file = popen(cmd, "r");
619 if (file == NULL)
620 return;
621
622 if (offset == 0)
623 memset(config_buf, 0, len);
624 while ((p = fgets(buf, sizeof(buf), file)) != NULL) {
625 if ((len - strlen(config_buf)) < (element_size + 1))
626 break;
627
628 x = strchr(p, '\n');
629 *x = '\0';
630 strcat(config_buf, p);
631 strcat(config_buf, ";");
632 }
633 pclose(file);
634}
635
636static void kvp_get_ipconfig_info(char *if_name,
637 struct hv_kvp_ipaddr_value *buffer)
638{
639 char cmd[512];
c0503725
S
640 char dhcp_info[128];
641 char *p;
642 FILE *file;
4a52c4af
S
643
644 /*
645 * Get the address of default gateway (ipv4).
646 */
647 sprintf(cmd, "%s %s", "ip route show dev", if_name);
648 strcat(cmd, " | awk '/default/ {print $3 }'");
649
650 /*
651 * Execute the command to gather gateway info.
652 */
653 kvp_process_ipconfig_file(cmd, (char *)buffer->gate_way,
654 (MAX_GATEWAY_SIZE * 2), INET_ADDRSTRLEN, 0);
655
656 /*
657 * Get the address of default gateway (ipv6).
658 */
659 sprintf(cmd, "%s %s", "ip -f inet6 route show dev", if_name);
660 strcat(cmd, " | awk '/default/ {print $3 }'");
661
662 /*
663 * Execute the command to gather gateway info (ipv6).
664 */
665 kvp_process_ipconfig_file(cmd, (char *)buffer->gate_way,
666 (MAX_GATEWAY_SIZE * 2), INET6_ADDRSTRLEN, 1);
667
96929887
S
668
669 /*
670 * Gather the DNS state.
671 * Since there is no standard way to get this information
672 * across various distributions of interest; we just invoke
673 * an external script that needs to be ported across distros
674 * of interest.
675 *
676 * Following is the expected format of the information from the script:
677 *
678 * ipaddr1 (nameserver1)
679 * ipaddr2 (nameserver2)
680 * .
681 * .
682 */
683
684 sprintf(cmd, "%s", "hv_get_dns_info");
685
686 /*
687 * Execute the command to gather DNS info.
688 */
689 kvp_process_ipconfig_file(cmd, (char *)buffer->dns_addr,
690 (MAX_IP_ADDR_SIZE * 2), INET_ADDRSTRLEN, 0);
c0503725
S
691
692 /*
693 * Gather the DHCP state.
694 * We will gather this state by invoking an external script.
695 * The parameter to the script is the interface name.
696 * Here is the expected output:
697 *
698 * Enabled: DHCP enabled.
699 */
700
701 sprintf(cmd, "%s %s", "hv_get_dhcp_info", if_name);
702
703 file = popen(cmd, "r");
704 if (file == NULL)
705 return;
706
707 p = fgets(dhcp_info, sizeof(dhcp_info), file);
708 if (p == NULL) {
709 pclose(file);
710 return;
711 }
712
713 if (!strncmp(p, "Enabled", 7))
714 buffer->dhcp_enabled = 1;
715 else
716 buffer->dhcp_enabled = 0;
717
718 pclose(file);
4a52c4af
S
719}
720
721
6a60a6a8
S
722static unsigned int hweight32(unsigned int *w)
723{
724 unsigned int res = *w - ((*w >> 1) & 0x55555555);
725 res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
726 res = (res + (res >> 4)) & 0x0F0F0F0F;
727 res = res + (res >> 8);
728 return (res + (res >> 16)) & 0x000000FF;
729}
730
af733015
S
731static int kvp_process_ip_address(void *addrp,
732 int family, char *buffer,
733 int length, int *offset)
734{
735 struct sockaddr_in *addr;
736 struct sockaddr_in6 *addr6;
737 int addr_length;
738 char tmp[50];
739 const char *str;
740
741 if (family == AF_INET) {
742 addr = (struct sockaddr_in *)addrp;
743 str = inet_ntop(family, &addr->sin_addr, tmp, 50);
744 addr_length = INET_ADDRSTRLEN;
745 } else {
746 addr6 = (struct sockaddr_in6 *)addrp;
747 str = inet_ntop(family, &addr6->sin6_addr.s6_addr, tmp, 50);
748 addr_length = INET6_ADDRSTRLEN;
749 }
750
751 if ((length - *offset) < addr_length + 1)
752 return 1;
753 if (str == NULL) {
754 strcpy(buffer, "inet_ntop failed\n");
755 return 1;
756 }
757 if (*offset == 0)
758 strcpy(buffer, tmp);
759 else
760 strcat(buffer, tmp);
761 strcat(buffer, ";");
762
763 *offset += strlen(str) + 1;
764 return 0;
765}
766
cc04acf5 767static int
0ecaa198
S
768kvp_get_ip_address(int family, char *if_name, int op,
769 void *out_buffer, int length)
cc04acf5
KS
770{
771 struct ifaddrs *ifap;
772 struct ifaddrs *curp;
cc04acf5 773 int offset = 0;
04405784 774 int sn_offset = 0;
cc04acf5 775 int error = 0;
0ecaa198
S
776 char *buffer;
777 struct hv_kvp_ipaddr_value *ip_buffer;
6a60a6a8
S
778 char cidr_mask[5]; /* /xyz */
779 int weight;
780 int i;
781 unsigned int *w;
782 char *sn_str;
783 struct sockaddr_in6 *addr6;
0ecaa198
S
784
785 if (op == KVP_OP_ENUMERATE) {
786 buffer = out_buffer;
787 } else {
788 ip_buffer = out_buffer;
789 buffer = (char *)ip_buffer->ip_addr;
790 ip_buffer->addr_family = 0;
791 }
cc04acf5
KS
792 /*
793 * On entry into this function, the buffer is capable of holding the
0ecaa198 794 * maximum key value.
cc04acf5
KS
795 */
796
797 if (getifaddrs(&ifap)) {
798 strcpy(buffer, "getifaddrs failed\n");
799 return 1;
800 }
801
802 curp = ifap;
803 while (curp != NULL) {
0ecaa198
S
804 if (curp->ifa_addr == NULL) {
805 curp = curp->ifa_next;
806 continue;
807 }
cc04acf5 808
0ecaa198
S
809 if ((if_name != NULL) &&
810 (strncmp(curp->ifa_name, if_name, strlen(if_name)))) {
811 /*
812 * We want info about a specific interface;
813 * just continue.
814 */
815 curp = curp->ifa_next;
816 continue;
817 }
cc04acf5 818
0ecaa198
S
819 /*
820 * We only support two address families: AF_INET and AF_INET6.
821 * If a family value of 0 is specified, we collect both
822 * supported address families; if not we gather info on
823 * the specified address family.
824 */
825 if ((family != 0) && (curp->ifa_addr->sa_family != family)) {
826 curp = curp->ifa_next;
827 continue;
828 }
829 if ((curp->ifa_addr->sa_family != AF_INET) &&
830 (curp->ifa_addr->sa_family != AF_INET6)) {
831 curp = curp->ifa_next;
832 continue;
833 }
834
0d5b6b19
S
835 if (op == KVP_OP_GET_IP_INFO) {
836 /*
837 * Gather info other than the IP address.
838 * IP address info will be gathered later.
839 */
04405784 840 if (curp->ifa_addr->sa_family == AF_INET) {
0d5b6b19 841 ip_buffer->addr_family |= ADDR_FAMILY_IPV4;
04405784
S
842 /*
843 * Get subnet info.
844 */
845 error = kvp_process_ip_address(
846 curp->ifa_netmask,
847 AF_INET,
848 (char *)
849 ip_buffer->sub_net,
850 length,
851 &sn_offset);
852 if (error)
853 goto gather_ipaddr;
854 } else {
0d5b6b19 855 ip_buffer->addr_family |= ADDR_FAMILY_IPV6;
6a60a6a8 856
04405784 857 /*
6a60a6a8 858 * Get subnet info in CIDR format.
04405784 859 */
6a60a6a8
S
860 weight = 0;
861 sn_str = (char *)ip_buffer->sub_net;
862 addr6 = (struct sockaddr_in6 *)
863 curp->ifa_netmask;
864 w = addr6->sin6_addr.s6_addr32;
865
866 for (i = 0; i < 4; i++)
867 weight += hweight32(&w[i]);
868
869 sprintf(cidr_mask, "/%d", weight);
870 if ((length - sn_offset) <
871 (strlen(cidr_mask) + 1))
04405784 872 goto gather_ipaddr;
6a60a6a8
S
873
874 if (sn_offset == 0)
875 strcpy(sn_str, cidr_mask);
876 else
877 strcat(sn_str, cidr_mask);
878 strcat((char *)ip_buffer->sub_net, ";");
879 sn_offset += strlen(sn_str) + 1;
04405784 880 }
4a52c4af
S
881
882 /*
883 * Collect other ip related configuration info.
884 */
885
886 kvp_get_ipconfig_info(if_name, ip_buffer);
0d5b6b19
S
887 }
888
04405784 889gather_ipaddr:
af733015
S
890 error = kvp_process_ip_address(curp->ifa_addr,
891 curp->ifa_addr->sa_family,
892 buffer,
893 length, &offset);
894 if (error)
895 goto getaddr_done;
0ecaa198 896
cc04acf5
KS
897 curp = curp->ifa_next;
898 }
899
900getaddr_done:
901 freeifaddrs(ifap);
902 return error;
903}
904
905
32061b4d
S
906static int expand_ipv6(char *addr, int type)
907{
908 int ret;
909 struct in6_addr v6_addr;
910
911 ret = inet_pton(AF_INET6, addr, &v6_addr);
912
913 if (ret != 1) {
914 if (type == NETMASK)
915 return 1;
916 return 0;
917 }
918
919 sprintf(addr, "%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
920 "%02x%02x:%02x%02x:%02x%02x",
921 (int)v6_addr.s6_addr[0], (int)v6_addr.s6_addr[1],
922 (int)v6_addr.s6_addr[2], (int)v6_addr.s6_addr[3],
923 (int)v6_addr.s6_addr[4], (int)v6_addr.s6_addr[5],
924 (int)v6_addr.s6_addr[6], (int)v6_addr.s6_addr[7],
925 (int)v6_addr.s6_addr[8], (int)v6_addr.s6_addr[9],
926 (int)v6_addr.s6_addr[10], (int)v6_addr.s6_addr[11],
927 (int)v6_addr.s6_addr[12], (int)v6_addr.s6_addr[13],
928 (int)v6_addr.s6_addr[14], (int)v6_addr.s6_addr[15]);
929
930 return 1;
931
932}
933
934static int is_ipv4(char *addr)
935{
936 int ret;
937 struct in_addr ipv4_addr;
938
939 ret = inet_pton(AF_INET, addr, &ipv4_addr);
940
941 if (ret == 1)
942 return 1;
943 return 0;
944}
945
946static int parse_ip_val_buffer(char *in_buf, int *offset,
947 char *out_buf, int out_len)
948{
949 char *x;
950 char *start;
951
952 /*
953 * in_buf has sequence of characters that are seperated by
954 * the character ';'. The last sequence does not have the
955 * terminating ";" character.
956 */
957 start = in_buf + *offset;
958
959 x = strchr(start, ';');
960 if (x)
961 *x = 0;
962 else
963 x = start + strlen(start);
964
965 if (strlen(start) != 0) {
966 int i = 0;
967 /*
968 * Get rid of leading spaces.
969 */
970 while (start[i] == ' ')
971 i++;
972
973 if ((x - start) <= out_len) {
974 strcpy(out_buf, (start + i));
975 *offset += (x - start) + 1;
976 return 1;
977 }
978 }
979 return 0;
980}
981
982static int kvp_write_file(FILE *f, char *s1, char *s2, char *s3)
983{
984 int ret;
985
986 ret = fprintf(f, "%s%s%s%s\n", s1, s2, "=", s3);
987
988 if (ret < 0)
989 return HV_E_FAIL;
990
991 return 0;
992}
993
994
995static int process_ip_string(FILE *f, char *ip_string, int type)
996{
997 int error = 0;
998 char addr[INET6_ADDRSTRLEN];
999 int i = 0;
1000 int j = 0;
1001 char str[256];
1002 char sub_str[10];
1003 int offset = 0;
1004
1005 memset(addr, 0, sizeof(addr));
1006
1007 while (parse_ip_val_buffer(ip_string, &offset, addr,
1008 (MAX_IP_ADDR_SIZE * 2))) {
1009
1010 sub_str[0] = 0;
1011 if (is_ipv4(addr)) {
1012 switch (type) {
1013 case IPADDR:
1014 snprintf(str, sizeof(str), "%s", "IPADDR");
1015 break;
1016 case NETMASK:
1017 snprintf(str, sizeof(str), "%s", "NETMASK");
1018 break;
1019 case GATEWAY:
1020 snprintf(str, sizeof(str), "%s", "GATEWAY");
1021 break;
1022 case DNS:
1023 snprintf(str, sizeof(str), "%s", "DNS");
1024 break;
1025 }
1026 if (i != 0) {
1027 if (type != DNS) {
1028 snprintf(sub_str, sizeof(sub_str),
1029 "_%d", i++);
1030 } else {
1031 snprintf(sub_str, sizeof(sub_str),
1032 "%d", ++i);
1033 }
1034 } else if (type == DNS) {
1035 snprintf(sub_str, sizeof(sub_str), "%d", ++i);
1036 }
1037
1038
1039 } else if (expand_ipv6(addr, type)) {
1040 switch (type) {
1041 case IPADDR:
1042 snprintf(str, sizeof(str), "%s", "IPV6ADDR");
1043 break;
1044 case NETMASK:
1045 snprintf(str, sizeof(str), "%s", "IPV6NETMASK");
1046 break;
1047 case GATEWAY:
1048 snprintf(str, sizeof(str), "%s",
1049 "IPV6_DEFAULTGW");
1050 break;
1051 case DNS:
1052 snprintf(str, sizeof(str), "%s", "DNS");
1053 break;
1054 }
1055 if ((j != 0) || (type == DNS)) {
1056 if (type != DNS) {
1057 snprintf(sub_str, sizeof(sub_str),
1058 "_%d", j++);
1059 } else {
1060 snprintf(sub_str, sizeof(sub_str),
1061 "%d", ++i);
1062 }
1063 } else if (type == DNS) {
1064 snprintf(sub_str, sizeof(sub_str),
1065 "%d", ++i);
1066 }
1067 } else {
1068 return HV_INVALIDARG;
1069 }
1070
1071 error = kvp_write_file(f, str, sub_str, addr);
1072 if (error)
1073 return error;
1074 memset(addr, 0, sizeof(addr));
1075 }
1076
1077 return 0;
1078}
1079
1080static int kvp_set_ip_info(char *if_name, struct hv_kvp_ipaddr_value *new_val)
1081{
1082 int error = 0;
1083 char if_file[128];
1084 FILE *file;
1085 char cmd[512];
1086 char *mac_addr;
1087
1088 /*
1089 * Set the configuration for the specified interface with
1090 * the information provided. Since there is no standard
1091 * way to configure an interface, we will have an external
1092 * script that does the job of configuring the interface and
1093 * flushing the configuration.
1094 *
1095 * The parameters passed to this external script are:
1096 * 1. A configuration file that has the specified configuration.
1097 *
1098 * We will embed the name of the interface in the configuration
1099 * file: ifcfg-ethx (where ethx is the interface name).
1100 *
1101 * The information provided here may be more than what is needed
1102 * in a given distro to configure the interface and so are free
1103 * ignore information that may not be relevant.
1104 *
1105 * Here is the format of the ip configuration file:
1106 *
1107 * HWADDR=macaddr
1108 * IF_NAME=interface name
1109 * DHCP=yes (This is optional; if yes, DHCP is configured)
1110 *
1111 * IPADDR=ipaddr1
1112 * IPADDR_1=ipaddr2
1113 * IPADDR_x=ipaddry (where y = x + 1)
1114 *
1115 * NETMASK=netmask1
1116 * NETMASK_x=netmasky (where y = x + 1)
1117 *
1118 * GATEWAY=ipaddr1
1119 * GATEWAY_x=ipaddry (where y = x + 1)
1120 *
1121 * DNSx=ipaddrx (where first DNS address is tagged as DNS1 etc)
1122 *
1123 * IPV6 addresses will be tagged as IPV6ADDR, IPV6 gateway will be
1124 * tagged as IPV6_DEFAULTGW and IPV6 NETMASK will be tagged as
1125 * IPV6NETMASK.
1126 *
1127 * The host can specify multiple ipv4 and ipv6 addresses to be
1128 * configured for the interface. Furthermore, the configuration
1129 * needs to be persistent. A subsequent GET call on the interface
1130 * is expected to return the configuration that is set via the SET
1131 * call.
1132 */
1133
1134 snprintf(if_file, sizeof(if_file), "%s%s%s", KVP_CONFIG_LOC,
1135 "hyperv/ifcfg-", if_name);
1136
1137 file = fopen(if_file, "w");
1138
1139 if (file == NULL) {
1140 syslog(LOG_ERR, "Failed to open config file");
1141 return HV_E_FAIL;
1142 }
1143
1144 /*
1145 * First write out the MAC address.
1146 */
1147
1148 mac_addr = kvp_if_name_to_mac(if_name);
1149 if (mac_addr == NULL) {
1150 error = HV_E_FAIL;
1151 goto setval_error;
1152 }
1153
1154 error = kvp_write_file(file, "HWADDR", "", mac_addr);
1155 if (error)
1156 goto setval_error;
1157
1158 error = kvp_write_file(file, "IF_NAME", "", if_name);
1159 if (error)
1160 goto setval_error;
1161
1162 if (new_val->dhcp_enabled) {
1163 error = kvp_write_file(file, "DHCP", "", "yes");
1164 if (error)
1165 goto setval_error;
1166
1167 /*
1168 * We are done!.
1169 */
1170 goto setval_done;
1171 }
1172
1173 /*
1174 * Write the configuration for ipaddress, netmask, gateway and
1175 * name servers.
1176 */
1177
1178 error = process_ip_string(file, (char *)new_val->ip_addr, IPADDR);
1179 if (error)
1180 goto setval_error;
1181
1182 error = process_ip_string(file, (char *)new_val->sub_net, NETMASK);
1183 if (error)
1184 goto setval_error;
1185
1186 error = process_ip_string(file, (char *)new_val->gate_way, GATEWAY);
1187 if (error)
1188 goto setval_error;
1189
1190 error = process_ip_string(file, (char *)new_val->dns_addr, DNS);
1191 if (error)
1192 goto setval_error;
1193
1194setval_done:
1195 free(mac_addr);
1196 fclose(file);
1197
1198 /*
1199 * Now that we have populated the configuration file,
1200 * invoke the external script to do its magic.
1201 */
1202
1203 snprintf(cmd, sizeof(cmd), "%s %s", "hv_set_ifconfig", if_file);
1204 system(cmd);
1205 return 0;
1206
1207setval_error:
1208 syslog(LOG_ERR, "Failed to write config file");
1209 free(mac_addr);
1210 fclose(file);
1211 return error;
1212}
1213
1214
cc04acf5
KS
1215static int
1216kvp_get_domain_name(char *buffer, int length)
1217{
1218 struct addrinfo hints, *info ;
cc04acf5
KS
1219 int error = 0;
1220
5be528c2 1221 gethostname(buffer, length);
cc04acf5
KS
1222 memset(&hints, 0, sizeof(hints));
1223 hints.ai_family = AF_INET; /*Get only ipv4 addrinfo. */
1224 hints.ai_socktype = SOCK_STREAM;
1225 hints.ai_flags = AI_CANONNAME;
1226
5be528c2 1227 error = getaddrinfo(buffer, NULL, &hints, &info);
cc04acf5
KS
1228 if (error != 0) {
1229 strcpy(buffer, "getaddrinfo failed\n");
5be528c2 1230 return error;
cc04acf5
KS
1231 }
1232 strcpy(buffer, info->ai_canonname);
cc04acf5
KS
1233 freeaddrinfo(info);
1234 return error;
1235}
1236
1237static int
1238netlink_send(int fd, struct cn_msg *msg)
1239{
1240 struct nlmsghdr *nlh;
1241 unsigned int size;
1242 struct msghdr message;
1243 char buffer[64];
1244 struct iovec iov[2];
1245
1246 size = NLMSG_SPACE(sizeof(struct cn_msg) + msg->len);
1247
1248 nlh = (struct nlmsghdr *)buffer;
1249 nlh->nlmsg_seq = 0;
1250 nlh->nlmsg_pid = getpid();
1251 nlh->nlmsg_type = NLMSG_DONE;
1252 nlh->nlmsg_len = NLMSG_LENGTH(size - sizeof(*nlh));
1253 nlh->nlmsg_flags = 0;
1254
1255 iov[0].iov_base = nlh;
1256 iov[0].iov_len = sizeof(*nlh);
1257
1258 iov[1].iov_base = msg;
1259 iov[1].iov_len = size;
1260
1261 memset(&message, 0, sizeof(message));
1262 message.msg_name = &addr;
1263 message.msg_namelen = sizeof(addr);
1264 message.msg_iov = iov;
1265 message.msg_iovlen = 2;
1266
1267 return sendmsg(fd, &message, 0);
1268}
1269
7989f7d5 1270int main(void)
cc04acf5
KS
1271{
1272 int fd, len, sock_opt;
1273 int error;
1274 struct cn_msg *message;
1275 struct pollfd pfd;
1276 struct nlmsghdr *incoming_msg;
1277 struct cn_msg *incoming_cn_msg;
26403354 1278 struct hv_kvp_msg *hv_msg;
7989f7d5 1279 char *p;
cc04acf5
KS
1280 char *key_value;
1281 char *key_name;
b47a81dc
S
1282 int op;
1283 int pool;
32061b4d
S
1284 char *if_name;
1285 struct hv_kvp_ipaddr_value *kvp_ip_val;
cc04acf5
KS
1286
1287 daemon(1, 0);
1288 openlog("KVP", 0, LOG_USER);
1289 syslog(LOG_INFO, "KVP starting; pid is:%d", getpid());
1290 /*
1291 * Retrieve OS release information.
1292 */
1293 kvp_get_os_info();
1294
db425334
S
1295 if (kvp_file_init()) {
1296 syslog(LOG_ERR, "Failed to initialize the pools");
1297 exit(-1);
1298 }
1299
cc04acf5
KS
1300 fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
1301 if (fd < 0) {
1302 syslog(LOG_ERR, "netlink socket creation failed; error:%d", fd);
1303 exit(-1);
1304 }
1305 addr.nl_family = AF_NETLINK;
1306 addr.nl_pad = 0;
1307 addr.nl_pid = 0;
1308 addr.nl_groups = CN_KVP_IDX;
1309
1310
1311 error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
1312 if (error < 0) {
1313 syslog(LOG_ERR, "bind failed; error:%d", error);
1314 close(fd);
1315 exit(-1);
1316 }
1317 sock_opt = addr.nl_groups;
1318 setsockopt(fd, 270, 1, &sock_opt, sizeof(sock_opt));
1319 /*
1320 * Register ourselves with the kernel.
1321 */
1322 message = (struct cn_msg *)kvp_send_buffer;
1323 message->id.idx = CN_KVP_IDX;
1324 message->id.val = CN_KVP_VAL;
26403354
S
1325
1326 hv_msg = (struct hv_kvp_msg *)message->data;
b47a81dc 1327 hv_msg->kvp_hdr.operation = KVP_OP_REGISTER1;
cc04acf5 1328 message->ack = 0;
26403354 1329 message->len = sizeof(struct hv_kvp_msg);
cc04acf5
KS
1330
1331 len = netlink_send(fd, message);
1332 if (len < 0) {
1333 syslog(LOG_ERR, "netlink_send failed; error:%d", len);
1334 close(fd);
1335 exit(-1);
1336 }
1337
1338 pfd.fd = fd;
1339
1340 while (1) {
bcc2c9c3
OH
1341 struct sockaddr *addr_p = (struct sockaddr *) &addr;
1342 socklen_t addr_l = sizeof(addr);
cc04acf5
KS
1343 pfd.events = POLLIN;
1344 pfd.revents = 0;
1345 poll(&pfd, 1, -1);
1346
bcc2c9c3
OH
1347 len = recvfrom(fd, kvp_recv_buffer, sizeof(kvp_recv_buffer), 0,
1348 addr_p, &addr_l);
cc04acf5 1349
bcc2c9c3
OH
1350 if (len < 0 || addr.nl_pid) {
1351 syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
1352 addr.nl_pid, errno, strerror(errno));
cc04acf5
KS
1353 close(fd);
1354 return -1;
1355 }
1356
1357 incoming_msg = (struct nlmsghdr *)kvp_recv_buffer;
1358 incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
26403354 1359 hv_msg = (struct hv_kvp_msg *)incoming_cn_msg->data;
cc04acf5 1360
b47a81dc
S
1361 /*
1362 * We will use the KVP header information to pass back
1363 * the error from this daemon. So, first copy the state
1364 * and set the error code to success.
1365 */
1366 op = hv_msg->kvp_hdr.operation;
1367 pool = hv_msg->kvp_hdr.pool;
1368 hv_msg->error = HV_S_OK;
1369
1370 if ((in_hand_shake) && (op == KVP_OP_REGISTER1)) {
cc04acf5
KS
1371 /*
1372 * Driver is registering with us; stash away the version
1373 * information.
1374 */
b47a81dc 1375 in_hand_shake = 0;
e485ceac 1376 p = (char *)hv_msg->body.kvp_register.version;
7989f7d5 1377 lic_version = malloc(strlen(p) + 1);
cc04acf5 1378 if (lic_version) {
7989f7d5 1379 strcpy(lic_version, p);
cc04acf5
KS
1380 syslog(LOG_INFO, "KVP LIC Version: %s",
1381 lic_version);
1382 } else {
1383 syslog(LOG_ERR, "malloc failed");
1384 }
1385 continue;
b47a81dc 1386 }
cc04acf5 1387
b47a81dc 1388 switch (op) {
32061b4d
S
1389 case KVP_OP_SET_IP_INFO:
1390 kvp_ip_val = &hv_msg->body.kvp_ip_val;
1391 if_name = kvp_get_if_name(
1392 (char *)kvp_ip_val->adapter_id);
1393 if (if_name == NULL) {
1394 /*
1395 * We could not map the guid to an
1396 * interface name; return error.
1397 */
1398 hv_msg->error = HV_GUID_NOTFOUND;
1399 break;
1400 }
1401 error = kvp_set_ip_info(if_name, kvp_ip_val);
1402 if (error)
1403 hv_msg->error = error;
1404
1405 free(if_name);
1406 break;
1407
fa3d5b85 1408 case KVP_OP_SET:
b47a81dc 1409 if (kvp_key_add_or_modify(pool,
db425334
S
1410 hv_msg->body.kvp_set.data.key,
1411 hv_msg->body.kvp_set.data.key_size,
1412 hv_msg->body.kvp_set.data.value,
1413 hv_msg->body.kvp_set.data.value_size))
b47a81dc 1414 hv_msg->error = HV_S_CONT;
db425334
S
1415 break;
1416
fa3d5b85 1417 case KVP_OP_GET:
b47a81dc 1418 if (kvp_get_value(pool,
db425334
S
1419 hv_msg->body.kvp_set.data.key,
1420 hv_msg->body.kvp_set.data.key_size,
1421 hv_msg->body.kvp_set.data.value,
1422 hv_msg->body.kvp_set.data.value_size))
b47a81dc 1423 hv_msg->error = HV_S_CONT;
db425334
S
1424 break;
1425
fa3d5b85 1426 case KVP_OP_DELETE:
b47a81dc 1427 if (kvp_key_delete(pool,
db425334
S
1428 hv_msg->body.kvp_delete.key,
1429 hv_msg->body.kvp_delete.key_size))
b47a81dc 1430 hv_msg->error = HV_S_CONT;
db425334
S
1431 break;
1432
cc04acf5 1433 default:
26403354 1434 break;
cc04acf5
KS
1435 }
1436
b47a81dc 1437 if (op != KVP_OP_ENUMERATE)
fa3d5b85
S
1438 goto kvp_done;
1439
adc80ae6
S
1440 /*
1441 * If the pool is KVP_POOL_AUTO, dynamically generate
1442 * both the key and the value; if not read from the
1443 * appropriate pool.
1444 */
b47a81dc
S
1445 if (pool != KVP_POOL_AUTO) {
1446 if (kvp_pool_enumerate(pool,
adc80ae6
S
1447 hv_msg->body.kvp_enum_data.index,
1448 hv_msg->body.kvp_enum_data.data.key,
1449 HV_KVP_EXCHANGE_MAX_KEY_SIZE,
1450 hv_msg->body.kvp_enum_data.data.value,
b47a81dc
S
1451 HV_KVP_EXCHANGE_MAX_VALUE_SIZE))
1452 hv_msg->error = HV_S_CONT;
adc80ae6
S
1453 goto kvp_done;
1454 }
1455
26403354
S
1456 hv_msg = (struct hv_kvp_msg *)incoming_cn_msg->data;
1457 key_name = (char *)hv_msg->body.kvp_enum_data.data.key;
1458 key_value = (char *)hv_msg->body.kvp_enum_data.data.value;
cc04acf5 1459
26403354 1460 switch (hv_msg->body.kvp_enum_data.index) {
cc04acf5
KS
1461 case FullyQualifiedDomainName:
1462 kvp_get_domain_name(key_value,
1463 HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
1464 strcpy(key_name, "FullyQualifiedDomainName");
1465 break;
1466 case IntegrationServicesVersion:
1467 strcpy(key_name, "IntegrationServicesVersion");
1468 strcpy(key_value, lic_version);
1469 break;
1470 case NetworkAddressIPv4:
0ecaa198
S
1471 kvp_get_ip_address(AF_INET, NULL, KVP_OP_ENUMERATE,
1472 key_value, HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
cc04acf5
KS
1473 strcpy(key_name, "NetworkAddressIPv4");
1474 break;
1475 case NetworkAddressIPv6:
0ecaa198
S
1476 kvp_get_ip_address(AF_INET6, NULL, KVP_OP_ENUMERATE,
1477 key_value, HV_KVP_EXCHANGE_MAX_VALUE_SIZE);
cc04acf5
KS
1478 strcpy(key_name, "NetworkAddressIPv6");
1479 break;
1480 case OSBuildNumber:
1481 strcpy(key_value, os_build);
1482 strcpy(key_name, "OSBuildNumber");
1483 break;
1484 case OSName:
1485 strcpy(key_value, os_name);
1486 strcpy(key_name, "OSName");
1487 break;
1488 case OSMajorVersion:
1489 strcpy(key_value, os_major);
1490 strcpy(key_name, "OSMajorVersion");
1491 break;
1492 case OSMinorVersion:
1493 strcpy(key_value, os_minor);
1494 strcpy(key_name, "OSMinorVersion");
1495 break;
1496 case OSVersion:
1497 strcpy(key_value, os_build);
1498 strcpy(key_name, "OSVersion");
1499 break;
1500 case ProcessorArchitecture:
1501 strcpy(key_value, processor_arch);
1502 strcpy(key_name, "ProcessorArchitecture");
1503 break;
1504 default:
b47a81dc 1505 hv_msg->error = HV_S_CONT;
cc04acf5
KS
1506 break;
1507 }
1508 /*
1509 * Send the value back to the kernel. The response is
1510 * already in the receive buffer. Update the cn_msg header to
1511 * reflect the key value that has been added to the message
1512 */
fa3d5b85 1513kvp_done:
cc04acf5
KS
1514
1515 incoming_cn_msg->id.idx = CN_KVP_IDX;
1516 incoming_cn_msg->id.val = CN_KVP_VAL;
cc04acf5 1517 incoming_cn_msg->ack = 0;
26403354 1518 incoming_cn_msg->len = sizeof(struct hv_kvp_msg);
cc04acf5
KS
1519
1520 len = netlink_send(fd, incoming_cn_msg);
1521 if (len < 0) {
1522 syslog(LOG_ERR, "net_link send failed; error:%d", len);
1523 exit(-1);
1524 }
1525 }
1526
1527}
This page took 0.195509 seconds and 5 git commands to generate.