Whamcloud - gitweb
LU-2430 mdd: add lfs mv to migrate inode.
[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 <stdarg.h>
46 #include <lustre/lustre_user.h>
47
48 typedef void (*llapi_cb_t)(char *obd_type_name, char *obd_name, char *obd_uuid,
49                            void *args);
50
51 /* lustreapi message severity level */
52 enum llapi_message_level {
53         LLAPI_MSG_OFF    = 0,
54         LLAPI_MSG_FATAL  = 1,
55         LLAPI_MSG_ERROR  = 2,
56         LLAPI_MSG_WARN   = 3,
57         LLAPI_MSG_NORMAL = 4,
58         LLAPI_MSG_INFO   = 5,
59         LLAPI_MSG_DEBUG  = 6,
60         LLAPI_MSG_MAX
61 };
62
63 typedef void (*llapi_log_callback_t)(enum llapi_message_level level, int err,
64                                      const char *fmt, va_list ap);
65
66
67 /* the bottom three bits reserved for llapi_message_level */
68 #define LLAPI_MSG_MASK          0x00000007
69 #define LLAPI_MSG_NO_ERRNO      0x00000010
70
71 extern void llapi_msg_set_level(int level);
72 extern llapi_log_callback_t llapi_error_callback_set(llapi_log_callback_t cb);
73 extern llapi_log_callback_t llapi_info_callback_set(llapi_log_callback_t cb);
74
75 void llapi_error(enum llapi_message_level level, int err, const char *fmt, ...)
76         __attribute__((__format__(__printf__, 3, 4)));
77 #define llapi_err_noerrno(level, fmt, a...)                     \
78         llapi_error((level) | LLAPI_MSG_NO_ERRNO, 0, fmt, ## a)
79 void llapi_printf(enum llapi_message_level level, const char *fmt, ...)
80         __attribute__((__format__(__printf__, 2, 3)));
81
82 extern int llapi_file_create(const char *name, unsigned long long stripe_size,
83                              int stripe_offset, int stripe_count,
84                              int stripe_pattern);
85 extern int llapi_file_open(const char *name, int flags, int mode,
86                            unsigned long long stripe_size, int stripe_offset,
87                            int stripe_count, int stripe_pattern);
88 extern int llapi_file_create_pool(const char *name,
89                                   unsigned long long stripe_size,
90                                   int stripe_offset, int stripe_count,
91                                   int stripe_pattern, char *pool_name);
92 extern int llapi_file_open_pool(const char *name, int flags, int mode,
93                                 unsigned long long stripe_size,
94                                 int stripe_offset, int stripe_count,
95                                 int stripe_pattern, char *pool_name);
96 extern int llapi_poollist(const char *name);
97 extern int llapi_get_poollist(const char *name, char **poollist, int list_size,
98                               char *buffer, int buffer_size);
99 extern int llapi_get_poolmembers(const char *poolname, char **members,
100                                  int list_size, char *buffer, int buffer_size);
101 extern int llapi_file_get_stripe(const char *path, struct lov_user_md *lum);
102 #define HAVE_LLAPI_FILE_LOOKUP
103 extern int llapi_file_lookup(int dirfd, const char *name);
104
105 #define VERBOSE_COUNT           0x1
106 #define VERBOSE_SIZE            0x2
107 #define VERBOSE_OFFSET          0x4
108 #define VERBOSE_POOL            0x8
109 #define VERBOSE_DETAIL          0x10
110 #define VERBOSE_OBJID           0x20
111 #define VERBOSE_GENERATION      0x40
112 #define VERBOSE_MDTINDEX        0x80
113 #define VERBOSE_LAYOUT          0x100
114 #define VERBOSE_ALL             (VERBOSE_COUNT | VERBOSE_SIZE | \
115                                  VERBOSE_OFFSET | VERBOSE_POOL | \
116                                  VERBOSE_OBJID | VERBOSE_GENERATION |\
117                                  VERBOSE_LAYOUT)
118
119 struct find_param {
120         unsigned int             maxdepth;
121         time_t                   atime;
122         time_t                   mtime;
123         time_t                   ctime;
124         /* cannot be bitfields due to using pointers to */
125         int                      asign;
126         /* access them during argument parsing. */
127         int                      csign;
128         int                      msign;
129         int                      type;
130         /* these need to be signed values */
131         int                      size_sign:2,
132                                  stripesize_sign:2,
133                                  stripecount_sign:2;
134         unsigned long long       size;
135         unsigned long long       size_units;
136         uid_t                    uid;
137         gid_t                    gid;
138
139         unsigned long            zeroend:1,
140                                  recursive:1,
141                                  exclude_pattern:1,
142                                  exclude_type:1,
143                                  exclude_obd:1,
144                                  exclude_mdt:1,
145                                  exclude_gid:1,
146                                  exclude_uid:1,
147                                  check_gid:1,           /* group ID */
148                                  check_uid:1,           /* user ID */
149                                  check_pool:1,          /* LOV pool name */
150                                  check_size:1,          /* file size */
151                                  exclude_pool:1,
152                                  exclude_size:1,
153                                  exclude_atime:1,
154                                  exclude_mtime:1,
155                                  exclude_ctime:1,
156                                  get_lmv:1,     /* get MDT list from LMV */
157                                  raw:1,         /* do not fill in defaults */
158                                  check_stripesize:1,    /* LOV stripe size */
159                                  exclude_stripesize:1,
160                                  check_stripecount:1,   /* LOV stripe count */
161                                  exclude_stripecount:1,
162                                  check_layout:1,
163                                  exclude_layout:1,
164                                  get_default_lmv:1, /* Get default LMV */
165                                  migrate:1;
166
167         int                      verbose;
168         int                      quiet;
169
170         /* regular expression */
171         char                    *pattern;
172
173         char                    *print_fmt;
174
175         struct  obd_uuid        *obduuid;
176         int                      num_obds;
177         int                      num_alloc_obds;
178         int                      obdindex;
179         int                     *obdindexes;
180
181         struct  obd_uuid        *mdtuuid;
182         int                      num_mdts;
183         int                      num_alloc_mdts;
184         int                      mdtindex;
185         int                     *mdtindexes;
186         int                      file_mdtindex;
187
188         int                      lumlen;
189         struct  lov_user_mds_data       *lmd;
190
191         char                    poolname[LOV_MAXPOOLNAME + 1];
192
193         int                      fp_lmv_count;
194         struct lmv_user_md      *fp_lmv_md;
195
196         unsigned long long       stripesize;
197         unsigned long long       stripesize_units;
198         unsigned long long       stripecount;
199         __u32                    layout;
200
201         /* In-process parameters. */
202         unsigned long            got_uuids:1,
203                                  obds_printed:1,
204                                  have_fileinfo:1; /* file attrs and LOV xattr */
205         unsigned int             depth;
206         dev_t                    st_dev;
207         __u64                    padding1;
208         __u64                    padding2;
209         __u64                    padding3;
210         __u64                    padding4;
211 };
212
213 extern int llapi_ostlist(char *path, struct find_param *param);
214 extern int llapi_uuid_match(char *real_uuid, char *search_uuid);
215 extern int llapi_getstripe(char *path, struct find_param *param);
216 extern int llapi_find(char *path, struct find_param *param);
217
218 extern int llapi_file_fget_mdtidx(int fd, int *mdtidx);
219 extern int llapi_dir_set_default_lmv_stripe(const char *name, int stripe_offset,
220                                            int stripe_count, int stripe_pattern,
221                                             const char *pool_name);
222 extern int llapi_dir_create_pool(const char *name, int flags, int stripe_offset,
223                                  int stripe_count, int stripe_pattern,
224                                  const char *poolname);
225 int llapi_direntry_remove(char *dname);
226 extern int llapi_obd_statfs(char *path, __u32 type, __u32 index,
227                      struct obd_statfs *stat_buf,
228                      struct obd_uuid *uuid_buf);
229 extern int llapi_ping(char *obd_type, char *obd_name);
230 extern int llapi_target_check(int num_types, char **obd_types, char *dir);
231 extern int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid);
232 extern int llapi_file_get_lmv_uuid(const char *path, struct obd_uuid *lmv_uuid);
233 extern int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_uuid);
234 extern int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count);
235 extern int llapi_lmv_get_uuids(int fd, struct obd_uuid *uuidp, int *mdt_count);
236 extern int llapi_is_lustre_mnttype(const char *type);
237 extern int llapi_search_ost(char *fsname, char *poolname, char *ostname);
238 extern int llapi_get_obd_count(char *mnt, int *count, int is_mdt);
239 extern int llapi_parse_size(const char *optarg, unsigned long long *size,
240                             unsigned long long *size_units, int bytes_spec);
241 extern int llapi_search_mounts(const char *pathname, int index,
242                                char *mntdir, char *fsname);
243 extern int llapi_search_fsname(const char *pathname, char *fsname);
244 extern int llapi_getname(const char *path, char *buf, size_t size);
245
246 extern void llapi_ping_target(char *obd_type, char *obd_name,
247                               char *obd_uuid, void *args);
248
249 extern int llapi_search_rootpath(char *pathname, const char *fsname);
250 extern int llapi_nodemap_exists(const char *name);
251 extern int llapi_mv(char *path, struct find_param *param);
252
253 struct mntent;
254 #define HAVE_LLAPI_IS_LUSTRE_MNT
255 extern int llapi_is_lustre_mnt(struct mntent *mnt);
256 extern int llapi_quotachown(char *path, int flag);
257 extern int llapi_quotacheck(char *mnt, int check_type);
258 extern int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk);
259 extern int llapi_quotactl(char *mnt, struct if_quotactl *qctl);
260 extern int llapi_target_iterate(int type_num, char **obd_type, void *args,
261                                 llapi_cb_t cb);
262 extern int llapi_get_connect_flags(const char *mnt, __u64 *flags);
263 extern int llapi_lsetfacl(int argc, char *argv[]);
264 extern int llapi_lgetfacl(int argc, char *argv[]);
265 extern int llapi_rsetfacl(int argc, char *argv[]);
266 extern int llapi_rgetfacl(int argc, char *argv[]);
267 extern int llapi_cp(int argc, char *argv[]);
268 extern int llapi_ls(int argc, char *argv[]);
269 extern int llapi_fid2path(const char *device, const char *fidstr, char *path,
270                           int pathlen, long long *recno, int *linkno);
271 extern int llapi_path2fid(const char *path, lustre_fid *fid);
272 extern int llapi_fd2fid(const int fd, lustre_fid *fid);
273
274 extern int llapi_get_version(char *buffer, int buffer_size, char **version);
275 extern int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags);
276 extern int llapi_hsm_state_get_fd(int fd, struct hsm_user_state *hus);
277 extern int llapi_hsm_state_get(const char *path, struct hsm_user_state *hus);
278 extern int llapi_hsm_state_set_fd(int fd, __u64 setmask, __u64 clearmask,
279                                   __u32 archive_id);
280 extern int llapi_hsm_state_set(const char *path, __u64 setmask, __u64 clearmask,
281                                __u32 archive_id);
282
283 extern int llapi_create_volatile_idx(char *directory, int idx, int mode);
284 static inline int llapi_create_volatile(char *directory, int mode)
285 {
286         return llapi_create_volatile_idx(directory, -1, mode);
287 }
288
289
290 extern int llapi_fswap_layouts(const int fd1, const int fd2,
291                                __u64 dv1, __u64 dv2, __u64 flags);
292 extern int llapi_swap_layouts(const char *path1, const char *path2,
293                               __u64 dv1, __u64 dv2, __u64 flags);
294
295 /* Changelog interface.  priv is private state, managed internally
296    by these functions */
297 #define CHANGELOG_FLAG_FOLLOW 0x01   /* Not yet implemented */
298 #define CHANGELOG_FLAG_BLOCK  0x02   /* Blocking IO makes sense in case of
299    slow user parsing of the records, but it also prevents us from cleaning
300    up if the records are not consumed. */
301
302 /* Records received are in extentded format now, though most of them are still
303  * written in disk in changelog_rec format (to save space and time), it's
304  * converted to extented format in the lustre api to ease changelog analysis. */
305 #define HAVE_CHANGELOG_EXTEND_REC 1
306
307 extern int llapi_changelog_start(void **priv, int flags, const char *mdtname,
308                                  long long startrec);
309 extern int llapi_changelog_fini(void **priv);
310 extern int llapi_changelog_recv(void *priv, struct changelog_ext_rec **rech);
311 extern int llapi_changelog_free(struct changelog_ext_rec **rech);
312 /* Allow records up to endrec to be destroyed; requires registered id. */
313 extern int llapi_changelog_clear(const char *mdtname, const char *idstr,
314                                  long long endrec);
315
316 /* HSM copytool interface.
317  * priv is private state, managed internally by these functions
318  */
319 struct hsm_copytool_private;
320 struct hsm_copyaction_private;
321
322 extern int llapi_hsm_copytool_register(struct hsm_copytool_private **priv,
323                                        const char *mnt, int flags,
324                                        int archive_count, int *archives);
325 extern int llapi_hsm_copytool_unregister(struct hsm_copytool_private **priv);
326 extern int llapi_hsm_copytool_recv(struct hsm_copytool_private *priv,
327                                    struct hsm_action_list **hal, int *msgsize);
328 extern void llapi_hsm_action_list_free(struct hsm_action_list **hal);
329 extern int llapi_hsm_action_begin(struct hsm_copyaction_private **phcp,
330                                   const struct hsm_copytool_private *ct,
331                                   const struct hsm_action_item *hai,
332                                   int restore_mdt_index, int restore_open_flags,
333                                   bool is_error);
334 extern int llapi_hsm_action_end(struct hsm_copyaction_private **phcp,
335                                 const struct hsm_extent *he,
336                                 int hp_flags, int errval);
337 extern int llapi_hsm_action_progress(struct hsm_copyaction_private *hcp,
338                                      const struct hsm_extent *he, int hp_flags);
339 extern int llapi_hsm_action_get_dfid(const struct hsm_copyaction_private *hcp,
340                                      lustre_fid *fid);
341 extern int llapi_hsm_action_get_fd(const struct hsm_copyaction_private *hcp);
342 extern int llapi_hsm_import(const char *dst, int archive, const struct stat *st,
343                             unsigned long long stripe_size, int stripe_offset,
344                             int stripe_count, int stripe_pattern,
345                             char *pool_name, lustre_fid *newfid);
346
347 /* HSM user interface */
348 extern struct hsm_user_request *llapi_hsm_user_request_alloc(int itemcount,
349                                                              int data_len);
350 extern int llapi_hsm_request(const char *path,
351                              const struct hsm_user_request *request);
352 extern int llapi_hsm_current_action(const char *path,
353                                     struct hsm_current_action *hca);
354 /** @} llapi */
355
356 #endif
357
358
359