DAOS API (v2.0)
Loading...
Searching...
No Matches
daos_fs.h
Go to the documentation of this file.
1/*
2 * (C) Copyright 2018-2022 Intel Corporation.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause-Patent
5 */
16#ifndef __DAOS_FS_H__
17#define __DAOS_FS_H__
18
19#if defined(__cplusplus)
20extern "C" {
21#endif
22
23#include <dirent.h>
24#include <sys/stat.h>
25
27#define DFS_MAX_NAME NAME_MAX
29#define DFS_MAX_PATH PATH_MAX
31#define DFS_MAX_FSIZE (~0ULL)
32
34#define DFS_MAX_XATTR_NAME 255
36#define DFS_MAX_XATTR_LEN 65536
37
39typedef struct dfs_obj dfs_obj_t;
41typedef struct dfs dfs_t;
42
43/*
44 * Consistency modes of the DFS container. A container created with balanced
45 * mode, can only be accessed with balanced mode with dfs_mount. A container
46 * created with relaxed mode, can be accessed with either mode in the future.
47 *
48 * Reserve bit 3 in the access flags for dfs_mount() - bits 1 and 2 are used
49 * for read / write access (O_RDONLY, O_RDRW).
50 */
51#define DFS_BALANCED 4
52#define DFS_RELAXED 0
53#define DFS_RDONLY O_RDONLY
54#define DFS_RDWR O_RDWR
55
57typedef struct {
59 uint64_t da_id;
61 daos_size_t da_chunk_size;
63 daos_oclass_id_t da_oclass_id;
66 /*
67 * Consistency mode for the DFS container: DFS_RELAXED, DFS_BALANCED.
68 * If set to 0 or more generally not set to balanced explicitly, relaxed
69 * mode will be used. In the future, Balanced mode will be the default.
70 */
71 uint32_t da_mode;
73
75typedef struct {
77 daos_size_t iod_nr;
80} dfs_iod_t;
81
82typedef struct {
84 daos_oclass_id_t doi_oclass_id;
86 daos_size_t doi_chunk_size;
88
102int
103dfs_cont_create(daos_handle_t poh, uuid_t *uuid, dfs_attr_t *attr, daos_handle_t *coh, dfs_t **dfs);
104
121int
123 uuid_t *uuid, daos_handle_t *coh, dfs_t **dfs);
124
140int
141dfs_mount(daos_handle_t poh, daos_handle_t coh, int flags, dfs_t **dfs);
142
152int
154
163int
165
178int
179dfs_local2global(dfs_t *dfs, d_iov_t *glob);
180
195int
196dfs_global2local(daos_handle_t poh, daos_handle_t coh, int flags, d_iov_t glob,
197 dfs_t **dfs);
198
211int
212dfs_set_prefix(dfs_t *dfs, const char *prefix);
213
222int
224
238int
239dfs_lookup(dfs_t *dfs, const char *path, int flags, dfs_obj_t **obj,
240 mode_t *mode, struct stat *stbuf);
241
261int
262dfs_lookup_rel(dfs_t *dfs, dfs_obj_t *parent, const char *name, int flags,
263 dfs_obj_t **obj, mode_t *mode, struct stat *stbuf);
264
289int
290dfs_open(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode,
291 int flags, daos_oclass_id_t cid, daos_size_t chunk_size,
292 const char *value, dfs_obj_t **obj);
293
306int
307dfs_dup(dfs_t *dfs, dfs_obj_t *obj, int flags, dfs_obj_t **new_obj);
308
322int
323dfs_obj_local2global(dfs_t *dfs, dfs_obj_t *obj, d_iov_t *glob);
324
338int
339dfs_obj_global2local(dfs_t *dfs, int flags, d_iov_t glob, dfs_obj_t **obj);
340
348int
350
365int
366dfs_read(dfs_t *dfs, dfs_obj_t *obj, d_sg_list_t *sgl, daos_off_t off,
367 daos_size_t *read_size, daos_event_t *ev);
368
384int
385dfs_readx(dfs_t *dfs, dfs_obj_t *obj, dfs_iod_t *iod, d_sg_list_t *sgl,
386 daos_size_t *read_size, daos_event_t *ev);
387
400int
401dfs_write(dfs_t *dfs, dfs_obj_t *obj, d_sg_list_t *sgl, daos_off_t off,
402 daos_event_t *ev);
403
416int
417dfs_writex(dfs_t *dfs, dfs_obj_t *obj, dfs_iod_t *iod, d_sg_list_t *sgl,
418 daos_event_t *ev);
419
429int
430dfs_get_size(dfs_t *dfs, dfs_obj_t *obj, daos_size_t *size);
431
444int
445dfs_punch(dfs_t *dfs, dfs_obj_t *obj, daos_off_t offset, daos_size_t len);
446
465int
467 uint32_t *nr, struct dirent *dirs);
468
472typedef int (*dfs_filler_cb_t)(dfs_t *dfs, dfs_obj_t *obj, const char name[],
473 void *arg);
474
495int
497 uint32_t *nr, size_t size, dfs_filler_cb_t op, void *arg);
498
519int
520dfs_obj_anchor_split(dfs_obj_t *obj, uint32_t *nr, daos_anchor_t *anchors);
521
534int
535dfs_obj_anchor_set(dfs_obj_t *obj, uint32_t index, daos_anchor_t *anchor);
536
548int
549dfs_mkdir(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode,
550 daos_oclass_id_t cid);
551
565int
566dfs_remove(dfs_t *dfs, dfs_obj_t *parent, const char *name, bool force,
567 daos_obj_id_t *oid);
568
584int
585dfs_move(dfs_t *dfs, dfs_obj_t *parent, const char *name, dfs_obj_t *new_parent,
586 const char *new_name, daos_obj_id_t *oid);
587
599int
600dfs_exchange(dfs_t *dfs, dfs_obj_t *parent1, const char *name1, dfs_obj_t *parent2,
601 const char *name2);
602
611int
612dfs_get_mode(dfs_obj_t *obj, mode_t *mode);
613
624int
626
641int
642dfs_obj_set_oclass(dfs_t *dfs, dfs_obj_t *obj, int flags, daos_oclass_id_t cid);
643
657int
659 daos_size_t csize);
660
672int
674
684int
685dfs_get_chunk_size(dfs_obj_t *obj, daos_size_t *chunk_size);
686
700int
701dfs_get_symlink_value(dfs_obj_t *obj, char *buf, daos_size_t *size);
702
719int
720dfs_update_parent(dfs_obj_t *obj, dfs_obj_t *src_obj, const char *name);
721
743int
744dfs_stat(dfs_t *dfs, dfs_obj_t *parent, const char *name,
745 struct stat *stbuf);
746
756int
757dfs_ostat(dfs_t *dfs, dfs_obj_t *obj, struct stat *stbuf);
758
760#define DFS_SET_ATTR_MODE (1 << 0)
762#define DFS_SET_ATTR_ATIME (1 << 1)
764#define DFS_SET_ATTR_MTIME (1 << 2)
766#define DFS_SET_ATTR_SIZE (1 << 3)
767
782int
783dfs_osetattr(dfs_t *dfs, dfs_obj_t *obj, struct stat *stbuf, int flags);
784
799int
800dfs_access(dfs_t *dfs, dfs_obj_t *parent, const char *name, int mask);
801
814int
815dfs_chmod(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode);
816
827int
829
845int
846dfs_setxattr(dfs_t *dfs, dfs_obj_t *obj, const char *name,
847 const void *value, daos_size_t size, int flags);
848
862int
863dfs_getxattr(dfs_t *dfs, dfs_obj_t *obj, const char *name, void *value,
864 daos_size_t *size);
865
876int
877dfs_removexattr(dfs_t *dfs, dfs_obj_t *obj, const char *name);
878
894int
895dfs_listxattr(dfs_t *dfs, dfs_obj_t *obj, char *list, daos_size_t *size);
896
897int
898dfs_cont_create2(daos_handle_t poh, uuid_t *cuuid, dfs_attr_t *attr, daos_handle_t *coh,
899 dfs_t **dfs);
900int
901dfs_cont_create1(daos_handle_t poh, const uuid_t cuuid, dfs_attr_t *attr, daos_handle_t *coh,
902 dfs_t **dfs);
903
904#if defined(__cplusplus)
905}
906
907#define dfs_cont_create dfs_cont_create_cpp
908static inline int
909dfs_cont_create_cpp(daos_handle_t poh, uuid_t *cuuid, dfs_attr_t *attr, daos_handle_t *coh,
910 dfs_t **dfs)
911{
912 return dfs_cont_create2(poh, cuuid, attr, coh, dfs);
913}
914
915static inline int
916dfs_cont_create_cpp(daos_handle_t poh, const uuid_t cuuid, dfs_attr_t *attr, daos_handle_t *coh,
917 dfs_t **dfs)
918{
919 return dfs_cont_create1(poh, cuuid, attr, coh, dfs);
920};
921#else
926#define dfs_cont_create(poh, co, ...) \
927 ({ \
928 int _ret; \
929 uuid_t *_u; \
930 if (d_is_uuid(co)) { \
931 _u = (uuid_t *)((unsigned char *)(co)); \
932 _ret = dfs_cont_create((poh), _u, __VA_ARGS__); \
933 } else { \
934 _u = (uuid_t *)(co); \
935 _ret = dfs_cont_create2((poh), _u, __VA_ARGS__); \
936 } \
937 _ret; \
938 })
939
940
941#endif /* __cplusplus */
942#endif /* __DAOS_FS_H__ */
int dfs_writex(dfs_t *dfs, dfs_obj_t *obj, dfs_iod_t *iod, d_sg_list_t *sgl, daos_event_t *ev)
int dfs_obj_get_info(dfs_t *dfs, dfs_obj_t *obj, dfs_obj_info_t *info)
#define dfs_cont_create(poh, co,...)
Definition daos_fs.h:926
int dfs_obj_anchor_set(dfs_obj_t *obj, uint32_t index, daos_anchor_t *anchor)
int dfs_lookup_rel(dfs_t *dfs, dfs_obj_t *parent, const char *name, int flags, dfs_obj_t **obj, mode_t *mode, struct stat *stbuf)
int dfs_get_mode(dfs_obj_t *obj, mode_t *mode)
int dfs_remove(dfs_t *dfs, dfs_obj_t *parent, const char *name, bool force, daos_obj_id_t *oid)
int dfs_set_prefix(dfs_t *dfs, const char *prefix)
int dfs_release(dfs_obj_t *obj)
int dfs_setxattr(dfs_t *dfs, dfs_obj_t *obj, const char *name, const void *value, daos_size_t size, int flags)
int dfs_open(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode, int flags, daos_oclass_id_t cid, daos_size_t chunk_size, const char *value, dfs_obj_t **obj)
int dfs_get_file_oh(dfs_obj_t *obj, daos_handle_t *oh)
int dfs_mount(daos_handle_t poh, daos_handle_t coh, int flags, dfs_t **dfs)
struct dfs_obj dfs_obj_t
Definition daos_fs.h:39
int dfs_cont_create_with_label(daos_handle_t poh, const char *label, dfs_attr_t *attr, uuid_t *uuid, daos_handle_t *coh, dfs_t **dfs)
int dfs_listxattr(dfs_t *dfs, dfs_obj_t *obj, char *list, daos_size_t *size)
int dfs_getxattr(dfs_t *dfs, dfs_obj_t *obj, const char *name, void *value, daos_size_t *size)
int dfs_osetattr(dfs_t *dfs, dfs_obj_t *obj, struct stat *stbuf, int flags)
int dfs_query(dfs_t *dfs, dfs_attr_t *attr)
int dfs_stat(dfs_t *dfs, dfs_obj_t *parent, const char *name, struct stat *stbuf)
int dfs_update_parent(dfs_obj_t *obj, dfs_obj_t *src_obj, const char *name)
int dfs_readx(dfs_t *dfs, dfs_obj_t *obj, dfs_iod_t *iod, d_sg_list_t *sgl, daos_size_t *read_size, daos_event_t *ev)
int dfs_get_symlink_value(dfs_obj_t *obj, char *buf, daos_size_t *size)
int dfs_exchange(dfs_t *dfs, dfs_obj_t *parent1, const char *name1, dfs_obj_t *parent2, const char *name2)
int dfs_get_size(dfs_t *dfs, dfs_obj_t *obj, daos_size_t *size)
int dfs_obj2id(dfs_obj_t *obj, daos_obj_id_t *oid)
int dfs_obj_local2global(dfs_t *dfs, dfs_obj_t *obj, d_iov_t *glob)
int dfs_get_chunk_size(dfs_obj_t *obj, daos_size_t *chunk_size)
int dfs_removexattr(dfs_t *dfs, dfs_obj_t *obj, const char *name)
int dfs_obj_set_chunk_size(dfs_t *dfs, dfs_obj_t *obj, int flags, daos_size_t csize)
int dfs_punch(dfs_t *dfs, dfs_obj_t *obj, daos_off_t offset, daos_size_t len)
int dfs_dup(dfs_t *dfs, dfs_obj_t *obj, int flags, dfs_obj_t **new_obj)
int dfs_obj_global2local(dfs_t *dfs, int flags, d_iov_t glob, dfs_obj_t **obj)
int dfs_chmod(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode)
int dfs_obj_set_oclass(dfs_t *dfs, dfs_obj_t *obj, int flags, daos_oclass_id_t cid)
int dfs_read(dfs_t *dfs, dfs_obj_t *obj, d_sg_list_t *sgl, daos_off_t off, daos_size_t *read_size, daos_event_t *ev)
int(* dfs_filler_cb_t)(dfs_t *dfs, dfs_obj_t *obj, const char name[], void *arg)
Definition daos_fs.h:472
int dfs_access(dfs_t *dfs, dfs_obj_t *parent, const char *name, int mask)
int dfs_lookup(dfs_t *dfs, const char *path, int flags, dfs_obj_t **obj, mode_t *mode, struct stat *stbuf)
int dfs_write(dfs_t *dfs, dfs_obj_t *obj, d_sg_list_t *sgl, daos_off_t off, daos_event_t *ev)
int dfs_iterate(dfs_t *dfs, dfs_obj_t *obj, daos_anchor_t *anchor, uint32_t *nr, size_t size, dfs_filler_cb_t op, void *arg)
int dfs_umount(dfs_t *dfs)
int dfs_readdir(dfs_t *dfs, dfs_obj_t *obj, daos_anchor_t *anchor, uint32_t *nr, struct dirent *dirs)
int dfs_global2local(daos_handle_t poh, daos_handle_t coh, int flags, d_iov_t glob, dfs_t **dfs)
int dfs_move(dfs_t *dfs, dfs_obj_t *parent, const char *name, dfs_obj_t *new_parent, const char *new_name, daos_obj_id_t *oid)
int dfs_mkdir(dfs_t *dfs, dfs_obj_t *parent, const char *name, mode_t mode, daos_oclass_id_t cid)
int dfs_local2global(dfs_t *dfs, d_iov_t *glob)
int dfs_ostat(dfs_t *dfs, dfs_obj_t *obj, struct stat *stbuf)
int dfs_obj_anchor_split(dfs_obj_t *obj, uint32_t *nr, daos_anchor_t *anchors)
int dfs_sync(dfs_t *dfs)
struct dfs dfs_t
Definition daos_fs.h:41
daos_prop_t * da_props
Definition daos_fs.h:65
uint64_t da_id
Definition daos_fs.h:59
daos_size_t da_chunk_size
Definition daos_fs.h:61
daos_oclass_id_t da_oclass_id
Definition daos_fs.h:63
daos_range_t * iod_rgs
Definition daos_fs.h:79
daos_size_t iod_nr
Definition daos_fs.h:77
daos_oclass_id_t doi_oclass_id
Definition daos_fs.h:84
daos_size_t doi_chunk_size
Definition daos_fs.h:86