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
|
/*********************************************************
* Copyright (C) 2006 VMware, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation version 2.1 and no later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*********************************************************/
#ifndef VM_PRODUCT_H
#define VM_PRODUCT_H
#define INCLUDE_ALLOW_USERLEVEL
#define INCLUDE_ALLOW_VMMEXT
#define INCLUDE_ALLOW_MODULE
#define INCLUDE_ALLOW_VMMON
#define INCLUDE_ALLOW_VMNIXMOD
#define INCLUDE_ALLOW_VMKERNEL
#define INCLUDE_ALLOW_VMCORE
#include "includeCheck.h"
/****
****
**** PLEASE use the various PRODUCT_* and *_NAME defines as though
**** they were variables -- do not embed them in format strings,
**** since they could contain a "%" sign or actually be a variable
**** someday.
****
****/
/*
* This name should be used when referring to the company
*/
#define COMPANY_NAME "VMware, Inc."
/*
* This generic name should be used when referring to any product of the
* VMware product line, like VMware Workstation, VMware Server, and so
* on...
*/
#define PRODUCT_GENERIC_NAME "VMware"
#define PRODUCT_GENERIC_NAME_UPPER "VMWARE"
#define PRODUCT_GENERIC_NAME_LOWER "vmware"
/*
* Brief names are used when the VMware prefix is not wanted.
*/
#define PRODUCT_SCALABLE_SERVER_BRIEF_NAME "ESX"
#define PRODUCT_WGS_BRIEF_NAME "Server"
#define PRODUCT_GSX_BRIEF_NAME "GSX Server"
#define PRODUCT_WORKSTATION_BRIEF_NAME "Workstation"
#define PRODUCT_WORKSTATION_ENTERPRISE_BRIEF_NAME \
PRODUCT_WORKSTATION_BRIEF_NAME " " "ACE Edition"
#define PRODUCT_PLAYER_BRIEF_NAME "Player"
#define PRODUCT_ACE_PLAYER_BRIEF_NAME "ACE " PRODUCT_PLAYER_BRIEF_NAME
#define PRODUCT_MAC_DESKTOP_BRIEF_NAME "Fusion"
#define PRODUCT_ACE_MANAGEMENT_SERVER_BRIEF_NAME "ACE Management Server"
/*
* Product names include the formal VMware prefix.
*/
#define MAKE_NAME(_brief) PRODUCT_GENERIC_NAME " " _brief
/*
* This name should be used when referring to VMware Tools
*/
#define VMWARE_TOOLS_SHORT_NAME MAKE_NAME("Tools")
#define PRODUCT_SCALABLE_SERVER_NAME MAKE_NAME(PRODUCT_SCALABLE_SERVER_BRIEF_NAME)
#define PRODUCT_ESX_SMP_NAME MAKE_NAME("Virtual SMP for ESX Server")
#define PRODUCT_WGS_NAME MAKE_NAME(PRODUCT_WGS_BRIEF_NAME)
#define PRODUCT_GSX_NAME MAKE_NAME(PRODUCT_GSX_BRIEF_NAME)
#define PRODUCT_GSX_SMP_NAME MAKE_NAME("Virtual SMP for GSX Server")
#define PRODUCT_WORKSTATION_NAME MAKE_NAME(PRODUCT_WORKSTATION_BRIEF_NAME)
#define PRODUCT_WORKSTATION_ENTERPRISE_NAME MAKE_NAME(PRODUCT_WORKSTATION_ENTERPRISE_BRIEF_NAME)
#define PRODUCT_MUI_NAME MAKE_NAME("Management Interface")
#define PRODUCT_CONSOLE_NAME MAKE_NAME("Server Console")
#define PRODUCT_PLAYER_NAME MAKE_NAME(PRODUCT_PLAYER_BRIEF_NAME)
#define PRODUCT_PLAYER_NAME_FOR_LICENSE PRODUCT_PLAYER_NAME
#define PRODUCT_ACE_PLAYER_NAME MAKE_NAME(PRODUCT_ACE_PLAYER_BRIEF_NAME)
#define PRODUCT_ACE_MANAGEMENT_SERVER_NAME MAKE_NAME(PRODUCT_ACE_MANAGEMENT_SERVER_BRIEF_NAME)
#define PRODUCT_VMLS_SHORT_NAME "VMLS"
#define PRODUCT_VMLS_NAME MAKE_NAME("License Server")
#define PRODUCT_VLICENSE_SHORT_NAME "VLICENSE"
#define PRODUCT_VLICENSE_NAME MAKE_NAME("License Infrastructure")
#define PRODUCT_P2V_SHORT_NAME "P2V"
#define PRODUCT_P2V_NAME MAKE_NAME("P2V Assistant")
#define PRODUCT_V2V_SHORT_NAME "V2V"
#define PRODUCT_V2V_NAME MAKE_NAME("Virtual Machine Importer")
#define PRODUCT_SYSIMAGE_SHORT_NAME "SysImage"
#define PRODUCT_SYSIMAGE_NAME MAKE_NAME("System Image Framework")
#define PRODUCT_VCB_SHORT_NAME "VCB"
#define PRODUCT_VCB_NAME MAKE_NAME("Consolidated Backup")
#define PRODUCT_API_SCRIPTING_COM_SHORT_NAME "VmCOM"
#define PRODUCT_API_SCRIPTING_PERL_SHORT_NAME "VmPerl"
#define PRODUCT_API_SCRIPTING_COM_NAME MAKE_NAME(PRODUCT_API_SCRIPTING_COM_SHORT_NAME " Scripting API")
#define PRODUCT_API_SCRIPTING_PERL_NAME MAKE_NAME(PRODUCT_API_SCRIPTING_PERL_SHORT_NAME " Scripting API")
#define PRODUCT_VPX_NAME MAKE_NAME("VirtualCenter")
#define PRODUCT_WBC_NAME MAKE_NAME("WebCenter")
#define PRODUCT_SDK_NAME MAKE_NAME("SDK")
#define PRODUCT_DDK_NAME MAKE_NAME("ESX DDK")
#define PRODUCT_VDM_SHORT_NAME "VDM"
#define PRODUCT_VDM_NAME MAKE_NAME("Virtual Desktop Manager")
#define PRODUCT_VDDK_SHORT_NAME "VDDK"
#define PRODUCT_VDDK_NAME MAKE_NAME("VMware Virtual Disk Development Kit")
#define PRODUCT_VDM_CLIENT_NAME MAKE_NAME("View Client")
#define PRODUCT_VDM_CLIENT_NAME_FOR_LICENSE PRODUCT_VDM_CLIENT_NAME
// XXX VMvisor is the underlying technology for possibly several products,
// XXX not the product. Fix when names are decided.
// #define PRODUCT_VMVISOR_NAME MAKE_NAME("VMvisor")
// XXX Only one product for now so just hardcode it.
#define PRODUCT_VMVISOR_NAME MAKE_NAME(PRODUCT_SCALABLE_SERVER_BRIEF_NAME "i")
/*
* VMware Remote Console (VMRC) version definitions
*/
#define PRODUCT_VMRC_SHORT_NAME "VMRC"
#define PRODUCT_VMRC_NAME MAKE_NAME("Remote Console")
#define PRODUCT_VMRC_PLUGIN_NAME PRODUCT_VMRC_NAME " Plug-in"
#define PRODUCT_VMRC_DESCRIPTION "Enables remote interaction with virtual machines."
#ifdef _WIN32
#define PRODUCT_VMRC_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "-vmrc.exe"
#else
#define PRODUCT_VMRC_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "-vmrc"
#endif
/*
* VMRC ActiveX CLSIDs and ProgIDs
*/
#define PRODUCT_VMRC_PLUGIN_GUID_WEB B94C2238-346E-4c5e-9B36-8CC627F35574
#define PRODUCT_VMRC_PLUGIN_GUID_WEB_TYPELIB 84D652E1-9364-4536-B13C-24F16FBEBCFE
#define PRODUCT_VMRC_PLUGIN_WEB_CLSID CLSID:##PRODUCT_VMRC_PLUGIN_GUID_WEB
#define PRODUCT_VMRC_PLUGIN_WEB_PROGID_BASE "VMware.web.VMwareRemoteConsole"
#define PRODUCT_VMRC_PLUGIN_WEB_PROGID PRODUCT_VMRC_PLUGIN_WEB_PROGID_BASE "." \
XSTR(VMRC_PLUGIN_VERSION_BASE)
#define PRODUCT_VMRC_PLUGIN_GUID B94C2248-346E-4C5E-9B36-8CC627F35574
#define PRODUCT_VMRC_PLUGIN_GUID_EMBEDDED B94C2249-346E-4C5E-9B36-8CC627F35574
#define PRODUCT_VMRC_PLUGIN_GUID_QUICKMKSAXCTL 338095E4-1806-4BA3-AB51-38A3179200E9
#define PRODUCT_VMRC_PLUGIN_GUID_TYPELIB A51B0CB2-1545-43AD-B66E-AD322009406C
#define PRODUCT_VMRC_PLUGIN_PROGID_BASE "VMware.hosted.VMwareRemoteConsole"
#define PRODUCT_VMRC_PLUGIN_PROGID PRODUCT_VMRC_PLUGIN_PROGID_BASE "." \
XSTR(VMRC_PLUGIN_VERSION_BASE)
#define PRODUCT_VMRC_PLUGIN_PROGID_EMBEDDED_BASE "VMware.hosted.VMwareEmbeddedRemoteConsole"
#define PRODUCT_VMRC_PLUGIN_PROGID_EMBEDDED PRODUCT_VMRC_PLUGIN_PROGID_EMBEDDED_BASE "." \
XSTR(VMRC_PLUGIN_VERSION_BASE)
/*
* VMRC MIME types
*/
#ifdef _WIN32
#define PRODUCT_VMRC_MIMETYPE_SEPARATOR "|"
#define PRODUCT_VMRC_MIMETYPE_TERMINATOR ""
#else
#define PRODUCT_VMRC_MIMETYPE_SEPARATOR "::" PRODUCT_VMRC_PLUGIN_NAME ";"
#define PRODUCT_VMRC_MIMETYPE_TERMINATOR "::" PRODUCT_VMRC_PLUGIN_NAME ";"
#endif
#define PRODUCT_VMRC_PLUGIN_CURRENT_MIMETYPE \
"application/x-vmware-vmrc;version=" VMRC_PLUGIN_VERSION
/*
* previously shipped plugin mimetypes (updated as we ship them)
*
* XXX It is important that the mimetypes be listed in strictly decreasing
* order by version. Server 2.0 Web Access (WBC) only checks the first VMRC
* mimetype for compatibility, and others might make the same mistake in
* the future.
*/
#define PRODUCT_VMRC_PLUGIN_PREVIOUS_MIMETYPES \
"application/x-vmware-vmrc;version=2.5.0.199067" PRODUCT_VMRC_MIMETYPE_SEPARATOR \
"application/x-vmware-vmrc;version=2.5.0.158248" PRODUCT_VMRC_MIMETYPE_SEPARATOR \
"application/x-vmware-vmrc;version=2.5.0.116460" PRODUCT_VMRC_MIMETYPE_SEPARATOR \
"application/x-vmware-vmrc;version=2.5.0.0"
/*
* legacy plugin mimetypes (currently unused but here for reference)
*/
#define PRODUCT_VMRC_PLUGIN_LEGACY_MIMETYPES \
"application/x-vmware-mks;version=2.1.0.0" PRODUCT_VMRC_MIMETYPE_SEPARATOR \
"application/x-vmware-mks;version=2.0.1.0" PRODUCT_VMRC_MIMETYPE_SEPARATOR \
"application/x-vmware-mks;version=2.0.0.0" PRODUCT_VMRC_MIMETYPE_SEPARATOR
/*
* All supported plugin mimetypes
*
* NB: See above for constraints on the ordering of this list.
*/
#define PRODUCT_VMRC_PLUGIN_MIMETYPES \
PRODUCT_VMRC_PLUGIN_CURRENT_MIMETYPE PRODUCT_VMRC_MIMETYPE_SEPARATOR \
PRODUCT_VMRC_PLUGIN_PREVIOUS_MIMETYPES PRODUCT_VMRC_MIMETYPE_TERMINATOR
/*
* TODO: This properly lives in productState, but we need it here to
* define DEFAULT_LIBDIRECTORY. If that can be moved to productState,
* it's no longer needed here.
*/
#define PRODUCT_MAC_DESKTOP_NAME MAKE_NAME(PRODUCT_MAC_DESKTOP_BRIEF_NAME)
#if !( defined(VMX86_SERVER) \
|| defined(VMX86_WGS) \
|| defined(VMX86_DESKTOP) \
|| defined(VMX86_ENTERPRISE_DESKTOP) \
|| defined(VMX86_MUI) \
|| defined(VMX86_API) \
|| defined(VMX86_VPX) \
|| defined(VMX86_WBC) \
|| defined(VMX86_SDK) \
|| defined(VMX86_TOOLS) \
|| defined(VMX86_V2V) \
|| defined(VMX86_SYSIMAGE) \
|| defined(VMX86_VCB) \
|| defined(VMX86_VMLS) \
|| defined(VMX86_VLICENSE) \
|| defined(VMX86_P2V) \
|| defined(VMX86_DDK) \
|| defined(VMX86_VDDK))
# if defined(_WIN32) || defined(__APPLE__)
/*
* XXX Make the product be Workstation by default if none of the defines
* XXX above are not defined in defs-globaldefs.mk -- Edward A. Waugh
*/
# define VMX86_DESKTOP
# else
# error Unknown product
# endif
#endif
#if defined(VMVISOR)
# define PRODUCT_SHORT_NAME PRODUCT_VMVISOR_NAME
#elif defined(VMX86_SERVER)
# define PRODUCT_SHORT_NAME PRODUCT_SCALABLE_SERVER_NAME
#elif defined(VMX86_WGS_MIGRATION)
# define PRODUCT_SHORT_NAME PRODUCT_WGS_MIGRATION_NAME
#elif defined(VMX86_WGS)
# if defined(VMX86_CONSOLE)
# define PRODUCT_SHORT_NAME PRODUCT_CONSOLE_NAME
# else
# define PRODUCT_SHORT_NAME PRODUCT_WGS_NAME
# endif
#elif defined(VMX86_MUI)
# define PRODUCT_SHORT_NAME PRODUCT_MUI_NAME
#elif defined(VMX86_ENTERPRISE_DESKTOP)
# define PRODUCT_SHORT_NAME PRODUCT_WORKSTATION_ENTERPRISE_NAME
#elif defined(VMX86_DESKTOP)
# if defined(__APPLE__)
# define PRODUCT_SHORT_NAME PRODUCT_MAC_DESKTOP_NAME
# else
# define PRODUCT_SHORT_NAME PRODUCT_WORKSTATION_NAME
# endif
#elif defined(VMX86_TOOLS)
# define PRODUCT_SHORT_NAME VMWARE_TOOLS_SHORT_NAME
#elif defined(VMX86_API)
# ifdef _WIN32
# define PRODUCT_SHORT_NAME PRODUCT_API_SCRIPTING_COM_NAME
# else
# define PRODUCT_SHORT_NAME PRODUCT_API_SCRIPTING_PERL_NAME
# endif
#elif defined(VMX86_VPX)
# define PRODUCT_SHORT_NAME PRODUCT_VPX_NAME
#elif defined(VMX86_WBC)
# define PRODUCT_SHORT_NAME PRODUCT_WBC_NAME
#elif defined(VMX86_SDK)
# define PRODUCT_SHORT_NAME PRODUCT_SDK_NAME
#elif defined(VMX86_P2V)
# define PRODUCT_SHORT_NAME PRODUCT_P2V_NAME
#elif defined(VMX86_V2V)
# define PRODUCT_SHORT_NAME PRODUCT_V2V_NAME
#elif defined(VMX86_SYSIMAGE)
# define PRODUCT_SHORT_NAME PRODUCT_SYSIMAGE_NAME
#elif defined(VMX86_VCB)
# define PRODUCT_SHORT_NAME PRODUCT_VCB_NAME
#elif defined(VMX86_VMLS)
# define PRODUCT_SHORT_NAME PRODUCT_VMLS_NAME
#elif defined(VMX86_VLICENSE)
# define PRODUCT_SHORT_NAME PRODUCT_VLICENSE_NAME
#elif defined(VMX86_DDK)
# define PRODUCT_SHORT_NAME PRODUCT_DDK_NAME
#elif defined(VMX86_VDDK)
# define PRODUCT_SHORT_NAME PRODUCT_VDDK_NAME
#endif
/*
* Names of programs
*/
#if defined(VMX86_CONSOLE)
#if defined(__linux__) || defined(__FreeBSD__)
#define VMWARE_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "-console"
#else
#define VMWARE_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "Console.exe"
#endif
#else
#define VMWARE_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER
#endif
#define VMWARE_VMX_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "-vmx"
#define CCAGENT_DISPLAY_NAME PRODUCT_VPX_NAME " Agent"
#if defined(__linux__) || defined(__FreeBSD__)
# define VMAUTHD_EXECUTABLE PRODUCT_GENERIC_NAME_LOWER "-authd"
#else
# define VMAUTHD_DISPLAY_NAME "VMware Authorization Service"
# define VMSERVERD_DISPLAY_NAME "VMware Registration Service"
# define VMNAT_DISPLAY_NAME "VMware NAT Service"
# define TOOLS_SERVICE_DISPLAY_NAME "VMware Tools Service"
# define TOOLS_SERVICE_NAME "VMTools"
# define VMAUTHD_SERVICE_NAME "VMAuthdService"
#endif
/*
* Configuration paths
*/
#ifndef _WIN32
# define PRODUCT_NAME PRODUCT_SHORT_NAME
/*
* Checked against the ProductID field of licenses. This ensures that
* a license intended for one flavor of the product will not allow
* another flavor of the product to run.
*/
# if defined(__APPLE__)
# define PRODUCT_OS "Mac OS"
# else
# define PRODUCT_OS "Linux"
# endif
/*
* Note: changing PRODUCT_NAME_FOR_LICENSE and PRODUCT_LICENSE_VERSION
* or macros it cleverly depends on (such as PRODUCT_NAME) requires a
* coordinated dormant license file change. Otherwise licensing for
* that product may break because the Licensecheck API is being passed
* a parameter that no longer match the content of the dormant license
* file.
*/
# if defined(VMX86_SERVER)
# define PRODUCT_NAME_FOR_LICENSE "VMware ESX Server"
# define PRODUCT_SMP_NAME_FOR_LICENSE PRODUCT_ESX_SMP_NAME
# elif defined(VMX86_DESKTOP)
# if defined(__APPLE__)
# define PRODUCT_NAME_FOR_LICENSE "VMware Fusion for Mac OS"
# else
# define PRODUCT_NAME_FOR_LICENSE "VMware Workstation"
# endif
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# elif defined(VMX86_WGS_MIGRATION)
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_NAME " for " PRODUCT_OS
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# elif defined(VMX86_WGS)
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_GSX_NAME " for " PRODUCT_OS
# define PRODUCT_SMP_NAME_FOR_LICENSE PRODUCT_GSX_SMP_NAME " for " PRODUCT_OS
# elif defined(VMX86_SYSIMAGE)
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_NAME
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# else /* It is a product that doesn't use a license */
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_NAME
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# endif
/* Default for the 'libdir' config variable */
/*
* The APIs are installed as separate products and must have their own
* configuration and library directories. The remote console checks at
* run time, and the MUI is not really a separate product.
*/
# if defined(__APPLE__)
# define VMWARE_HOST_DIRECTORY_PREFIX \
"/Library/Application Support/" PRODUCT_SHORT_NAME
# endif
# if defined(VMX86_API)
# if defined(__APPLE__)
# define VMWARE_HOST_DIRECTORY VMWARE_HOST_DIRECTORY_PREFIX " API"
# else
# define VMWARE_HOST_DIRECTORY "/etc/" PRODUCT_GENERIC_NAME_LOWER "-api"
# define DEFAULT_LIBDIRECTORY "/usr/lib/" PRODUCT_GENERIC_NAME_LOWER "-api"
# endif
# elif defined (VMX86_CONSOLE)
# if defined(__APPLE__)
# define VMWARE_HOST_DIRECTORY VMWARE_HOST_DIRECTORY_PREFIX " Console"
# else
# define VMWARE_HOST_DIRECTORY "/etc/" PRODUCT_GENERIC_NAME_LOWER "-console"
# define DEFAULT_LIBDIRECTORY "/usr/lib/" PRODUCT_GENERIC_NAME_LOWER "-console"
# endif
# else
# if defined(__APPLE__)
# define VMWARE_HOST_DIRECTORY VMWARE_HOST_DIRECTORY_PREFIX
# elif defined(__ACESC_LICENSE__)
/*
* This definition (__ACESC_LICENSE__) is used by the acesc licensing.
* The licensing API uses VMWARE_HOST_DIRECTORY definition to save the activated
* license (as well as searching).
* In our case, the ACESC will use this customized directory, instead of the common
* '/etc/vmware'.
* The main motivation for this is that the acesc configuration application is
* a web application (cgi app). Using the common directory, the apache process
* does not have enough permission to write into the directory (/etc/vmware).
* Instead of making the /etc/vmware writeable by everybody, we just create another
* subdirectory (/etc/vmware/acesc).
*/
# define VMWARE_HOST_DIRECTORY "/etc/vmware/acesc"
# define DEFAULT_LIBDIRECTORY "/usr/lib/" PRODUCT_GENERIC_NAME_LOWER
# else
# define VMWARE_HOST_DIRECTORY "/etc/" PRODUCT_GENERIC_NAME_LOWER
# define DEFAULT_LIBDIRECTORY "/usr/lib/" PRODUCT_GENERIC_NAME_LOWER
# endif
# endif
# if defined(__APPLE__)
/*
* Mac OS hosts don't distinguish between an /etc and /usr equivalent,
* so put both in DEFAULT_LIBDIRECTORY. Note: If there are filename
* clashes, we'll need to distinguish the two.
*/
# define DEFAULT_LIBDIRECTORY VMWARE_HOST_DIRECTORY
# endif
/* For host specific files */
# if defined(__APPLE__)
# define VMWARE_USER_SUBDIRECTORY "Library/Preferences/" PRODUCT_SHORT_NAME
# else
# define VMWARE_USER_SUBDIRECTORY "." PRODUCT_GENERIC_NAME_LOWER
# endif
/* For user specific files */
# define VMWARE_USER_DIRECTORY "~/" VMWARE_USER_SUBDIRECTORY
# define VMWARE_MODULE_NAME "/dev/vmmon"
# define VMWARE_CONFIG PRODUCT_GENERIC_NAME_LOWER "-config.pl"
# define VMWARE_CONNECT_SOCKET_DIRECTORY "/var/run/" PRODUCT_GENERIC_NAME_LOWER
#else
/* PRODUCT_SHORT_NAME and PRODUCT_FULL_NAME are used to display the name
depending on how much space we have */
# define PRODUCT_FULL_NAME PRODUCT_SHORT_NAME
# define PRODUCT_NAME PRODUCT_FULL_NAME
/* Directory name in the registry */
#define PRODUCT_REG_NAME PRODUCT_NAME
/*
* Checked against the ProductID field of licenses. This ensures that
* a license intended for one flavor of the product will not allow
* another flavor of the product to run.
*/
# if defined(VMX86_DESKTOP)
# if defined(__APPLE__)
# define PRODUCT_NAME_FOR_LICENSE "VMware Fusion for Mac OS"
# else
# define PRODUCT_NAME_FOR_LICENSE "VMware Workstation"
# endif
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# elif defined(VMX86_WGS_MIGRATION)
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_NAME " for Win32"
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# elif defined(VMX86_WGS)
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_GSX_NAME " for Win32"
# define PRODUCT_SMP_NAME_FOR_LICENSE PRODUCT_GSX_SMP_NAME " for Win32"
# else
# define PRODUCT_NAME_FOR_LICENSE PRODUCT_REG_NAME
# define PRODUCT_SMP_NAME_FOR_LICENSE "" // None
# endif
#define PRIVATE_REG_KEY "Private"
#endif
/*
* Used when referring to an unspecified member of the VMware product line
* ex. "This file was created by an incompatible version of PRODUCT_LINE_NAME"
*/
#define PRODUCT_LINE_NAME PRODUCT_GENERIC_NAME " software"
#define PRODUCT_REG_PATH "SOFTWARE\\" COMPANY_NAME "\\" PRODUCT_REG_NAME
#define PRIVATE_REG_PATH PRODUCT_REG_PATH "\\" PRIVATE_REG_KEY
/*
* Defines used primarily in Tools, but perhaps useful elsewhere. Only error
* on unrecognized platform during Tools builds. Note that NetWare must come
* before linux below since it uses the Linux gcc which automatically defines
* linux; the other platforms don't have this issue.
*/
#ifdef N_PLAT_NLM
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for NetWare"
#elif defined(linux)
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for Linux"
#elif defined(_WIN32)
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for Windows"
#elif defined(__FreeBSD__)
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for FreeBSD"
#elif defined(sun)
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for Solaris"
#elif defined(__APPLE__)
# define PRODUCT_NAME_PLATFORM PRODUCT_NAME " for Mac OS X"
#else
# ifdef VMX86_TOOLS
# error "Define a product string for this platform."
# endif
#endif
/*
* This is for ACE Management Server
* Since there is no separate product defined for Ace Mgmt Server
* (i.e. PRODUCT=xxx when running makefile), we can not used the
* generic PRODUCT_NAME_STRING_FOR_LICENSE definition.
* As a result, the specific ACE_MGMT_SERVER_PRODUCT_NAME_FOR_LICENSE
* is used instead.
* A similar reason is used also for the PRODUCT_VERSION_STRING_FOR_LICENSE
* definition in the vm_version.h
*/
#define ACE_MGMT_SERVER_PRODUCT_NAME_FOR_LICENSE "VMware ACE Management Server"
/*
* For Host Agent (hostd)
*/
#define HOST_AGENT_PRODUCT_NAME PRODUCT_NAME " Host Agent"
/* Used by bora/vim/lib/vmgina module.
* @todo Use this also in /bora/install/msi/InstUtil/desktop/vmInstUtil.cpp
* to guarantee that the service is installed with exactly this name.
*/
#define HOST_AGENT_SERVICE_NAME "VMwareHostd"
#endif /* VM_PRODUCT_H */
|