1 | /*
|
---|
2 | * Copyright (c) 2025 Miroslav Cimerman
|
---|
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 hr
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /**
|
---|
33 | * @file
|
---|
34 | */
|
---|
35 |
|
---|
36 | #include <block.h>
|
---|
37 | #include <byteorder.h>
|
---|
38 | #include <errno.h>
|
---|
39 | #include <inttypes.h>
|
---|
40 | #include <io/log.h>
|
---|
41 | #include <loc.h>
|
---|
42 | #include <mem.h>
|
---|
43 | #include <uuid.h>
|
---|
44 | #include <stdlib.h>
|
---|
45 | #include <stdio.h>
|
---|
46 | #include <str.h>
|
---|
47 |
|
---|
48 | #include "superblock.h"
|
---|
49 | #include "util.h"
|
---|
50 | #include "var.h"
|
---|
51 |
|
---|
52 | #include "metadata/native.h"
|
---|
53 |
|
---|
54 | #include "metadata/foreign/geom/g_mirror.h"
|
---|
55 | #include "metadata/foreign/geom/g_stripe.h"
|
---|
56 | #include "metadata/foreign/softraid/softraidvar.h"
|
---|
57 |
|
---|
58 | extern hr_superblock_ops_t metadata_native_ops;
|
---|
59 | extern hr_superblock_ops_t metadata_gmirror_ops;
|
---|
60 | extern hr_superblock_ops_t metadata_gstripe_ops;
|
---|
61 | extern hr_superblock_ops_t metadata_softraid_ops;
|
---|
62 | extern hr_superblock_ops_t metadata_md_ops;
|
---|
63 | extern hr_superblock_ops_t noop_ops;
|
---|
64 |
|
---|
65 | static hr_superblock_ops_t *hr_superblock_ops_all[] = {
|
---|
66 | [HR_METADATA_NATIVE] = &metadata_native_ops,
|
---|
67 | [HR_METADATA_GEOM_MIRROR] = &metadata_gmirror_ops,
|
---|
68 | [HR_METADATA_GEOM_STRIPE] = &metadata_gstripe_ops,
|
---|
69 | [HR_METADATA_SOFTRAID] = &metadata_softraid_ops,
|
---|
70 | [HR_METADATA_MD] = &metadata_md_ops,
|
---|
71 | [HR_METADATA_NOOP] = &noop_ops
|
---|
72 | };
|
---|
73 |
|
---|
74 | hr_superblock_ops_t *hr_get_meta_type_ops(hr_metadata_type_t type)
|
---|
75 | {
|
---|
76 | assert(type >= HR_METADATA_NATIVE &&
|
---|
77 | type < HR_METADATA_LAST_PLACEHOLDER);
|
---|
78 |
|
---|
79 | return hr_superblock_ops_all[type];
|
---|
80 | }
|
---|
81 |
|
---|
82 | errno_t hr_find_metadata(service_id_t svc_id, void **rmetadata,
|
---|
83 | hr_metadata_type_t *rtype)
|
---|
84 | {
|
---|
85 | HR_DEBUG("%s()", __func__);
|
---|
86 |
|
---|
87 | errno_t rc;
|
---|
88 | hr_superblock_ops_t *meta_ops;
|
---|
89 | void *metadata_struct;
|
---|
90 |
|
---|
91 | if (rmetadata == NULL)
|
---|
92 | return EINVAL;
|
---|
93 | if (rtype == NULL)
|
---|
94 | return EINVAL;
|
---|
95 |
|
---|
96 | volatile hr_metadata_type_t type = HR_METADATA_NATIVE;
|
---|
97 | for (; type < HR_METADATA_LAST_PLACEHOLDER; type++) {
|
---|
98 | meta_ops = hr_superblock_ops_all[type];
|
---|
99 |
|
---|
100 | rc = meta_ops->probe(svc_id, &metadata_struct);
|
---|
101 | if (rc == ENOMEM)
|
---|
102 | return ENOMEM;
|
---|
103 | if (rc != EOK)
|
---|
104 | continue;
|
---|
105 |
|
---|
106 | *rmetadata = metadata_struct;
|
---|
107 | *rtype = type;
|
---|
108 | return EOK;
|
---|
109 | }
|
---|
110 |
|
---|
111 | return ENOFS;
|
---|
112 | }
|
---|
113 |
|
---|
114 | /** @}
|
---|
115 | */
|
---|