溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

通過VMCI實(shí)現(xiàn)VMware虛擬機(jī)與實(shí)體機(jī)、虛擬機(jī)與虛擬機(jī)的通信

發(fā)布時間:2020-08-06 10:00:05 來源:網(wǎng)絡(luò) 閱讀:1287 作者:watertoeast 欄目:編程語言

虛擬機(jī)交流接口VMCI(The Virtual Machine Communication Interface)是一個在一個或多個虛擬機(jī)與宿主機(jī)之間提供高速高效交流的基本組件(infrastructure)。

以前,VMware提供了VMCI SDK用于VMCI開發(fā),現(xiàn)在用VMCI套接字庫(VMCI Sockets library)代替了SDK。


下面給出根據(jù)VMCI Sockets library編寫的示例代碼:


// client.cpp : 定義控制臺應(yīng)用程序的入口點(diǎn)。

//

#include "stdafx.h"

#include <stdio.h>

#include <vmci_sockets.h>

#include <WinSock2.h>

#include <WS2tcpip.h>

#define BUFSIZE 4096

#pragma comment(lib"ws2_32")

int _tmain(int argc_TCHARargv[])

{

    WSADATA wsaData = { 0 };

    struct sockaddr_vm their_addr = { 0 };

    struct sockaddr_vm my_addr = { 0 };

    int err = WSAStartup(MAKEWORD(2, 2), &wsaData);

    if (err != 0) {

        printf("Could not register with Winsock DLL.\n");

        goto cleanup;

    }

    SOCKET sockfd = INVALID_SOCKET;

    int afVMCI = VMCISock_GetAFValue();

    if ((sockfd = socket(afVMCISOCK_STREAM, 0)) == -1) {

        printf("socket");

        goto exit;

    }

    their_addr.svm_family = afVMCI;

   // their_addr.svm_cid = VMCISock_GetLocalCID(); // 獲取本機(jī)的CID

    their_addr.svm_cid = 2; // 2是筆者在實(shí)體機(jī)上獲取的CID,讀者可自行調(diào)用VMCISock_GetLocalCID獲取指定機(jī)器的CID

    their_addr.svm_port = 12345;

    if ((connect(sockfd, (struct sockaddr *) &their_addrsizeof their_addr)) == -1) {

        printf("connect err %d\n"WSAGetLastError());

        goto close;

    }

    char send_buf[BUFSIZE];

    strcpy_s(send_bufBUFSIZE"hello\n");

    while (true)

    {

        int numbytes = 0;

        /* Initialize send_buf with your data. */

        if ((numbytes = send(sockfdsend_bufstrlen(send_buf), 0)) == -1) {

            printf("send err %d\n"WSAGetLastError());

            goto close;

        }

        printf("send %s\n"send_buf);

        Sleep(5 * 1000);

    }

close:

    closesocket(sockfd);

exit:

cleanup :

    WSACleanup();

    return 0;

}


// server.cpp : 定義控制臺應(yīng)用程序的入口點(diǎn)。

//

#include "stdafx.h"

#include <stdio.h>

#include <vmci_sockets.h>

#include <WinSock2.h>

#include <WS2tcpip.h>

#define BUFSIZE 4096

#pragma comment(lib"ws2_32")

int _tmain(int argc_TCHARargv[])

{

    WSADATA wsaData = { 0 };

    struct sockaddr_vm my_addr = { 0 };

    int err = WSAStartup(MAKEWORD(2, 2), &wsaData);

    if (err != 0) {

        printf("Could not register with Winsock DLL.\n");

        goto cleanup;

    }

    int afVMCI = VMCISock_GetAFValue();

    SOCKET sockfd = INVALID_SOCKET;

    if ((sockfd = socket(afVMCISOCK_STREAM, 0)) == -1) {

        perror("socket");

        goto cleanup;

    }

    my_addr.svm_family = afVMCI;

    my_addr.svm_cid = VMADDR_CID_ANY;

    my_addr.svm_port = 12345;

    if (bind(sockfd, (struct sockaddr *) &my_addrsizeof my_addr) == -1) {

        printf("bind");

        goto close;

    }

    if (listen(sockfd, 5) == -1) {

        perror("listen");

        goto close;

    }

    struct sockaddr_vm their_addr;

    socklen_t their_addr_len = sizeof their_addr;

    SOCKET newfd = INVALID_SOCKET;

    if ((newfd = accept(sockfd, (struct sockaddr *) &their_addr, &their_addr_len)) == -1) {

        printf("accept err %d\n"WSAGetLastError());

        goto close;

    }

    while (true)

    {

        char recv_buf[BUFSIZE];

        int numbytes = 0;

        if ((numbytes = recv(newfdrecv_bufsizeof recv_buf, 0)) == -1) {

            printf("recv err %d\n"WSAGetLastError());

            goto close;

        }

        recv_buf[numbytes] = '\0';

        printf(recv_buf);

        if ((numbytes = send(newfdrecv_bufnumbytes, 0)) == -1) {

            printf("send err %d\n"WSAGetLastError());

            goto close;

        }

    }

close:

    closesocket(sockfd);

    closesocket(newfd);

cleanup:

    WSACleanup();

    return 0;

}



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI