source: mainline/uspace/srv/volsrv/part.c@ d09eeb2

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d09eeb2 was b82985e, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Inserting volume by path.

  • Property mode set to 100644
File size: 18.3 KB
Line 
1/*
2 * Copyright (c) 2015 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup volsrv
30 * @{
31 */
32/**
33 * @file Partition handling
34 * @brief
35 */
36
37#include <adt/list.h>
38#include <errno.h>
39#include <fibril_synch.h>
40#include <io/log.h>
41#include <loc.h>
42#include <stdbool.h>
43#include <stdlib.h>
44#include <str.h>
45#include <str_error.h>
46#include <vfs/vfs.h>
47#include <vol.h>
48
49#include "empty.h"
50#include "mkfs.h"
51#include "part.h"
52#include "types/part.h"
53#include "volume.h"
54
55static errno_t vol_part_add_locked(vol_parts_t *, service_id_t);
56static void vol_part_remove_locked(vol_part_t *);
57static errno_t vol_part_find_by_id_ref_locked(vol_parts_t *, service_id_t,
58 vol_part_t **);
59
60struct fsname_type {
61 const char *name;
62 vol_fstype_t fstype;
63};
64
65static struct fsname_type fstab[] = {
66 { "ext4fs", fs_ext4 },
67 { "cdfs", fs_cdfs },
68 { "exfat", fs_exfat },
69 { "fat", fs_fat },
70 { "mfs", fs_minix },
71 { NULL, 0 }
72};
73
74static const char *fstype_str(vol_fstype_t fstype)
75{
76 struct fsname_type *fst;
77
78 fst = &fstab[0];
79 while (fst->name != NULL) {
80 if (fst->fstype == fstype)
81 return fst->name;
82 ++fst;
83 }
84
85 assert(false);
86 return NULL;
87}
88
89/** Check for new and removed partitions */
90static errno_t vol_part_check_new(vol_parts_t *parts)
91{
92 bool already_known;
93 bool still_exists;
94 category_id_t part_cat;
95 service_id_t *svcs;
96 size_t count, i;
97 link_t *cur, *next;
98 vol_part_t *part;
99 errno_t rc;
100
101 fibril_mutex_lock(&parts->lock);
102
103 rc = loc_category_get_id("partition", &part_cat, IPC_FLAG_BLOCKING);
104 if (rc != EOK) {
105 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed resolving category 'partition'.");
106 fibril_mutex_unlock(&parts->lock);
107 return ENOENT;
108 }
109
110 rc = loc_category_get_svcs(part_cat, &svcs, &count);
111 if (rc != EOK) {
112 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting list of partition "
113 "devices.");
114 fibril_mutex_unlock(&parts->lock);
115 return EIO;
116 }
117
118 /* Check for new partitions */
119 for (i = 0; i < count; i++) {
120 already_known = false;
121
122 // XXX Make this faster
123 list_foreach(parts->parts, lparts, vol_part_t, part) {
124 if (part->svc_id == svcs[i]) {
125 already_known = true;
126 break;
127 }
128 }
129
130 if (!already_known) {
131 log_msg(LOG_DEFAULT, LVL_NOTE, "Found partition '%lu'",
132 (unsigned long) svcs[i]);
133 rc = vol_part_add_locked(parts, svcs[i]);
134 if (rc != EOK) {
135 log_msg(LOG_DEFAULT, LVL_ERROR, "Could not add "
136 "partition.");
137 }
138 }
139 }
140
141 /* Check for removed partitions */
142 cur = list_first(&parts->parts);
143 while (cur != NULL) {
144 next = list_next(cur, &parts->parts);
145 part = list_get_instance(cur, vol_part_t, lparts);
146
147 still_exists = false;
148 // XXX Make this faster
149 for (i = 0; i < count; i++) {
150 if (part->svc_id == svcs[i]) {
151 still_exists = true;
152 break;
153 }
154 }
155
156 if (!still_exists) {
157 log_msg(LOG_DEFAULT, LVL_NOTE, "Partition '%zu' is gone",
158 part->svc_id);
159 vol_part_remove_locked(part);
160 }
161
162 cur = next;
163 }
164
165 free(svcs);
166
167 fibril_mutex_unlock(&parts->lock);
168 return EOK;
169}
170
171static vol_part_t *vol_part_new(void)
172{
173 vol_part_t *part = calloc(1, sizeof(vol_part_t));
174
175 if (part == NULL) {
176 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed allocating partition "
177 "structure. Out of memory.");
178 return NULL;
179 }
180
181 refcount_init(&part->refcnt);
182 link_initialize(&part->lparts);
183 part->parts = NULL;
184 part->pcnt = vpc_empty;
185
186 return part;
187}
188
189static void vol_part_delete(vol_part_t *part)
190{
191 log_msg(LOG_DEFAULT, LVL_ERROR, "Freeing partition %p", part);
192 if (part == NULL)
193 return;
194
195 if (part->volume != NULL)
196 vol_volume_del_ref(part->volume);
197
198 free(part->cur_mp);
199 free(part->svc_name);
200 free(part);
201}
202
203static errno_t vol_part_probe(vol_part_t *part)
204{
205 bool empty;
206 vfs_fs_probe_info_t info;
207 struct fsname_type *fst;
208 char *label;
209 vol_volume_t *volume;
210 errno_t rc;
211
212 log_msg(LOG_DEFAULT, LVL_NOTE, "Probe partition %s", part->svc_name);
213
214 assert(fibril_mutex_is_locked(&part->parts->lock));
215
216 fst = &fstab[0];
217 while (fst->name != NULL) {
218 rc = vfs_fsprobe(fst->name, part->svc_id, &info);
219 if (rc == EOK)
220 break;
221 ++fst;
222 }
223
224 if (fst->name != NULL) {
225 log_msg(LOG_DEFAULT, LVL_NOTE, "Found %s, label '%s'",
226 fst->name, info.label);
227 label = str_dup(info.label);
228 if (label == NULL) {
229 rc = ENOMEM;
230 goto error;
231 }
232
233 part->pcnt = vpc_fs;
234 part->fstype = fst->fstype;
235 part->label = label;
236 } else {
237 log_msg(LOG_DEFAULT, LVL_NOTE, "Partition does not contain "
238 "a recognized file system.");
239
240 rc = volsrv_part_is_empty(part->svc_id, &empty);
241 if (rc != EOK) {
242 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed determining if "
243 "partition is empty.");
244 rc = EIO;
245 goto error;
246 }
247
248 label = str_dup("");
249 if (label == NULL) {
250 rc = ENOMEM;
251 goto error;
252 }
253
254 part->pcnt = empty ? vpc_empty : vpc_unknown;
255 part->label = label;
256 }
257
258 /* Look up new or existing volume. */
259 rc = vol_volume_lookup_ref(part->parts->volumes, part->label, &volume);
260 if (rc != EOK)
261 goto error;
262
263 part->volume = volume;
264 return EOK;
265
266error:
267 return rc;
268}
269
270/** Determine if partition is allowed to be mounted by default.
271 *
272 * @param part Partition
273 * @return @c true iff partition is allowed to be mounted by default
274 */
275static bool vol_part_allow_mount_by_def(vol_part_t *part)
276{
277 /* CDFS is safe to mount (after all, it is read-only) */
278 if (part->pcnt == vpc_fs && part->fstype == fs_cdfs)
279 return true;
280
281 /* For other file systems disallow mounting from ATA hard drive */
282 if (str_str(part->svc_name, "\\ata-c") != NULL)
283 return false;
284
285 /* Allow otherwise (e.g. USB mass storage) */
286 return true;
287}
288
289/** Determine the default mount point for a partition.
290 *
291 * @param part Partition
292 * @return Pointer to the constant string "Auto" or "None"
293 */
294static const char *vol_part_def_mountp(vol_part_t *part)
295{
296 return vol_part_allow_mount_by_def(part) ? "Auto" : "None";
297}
298
299/** Determine actual mount path to be used for a partition.
300 *
301 * @param part Partition
302 * @param rpath Place to store pointer to newly allocated string or @c NULL
303 * if volume should not be mounted
304 * @param rauto Place to store boolean flag whether mount point is automatic
305 *
306 * @return EOK on success, ENOMEM if out of memory
307 */
308static errno_t vol_part_determine_mount_path(vol_part_t *part, char **rpath,
309 bool *rauto)
310{
311 const char *cfg_mp;
312 char *mp;
313 bool mp_auto;
314 int err;
315
316 /* Get configured mount point */
317 if (str_size(part->volume->mountp) > 0) {
318 cfg_mp = part->volume->mountp;
319 log_msg(LOG_DEFAULT, LVL_NOTE, "Configured mount point '%s'",
320 cfg_mp);
321 } else {
322 cfg_mp = vol_part_def_mountp(part);
323 log_msg(LOG_DEFAULT, LVL_NOTE, "Default mount point '%s'",
324 cfg_mp);
325 }
326
327 if (str_cmp(cfg_mp, "Auto") == 0 || str_cmp(cfg_mp, "auto") == 0) {
328
329 if (str_size(part->label) < 1) {
330 /* Don't mount nameless volumes */
331 *rpath = NULL;
332 *rauto = false;
333 return EOK;
334 }
335
336 log_msg(LOG_DEFAULT, LVL_NOTE, "Determine MP label='%s'", part->label);
337 err = asprintf(&mp, "/vol/%s", part->label);
338 if (err < 0) {
339 log_msg(LOG_DEFAULT, LVL_ERROR, "Out of memory");
340 return ENOMEM;
341 }
342
343 mp_auto = true;
344 } else if (str_cmp(cfg_mp, "None") == 0 || str_cmp(cfg_mp, "none") == 0) {
345 mp = NULL;
346 mp_auto = false;
347 } else {
348 mp = str_dup(cfg_mp);
349 mp_auto = false;
350 }
351
352 *rpath = mp;
353 *rauto = mp_auto;
354 return EOK;
355}
356
357/** Mount partition.
358 *
359 * @param part Partition
360 */
361static errno_t vol_part_mount(vol_part_t *part)
362{
363 char *mp;
364 bool mp_auto;
365 errno_t rc;
366
367 rc = vol_part_determine_mount_path(part, &mp, &mp_auto);
368 if (rc != EOK) {
369 log_msg(LOG_DEFAULT, LVL_ERROR, "Error determining mount point.\n");
370 return rc;
371 }
372
373 if (mp == NULL) {
374 log_msg(LOG_DEFAULT, LVL_NOTE, "Not mounting volume.");
375 return EOK;
376 }
377
378 if (mp_auto) {
379 /* Create directory for automatic mount point */
380 log_msg(LOG_DEFAULT, LVL_NOTE, "Create mount point '%s'", mp);
381 rc = vfs_link_path(mp, KIND_DIRECTORY, NULL);
382 if (rc != EOK) {
383 log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating mount point '%s'",
384 mp);
385 free(mp);
386 return EIO;
387 }
388 }
389
390 log_msg(LOG_DEFAULT, LVL_NOTE, "Call vfs_mount_path mp='%s' fstype='%s' svc_name='%s'",
391 mp, fstype_str(part->fstype), part->svc_name);
392 rc = vfs_mount_path(mp, fstype_str(part->fstype),
393 part->svc_name, "", 0, 0);
394 if (rc != EOK) {
395 log_msg(LOG_DEFAULT, LVL_NOTE, "Failed mounting to %s", mp);
396 }
397 log_msg(LOG_DEFAULT, LVL_NOTE, "Mount to %s -> %d\n", mp, rc);
398
399 part->cur_mp = mp;
400 part->cur_mp_auto = mp_auto;
401
402 return rc;
403}
404
405static errno_t vol_part_add_locked(vol_parts_t *parts, service_id_t sid)
406{
407 vol_part_t *part;
408 errno_t rc;
409
410 assert(fibril_mutex_is_locked(&parts->lock));
411 log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_add_locked(%zu)", sid);
412
413 /* Check for duplicates */
414 rc = vol_part_find_by_id_ref_locked(parts, sid, &part);
415 if (rc == EOK) {
416 vol_part_del_ref(part);
417 return EEXIST;
418 }
419
420 log_msg(LOG_DEFAULT, LVL_NOTE, "partition %zu is new", sid);
421
422 part = vol_part_new();
423 if (part == NULL)
424 return ENOMEM;
425
426 part->svc_id = sid;
427 part->parts = parts;
428
429 rc = loc_service_get_name(sid, &part->svc_name);
430 if (rc != EOK) {
431 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting service name.");
432 goto error;
433 }
434
435 rc = vol_part_probe(part);
436 if (rc != EOK)
437 goto error;
438
439 rc = vol_part_mount(part);
440 if (rc != EOK)
441 goto error;
442
443 list_append(&part->lparts, &parts->parts);
444
445 log_msg(LOG_DEFAULT, LVL_NOTE, "Added partition %zu", part->svc_id);
446
447 return EOK;
448
449error:
450 vol_part_delete(part);
451 return rc;
452}
453
454static void vol_part_remove_locked(vol_part_t *part)
455{
456 assert(fibril_mutex_is_locked(&part->parts->lock));
457 log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_remove_locked(%zu)",
458 part->svc_id);
459
460 list_remove(&part->lparts);
461
462 log_msg(LOG_DEFAULT, LVL_NOTE, "Removed partition.");
463 vol_part_del_ref(part);
464}
465
466errno_t vol_part_add_part(vol_parts_t *parts, service_id_t sid)
467{
468 errno_t rc;
469
470 fibril_mutex_lock(&parts->lock);
471 rc = vol_part_add_locked(parts, sid);
472 fibril_mutex_unlock(&parts->lock);
473
474 return rc;
475}
476
477static void vol_part_cat_change_cb(void *arg)
478{
479 vol_parts_t *parts = (vol_parts_t *) arg;
480
481 (void) vol_part_check_new(parts);
482}
483
484errno_t vol_parts_create(vol_volumes_t *volumes, vol_parts_t **rparts)
485{
486 vol_parts_t *parts;
487
488 parts = calloc(1, sizeof(vol_parts_t));
489 if (parts == NULL)
490 return ENOMEM;
491
492 fibril_mutex_initialize(&parts->lock);
493 list_initialize(&parts->parts);
494 parts->volumes = volumes;
495
496 *rparts = parts;
497 return EOK;
498}
499
500void vol_parts_destroy(vol_parts_t *parts)
501{
502 if (parts == NULL)
503 return;
504
505 assert(list_empty(&parts->parts));
506 free(parts);
507}
508
509errno_t vol_part_discovery_start(vol_parts_t *parts)
510{
511 errno_t rc;
512
513 rc = loc_register_cat_change_cb(vol_part_cat_change_cb, parts);
514 if (rc != EOK) {
515 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback "
516 "for partition discovery: %s.", str_error(rc));
517 return rc;
518 }
519
520 return vol_part_check_new(parts);
521}
522
523/** Get list of partitions as array of service IDs. */
524errno_t vol_part_get_ids(vol_parts_t *parts, service_id_t *id_buf,
525 size_t buf_size, size_t *act_size)
526{
527 size_t act_cnt;
528 size_t buf_cnt;
529
530 fibril_mutex_lock(&parts->lock);
531
532 buf_cnt = buf_size / sizeof(service_id_t);
533
534 act_cnt = list_count(&parts->parts);
535 *act_size = act_cnt * sizeof(service_id_t);
536
537 if (buf_size % sizeof(service_id_t) != 0) {
538 fibril_mutex_unlock(&parts->lock);
539 return EINVAL;
540 }
541
542 size_t pos = 0;
543 list_foreach(parts->parts, lparts, vol_part_t, part) {
544 if (pos < buf_cnt)
545 id_buf[pos] = part->svc_id;
546 pos++;
547 }
548
549 fibril_mutex_unlock(&parts->lock);
550 return EOK;
551}
552
553static errno_t vol_part_find_by_id_ref_locked(vol_parts_t *parts,
554 service_id_t sid, vol_part_t **rpart)
555{
556 assert(fibril_mutex_is_locked(&parts->lock));
557
558 list_foreach(parts->parts, lparts, vol_part_t, part) {
559 if (part->svc_id == sid) {
560 /* Add reference */
561 refcount_up(&part->refcnt);
562 *rpart = part;
563 return EOK;
564 }
565 }
566
567 return ENOENT;
568}
569
570errno_t vol_part_find_by_id_ref(vol_parts_t *parts, service_id_t sid,
571 vol_part_t **rpart)
572{
573 errno_t rc;
574
575 fibril_mutex_lock(&parts->lock);
576 rc = vol_part_find_by_id_ref_locked(parts, sid, rpart);
577 fibril_mutex_unlock(&parts->lock);
578
579 return rc;
580}
581
582/** Find partition by filesystem path.
583 *
584 * @param parts Partitions
585 * @param path Filesystem path
586 * @param rpart Place to store pointer to partition
587 * @return EOK on success, ENOENT if not found, ENOMEM if out of memory
588 */
589errno_t vol_part_find_by_path_ref(vol_parts_t *parts, const char *path,
590 vol_part_t **rpart)
591{
592 errno_t rc;
593 char *mpath;
594 bool mauto;
595
596 fibril_mutex_lock(&parts->lock);
597
598 list_foreach(parts->parts, lparts, vol_part_t, part) {
599 rc = vol_part_determine_mount_path(part, &mpath, &mauto);
600 if (rc != EOK) {
601 fibril_mutex_unlock(&parts->lock);
602 return ENOMEM;
603 }
604
605 if (mpath != NULL && str_cmp(mpath, path) == 0) {
606 /* Add reference */
607 refcount_up(&part->refcnt);
608 fibril_mutex_unlock(&parts->lock);
609 free(mpath);
610 *rpart = part;
611 return EOK;
612 }
613
614 if (mpath != NULL)
615 free(mpath);
616 }
617
618 fibril_mutex_unlock(&parts->lock);
619 return ENOENT;
620}
621
622void vol_part_del_ref(vol_part_t *part)
623{
624 if (refcount_down(&part->refcnt))
625 vol_part_delete(part);
626}
627
628errno_t vol_part_eject_part(vol_part_t *part)
629{
630 int rc;
631
632 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_eject_part()");
633
634 if (part->cur_mp == NULL) {
635 log_msg(LOG_DEFAULT, LVL_DEBUG, "Attempt to mount unmounted "
636 "partition.");
637 return EINVAL;
638 }
639
640 rc = vfs_unmount_path(part->cur_mp);
641 if (rc != EOK) {
642 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed unmounting partition "
643 "from %s", part->cur_mp);
644 return rc;
645 }
646
647 if (part->cur_mp_auto) {
648 rc = vfs_unlink_path(part->cur_mp);
649 if (rc != EOK) {
650 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed deleting "
651 "mount directory %s.", part->cur_mp);
652 }
653 }
654
655 free(part->cur_mp);
656 part->cur_mp = NULL;
657 part->cur_mp_auto = false;
658
659 return EOK;
660}
661
662errno_t vol_part_empty_part(vol_part_t *part)
663{
664 errno_t rc;
665
666 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part()");
667
668 rc = volsrv_part_empty(part->svc_id);
669 if (rc != EOK) {
670 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part() - failed %s",
671 str_error(rc));
672 return rc;
673 }
674
675 part->pcnt = vpc_empty;
676 return EOK;
677}
678
679/** Insert volume.
680 *
681 * Re-mount the volume in the partition, if applicable.
682 *
683 * @param part Partition
684 */
685errno_t vol_part_insert_part(vol_part_t *part)
686{
687 int rc;
688
689 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_insert_part()");
690
691 fibril_mutex_lock(&part->parts->lock);
692
693 if (part->cur_mp != NULL) {
694 fibril_mutex_unlock(&part->parts->lock);
695 return EOK;
696 }
697
698 rc = vol_part_probe(part);
699 if (rc != EOK)
700 goto error;
701
702 rc = vol_part_mount(part);
703 if (rc != EOK)
704 goto error;
705
706 fibril_mutex_unlock(&part->parts->lock);
707
708 return EOK;
709error:
710 return rc;
711}
712
713/** Set mount point.
714 *
715 * Verify and set a mount point. If the value of the mount point is
716 * the same as the default value, we will actually unset the mount point
717 * value (therefore effectively changing it to use the default).
718 *
719 * @return EOK on success, error code otherwise
720 */
721static errno_t vol_part_mountp_set(vol_part_t *part, const char *mountp)
722{
723 errno_t rc;
724 const char *def_mp;
725 const char *mp;
726
727 rc = vol_mountp_validate(mountp);
728 if (rc != EOK)
729 return rc;
730
731 def_mp = vol_part_def_mountp(part);
732
733 /* If the value is the same as default, set to empty string. */
734 if (str_cmp(def_mp, mountp) == 0)
735 mp = "";
736 else
737 mp = mountp;
738
739 rc = vol_volume_set_mountp(part->volume, mp);
740 if (rc != EOK)
741 return rc;
742
743 return EOK;
744}
745
746errno_t vol_part_mkfs_part(vol_part_t *part, vol_fstype_t fstype,
747 const char *label, const char *mountp)
748{
749 errno_t rc;
750
751 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part()");
752
753 fibril_mutex_lock(&part->parts->lock);
754
755 rc = volsrv_part_mkfs(part->svc_id, fstype, label);
756 if (rc != EOK) {
757 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part() - failed %s",
758 str_error(rc));
759 fibril_mutex_unlock(&part->parts->lock);
760 return rc;
761 }
762
763 /*
764 * Re-probe the partition to update information. This is needed since
765 * the FS can make conversions of the volume label (e.g. make it
766 * uppercase).
767 */
768 rc = vol_part_probe(part);
769 if (rc != EOK) {
770 fibril_mutex_unlock(&part->parts->lock);
771 return rc;
772 }
773
774 rc = vol_part_mountp_set(part, mountp);
775 if (rc != EOK) {
776 fibril_mutex_unlock(&part->parts->lock);
777 return rc;
778 }
779
780 rc = vol_part_mount(part);
781 if (rc != EOK) {
782 fibril_mutex_unlock(&part->parts->lock);
783 return rc;
784 }
785
786 fibril_mutex_unlock(&part->parts->lock);
787 return EOK;
788}
789
790/** Set partition mount point.
791 *
792 * Set the partition mount point, (un-, re-)mounting the partition as necessary.
793 *
794 * @param part Partition
795 * @param mountp
796 *
797 * @return EOK on success or error code
798 */
799errno_t vol_part_set_mountp_part(vol_part_t *part, const char *mountp)
800{
801 errno_t rc;
802
803 if (part->cur_mp != NULL) {
804 rc = vol_part_eject_part(part);
805 if (rc != EOK)
806 return rc;
807 }
808
809 rc = vol_part_mountp_set(part, mountp);
810 if (rc != EOK)
811 return rc;
812
813 rc = vol_part_mount(part);
814 if (rc != EOK)
815 return rc;
816
817 return EOK;
818}
819
820errno_t vol_part_get_info(vol_part_t *part, vol_part_info_t *pinfo)
821{
822 memset(pinfo, 0, sizeof(*pinfo));
823
824 pinfo->pcnt = part->pcnt;
825 pinfo->fstype = part->fstype;
826 str_cpy(pinfo->label, sizeof(pinfo->label), part->label);
827 if (part->cur_mp != NULL)
828 str_cpy(pinfo->cur_mp, sizeof(pinfo->cur_mp), part->cur_mp);
829 pinfo->cur_mp_auto = part->cur_mp_auto;
830 return EOK;
831}
832
833/** @}
834 */
Note: See TracBrowser for help on using the repository browser.