9
0
Fork 0
barebox/include/fs.h

206 lines
6.2 KiB
C
Raw Normal View History

#ifndef __FS_H
#define __FS_H
#include <driver.h>
#include <filetype.h>
2007-07-05 16:01:37 +00:00
#define PATH_MAX 1024 /* include/linux/limits.h */
struct partition;
2007-07-05 16:01:37 +00:00
struct node_d;
2007-07-05 16:01:38 +00:00
struct stat;
2007-07-05 16:01:37 +00:00
struct dirent {
char d_name[256];
2007-07-05 16:01:37 +00:00
};
typedef struct dir {
2007-07-05 16:01:37 +00:00
struct device_d *dev;
struct fs_driver_d *fsdrv;
struct node_d *node;
struct dirent d;
void *priv; /* private data for the fs driver */
} DIR;
2007-07-05 16:01:37 +00:00
2007-07-05 16:01:38 +00:00
typedef struct filep {
2007-07-05 16:01:38 +00:00
struct device_d *dev; /* The device this FILE belongs to */
loff_t pos; /* current position in stream */
#define FILE_SIZE_STREAM ((loff_t) -1)
loff_t size; /* The size of this inode */
2007-07-05 16:01:40 +00:00
ulong flags; /* the O_* flags from open */
2007-07-05 16:01:38 +00:00
void *inode; /* private to the filesystem driver */
/* private fields. Mapping between FILE and filedescriptor number */
2007-07-05 16:01:38 +00:00
int no;
2007-07-05 16:01:38 +00:00
char in_use;
2007-07-05 16:01:38 +00:00
} FILE;
2007-07-05 16:01:37 +00:00
#define FS_DRIVER_NO_DEV 1
struct fs_driver_d {
int (*probe) (struct device_d *dev);
2007-07-05 16:01:37 +00:00
int (*mkdir)(struct device_d *dev, const char *pathname);
2007-07-05 16:01:44 +00:00
int (*rmdir)(struct device_d *dev, const char *pathname);
2007-07-05 16:01:38 +00:00
2007-07-05 16:01:38 +00:00
/* create a file. The file is guaranteed to not exist */
2007-07-05 16:01:38 +00:00
int (*create)(struct device_d *dev, const char *pathname, mode_t mode);
2007-07-05 16:01:44 +00:00
int (*unlink)(struct device_d *dev, const char *pathname);
2007-07-05 16:01:38 +00:00
/* Truncate a file to given size */
int (*truncate)(struct device_d *dev, FILE *f, ulong size);
int (*symlink)(struct device_d *dev, const char *pathname,
const char *newpath);
int (*readlink)(struct device_d *dev, const char *pathname, char *name,
size_t size);
2007-07-05 16:01:38 +00:00
int (*open)(struct device_d *dev, FILE *f, const char *pathname);
2007-07-05 16:01:38 +00:00
int (*close)(struct device_d *dev, FILE *f);
int (*read)(struct device_d *dev, FILE *f, void *buf, size_t size);
2007-07-05 16:01:38 +00:00
int (*write)(struct device_d *dev, FILE *f, const void *buf, size_t size);
int (*flush)(struct device_d *dev, FILE *f);
loff_t (*lseek)(struct device_d *dev, FILE *f, loff_t pos);
2007-07-05 16:01:37 +00:00
struct dir* (*opendir)(struct device_d *dev, const char *pathname);
struct dirent* (*readdir)(struct device_d *dev, struct dir *dir);
int (*closedir)(struct device_d *dev, DIR *dir);
2007-07-05 16:01:38 +00:00
int (*stat)(struct device_d *dev, const char *file, struct stat *stat);
2007-07-05 16:01:37 +00:00
int (*ioctl)(struct device_d *dev, FILE *f, int request, void *buf);
2007-07-05 16:01:55 +00:00
int (*erase)(struct device_d *dev, FILE *f, size_t count,
loff_t offset);
2007-07-16 08:29:28 +00:00
int (*protect)(struct device_d *dev, FILE *f, size_t count,
loff_t offset, int prot);
2007-07-05 16:01:55 +00:00
int (*memmap)(struct device_d *dev, FILE *f, void **map, int flags);
struct driver_d drv;
2007-07-05 16:01:37 +00:00
enum filetype type;
2007-07-05 16:01:37 +00:00
unsigned long flags;
};
#define dev_to_fs_driver(d) container_of(d->driver, struct fs_driver_d, drv)
#define dev_to_fs_device(d) container_of(d, struct fs_device_d, dev)
extern struct list_head fs_device_list;
#define for_each_fs_device(f) list_for_each_entry(f, &fs_device_list, list)
extern struct bus_type fs_bus;
struct fs_device_d {
char *backingstore; /* the device we are associated with */
struct device_d dev; /* our own device */
struct fs_driver_d *driver;
struct cdev *cdev;
char *path;
struct device_d *parent_device;
struct list_head list;
char *options;
};
#define drv_to_fs_driver(d) container_of(d, struct fs_driver_d, drv)
2007-07-05 16:02:12 +00:00
/*
* standard posix file functions
*/
int open(const char *pathname, int flags, ...);
2007-07-05 16:01:38 +00:00
int creat(const char *pathname, mode_t mode);
2007-07-05 16:01:44 +00:00
int unlink(const char *pathname);
2007-07-05 16:01:38 +00:00
int close(int fd);
int flush(int fd);
int lstat(const char *filename, struct stat *s);
2007-07-05 16:01:38 +00:00
int stat(const char *filename, struct stat *s);
ssize_t read(int fd, void *buf, size_t count);
ssize_t pread(int fd, void *buf, size_t count, loff_t offset);
int ioctl(int fd, int request, void *buf);
2007-07-05 16:01:38 +00:00
ssize_t write(int fd, const void *buf, size_t count);
ssize_t pwrite(int fd, const void *buf, size_t count, loff_t offset);
2007-07-05 16:01:40 +00:00
#define SEEK_SET 1
#define SEEK_CUR 2
#define SEEK_END 3
loff_t lseek(int fildes, loff_t offset, int whence);
int mkdir (const char *pathname, mode_t mode);
2007-09-27 09:59:18 +00:00
/* Create a directory and its parents */
int make_directory(const char *pathname);
2007-07-05 16:01:44 +00:00
int rmdir (const char *pathname);
const char *getcwd(void);
int chdir(const char *pathname);
DIR *opendir(const char *pathname);
struct dirent *readdir(DIR *dir);
int closedir(DIR *dir);
int symlink(const char *pathname, const char *newpath);
int readlink(const char *path, char *buf, size_t bufsiz);
int mount (const char *device, const char *fsname, const char *path,
const char *fsoptions);
2007-07-05 16:02:12 +00:00
int umount(const char *pathname);
2007-07-16 08:29:28 +00:00
/* not-so-standard functions */
2007-07-05 16:02:12 +00:00
int erase(int fd, size_t count, unsigned long offset);
2007-07-16 08:29:28 +00:00
int protect(int fd, size_t count, unsigned long offset, int prot);
int protect_file(const char *file, int prot);
void *memmap(int fd, int flags);
#define FILESIZE_MAX ((loff_t)-1)
#define PROT_READ 1
#define PROT_WRITE 2
2007-07-05 16:02:12 +00:00
#define LS_RECURSIVE 1
#define LS_SHOWARG 2
2008-03-11 20:41:56 +00:00
#define LS_COLUMN 4
2007-07-05 16:02:12 +00:00
int ls(const char *path, ulong flags);
2007-07-05 16:01:37 +00:00
char *mkmodestr(unsigned long mode, char *str);
2007-07-05 16:02:12 +00:00
/*
* Read a file into memory. Memory is allocated with malloc and must
* be freed with free() afterwards. This function allocates one
* byte more than actually needed and sets this to zero, so that
2007-09-27 14:33:35 +00:00
* it can be used for text files.
* If size is nonzero it s set to the file size.
2007-07-05 16:02:12 +00:00
*/
2007-09-27 14:33:35 +00:00
void *read_file(const char *filename, size_t *size);
2007-07-05 16:02:12 +00:00
/*
* Write a buffer to a file. This file is newly created.
*/
int write_file(const char *filename, void *buf, size_t size);
2007-07-05 16:02:12 +00:00
/*
2008-03-01 20:06:14 +00:00
* This function turns 'path' into an absolute path and removes all occurrences
2007-07-05 16:02:12 +00:00
* of "..", "." and double slashes. The returned string must be freed wit free().
*/
char *normalise_path(const char *path);
char *normalise_link(const char *pathname, const char* symlink);
2007-07-05 16:01:38 +00:00
char *get_mounted_path(const char *path);
2007-07-05 16:01:38 +00:00
struct cdev *get_cdev_by_mountpath(const char *path);
/* Register a new filesystem driver */
int register_fs_driver(struct fs_driver_d *fsdrv);
void automount_remove(const char *_path);
int automount_add(const char *path, const char *cmd);
void automount_print(void);
int unlink_recursive(const char *path, char **failedpath);
int fsdev_open_cdev(struct fs_device_d *fsdev);
const char *cdev_get_mount_path(struct cdev *cdev);
const char *cdev_mount_default(struct cdev *cdev, const char *fsoptions);
void mount_all(void);
#endif /* __FS_H */