VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/init.cpp@ 5285

Last change on this file since 5285 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.5 KB
Line 
1/* $Id: init.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Init Ring-3.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19
20/*******************************************************************************
21* Header Files *
22*******************************************************************************/
23#define LOG_GROUP RTLOGGROUP_DEFAULT
24#ifdef RT_OS_WINDOWS
25# include <process.h>
26#else
27# include <unistd.h>
28#endif
29
30#include <iprt/runtime.h>
31#include <iprt/path.h>
32#include <iprt/assert.h>
33#include <iprt/log.h>
34#include <iprt/time.h>
35#include <iprt/err.h>
36#include <iprt/string.h>
37#include <iprt/param.h>
38#ifndef IN_GUEST
39# include <iprt/file.h>
40# include <VBox/sup.h>
41# include <stdlib.h>
42#endif
43#include "internal/path.h"
44#include "internal/process.h"
45#include "internal/thread.h"
46#include "internal/thread.h"
47#include "internal/time.h"
48
49
50/*******************************************************************************
51* Global Variables *
52*******************************************************************************/
53/** Program path.
54 * The size is hardcoded, so we'll have to check for overflow when setting it
55 * since some hosts might support longer paths.
56 * @internal
57 */
58char g_szrtProgramPath[RTPATH_MAX];
59
60/**
61 * Program start nanosecond TS.
62 */
63uint64_t g_u64ProgramStartNanoTS;
64
65/**
66 * Program start microsecond TS.
67 */
68uint64_t g_u64ProgramStartMicroTS;
69
70/**
71 * Program start millisecond TS.
72 */
73uint64_t g_u64ProgramStartMilliTS;
74
75/**
76 * The process identifier of the running process.
77 */
78RTPROCESS g_ProcessSelf = NIL_RTPROCESS;
79
80/**
81 * The current process priority.
82 */
83RTPROCPRIORITY g_enmProcessPriority = RTPROCPRIORITY_DEFAULT;
84
85
86/**
87 * Initalizes the runtime library.
88 *
89 * @returns iprt status code.
90 *
91 * @param fInitSUPLib Set if SUPInit() shall be called during init (default).
92 * Clear if not to call it.
93 * @param cbReserve The number of bytes of contiguous memory that should be reserved by
94 * the runtime / support library.
95 * Set this to 0 if no reservation is required. (default)
96 * Set this to ~0 if the maximum amount supported by the VM is to be
97 * attempted reserved, or the maximum available.
98 * This argument only applies if fInitSUPLib is true and we're in ring-3 HC.
99 */
100RTR3DECL(int) RTR3Init(bool fInitSUPLib, size_t cbReserve)
101{
102 /* no entry log flow, because prefixes and thread may freak out. */
103
104#ifndef IN_GUEST
105# ifdef VBOX
106 /*
107 * This MUST be done as the very first thing, before any file is opened.
108 * The log is opened on demand, but the first log entries may be caused
109 * by rtThreadInit() below.
110 */
111 const char *pszDisableHostCache = getenv("VBOX_DISABLE_HOST_DISK_CACHE");
112 if ( pszDisableHostCache != NULL
113 && strlen(pszDisableHostCache) > 0
114 && strcmp(pszDisableHostCache, "0") != 0)
115 {
116 RTFileSetForceFlags(RTFILE_O_WRITE, RTFILE_O_WRITE_THROUGH, 0);
117 RTFileSetForceFlags(RTFILE_O_READWRITE, RTFILE_O_WRITE_THROUGH, 0);
118 }
119# endif /* VBOX */
120#endif /* !IN_GUEST */
121
122 /*
123 * Thread Thread database and adopt the caller thread as 'main'.
124 * This must be done before everything else or else we'll call into threading
125 * without having initialized TLS entries and suchlike.
126 */
127 int rc = rtThreadInit();
128 if (RT_FAILURE(rc))
129 {
130 AssertMsgFailed(("Failed to get executable directory path, rc=%d!\n", rc));
131 return rc;
132 }
133
134#ifndef IN_GUEST
135 if (fInitSUPLib)
136 {
137 /*
138 * Init GIP first.
139 * (The more time for updates before real use, the better.)
140 */
141 SUPInit(NULL, cbReserve);
142 }
143#endif
144
145 /*
146 * Init the program start TSes.
147 */
148 g_u64ProgramStartNanoTS = RTTimeNanoTS();
149 g_u64ProgramStartMicroTS = g_u64ProgramStartNanoTS / 1000;
150 g_u64ProgramStartMilliTS = g_u64ProgramStartNanoTS / 1000000;
151
152#ifndef IN_GUEST
153 /*
154 * The threading is initialized we can safely sleep a bit if GIP
155 * needs some time to update itself updating.
156 */
157 if (fInitSUPLib && g_pSUPGlobalInfoPage)
158 {
159 RTThreadSleep(20);
160 RTTimeNanoTS();
161 }
162#endif
163
164 /*
165 * Get the executable path.
166 *
167 * We're also checking the depth here since we'll be
168 * appending filenames to the executable path. Currently
169 * we assume 16 bytes are what we need.
170 */
171 char szPath[RTPATH_MAX - 16];
172 rc = RTPathProgram(szPath, sizeof(szPath));
173 if (RT_FAILURE(rc))
174 {
175 AssertMsgFailed(("Failed to get executable directory path, rc=%d!\n", rc));
176 return rc;
177 }
178
179 /*
180 * The Process ID.
181 */
182#ifdef _MSC_VER
183 g_ProcessSelf = _getpid(); /* crappy ansi compiler */
184#else
185 g_ProcessSelf = getpid();
186#endif
187
188 /*
189 * More stuff to come.
190 */
191
192 LogFlow(("RTR3Init: returns VINF_SUCCESS\n"));
193 return VINF_SUCCESS;
194}
195
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette