1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
|
/** @file
* Guest control service - Common header for host service and guest clients.
*/
/*
* Copyright (C) 2011-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifndef ___VBox_HostService_GuestControlService_h
#define ___VBox_HostService_GuestControlService_h
#include <VBox/types.h>
#include <VBox/VMMDev.h>
#include <VBox/VBoxGuest2.h>
#include <VBox/hgcmsvc.h>
#include <VBox/log.h>
#include <iprt/assert.h>
#include <iprt/string.h>
/* Everything defined in this file lives in this namespace. */
namespace guestControl {
/******************************************************************************
* Typedefs, constants and inlines *
******************************************************************************/
#define HGCMSERVICE_NAME "VBoxGuestControlSvc"
/** Maximum number of concurrent guest sessions a VM can have. */
#define VBOX_GUESTCTRL_MAX_SESSIONS 32
/** Maximum number of concurrent guest objects (processes, files, ...)
* a guest session can have. */
#define VBOX_GUESTCTRL_MAX_OBJECTS _2K
/** Maximum of callback contexts a guest process can have. */
#define VBOX_GUESTCTRL_MAX_CONTEXTS _64K
/** Base (start) of guest control session IDs. Session
* ID 0 is reserved for the root process which
* hosts all other guest session processes. */
#define VBOX_GUESTCTRL_SESSION_ID_BASE 1
/** Builds a context ID out of the session ID, object ID and an
* increasing count. */
#define VBOX_GUESTCTRL_CONTEXTID_MAKE(uSession, uObject, uCount) \
( (uint32_t)((uSession) & 0x1f) << 27 \
| (uint32_t)((uObject) & 0x7ff) << 16 \
| (uint32_t)((uCount) & 0xffff) \
)
/** Creates a context ID out of a session ID. */
#define VBOX_GUESTCTRL_CONTEXTID_MAKE_SESSION(uSession) \
((uint32_t)((uSession) & 0x1f) << 27)
/** Gets the session ID out of a context ID. */
#define VBOX_GUESTCTRL_CONTEXTID_GET_SESSION(uContextID) \
(((uContextID) >> 27) & 0x1f)
/** Gets the process ID out of a context ID. */
#define VBOX_GUESTCTRL_CONTEXTID_GET_OBJECT(uContextID) \
(((uContextID) >> 16) & 0x7ff)
/** Gets the context count of a process out of a context ID. */
#define VBOX_GUESTCTRL_CONTEXTID_GET_COUNT(uContextID) \
((uContextID) & 0xffff)
/** Filter context IDs by session. Can be used in conjunction
* with VbglR3GuestCtrlMsgFilterSet(). */
#define VBOX_GUESTCTRL_FILTER_BY_SESSION(uSession) \
(VBOX_GUESTCTRL_CONTEXTID_MAKE_SESSION(uSession) | 0xF8000000)
/**
* Process status when executed in the guest.
*/
enum eProcessStatus
{
/** Process is in an undefined state. */
PROC_STS_UNDEFINED = 0,
/** Process has been started. */
PROC_STS_STARTED = 1,
/** Process terminated normally. */
PROC_STS_TEN = 2,
/** Process terminated via signal. */
PROC_STS_TES = 3,
/** Process terminated abnormally. */
PROC_STS_TEA = 4,
/** Process timed out and was killed. */
PROC_STS_TOK = 5,
/** Process timed out and was not killed successfully. */
PROC_STS_TOA = 6,
/** Service/OS is stopping, process was killed. */
PROC_STS_DWN = 7,
/** Something went wrong (error code in flags). */
PROC_STS_ERROR = 8
};
/**
* Input flags, set by the host. This is needed for
* handling flags on the guest side.
* Note: Has to match Main's ProcessInputFlag_* flags!
*/
#define INPUT_FLAG_NONE 0x0
#define INPUT_FLAG_EOF RT_BIT(0)
/**
* Guest session creation flags.
* Only handled internally at the moment.
*/
#define SESSIONCREATIONFLAG_NONE 0x0
/**
* Guest directory removement flags.
* Essentially using what IPRT's RTDIRRMREC_F_
* defines have to offer.
*/
#define DIRREMOVE_FLAG_RECURSIVE RT_BIT(0)
/** Delete the content of the directory and the directory itself. */
#define DIRREMOVE_FLAG_CONTENT_AND_DIR RT_BIT(1)
/** Only delete the content of the directory, omit the directory it self. */
#define DIRREMOVE_FLAG_CONTENT_ONLY RT_BIT(2)
/** Mask of valid flags. */
#define DIRREMOVE_FLAG_VALID_MASK UINT32_C(0x00000003)
/**
* Guest process creation flags.
* Note: Has to match Main's ProcessCreateFlag_* flags!
*/
#define EXECUTEPROCESSFLAG_NONE 0x0
#define EXECUTEPROCESSFLAG_WAIT_START RT_BIT(0)
#define EXECUTEPROCESSFLAG_IGNORE_ORPHANED RT_BIT(1)
#define EXECUTEPROCESSFLAG_HIDDEN RT_BIT(2)
#define EXECUTEPROCESSFLAG_NO_PROFILE RT_BIT(3)
#define EXECUTEPROCESSFLAG_WAIT_STDOUT RT_BIT(4)
#define EXECUTEPROCESSFLAG_WAIT_STDERR RT_BIT(5)
#define EXECUTEPROCESSFLAG_EXPAND_ARGUMENTS RT_BIT(6)
/**
* Pipe handle IDs used internally for referencing to
* a certain pipe buffer.
*/
#define OUTPUT_HANDLE_ID_STDOUT_DEPRECATED 0 /* Needed for VBox hosts < 4.1.0. */
#define OUTPUT_HANDLE_ID_STDOUT 1
#define OUTPUT_HANDLE_ID_STDERR 2
/**
* Guest path rename flags.
* Essentially using what IPRT's RTPATHRENAME_FLAGS_
* defines have to offer.
*/
/** Do not replace anything. */
#define PATHRENAME_FLAG_NO_REPLACE UINT32_C(0)
/** This will replace attempt any target which isn't a directory. */
#define PATHRENAME_FLAG_REPLACE RT_BIT(0)
/** Don't allow symbolic links as part of the path. */
#define PATHRENAME_FLAG_NO_SYMLINKS RT_BIT(1)
/** Mask of valid flags. */
#define PATHRENAME_FLAG_VALID_MASK UINT32_C(0x00000002)
/**
* Defines for guest process array lengths.
*/
#define GUESTPROCESS_MAX_CMD_LEN _1K
#define GUESTPROCESS_MAX_ARGS_LEN _1K
#define GUESTPROCESS_MAX_ENV_LEN _64K
#define GUESTPROCESS_MAX_USER_LEN 128
#define GUESTPROCESS_MAX_PASSWORD_LEN 128
#define GUESTPROCESS_MAX_DOMAIN_LEN 256
/** @name Internal tools built into VBoxService which are used in order to
* accomplish tasks host<->guest.
* @{
*/
#define VBOXSERVICE_TOOL_CAT "vbox_cat"
#define VBOXSERVICE_TOOL_LS "vbox_ls"
#define VBOXSERVICE_TOOL_RM "vbox_rm"
#define VBOXSERVICE_TOOL_MKDIR "vbox_mkdir"
#define VBOXSERVICE_TOOL_MKTEMP "vbox_mktemp"
#define VBOXSERVICE_TOOL_STAT "vbox_stat"
/** @} */
/**
* Input status, reported by the client.
*/
enum eInputStatus
{
/** Input is in an undefined state. */
INPUT_STS_UNDEFINED = 0,
/** Input was written (partially, see cbProcessed). */
INPUT_STS_WRITTEN = 1,
/** Input failed with an error (see flags for rc). */
INPUT_STS_ERROR = 20,
/** Process has abandoned / terminated input handling. */
INPUT_STS_TERMINATED = 21,
/** Too much input data. */
INPUT_STS_OVERFLOW = 30
};
/**
* Structure keeping the context of a host callback.
*/
typedef struct VBoxGuestCtrlHostCbCtx
{
/** HGCM Function number. */
uint32_t uFunction;
/** The context ID. */
uint32_t uContextID;
/** Protocol version of this guest session. Might
* be 0 if not supported. */
uint32_t uProtocol;
} VBOXGUESTCTRLHOSTCBCTX, *PVBOXGUESTCTRLHOSTCBCTX;
/**
* Structure for low level HGCM host callback from
* the guest. No deep copy. */
typedef struct VBoxGuestCtrlHostCallback
{
VBoxGuestCtrlHostCallback(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
: mParms(cParms), mpaParms(paParms) { }
/** Number of HGCM parameters. */
uint32_t mParms;
/** Actual HGCM parameters. */
PVBOXHGCMSVCPARM mpaParms;
} VBOXGUESTCTRLHOSTCALLBACK, *PVBOXGUESTCTRLHOSTCALLBACK;
/**
* The service functions which are callable by host.
*/
enum eHostFn
{
/**
* The host asks the client to cancel all pending waits and exit.
*/
HOST_CANCEL_PENDING_WAITS = 0,
/**
* The host wants to create a guest session.
*/
HOST_SESSION_CREATE = 20,
/**
* The host wants to close a guest session.
*/
HOST_SESSION_CLOSE = 21,
/**
* The host wants to execute something in the guest. This can be a command line
* or starting a program.
** Note: Legacy (VBox < 4.3) command.
*/
HOST_EXEC_CMD = 100,
/**
* Sends input data for stdin to a running process executed by HOST_EXEC_CMD.
** Note: Legacy (VBox < 4.3) command.
*/
HOST_EXEC_SET_INPUT = 101,
/**
* Gets the current status of a running process, e.g.
* new data on stdout/stderr, process terminated etc.
** Note: Legacy (VBox < 4.3) command.
*/
HOST_EXEC_GET_OUTPUT = 102,
/**
* Terminates a running guest process.
*/
HOST_EXEC_TERMINATE = 110,
/**
* Waits for a certain event to happen. This can be an input, output
* or status event.
*/
HOST_EXEC_WAIT_FOR = 120,
/**
* Opens a guest file.
*/
HOST_FILE_OPEN = 240,
/**
* Closes a guest file.
*/
HOST_FILE_CLOSE = 241,
/**
* Reads from an opened guest file.
*/
HOST_FILE_READ = 250,
/**
* Reads from an opened guest file at
* a specified offset.
*/
HOST_FILE_READ_AT = 251,
/**
* Write to an opened guest file.
*/
HOST_FILE_WRITE = 260,
/**
* Write to an opened guest file at
* a specified offset.
*/
HOST_FILE_WRITE_AT = 261,
/**
* Changes the read & write position of an opened guest file.
*/
HOST_FILE_SEEK = 270,
/**
* Gets the current file position of an opened guest file.
*/
HOST_FILE_TELL = 271,
/**
* Removes a directory on the guest.
*/
HOST_DIR_REMOVE = 320,
/**
* Renames a path on the guest.
*/
HOST_PATH_RENAME = 330
};
/**
* The service functions which are called by guest. The numbers may not change,
* so we hardcode them.
*/
enum eGuestFn
{
/**
* Guest waits for a new message the host wants to process on the guest side.
* This is a blocking call and can be deferred.
*/
GUEST_MSG_WAIT = 1,
/**
* Guest asks the host to cancel all pending waits the guest itself waits on.
* This becomes necessary when the guest wants to quit but still waits for
* commands from the host.
*/
GUEST_CANCEL_PENDING_WAITS = 2,
/**
* Guest disconnected (terminated normally or due to a crash HGCM
* detected when calling service::clientDisconnect().
*/
GUEST_DISCONNECTED = 3,
/**
* Sets a message filter to only get messages which have a certain
* context ID scheme (that is, a specific session, object etc).
* Since VBox 4.3+.
*/
GUEST_MSG_FILTER_SET = 4,
/**
* Unsets (and resets) a previously set message filter.
*/
GUEST_MSG_FILTER_UNSET = 5,
/**
* Skips the current assigned message returned by GUEST_MSG_WAIT.
* Needed for telling the host service to not keep stale
* host commands in the queue.
*/
GUEST_MSG_SKIP = 10,
/**
* General reply to a host message. Only contains basic data
* along with a simple payload.
*/
GUEST_MSG_REPLY = 11,
/**
* General message for updating a pending progress for
* a long task.
*/
GUEST_MSG_PROGRESS_UPDATE = 12,
/**
* Guest reports back a guest session status.
*/
GUEST_SESSION_NOTIFY = 20,
/**
* Guest wants to close a specific guest session.
*/
GUEST_SESSION_CLOSE = 21,
/**
* Guests sends output from an executed process.
*/
GUEST_EXEC_OUTPUT = 100,
/**
* Guest sends a status update of an executed process to the host.
*/
GUEST_EXEC_STATUS = 101,
/**
* Guests sends an input status notification to the host.
*/
GUEST_EXEC_INPUT_STATUS = 102,
/**
* Guest notifies the host about some I/O event. This can be
* a stdout, stderr or a stdin event. The actual event only tells
* how many data is available / can be sent without actually
* transmitting the data.
*/
GUEST_EXEC_IO_NOTIFY = 210,
/**
* Guest notifies the host about some directory event.
*/
GUEST_DIR_NOTIFY = 230,
/**
* Guest notifies the host about some file event.
*/
GUEST_FILE_NOTIFY = 240
};
/**
* Guest session notification types.
* @sa HGCMMsgSessionNotify.
*/
enum GUEST_SESSION_NOTIFYTYPE
{
GUEST_SESSION_NOTIFYTYPE_UNDEFINED = 0,
/** Something went wrong (see rc). */
GUEST_SESSION_NOTIFYTYPE_ERROR = 1,
/** Guest session has been started. */
GUEST_SESSION_NOTIFYTYPE_STARTED = 11,
/** Guest session terminated normally. */
GUEST_SESSION_NOTIFYTYPE_TEN = 20,
/** Guest session terminated via signal. */
GUEST_SESSION_NOTIFYTYPE_TES = 30,
/** Guest session terminated abnormally. */
GUEST_SESSION_NOTIFYTYPE_TEA = 40,
/** Guest session timed out and was killed. */
GUEST_SESSION_NOTIFYTYPE_TOK = 50,
/** Guest session timed out and was not killed successfully. */
GUEST_SESSION_NOTIFYTYPE_TOA = 60,
/** Service/OS is stopping, process was killed. */
GUEST_SESSION_NOTIFYTYPE_DWN = 150
};
/**
* Guest directory notification types.
* @sa HGCMMsgDirNotify.
*/
enum GUEST_DIR_NOTIFYTYPE
{
GUEST_DIR_NOTIFYTYPE_UNKNOWN = 0,
/** Something went wrong (see rc). */
GUEST_DIR_NOTIFYTYPE_ERROR = 1,
/** Guest directory opened. */
GUEST_DIR_NOTIFYTYPE_OPEN = 10,
/** Guest directory closed. */
GUEST_DIR_NOTIFYTYPE_CLOSE = 20,
/** Information about an open guest directory. */
GUEST_DIR_NOTIFYTYPE_INFO = 40,
/** Guest directory created. */
GUEST_DIR_NOTIFYTYPE_CREATE = 70,
/** Guest directory deleted. */
GUEST_DIR_NOTIFYTYPE_REMOVE = 80
};
/**
* Guest file notification types.
* @sa HGCMMsgFileNotify.
*/
enum GUEST_FILE_NOTIFYTYPE
{
GUEST_FILE_NOTIFYTYPE_UNKNOWN = 0,
GUEST_FILE_NOTIFYTYPE_ERROR = 1,
GUEST_FILE_NOTIFYTYPE_OPEN = 10,
GUEST_FILE_NOTIFYTYPE_CLOSE = 20,
GUEST_FILE_NOTIFYTYPE_READ = 30,
GUEST_FILE_NOTIFYTYPE_WRITE = 40,
GUEST_FILE_NOTIFYTYPE_SEEK = 50,
GUEST_FILE_NOTIFYTYPE_TELL = 60
};
/**
* Guest file seeking types. Has to
* match FileSeekType in Main.
*/
enum GUEST_FILE_SEEKTYPE
{
GUEST_FILE_SEEKTYPE_BEGIN = 1,
GUEST_FILE_SEEKTYPE_CURRENT = 4,
GUEST_FILE_SEEKTYPE_END = 8
};
/*
* HGCM parameter structures.
*/
#pragma pack (1)
/**
* Waits for a host command to arrive. The structure then contains the
* actual message type + required number of parameters needed to successfully
* retrieve that host command (in a next round).
*/
typedef struct HGCMMsgCmdWaitFor
{
VBoxGuestHGCMCallInfo hdr;
/**
* The returned command the host wants to
* run on the guest.
*/
HGCMFunctionParameter msg; /* OUT uint32_t */
/** Number of parameters the message needs. */
HGCMFunctionParameter num_parms; /* OUT uint32_t */
} HGCMMsgCmdWaitFor;
/**
* Asks the guest control host service to set a command
* filter for this client. This filter will then only
* deliver messages to the client which match the
* wanted context ID (ranges).
*/
typedef struct HGCMMsgCmdFilterSet
{
VBoxGuestHGCMCallInfo hdr;
/** Value to filter for after filter mask
* was applied. */
HGCMFunctionParameter value; /* IN uint32_t */
/** Mask to add to the current set filter. */
HGCMFunctionParameter mask_add; /* IN uint32_t */
/** Mask to remove from the current set filter. */
HGCMFunctionParameter mask_remove; /* IN uint32_t */
/** Filter flags; currently unused. */
HGCMFunctionParameter flags; /* IN uint32_t */
} HGCMMsgCmdFilterSet;
/**
* Asks the guest control host service to disable
* a previously set message filter again.
*/
typedef struct HGCMMsgCmdFilterUnset
{
VBoxGuestHGCMCallInfo hdr;
/** Unset flags; currently unused. */
HGCMFunctionParameter flags; /* IN uint32_t */
} HGCMMsgCmdFilterUnset;
/**
* Asks the guest control host service to skip the
* currently assigned host command returned by
* VbglR3GuestCtrlMsgWaitFor().
*/
typedef struct HGCMMsgCmdSkip
{
VBoxGuestHGCMCallInfo hdr;
/** Skip flags; currently unused. */
HGCMFunctionParameter flags; /* IN uint32_t */
} HGCMMsgCmdSkip;
/**
* Asks the guest control host service to cancel all pending (outstanding)
* waits which were not processed yet. This is handy for a graceful shutdown.
*/
typedef struct HGCMMsgCancelPendingWaits
{
VBoxGuestHGCMCallInfo hdr;
} HGCMMsgCancelPendingWaits;
typedef struct HGCMMsgCmdReply
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** Message type. */
HGCMFunctionParameter type;
/** IPRT result of overall operation. */
HGCMFunctionParameter rc;
/** Optional payload to this reply. */
HGCMFunctionParameter payload;
} HGCMMsgCmdReply;
/**
* Creates a guest session.
*/
typedef struct HGCMMsgSessionOpen
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The guest control protocol version this
* session is about to use. */
HGCMFunctionParameter protocol;
/** The user name to run the guest session under. */
HGCMFunctionParameter username;
/** The user's password. */
HGCMFunctionParameter password;
/** The domain to run the guest session under. */
HGCMFunctionParameter domain;
/** Session creation flags. */
HGCMFunctionParameter flags;
} HGCMMsgSessionOpen;
/**
* Terminates (closes) a guest session.
*/
typedef struct HGCMMsgSessionClose
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** Session termination flags. */
HGCMFunctionParameter flags;
} HGCMMsgSessionClose;
/**
* Reports back a guest session's status.
*/
typedef struct HGCMMsgSessionNotify
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** Notification type. */
HGCMFunctionParameter type;
/** Notification result. */
HGCMFunctionParameter result;
} HGCMMsgSessionNotify;
typedef struct HGCMMsgPathRename
{
VBoxGuestHGCMCallInfo hdr;
/** UInt32: Context ID. */
HGCMFunctionParameter context;
/** Source to rename. */
HGCMFunctionParameter source;
/** Destination to rename source to. */
HGCMFunctionParameter dest;
/** UInt32: Rename flags. */
HGCMFunctionParameter flags;
} HGCMMsgPathRename;
/**
* Executes a command inside the guest.
*/
typedef struct HGCMMsgProcExec
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The command to execute on the guest. */
HGCMFunctionParameter cmd;
/** Execution flags (see IGuest::ProcessCreateFlag_*). */
HGCMFunctionParameter flags;
/** Number of arguments. */
HGCMFunctionParameter num_args;
/** The actual arguments. */
HGCMFunctionParameter args;
/** Number of environment value pairs. */
HGCMFunctionParameter num_env;
/** Size (in bytes) of environment block, including terminating zeros. */
HGCMFunctionParameter cb_env;
/** The actual environment block. */
HGCMFunctionParameter env;
union
{
struct
{
/** The user name to run the executed command under.
* Only for VBox < 4.3 hosts. */
HGCMFunctionParameter username;
/** The user's password.
* Only for VBox < 4.3 hosts. */
HGCMFunctionParameter password;
/** Timeout (in msec) which either specifies the
* overall lifetime of the process or how long it
* can take to bring the process up and running -
* (depends on the IGuest::ProcessCreateFlag_*). */
HGCMFunctionParameter timeout;
} v1;
struct
{
/** Timeout (in ms) which either specifies the
* overall lifetime of the process or how long it
* can take to bring the process up and running -
* (depends on the IGuest::ProcessCreateFlag_*). */
HGCMFunctionParameter timeout;
/** Process priority. */
HGCMFunctionParameter priority;
/** Number of process affinity blocks. */
HGCMFunctionParameter num_affinity;
/** Pointer to process affinity blocks (uint64_t). */
HGCMFunctionParameter affinity;
} v2;
} u;
} HGCMMsgProcExec;
/**
* Sends input to a guest process via stdin.
*/
typedef struct HGCMMsgProcInput
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID) to send the input to. */
HGCMFunctionParameter pid;
/** Input flags (see IGuest::ProcessInputFlag_*). */
HGCMFunctionParameter flags;
/** Data buffer. */
HGCMFunctionParameter data;
/** Actual size of data (in bytes). */
HGCMFunctionParameter size;
} HGCMMsgProcInput;
/**
* Retrieves ouptut from a previously executed process
* from stdout/stderr.
*/
typedef struct HGCMMsgProcOutput
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID). */
HGCMFunctionParameter pid;
/** The pipe handle ID (stdout/stderr). */
HGCMFunctionParameter handle;
/** Optional flags. */
HGCMFunctionParameter flags;
/** Data buffer. */
HGCMFunctionParameter data;
} HGCMMsgProcOutput;
/**
* Reports the current status of a guest process.
*/
typedef struct HGCMMsgProcStatus
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID). */
HGCMFunctionParameter pid;
/** The process status. */
HGCMFunctionParameter status;
/** Optional flags (based on status). */
HGCMFunctionParameter flags;
/** Optional data buffer (not used atm). */
HGCMFunctionParameter data;
} HGCMMsgProcStatus;
/**
* Reports back the status of data written to a process.
*/
typedef struct HGCMMsgProcStatusInput
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID). */
HGCMFunctionParameter pid;
/** Status of the operation. */
HGCMFunctionParameter status;
/** Optional flags. */
HGCMFunctionParameter flags;
/** Data written. */
HGCMFunctionParameter written;
} HGCMMsgProcStatusInput;
/*
* Guest control 2.0 messages.
*/
/**
* Terminates a guest process.
*/
typedef struct HGCMMsgProcTerminate
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID). */
HGCMFunctionParameter pid;
} HGCMMsgProcTerminate;
/**
* Waits for certain events to happen.
*/
typedef struct HGCMMsgProcWaitFor
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** The process ID (PID). */
HGCMFunctionParameter pid;
/** Wait (event) flags. */
HGCMFunctionParameter flags;
/** Timeout (in ms). */
HGCMFunctionParameter timeout;
} HGCMMsgProcWaitFor;
typedef struct HGCMMsgDirRemove
{
VBoxGuestHGCMCallInfo hdr;
/** UInt32: Context ID. */
HGCMFunctionParameter context;
/** Directory to remove. */
HGCMFunctionParameter path;
/** UInt32: Removement flags. */
HGCMFunctionParameter flags;
} HGCMMsgDirRemove;
/**
* Opens a guest file.
*/
typedef struct HGCMMsgFileOpen
{
VBoxGuestHGCMCallInfo hdr;
/** UInt32: Context ID. */
HGCMFunctionParameter context;
/** File to open. */
HGCMFunctionParameter filename;
/** Open mode. */
HGCMFunctionParameter openmode;
/** Disposition mode. */
HGCMFunctionParameter disposition;
/** Sharing mode. */
HGCMFunctionParameter sharing;
/** UInt32: Creation mode. */
HGCMFunctionParameter creationmode;
/** UInt64: Initial offset. */
HGCMFunctionParameter offset;
} HGCMMsgFileOpen;
/**
* Closes a guest file.
*/
typedef struct HGCMMsgFileClose
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to close. */
HGCMFunctionParameter handle;
} HGCMMsgFileClose;
/**
* Reads from a guest file.
*/
typedef struct HGCMMsgFileRead
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to read from. */
HGCMFunctionParameter handle;
/** Size (in bytes) to read. */
HGCMFunctionParameter size;
} HGCMMsgFileRead;
/**
* Reads at a specified offset from a guest file.
*/
typedef struct HGCMMsgFileReadAt
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to read from. */
HGCMFunctionParameter handle;
/** Offset where to start reading from. */
HGCMFunctionParameter offset;
/** Actual size of data (in bytes). */
HGCMFunctionParameter size;
} HGCMMsgFileReadAt;
/**
* Writes to a guest file.
*/
typedef struct HGCMMsgFileWrite
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to write to. */
HGCMFunctionParameter handle;
/** Actual size of data (in bytes). */
HGCMFunctionParameter size;
/** Data buffer to write to the file. */
HGCMFunctionParameter data;
} HGCMMsgFileWrite;
/**
* Writes at a specified offset to a guest file.
*/
typedef struct HGCMMsgFileWriteAt
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to write to. */
HGCMFunctionParameter handle;
/** Offset where to start reading from. */
HGCMFunctionParameter offset;
/** Actual size of data (in bytes). */
HGCMFunctionParameter size;
/** Data buffer to write to the file. */
HGCMFunctionParameter data;
} HGCMMsgFileWriteAt;
/**
* Seeks the read/write position of a guest file.
*/
typedef struct HGCMMsgFileSeek
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to seek. */
HGCMFunctionParameter handle;
/** The seeking method. */
HGCMFunctionParameter method;
/** The seeking offset. */
HGCMFunctionParameter offset;
} HGCMMsgFileSeek;
/**
* Tells the current read/write position of a guest file.
*/
typedef struct HGCMMsgFileTell
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** File handle to get the current position for. */
HGCMFunctionParameter handle;
} HGCMMsgFileTell;
/******************************************************************************
* HGCM replies from the guest. These are handled in Main's low-level HGCM *
* callbacks and dispatched to the appropriate guest object. *
******************************************************************************/
typedef struct HGCMReplyFileNotify
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** Notification type. */
HGCMFunctionParameter type;
/** IPRT result of overall operation. */
HGCMFunctionParameter rc;
union
{
struct
{
/** Guest file handle. */
HGCMFunctionParameter handle;
} open;
/** Note: Close does not have any additional data (yet). */
struct
{
/** Actual data read (if any). */
HGCMFunctionParameter data;
} read;
struct
{
/** How much data (in bytes) have been successfully written. */
HGCMFunctionParameter written;
} write;
struct
{
HGCMFunctionParameter offset;
} seek;
struct
{
HGCMFunctionParameter offset;
} tell;
} u;
} HGCMReplyFileNotify;
typedef struct HGCMReplyDirNotify
{
VBoxGuestHGCMCallInfo hdr;
/** Context ID. */
HGCMFunctionParameter context;
/** Notification type. */
HGCMFunctionParameter type;
/** IPRT result of overall operation. */
HGCMFunctionParameter rc;
union
{
struct
{
/** Directory information. */
HGCMFunctionParameter objInfo;
} info;
struct
{
/** Guest directory handle. */
HGCMFunctionParameter handle;
} open;
struct
{
/** Current read directory entry. */
HGCMFunctionParameter entry;
/** Extended entry object information. Optional. */
HGCMFunctionParameter objInfo;
} read;
} u;
} HGCMReplyDirNotify;
#pragma pack ()
/******************************************************************************
* Callback data structures. *
******************************************************************************/
/**
* The guest control callback data header. Must come first
* on each callback structure defined below this struct.
*/
typedef struct CALLBACKDATA_HEADER
{
/** Context ID to identify callback data. This is
* and *must* be the very first parameter in this
* structure to still be backwards compatible. */
uint32_t uContextID;
} CALLBACKDATA_HEADER, *PCALLBACKDATA_HEADER;
/*
* These structures make up the actual low level HGCM callback data sent from
* the guest back to the host.
*/
typedef struct CALLBACKDATA_CLIENT_DISCONNECTED
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
} CALLBACKDATA_CLIENT_DISCONNECTED, *PCALLBACKDATA_CLIENT_DISCONNECTED;
typedef struct CALLBACKDATA_MSG_REPLY
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** Notification type. */
uint32_t uType;
/** Notification result. Note: int vs. uint32! */
uint32_t rc;
/** Pointer to optional payload. */
void *pvPayload;
/** Payload size (in bytes). */
uint32_t cbPayload;
} CALLBACKDATA_MSG_REPLY, *PCALLBACKDATA_MSG_REPLY;
typedef struct CALLBACKDATA_SESSION_NOTIFY
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** Notification type. */
uint32_t uType;
/** Notification result. Note: int vs. uint32! */
uint32_t uResult;
} CALLBACKDATA_SESSION_NOTIFY, *PCALLBACKDATA_SESSION_NOTIFY;
typedef struct CALLBACKDATA_PROC_STATUS
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** The process ID (PID). */
uint32_t uPID;
/** The process status. */
uint32_t uStatus;
/** Optional flags, varies, based on u32Status. */
uint32_t uFlags;
/** Optional data buffer (not used atm). */
void *pvData;
/** Size of optional data buffer (not used atm). */
uint32_t cbData;
} CALLBACKDATA_PROC_STATUS, *PCALLBACKDATA_PROC_STATUS;
typedef struct CALLBACKDATA_PROC_OUTPUT
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** The process ID (PID). */
uint32_t uPID;
/** The handle ID (stdout/stderr). */
uint32_t uHandle;
/** Optional flags (not used atm). */
uint32_t uFlags;
/** Optional data buffer. */
void *pvData;
/** Size (in bytes) of optional data buffer. */
uint32_t cbData;
} CALLBACKDATA_PROC_OUTPUT, *PCALLBACKDATA_PROC_OUTPUT;
typedef struct CALLBACKDATA_PROC_INPUT
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** The process ID (PID). */
uint32_t uPID;
/** Current input status. */
uint32_t uStatus;
/** Optional flags. */
uint32_t uFlags;
/** Size (in bytes) of processed input data. */
uint32_t uProcessed;
} CALLBACKDATA_PROC_INPUT, *PCALLBACKDATA_PROC_INPUT;
/**
* General guest directory notification callback.
*/
typedef struct CALLBACKDATA_DIR_NOTIFY
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** Notification type. */
uint32_t uType;
/** IPRT result of overall operation. */
uint32_t rc;
union
{
struct
{
/** Size (in bytes) of directory information. */
uint32_t cbObjInfo;
/** Pointer to directory information. */
void *pvObjInfo;
} info;
struct
{
/** Guest directory handle. */
uint32_t uHandle;
} open;
/** Note: Close does not have any additional data (yet). */
struct
{
/** Size (in bytes) of directory entry information. */
uint32_t cbEntry;
/** Pointer to directory entry information. */
void *pvEntry;
/** Size (in bytes) of directory entry object information. */
uint32_t cbObjInfo;
/** Pointer to directory entry object information. */
void *pvObjInfo;
} read;
} u;
} CALLBACKDATA_DIR_NOTIFY, *PCALLBACKDATA_DIR_NOTIFY;
/**
* General guest file notification callback.
*/
typedef struct CALLBACKDATA_FILE_NOTIFY
{
/** Callback data header. */
CALLBACKDATA_HEADER hdr;
/** Notification type. */
uint32_t uType;
/** IPRT result of overall operation. */
uint32_t rc;
union
{
struct
{
/** Guest file handle. */
uint32_t uHandle;
} open;
/** Note: Close does not have any additional data (yet). */
struct
{
/** How much data (in bytes) have been read. */
uint32_t cbData;
/** Actual data read (if any). */
void *pvData;
} read;
struct
{
/** How much data (in bytes) have been successfully written. */
uint32_t cbWritten;
} write;
struct
{
/** New file offset after successful seek. */
uint64_t uOffActual;
} seek;
struct
{
/** New file offset after successful tell. */
uint64_t uOffActual;
} tell;
} u;
} CALLBACKDATA_FILE_NOTIFY, *PCALLBACKDATA_FILE_NOTIFY;
} /* namespace guestControl */
#endif /* !___VBox_HostService_GuestControlService_h */
|