Whamcloud - gitweb
LU-5756 hsm: add missing return code in llapi_hsm_copytool_register
[fs/lustre-release.git] / lustre / utils / liblustreapi_hsm.c
1 /*
2  * LGPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * (C) Copyright 2012 Commissariat a l'energie atomique et aux energies
7  *     alternatives
8  *
9  * All rights reserved. This program and the accompanying materials
10  * are made available under the terms of the GNU Lesser General Public License
11  * (LGPL) version 2.1 or (at your discretion) any later version.
12  * (LGPL) version 2.1 accompanies this distribution, and is available at
13  * http://www.gnu.org/licenses/lgpl-2.1.html
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * LGPL HEADER END
21  */
22 /*
23  * lustre/utils/liblustreapi_hsm.c
24  *
25  * lustreapi library for hsm calls
26  *
27  * Author: Aurelien Degremont <aurelien.degremont@cea.fr>
28  * Author: JC Lafoucriere <jacques-charles.lafoucriere@cea.fr>
29  * Author: Thomas Leibovici <thomas.leibovici@cea.fr>
30  * Author: Henri Doreau <henri.doreau@cea.fr>
31  */
32
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <stddef.h>
37 #include <sys/ioctl.h>
38 #include <unistd.h>
39 #include <malloc.h>
40 #include <errno.h>
41 #include <dirent.h>
42 #include <stdarg.h>
43 #include <sys/stat.h>
44 #include <sys/types.h>
45 #include <utime.h>
46 #include <sys/syscall.h>
47 #include <fnmatch.h>
48 #include <glob.h>
49 #include <signal.h>
50 #ifdef HAVE_LINUX_UNISTD_H
51 #include <linux/unistd.h>
52 #else
53 #include <unistd.h>
54 #endif
55
56 #include <libcfs/libcfs.h>
57 #include <lnet/lnetctl.h>
58 #include <lustre/lustre_idl.h>
59 #include <lustre/lustreapi.h>
60 #include "lustreapi_internal.h"
61
62 #define OPEN_BY_FID_PATH dot_lustre_name"/fid"
63
64 /****** HSM Copytool API ********/
65 #define CT_PRIV_MAGIC 0xC0BE2001
66 struct hsm_copytool_private {
67         int                      magic;
68         char                    *mnt;
69         struct kuc_hdr          *kuch;
70         int                      mnt_fd;
71         int                      open_by_fid_fd;
72         lustre_kernelcomm        kuc;
73         __u32                    archives;
74 };
75
76 #define CP_PRIV_MAGIC 0x19880429
77 struct hsm_copyaction_private {
78         __u32                                    magic;
79         __s32                                    data_fd;
80         const struct hsm_copytool_private       *ct_priv;
81         struct hsm_copy                          copy;
82         struct stat                              stat;
83 };
84
85 #include <libcfs/libcfs.h>
86
87 enum ct_progress_type {
88         CT_START        = 0,
89         CT_RUNNING      = 50,
90         CT_FINISH       = 100,
91         CT_CANCEL       = 150,
92         CT_ERROR        = 175
93 };
94
95 enum ct_event {
96         CT_REGISTER             = 1,
97         CT_UNREGISTER           = 2,
98         CT_ARCHIVE_START        = HSMA_ARCHIVE,
99         CT_ARCHIVE_RUNNING      = HSMA_ARCHIVE + CT_RUNNING,
100         CT_ARCHIVE_FINISH       = HSMA_ARCHIVE + CT_FINISH,
101         CT_ARCHIVE_CANCEL       = HSMA_ARCHIVE + CT_CANCEL,
102         CT_ARCHIVE_ERROR        = HSMA_ARCHIVE + CT_ERROR,
103         CT_RESTORE_START        = HSMA_RESTORE,
104         CT_RESTORE_RUNNING      = HSMA_RESTORE + CT_RUNNING,
105         CT_RESTORE_FINISH       = HSMA_RESTORE + CT_FINISH,
106         CT_RESTORE_CANCEL       = HSMA_RESTORE + CT_CANCEL,
107         CT_RESTORE_ERROR        = HSMA_RESTORE + CT_ERROR,
108         CT_REMOVE_START         = HSMA_REMOVE,
109         CT_REMOVE_RUNNING       = HSMA_REMOVE + CT_RUNNING,
110         CT_REMOVE_FINISH        = HSMA_REMOVE + CT_FINISH,
111         CT_REMOVE_CANCEL        = HSMA_REMOVE + CT_CANCEL,
112         CT_REMOVE_ERROR         = HSMA_REMOVE + CT_ERROR,
113         CT_EVENT_MAX
114 };
115
116 /* initialized in llapi_hsm_register_event_fifo() */
117 static int llapi_hsm_event_fd = -1;
118 static bool created_hsm_event_fifo;
119
120 static inline const char *llapi_hsm_ct_ev2str(int type)
121 {
122         switch (type) {
123         case CT_REGISTER:
124                 return "REGISTER";
125         case CT_UNREGISTER:
126                 return "UNREGISTER";
127         case CT_ARCHIVE_START:
128                 return "ARCHIVE_START";
129         case CT_ARCHIVE_RUNNING:
130                 return "ARCHIVE_RUNNING";
131         case CT_ARCHIVE_FINISH:
132                 return "ARCHIVE_FINISH";
133         case CT_ARCHIVE_CANCEL:
134                 return "ARCHIVE_CANCEL";
135         case CT_ARCHIVE_ERROR:
136                 return "ARCHIVE_ERROR";
137         case CT_RESTORE_START:
138                 return "RESTORE_START";
139         case CT_RESTORE_RUNNING:
140                 return "RESTORE_RUNNING";
141         case CT_RESTORE_FINISH:
142                 return "RESTORE_FINISH";
143         case CT_RESTORE_CANCEL:
144                 return "RESTORE_CANCEL";
145         case CT_RESTORE_ERROR:
146                 return "RESTORE_ERROR";
147         case CT_REMOVE_START:
148                 return "REMOVE_START";
149         case CT_REMOVE_RUNNING:
150                 return "REMOVE_RUNNING";
151         case CT_REMOVE_FINISH:
152                 return "REMOVE_FINISH";
153         case CT_REMOVE_CANCEL:
154                 return "REMOVE_CANCEL";
155         case CT_REMOVE_ERROR:
156                 return "REMOVE_ERROR";
157         default:
158                 llapi_err_noerrno(LLAPI_MSG_ERROR,
159                                   "Unknown event type: %d", type);
160                 return NULL;
161         }
162 }
163
164 /**
165  * Writes a JSON event to the monitor FIFO. Noop if no FIFO has been
166  * registered.
167  *
168  * \param event              A list of llapi_json_items comprising a
169  *                           single JSON-formatted event.
170  *
171  * \retval 0 on success.
172  * \retval -errno on error.
173  */
174 static int llapi_hsm_write_json_event(struct llapi_json_item_list **event)
175 {
176         int                             rc;
177         char                            time_string[40];
178         char                            json_buf[PIPE_BUF];
179         FILE                            *buf_file;
180         time_t                          event_time = time(0);
181         struct tm                       time_components;
182         struct llapi_json_item_list     *json_items;
183
184         /* Noop unless the event fd was initialized */
185         if (llapi_hsm_event_fd < 0)
186                 return 0;
187
188         if (event == NULL || *event == NULL)
189                 return -EINVAL;
190
191         json_items = *event;
192
193         localtime_r(&event_time, &time_components);
194
195         if (strftime(time_string, sizeof(time_string), "%Y-%m-%d %T %z",
196                      &time_components) == 0) {
197                 rc = -EINVAL;
198                 llapi_error(LLAPI_MSG_ERROR, rc, "strftime() failed");
199                 return rc;
200         }
201
202         rc = llapi_json_add_item(&json_items, "event_time", LLAPI_JSON_STRING,
203                                  time_string);
204         if (rc < 0) {
205                 llapi_error(LLAPI_MSG_ERROR, -rc, "error in "
206                             "llapi_json_add_item()");
207                 return rc;
208         }
209
210         buf_file = fmemopen(json_buf, sizeof(json_buf), "w");
211         if (buf_file == NULL)
212                 return -errno;
213
214         rc = llapi_json_write_list(event, buf_file);
215         if (rc < 0) {
216                 fclose(buf_file);
217                 return rc;
218         }
219
220         fclose(buf_file);
221
222         if (write(llapi_hsm_event_fd, json_buf, strlen(json_buf)) < 0) {
223                 /* Ignore write failures due to missing reader. */
224                 if (errno != EPIPE)
225                         return -errno;
226         }
227
228         return 0;
229 }
230
231 /**
232  * Hook for llapi_hsm_copytool_register and llapi_hsm_copytool_unregister
233  * to generate JSON events suitable for consumption by a copytool
234  * monitoring process.
235  *
236  * \param priv               Opaque private control structure.
237  * \param event_type         The type of event (register or unregister).
238  *
239  * \retval 0 on success.
240  * \retval -errno on error.
241  */
242 static int llapi_hsm_log_ct_registration(struct hsm_copytool_private **priv,
243                                          __u32 event_type)
244 {
245         int                             rc;
246         char                            agent_uuid[UUID_MAX];
247         struct hsm_copytool_private     *ct;
248         struct llapi_json_item_list     *json_items;
249
250         /* Noop unless the event fd was initialized */
251         if (llapi_hsm_event_fd < 0)
252                 return 0;
253
254         if (priv == NULL || *priv == NULL)
255                 return -EINVAL;
256
257         ct = *priv;
258         if (ct->magic != CT_PRIV_MAGIC)
259                 return -EINVAL;
260
261         if (event_type != CT_REGISTER && event_type != CT_UNREGISTER)
262                 return -EINVAL;
263
264         rc = llapi_json_init_list(&json_items);
265         if (rc < 0)
266                 goto err;
267
268         rc = llapi_get_agent_uuid(ct->mnt, agent_uuid, sizeof(agent_uuid));
269         if (rc < 0)
270                 goto err;
271         llapi_chomp_string(agent_uuid);
272
273         rc = llapi_json_add_item(&json_items, "uuid", LLAPI_JSON_STRING,
274                                  agent_uuid);
275         if (rc < 0)
276                 goto err;
277
278         rc = llapi_json_add_item(&json_items, "mount_point", LLAPI_JSON_STRING,
279                                  ct->mnt);
280         if (rc < 0)
281                 goto err;
282
283         rc = llapi_json_add_item(&json_items, "archive", LLAPI_JSON_INTEGER,
284                                  &ct->archives);
285         if (rc < 0)
286                 goto err;
287
288         rc = llapi_json_add_item(&json_items, "event_type", LLAPI_JSON_STRING,
289                                  (char *)llapi_hsm_ct_ev2str(event_type));
290         if (rc < 0)
291                 goto err;
292
293         rc = llapi_hsm_write_json_event(&json_items);
294         if (rc < 0)
295                 goto err;
296
297         goto out_free;
298
299 err:
300         llapi_error(LLAPI_MSG_ERROR, rc, "error in "
301                     "llapi_hsm_log_ct_registration()");
302
303 out_free:
304         if (json_items != NULL)
305                 llapi_json_destroy_list(&json_items);
306
307         return rc;
308 }
309
310 /**
311  * Given a copytool progress update, construct a JSON event suitable for
312  * consumption by a copytool monitoring process.
313  *
314  * Examples of various events generated here and written by
315  * llapi_hsm_write_json_event:
316  *
317  * Copytool registration and deregistration:
318  * {"event_time": "2014-02-26 14:58:01 -0500", "event_type": "REGISTER",
319  *  "archive": 0, "mount_point": "/mnt/lustre",
320  *  "uuid": "80379a60-1f8a-743f-daf2-307cde793ec2"}
321  * {"event_time": "2014-02-26 14:58:01 -0500", "event_type": "UNREGISTER",
322  *  "archive": 0, "mount_point": "/mnt/lustre",
323  *  "uuid": "80379a60-1f8a-743f-daf2-307cde793ec2"}
324  *
325  * An archive action, start to completion:
326  * {"event_time": "2014-02-26 14:50:13 -0500", "event_type": "ARCHIVE_START",
327  *  "total_bytes": 0, "lustre_path": "d71.sanity-hsm/f71.sanity-hsm",
328  *  "source_fid": "0x2000013a1:0x2:0x0", "data_fid": "0x2000013a1:0x2:0x0"}
329  * {"event_time": "2014-02-26 14:50:18 -0500", "event_type": "ARCHIVE_RUNNING",
330  *  "current_bytes": 5242880, "total_bytes": 39000000,
331  *  "lustre_path": "d71.sanity-hsm/f71.sanity-hsm",
332  *  "source_fid": "0x2000013a1:0x2:0x0", "data_fid": "0x2000013a1:0x2:0x0"}
333  * {"event_time": "2014-02-26 14:50:50 -0500", "event_type": "ARCHIVE_FINISH",
334  *  "source_fid": "0x2000013a1:0x2:0x0", "data_fid": "0x2000013a1:0x2:0x0"}
335  *
336  * A log message:
337  * {"event_time": "2014-02-26 14:50:13 -0500", "event_type": "LOGGED_MESSAGE",
338  *  "level": "INFO",
339  *  "message": "lhsmtool_posix[42]: copytool fs=lustre archive#=2 item_count=1"}
340  *
341  * \param hcp                Opaque action handle returned by
342  *                           llapi_hsm_action_start.
343  * \param hai                The hsm_action_item describing the request.
344  * \param progress_type      The ct_progress_type describing the update.
345  * \param total              The total expected bytes for the request.
346  * \param current            The current copied byte count for the request.
347  *
348  * \retval 0 on success.
349  * \retval -errno on error.
350  */
351 static int llapi_hsm_log_ct_progress(struct hsm_copyaction_private **phcp,
352                                      const struct hsm_action_item *hai,
353                                      __u32 progress_type,
354                                      __u64 total, __u64 current)
355 {
356         int                             rc;
357         int                             linkno = 0;
358         long long                       recno = -1;
359         char                            lustre_path[PATH_MAX];
360         char                            strfid[FID_NOBRACE_LEN + 1];
361         struct hsm_copyaction_private   *hcp;
362         struct llapi_json_item_list     *json_items;
363
364         /* Noop unless the event fd was initialized */
365         if (llapi_hsm_event_fd < 0)
366                 return 0;
367
368         if (phcp == NULL || *phcp == NULL)
369                 return -EINVAL;
370
371         hcp = *phcp;
372
373         rc = llapi_json_init_list(&json_items);
374         if (rc < 0)
375                 goto err;
376
377         snprintf(strfid, sizeof(strfid), DFID_NOBRACE, PFID(&hai->hai_dfid));
378         rc = llapi_json_add_item(&json_items, "data_fid",
379                                  LLAPI_JSON_STRING, strfid);
380         if (rc < 0)
381                 goto err;
382
383         snprintf(strfid, sizeof(strfid), DFID_NOBRACE, PFID(&hai->hai_fid));
384         rc = llapi_json_add_item(&json_items, "source_fid",
385                                  LLAPI_JSON_STRING, strfid);
386         if (rc < 0)
387                 goto err;
388
389         if (hcp->copy.hc_errval == ECANCELED) {
390                 progress_type = CT_CANCEL;
391                 goto cancel;
392         }
393
394         if (hcp->copy.hc_errval != 0) {
395                 progress_type = CT_ERROR;
396
397                 rc = llapi_json_add_item(&json_items, "errno",
398                                          LLAPI_JSON_INTEGER,
399                                          &hcp->copy.hc_errval);
400                 if (rc < 0)
401                         goto err;
402
403                 rc = llapi_json_add_item(&json_items, "error",
404                                          LLAPI_JSON_STRING,
405                                          strerror(hcp->copy.hc_errval));
406                 if (rc < 0)
407                         goto err;
408
409                 goto cancel;
410         }
411
412         /* lustre_path isn't available after a restore completes */
413         /* total_bytes isn't available after a restore or archive completes */
414         if (progress_type != CT_FINISH) {
415                 rc = llapi_fid2path(hcp->ct_priv->mnt, strfid, lustre_path,
416                                     sizeof(lustre_path), &recno, &linkno);
417                 if (rc < 0)
418                         goto err;
419
420                 rc = llapi_json_add_item(&json_items, "lustre_path",
421                                          LLAPI_JSON_STRING, lustre_path);
422                 if (rc < 0)
423                         goto err;
424
425                 rc = llapi_json_add_item(&json_items, "total_bytes",
426                                          LLAPI_JSON_BIGNUM, &total);
427                 if (rc < 0)
428                         goto err;
429         }
430
431         if (progress_type == CT_RUNNING)
432                 rc = llapi_json_add_item(&json_items, "current_bytes",
433                                          LLAPI_JSON_BIGNUM, &current);
434                 if (rc < 0)
435                         goto err;
436
437 cancel:
438         rc = llapi_json_add_item(&json_items, "event_type", LLAPI_JSON_STRING,
439                                  (char *)llapi_hsm_ct_ev2str(hai->hai_action +
440                                                              progress_type));
441         if (rc < 0)
442                 goto err;
443
444         rc = llapi_hsm_write_json_event(&json_items);
445         if (rc < 0)
446                 goto err;
447
448         goto out_free;
449
450 err:
451         llapi_error(LLAPI_MSG_ERROR, rc, "error in "
452                     "llapi_hsm_log_ct_progress()");
453
454 out_free:
455         if (json_items != NULL)
456                 llapi_json_destroy_list(&json_items);
457
458         return rc;
459 }
460
461 /**
462  * Given a path to a FIFO, create a filehandle for nonblocking writes to it.
463  * Intended to be used for copytool monitoring processes that read an
464  * event stream from the FIFO. Events written in the absence of a reader
465  * are lost.
466  *
467  * \param path               Path to monitor FIFO.
468  *
469  * \retval 0 on success.
470  * \retval -errno on error.
471  */
472 int llapi_hsm_register_event_fifo(const char *path)
473 {
474         int read_fd;
475         struct stat statbuf;
476
477         /* Create the FIFO if necessary. */
478         if ((mkfifo(path, 0644) < 0) && (errno != EEXIST)) {
479                 llapi_error(LLAPI_MSG_ERROR, errno, "mkfifo(%s) failed", path);
480                 return -errno;
481         }
482         if (errno == EEXIST) {
483                 if (stat(path, &statbuf) < 0) {
484                         llapi_error(LLAPI_MSG_ERROR, errno, "mkfifo(%s) failed",
485                                     path);
486                         return -errno;
487                 }
488                 if (!S_ISFIFO(statbuf.st_mode) ||
489                     ((statbuf.st_mode & 0777) != 0644)) {
490                         llapi_error(LLAPI_MSG_ERROR, errno, "%s exists but is "
491                                     "not a pipe or has a wrong mode", path);
492                         return -errno;
493                 }
494         } else {
495                 created_hsm_event_fifo = true;
496         }
497
498         /* Open the FIFO for read so that the subsequent open for write
499          * doesn't immediately fail. */
500         read_fd = open(path, O_RDONLY | O_NONBLOCK);
501         if (read_fd < 0) {
502                 llapi_error(LLAPI_MSG_ERROR, errno,
503                             "cannot open(%s) for read", path);
504                 return -errno;
505         }
506
507         /* Open the FIFO for writes, but don't block on waiting
508          * for a reader. */
509         llapi_hsm_event_fd = open(path, O_WRONLY | O_NONBLOCK);
510         if (llapi_hsm_event_fd < 0) {
511                 llapi_error(LLAPI_MSG_ERROR, errno,
512                             "cannot open(%s) for write", path);
513                 return -errno;
514         }
515
516         /* Now close the reader. An external monitoring process can
517          * now open the FIFO for reads. If no reader comes along the
518          * events are lost. NOTE: Only one reader at a time! */
519         close(read_fd);
520
521         /* Ignore SIGPIPEs -- can occur if the reader goes away. */
522         signal(SIGPIPE, SIG_IGN);
523
524         return 0;
525 }
526
527 /**
528  * Given a path to a FIFO, close its filehandle and delete the FIFO.
529  *
530  * \param path               Path to monitor FIFO.
531  *
532  * \retval 0 on success.
533  * \retval -errno on error.
534  */
535 int llapi_hsm_unregister_event_fifo(const char *path)
536 {
537         /* Noop unless the event fd was initialized */
538         if (llapi_hsm_event_fd < 0)
539                 return 0;
540
541         if (close(llapi_hsm_event_fd) < 0)
542                 return -errno;
543
544         if (created_hsm_event_fifo) {
545                 unlink(path);
546                 created_hsm_event_fifo = false;
547         }
548
549         llapi_hsm_event_fd = -1;
550
551         return 0;
552 }
553
554 /**
555  * Custom logging callback to be used when a monitoring FIFO has been
556  * registered. Formats log entries as JSON events suitable for
557  * consumption by a copytool monitoring process.
558  *
559  * \param level              The message loglevel.
560  * \param _rc                The returncode associated with the message.
561  * \param fmt                The message format string.
562  * \param args               Arguments to be formatted by the format string.
563  *
564  * \retval None.
565  */
566 void llapi_hsm_log_error(enum llapi_message_level level, int _rc,
567                          const char *fmt, va_list args)
568 {
569         int                             rc;
570         int                             msg_len;
571         int                             real_level;
572         char                            *msg = NULL;
573         va_list                         args2;
574         struct llapi_json_item_list     *json_items;
575
576         /* Noop unless the event fd was initialized */
577         if (llapi_hsm_event_fd < 0)
578                 return;
579
580         rc = llapi_json_init_list(&json_items);
581         if (rc < 0)
582                 goto err;
583
584         if ((level & LLAPI_MSG_NO_ERRNO) == 0) {
585                 rc = llapi_json_add_item(&json_items, "errno",
586                                          LLAPI_JSON_INTEGER,
587                                          &_rc);
588                 if (rc < 0)
589                         goto err;
590
591                 rc = llapi_json_add_item(&json_items, "error",
592                                          LLAPI_JSON_STRING,
593                                          strerror(abs(_rc)));
594                 if (rc < 0)
595                         goto err;
596         }
597
598         va_copy(args2, args);
599         msg_len = vsnprintf(NULL, 0, fmt, args2) + 1;
600         va_end(args2);
601         if (msg_len >= 0) {
602                 msg = (char *) alloca(msg_len);
603                 if (msg == NULL) {
604                         rc = -ENOMEM;
605                         goto err;
606                 }
607
608                 rc = vsnprintf(msg, msg_len, fmt, args);
609                 if (rc < 0)
610                         goto err;
611
612                 rc = llapi_json_add_item(&json_items, "message",
613                                          LLAPI_JSON_STRING,
614                                          msg);
615                 if (rc < 0)
616                         goto err;
617         } else {
618                 rc = llapi_json_add_item(&json_items, "message",
619                                          LLAPI_JSON_STRING,
620                                          "INTERNAL ERROR: message failed");
621                 if (rc < 0)
622                         goto err;
623         }
624
625         real_level = level & LLAPI_MSG_NO_ERRNO;
626         real_level = real_level > 0 ? level - LLAPI_MSG_NO_ERRNO : level;
627
628         rc = llapi_json_add_item(&json_items, "level", LLAPI_JSON_STRING,
629                                  (void *)llapi_msg_level2str(real_level));
630         if (rc < 0)
631                 goto err;
632
633         rc = llapi_json_add_item(&json_items, "event_type", LLAPI_JSON_STRING,
634                                  "LOGGED_MESSAGE");
635         if (rc < 0)
636                 goto err;
637
638         rc = llapi_hsm_write_json_event(&json_items);
639         if (rc < 0)
640                 goto err;
641
642         goto out_free;
643
644 err:
645         /* Write directly to stderr to avoid llapi_error, which now
646          * emits JSON event messages. */
647         fprintf(stderr, "\nFATAL ERROR IN llapi_hsm_log_error(): rc %d,", rc);
648
649 out_free:
650         if (json_items != NULL)
651                 llapi_json_destroy_list(&json_items);
652
653         return;
654 }
655
656 /** Register a copytool
657  * \param[out] priv             Opaque private control structure
658  * \param mnt                   Lustre filesystem mount point
659  * \param archive_count         Number of valid archive IDs in \a archives
660  * \param archives              Which archive numbers this copytool is
661  *                              responsible for
662  * \param rfd_flags             flags applied to read fd of pipe
663  *                              (e.g. O_NONBLOCK)
664  *
665  * \retval 0 on success.
666  * \retval -errno on error.
667  */
668 int llapi_hsm_copytool_register(struct hsm_copytool_private **priv,
669                                 const char *mnt, int archive_count,
670                                 int *archives, int rfd_flags)
671 {
672         struct hsm_copytool_private     *ct;
673         int                              rc;
674
675         if (archive_count > 0 && archives == NULL) {
676                 llapi_err_noerrno(LLAPI_MSG_ERROR,
677                                   "NULL archive numbers");
678                 return -EINVAL;
679         }
680
681         ct = calloc(1, sizeof(*ct));
682         if (ct == NULL)
683                 return -ENOMEM;
684
685         ct->magic = CT_PRIV_MAGIC;
686         ct->mnt_fd = -1;
687         ct->open_by_fid_fd = -1;
688         ct->kuc.lk_rfd = LK_NOFD;
689         ct->kuc.lk_wfd = LK_NOFD;
690
691         ct->mnt = strdup(mnt);
692         if (ct->mnt == NULL) {
693                 rc = -ENOMEM;
694                 goto out_err;
695         }
696
697         ct->kuch = malloc(HAL_MAXSIZE + sizeof(*ct->kuch));
698         if (ct->kuch == NULL) {
699                 rc = -ENOMEM;
700                 goto out_err;
701         }
702
703         ct->mnt_fd = open(ct->mnt, O_RDONLY);
704         if (ct->mnt_fd < 0) {
705                 rc = -errno;
706                 goto out_err;
707         }
708
709         ct->open_by_fid_fd = openat(ct->mnt_fd, OPEN_BY_FID_PATH, O_RDONLY);
710         if (ct->open_by_fid_fd < 0) {
711                 rc = -errno;
712                 goto out_err;
713         }
714
715         /* no archives specified means "match all". */
716         ct->archives = 0;
717         for (rc = 0; rc < archive_count; rc++) {
718                 if (archives[rc] > 8 * sizeof(ct->archives)) {
719                         llapi_err_noerrno(LLAPI_MSG_ERROR,
720                                           "maximum of %zu archives supported",
721                                           8 * sizeof(ct->archives));
722                         rc = -EINVAL;
723                         goto out_err;
724                 }
725                 /* in the list we have a all archive wildcard
726                  * so move to all archives mode
727                  */
728                 if (archives[rc] == 0) {
729                         ct->archives = 0;
730                         archive_count = 0;
731                         break;
732                 }
733                 ct->archives |= (1 << (archives[rc] - 1));
734         }
735
736         rc = libcfs_ukuc_start(&ct->kuc, KUC_GRP_HSM, rfd_flags);
737         if (rc < 0)
738                 goto out_err;
739
740         /* Storing archive(s) in lk_data; see mdc_ioc_hsm_ct_start */
741         ct->kuc.lk_data = ct->archives;
742         rc = ioctl(ct->mnt_fd, LL_IOC_HSM_CT_START, &ct->kuc);
743         if (rc < 0) {
744                 rc = -errno;
745                 llapi_error(LLAPI_MSG_ERROR, rc,
746                             "cannot start copytool on '%s'", mnt);
747                 goto out_kuc;
748         }
749
750         llapi_hsm_log_ct_registration(&ct, CT_REGISTER);
751
752         /* Only the kernel reference keeps the write side open */
753         close(ct->kuc.lk_wfd);
754         ct->kuc.lk_wfd = LK_NOFD;
755         *priv = ct;
756
757         return 0;
758
759 out_kuc:
760         /* cleanup the kuc channel */
761         libcfs_ukuc_stop(&ct->kuc);
762
763 out_err:
764         if (!(ct->mnt_fd < 0))
765                 close(ct->mnt_fd);
766
767         if (!(ct->open_by_fid_fd < 0))
768                 close(ct->open_by_fid_fd);
769
770         free(ct->mnt);
771
772         free(ct->kuch);
773
774         free(ct);
775
776         return rc;
777 }
778
779 /** Deregister a copytool
780  * Note: under Linux, until llapi_hsm_copytool_unregister is called
781  * (or the program is killed), the libcfs module will be referenced
782  * and unremovable, even after Lustre services stop.
783  */
784 int llapi_hsm_copytool_unregister(struct hsm_copytool_private **priv)
785 {
786         struct hsm_copytool_private *ct;
787
788         if (priv == NULL || *priv == NULL)
789                 return -EINVAL;
790
791         ct = *priv;
792         if (ct->magic != CT_PRIV_MAGIC)
793                 return -EINVAL;
794
795         /* Tell the kernel to stop sending us messages */
796         ct->kuc.lk_flags = LK_FLG_STOP;
797         ioctl(ct->mnt_fd, LL_IOC_HSM_CT_START, &ct->kuc);
798
799         /* Shut down the kernelcomms */
800         libcfs_ukuc_stop(&ct->kuc);
801
802         llapi_hsm_log_ct_registration(&ct, CT_UNREGISTER);
803
804         close(ct->open_by_fid_fd);
805         close(ct->mnt_fd);
806         free(ct->mnt);
807         free(ct->kuch);
808         free(ct);
809         *priv = NULL;
810
811         return 0;
812 }
813
814 /** Returns a file descriptor to poll/select on.
815  * \param ct Opaque private control structure
816  * \retval -EINVAL on error
817  * \retval the file descriptor for reading HSM events from the kernel
818  */
819 int llapi_hsm_copytool_get_fd(struct hsm_copytool_private *ct)
820 {
821         if (ct == NULL || ct->magic != CT_PRIV_MAGIC)
822                 return -EINVAL;
823
824         return libcfs_ukuc_get_rfd(&ct->kuc);
825 }
826
827 /** Wait for the next hsm_action_list
828  * \param ct Opaque private control structure
829  * \param halh Action list handle, will be allocated here
830  * \param msgsize Number of bytes in the message, will be set here
831  * \return 0 valid message received; halh and msgsize are set
832  *         <0 error code
833  * Note: The application must not call llapi_hsm_copytool_recv until it has
834  * cleared the data in ct->kuch from the previous call.
835  */
836 int llapi_hsm_copytool_recv(struct hsm_copytool_private *ct,
837                             struct hsm_action_list **halh, int *msgsize)
838 {
839         struct kuc_hdr          *kuch;
840         struct hsm_action_list  *hal;
841         int                      rc = 0;
842
843         if (ct == NULL || ct->magic != CT_PRIV_MAGIC)
844                 return -EINVAL;
845
846         if (halh == NULL || msgsize == NULL)
847                 return -EINVAL;
848
849         kuch = ct->kuch;
850
851 repeat:
852         rc = libcfs_ukuc_msg_get(&ct->kuc, (char *)kuch,
853                                  HAL_MAXSIZE + sizeof(*kuch),
854                                  KUC_TRANSPORT_HSM);
855         if (rc < 0)
856                 goto out_err;
857
858         /* Handle generic messages */
859         if (kuch->kuc_transport == KUC_TRANSPORT_GENERIC &&
860             kuch->kuc_msgtype == KUC_MSG_SHUTDOWN) {
861                 rc = -ESHUTDOWN;
862                 goto out_err;
863         }
864
865         if (kuch->kuc_transport != KUC_TRANSPORT_HSM ||
866             kuch->kuc_msgtype != HMT_ACTION_LIST) {
867                 llapi_err_noerrno(LLAPI_MSG_ERROR,
868                                   "Unknown HSM message type %d:%d\n",
869                                   kuch->kuc_transport, kuch->kuc_msgtype);
870                 rc = -EPROTO;
871                 goto out_err;
872         }
873
874         if (kuch->kuc_msglen < sizeof(*kuch) + sizeof(*hal)) {
875                 llapi_err_noerrno(LLAPI_MSG_ERROR, "Short HSM message %d",
876                                   kuch->kuc_msglen);
877                 rc = -EPROTO;
878                 goto out_err;
879         }
880
881         /* Our message is a hsm_action_list. Use pointer math to skip
882         * kuch_hdr and point directly to the message payload.
883         */
884         hal = (struct hsm_action_list *)(kuch + 1);
885
886         /* Check that we have registered for this archive #
887          * if 0 registered, we serve any archive */
888         if (ct->archives &&
889             ((1 << (hal->hal_archive_id - 1)) & ct->archives) == 0) {
890                 llapi_err_noerrno(LLAPI_MSG_INFO,
891                                   "This copytool does not service archive #%d,"
892                                   " ignoring this request."
893                                   " Mask of served archive is 0x%.8X",
894                                   hal->hal_archive_id, ct->archives);
895
896                 goto repeat;
897         }
898
899         *halh = hal;
900         *msgsize = kuch->kuc_msglen - sizeof(*kuch);
901         return 0;
902
903 out_err:
904         *halh = NULL;
905         *msgsize = 0;
906         return rc;
907 }
908
909 /** Get parent path from mount point and fid.
910  *
911  * \param mnt        Filesystem root path.
912  * \param fid        Object FID.
913  * \param parent     Destination buffer.
914  * \param parent_len Destination buffer size.
915  * \return 0 on success.
916  */
917 static int fid_parent(const char *mnt, const lustre_fid *fid, char *parent,
918                       size_t parent_len)
919 {
920         int              rc;
921         int              linkno = 0;
922         long long        recno = -1;
923         char             file[PATH_MAX];
924         char             strfid[FID_NOBRACE_LEN + 1];
925         char            *ptr;
926
927         snprintf(strfid, sizeof(strfid), DFID_NOBRACE, PFID(fid));
928
929         rc = llapi_fid2path(mnt, strfid, file, sizeof(file),
930                             &recno, &linkno);
931         if (rc < 0)
932                 return rc;
933
934         /* fid2path returns a relative path */
935         rc = snprintf(parent, parent_len, "%s/%s", mnt, file);
936         if (rc >= parent_len)
937                 return -ENAMETOOLONG;
938
939         /* remove file name */
940         ptr = strrchr(parent, '/');
941         if (ptr == NULL || ptr == parent) {
942                 rc = -EINVAL;
943         } else {
944                 *ptr = '\0';
945                 rc = 0;
946         }
947
948         return rc;
949 }
950
951 static int ct_open_by_fid(const struct hsm_copytool_private *ct,
952                           const struct lu_fid *fid, int open_flags)
953 {
954         char fid_name[FID_NOBRACE_LEN + 1];
955         int fd;
956
957         snprintf(fid_name, sizeof(fid_name), DFID_NOBRACE, PFID(fid));
958
959         fd = openat(ct->open_by_fid_fd, fid_name, open_flags);
960         return fd < 0 ? -errno : fd;
961 }
962
963 static int ct_stat_by_fid(const struct hsm_copytool_private *ct,
964                           const struct lu_fid *fid,
965                           struct stat *buf)
966 {
967         char fid_name[FID_NOBRACE_LEN + 1];
968         int rc;
969
970         snprintf(fid_name, sizeof(fid_name), DFID_NOBRACE, PFID(fid));
971
972         rc = fstatat(ct->open_by_fid_fd, fid_name, buf, 0);
973         return rc ? -errno : 0;
974 }
975
976 /** Create the destination volatile file for a restore operation.
977  *
978  * \param hcp        Private copyaction handle.
979  * \param mdt_index  MDT index where to create the volatile file.
980  * \param flags      Volatile file creation flags.
981  * \return 0 on success.
982  */
983 static int create_restore_volatile(struct hsm_copyaction_private *hcp,
984                                    int mdt_index, int open_flags)
985 {
986         int                      rc;
987         int                      fd;
988         char                     parent[PATH_MAX + 1];
989         const char              *mnt = hcp->ct_priv->mnt;
990         struct hsm_action_item  *hai = &hcp->copy.hc_hai;
991
992         rc = fid_parent(mnt, &hai->hai_fid, parent, sizeof(parent));
993         if (rc < 0) {
994                 /* fid_parent() failed, try to keep on going */
995                 llapi_error(LLAPI_MSG_ERROR, rc,
996                             "cannot get parent path to restore "DFID" "
997                             "using '%s'", PFID(&hai->hai_fid), mnt);
998                 snprintf(parent, sizeof(parent), "%s", mnt);
999         }
1000
1001         fd = llapi_create_volatile_idx(parent, mdt_index, open_flags);
1002         if (fd < 0)
1003                 return fd;
1004
1005         rc = fchown(fd, hcp->stat.st_uid, hcp->stat.st_gid);
1006         if (rc < 0)
1007                 goto err_cleanup;
1008
1009         rc = llapi_fd2fid(fd, &hai->hai_dfid);
1010         if (rc < 0)
1011                 goto err_cleanup;
1012
1013         hcp->data_fd = fd;
1014
1015         return 0;
1016
1017 err_cleanup:
1018         hcp->data_fd = -1;
1019         close(fd);
1020
1021         return rc;
1022 }
1023
1024 /** Start processing an HSM action.
1025  * Should be called by copytools just before starting handling a request.
1026  * It could be skipped if copytool only want to directly report an error,
1027  * \see llapi_hsm_action_end().
1028  *
1029  * \param hcp                Opaque action handle to be passed to
1030  *                           llapi_hsm_action_progress and llapi_hsm_action_end.
1031  * \param ct                 Copytool handle acquired at registration.
1032  * \param hai                The hsm_action_item describing the request.
1033  * \param restore_mdt_index  On restore: MDT index where to create the volatile
1034  *                           file. Use -1 for default.
1035  * \param restore_open_flags On restore: volatile file creation mode. Use
1036  *                           O_LOV_DELAY_CREATE to manually set the LOVEA
1037  *                           afterwards.
1038  * \param is_error           Whether this call is just to report an error.
1039  *
1040  * \return 0 on success.
1041  */
1042 int llapi_hsm_action_begin(struct hsm_copyaction_private **phcp,
1043                            const struct hsm_copytool_private *ct,
1044                            const struct hsm_action_item *hai,
1045                            int restore_mdt_index, int restore_open_flags,
1046                            bool is_error)
1047 {
1048         struct hsm_copyaction_private   *hcp;
1049         int                              rc;
1050
1051         hcp = calloc(1, sizeof(*hcp));
1052         if (hcp == NULL)
1053                 return -ENOMEM;
1054
1055         hcp->data_fd = -1;
1056         hcp->ct_priv = ct;
1057         hcp->copy.hc_hai = *hai;
1058         hcp->copy.hc_hai.hai_len = sizeof(*hai);
1059
1060         if (is_error)
1061                 goto ok_out;
1062
1063         if (hai->hai_action == HSMA_RESTORE) {
1064                 rc = ct_stat_by_fid(hcp->ct_priv, &hai->hai_fid, &hcp->stat);
1065                 if (rc < 0)
1066                         goto err_out;
1067
1068                 rc = create_restore_volatile(hcp, restore_mdt_index,
1069                                              restore_open_flags);
1070                 if (rc < 0)
1071                         goto err_out;
1072         }
1073
1074         rc = ioctl(ct->mnt_fd, LL_IOC_HSM_COPY_START, &hcp->copy);
1075         if (rc < 0) {
1076                 rc = -errno;
1077                 goto err_out;
1078         }
1079
1080         llapi_hsm_log_ct_progress(&hcp, hai, CT_START, 0, 0);
1081
1082 ok_out:
1083         hcp->magic = CP_PRIV_MAGIC;
1084         *phcp = hcp;
1085         return 0;
1086
1087 err_out:
1088         if (!(hcp->data_fd < 0))
1089                 close(hcp->data_fd);
1090
1091         free(hcp);
1092
1093         return rc;
1094 }
1095
1096 /** Terminate an HSM action processing.
1097  * Should be called by copytools just having finished handling the request.
1098  * \param hdl[in,out]  Handle returned by llapi_hsm_action_start.
1099  * \param he[in]       The final range of copied data (for copy actions).
1100  * \param errval[in]   The status code of the operation.
1101  * \param flags[in]    The flags about the termination status (HP_FLAG_RETRY if
1102  *                     the error is retryable).
1103  *
1104  * \return 0 on success.
1105  */
1106 int llapi_hsm_action_end(struct hsm_copyaction_private **phcp,
1107                          const struct hsm_extent *he, int hp_flags, int errval)
1108 {
1109         struct hsm_copyaction_private   *hcp;
1110         struct hsm_action_item          *hai;
1111         int                              rc;
1112
1113         if (phcp == NULL || *phcp == NULL || he == NULL)
1114                 return -EINVAL;
1115
1116         hcp = *phcp;
1117
1118         if (hcp->magic != CP_PRIV_MAGIC)
1119                 return -EINVAL;
1120
1121         hai = &hcp->copy.hc_hai;
1122
1123         if (hai->hai_action == HSMA_RESTORE && errval == 0) {
1124                 struct timeval tv[2];
1125
1126                 /* Set {a,m}time of volatile file to that of original. */
1127                 tv[0].tv_sec = hcp->stat.st_atime;
1128                 tv[0].tv_usec = 0;
1129                 tv[1].tv_sec = hcp->stat.st_mtime;
1130                 tv[1].tv_usec = 0;
1131                 if (futimes(hcp->data_fd, tv) < 0) {
1132                         errval = -errno;
1133                         goto end;
1134                 }
1135
1136                 rc = fsync(hcp->data_fd);
1137                 if (rc < 0) {
1138                         errval = -errno;
1139                         goto end;
1140                 }
1141         }
1142
1143 end:
1144         /* In some cases, like restore, 2 FIDs are used.
1145          * Set the right FID to use here. */
1146         if (hai->hai_action == HSMA_ARCHIVE || hai->hai_action == HSMA_RESTORE)
1147                 hai->hai_fid = hai->hai_dfid;
1148
1149         /* Fill the last missing data that will be needed by
1150          * kernel to send a hsm_progress. */
1151         hcp->copy.hc_flags  = hp_flags;
1152         hcp->copy.hc_errval = abs(errval);
1153
1154         hcp->copy.hc_hai.hai_extent = *he;
1155
1156         rc = ioctl(hcp->ct_priv->mnt_fd, LL_IOC_HSM_COPY_END, &hcp->copy);
1157         if (rc) {
1158                 rc = -errno;
1159                 goto err_cleanup;
1160         }
1161
1162         llapi_hsm_log_ct_progress(&hcp, hai, CT_FINISH, 0, 0);
1163
1164 err_cleanup:
1165         if (!(hcp->data_fd < 0))
1166                 close(hcp->data_fd);
1167
1168         free(hcp);
1169         *phcp = NULL;
1170
1171         return rc;
1172 }
1173
1174 /** Notify a progress in processing an HSM action.
1175  * \param hdl[in,out]   handle returned by llapi_hsm_action_start.
1176  * \param he[in]        the range of copied data (for copy actions).
1177  * \param total[in]     the expected total of copied data (for copy actions).
1178  * \param hp_flags[in]  HSM progress flags.
1179  * \return 0 on success.
1180  */
1181 int llapi_hsm_action_progress(struct hsm_copyaction_private *hcp,
1182                               const struct hsm_extent *he, __u64 total,
1183                               int hp_flags)
1184 {
1185         int                      rc;
1186         struct hsm_progress      hp;
1187         struct hsm_action_item  *hai;
1188
1189         if (hcp == NULL || he == NULL)
1190                 return -EINVAL;
1191
1192         if (hcp->magic != CP_PRIV_MAGIC)
1193                 return -EINVAL;
1194
1195         hai = &hcp->copy.hc_hai;
1196
1197         memset(&hp, 0, sizeof(hp));
1198
1199         hp.hp_cookie = hai->hai_cookie;
1200         hp.hp_flags  = hp_flags;
1201
1202         /* Progress is made on the data fid */
1203         hp.hp_fid = hai->hai_dfid;
1204         hp.hp_extent = *he;
1205
1206         rc = ioctl(hcp->ct_priv->mnt_fd, LL_IOC_HSM_PROGRESS, &hp);
1207         if (rc < 0)
1208                 rc = -errno;
1209
1210         llapi_hsm_log_ct_progress(&hcp, hai, CT_RUNNING, total, he->length);
1211
1212         return rc;
1213 }
1214
1215 /** Get the fid of object to be used for copying data.
1216  * @return error code if the action is not a copy operation.
1217  */
1218 int llapi_hsm_action_get_dfid(const struct hsm_copyaction_private *hcp,
1219                               lustre_fid *fid)
1220 {
1221         const struct hsm_action_item    *hai = &hcp->copy.hc_hai;
1222
1223         if (hcp->magic != CP_PRIV_MAGIC)
1224                 return -EINVAL;
1225
1226         if (hai->hai_action != HSMA_RESTORE && hai->hai_action != HSMA_ARCHIVE)
1227                 return -EINVAL;
1228
1229         *fid = hai->hai_dfid;
1230
1231         return 0;
1232 }
1233
1234 /**
1235  * Get a file descriptor to be used for copying data. It's up to the
1236  * caller to close the FDs obtained from this function.
1237  *
1238  * @retval a file descriptor on success.
1239  * @retval a negative error code on failure.
1240  */
1241 int llapi_hsm_action_get_fd(const struct hsm_copyaction_private *hcp)
1242 {
1243         const struct hsm_action_item    *hai = &hcp->copy.hc_hai;
1244         int fd;
1245
1246         if (hcp->magic != CP_PRIV_MAGIC)
1247                 return -EINVAL;
1248
1249         if (hai->hai_action == HSMA_ARCHIVE) {
1250                 return ct_open_by_fid(hcp->ct_priv, &hai->hai_dfid,
1251                                 O_RDONLY | O_NOATIME | O_NOFOLLOW | O_NONBLOCK);
1252         } else if (hai->hai_action == HSMA_RESTORE) {
1253                 fd = dup(hcp->data_fd);
1254                 return fd < 0 ? -errno : fd;
1255         } else {
1256                 return -EINVAL;
1257         }
1258 }
1259
1260 /**
1261  * Import an existing hsm-archived file into Lustre.
1262  *
1263  * Caller must access file by (returned) newfid value from now on.
1264  *
1265  * \param dst      path to Lustre destination (e.g. /mnt/lustre/my/file).
1266  * \param archive  archive number.
1267  * \param st       struct stat buffer containing file ownership, perm, etc.
1268  * \param stripe_* Striping options.  Currently ignored, since the restore
1269  *                 operation will set the striping.  In V2, this striping might
1270  *                 be used.
1271  * \param newfid[out] Filled with new Lustre fid.
1272  */
1273 int llapi_hsm_import(const char *dst, int archive, const struct stat *st,
1274                      unsigned long long stripe_size, int stripe_offset,
1275                      int stripe_count, int stripe_pattern, char *pool_name,
1276                      lustre_fid *newfid)
1277 {
1278         struct hsm_user_import   hui;
1279         int                      fd;
1280         int                      rc = 0;
1281
1282         if (stripe_pattern == 0)
1283                 stripe_pattern = LOV_PATTERN_RAID0;
1284
1285         /* Create a non-striped file */
1286         fd = llapi_file_open_pool(dst, O_CREAT | O_WRONLY, st->st_mode,
1287                                   stripe_size, stripe_offset, stripe_count,
1288                                   stripe_pattern | LOV_PATTERN_F_RELEASED,
1289                                   pool_name);
1290         if (fd < 0) {
1291                 llapi_error(LLAPI_MSG_ERROR, fd,
1292                             "cannot create '%s' for import", dst);
1293                 return fd;
1294         }
1295
1296         /* Get the new fid in Lustre. Caller needs to use this fid
1297            from now on. */
1298         rc = llapi_fd2fid(fd, newfid);
1299         if (rc != 0) {
1300                 llapi_error(LLAPI_MSG_ERROR, rc,
1301                             "cannot get fid of '%s' for import", dst);
1302                 goto out_unlink;
1303         }
1304
1305         hui.hui_uid = st->st_uid;
1306         hui.hui_gid = st->st_gid;
1307         hui.hui_mode = st->st_mode;
1308         hui.hui_size = st->st_size;
1309         hui.hui_archive_id = archive;
1310         hui.hui_atime = st->st_atime;
1311         hui.hui_atime_ns = st->st_atim.tv_nsec;
1312         hui.hui_mtime = st->st_mtime;
1313         hui.hui_mtime_ns = st->st_mtim.tv_nsec;
1314         rc = ioctl(fd, LL_IOC_HSM_IMPORT, &hui);
1315         if (rc != 0) {
1316                 rc = -errno;
1317                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot import '%s'", dst);
1318                 goto out_unlink;
1319         }
1320
1321 out_unlink:
1322         if (fd >= 0)
1323                 close(fd);
1324         if (rc)
1325                 unlink(dst);
1326         return rc;
1327 }
1328
1329 /**
1330  * Return the current HSM states and HSM requests related to file pointed by \a
1331  * path.
1332  *
1333  * \param hus  Should be allocated by caller. Will be filled with current file
1334  *             states.
1335  *
1336  * \retval 0 on success.
1337  * \retval -errno on error.
1338  */
1339 int llapi_hsm_state_get_fd(int fd, struct hsm_user_state *hus)
1340 {
1341         int rc;
1342
1343         rc = ioctl(fd, LL_IOC_HSM_STATE_GET, hus);
1344         /* If error, save errno value */
1345         rc = rc ? -errno : 0;
1346
1347         return rc;
1348 }
1349
1350 /**
1351  * Return the current HSM states and HSM requests related to file pointed by \a
1352  * path.
1353  *
1354  * see llapi_hsm_state_get_fd() for args use and return
1355  */
1356 int llapi_hsm_state_get(const char *path, struct hsm_user_state *hus)
1357 {
1358         int fd;
1359         int rc;
1360
1361         fd = open(path, O_RDONLY | O_NONBLOCK);
1362         if (fd < 0)
1363                 return -errno;
1364
1365         rc = llapi_hsm_state_get_fd(fd, hus);
1366
1367         close(fd);
1368         return rc;
1369 }
1370
1371 /**
1372  * Set HSM states of file pointed by \a fd
1373  *
1374  * Using the provided bitmasks, the current HSM states for this file will be
1375  * changed. \a archive_id could be used to change the archive number also. Set
1376  * it to 0 if you do not want to change it.
1377  *
1378  * \param setmask      Bitmask for flag to be set.
1379  * \param clearmask    Bitmask for flag to be cleared.
1380  * \param archive_id  Archive number identifier to use. 0 means no change.
1381  *
1382  * \retval 0 on success.
1383  * \retval -errno on error.
1384  */
1385 int llapi_hsm_state_set_fd(int fd, __u64 setmask, __u64 clearmask,
1386                            __u32 archive_id)
1387 {
1388         struct hsm_state_set     hss;
1389         int                      rc;
1390
1391         hss.hss_valid = HSS_SETMASK|HSS_CLEARMASK;
1392         hss.hss_setmask = setmask;
1393         hss.hss_clearmask = clearmask;
1394         /* Change archive_id if provided. We can only change
1395          * to set something different than 0. */
1396         if (archive_id > 0) {
1397                 hss.hss_valid |= HSS_ARCHIVE_ID;
1398                 hss.hss_archive_id = archive_id;
1399         }
1400         rc = ioctl(fd, LL_IOC_HSM_STATE_SET, &hss);
1401         /* If error, save errno value */
1402         rc = rc ? -errno : 0;
1403
1404         return rc;
1405 }
1406
1407 /**
1408  * Set HSM states of file pointed by \a path.
1409  *
1410  * see llapi_hsm_state_set_fd() for args use and return
1411  */
1412 int llapi_hsm_state_set(const char *path, __u64 setmask, __u64 clearmask,
1413                         __u32 archive_id)
1414 {
1415         int fd;
1416         int rc;
1417
1418         fd = open(path, O_WRONLY | O_LOV_DELAY_CREATE | O_NONBLOCK);
1419         if (fd < 0)
1420                 return -errno;
1421
1422         rc = llapi_hsm_state_set_fd(fd, setmask, clearmask, archive_id);
1423
1424         close(fd);
1425         return rc;
1426 }
1427
1428 /**
1429  * Return the current HSM request related to file pointed by \a path.
1430  *
1431  * \param hca  Should be allocated by caller. Will be filled with current file
1432  *             actions.
1433  *
1434  * \retval 0 on success.
1435  * \retval -errno on error.
1436  */
1437 int llapi_hsm_current_action(const char *path, struct hsm_current_action *hca)
1438 {
1439         int fd;
1440         int rc;
1441
1442         fd = open(path, O_RDONLY | O_NONBLOCK);
1443         if (fd < 0)
1444                 return -errno;
1445
1446         rc = ioctl(fd, LL_IOC_HSM_ACTION, hca);
1447         /* If error, save errno value */
1448         rc = rc ? -errno : 0;
1449
1450         close(fd);
1451         return rc;
1452 }
1453
1454 /**
1455  * Allocate a hsm_user_request with the specified carateristics.
1456  * This structure should be freed with free().
1457  *
1458  * \return an allocated structure on success, NULL otherwise.
1459  */
1460 struct hsm_user_request *llapi_hsm_user_request_alloc(int itemcount,
1461                                                       int data_len)
1462 {
1463         int len = 0;
1464
1465         len += sizeof(struct hsm_user_request);
1466         len += sizeof(struct hsm_user_item) * itemcount;
1467         len += data_len;
1468
1469         return (struct hsm_user_request *)malloc(len);
1470 }
1471
1472 /**
1473  * Send a HSM request to Lustre, described in \param request.
1474  *
1475  * \param path    Fullpath to the file to operate on.
1476  * \param request The request, allocated with llapi_hsm_user_request_alloc().
1477  *
1478  * \return 0 on success, an error code otherwise.
1479  */
1480 int llapi_hsm_request(const char *path, const struct hsm_user_request *request)
1481 {
1482         int rc;
1483         int fd;
1484
1485         rc = get_root_path(WANT_FD, NULL, &fd, (char *)path, -1);
1486         if (rc)
1487                 return rc;
1488
1489         rc = ioctl(fd, LL_IOC_HSM_REQUEST, request);
1490         /* If error, save errno value */
1491         rc = rc ? -errno : 0;
1492
1493         close(fd);
1494         return rc;
1495 }
1496