1 | /* $Id: GetVBoxUserHomeDirectory.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * MS COM / XPCOM Abstraction Layer - GetVBoxUserHomeDirectory.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2005-2020 Oracle Corporation
|
---|
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 (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*********************************************************************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *********************************************************************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_MAIN
|
---|
23 | #include <VBox/com/utils.h>
|
---|
24 |
|
---|
25 | #include <iprt/env.h>
|
---|
26 | #include <iprt/dir.h>
|
---|
27 | #include <iprt/param.h>
|
---|
28 | #include <iprt/path.h>
|
---|
29 | #include <iprt/string.h>
|
---|
30 |
|
---|
31 | #include <VBox/err.h>
|
---|
32 | #include <VBox/log.h>
|
---|
33 |
|
---|
34 |
|
---|
35 |
|
---|
36 | /*********************************************************************************************************************************
|
---|
37 | * Global Variables *
|
---|
38 | *********************************************************************************************************************************/
|
---|
39 | #if !defined(RT_OS_DARWIN) && !defined(RT_OS_WINDOWS)
|
---|
40 | char g_szXdgConfigHome[RTPATH_MAX] = "";
|
---|
41 | #endif
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Possible locations for the VirtualBox user configuration folder,
|
---|
45 | * listed from oldest (as in legacy) to newest. These can be either
|
---|
46 | * absolute or relative to the home directory. We use the first entry
|
---|
47 | * of the list which corresponds to a real folder on storage, or
|
---|
48 | * create a folder corresponding to the last in the list (the least
|
---|
49 | * legacy) if none do.
|
---|
50 | */
|
---|
51 | const char * const g_apcszUserHome[] =
|
---|
52 | {
|
---|
53 | #ifdef RT_OS_DARWIN
|
---|
54 | "Library/VirtualBox",
|
---|
55 | #elif defined RT_OS_WINDOWS
|
---|
56 | ".VirtualBox",
|
---|
57 | #else
|
---|
58 | ".VirtualBox", g_szXdgConfigHome,
|
---|
59 | #endif
|
---|
60 | };
|
---|
61 |
|
---|
62 |
|
---|
63 | namespace com
|
---|
64 | {
|
---|
65 |
|
---|
66 | static int composeHomePath(char *aDir, size_t aDirLen, const char *pcszBase)
|
---|
67 | {
|
---|
68 | int vrc;
|
---|
69 | if (RTPathStartsWithRoot(pcszBase))
|
---|
70 | vrc = RTStrCopy(aDir, aDirLen, pcszBase);
|
---|
71 | else
|
---|
72 | {
|
---|
73 | /* compose the config directory (full path) */
|
---|
74 | /** @todo r=bird: RTPathUserHome doesn't necessarily return a
|
---|
75 | * full (abs) path like the comment above seems to indicate. */
|
---|
76 | vrc = RTPathUserHome(aDir, aDirLen);
|
---|
77 | if (RT_SUCCESS(vrc))
|
---|
78 | vrc = RTPathAppend(aDir, aDirLen, pcszBase);
|
---|
79 | }
|
---|
80 | return vrc;
|
---|
81 | }
|
---|
82 |
|
---|
83 | int GetVBoxUserHomeDirectory(char *aDir, size_t aDirLen, bool fCreateDir)
|
---|
84 | {
|
---|
85 | AssertReturn(aDir, VERR_INVALID_POINTER);
|
---|
86 | AssertReturn(aDirLen > 0, VERR_BUFFER_OVERFLOW);
|
---|
87 |
|
---|
88 | /* start with null */
|
---|
89 | *aDir = 0;
|
---|
90 |
|
---|
91 | char szTmp[RTPATH_MAX];
|
---|
92 | int vrc = RTEnvGetEx(RTENV_DEFAULT, "VBOX_USER_HOME", szTmp, sizeof(szTmp), NULL);
|
---|
93 | if (RT_SUCCESS(vrc) || vrc == VERR_ENV_VAR_NOT_FOUND)
|
---|
94 | {
|
---|
95 | bool fFound = false;
|
---|
96 | if (RT_SUCCESS(vrc))
|
---|
97 | {
|
---|
98 | /* get the full path name */
|
---|
99 | vrc = RTPathAbs(szTmp, aDir, aDirLen);
|
---|
100 | }
|
---|
101 | else
|
---|
102 | {
|
---|
103 | #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_DARWIN)
|
---|
104 | vrc = RTEnvGetEx(RTENV_DEFAULT, "XDG_CONFIG_HOME", g_szXdgConfigHome, sizeof(g_szXdgConfigHome), NULL);
|
---|
105 | if (RT_SUCCESS(vrc))
|
---|
106 | vrc = RTPathAppend(g_szXdgConfigHome, sizeof(g_szXdgConfigHome), "VirtualBox");
|
---|
107 | AssertMsg(vrc == VINF_SUCCESS || vrc == VERR_ENV_VAR_NOT_FOUND, ("%Rrc\n", vrc));
|
---|
108 | if (RT_FAILURE_NP(vrc))
|
---|
109 | vrc = RTStrCopy(g_szXdgConfigHome, sizeof(g_szXdgConfigHome), ".config/VirtualBox");
|
---|
110 | #endif
|
---|
111 | for (unsigned i = 0; i < RT_ELEMENTS(g_apcszUserHome); ++i)
|
---|
112 | {
|
---|
113 | vrc = composeHomePath(aDir, aDirLen, g_apcszUserHome[i]);
|
---|
114 | if ( RT_SUCCESS(vrc)
|
---|
115 | && RTDirExists(aDir))
|
---|
116 | {
|
---|
117 | fFound = true;
|
---|
118 | break;
|
---|
119 | }
|
---|
120 | }
|
---|
121 | }
|
---|
122 |
|
---|
123 | /* ensure the home directory exists */
|
---|
124 | if (RT_SUCCESS(vrc))
|
---|
125 | if (!fFound && fCreateDir)
|
---|
126 | vrc = RTDirCreateFullPath(aDir, 0700);
|
---|
127 | }
|
---|
128 |
|
---|
129 | return vrc;
|
---|
130 | }
|
---|
131 |
|
---|
132 | } /* namespace com */
|
---|