Whamcloud - gitweb
b=11694
[fs/lustre-release.git] / lustre / include / lustre / liblustreapi.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *   This file is part of Lustre, http://www.lustre.org
5  */
6 #ifndef _LIBLUSTREAPI_H_
7 #define _LIBLUSTREAPI_H_
8
9 #include <lustre/lustre_user.h>
10
11 /* Initially allocate for these many OSTs, realloc if needed */
12 #define INIT_ALLOC_NUM_OSTS     1024
13
14 /* Maximum number of osts that can be specified to lfs find */
15 #define FIND_MAX_OSTS   1024
16
17 typedef void (*llapi_cb_t)(char *obd_type_name, char *obd_name, char *obd_uuid, void *args);
18
19 /* liblustreapi message severity level */
20 enum llapi_message_level {
21         LLAPI_MSG_OFF    = 0,
22         LLAPI_MSG_FATAL  = 1,
23         LLAPI_MSG_ERROR  = 2,
24         LLAPI_MSG_WARN   = 3,
25         LLAPI_MSG_NORMAL = 4,
26         LLAPI_MSG_INFO   = 5,
27         LLAPI_MSG_DEBUG  = 6,
28         LLAPI_MSG_MAX
29 };
30
31 /* the bottom three bits reserved for llapi_message_level */
32 #define LLAPI_MSG_MASK          0x00000007
33 #define LLAPI_MSG_NO_ERRNO      0x00000010 
34
35 /* liblustreapi.c */
36 extern void llapi_msg_set_level(int level);
37 extern void llapi_err(int level, char *fmt, ...);
38 extern void llapi_printf(int level, char *fmt, ...);
39 extern int llapi_file_create(const char *name, unsigned long stripe_size,
40                              int stripe_offset, int stripe_count,
41                              int stripe_pattern);
42 extern int llapi_file_open(const char *name, int flags, int mode,
43                            unsigned long stripe_size, int stripe_offset,
44                            int stripe_count, int stripe_pattern);
45 extern int llapi_file_get_stripe(const char *path, struct lov_user_md *lum);
46 #define HAVE_LLAPI_FILE_LOOKUP
47 extern int llapi_file_lookup(int dirfd, const char *name);
48  
49 struct find_param {
50         unsigned int maxdepth;
51         time_t  atime;
52         time_t  mtime;
53         time_t  ctime;
54         int     asign;
55         int     csign;
56         int     msign;
57         int     type;
58         unsigned long long size;
59         int     size_sign;
60         unsigned long long size_units;
61
62         unsigned zeroend:1, recursive:1, got_uuids:1, obds_printed:1,
63                  exclude_pattern:1, exclude_type:1, have_fileinfo:1;
64
65         int     verbose;
66         int     quiet;
67
68         /* regular expression */
69         char   *pattern;
70
71         char   *print_fmt;
72
73         struct  obd_uuid        *obduuid;
74         int                     num_obds;
75         int                     num_alloc_obds;
76         int                     obdindex;
77         int                     *obdindexes;
78
79         int     lumlen;
80         struct  lov_user_mds_data *lmd;
81
82         /* In-precess parameters. */
83         unsigned int depth;
84         dev_t   st_dev;
85 };
86
87 extern int llapi_getstripe(char *path, struct find_param *param);
88 extern int llapi_find(char *path, struct find_param *param);
89
90 extern int llapi_obd_statfs(char *path, __u32 type, __u32 index,
91                      struct obd_statfs *stat_buf,
92                      struct obd_uuid *uuid_buf);
93 extern int llapi_ping(char *obd_type, char *obd_name);
94 extern int llapi_target_check(int num_types, char **obd_types, char *dir);
95 extern int llapi_catinfo(char *dir, char *keyword, char *node_name);
96 extern int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count);
97 extern int llapi_is_lustre_mnttype(const char *type);
98 extern int parse_size(char *optarg, unsigned long long *size,
99                       unsigned long long *size_units);
100 struct mntent;
101 #define HAVE_LLAPI_IS_LUSTRE_MNT
102 extern int llapi_is_lustre_mnt(struct mntent *mnt);
103 extern int llapi_quotachown(char *path, int flag);
104 extern int llapi_quotacheck(char *mnt, int check_type);
105 extern int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk);
106 extern int llapi_quotactl(char *mnt, struct if_quotactl *qctl);
107 extern int llapi_target_iterate(int type_num, char **obd_type, void *args, llapi_cb_t cb);
108 extern int llapi_getfacl(char *fname, char *cmd);
109 extern int llapi_setfacl(char *fname, char *cmd);
110 #endif