Whamcloud - gitweb
LU-8191 liblustre: add missing functions to header
[fs/lustre-release.git] / lustre / utils / liblustreapi_fid.c
1 /*
2  * LGPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * All rights reserved. This program and the accompanying materials
7  * are made available under the terms of the GNU Lesser General Public License
8  * (LGPL) version 2.1 or (at your discretion) any later version.
9  * (LGPL) version 2.1 accompanies this distribution, and is available at
10  * http://www.gnu.org/licenses/lgpl-2.1.html
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * LGPL HEADER END
18  */
19 /*
20  * lustre/utils/liblustreapi_fid.c
21  *
22  * lustreapi library for FID mapping calls for determining the pathname
23  * of Lustre files from the File IDentifier.
24  *
25  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
26  * Use is subject to license terms.
27  *
28  * Copyright (c) 2011, 2017, Intel Corporation.
29  *
30  * Copyright (c) 2018, 2019, Data Direct Networks
31  */
32
33 /* for O_DIRECTORY and struct file_handle */
34 #ifndef _GNU_SOURCE
35 #define _GNU_SOURCE
36 #endif
37
38 #include <ctype.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <sys/ioctl.h>
44 #include <sys/xattr.h>
45 #include <unistd.h>
46 #include <sched.h>
47
48 #include <libcfs/util/ioctl.h>
49 #include <libcfs/util/hash.h>
50 #include <lustre/lustreapi.h>
51 #include <linux/lustre/lustre_fid.h>
52 #include "lustreapi_internal.h"
53
54 /* strip instances of // (DNE striped directory) when copying to reply buffer */
55 static int copy_strip_dne_path(const char *src, char *tgt, size_t tgtlen)
56 {
57         const char *a;
58         char *b;
59
60         for (a = src, b = tgt; *a != '\0' && b - tgt < tgtlen; a++) {
61                 if (*a == '/' && *(a + 1) == '/')
62                         continue;
63                 *b = *a;
64                 b++;
65         }
66         if (b - tgt >= tgtlen) {
67                 errno = ERANGE;
68                 return -errno;
69         }
70
71         *b = '\0';
72
73         if (tgt[0] == '\0') { /* ROOT path */
74                 tgt[0] = '/';
75                 tgt[1] = '\0';
76         }
77
78         return 0;
79 }
80
81 /**
82  * parse a FID from a string into a binary lu_fid
83  *
84  * Only the format of the FID is checked, not whether the numeric value
85  * contains a valid FID sequence or object ID or version. Optional leading
86  * whitespace and '[' from the standard FID format are skipped.
87  *
88  * \param[in] fidstr    string to be parsed
89  * \param[out] fid      Lustre File IDentifier
90  * \param[out] endptr   pointer to first invalid/unused character in @fidstr
91  *
92  * \retval      0 on success
93  * \retval      -errno on failure
94  */
95 int llapi_fid_parse(const char *fidstr, struct lu_fid *fid, char **endptr)
96 {
97         unsigned long long val;
98         bool bracket = false;
99         char *end = (char *)fidstr;
100         int rc = 0;
101
102         if (!fidstr || !fid) {
103                 rc = -EINVAL;
104                 goto out;
105         }
106
107         while (isspace(*fidstr))
108                 fidstr++;
109         while (*fidstr == '[') {
110                 bracket = true;
111                 fidstr++;
112         }
113
114         /* Parse the FID fields individually with strtoull() instead of a
115          * single call to sscanf() so that the character after the FID can
116          * be returned in @endptr, in case the string has more to parse.
117          * If values are present, but too large for the field, continue
118          * parsing to consume the whole FID and return -ERANGE at the end.
119          */
120         errno = 0;
121         val = strtoull(fidstr, &end, 0);
122         if ((val == 0 && errno == EINVAL) || *end != ':') {
123                 rc = -EINVAL;
124                 goto out;
125         }
126         if (val >= UINT64_MAX)
127                 rc = -ERANGE;
128         else
129                 fid->f_seq = val;
130
131         fidstr = end + 1; /* skip first ':', checked above */
132         errno = 0;
133         val = strtoull(fidstr, &end, 0);
134         if ((val == 0 && errno == EINVAL) || *end != ':') {
135                 rc = -EINVAL;
136                 goto out;
137         }
138         if (val > UINT32_MAX)
139                 rc = -ERANGE;
140         else
141                 fid->f_oid = val;
142
143         fidstr = end + 1; /* skip second ':', checked above */
144         errno = 0;
145         val = strtoull(fidstr, &end, 0);
146         if (val == 0 && errno == EINVAL) {
147                 rc = -EINVAL;
148                 goto out;
149         }
150         if (val > UINT32_MAX)
151                 rc = -ERANGE;
152         else
153                 fid->f_ver = val;
154
155         if (bracket && *end == ']')
156                 end++;
157 out:
158         if (endptr)
159                 *endptr = end;
160
161         errno = -rc;
162         return rc;
163 }
164
165 static inline char *get_gf_path(struct getinfo_fid2path *gf)
166 {
167 #ifndef HAVE_FID2PATH_ANON_UNIONS
168         return gf->gf_u.gf_path;
169 #else
170         return gf->gf_path;
171 #endif
172 }
173
174 int llapi_fid2path_at(int mnt_fd, const struct lu_fid *fid,
175                       char *path_buf, int path_buf_size,
176                       long long *recno, int *linkno)
177 {
178         struct getinfo_fid2path *gf = NULL;
179         int rc;
180
181         gf = calloc(1, sizeof(*gf) + path_buf_size);
182         if (gf == NULL) {
183                 rc = -ENOMEM;
184                 goto out;
185         }
186
187         gf->gf_fid = *fid;
188         if (recno != NULL)
189                 gf->gf_recno = *recno;
190
191         if (linkno != NULL)
192                 gf->gf_linkno = *linkno;
193
194         gf->gf_pathlen = path_buf_size;
195
196         rc = ioctl(mnt_fd, OBD_IOC_FID2PATH, gf);
197         if (rc) {
198                 rc = -errno;
199                 goto out;
200         }
201
202         rc = copy_strip_dne_path(get_gf_path(gf), path_buf, path_buf_size);
203
204         if (recno != NULL)
205                 *recno = gf->gf_recno;
206
207         if (linkno != NULL)
208                 *linkno = gf->gf_linkno;
209 out:
210         free(gf);
211
212         return rc;
213 }
214
215 int llapi_fid2path(const char *path_or_device, const char *fidstr, char *path,
216                    int pathlen, long long *recno, int *linkno)
217 {
218         struct lu_fid fid;
219         int mnt_fd = -1;
220         int rc;
221
222         if (path_or_device == NULL || *path_or_device == '\0') {
223                 rc = -EINVAL;
224                 goto out;
225         }
226
227         rc = llapi_fid_parse(fidstr, &fid, NULL);
228         if (rc < 0) {
229                 llapi_err_noerrno(LLAPI_MSG_ERROR,
230                                   "bad FID format '%s', should be [seq:oid:ver] (e.g. "DFID")\n",
231                                   fidstr,
232                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
233                 goto out;
234         }
235
236         rc = llapi_root_path_open(path_or_device, &mnt_fd);
237         if (rc < 0)
238                 goto out;
239
240         /* mnt_fd is cached internally, no need to close it */
241         rc = llapi_fid2path_at(mnt_fd, &fid, path, pathlen, recno, linkno);
242         close(mnt_fd);
243
244 out:
245         return rc;
246 }
247
248 int llapi_get_mdt_index_by_fid(int fd, const struct lu_fid *fid,
249                                int *mdt_index)
250 {
251         int rc;
252
253         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
254         if (rc < 0)
255                 return -errno;
256
257         if (mdt_index)
258                 *mdt_index = rc;
259
260         return rc;
261 }
262
263 static int fid_from_lma(const char *path, int fd, struct lu_fid *fid)
264 {
265 #ifdef HAVE_SERVER_SUPPORT
266         struct lustre_mdt_attrs *lma;
267         char buf[512];
268         int rc = -1;
269
270         if (path == NULL)
271                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
272         else
273                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
274         if (rc < 0)
275                 return -errno;
276
277         lma = (struct lustre_mdt_attrs *)buf;
278         memcpy(fid, &lma->lma_self_fid, sizeof(lma->lma_self_fid));
279         return 0;
280 #else
281         return -ENOTSUP;
282 #endif
283 }
284
285 int llapi_fd2fid(int fd, struct lu_fid *fid)
286 {
287         const struct lustre_file_handle *data;
288         struct file_handle *handle;
289         char buffer[sizeof(*handle) + MAX_HANDLE_SZ];
290         int mount_id;
291
292         memset(fid, 0, sizeof(*fid));
293
294         /* A lustre file handle should always fit in a 128 bytes long buffer
295          * (which is the value of MAX_HANDLE_SZ at the time this is written)
296          */
297         handle = (struct file_handle *)buffer;
298         handle->handle_bytes = MAX_HANDLE_SZ;
299
300         if (name_to_handle_at(fd, "", handle, &mount_id, AT_EMPTY_PATH)) {
301                 if (errno == EOVERFLOW)
302                         /* A Lustre file_handle would have fit */
303                         return -ENOTTY;
304                 return -errno;
305         }
306
307         if (handle->handle_type != FILEID_LUSTRE)
308                 /* Might be a locally mounted Lustre target */
309                 return fid_from_lma(NULL, fd, fid);
310         if (handle->handle_bytes < sizeof(*fid))
311                 /* Unexpected error try and recover */
312                 return fid_from_lma(NULL, fd, fid);
313
314         /* Parse the FID out of the handle */
315         data = (const struct lustre_file_handle *)handle->f_handle;
316         memcpy(fid, &data->lfh_child, sizeof(data->lfh_child));
317
318         return 0;
319 }
320
321 int llapi_path2fid(const char *path, struct lu_fid *fid)
322 {
323         int fd, rc;
324
325         fd = open(path, O_RDONLY | O_PATH | O_CLOEXEC | O_NOFOLLOW);
326         if (fd < 0)
327                 return -errno;
328
329         rc = llapi_fd2fid(fd, fid);
330         close(fd);
331
332         if (rc == -EBADF)
333                 /* Might be a locally mounted Lustre target
334                  *
335                  * Cannot use `fd' as fgetxattr() does not work on file
336                  * descriptor opened with O_PATH
337                  */
338                 rc = fid_from_lma(path, -1, fid);
339
340         return rc;
341 }
342
343 int llapi_fd2parent(int fd, unsigned int linkno, struct lu_fid *parent_fid,
344                     char *name, size_t name_size)
345 {
346         struct getparent *gp;
347         int rc;
348
349         if (name && name_size <= 1) {
350                 errno = EOVERFLOW;
351                 return -errno;
352         }
353
354         gp = malloc(sizeof(*gp) + name_size);
355         if (gp == NULL) {
356                 errno = ENOMEM;
357                 return -errno;
358         }
359
360         gp->gp_linkno = linkno;
361         gp->gp_name_size = name_size;
362
363         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
364         if (rc < 0) {
365                 rc = -errno;
366                 goto err_free;
367         }
368
369         if (parent_fid)
370                 *parent_fid = gp->gp_fid;
371
372         if (name)
373                 rc = copy_strip_dne_path(gp->gp_name, name, name_size);
374
375 err_free:
376         free(gp);
377         return rc;
378 }
379
380 int llapi_path2parent(const char *path, unsigned int linkno,
381                       struct lu_fid *parent_fid, char *name, size_t name_size)
382 {
383         int fd;
384         int rc;
385
386         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
387         if (fd < 0)
388                 return -errno;
389
390         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
391         close(fd);
392
393         return rc;
394 }
395
396 /**
397  * Convert a struct lu_fid into a struct file_handle
398  *
399  * \param[out] _handle  a newly allocated struct file_handle on success
400  * \param[in]  fid      a Lustre File IDentifier
401  *
402  * \retval              0 on success
403  * \retval              negative errno if an error occured
404  *
405  * On success, the caller is responsible for freeing \p handle.
406  */
407 int llapi_fid_to_handle(struct file_handle **_handle, const struct lu_fid *fid)
408 {
409         struct lustre_file_handle *lfh;
410         struct file_handle *handle;
411
412         if (!_handle || !fid)
413                 return -EINVAL;
414
415         handle = calloc(1, sizeof(*handle) + sizeof(*lfh));
416         if (handle == NULL)
417                 return -errno;
418
419         handle->handle_bytes = sizeof(*lfh);
420         handle->handle_type = FILEID_LUSTRE;
421         lfh = (struct lustre_file_handle *)handle->f_handle;
422         /* Only lfh->lfh_child needs to be set */
423         lfh->lfh_child = *fid;
424
425         *_handle = handle;
426         return 0;
427 }
428
429 /**
430  * Attempt to open a file with a Lustre File IDentifier
431  *
432  * \param[in] lustre_fd         an open file descriptor for an object in lustre
433  * \param[in] fid               a Lustre File IDentifier of the file to open
434  * \param[in] flags             open(2) flags
435  *
436  * \retval                      non-negative file descriptor on success
437  * \retval                      negative errno if an error occured
438  */
439 int llapi_open_by_fid_at(int lustre_fd, const struct lu_fid *fid, int flags)
440 {
441         struct file_handle *handle = NULL;
442         int fd;
443         int rc;
444
445         rc = llapi_fid_to_handle(&handle, fid);
446         if (rc < 0)
447                 return rc;
448
449         /* Sadly open_by_handle_at() only works for root, but this is also the
450          * case for the original approach of opening $MOUNT/.lustre/FID.
451          */
452         fd = open_by_handle_at(lustre_fd, handle, flags);
453         rc = -errno;
454         free(handle);
455
456         return fd < 0 ? rc : fd;
457 }
458
459 /**
460  * Attempt to open a file with Lustre file identifier \a fid
461  * and return an open file descriptor.
462  *
463  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
464  * \param[in] fid               Lustre file identifier of file to open
465  * \param[in] flags             open() flags
466  *
467  * \retval                      non-negative file descriptor on successful open
468  * \retval                      negative errno if an error occurred
469  */
470 int llapi_open_by_fid(const char *lustre_dir, const struct lu_fid *fid,
471                       int flags)
472 {
473         int mnt_fd, rc;
474
475         /* this will return a cached FD if available, so only one open needed.
476          * WANT_FD doesn't modify lustre_dir so casting away "const" is OK */
477
478         rc = llapi_root_path_open(lustre_dir, &mnt_fd);
479         if (rc)
480                 goto out;
481
482         /* "mnt_fd" is cached internally for reuse, no need to close it */
483         rc = llapi_open_by_fid_at(mnt_fd, fid, flags);
484 out:
485         return rc;
486 }
487
488 unsigned long llapi_fid_hash(const struct lu_fid *f, unsigned int shift)
489 {
490         return hash_long(fid_flatten_long(f), shift);
491 }