aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/DeclarationContainer.cpp
blob: 786272e4505b808d26778c8f03f67d34cdb2288a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
    This file is part of solidity.

    solidity is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    solidity is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with solidity.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
 * @author Christian <c@ethdev.com>
 * @date 2014
 * Scope - object that holds declaration of names.
 */

#include <libsolidity/analysis/DeclarationContainer.h>
#include <libsolidity/ast/AST.h>
#include <libsolidity/ast/Types.h>
#include <libdevcore/StringUtils.h>

using namespace std;
using namespace dev;
using namespace dev::solidity;

Declaration const* DeclarationContainer::conflictingDeclaration(
    Declaration const& _declaration,
    ASTString const* _name
) const
{
    if (!_name)
        _name = &_declaration.name();
    solAssert(!_name->empty(), "");
    vector<Declaration const*> declarations;
    if (m_declarations.count(*_name))
        declarations += m_declarations.at(*_name);
    if (m_invisibleDeclarations.count(*_name))
        declarations += m_invisibleDeclarations.at(*_name);

    if (
        dynamic_cast<FunctionDefinition const*>(&_declaration) ||
        dynamic_cast<EventDefinition const*>(&_declaration) ||
        dynamic_cast<MagicVariableDeclaration const*>(&_declaration)
    )
    {
        // check that all other declarations with the same name are functions or a public state variable or events.
        // And then check that the signatures are different.
        for (Declaration const* declaration: declarations)
        {
            if (auto variableDeclaration = dynamic_cast<VariableDeclaration const*>(declaration))
            {
                if (variableDeclaration->isStateVariable() && !variableDeclaration->isConstant() && variableDeclaration->isPublic())
                    continue;
                return declaration;
            }
            if (
                dynamic_cast<FunctionDefinition const*>(&_declaration) &&
                !dynamic_cast<FunctionDefinition const*>(declaration)
            )
                return declaration;
            if (
                dynamic_cast<EventDefinition const*>(&_declaration) &&
                !dynamic_cast<EventDefinition const*>(declaration)
            )
                return declaration;
            if (
                dynamic_cast<MagicVariableDeclaration const*>(&_declaration) &&
                !dynamic_cast<MagicVariableDeclaration const*>(declaration)
            )
                return declaration;
            // Or, continue.
        }
    }
    else if (declarations.size() == 1 && declarations.front() == &_declaration)
        return nullptr;
    else if (!declarations.empty())
        return declarations.front();

    return nullptr;
}

void DeclarationContainer::activateVariable(ASTString const& _name)
{
    solAssert(
        m_invisibleDeclarations.count(_name) && m_invisibleDeclarations.at(_name).size() == 1,
        "Tried to activate a non-inactive variable or multiple inactive variables with the same name."
    );
    solAssert(m_declarations.count(_name) == 0 || m_declarations.at(_name).empty(), "");
    m_declarations[_name].emplace_back(m_invisibleDeclarations.at(_name).front());
    m_invisibleDeclarations.erase(_name);
}

bool DeclarationContainer::registerDeclaration(
    Declaration const& _declaration,
    ASTString const* _name,
    bool _invisible,
    bool _update
)
{
    if (!_name)
        _name = &_declaration.name();
    if (_name->empty())
        return true;

    if (_update)
    {
        solAssert(!dynamic_cast<FunctionDefinition const*>(&_declaration), "Attempt to update function definition.");
        m_declarations.erase(*_name);
        m_invisibleDeclarations.erase(*_name);
    }
    else if (conflictingDeclaration(_declaration, _name))
        return false;

    vector<Declaration const*>& decls = _invisible ? m_invisibleDeclarations[*_name] : m_declarations[*_name];
    if (!contains(decls, &_declaration))
        decls.push_back(&_declaration);
    return true;
}

vector<Declaration const*> DeclarationContainer::resolveName(ASTString const& _name, bool _recursive, bool _alsoInvisible) const
{
    solAssert(!_name.empty(), "Attempt to resolve empty name.");
    vector<Declaration const*> result;
    if (m_declarations.count(_name))
        result = m_declarations.at(_name);
    if (_alsoInvisible && m_invisibleDeclarations.count(_name))
        result += m_invisibleDeclarations.at(_name);
    if (result.empty() && _recursive && m_enclosingContainer)
        result = m_enclosingContainer->resolveName(_name, true, _alsoInvisible);
    return result;
}

vector<ASTString> DeclarationContainer::similarNames(ASTString const& _name) const
{
    static size_t const MAXIMUM_EDIT_DISTANCE = 2;

    vector<ASTString> similar;

    for (auto const& declaration: m_declarations)
    {
        string const& declarationName = declaration.first;
        if (stringWithinDistance(_name, declarationName, MAXIMUM_EDIT_DISTANCE))
            similar.push_back(declarationName);
    }
    for (auto const& declaration: m_invisibleDeclarations)
    {
        string const& declarationName = declaration.first;
        if (stringWithinDistance(_name, declarationName, MAXIMUM_EDIT_DISTANCE))
            similar.push_back(declarationName);
    }

    if (m_enclosingContainer)
        similar += m_enclosingContainer->similarNames(_name);

    return similar;
}
> |\| | | * | bug from fuzzerDimitry2018-11-214-0/+356 * | | Merge pull request #550 from ajsutton/extcodehash-changeaccountwinsvega2018-11-214-0/+418 |\ \ \ | |/ / |/| | | * | Fix comment.Adrian Sutton2018-11-214-6/+6 | * | Add test for EXTCODEHASH of account before and after changing it's balance, n...Adrian Sutton2018-11-214-0/+418 |/ / * | Merge pull request #549 from ajsutton/extcodehash-createdeleteaccountwinsvega2018-11-2113-0/+1122 |\ \ | |/ |/| | * Check self-destructed account via call does not exist.Adrian Sutton2018-11-214-2/+7 | * Check self-destructed account via static call still exists.Adrian Sutton2018-11-216-3/+15 | * Check self-destructed account no longer exists.Adrian Sutton2018-11-212-1/+4 | * Refill tests.Adrian Sutton2018-11-208-10/+436 | * Add test that checks EXTCODEHASH of self destructed account after original ca...Adrian Sutton2018-11-202-0/+151 | * Add STATICCALL variant.Adrian Sutton2018-11-204-3/+202 | * Add test for EXTCODEHASH of account created and then deleted in same transact...Adrian Sutton2018-11-184-0/+326 * | Merge pull request #547 from ethereum/consttransitionwinsvega2018-11-2010-26/+799 |\ \ | * | fix blockchain tests expect section json scheme checkconsttransitionDimitry2018-11-208-26/+70 | * | fix blockchain filler cheme checkDimitry2018-11-191-0/+3 | * | constantinople transition testDimitry2018-11-162-0/+726 | |/ * | Merge pull request #548 from ajsutton/extcodehash-createaccountwinsvega2018-11-194-0/+339 |\ \ | |/ |/| | * Fill blockchain tests.Adrian Sutton2018-11-182-0/+204 | * Add test for EXTCODEHASH of account created in same transaction.Adrian Sutton2018-11-182-0/+135 |/ * Merge pull request #542 from hugo-dc/extcodehash-hdcwinsvega2018-11-1532-0/+3202 |\ | * fill blockchain testsJose Hugo De la cruz Romero2018-11-1524-0/+2418 | * refill tests using create2 branch of aleth, fix extCodeHashPrecompiles json o...Jose Hugo De la cruz Romero2018-11-154-29/+6 | * fix precompiles codehash test, refill using latest aleth/testethJose Hugo De la cruz Romero2018-11-155-193/+238 | * EXTCODEHASH testsJose Hugo De la cruz Romero2018-11-158-0/+762 |/ * Merge pull request #545 from ethereum/moresstorewinsvega2018-11-1410380-0/+1814091 |\ | * fill as blockchain sstore combinationsmoresstoreDimitry2018-11-1310374-0/+1756380 | * sstore combinations change testsDimitry2018-11-136-0/+57711 * | Merge pull request #544 from ajsutton/extcodehashv6.0.0-beta.2winsvega2018-11-1320-0/+2237 |\ \ | * | Fill blockchain tests.Adrian Sutton2018-11-1314-0/+1673 | * | Use '>=Constantinople' instead of '>Byzantium' to be a bit more readable that...Adrian Sutton2018-11-136-83/+10 | * | Add more dynamic argument test cases to cover non-existent accounts, precompi...Adrian Sutton2018-11-132-60/+135 | * | Add test case for a contract executing EXTCODEHASH of the account being creat...Adrian Sutton2018-11-122-0/+138 | * | Add test case for a contract executing EXTCODEHASH with a dynamic argument.Adrian Sutton2018-11-122-0/+219 | * | Add test case for a contract executing EXTCODEHASH on itself.Adrian Sutton2018-11-122-0/+205 * | | Merge pull request #546 from ajsutton/gitignore-ideaMartin Holst Swende2018-11-131-1/+2 |\ \ \ | |/ / |/| | | * | Add .idea to .gitignore.Adrian Sutton2018-11-131-1/+2 |/ / * | Merge pull request #538 from ajsutton/memory-write-testswinsvega2018-11-0916-0/+4033 |\ \ | * | Add blockchain version of new tests.Adrian Sutton2018-11-098-12/+2430 | * | Revert "Add blockchain version of stPreCompiledContracts2 tests." (to make re...Adrian Sutton2018-11-096-2406/+0 | * | Add comment to new tests explaining what they're covering.Adrian Sutton2018-11-098-30/+42 | * | Add blockchain version of stCodeCopy tests.Adrian Sutton2018-11-062-0/+872 | * | Add blockchain version of stPreCompiledContracts2 tests.Adrian Sutton2018-11-066-0/+2406 | * | Refill new test.Adrian Sutton2018-11-061-1/+1 | * | Add tests to cover cases where data is copied to a memory range longer than t...Adrian Sutton2018-11-038-0/+731 * | | Merge pull request #484 from ethereum/extcodehashwinsvega2018-11-0922-0/+6229 |\ \ \ | |_|/ |/| | | * | fill initial stExtCodeHash testsextcodehashDimitry2018-11-0918-4/+5221 | * | stExtCodeHash WIPDimitry2018-10-118-0/+1012 * | | Merge pull request #539 from ethereum/integrate-test-generation-docswinsvega2018-11-095-27/+408 |\ \ \ | |_|/ |/| | | * | Move test creation docs to testing documentationholgerd772018-11-095-27/+408 |/ / * | Merge pull request #535 from ethereum/moresstorewinsvega2018-11-0346-0/+5235 |\ \ | * | InitCollision testDimitry2018-10-259-0/+995 | * | sstore collision overwrite sstoreDimitry2018-10-2538-0/+4240 * | | Merge pull request #537 from ethereum/add-using-clients-to-docswinsvega2018-11-031-0/+12 |\ \ \ | * | | Added clients using the tests library to the READMEholgerd772018-11-021-0/+12 |/ / / * | | Merge pull request #533 from ethereum/blockchain-test-format-doc-updatesv6.0.0-beta.1winsvega2018-10-253-25/+33 |\ \ \ | |/ / |/| | | * | Some updates to test generation doc sectionholgerd772018-10-231-1/+5 | * | Added sealEngine related infos to README and blockchain test format docsholgerd772018-10-232-24/+28 |/ / * | Merge pull request #527 from ansermino/david/setupHolger Drewes2018-10-193-0/+13 |\ \ | * | Fixed namingDavid Ansermino2018-10-181-1/+1 | * | Specified dependency version ranges, added .env3 to gitignoreDavid Ansermino2018-10-182-3/+4 | * | Added requirements and setup instructionsDavid Ansermino2018-10-162-0/+12 * | | Merge pull request #529 from ethereum/moresstorewinsvega2018-10-18714-1104/+83270 |\ \ \ | * | | fill as blockchain testsDimitry2018-10-18697-829/+80569 | * | | sstore xxx testsDimitry2018-10-1817-275/+2701 |/ / / * | | Merge pull request #528 from ethereum/moresstorewinsvega2018-10-17246-397/+28122 |\ \ \ | * | | fill as blockchainDimitry2018-10-17232-315/+26508 | * | | more test scenarios around test casesDimitry2018-10-1714-82/+1614 |/ / / * | | Merge pull request #526 from ethereum/moresstorewinsvega2018-10-1628-0/+2895 |\ \ \ | |/ / |/| | | * | fill as blockchain testsDimitry2018-10-1624-74/+2158 | * | sstore refund bugDimitry2018-10-152-0/+131 | * | more sstore testsDimitry2018-10-158-0/+680 |/ / * | Merge pull request #525 from ethereum/disableEipwinsvega2018-10-13217-5313/+4815 |\ \ | * | update tests without EIP210Dimitry2018-10-12217-5313/+4815 |/ / * | Merge pull request #516 from feliam/patch-2winsvega2018-10-121-4/+4 |\ \ | * | Update vm_tests.rstfeliam2018-10-041-4/+4 * | | Merge pull request #514 from feliam/patch-1winsvega2018-10-121-1/+1 |\ \ \ | * | | Update README.mdfeliam2018-10-021-1/+1 | |/ / * | | Merge pull request #522 from ethereum/remLegacywinsvega2018-10-1228-2705/+0 |\ \ \ | * | | remove artifact testsDimitry2018-10-1128-2705/+0 |/ / / * | | Merge pull request #520 from ethereum/fixgaslimitwinsvega2018-10-1159-15842/+15842 |\ \ \ | |_|/ |/| | | * | refill wallet testsDimitry2018-10-117-8345/+8345 | * | fix wrong difficulty tests on NoProofDimitry2018-10-1152-7497/+7497 |/ / * | Merge pull request #518 from ethereum/refill2winsvega2018-10-102-9016/+29305 |\ \ | * | create difficultyConstantinople autogenerated testsDimitry2018-10-091-0/+20289 | * | regenerate difficultyTests on RopstenDimitry2018-10-091-9016/+9016 |/ / * | Merge pull request #517 from ethereum/refill2winsvega2018-10-09137-989/+989 |\ \ | * | refill badOpcodesDimitry2018-10-09123-378/+378 | * | fix wrong timestamp in testsDimitry2018-10-0914-611/+611 |/ / * | Merge pull request #511 from ethereum/refillwinsvega2018-10-0513596-232919/+1248632 |\ \ | |/ |/| | * refill stCreate2 with new gasPriceDimitry2018-10-05169-711/+711 | * fix bcForgedTest and ttWrongRLPDimitry2018-10-03182-823/+823 | * fix yml testsDimitry2018-10-036-11/+11 | * refill blockchain testsDimitry2018-10-02