1 | /* $Id: RTEnvDupEx-generic.cpp 62477 2016-07-22 18:27:37Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Environment, RTEnvDupEx, generic.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2016 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 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/env.h>
|
---|
32 | #include "internal/iprt.h"
|
---|
33 |
|
---|
34 | #include <iprt/assert.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #include <iprt/mem.h>
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | RTDECL(char *) RTEnvDupEx(RTENV Env, const char *pszVar)
|
---|
42 | {
|
---|
43 | /*
|
---|
44 | * Try with a small buffer. This helps avoid allocating a heap buffer for
|
---|
45 | * variables that doesn't exist.
|
---|
46 | */
|
---|
47 | char szSmall[256];
|
---|
48 | int rc = RTEnvGetEx(Env, pszVar, szSmall, sizeof(szSmall), NULL);
|
---|
49 | if (RT_SUCCESS(rc))
|
---|
50 | return RTStrDup(szSmall);
|
---|
51 | if (rc != VERR_BUFFER_OVERFLOW)
|
---|
52 | return NULL;
|
---|
53 |
|
---|
54 | /*
|
---|
55 | * It's a bug bugger.
|
---|
56 | */
|
---|
57 | size_t cbBuf = _1K;
|
---|
58 | char *pszBuf = (char *)RTMemAlloc(cbBuf);
|
---|
59 | for (;;)
|
---|
60 | {
|
---|
61 | rc = RTEnvGetEx(Env, pszVar, pszBuf, cbBuf, NULL);
|
---|
62 | if (RT_SUCCESS(rc))
|
---|
63 | return pszBuf; /* ASSUMES RTMemAlloc can be freed by RTStrFree! */
|
---|
64 |
|
---|
65 | if (rc != VERR_BUFFER_OVERFLOW)
|
---|
66 | break;
|
---|
67 |
|
---|
68 | if (cbBuf >= 64 * _1M)
|
---|
69 | break;
|
---|
70 | cbBuf *= 2;
|
---|
71 |
|
---|
72 | char *pszNew = (char *)RTMemRealloc(pszBuf, cbBuf);
|
---|
73 | if (!pszNew)
|
---|
74 | break;
|
---|
75 | pszBuf = pszNew;
|
---|
76 | }
|
---|
77 |
|
---|
78 | RTMemFree(pszBuf);
|
---|
79 | return NULL;
|
---|
80 | }
|
---|
81 | RT_EXPORT_SYMBOL(RTEnvGetExecEnvP);
|
---|
82 |
|
---|