Skip to content

Adding invalid blobs to Index leaves stray lock-file in python 3.5 due to non deterministic desctructors #514

Closed
@ankostis

Description

@ankostis
Contributor

(originally reported in #508)
Index.add() code relying on destructors leaves stray lock-file if invoked with invalid args in py3.5. The following code reproduces it:

import git

r = git Repo()

def add_bad_blob():
    r.index.add([git.Blob(r, b'f' * 20, 'bad-permissions', 'foo')])

try:
    ## 1st fail on purpose adding into index.
    add_bad_blob()
except Exception as ex:
    """
    git\index\base.py in add()           @799
    git\index\base.py in write()         @213
    git\index\base.py in _serialize()    @180 
    git\index\fun.py in write_cache()    @133
    """
    assert "required argument is not an integer" in str(ex)

try:
    ## 2nd time fails due to stray lock-file.
    add_bad_blob()
except Exception as ex:
    assert "index.lock' could not be obtained" in str(ex)

import gc
gc.collect()


try:
    ## After GC, lock-file gone.
    add_bad_blob()
except Exception as ex:
    assert "required argument is not an integer" in str(ex)

The problem originates at git/index/base.py#L211-214, and can be amended by enclosing them in a try-finally block:

    stream = lfd.open(write=True, stream=True)
    ok= False
    try:
        self._serialize(stream, ignore_extension_data)
        ok = True
    finally:
        if not ok:
            lfd.rollback()

This issue is a show-stopper, and impossible to workaround even when applying the advice written in the manual about invokint ``del()manually, because theLockedFD` variable instance goes out of scope.

So either
a) the project sources are modified, or
b) try-catch and explicitly invoke GC then, which is pretty ugly.

A more proper solution would be to retrifit LockedFD as a context-manager.

Activity

ankostis

ankostis commented on Sep 14, 2016

@ankostis
ContributorAuthor

I cannot make many TestCases to pass in Windows & Cygwin :-(
I fixed the import mock py-2 only import, but fir instance, the clone commands fail with the url being prefixed by cwd.
Am I doing something wrong?

Of course then is the problem with the leaked resources in py-3.4, 3.5.

ankostis

ankostis commented on Sep 17, 2016

@ankostis
ContributorAuthor

@Byron any help on that?

Byron

Byron commented on Sep 25, 2016

@Byron
Member

@ankostis With windows, I do have my problems, so I am not sure how I can help in that regards. I'd certainly try if I see a way though.

Thanks to your reproduction script, I was able to manufacture a test case and apply the fix you described.

added a commit that references this issue on Sep 25, 2016
jxramos

jxramos commented on Sep 5, 2019

@jxramos

@ankostis does your commit 0de60ab resolve the limitations commentary discussed by @Byron in 48c149c?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @Byron@ankostis@jxramos

        Issue actions

          Adding invalid blobs to Index leaves stray lock-file in python 3.5 due to non deterministic desctructors · Issue #514 · gitpython-developers/GitPython