blob: aa1e1dd03b4a04d5539491c531851f4cd635d761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* Copyright (C) 2019 Trond Myklebust <trond.myklebust@hammerspace.com>
*/
#ifndef NFSD_PATH_H
#define NFSD_PATH_H
#include <sys/stat.h>
struct file_handle;
struct statfs;
void nfsd_path_init(void);
const char * nfsd_path_nfsd_rootdir(void);
char * nfsd_path_strip_root(char *pathname);
char * nfsd_path_prepend_dir(const char *dir, const char *pathname);
int nfsd_path_stat(const char *pathname, struct stat *statbuf);
int nfsd_path_lstat(const char *pathname, struct stat *statbuf);
int nfsd_path_statfs(const char *pathname,
struct statfs *statbuf);
char * nfsd_realpath(const char *path, char *resolved_path);
ssize_t nfsd_path_read(int fd, char *buf, size_t len);
ssize_t nfsd_path_write(int fd, const char *buf, size_t len);
int nfsd_name_to_handle_at(int fd, const char *path,
struct file_handle *fh,
int *mount_id, int flags);
#endif
|