Whamcloud - gitweb
263973314bdc1105f5c660200091115fc652bc96
[fs/lustre-release.git] / lustre / include / lustre / lustreapi.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTREAPI_H_
38 #define _LUSTREAPI_H_
39
40 /** \defgroup llapi llapi
41  *
42  * @{
43  */
44
45 #include <lustre/lustre_user.h>
46
47 typedef void (*llapi_cb_t)(char *obd_type_name, char *obd_name, char *obd_uuid, void *args);
48
49 /* lustreapi message severity level */
50 enum llapi_message_level {
51         LLAPI_MSG_OFF    = 0,
52         LLAPI_MSG_FATAL  = 1,
53         LLAPI_MSG_ERROR  = 2,
54         LLAPI_MSG_WARN   = 3,
55         LLAPI_MSG_NORMAL = 4,
56         LLAPI_MSG_INFO   = 5,
57         LLAPI_MSG_DEBUG  = 6,
58         LLAPI_MSG_MAX
59 };
60
61 /* the bottom three bits reserved for llapi_message_level */
62 #define LLAPI_MSG_MASK          0x00000007
63 #define LLAPI_MSG_NO_ERRNO      0x00000010
64
65 extern void llapi_msg_set_level(int level);
66 extern void llapi_error(int level, int rc, char *fmt, ...);
67 #define llapi_err_noerrno(level, fmt, a...)                             \
68         llapi_error((level) | LLAPI_MSG_NO_ERRNO, 0, fmt, ## a)
69 extern void llapi_printf(int level, char *fmt, ...);
70 extern int llapi_file_create(const char *name, unsigned long long stripe_size,
71                              int stripe_offset, int stripe_count,
72                              int stripe_pattern);
73 extern int llapi_file_open(const char *name, int flags, int mode,
74                            unsigned long long stripe_size, int stripe_offset,
75                            int stripe_count, int stripe_pattern);
76 extern int llapi_file_create_pool(const char *name,
77                                   unsigned long long stripe_size,
78                                   int stripe_offset, int stripe_count,
79                                   int stripe_pattern, char *pool_name);
80 extern int llapi_file_open_pool(const char *name, int flags, int mode,
81                                 unsigned long long stripe_size,
82                                 int stripe_offset, int stripe_count,
83                                 int stripe_pattern, char *pool_name);
84 extern int llapi_poollist(const char *name);
85 extern int llapi_get_poollist(const char *name, char **poollist, int list_size,
86                               char *buffer, int buffer_size);
87 extern int llapi_get_poolmembers(const char *poolname, char **members,
88                                  int list_size, char *buffer, int buffer_size);
89 extern int llapi_file_get_stripe(const char *path, struct lov_user_md *lum);
90 #define HAVE_LLAPI_FILE_LOOKUP
91 extern int llapi_file_lookup(int dirfd, const char *name);
92
93 #define VERBOSE_COUNT      0x1
94 #define VERBOSE_SIZE       0x2
95 #define VERBOSE_OFFSET     0x4
96 #define VERBOSE_POOL       0x8
97 #define VERBOSE_DETAIL     0x10
98 #define VERBOSE_OBJID      0x20
99 #define VERBOSE_GENERATION 0x40
100 #define VERBOSE_MDTINDEX   0x80
101 #define VERBOSE_ALL        (VERBOSE_COUNT | VERBOSE_SIZE | VERBOSE_OFFSET | \
102                             VERBOSE_POOL | VERBOSE_OBJID | VERBOSE_GENERATION)
103
104 struct find_param {
105         unsigned int maxdepth;
106         time_t  atime;
107         time_t  mtime;
108         time_t  ctime;
109         int     asign;  /* cannot be bitfields due to using pointers to */
110         int     csign;  /* access them during argument parsing. */
111         int     msign;
112         int     type;
113         int             size_sign:2,        /* these need to be signed values */
114                         stripesize_sign:2,
115                         stripecount_sign:2;
116         unsigned long long size;
117         unsigned long long size_units;
118         uid_t uid;
119         gid_t gid;
120
121         unsigned long   zeroend:1,
122                         recursive:1,
123                         exclude_pattern:1,
124                         exclude_type:1,
125                         exclude_obd:1,
126                         exclude_mdt:1,
127                         exclude_gid:1,
128                         exclude_uid:1,
129                         check_gid:1,            /* group ID */
130                         check_uid:1,            /* user ID */
131                         check_pool:1,           /* LOV pool name */
132                         check_size:1,           /* file size */
133                         exclude_pool:1,
134                         exclude_size:1,
135                         exclude_atime:1,
136                         exclude_mtime:1,
137                         exclude_ctime:1,
138                         get_lmv:1,              /* get MDT list from LMV */
139                         raw:1,                  /* do not fill in defaults */
140                         check_stripesize:1,     /* LOV stripe size */
141                         exclude_stripesize:1,
142                         check_stripecount:1,    /* LOV stripe count */
143                         exclude_stripecount:1;
144
145         int     verbose;
146         int     quiet;
147
148         /* regular expression */
149         char   *pattern;
150
151         char   *print_fmt;
152
153         struct  obd_uuid       *obduuid;
154         int                     num_obds;
155         int                     num_alloc_obds;
156         int                     obdindex;
157         int                    *obdindexes;
158
159         struct  obd_uuid       *mdtuuid;
160         int                     num_mdts;
161         int                     num_alloc_mdts;
162         int                     mdtindex;
163         int                    *mdtindexes;
164         int                     file_mdtindex;
165
166         int     lumlen;
167         struct  lov_user_mds_data *lmd;
168
169         char poolname[LOV_MAXPOOLNAME + 1];
170
171         int                     fp_lmv_count;
172         struct lmv_user_md      *fp_lmv_md;
173
174         unsigned long long stripesize;
175         unsigned long long stripesize_units;
176         unsigned long long stripecount;
177
178         /* In-process parameters. */
179         unsigned long   got_uuids:1,
180                         obds_printed:1,
181                         have_fileinfo:1;        /* file attrs and LOV xattr */
182         unsigned int    depth;
183         dev_t           st_dev;
184 };
185
186 extern int llapi_ostlist(char *path, struct find_param *param);
187 extern int llapi_uuid_match(char *real_uuid, char *search_uuid);
188 extern int llapi_getstripe(char *path, struct find_param *param);
189 extern int llapi_find(char *path, struct find_param *param);
190
191 extern int llapi_file_fget_mdtidx(int fd, int *mdtidx);
192 extern int llapi_dir_create_pool(const char *name, int flags, int stripe_offset,
193                                  int stripe_count, int stripe_pattern,
194                                  char *poolname);
195 int llapi_direntry_remove(char *dname);
196 extern int llapi_obd_statfs(char *path, __u32 type, __u32 index,
197                      struct obd_statfs *stat_buf,
198                      struct obd_uuid *uuid_buf);
199 extern int llapi_ping(char *obd_type, char *obd_name);
200 extern int llapi_target_check(int num_types, char **obd_types, char *dir);
201 extern int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid);
202 extern int llapi_file_get_lmv_uuid(const char *path, struct obd_uuid *lmv_uuid);
203 extern int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_uuid);
204 extern int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count);
205 extern int llapi_lmv_get_uuids(int fd, struct obd_uuid *uuidp, int *mdt_count);
206 extern int llapi_is_lustre_mnttype(const char *type);
207 extern int llapi_search_ost(char *fsname, char *poolname, char *ostname);
208 extern int llapi_get_obd_count(char *mnt, int *count, int is_mdt);
209 extern int parse_size(char *optarg, unsigned long long *size,
210                       unsigned long long *size_units, int bytes_spec);
211 extern int llapi_search_mounts(const char *pathname, int index,
212                                char *mntdir, char *fsname);
213 extern int llapi_search_fsname(const char *pathname, char *fsname);
214 extern int llapi_getname(const char *path, char *buf, size_t size);
215
216 extern void llapi_ping_target(char *obd_type, char *obd_name,
217                               char *obd_uuid, void *args);
218
219 extern int llapi_search_rootpath(char *pathname, const char *fsname);
220
221 struct mntent;
222 #define HAVE_LLAPI_IS_LUSTRE_MNT
223 extern int llapi_is_lustre_mnt(struct mntent *mnt);
224 extern int llapi_quotachown(char *path, int flag);
225 extern int llapi_quotacheck(char *mnt, int check_type);
226 extern int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk);
227 extern int llapi_quotactl(char *mnt, struct if_quotactl *qctl);
228 extern int llapi_target_iterate(int type_num, char **obd_type, void *args,
229                                 llapi_cb_t cb);
230 extern int llapi_get_connect_flags(const char *mnt, __u64 *flags);
231 extern int llapi_lsetfacl(int argc, char *argv[]);
232 extern int llapi_lgetfacl(int argc, char *argv[]);
233 extern int llapi_rsetfacl(int argc, char *argv[]);
234 extern int llapi_rgetfacl(int argc, char *argv[]);
235 extern int llapi_cp(int argc, char *argv[]);
236 extern int llapi_ls(int argc, char *argv[]);
237 extern int llapi_fid2path(const char *device, const char *fidstr, char *path,
238                           int pathlen, long long *recno, int *linkno);
239 extern int llapi_path2fid(const char *path, lustre_fid *fid);
240 extern int llapi_fd2fid(const int fd, lustre_fid *fid);
241
242 extern int llapi_get_version(char *buffer, int buffer_size, char **version);
243 extern int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags);
244 extern int llapi_hsm_state_get(const char *path, struct hsm_user_state *hus);
245 extern int llapi_hsm_state_set(const char *path, __u64 setmask, __u64 clearmask,
246                                __u32 archive_id);
247
248 extern int llapi_create_volatile_idx(char *directory, int idx, int mode);
249 static inline int llapi_create_volatile(char *directory, int mode)
250 {
251         return llapi_create_volatile_idx(directory, -1, mode);
252 }
253
254
255 extern int llapi_fswap_layouts(const int fd1, const int fd2,
256                                __u64 dv1, __u64 dv2, __u64 flags);
257 extern int llapi_swap_layouts(const char *path1, const char *path2,
258                               __u64 dv1, __u64 dv2, __u64 flags);
259
260 /* Changelog interface.  priv is private state, managed internally
261    by these functions */
262 #define CHANGELOG_FLAG_FOLLOW 0x01   /* Not yet implemented */
263 #define CHANGELOG_FLAG_BLOCK  0x02   /* Blocking IO makes sense in case of
264    slow user parsing of the records, but it also prevents us from cleaning
265    up if the records are not consumed. */
266
267 /* Records received are in extentded format now, though most of them are still
268  * written in disk in changelog_rec format (to save space and time), it's
269  * converted to extented format in the lustre api to ease changelog analysis. */
270 #define HAVE_CHANGELOG_EXTEND_REC 1
271
272 extern int llapi_changelog_start(void **priv, int flags, const char *mdtname,
273                                  long long startrec);
274 extern int llapi_changelog_fini(void **priv);
275 extern int llapi_changelog_recv(void *priv, struct changelog_ext_rec **rech);
276 extern int llapi_changelog_free(struct changelog_ext_rec **rech);
277 /* Allow records up to endrec to be destroyed; requires registered id. */
278 extern int llapi_changelog_clear(const char *mdtname, const char *idstr,
279                                  long long endrec);
280
281 /* HSM copytool interface.
282  * priv is private state, managed internally by these functions
283  */
284 struct hsm_copytool_private;
285 extern int llapi_hsm_copytool_start(struct hsm_copytool_private **priv,
286                                     char *fsname, int flags,
287                                     int archive_count, int *archives);
288 extern int llapi_hsm_copytool_fini(struct hsm_copytool_private **priv);
289 extern int llapi_hsm_copytool_recv(struct hsm_copytool_private *priv,
290                                    struct hsm_action_list **hal, int *msgsize);
291 extern int llapi_hsm_copytool_free(struct hsm_action_list **hal);
292 extern int llapi_hsm_copy_start(char *mnt, struct hsm_copy *copy,
293                                 const struct hsm_action_item *hai);
294 extern int llapi_hsm_copy_end(char *mnt, struct hsm_copy *copy,
295                               const struct hsm_progress *hp);
296 extern int llapi_hsm_progress(char *mnt, struct hsm_progress *hp);
297 extern int llapi_hsm_import(const char *dst, int archive, struct stat *st,
298                             unsigned long long stripe_size, int stripe_offset,
299                             int stripe_count, int stripe_pattern,
300                             char *pool_name, lustre_fid *newfid);
301
302 /* HSM user interface */
303 extern struct hsm_user_request *llapi_hsm_user_request_alloc(int itemcount,
304                                                              int data_len);
305 extern int llapi_hsm_request(char *mnt, struct hsm_user_request *request);
306 extern int llapi_hsm_current_action(const char *path,
307                                     struct hsm_current_action *hca);
308 /** @} llapi */
309
310 #endif
311
312
313