VirtualBox

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


Ignore:
Timestamp:
Sep 30, 2015 10:11:22 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102949
Message:

VBoxServiceControlSession.cpp: better off doing the changes immediately.

File:
1 edited

Legend:

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

    r57960 r57961  
    17641764    /* ppSessionThread is optional. */
    17651765
    1766 #ifdef DEBUG
    1767     PVBOXSERVICECTRLSESSIONTHREAD pSessionCur;
     1766#ifdef VBOX_STRICT
    17681767    /* Check for existing session in debug mode. Should never happen because of
    17691768     * Main consistency. */
     1769    PVBOXSERVICECTRLSESSIONTHREAD pSessionCur;
    17701770    RTListForEach(pList, pSessionCur, VBOXSERVICECTRLSESSIONTHREAD, Node)
    17711771    {
    1772         if (pSessionCur->StartupInfo.uSessionID == pSessionStartupInfo->uSessionID)
    1773         {
    1774             AssertMsgFailed(("Guest session thread ID=%RU32 (%p) already exists when it should not\n",
    1775                              pSessionCur->StartupInfo.uSessionID, pSessionCur));
    1776             return VERR_ALREADY_EXISTS;
    1777         }
     1772        AssertMsgReturn(pSessionCur->StartupInfo.uSessionID != pSessionStartupInfo->uSessionID,
     1773                        ("Guest session thread ID=%RU32 (%p) already exists when it should not\n",
     1774                         pSessionCur->StartupInfo.uSessionID, pSessionCur), VERR_ALREADY_EXISTS);
    17781775    }
    17791776#endif
     
    17851782        s_uCtrlSessionThread = 0; /* Wrap around to not let IPRT freak out. */
    17861783
     1784    /*
     1785     * Allocate and initialize the session thread structure.
     1786     */
    17871787    PVBOXSERVICECTRLSESSIONTHREAD pSessionThread =
    17881788        (PVBOXSERVICECTRLSESSIONTHREAD)RTMemAllocZ(sizeof(VBOXSERVICECTRLSESSIONTHREAD));
     
    17901790    {
    17911791        /* Copy over session startup info. */
    1792         memcpy(&pSessionThread->StartupInfo, pSessionStartupInfo,
    1793                sizeof(VBOXSERVICECTRLSESSIONSTARTUPINFO));
     1792        memcpy(&pSessionThread->StartupInfo, pSessionStartupInfo, sizeof(VBOXSERVICECTRLSESSIONSTARTUPINFO));
    17941793
    17951794        pSessionThread->fShutdown = false;
     
    18051804            Assert(!strlen(pSessionThread->StartupInfo.szDomain));
    18061805
    1807             VBoxServiceVerbose(3, "New anonymous guest session ID=%RU32 created, uFlags=%x, using protocol %RU32\n",
     1806            VBoxServiceVerbose(3, "New anonymous guest session ID=%RU32 created, fFlags=%x, using protocol %RU32\n",
    18081807                               pSessionStartupInfo->uSessionID,
    18091808                               pSessionStartupInfo->fFlags,
     
    18121811        else
    18131812        {
    1814             VBoxServiceVerbose(3, "Spawning new guest session ID=%RU32, szUser=%s, szPassword=%s, szDomain=%s, uFlags=%x, using protocol %RU32\n",
     1813            VBoxServiceVerbose(3, "Spawning new guest session ID=%RU32, szUser=%s, szPassword=%s, szDomain=%s, fFlags=%x, using protocol %RU32\n",
    18151814                               pSessionStartupInfo->uSessionID,
    18161815                               pSessionStartupInfo->szUser,
     
    18261825
    18271826        rc = RTCritSectInit(&pSessionThread->CritSect);
    1828         AssertRC(rc);
    1829 
     1827        AssertRC(rc); /* We'll check this again further down, right... */
     1828
     1829/** @todo r=bird: split function here, that would simplify failure cleanup... */
    18301830        /*
    18311831         * Spawn a child process for doing the actual session handling.
     1832         * Start by assembling the argument list.
    18321833         */
    18331834        char szExeName[RTPATH_MAX];
     
    18621863
    18631864            /* Add same verbose flags as parent process. */
    1864 /** @todo r=bird: how does this stuff work when g_cVerbosity = 0?  Also, why do you need rc2 here?  Do we actually care about the RC anyway? */
    1865             int rc2 = VINF_SUCCESS;
    1866             char szParmVerbose[32] = { 0 };
    1867             for (int i = 0; i < g_cVerbosity && RT_SUCCESS(rc2); i++)
    1868             {
    1869                 if (i == 0)
    1870                     rc2 = RTStrCat(szParmVerbose, sizeof(szParmVerbose), "-");
    1871                 if (RT_FAILURE(rc2))
    1872                     break;
    1873                 rc2 = RTStrCat(szParmVerbose, sizeof(szParmVerbose), "v");
    1874             }
    1875             if (RT_SUCCESS(rc2))
     1865            char szParmVerbose[32];
     1866            if (g_cVerbosity > 0)
     1867            {
     1868                unsigned cVs = RT_MIN(g_cVerbosity, RT_ELEMENTS(szParmVerbose) - 2);
     1869                szParmVerbose[0] = '-';
     1870                memset(&szParmVerbose[1], 'v', cVs);
     1871                szParmVerbose[1 + cVs] = '\0';
    18761872                apszArgs[idxArg++] = szParmVerbose;
    1877 
    1878 /** @todo r=bird: As I already mentioned in the review comment you removed in
    1879  * r102561, the log file name handling is rather mangled.  You have a 4K stack
    1880  * buffer, but you insist on doing 2-5 heap allocations when constructing the
    1881  * name.  Either you do it in the stack buffer or you do it on the heap.
    1882  *
    1883  * Now, if you make sure szParmLogFile is, say, 128 byte larger than
    1884  * g_szLogFile, you won't need to consider overflows any more.  You can easily
    1885  * construct the whole thing with a strcpy, RTPathStripSuffix and a sprintf.
    1886  */
     1873            }
    18871874
    18881875            /* Add log file handling. Each session will have an own
    18891876             * log file, naming based on the parent log file. */
    1890 #if 1
    1891             char szParmLogFile[RTPATH_MAX];
    1892             if (   RT_SUCCESS(rc2)
    1893                 && strlen(g_szLogFile))
    1894             {
    1895                 char *pszLogFile = RTStrDup(g_szLogFile);
    1896                 if (pszLogFile)
    1897                 {
    1898                     char *pszLogSuff = NULL;
    1899                     if (RTPathHasSuffix(pszLogFile))
    1900                         pszLogSuff = RTStrDup(RTPathSuffix(pszLogFile));
    1901                     RTPathStripSuffix(pszLogFile);
    1902                     char *pszLogNewSuffix;
    1903 #ifndef DEBUG
    1904                     if (RTStrAPrintf(&pszLogNewSuffix, "-%RU32-%s",
    1905                                      pSessionStartupInfo->uSessionID,
    1906                                      pSessionStartupInfo->szUser) < 0)
    1907                     {
    1908                         rc2 = VERR_NO_MEMORY;
    1909                     }
    1910 #else /* DEBUG */
    1911                     /* Include the session thread ID in the log file name. */
    1912                     if (RTStrAPrintf(&pszLogNewSuffix, "-%RU32-%RU32-%s",
    1913                                      pSessionStartupInfo->uSessionID,
    1914                                      s_uCtrlSessionThread,
    1915                                      pSessionStartupInfo->szUser) < 0)
    1916                     {
    1917                         rc2 = VERR_NO_MEMORY;
    1918                     }
    1919 #endif /* DEBUG */
    1920                     else
    1921                     {
    1922                         rc2 = RTStrAAppend(&pszLogFile, pszLogNewSuffix);
    1923                         if (RT_SUCCESS(rc2) && pszLogSuff)
    1924                             rc2 = RTStrAAppend(&pszLogFile, pszLogSuff);
    1925                         if (RT_SUCCESS(rc2))
    1926                             RTStrPrintf(szParmLogFile, sizeof(szParmLogFile), "--logfile=%s", pszLogFile);
    1927 
    1928                         RTStrFree(pszLogNewSuffix);
    1929                     }
    1930                     if (RT_FAILURE(rc2))
    1931                         VBoxServiceError("Error building session logfile string for session %RU32 (user %s), rc=%Rrc\n",
    1932                                          pSessionStartupInfo->uSessionID, pSessionStartupInfo->szUser, rc2);
    1933                     if (pszLogSuff)
    1934                         RTStrFree(pszLogSuff);
    1935                     RTStrFree(pszLogFile);
    1936                 }
    1937                 if (RT_SUCCESS(rc2))
    1938                     apszArgs[idxArg++] = szParmLogFile;
    1939 
    1940                 rc = rc2;
    1941             }
    1942             else if (RT_FAILURE(rc2))
    1943                 rc = rc2;
    1944 #else
    19451877            char szParmLogFile[sizeof(g_szLogFile) + 128];
    19461878            if (g_szLogFile)
     
    19611893                apszArgs[idxArg++] = szParmLogFile;
    19621894            }
    1963 #endif /* alternative version */
     1895
    19641896#ifdef DEBUG
    19651897            VBoxServiceVerbose(4, "Argv building rc=%Rrc, session flags=%x\n", rc, g_Session.fFlags);
     
    19781910            {
    19791911                VBoxServiceVerbose(4, "Spawning parameters:\n");
    1980 
    1981                 idxArg = 0;
    1982                 while (apszArgs[idxArg])
    1983                     VBoxServiceVerbose(4, "\t%s\n", apszArgs[idxArg++]);
    1984             }
    1985 
    1986             uint32_t uProcFlags = RTPROC_FLAGS_SERVICE
    1987 #ifdef RT_OS_WINDOWS
    1988                                 /* Make sure to also load the profile data on a Windows guest. */
    1989                                 | RTPROC_FLAGS_PROFILE       /** @todo Not implemented for non-Windows yet. */
    1990 #endif
    1991                                 | RTPROC_FLAGS_HIDDEN;       /** @todo More flags from startup info? */
     1912                for (idxArg = 0; apszArgs[idxArg]; idxArg++)
     1913                    VBoxServiceVerbose(4, "\t%s\n", apszArgs[idxArg]);
     1914            }
     1915
    19921916            /*
    1993              * Create the session process' environment block.
     1917             * Configure standard handles and finally create the process.
    19941918             */
    1995             if (RT_SUCCESS(rc))
    1996             {
    1997                 if (g_cVerbosity > 3)
    1998                 {
    1999                     /** @todo At the moment a session process does not have the ability to use the
    2000                      *        per-session environment variables itself, only the session's guest
    2001                      *        processes do so. Implement that later, also needs tweaking of
    2002                      *        VbglR3GuestCtrlSessionGetOpen(). */
    2003                     RTENV hEnv = NIL_RTENV;
    2004                     rc = RTEnvClone(&hEnv, RTENV_DEFAULT);
    2005                     if (RT_SUCCESS(rc))
    2006                     {
    2007                         VBoxServiceVerbose(4, "Environment variables:\n");
    2008 
    2009                         uint32_t cVars = RTEnvCountEx(hEnv);
    2010                         for (uint32_t iVar = 0; iVar < cVars; iVar++)
    2011                         {
    2012                             char szVar[_1K];
    2013                             char szValue[_16K];
    2014                             rc2 = RTEnvGetByIndexEx(hEnv, iVar, szVar, sizeof(szVar), szValue, sizeof(szValue));
    2015                             if (RT_SUCCESS(rc2))
    2016                                 VBoxServiceVerbose(4, "\t%s=%s\n", szVar, szValue);
    2017                             else if (rc2 == VERR_BUFFER_OVERFLOW)
    2018                                 VBoxServiceVerbose(4, "\t%s=%s [VERR_BUFFER_OVERFLOW]\n", szVar, szValue);
    2019                             else
    2020                             {
    2021                                 VBoxServiceVerbose(4, "\tUnable to enumerate environment variable #%RU32: %Rrc\n", iVar, rc2);
    2022                                 /* Keep going. */
    2023                             }
    2024                         }
    2025 
    2026                         RTEnvDestroy(hEnv);
    2027                     }
    2028                 }
    2029             }
     1919            uint32_t fProcCreate = RTPROC_FLAGS_SERVICE
     1920#ifdef RT_OS_WINDOWS    /** @todo do on unix too! */
     1921                                 /* Make sure to also load the profile data on a Windows guest. */
     1922                                 | RTPROC_FLAGS_PROFILE
     1923#endif
     1924                                 | RTPROC_FLAGS_HIDDEN;       /** @todo More flags from startup info? */
    20301925
    20311926#if 0 /* Pipe handling not needed (yet). */
     
    20561951
    20571952                    if (RT_SUCCESS(rc))
    2058                         rc = RTProcCreateEx(pszExeName, apszArgs, hEnv, uProcFlags,
     1953                        rc = RTProcCreateEx(pszExeName, apszArgs, hEnv, fProcCreate,
    20591954                                            pSession->StdIn.phChild, pSession->StdOut.phChild, pSession->StdErr.phChild,
    20601955                                            !fAnonymous ? pSession->StartupInfo.szUser : NULL,
     
    20901985                    hStdOutAndErr.enmType = RTHANDLETYPE_FILE;
    20911986
    2092                     rc = RTProcCreateEx(pszExeName, apszArgs, RTENV_DEFAULT, uProcFlags,
     1987                    rc = RTProcCreateEx(pszExeName, apszArgs, RTENV_DEFAULT, fProcCreate,
    20931988                                        &hStdIn, &hStdOutAndErr, &hStdOutAndErr,
    20941989                                        !fAnonymous ? pSessionThread->StartupInfo.szUser : NULL,
     
    21082003        if (RT_SUCCESS(rc))
    21092004        {
    2110             /* Start session thread. */
     2005            /*
     2006             * Start session the thread.
     2007             */
    21112008            rc = RTThreadCreateF(&pSessionThread->Thread, gstcntlSessionThread,
    21122009                                 pSessionThread /*pvUser*/, 0 /*cbStack*/,
     
    21152012            {
    21162013                VBoxServiceError("Creating session thread failed, rc=%Rrc\n", rc);
     2014                /** @todo r=bird: what about the process we created? Perhaps a
     2015                 *        RTProcTerminate would be in order? */
    21172016            }
    21182017            else
     
    21452044        if (RT_FAILURE(rc))
    21462045        {
     2046            /** @todo r=bird: what about deleting the critsect? You're leaking event
     2047             *        semaphore handles here. */
    21472048            RTMemFree(pSessionThread);
    21482049        }
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