[1356f85a] | 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 Volume service
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <async.h>
|
---|
| 37 | #include <errno.h>
|
---|
[c1694b6b] | 38 | #include <str_error.h>
|
---|
[1356f85a] | 39 | #include <io/log.h>
|
---|
| 40 | #include <ipc/services.h>
|
---|
[22fb7ab] | 41 | #include <ipc/vol.h>
|
---|
[1356f85a] | 42 | #include <loc.h>
|
---|
[0ecfc62] | 43 | #include <macros.h>
|
---|
[1356f85a] | 44 | #include <stdio.h>
|
---|
| 45 | #include <stdlib.h>
|
---|
| 46 | #include <task.h>
|
---|
[edebb4a1] | 47 | #include <types/vol.h>
|
---|
[1356f85a] | 48 |
|
---|
[9c2c7d2] | 49 | #include "mkfs.h"
|
---|
[372df8f] | 50 | #include "part.h"
|
---|
[64ffd83] | 51 | #include "volume.h"
|
---|
[1356f85a] | 52 |
|
---|
| 53 | #define NAME "volsrv"
|
---|
| 54 |
|
---|
[df8eaba] | 55 | const char *vol_cfg_file = "/cfg/volsrv.sif";
|
---|
[1dcba91] | 56 |
|
---|
[984a9ba] | 57 | static void vol_client_conn(ipc_call_t *, void *);
|
---|
[1356f85a] | 58 |
|
---|
[b7fd2a0] | 59 | static errno_t vol_init(void)
|
---|
[1356f85a] | 60 | {
|
---|
[b7fd2a0] | 61 | errno_t rc;
|
---|
[64ffd83] | 62 | vol_volumes_t *volumes = NULL;
|
---|
[e89a06a] | 63 | vol_parts_t *parts = NULL;
|
---|
| 64 |
|
---|
[1356f85a] | 65 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_init()");
|
---|
| 66 |
|
---|
[1dcba91] | 67 | rc = vol_volumes_create(vol_cfg_file, &volumes);
|
---|
[64ffd83] | 68 | if (rc != EOK)
|
---|
| 69 | goto error;
|
---|
| 70 |
|
---|
| 71 | rc = vol_parts_create(volumes, &parts);
|
---|
[22fb7ab] | 72 | if (rc != EOK)
|
---|
[e89a06a] | 73 | goto error;
|
---|
[22fb7ab] | 74 |
|
---|
[e89a06a] | 75 | rc = vol_part_discovery_start(parts);
|
---|
[1356f85a] | 76 | if (rc != EOK)
|
---|
[e89a06a] | 77 | goto error;
|
---|
[1356f85a] | 78 |
|
---|
[e89a06a] | 79 | async_set_fallback_port_handler(vol_client_conn, parts);
|
---|
[1356f85a] | 80 |
|
---|
| 81 | rc = loc_server_register(NAME);
|
---|
| 82 | if (rc != EOK) {
|
---|
[c1694b6b] | 83 | log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server: %s.", str_error(rc));
|
---|
[e89a06a] | 84 | rc = EEXIST;
|
---|
[1356f85a] | 85 | }
|
---|
| 86 |
|
---|
| 87 | service_id_t sid;
|
---|
| 88 | rc = loc_service_register(SERVICE_NAME_VOLSRV, &sid);
|
---|
| 89 | if (rc != EOK) {
|
---|
[c1694b6b] | 90 | log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service: %s.", str_error(rc));
|
---|
[e89a06a] | 91 | rc = EEXIST;
|
---|
| 92 | goto error;
|
---|
[1356f85a] | 93 | }
|
---|
| 94 |
|
---|
| 95 | return EOK;
|
---|
[e89a06a] | 96 | error:
|
---|
[64ffd83] | 97 | vol_volumes_destroy(volumes);
|
---|
[e89a06a] | 98 | vol_parts_destroy(parts);
|
---|
| 99 | return rc;
|
---|
[1356f85a] | 100 | }
|
---|
| 101 |
|
---|
[e89a06a] | 102 | static void vol_get_parts_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[22fb7ab] | 103 | {
|
---|
[984a9ba] | 104 | ipc_call_t call;
|
---|
[22fb7ab] | 105 | size_t size;
|
---|
| 106 | size_t act_size;
|
---|
[b7fd2a0] | 107 | errno_t rc;
|
---|
[22fb7ab] | 108 |
|
---|
[984a9ba] | 109 | if (!async_data_read_receive(&call, &size)) {
|
---|
| 110 | async_answer_0(&call, EREFUSED);
|
---|
| 111 | async_answer_0(icall, EREFUSED);
|
---|
[22fb7ab] | 112 | return;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | service_id_t *id_buf = (service_id_t *) malloc(size);
|
---|
| 116 | if (id_buf == NULL) {
|
---|
[984a9ba] | 117 | async_answer_0(&call, ENOMEM);
|
---|
| 118 | async_answer_0(icall, ENOMEM);
|
---|
[22fb7ab] | 119 | return;
|
---|
| 120 | }
|
---|
| 121 |
|
---|
[e89a06a] | 122 | rc = vol_part_get_ids(parts, id_buf, size, &act_size);
|
---|
[22fb7ab] | 123 | if (rc != EOK) {
|
---|
[984a9ba] | 124 | async_answer_0(&call, rc);
|
---|
| 125 | async_answer_0(icall, rc);
|
---|
[22fb7ab] | 126 | return;
|
---|
| 127 | }
|
---|
| 128 |
|
---|
[984a9ba] | 129 | errno_t retval = async_data_read_finalize(&call, id_buf, size);
|
---|
[22fb7ab] | 130 | free(id_buf);
|
---|
| 131 |
|
---|
[984a9ba] | 132 | async_answer_1(icall, retval, act_size);
|
---|
[22fb7ab] | 133 | }
|
---|
| 134 |
|
---|
[e89a06a] | 135 | static void vol_part_add_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[edebb4a1] | 136 | {
|
---|
| 137 | service_id_t sid;
|
---|
[b7fd2a0] | 138 | errno_t rc;
|
---|
[edebb4a1] | 139 |
|
---|
| 140 | sid = IPC_GET_ARG1(*icall);
|
---|
| 141 |
|
---|
[64ffd83] | 142 | rc = vol_part_add_part(parts, sid);
|
---|
[edebb4a1] | 143 | if (rc != EOK) {
|
---|
[984a9ba] | 144 | async_answer_0(icall, rc);
|
---|
[edebb4a1] | 145 | return;
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[984a9ba] | 148 | async_answer_0(icall, EOK);
|
---|
[edebb4a1] | 149 | }
|
---|
| 150 |
|
---|
[e89a06a] | 151 | static void vol_part_info_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[22fb7ab] | 152 | {
|
---|
| 153 | service_id_t sid;
|
---|
[372df8f] | 154 | vol_part_t *part;
|
---|
| 155 | vol_part_info_t pinfo;
|
---|
[b7fd2a0] | 156 | errno_t rc;
|
---|
[22fb7ab] | 157 |
|
---|
| 158 | sid = IPC_GET_ARG1(*icall);
|
---|
[55f8c6e7] | 159 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_info_srv(%zu)",
|
---|
[edebb4a1] | 160 | sid);
|
---|
[e89a06a] | 161 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
[22fb7ab] | 162 | if (rc != EOK) {
|
---|
[984a9ba] | 163 | async_answer_0(icall, ENOENT);
|
---|
[22fb7ab] | 164 | return;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[372df8f] | 167 | rc = vol_part_get_info(part, &pinfo);
|
---|
[b7a4d06] | 168 | if (rc != EOK) {
|
---|
[984a9ba] | 169 | async_answer_0(icall, EIO);
|
---|
[1a9174e] | 170 | goto error;
|
---|
[b7a4d06] | 171 | }
|
---|
| 172 |
|
---|
[984a9ba] | 173 | ipc_call_t call;
|
---|
[0ecfc62] | 174 | size_t size;
|
---|
[984a9ba] | 175 | if (!async_data_read_receive(&call, &size)) {
|
---|
| 176 | async_answer_0(&call, EREFUSED);
|
---|
| 177 | async_answer_0(icall, EREFUSED);
|
---|
[1a9174e] | 178 | goto error;
|
---|
[0ecfc62] | 179 | }
|
---|
| 180 |
|
---|
| 181 | if (size != sizeof(vol_part_info_t)) {
|
---|
[984a9ba] | 182 | async_answer_0(&call, EINVAL);
|
---|
| 183 | async_answer_0(icall, EINVAL);
|
---|
[1a9174e] | 184 | goto error;
|
---|
[0ecfc62] | 185 | }
|
---|
| 186 |
|
---|
[984a9ba] | 187 | rc = async_data_read_finalize(&call, &pinfo,
|
---|
[0ecfc62] | 188 | min(size, sizeof(pinfo)));
|
---|
| 189 | if (rc != EOK) {
|
---|
[984a9ba] | 190 | async_answer_0(&call, rc);
|
---|
| 191 | async_answer_0(icall, rc);
|
---|
[1a9174e] | 192 | goto error;
|
---|
[0ecfc62] | 193 | }
|
---|
| 194 |
|
---|
[984a9ba] | 195 | async_answer_0(icall, EOK);
|
---|
[1a9174e] | 196 | error:
|
---|
| 197 | vol_part_del_ref(part);
|
---|
[22fb7ab] | 198 | }
|
---|
| 199 |
|
---|
[e89a06a] | 200 | static void vol_part_eject_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[72c72d4] | 201 | {
|
---|
| 202 | service_id_t sid;
|
---|
| 203 | vol_part_t *part;
|
---|
| 204 | errno_t rc;
|
---|
| 205 |
|
---|
| 206 | sid = IPC_GET_ARG1(*icall);
|
---|
| 207 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_eject_srv(%zu)", sid);
|
---|
| 208 |
|
---|
[e89a06a] | 209 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
[72c72d4] | 210 | if (rc != EOK) {
|
---|
[984a9ba] | 211 | async_answer_0(icall, ENOENT);
|
---|
[f0f8787] | 212 | return;
|
---|
[72c72d4] | 213 | }
|
---|
| 214 |
|
---|
| 215 | rc = vol_part_eject_part(part);
|
---|
| 216 | if (rc != EOK) {
|
---|
[984a9ba] | 217 | async_answer_0(icall, EIO);
|
---|
[1a9174e] | 218 | goto error;
|
---|
[72c72d4] | 219 | }
|
---|
| 220 |
|
---|
[984a9ba] | 221 | async_answer_0(icall, EOK);
|
---|
[1a9174e] | 222 | error:
|
---|
| 223 | vol_part_del_ref(part);
|
---|
[72c72d4] | 224 | }
|
---|
| 225 |
|
---|
[f0f8787] | 226 | static void vol_part_insert_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
| 227 | {
|
---|
| 228 | service_id_t sid;
|
---|
| 229 | vol_part_t *part;
|
---|
| 230 | errno_t rc;
|
---|
| 231 |
|
---|
| 232 | sid = IPC_GET_ARG1(*icall);
|
---|
| 233 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_insert_srv(%zu)", sid);
|
---|
| 234 |
|
---|
| 235 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
| 236 | if (rc != EOK) {
|
---|
| 237 | async_answer_0(icall, ENOENT);
|
---|
| 238 | return;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | rc = vol_part_insert_part(part);
|
---|
| 242 | if (rc != EOK) {
|
---|
| 243 | async_answer_0(icall, EIO);
|
---|
| 244 | goto error;
|
---|
| 245 | }
|
---|
| 246 |
|
---|
| 247 | async_answer_0(icall, EOK);
|
---|
| 248 | error:
|
---|
| 249 | vol_part_del_ref(part);
|
---|
| 250 | }
|
---|
| 251 |
|
---|
[b82985e] | 252 | static void vol_part_insert_by_path_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
| 253 | {
|
---|
| 254 | vol_part_t *part;
|
---|
| 255 | char *path = NULL;
|
---|
| 256 | errno_t rc;
|
---|
| 257 |
|
---|
| 258 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_insert_by_path_srv()");
|
---|
| 259 |
|
---|
| 260 | rc = async_data_write_accept((void **)&path, true, 0, VOL_MOUNTP_MAXLEN,
|
---|
| 261 | 0, NULL);
|
---|
| 262 | if (rc != EOK) {
|
---|
| 263 | async_answer_0(icall, rc);
|
---|
| 264 | goto error;
|
---|
| 265 | }
|
---|
| 266 |
|
---|
| 267 | rc = vol_part_find_by_path_ref(parts, path, &part);
|
---|
| 268 | if (rc != EOK) {
|
---|
| 269 | async_answer_0(icall, ENOENT);
|
---|
| 270 | goto error;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | rc = vol_part_insert_part(part);
|
---|
| 274 | if (rc != EOK) {
|
---|
| 275 | async_answer_0(icall, rc);
|
---|
| 276 | vol_part_del_ref(part);
|
---|
| 277 | goto error;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
| 280 | free(path);
|
---|
| 281 | vol_part_del_ref(part);
|
---|
| 282 | async_answer_0(icall, EOK);
|
---|
| 283 |
|
---|
| 284 | return;
|
---|
| 285 | error:
|
---|
| 286 | if (path != NULL)
|
---|
| 287 | free(path);
|
---|
| 288 | }
|
---|
| 289 |
|
---|
[e89a06a] | 290 | static void vol_part_empty_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[22fb7ab] | 291 | {
|
---|
| 292 | service_id_t sid;
|
---|
[372df8f] | 293 | vol_part_t *part;
|
---|
[b7fd2a0] | 294 | errno_t rc;
|
---|
[22fb7ab] | 295 |
|
---|
| 296 | sid = IPC_GET_ARG1(*icall);
|
---|
[55f8c6e7] | 297 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_srv(%zu)", sid);
|
---|
[22fb7ab] | 298 |
|
---|
[e89a06a] | 299 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
[22fb7ab] | 300 | if (rc != EOK) {
|
---|
[984a9ba] | 301 | async_answer_0(icall, ENOENT);
|
---|
[22fb7ab] | 302 | return;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
[372df8f] | 305 | rc = vol_part_empty_part(part);
|
---|
[603c1d1f] | 306 | if (rc != EOK) {
|
---|
[984a9ba] | 307 | async_answer_0(icall, EIO);
|
---|
[1a9174e] | 308 | goto error;
|
---|
[603c1d1f] | 309 | }
|
---|
[22fb7ab] | 310 |
|
---|
[984a9ba] | 311 | async_answer_0(icall, EOK);
|
---|
[1a9174e] | 312 | error:
|
---|
| 313 | vol_part_del_ref(part);
|
---|
[22fb7ab] | 314 | }
|
---|
[1356f85a] | 315 |
|
---|
[e89a06a] | 316 | static void vol_part_get_lsupp_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[9c2c7d2] | 317 | {
|
---|
| 318 | vol_fstype_t fstype;
|
---|
| 319 | vol_label_supp_t vlsupp;
|
---|
[b7fd2a0] | 320 | errno_t rc;
|
---|
[9c2c7d2] | 321 |
|
---|
| 322 | fstype = IPC_GET_ARG1(*icall);
|
---|
| 323 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_get_lsupp_srv(%u)",
|
---|
| 324 | fstype);
|
---|
| 325 |
|
---|
| 326 | volsrv_part_get_lsupp(fstype, &vlsupp);
|
---|
| 327 |
|
---|
[984a9ba] | 328 | ipc_call_t call;
|
---|
[9c2c7d2] | 329 | size_t size;
|
---|
[984a9ba] | 330 | if (!async_data_read_receive(&call, &size)) {
|
---|
| 331 | async_answer_0(&call, EREFUSED);
|
---|
| 332 | async_answer_0(icall, EREFUSED);
|
---|
[9c2c7d2] | 333 | return;
|
---|
| 334 | }
|
---|
| 335 |
|
---|
| 336 | if (size != sizeof(vol_label_supp_t)) {
|
---|
[984a9ba] | 337 | async_answer_0(&call, EINVAL);
|
---|
| 338 | async_answer_0(icall, EINVAL);
|
---|
[9c2c7d2] | 339 | return;
|
---|
| 340 | }
|
---|
| 341 |
|
---|
[984a9ba] | 342 | rc = async_data_read_finalize(&call, &vlsupp,
|
---|
[9c2c7d2] | 343 | min(size, sizeof(vlsupp)));
|
---|
| 344 | if (rc != EOK) {
|
---|
[984a9ba] | 345 | async_answer_0(&call, rc);
|
---|
| 346 | async_answer_0(icall, rc);
|
---|
[9c2c7d2] | 347 | return;
|
---|
| 348 | }
|
---|
| 349 |
|
---|
[984a9ba] | 350 | async_answer_0(icall, EOK);
|
---|
[9c2c7d2] | 351 | }
|
---|
| 352 |
|
---|
[e89a06a] | 353 | static void vol_part_mkfs_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
[44fe800] | 354 | {
|
---|
| 355 | service_id_t sid;
|
---|
| 356 | vol_part_t *part;
|
---|
| 357 | vol_fstype_t fstype;
|
---|
[2d78d88] | 358 | char *label = NULL;
|
---|
| 359 | char *mountp = NULL;
|
---|
[b7fd2a0] | 360 | errno_t rc;
|
---|
[44fe800] | 361 |
|
---|
[5f36841] | 362 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_mkfs_srv()");
|
---|
| 363 |
|
---|
[44fe800] | 364 | sid = IPC_GET_ARG1(*icall);
|
---|
| 365 | fstype = IPC_GET_ARG2(*icall);
|
---|
| 366 |
|
---|
[9c2c7d2] | 367 | rc = async_data_write_accept((void **)&label, true, 0, VOL_LABEL_MAXLEN,
|
---|
| 368 | 0, NULL);
|
---|
| 369 | if (rc != EOK) {
|
---|
[984a9ba] | 370 | async_answer_0(icall, rc);
|
---|
[2d78d88] | 371 | goto error;
|
---|
[9c2c7d2] | 372 | }
|
---|
| 373 |
|
---|
[5f36841] | 374 | if (label != NULL) {
|
---|
| 375 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_mkfs_srv: label='%s'",
|
---|
| 376 | label);
|
---|
| 377 | }
|
---|
[9c2c7d2] | 378 |
|
---|
[64ffd83] | 379 | rc = async_data_write_accept((void **)&mountp, true, 0, VOL_MOUNTP_MAXLEN,
|
---|
| 380 | 0, NULL);
|
---|
| 381 | if (rc != EOK) {
|
---|
| 382 | async_answer_0(icall, rc);
|
---|
[2d78d88] | 383 | goto error;
|
---|
[64ffd83] | 384 | }
|
---|
| 385 |
|
---|
| 386 | if (mountp != NULL) {
|
---|
| 387 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_mkfs_srv: mountp='%s'",
|
---|
| 388 | mountp);
|
---|
| 389 | }
|
---|
| 390 |
|
---|
[e89a06a] | 391 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
[44fe800] | 392 | if (rc != EOK) {
|
---|
[984a9ba] | 393 | async_answer_0(icall, ENOENT);
|
---|
[2d78d88] | 394 | goto error;
|
---|
[44fe800] | 395 | }
|
---|
| 396 |
|
---|
[64ffd83] | 397 | rc = vol_part_mkfs_part(part, fstype, label, mountp);
|
---|
[44fe800] | 398 | if (rc != EOK) {
|
---|
[2d78d88] | 399 | async_answer_0(icall, rc);
|
---|
| 400 | vol_part_del_ref(part);
|
---|
| 401 | goto error;
|
---|
| 402 | }
|
---|
| 403 |
|
---|
| 404 | free(label);
|
---|
| 405 | free(mountp);
|
---|
| 406 | async_answer_0(icall, EOK);
|
---|
| 407 |
|
---|
| 408 | return;
|
---|
| 409 | error:
|
---|
| 410 | if (label != NULL)
|
---|
[9c2c7d2] | 411 | free(label);
|
---|
[2d78d88] | 412 | if (mountp != NULL)
|
---|
| 413 | free(mountp);
|
---|
| 414 | }
|
---|
| 415 |
|
---|
| 416 | static void vol_part_set_mountp_srv(vol_parts_t *parts,
|
---|
| 417 | ipc_call_t *icall)
|
---|
| 418 | {
|
---|
| 419 | service_id_t sid;
|
---|
| 420 | vol_part_t *part;
|
---|
| 421 | char *mountp;
|
---|
| 422 | errno_t rc;
|
---|
| 423 |
|
---|
| 424 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_part_set_mountp_srv()");
|
---|
| 425 |
|
---|
| 426 | sid = IPC_GET_ARG1(*icall);
|
---|
| 427 |
|
---|
| 428 | rc = async_data_write_accept((void **)&mountp, true, 0,
|
---|
| 429 | VOL_MOUNTP_MAXLEN, 0, NULL);
|
---|
| 430 | if (rc != EOK) {
|
---|
| 431 | async_answer_0(icall, rc);
|
---|
| 432 | return;
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 | if (mountp != NULL) {
|
---|
| 436 | log_msg(LOG_DEFAULT, LVL_NOTE,
|
---|
| 437 | "vol_part_set_mountp_srv: mountp='%s'", mountp);
|
---|
| 438 | }
|
---|
| 439 |
|
---|
| 440 | rc = vol_part_find_by_id_ref(parts, sid, &part);
|
---|
| 441 | if (rc != EOK) {
|
---|
| 442 | free(mountp);
|
---|
| 443 | async_answer_0(icall, ENOENT);
|
---|
| 444 | return;
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 | rc = vol_part_set_mountp_part(part, mountp);
|
---|
| 448 | if (rc != EOK) {
|
---|
| 449 | free(mountp);
|
---|
[984a9ba] | 450 | async_answer_0(icall, rc);
|
---|
[1a9174e] | 451 | vol_part_del_ref(part);
|
---|
[44fe800] | 452 | return;
|
---|
| 453 | }
|
---|
| 454 |
|
---|
[2d78d88] | 455 | free(mountp);
|
---|
[984a9ba] | 456 | async_answer_0(icall, EOK);
|
---|
[44fe800] | 457 | }
|
---|
| 458 |
|
---|
[63c1dd5] | 459 | static void vol_get_volumes_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
| 460 | {
|
---|
| 461 | ipc_call_t call;
|
---|
| 462 | size_t size;
|
---|
| 463 | size_t act_size;
|
---|
| 464 | errno_t rc;
|
---|
| 465 |
|
---|
| 466 | log_msg(LOG_DEFAULT, LVL_NOTE, "vol_get_volumes_srv()");
|
---|
| 467 |
|
---|
| 468 | if (!async_data_read_receive(&call, &size)) {
|
---|
| 469 | async_answer_0(&call, EREFUSED);
|
---|
| 470 | async_answer_0(icall, EREFUSED);
|
---|
| 471 | return;
|
---|
| 472 | }
|
---|
| 473 |
|
---|
| 474 | volume_id_t *id_buf = (volume_id_t *) malloc(size);
|
---|
| 475 | if (id_buf == NULL) {
|
---|
| 476 | async_answer_0(&call, ENOMEM);
|
---|
| 477 | async_answer_0(icall, ENOMEM);
|
---|
| 478 | return;
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | rc = vol_get_ids(parts->volumes, id_buf, size, &act_size);
|
---|
| 482 | if (rc != EOK) {
|
---|
| 483 | async_answer_0(&call, rc);
|
---|
| 484 | async_answer_0(icall, rc);
|
---|
| 485 | return;
|
---|
| 486 | }
|
---|
| 487 |
|
---|
| 488 | errno_t retval = async_data_read_finalize(&call, id_buf, size);
|
---|
| 489 | free(id_buf);
|
---|
| 490 |
|
---|
| 491 | async_answer_1(icall, retval, act_size);
|
---|
| 492 | }
|
---|
| 493 |
|
---|
| 494 | static void vol_info_srv(vol_parts_t *parts, ipc_call_t *icall)
|
---|
| 495 | {
|
---|
| 496 | volume_id_t vid;
|
---|
| 497 | vol_volume_t *volume;
|
---|
| 498 | vol_info_t vinfo;
|
---|
| 499 | errno_t rc;
|
---|
| 500 |
|
---|
| 501 | vid.id = IPC_GET_ARG1(*icall);
|
---|
| 502 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_info_srv(%zu)", vid.id);
|
---|
| 503 |
|
---|
| 504 | rc = vol_volume_find_by_id_ref(parts->volumes, vid, &volume);
|
---|
| 505 | if (rc != EOK) {
|
---|
| 506 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_info_srv: volume %zu not found",
|
---|
| 507 | vid.id);
|
---|
| 508 | async_answer_0(icall, ENOENT);
|
---|
| 509 | return;
|
---|
| 510 | }
|
---|
| 511 |
|
---|
| 512 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_info_srv: vol_volume_get_info");
|
---|
| 513 | rc = vol_volume_get_info(volume, &vinfo);
|
---|
| 514 | if (rc != EOK) {
|
---|
| 515 | async_answer_0(icall, EIO);
|
---|
| 516 | goto error;
|
---|
| 517 | }
|
---|
| 518 |
|
---|
| 519 | ipc_call_t call;
|
---|
| 520 | size_t size;
|
---|
| 521 | if (!async_data_read_receive(&call, &size)) {
|
---|
| 522 | async_answer_0(&call, EREFUSED);
|
---|
| 523 | async_answer_0(icall, EREFUSED);
|
---|
| 524 | goto error;
|
---|
| 525 | }
|
---|
| 526 |
|
---|
| 527 | if (size != sizeof(vol_info_t)) {
|
---|
| 528 | async_answer_0(&call, EINVAL);
|
---|
| 529 | async_answer_0(icall, EINVAL);
|
---|
| 530 | goto error;
|
---|
| 531 | }
|
---|
| 532 |
|
---|
| 533 | rc = async_data_read_finalize(&call, &vinfo,
|
---|
| 534 | min(size, sizeof(vinfo)));
|
---|
| 535 | if (rc != EOK) {
|
---|
| 536 | async_answer_0(&call, rc);
|
---|
| 537 | async_answer_0(icall, rc);
|
---|
| 538 | goto error;
|
---|
| 539 | }
|
---|
| 540 |
|
---|
| 541 | async_answer_0(icall, EOK);
|
---|
| 542 | error:
|
---|
| 543 | vol_volume_del_ref(volume);
|
---|
| 544 | }
|
---|
| 545 |
|
---|
[984a9ba] | 546 | static void vol_client_conn(ipc_call_t *icall, void *arg)
|
---|
[1356f85a] | 547 | {
|
---|
[e89a06a] | 548 | vol_parts_t *parts = (vol_parts_t *) arg;
|
---|
| 549 |
|
---|
[1356f85a] | 550 | log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_client_conn()");
|
---|
| 551 |
|
---|
| 552 | /* Accept the connection */
|
---|
[984a9ba] | 553 | async_answer_0(icall, EOK);
|
---|
[1356f85a] | 554 |
|
---|
| 555 | while (true) {
|
---|
| 556 | ipc_call_t call;
|
---|
[984a9ba] | 557 | async_get_call(&call);
|
---|
[1356f85a] | 558 | sysarg_t method = IPC_GET_IMETHOD(call);
|
---|
| 559 |
|
---|
| 560 | if (!method) {
|
---|
| 561 | /* The other side has hung up */
|
---|
[984a9ba] | 562 | async_answer_0(&call, EOK);
|
---|
[1356f85a] | 563 | return;
|
---|
| 564 | }
|
---|
| 565 |
|
---|
| 566 | switch (method) {
|
---|
[372df8f] | 567 | case VOL_GET_PARTS:
|
---|
[e89a06a] | 568 | vol_get_parts_srv(parts, &call);
|
---|
[22fb7ab] | 569 | break;
|
---|
[edebb4a1] | 570 | case VOL_PART_ADD:
|
---|
[e89a06a] | 571 | vol_part_add_srv(parts, &call);
|
---|
[edebb4a1] | 572 | break;
|
---|
[372df8f] | 573 | case VOL_PART_INFO:
|
---|
[e89a06a] | 574 | vol_part_info_srv(parts, &call);
|
---|
[22fb7ab] | 575 | break;
|
---|
[72c72d4] | 576 | case VOL_PART_EJECT:
|
---|
[e89a06a] | 577 | vol_part_eject_srv(parts, &call);
|
---|
[72c72d4] | 578 | break;
|
---|
[372df8f] | 579 | case VOL_PART_EMPTY:
|
---|
[e89a06a] | 580 | vol_part_empty_srv(parts, &call);
|
---|
[22fb7ab] | 581 | break;
|
---|
[f0f8787] | 582 | case VOL_PART_INSERT:
|
---|
| 583 | vol_part_insert_srv(parts, &call);
|
---|
| 584 | break;
|
---|
[b82985e] | 585 | case VOL_PART_INSERT_BY_PATH:
|
---|
| 586 | vol_part_insert_by_path_srv(parts, &call);
|
---|
| 587 | break;
|
---|
[9c2c7d2] | 588 | case VOL_PART_LSUPP:
|
---|
[e89a06a] | 589 | vol_part_get_lsupp_srv(parts, &call);
|
---|
[9c2c7d2] | 590 | break;
|
---|
[44fe800] | 591 | case VOL_PART_MKFS:
|
---|
[e89a06a] | 592 | vol_part_mkfs_srv(parts, &call);
|
---|
[44fe800] | 593 | break;
|
---|
[2d78d88] | 594 | case VOL_PART_SET_MOUNTP:
|
---|
| 595 | vol_part_set_mountp_srv(parts, &call);
|
---|
| 596 | break;
|
---|
[63c1dd5] | 597 | case VOL_GET_VOLUMES:
|
---|
| 598 | vol_get_volumes_srv(parts, &call);
|
---|
| 599 | break;
|
---|
| 600 | case VOL_INFO:
|
---|
| 601 | vol_info_srv(parts, &call);
|
---|
| 602 | break;
|
---|
[1356f85a] | 603 | default:
|
---|
[984a9ba] | 604 | async_answer_0(&call, EINVAL);
|
---|
[1356f85a] | 605 | }
|
---|
| 606 | }
|
---|
| 607 | }
|
---|
| 608 |
|
---|
| 609 | int main(int argc, char *argv[])
|
---|
| 610 | {
|
---|
[b7fd2a0] | 611 | errno_t rc;
|
---|
[1356f85a] | 612 |
|
---|
| 613 | printf("%s: Volume service\n", NAME);
|
---|
| 614 |
|
---|
| 615 | if (log_init(NAME) != EOK) {
|
---|
| 616 | printf(NAME ": Failed to initialize logging.\n");
|
---|
| 617 | return 1;
|
---|
| 618 | }
|
---|
| 619 |
|
---|
| 620 | rc = vol_init();
|
---|
| 621 | if (rc != EOK)
|
---|
| 622 | return 1;
|
---|
| 623 |
|
---|
| 624 | printf(NAME ": Accepting connections.\n");
|
---|
| 625 | task_retval(0);
|
---|
| 626 | async_manager();
|
---|
| 627 |
|
---|
| 628 | return 0;
|
---|
| 629 | }
|
---|
| 630 |
|
---|
| 631 | /** @}
|
---|
| 632 | */
|
---|