VirtualBox

Changeset 43927 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Nov 21, 2012 10:29:18 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
82241
Message:

Forward ported r81841 + r82127 (VBoxHeadless/VBoxService: Enhanced (release flow) logging for user disconnect handling, more flow logging).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp

    r43793 r43927  
    262262
    263263#if defined(VBOX_WITH_DBUS) && defined(RT_OS_LINUX) /* Not yet for Solaris/FreeBSB. */
    264 /* 
     264/*
    265265 * Simple wrapper to work around compiler-specific va_list madness.
    266266 */
     
    388388                char **ppszSessions; int cSessions;
    389389                if (   (dbus_message_get_type(pMsgSessions) == DBUS_MESSAGE_TYPE_METHOD_CALL)
    390                     && vboxService_dbus_message_get_args(pReplySessions, &dbErr, DBUS_TYPE_ARRAY, 
    391                                                          DBUS_TYPE_OBJECT_PATH, &ppszSessions, &cSessions, 
     390                    && vboxService_dbus_message_get_args(pReplySessions, &dbErr, DBUS_TYPE_ARRAY,
     391                                                         DBUS_TYPE_OBJECT_PATH, &ppszSessions, &cSessions,
    392392                                                         DBUS_TYPE_INVALID /* Termination */))
    393393                {
     
    429429                                        && ppwEntry->pw_name)
    430430                                    {
    431                                         VBoxServiceVerbose(4, "ConsoleKit: session '%s' -> %s (uid: %RU32)\n", 
     431                                        VBoxServiceVerbose(4, "ConsoleKit: session '%s' -> %s (uid: %RU32)\n",
    432432                                                           *ppszCurSession, ppwEntry->pw_name, uid);
    433433
     
    471471                {
    472472                    VBoxServiceError("ConsoleKit: unable to retrieve session parameters (msg type=%d): %s",
    473                                      dbus_message_get_type(pMsgSessions), 
     473                                     dbus_message_get_type(pMsgSessions),
    474474                                     dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available\n");
    475475                }
     
    566566
    567567    if (pszUserList && cUsersInList > 0)
    568         VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", "%s", pszUserList);
     568        rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", "%s", pszUserList);
    569569    else
    570         VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", NULL);
    571     VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsers", "%u", cUsersInList);
     570        rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", NULL);
     571    if (RT_FAILURE(rc))
     572    {
     573        VBoxServiceError("VMInfo: Error writing logged on users list, rc=%Rrc\n", rc);
     574        cUsersInList = 0; /* Reset user count on error. */
     575    }
     576
     577    rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsers", "%u", cUsersInList);
     578    if (RT_FAILURE(rc))
     579    {
     580        VBoxServiceError("VMInfo: Error writing logged on users count, rc=%Rrc\n", rc);
     581        cUsersInList = 0; /* Reset user count on error. */
     582    }
     583
    572584    if (g_cVMInfoLoggedInUsers != cUsersInList)
    573585    {
    574         VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers",
    575                                    cUsersInList == 0 ? "true" : "false");
     586        rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers",
     587                                        cUsersInList == 0 ? "true" : "false");
     588        if (RT_FAILURE(rc))
     589            VBoxServiceError("VMInfo: Error writing no logged in users beacon, rc=%Rrc\n", rc);
    576590        g_cVMInfoLoggedInUsers = cUsersInList;
    577591    }
    578 
    579     if (RT_SUCCESS(rc) && pszUserList)
     592    if (pszUserList)
    580593        RTStrFree(pszUserList);
    581594    return rc;
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