|
| 1 | +# CWE-1109: Use of Same Variable for Multiple Purposes |
| 2 | + |
| 3 | +Avoid reusing names of variables, functions, classes, built-in functions, packages, or standard Python modules |
| 4 | + |
| 5 | +Redefining identifiers from *The Python Standard Library* \[[Python 2025](https://docs.python.org/3/library/index.html)\], any internals `str` and `os` or other parts of the project can result in unexpected behavior and errors. Issues can multiply when identifiers are made global in a project. |
| 6 | + |
| 7 | +## Non-Compliant Code Example (Built-in Function) |
| 8 | + |
| 9 | +The redefined built-in function `len()` in `noncompliant01.py` is incorrectly adding each element to a "sum" instead of calculating the length of an object. |
| 10 | + |
| 11 | +*[noncompliant01.py](noncompliant01.py):* |
| 12 | + |
| 13 | +```python |
| 14 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 15 | +# SPDX-License-Identifier: MIT |
| 16 | +"""Non-compliant Code Example""" |
| 17 | + |
| 18 | +number_list = [1, 2, 3, 4, 5, 6, 7, 8, 9] |
| 19 | +print(f"len({number_list}) == {len(number_list)}") |
| 20 | + |
| 21 | + |
| 22 | +def len(numbers: list[int]) -> int: |
| 23 | + """implementing a custom version of len""" |
| 24 | + result = 0 |
| 25 | + for number in numbers: |
| 26 | + result += number |
| 27 | + return result |
| 28 | + |
| 29 | + |
| 30 | +##################### |
| 31 | +# Trying to exploit above code example |
| 32 | +##################### |
| 33 | + |
| 34 | +print(f"len({number_list}) == {len(number_list)}") |
| 35 | + |
| 36 | +``` |
| 37 | + |
| 38 | +The first `print(f"len({number_list}) == {len(number_list)}")` using the original `len()` is listing the correct number of `9` entries. |
| 39 | +The second print statement using the redefined `len()` is listing `45`. |
| 40 | + |
| 41 | +**Example output:** |
| 42 | + |
| 43 | +```bash |
| 44 | +len([1, 2, 3, 4, 5, 6, 7, 8, 9]) == 9 |
| 45 | +len([1, 2, 3, 4, 5, 6, 7, 8, 9]) == 45 |
| 46 | +``` |
| 47 | + |
| 48 | +Redefining `len()` can break its usage for other data types such as strings causing crashes. The redefined `len()` will cause a `print(len("Hello World!"))` to throw a `TypeError` as we combine `int` with `char`. |
| 49 | + |
| 50 | +## Compliant Solution (Built-in Function) |
| 51 | + |
| 52 | +Ensure that all functions do not reuse the names as defined in Built-in Functions \[[Python built-in 2025](https://docs.python.org/3.9/library/functions.html)\] and do not reuse the identifiers as defined in The *The Python Standard Library* \[[Python 2025](https://docs.python.org/3/library/index.html)\]. |
| 53 | + |
| 54 | +*[compliant01.py](compliant01.py):* |
| 55 | + |
| 56 | +```python |
| 57 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 58 | +# SPDX-License-Identifier: MIT |
| 59 | +"""Compliant Code Example""" |
| 60 | + |
| 61 | +number_list = [1, 2, 3, 4, 5, 6, 7, 8, 9] |
| 62 | +print(f"len({number_list}) == {len(number_list)}") |
| 63 | + |
| 64 | + |
| 65 | +def custom_len(numbers: list[int]) -> int: |
| 66 | + """implementing a custom version of len""" |
| 67 | + result = 0 |
| 68 | + for number in numbers: |
| 69 | + result += number |
| 70 | + return result |
| 71 | + |
| 72 | + |
| 73 | +##################### |
| 74 | +# Trying to exploit above code example |
| 75 | +##################### |
| 76 | + |
| 77 | +print(f"len({number_list}) == {len(number_list)}") |
| 78 | + |
| 79 | +``` |
| 80 | + |
| 81 | +## Non-Compliant Code Example (Class) |
| 82 | + |
| 83 | +The standard module `os` and function `getpid()` are being redefined in `noncompliant02.py`. |
| 84 | + |
| 85 | +*[noncompliant02.py](noncompliant02.py):* |
| 86 | + |
| 87 | +```python |
| 88 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 89 | +# SPDX-License-Identifier: MIT |
| 90 | +"""Non-compliant Code Example""" |
| 91 | + |
| 92 | +import os |
| 93 | + |
| 94 | +print(f"Process id='{os.getpid()}'") |
| 95 | + |
| 96 | + |
| 97 | +class os: |
| 98 | + """redefining standard class""" |
| 99 | + |
| 100 | + @staticmethod |
| 101 | + def getpid(): |
| 102 | + """redefining standard class method""" |
| 103 | + return "Not implemented" |
| 104 | + |
| 105 | + |
| 106 | +##################### |
| 107 | +# Trying to exploit above code example |
| 108 | +##################### |
| 109 | + |
| 110 | +print(f"Process id='{os.getpid()}'") |
| 111 | + |
| 112 | +``` |
| 113 | + |
| 114 | +The `os.getpid()` method from the standard module is no longer called after redefining it and prints "Not implemented" instead of the process ID. |
| 115 | + |
| 116 | +**Example output:** |
| 117 | + |
| 118 | +```bash |
| 119 | +Process id='19354' |
| 120 | +Process id='Not implemented' |
| 121 | +``` |
| 122 | + |
| 123 | +## Compliant Solution (Class) |
| 124 | + |
| 125 | +Ensure that all packages, classes and functions do not reuse the identifiers as defined in *The Python Standard Library* \[[Python 2025](https://docs.python.org/3/library/index.html)\]. |
| 126 | + |
| 127 | +*[compliant02.py](compliant02.py):* |
| 128 | + |
| 129 | +```python |
| 130 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 131 | +# SPDX-License-Identifier: MIT |
| 132 | +"""Compliant Code Example""" |
| 133 | + |
| 134 | +import os |
| 135 | + |
| 136 | +print(f"Process id='{os.getpid()}'") |
| 137 | + |
| 138 | + |
| 139 | +class custom_os: |
| 140 | + """redefining standard class""" |
| 141 | + |
| 142 | + @staticmethod |
| 143 | + def getpid(): |
| 144 | + """redefining standard class method""" |
| 145 | + return "Not implemented" |
| 146 | + |
| 147 | + |
| 148 | +##################### |
| 149 | +# Trying to exploit above code example |
| 150 | +##################### |
| 151 | + |
| 152 | +print(f"Process id='{os.getpid()}'") |
| 153 | + |
| 154 | +``` |
| 155 | + |
| 156 | +## Automated Detection |
| 157 | + |
| 158 | +On the 'class' example we have `C0103` complains about missing PascalCase naming style, `R0801`: Similar lines in `2` files, and `R0903` we do not list as their detection is not in relation to the actual issue. |
| 159 | + |
| 160 | +|Tool|Version|Checker|Description| |
| 161 | +|:---|:---|:---|:---| |
| 162 | +|pylint|2.9.6|[W0622](https://pylint.pycqa.org/en/latest/user_guide/messages/warning/redefined-builtin.html?highlight=W0622)|Redefining built-in 'len' (redefined-builtin)| |
| 163 | +|pylint|2.9.6|[E0102](https://pylint.pycqa.org/en/latest/user_guide/messages/error/function-redefined.html)|class already defined line 5 (function-redefined), detecting `class os`:| |
| 164 | + |
| 165 | +## Related Guidelines |
| 166 | + |
| 167 | +||| |
| 168 | +|:---|:---| |
| 169 | +|[MITRE CWE](http://cwe.mitre.org/)|Pillar: [CWE-710: Improper Adherence to Coding Standards)](https://cwe.mitre.org/data/definitions/710.html)| |
| 170 | +|[MITRE CWE](http://cwe.mitre.org/)|Base: [CWE - CWE-1109: Use of Same Variable for Multiple Purposes](https://cwe.mitre.org/data/definitions/1109.html)| |
| 171 | +|[SEI CERT Coding Standard for Java](https://wiki.sei.cmu.edu/confluence/display/java/SEI+CERT+Oracle+Coding+Standard+for+Java)|[DCL01-J. Do not reuse public identifiers from the Java Standard Library](https://wiki.sei.cmu.edu/confluence/display/java/DCL01-J.+Do+not+reuse+public+identifiers+from+the+Java+Standard+Library)| |
| 172 | +|[SEI CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/SEI+CERT+C+Coding+Standard)|[PRE04-C. Do not reuse a standard header file name](https://wiki.sei.cmu.edu/confluence/display/c/PRE04-C.+Do+not+reuse+a+standard+header+file+name)| |
| 173 | + |
| 174 | +## Bibliography |
| 175 | + |
| 176 | +||| |
| 177 | +|:---|:---| |
| 178 | +|\[Python 2025\].|*The Python Standard Library* \[online\]. Available from: <https://docs.python.org/3/library/index.html> \[accessed 24 June 2025\]| |
| 179 | +|\[Python built-in 2025\].|*Built-in Functions* \[online\]. Available from: <https://docs.python.org/3.9/library/functions.html> \[accessed 24 June 2025\]| |
0 commit comments