On Sun, Sep 15, 2019 at 05:42:10PM -0400, Mimi Zohar wrote: > > > My thought was to use an ephemeral Merkle tree for NFS (and > > > possibly other remote filesystems, like FUSE, until these > > > filesystems support durable per-file Merkle trees). A tree would > > > be constructed when the client measures a file, but it would not > > > saved to the filesystem. Instead of a hash of the file's contents, > > > the tree's root signature is stored as the IMA metadata. > > > > > > Once a Merkle tree is available, it can be used in exactly the > > > same way that a durable Merkle tree would, to verify the integrity > > > of individual pages as they are used, evicted, and then read back > > > from the server. > > > > > > If the client needs to evict part or all of an ephemeral tree, it > > > can subsequently be reconstructed by measuring the file again and > > > verifying its root signature against the stored IMA metadata. Where would the client store the ephemeral tree? If you're thinking about storing in memory, calculating the emphemeral tree would require dragging the entire file across the network, which is going to be just as bad as using IMA --- plus the CPU cost of calculating the Merkle tree, and the memory cost of storing the ephemeral Merkle tree. I suspect that for most clients, it wouldn't be worth it unless the client can store the ephemeral tree *somewhere* on the client's local persistent storage, or maybe if it could store the Merkle tree on the NFS server (maybe via an xattr which contains the pathname to the Merkle tree relative to the NFS mount point?). > > > So the only difference here is that the latency-to-first-byte > > > benefit of a durable Merkle tree would be absent. What problem are you most interested in solving? And what cost do you think the user will be willing to pay in order to solve that problem? > I like the idea, but there are a couple of things that need to happen > first. Both fs-verity and IMA appended signatures need to be > upstreamed. Eric has sent the pull request fs-verity today. > The IMA appended signature support simplifies > ima_appraise_measurement(), paving the way for adding IMA support for > other types of signature verification. How IMA will support fs-verity > signatures still needs to be defined. That discussion will hopefully > include NFS support. As far as using the Merkle tree root hash for the IMA measurement, what sort of policy should be used for determining when the Merkle tree root hash should be used in preference to reading and checksuming the whole file when it is first opened? It could be as simple as, "if this is a fs-verity, use the fs-verity Merkle root". Is that OK? - Ted