Git Product home page Git Product logo

Comments (4)

airnandez avatar airnandez commented on June 24, 2024

Thanks for this report. I managed to reproduce it in Ubuntu, but not on MacOS X. From what I have observed, the file is correctly renamed in the shadow directory but its metadata attributes are incorrectly exposed by clueFS after the rename operation.

I think I have a reasonably good idea of where the problem is and am working on fixing it.

from cluefs.

rfjakob avatar rfjakob commented on June 24, 2024

As I understand it, the kernel gets node ids from Lookup(). bazil.org/fuse saves those node ids for later access. The kernel knows that the node id does not change when it renames a file. So the next stat() goes to the same old bazil.org/fuse node.

The problem is that the rename operates on the parent directory and not on the file node. So you'd have to somehow find the affected file node and change file.name there.

This problem is solved in go-fuse in the pathfs layer, see https://github.com/hanwen/go-fuse/blob/master/fuse/pathfs/pathfs.go

from cluefs.

rfjakob avatar rfjakob commented on June 24, 2024

That it works on OSX is probably because the FUSE module in the OSX kernel is more basic and does not remember the node id when you rename the file.

Edit: go-fuse has a fully working loopback example: https://github.com/hanwen/go-fuse/tree/master/example/loopback

from cluefs.

airnandez avatar airnandez commented on June 24, 2024

Fixed in master. No release yet since I want to add other modifications before tagging a new release.

Thanks for having reported this problem.

from cluefs.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.