VirtualBox

Changeset 37375 in vbox for trunk/include/VBox/HostServices


Ignore:
Timestamp:
Jun 8, 2011 10:51:26 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
72150
Message:

GuestCtrl: Added APIs for guest directory enumeration, guest file existence and copy from guest support, some API renaming/cleanup (work in progress).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/HostServices/GuestControlSvc.h

    r36887 r37375  
    109109
    110110/**
    111  * Document me.
     111 * The guest control callback data header. Must come first
     112 * on each callback structure defined below this struct.
    112113 */
    113114typedef struct VBoxGuestCtrlCallbackHeader
     
    119120} CALLBACKHEADER;
    120121typedef CALLBACKHEADER *PCALLBACKHEADER;
     122
     123typedef struct VBoxGuestCtrlCallbackDataClientDisconnected
     124{
     125    /** Callback data header. */
     126    CALLBACKHEADER hdr;
     127} CALLBACKDATACLIENTDISCONNECTED;
     128typedef CALLBACKDATACLIENTDISCONNECTED *PCALLBACKDATACLIENTDISCONNECTED;
    121129
    122130/**
     
    173181typedef CALLBACKDATAEXECINSTATUS *PCALLBACKDATAEXECINSTATUS;
    174182
    175 typedef struct VBoxGuestCtrlCallbackDataClientDisconnected
     183typedef struct VBoxGuestCtrlCallbackDataDirOpen
    176184{
    177185    /** Callback data header. */
    178186    CALLBACKHEADER hdr;
    179 } CALLBACKDATACLIENTDISCONNECTED;
    180 typedef CALLBACKDATACLIENTDISCONNECTED *PCALLBACKDATACLIENTDISCONNECTED;
    181 
    182 enum
    183 {
    184     /** Magic number for sanity checking the CALLBACKDATACLIENTDISCONNECTED structure. */
    185     CALLBACKDATAMAGICCLIENTDISCONNECTED = 0x08041984,
    186     /** Magic number for sanity checking the CALLBACKDATAEXECSTATUS structure. */
    187     CALLBACKDATAMAGICEXECSTATUS = 0x26011982,
    188     /** Magic number for sanity checking the CALLBACKDATAEXECOUT structure. */
    189     CALLBACKDATAMAGICEXECOUT = 0x11061949,
    190     /** Magic number for sanity checking the CALLBACKDATAEXECIN structure. */
    191     CALLBACKDATAMAGICEXECINSTATUS = 0x19091951
     187    /** The native node id. */
     188    uint32_t u32Handle;
     189} CALLBACKDATADIROPEN;
     190typedef CALLBACKDATADIROPEN *PCALLBACKDATADIROPEN;
     191
     192typedef struct VBoxGuestCtrlCallbackDataDirRead
     193{
     194    /** Callback data header. */
     195    CALLBACKHEADER hdr;
     196    /** The native node id. */
     197    uint64_t u64NodeId;
     198    /** The entry name. */
     199    char *pszName;
     200    /** Size (in bytes) of entry name. */
     201    uint32_t cbName;
     202} CALLBACKDATADIRREAD;
     203typedef CALLBACKDATADIRREAD *PCALLBACKDATADIRREAD;
     204
     205enum eVBoxGuestCtrlCallbackDataMagic
     206{
     207    CALLBACKDATAMAGIC_CLIENT_DISCONNECTED = 0x08041984,
     208
     209    CALLBACKDATAMAGIC_EXEC_STATUS = 0x26011982,
     210    CALLBACKDATAMAGIC_EXEC_OUT = 0x11061949,
     211    CALLBACKDATAMAGIC_EXEC_IN_STATUS = 0x19091951,
     212
     213    CALLBACKDATAMAGIC_DIR_OPEN = 0x05031907,
     214    CALLBACKDATAMAGIC_DIR_READ = 0x02041932
    192215};
    193216
     
    195218{
    196219    VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN = 0,
     220
    197221    VBOXGUESTCTRLCALLBACKTYPE_EXEC_START = 1,
    198222    VBOXGUESTCTRLCALLBACKTYPE_EXEC_OUTPUT = 2,
    199     VBOXGUESTCTRLCALLBACKTYPE_EXEC_INPUT_STATUS = 3
     223    VBOXGUESTCTRLCALLBACKTYPE_EXEC_INPUT_STATUS = 3,
     224
     225    VBOXGUESTCTRLCALLBACKTYPE_DIR_OPEN = 100,
     226    VBOXGUESTCTRLCALLBACKTYPE_DIR_READ = 105
    200227};
    201228
     
    209236     */
    210237    HOST_CANCEL_PENDING_WAITS = 0,
     238
     239    /*
     240     * Execution handling.
     241     */
     242
    211243    /**
    212244     * The host wants to execute something in the guest. This can be a command line
     
    222254     * new data on stdout/stderr, process terminated etc.
    223255     */
    224     HOST_EXEC_GET_OUTPUT = 102
     256    HOST_EXEC_GET_OUTPUT = 102,
     257
     258    /*
     259     * Directory handling.
     260     */
     261
     262    /**
     263     * Opens a directory for reading.
     264     */
     265    HOST_DIR_OPEN = 200,
     266    /**
     267     * Closes a formerly opened directory.
     268     */
     269    HOST_DIR_CLOSE = 201,
     270    /**
     271     * Reads the next entry from an open directory.
     272     */
     273    HOST_DIR_READ = 202
    225274};
    226275
     
    247296     */
    248297    GUEST_DISCONNECTED = 3,
     298
     299    /*
     300     * Process execution.
     301     */
     302
    249303    /**
    250304     * Guests sends output from an executed process.
     
    258312     * Guests sends an input status notification to the host.
    259313     */
    260     GUEST_EXEC_SEND_INPUT_STATUS = 102
     314    GUEST_EXEC_SEND_INPUT_STATUS = 102,
     315
     316    /*
     317     * Directory handling.
     318     */
     319
     320    /**
     321     * Guest sends back the directory handle.
     322     */
     323    GUEST_DIR_SEND_OPEN = 200,
     324    /**
     325     * Guest sends back the next directory entry.
     326     */
     327    GUEST_DIR_SEND_READ = 202
    261328};
    262329
     
    401468} VBoxGuestCtrlHGCMMsgExecStatusIn;
    402469
     470/**
     471 * Closes a formerly openend guest directory.
     472 */
     473typedef struct VBoxGuestCtrlHGCMMsgDirClose
     474{
     475    VBoxGuestHGCMCallInfo hdr;
     476    /** Context ID. */
     477    HGCMFunctionParameter context;
     478    /** Directory handle to close. */
     479    HGCMFunctionParameter handle;
     480
     481} VBoxGuestCtrlHGCMMsgDirClose;
     482
     483/**
     484 * Opens a guest directory for reading.
     485 */
     486typedef struct VBoxGuestCtrlHGCMMsgDirOpen
     487{
     488    VBoxGuestHGCMCallInfo hdr;
     489    /** Context ID. */
     490    HGCMFunctionParameter context;
     491    /** Directory (path) to open. */
     492    HGCMFunctionParameter directory;
     493    /** Filter (DOS style wildcard). */
     494    HGCMFunctionParameter filter;
     495    /** Open flags. */
     496    HGCMFunctionParameter flags;
     497    /** The user name to run the executed command under. */
     498    HGCMFunctionParameter username;
     499    /** The user's password. */
     500    HGCMFunctionParameter password;
     501    /** OUT: Handle for opened directory. */
     502    HGCMFunctionParameter handle;
     503
     504} VBoxGuestCtrlHGCMMsgDirOpen;
     505
     506/**
     507 * Reads next entry of an open guest directory.
     508 */
     509typedef struct VBoxGuestCtrlHGCMMsgDirRead
     510{
     511    VBoxGuestHGCMCallInfo hdr;
     512    /** Context ID. */
     513    HGCMFunctionParameter context;
     514    /** Directory handle to read from. */
     515    HGCMFunctionParameter handle;
     516
     517} VBoxGuestCtrlHGCMMsgDirRead;
     518
    403519#pragma pack ()
    404520
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette