1. 29 Nov, 2020 3 commits
  2. 27 Nov, 2020 2 commits
  3. 20 Nov, 2020 6 commits
  4. 18 Nov, 2020 1 commit
  5. 17 Nov, 2020 1 commit
  6. 09 Nov, 2020 4 commits
  7. 08 Nov, 2020 2 commits
  8. 05 Nov, 2020 4 commits
  9. 04 Nov, 2020 3 commits
  10. 03 Nov, 2020 13 commits
    • Kirill Smelkov's avatar
      . · 066d7203
      Kirill Smelkov authored
      066d7203
    • Kirill Smelkov's avatar
      X bigfile/_file_zodb: Fix logic around ZSync usage · 8bf8f23b
      Kirill Smelkov authored
      The logic inside ZSync was correct, but it was incorrect to attach zsync
      to zconn to stay alive and react when that zconn is garbage collected:
      zsync._on_zconn_dealloc was not called because zsync itself was garbage
      collected too.
      
      This fixes many failures where wconn and associated pinner was not
      released even though ZODB DB was correctly closed.
      8bf8f23b
    • Kirill Smelkov's avatar
      X wcfs: tests: Run `fusermount -u` the second time if we had to kill wcfs · 3a6bd764
      Kirill Smelkov authored
      This makes sure to cleanup /proc/mounts from stale / broken FUSE
      connection, and removes uninformational `assert not is_mountpoint` from
      raising, thus, adding more noise in already very verbose wcfs-kill-dump.
      3a6bd764
    • Kirill Smelkov's avatar
      bigfile/_file_zodb: Test for ZSync · 75857c32
      Kirill Smelkov authored
      Excercise the logic that keeps wconn <-> zconn in sync.
      75857c32
    • Kirill Smelkov's avatar
      X wcfs: client: Provide Conn.at() · 24378c46
      Kirill Smelkov authored
      To known to which DB state WCFS connection corresponds. This is similar
      to zodb.Connection.At() in ZODB/go and to zconn_at in ZODB/py.
      
      wconn.at() will be used in the next patch to verify ZSync.
      24378c46
    • Kirill Smelkov's avatar
      . · 2be847c4
      Kirill Smelkov authored
      2be847c4
    • Kirill Smelkov's avatar
      f118617b
    • Kirill Smelkov's avatar
      X setup: Add build dependency information · 84404f8f
      Kirill Smelkov authored
      Manaully, because there is no automatic dependency tracking in
      setuptools...
      
      Dependency tracking is needed to avoid miscompilation after incremental
      update under SlapOS/buildout/testnode/... when e.g. only .h was changed.
      84404f8f
    • Kirill Smelkov's avatar
      X tests: Stop wcfs spawned during tests · f622e751
      Kirill Smelkov authored
      Tests inside wcfs/ care to do this, but e.g. test.py/fs-wcfs autospawns
      wcfs servers during regular bigfile tests. If we don't stop spawned
      wcfs, those processes will leak, and also they keep `nxdtest
      test.py/*-wcfs` in "hung" state, because nxdtest is waiting for wcfs to
      stop as wcfs stdout is connected to nxdtest input.
      
      Currently kills wcfs in abrupt way, because graceful pinner shutdown is
      not yet implemented there.
      f622e751
    • Kirill Smelkov's avatar
      X wcfs: tests: Split tDB into -> tDB + tWCFS · 6dec74e7
      Kirill Smelkov authored
      tWCFS is responsible for starting/mounting/unmounting/stopping wcfs
      tDB uses tWCFS and provides commit/test service on top.
      
      We'll use tWCFS in the next patch to unmount/stop WCFS processes that
      are automatically spawned during test.py
      6dec74e7
    • Kirill Smelkov's avatar
      X wcfs: tests: Don't use testmntpt everywhere · bc9eb16f
      Kirill Smelkov authored
      Once WCFS instance is created, use wc.mountpoint to refer to where this
      wcfs is mounted. It does not change anything right now, but in a
      follow-up patches we'll reuse the code from wcfs_test to work on any wc,
      not neccessarily mounted on testmntpt.
      bc9eb16f
    • Kirill Smelkov's avatar
      X bigfile/_file_zodb: Import wendelin.wcfs, not just wcfs · 2ba7cb52
      Kirill Smelkov authored
      Else, when runing tests intree `import wcfs` and `import wendelin.wcfs`
      will give two different modules, and inspecting e.g. wendelin.wcfs at
      teardown will see fresh module state (_wcregistry) because it was wcfs
      which was used.
      
      Also just `import wcfs` will raise ImportError when run out of tree.
      2ba7cb52
    • Kirill Smelkov's avatar
      fixup! X wcfs: client: Handle fork · 0ed6b8b6
      Kirill Smelkov authored
      Starting from 3f83469c Conn and WatchLink started to inherit from
      interface, which made them to use virtual functions, which, without
      destructor being also virtual emits the following warnings:
      
          wcfs/client/wcfs.cpp: In member function ‘virtual void wcfs::_Conn::decref()’:
          wcfs/client/wcfs.cpp:1531:16: warning: deleting object of polymorphic class type ‘wcfs::_Conn’ which has non-virtual destructor might cause undefined behavior [-Wdelete-non-virtual-dtor]
                   delete this;
                          ^~~~
      
          wcfs/client/wcfs_watchlink.cpp: In member function ‘virtual void wcfs::_WatchLink::decref()’:
          wcfs/client/wcfs_watchlink.cpp:514:16: warning: deleting object of polymorphic class type ‘wcfs::_WatchLink’ which has non-virtual destructor might cause undefined behavior [-Wdelete-non-virtual-dtor]
                   delete this;
                          ^~~~
      0ed6b8b6
  11. 02 Nov, 2020 1 commit
    • Kirill Smelkov's avatar
      X wcfs: test: Fix thinko in getting /sys/fs/fuse/connection/<X> for wcfs · 78f36993
      Kirill Smelkov authored
      FUSE puts X as st_dev's minor, which, for minors <= 255 is the same as st_dev.
      However when there are many connections, and minor goes after 255, minor becomes != st_dev:
      
          In [2]: os.makedev(0, 254)
          Out[2]: 254
      
          In [3]: os.makedev(0, 255)
          Out[3]: 255
      
          In [5]: os.makedev(0, 256)
          Out[5]: 1048576
      
      As a result we were constructing wrong patch, and if wcfs was failing we were
      also failing to kill it with something like:
      
          t = <wcfs.wcfs_test.tDB object at 0x7fef78043260>
      
              @func
              def __init__(t):
                  t.root = testdb.dbopen()
                  def _(): # close/unlock db if __init__ fails
                      exc = sys.exc_info()[1]
                      if exc is not None:
                          dbclose(t.root)
                  defer(_)
      
                  assert not os.path.exists(testmntpt)
                  t.wc = wcfs.join(testzurl, autostart=True)
                  assert os.path.exists(testmntpt)
                  assert is_mountpoint(testmntpt)
      
                  # force-unmount wcfs on timeout to unstuck current test and let it fail.
                  # Force-unmount can be done reliably only by writing into
                  # /sys/fs/fuse/connections/<X>/abort. For everything else there are
                  # cases, when wcfs, even after receiving `kill -9`, will be stuck in kernel.
                  # ( git.kernel.org/linus/a131de0a482a makes in-kernel FUSE client to
                  #   still wait for request completion even after fatal signal )
          >       t._wcfuseabort   = open("/sys/fs/fuse/connections/%d/abort" % os.stat(testmntpt).st_dev, "w")
          E       IOError: [Errno 2] No such file or directory: '/sys/fs/fuse/connections/2097264/abort'
      
          wcfs/wcfs_test.py:236: IOError
      
      In the above failure st_dev=2097264 corresponds to X=624:
      
          In [6]: os.minor(2097264)
          Out[6]: 624
      78f36993