]> git.ipfire.org Git - thirdparty/open-vm-tools.git/log
thirdparty/open-vm-tools.git
8 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 30 Sep 2025 06:03:43 +0000 (23:03 -0700)] 
Change to common source files not applicable to open-vm-tools.

8 months agoUse different command to reboot linux VM, depending on the init system type
Kruti Pendharkar [Tue, 30 Sep 2025 06:03:43 +0000 (23:03 -0700)] 
Use different command to reboot linux VM, depending on the init system type

We currently use the "telinit 6" command to reboot linux VMs.
However, the "telinit" command will be unavailable in the future as SysVinit
will be deprecated on some modern linux systems.

For example: In SUSE, "telinit" command is part of systemd-sysvcompat
(15 SP6 and newer) or systemd-sysvinit (older than 15 SP6), whereas in some
SUSE images or templates such as SUSE minimal VM has no such packages installed.
See SUSE KB: https://www.suse.com/support/kb/doc/?id=000021564

This change detects the init system of a linux and uses different command
to trigger reboot. If the modern init system, systemd, is available, then
"systemctl reboot" command will be used to trigger reboot. Otherwise, continue
using "telinit 6" command as SysVinit, the traditional init system, is still
available.

8 months agoSet the tools version for open-vm-tools 13.0.5 release
Kruti Pendharkar [Tue, 30 Sep 2025 06:03:43 +0000 (23:03 -0700)] 
Set the tools version for open-vm-tools 13.0.5 release

8 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 30 Sep 2025 06:03:43 +0000 (23:03 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoUpdate ChangeLog with the granular push of Aug 5, 2025.
Kruti Pendharkar [Wed, 6 Aug 2025 18:15:18 +0000 (11:15 -0700)] 
Update ChangeLog with the granular push of Aug 5, 2025.
- plus ChangeLog update of Jul 22, 2025.
- Capitalise "rights reserved" in copyright header.

10 months agoCapitalise "rights reserved" in copyright header.
Kruti Pendharkar [Wed, 6 Aug 2025 07:00:16 +0000 (00:00 -0700)] 
Capitalise "rights reserved" in copyright header.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoCoverity issues fixed.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Coverity issues fixed.

The change is about the handling of the **result parameter in the wrapper
functions. (UsercheckRetryGetpwnam_r and UsercheckRetryGetpwuid_r)

Issues:
o Dereference after null check (FORWARD_NULL)
  var_deref_model: Passing null pointer result to getpwuid_r, or
  getpwnam_r which dereferences it.

o Dereference before null check (REVERSE_INULL)
  check_after_deref: Null-checking result suggests that it may be
  null, but it has already been dereferenced on all paths leading to the
  check

Add null check for 'result' before dereferencing

The current caller will not have this issue.
We could silence the issue, but we should add an assert for development
and return error 'EINVAL' when '**result' parameter is NULL.

Update caller functions to return VGAUTH_E_INVALID_ARGUMENT when return code
is EINVAL.

The condition used validates that 'result' is NULL while it should
validate '*result' is NULL.
This needs to be fixed; replace "!result" with "*result == NULL" to be
explicit or "!*result" to match other usage in vgauth.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common source files not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools at this time.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools at this time.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months ago[vgauth] Retry on EBADF when getting pam entry (getpwuid_r, getpwnam_r)
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:17 +0000 (23:34 -0700)] 
[vgauth] Retry on EBADF when getting pam entry (getpwuid_r, getpwnam_r)

Below are the changes made as part of this update
o resetting the errno value before calling the getpw*_r functions in
  usercheck.c. Some man pages mention this is required as the errno might
  be left unchanged by the function. We're performing a few retries,
  therefore resetting errno at the start of a retry loop ensures we're
  not 'stuck' on the error.
o implementing retry in impersonateLinux.c which includes the reset of errno.
o logging 'errno' in impersonateLinux.c and usercheck.c where relevant.
o On EBADF error, adding g_thread_yield in the retry loop to add some
  delay to the retry.

10 months agoAdd #ifdef USE_UINPUT to fix open-vm-tools build failure on FreeBSD
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Add #ifdef USE_UINPUT to fix open-vm-tools build failure on FreeBSD

In the previous update, the "#ifdef USE_UINPUT" preprocessor guard was
removed, which broke the compilation of open-vm-tools on FreeBSD, because
FreeBSD does not have support for fakeMouseWayland.cpp.

Since USE_UINPUT is already defined for Linux systems in
services/plugins/dndcp/Makefile.am, adding those conditionals back to prevent
build failures on FreeBSD.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoEnable UInput and handle few issues in DNDCP plugin for GTK3
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Enable UInput and handle few issues in DNDCP plugin for GTK3

Below are the changes made as part of this update
1) Enabling UInput code for emulating Fake mouse and keyboard events in
Xwayland backend.
2) Making sure Xtest and UInput codes are inherent. The Xtest specific
code which was being invoked in Uinput flow as well is now guarded to be
used in Xtest flow only..
3) Fix for Leaking X server Connection

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 6 Aug 2025 06:34:16 +0000 (23:34 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoUpdate ChangeLog with the granular push of Jul 22, 2025.
Kruti Pendharkar [Tue, 22 Jul 2025 09:11:26 +0000 (02:11 -0700)] 
Update ChangeLog with the granular push of Jul 22, 2025.
- plus ChangeLog update of Jul 11, 2025.
- plus missed copyright year update to few files.

10 months agoCorrecting missed copyright year updates.
Kruti Pendharkar [Tue, 22 Jul 2025 09:08:49 +0000 (02:08 -0700)] 
Correcting missed copyright year updates.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header files not applicable to open-vm-tools.

10 months agoChange to common header files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header files not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoCoverity issue fixed
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Coverity issue fixed

A forward null pointer dereference has been fixed in
vgauth/serviceImpl/alias.c: AliasSaveAliasesAndMapped()

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoFix a memory leak for the tools dndcp plugin
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Fix a memory leak for the tools dndcp plugin

In VMTools dndcp plugin, when CopyPasteUIMac class is constructed,
the mCP class variable is created with "new" by calling
VMGuestDnDCPMgr::GetCopyPasteMgr(). The equivalent "delete" should be called
in the destructor.

10 months agoUpdate the VMTools version history with recent EP releases.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Update the VMTools version history with recent EP releases.

Adding versions 12.4.7, 12.4.8, 12.5.2, 12.5.3, and 13.0.1 to the
vm_tools_version.h header file.
Along the way the tagname for the 13.0.x series was changed from
"tweezers" to "swiss_army_knife".

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source files not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source files not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:54 +0000 (00:06 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:53 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:53 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:53 +0000 (00:06 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 22 Jul 2025 07:06:53 +0000 (00:06 -0700)] 
Change to common source file not applicable to open-vm-tools.

10 months agoUpdate ChangeLog with the granular push of Jul 11, 2025.
Kruti Pendharkar [Fri, 11 Jul 2025 14:28:31 +0000 (07:28 -0700)] 
Update ChangeLog with the granular push of Jul 11, 2025.
- plus ChangeLog update of Jun 24, 2025.
- plus missed copyright year update to few files.

10 months agoCorrecting missed copyright date updates.
Kruti Pendharkar [Fri, 11 Jul 2025 14:25:20 +0000 (07:25 -0700)] 
Correcting missed copyright date updates.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:16 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:16 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoUpdate regex for checking 'disable_vmware_customization' flag
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:16 +0000 (05:48 -0700)] 
Update regex for checking 'disable_vmware_customization' flag

The regex check for "disable_vmware_customization" is too strict and
fails when there are inline comments after the flag. As a result, the
cloud-init workflow doesn't start.
This change is relaxing the check to allow inline comments. Please note
that non-capturing group is not supported by POSIX regex API, using
capturing group here.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:16 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common source files not applicable to open-vm-tools at this time.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Change to common source files not applicable to open-vm-tools at this time.

10 months agoDefine Posix_Printf/Posix_Fprint for FreeBSD
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Define Posix_Printf/Posix_Fprint for FreeBSD

A previous change to lib/misc/posixPosix.c introduced the
`Posix_Printf` and `Posix_Fprintf` implementations only for non-Solaris,
non-Apple, and non-FreeBSD builds. (Note that this set of
conditions is inconsistent with when `posix.h` aliases them
(and various other functions) to their standard POSIX
counterparts.)

Moving the `Posix_Printf`/`Posix_Fprintf` implementations out
of the `#if` sections so that they're always available.

10 months agoFix the vmtools user process crash caused by use-after-free
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Fix the vmtools user process crash caused by use-after-free

A previous change introduced a bug where a freed pointer was not set to
nullptr, potentially causing a crash in the vmtoolsd user process.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

10 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Fri, 11 Jul 2025 12:48:15 +0000 (05:48 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoUpdate ChangeLog with the granular push of Jun 24, 2025.
Kruti Pendharkar [Tue, 24 Jun 2025 16:30:47 +0000 (09:30 -0700)] 
Update ChangeLog with the granular push of Jun 24, 2025.
- plus ChangeLog update of Jun 03, 2025.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:23 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:23 +0000 (09:26 -0700)] 
Change to common source files not applicable to open-vm-tools.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:23 +0000 (09:26 -0700)] 
Change to common source files not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:23 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common source files not applicable to open-vm-tools.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common source files not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoFail ServiceNetworkListen if g_unlink has an errno other than ENOENT
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Fail ServiceNetworkListen if g_unlink has an errno other than ENOENT

Change ServiceNetworkListen to fail if g_unlink fails for any reason
other than that the entry being unlinked doesn't exist.

11 months agoCheck the real path for the alias store file
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Check the real path for the alias store file

Verify the real path, which is the fully resolved path, is free of
symbolic links and path traversal characters.

11 months agoChange to common source file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common source file not applicable to open-vm-tools.

11 months agoModify alias store file permissions for regular users.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Modify alias store file permissions for regular users.

Currently, the user whose alias store is to be used is granted 'Full Control'
to the alias store file created under alias store root directory (which is
generally secured from regular users).
Modifying the alias store file permissions by removing "Change
permissions" and "Take ownership" of the file privileges from the user.

11 months agoChange to common header files not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header files not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoChange to common header file not applicable to open-vm-tools.
Kruti Pendharkar [Tue, 24 Jun 2025 16:26:22 +0000 (09:26 -0700)] 
Change to common header file not applicable to open-vm-tools.

11 months agoResolve merge conflicts.
Kruti Pendharkar [Thu, 19 Jun 2025 04:49:15 +0000 (21:49 -0700)] 
Resolve merge conflicts.

11 months agoMerge branch 'stable-13.0.x'
Kruti Pendharkar [Thu, 19 Jun 2025 04:26:59 +0000 (21:26 -0700)] 
Merge branch 'stable-13.0.x'

11 months agoUpdate ChangeLog with the open-vm-tools 13.0.0 release marker. stable-13.0.0
Kruti Pendharkar [Thu, 19 Jun 2025 04:05:18 +0000 (21:05 -0700)] 
Update ChangeLog with the open-vm-tools 13.0.0 release marker.

11 months ago=================================================
Kruti Pendharkar [Thu, 19 Jun 2025 03:59:50 +0000 (20:59 -0700)] 
=================================================
  open-vm-tools 13.0.0 released at this point.
=================================================

Update of the ChangeLog with the final changes in preparation for
the open-vm-tools 13.0.0 release.

11 months agoUpdate the ReleaseNotes.md for the 13.0.0 open-vm-tools release
Kruti Pendharkar [Wed, 18 Jun 2025 11:34:29 +0000 (04:34 -0700)] 
Update the ReleaseNotes.md for the 13.0.0 open-vm-tools release

11 months agoPrepare for the open-vm-tools 13.0.0 release.
Kruti Pendharkar [Wed, 18 Jun 2025 11:31:14 +0000 (04:31 -0700)] 
Prepare for the open-vm-tools 13.0.0 release.

- Update the tools version in the configure.ac.
- Update the build numbers in the buldNumber.h.

11 months agoUpdate ChangeLog with the granular push of June 10, 2025.
Kruti Pendharkar [Wed, 11 Jun 2025 00:54:13 +0000 (17:54 -0700)] 
Update ChangeLog with the granular push of June 10, 2025.
- plus ChangeLog update of Feb 25, 2025.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 11 Jun 2025 00:48:53 +0000 (17:48 -0700)] 
Change to common source files not applicable to open-vm-tools.

11 months agoChange to common source files not applicable to open-vm-tools.
Kruti Pendharkar [Wed, 11 Jun 2025 00:48:53 +0000 (17:48 -0700)] 
Change to common source files not applicable to open-vm-tools.