interface VFS {
  method open (OpenFileRequest) -> (File);
}

message OpenFileRequest {
  string path;
  repeated u64 options;
}

message File {
  string path;
  u64 attrs;
  capability mem_cap;
}