1/*
2 * Copyright (C) 2013 Apple Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "config.h"
27#include "SandboxInitializationParameters.h"
28
29namespace WebKit {
30
31SandboxInitializationParameters::SandboxInitializationParameters()
32    : m_profileSelectionMode(UseDefaultSandboxProfilePath)
33{
34}
35
36SandboxInitializationParameters::~SandboxInitializationParameters()
37{
38    for (size_t i = 0; i + 1 < m_namedParameters.size(); i += 2)
39        fastFree(const_cast<char*>(m_namedParameters[i + 1]));
40}
41
42void SandboxInitializationParameters::appendPathInternal(const char* name, const char* path)
43{
44    char normalizedPath[PATH_MAX];
45    if (!realpath(path, normalizedPath))
46        normalizedPath[0] = '\0';
47
48    ASSERT(!(m_namedParameters.size() % 2));
49
50    m_namedParameters.append(name);
51    m_namedParameters.append(fastStrDup(normalizedPath));
52}
53
54void SandboxInitializationParameters::addConfDirectoryParameter(const char* name, int confID)
55{
56    char path[PATH_MAX];
57    if (confstr(confID, path, PATH_MAX) <= 0)
58        path[0] = '\0';
59
60    appendPathInternal(name, path);
61}
62
63void SandboxInitializationParameters::addPathParameter(const char* name, NSString *path)
64{
65    appendPathInternal(name, [path length] ? [(NSString *)path fileSystemRepresentation] : "");
66}
67
68void SandboxInitializationParameters::addPathParameter(const char* name, const char* path)
69{
70    appendPathInternal(name, path);
71}
72
73void SandboxInitializationParameters::addParameter(const char* name, const char* value)
74{
75    m_namedParameters.append(name);
76    m_namedParameters.append(fastStrDup(value));
77}
78
79const char* const* SandboxInitializationParameters::namedParameterArray() const
80{
81    if (!(m_namedParameters.size() % 2))
82        m_namedParameters.append(static_cast<const char*>(0));
83
84    return m_namedParameters.data();
85}
86
87size_t SandboxInitializationParameters::count() const
88{
89    return m_namedParameters.size() / 2;
90}
91
92const char* SandboxInitializationParameters::name(size_t index) const
93{
94    ASSERT(index != m_namedParameters.size());
95    return m_namedParameters[index * 2];
96}
97
98const char* SandboxInitializationParameters::value(size_t index) const
99{
100    return m_namedParameters[index * 2 + 1];
101}
102
103} // namespace WebKit
104