[e2b9a993] | 1 | /*
|
---|
| 2 | * Copyright (c) 2010 Lenka Trochtova
|
---|
| 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 | /**
|
---|
| 30 | * @defgroup devman Device manager.
|
---|
| 31 | * @brief HelenOS device manager.
|
---|
| 32 | * @{
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | /** @file
|
---|
| 36 | */
|
---|
| 37 |
|
---|
[7e752b2] | 38 | #include <inttypes.h>
|
---|
[e2b9a993] | 39 | #include <assert.h>
|
---|
| 40 | #include <ipc/services.h>
|
---|
| 41 | #include <ipc/ns.h>
|
---|
| 42 | #include <async.h>
|
---|
| 43 | #include <stdio.h>
|
---|
| 44 | #include <errno.h>
|
---|
[9b415c9] | 45 | #include <str_error.h>
|
---|
[e2b9a993] | 46 | #include <bool.h>
|
---|
| 47 | #include <fibril_synch.h>
|
---|
| 48 | #include <stdlib.h>
|
---|
[c47e1a8] | 49 | #include <str.h>
|
---|
[e2b9a993] | 50 | #include <dirent.h>
|
---|
| 51 | #include <fcntl.h>
|
---|
| 52 | #include <sys/stat.h>
|
---|
| 53 | #include <ctype.h>
|
---|
[9b415c9] | 54 | #include <io/log.h>
|
---|
[e2b9a993] | 55 | #include <ipc/devman.h>
|
---|
[5cd136ab] | 56 | #include <ipc/driver.h>
|
---|
[d347b53] | 57 | #include <thread.h>
|
---|
[ce89036b] | 58 | #include <devmap.h>
|
---|
[e2b9a993] | 59 |
|
---|
| 60 | #include "devman.h"
|
---|
| 61 |
|
---|
[a79d88d] | 62 | #define DRIVER_DEFAULT_STORE "/drv"
|
---|
[e2b9a993] | 63 |
|
---|
[0c3666d] | 64 | static driver_list_t drivers_list;
|
---|
[e2b9a993] | 65 | static dev_tree_t device_tree;
|
---|
[692c40cb] | 66 | static class_list_t class_list;
|
---|
[e2b9a993] | 67 |
|
---|
[38b3baf] | 68 | /** Register running driver. */
|
---|
| 69 | static driver_t *devman_driver_register(void)
|
---|
| 70 | {
|
---|
[729fa2d6] | 71 | ipc_call_t icall;
|
---|
[c6c389ed] | 72 | ipc_callid_t iid;
|
---|
[729fa2d6] | 73 | driver_t *driver = NULL;
|
---|
[c6c389ed] | 74 |
|
---|
[ebcb05a] | 75 | log_msg(LVL_DEBUG, "devman_driver_register");
|
---|
[729fa2d6] | 76 |
|
---|
[c6c389ed] | 77 | iid = async_get_call(&icall);
|
---|
[228e490] | 78 | if (IPC_GET_IMETHOD(icall) != DEVMAN_DRIVER_REGISTER) {
|
---|
[ffa2c8ef] | 79 | async_answer_0(iid, EREFUSED);
|
---|
[729fa2d6] | 80 | return NULL;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[92413de] | 83 | char *drv_name = NULL;
|
---|
[729fa2d6] | 84 |
|
---|
[38b3baf] | 85 | /* Get driver name. */
|
---|
| 86 | int rc = async_data_write_accept((void **) &drv_name, true, 0, 0, 0, 0);
|
---|
[729fa2d6] | 87 | if (rc != EOK) {
|
---|
[ffa2c8ef] | 88 | async_answer_0(iid, rc);
|
---|
[729fa2d6] | 89 | return NULL;
|
---|
| 90 | }
|
---|
[c6c389ed] | 91 |
|
---|
[ebcb05a] | 92 | log_msg(LVL_DEBUG, "The `%s' driver is trying to register.",
|
---|
[38b3baf] | 93 | drv_name);
|
---|
[729fa2d6] | 94 |
|
---|
[38b3baf] | 95 | /* Find driver structure. */
|
---|
[729fa2d6] | 96 | driver = find_driver(&drivers_list, drv_name);
|
---|
[c6c389ed] | 97 | if (driver == NULL) {
|
---|
[ebcb05a] | 98 | log_msg(LVL_ERROR, "No driver named `%s' was found.", drv_name);
|
---|
[04c7003f] | 99 | free(drv_name);
|
---|
| 100 | drv_name = NULL;
|
---|
[ffa2c8ef] | 101 | async_answer_0(iid, ENOENT);
|
---|
[729fa2d6] | 102 | return NULL;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
[04c7003f] | 105 | free(drv_name);
|
---|
| 106 | drv_name = NULL;
|
---|
| 107 |
|
---|
[3ad7b1c] | 108 | fibril_mutex_lock(&driver->driver_mutex);
|
---|
| 109 |
|
---|
| 110 | if (driver->phone >= 0) {
|
---|
| 111 | /* We already have a connection to the driver. */
|
---|
| 112 | log_msg(LVL_ERROR, "Driver '%s' already started.\n",
|
---|
| 113 | driver->name);
|
---|
| 114 | fibril_mutex_unlock(&driver->driver_mutex);
|
---|
| 115 | async_answer_0(iid, EEXISTS);
|
---|
| 116 | return NULL;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | switch (driver->state) {
|
---|
| 120 | case DRIVER_NOT_STARTED:
|
---|
| 121 | /* Somebody started the driver manually. */
|
---|
| 122 | log_msg(LVL_NOTE, "Driver '%s' started manually.\n",
|
---|
| 123 | driver->name);
|
---|
| 124 | driver->state = DRIVER_STARTING;
|
---|
| 125 | break;
|
---|
| 126 | case DRIVER_STARTING:
|
---|
| 127 | /* The expected case */
|
---|
| 128 | break;
|
---|
| 129 | case DRIVER_RUNNING:
|
---|
| 130 | /* Should not happen since we do not have a connected phone */
|
---|
| 131 | assert(false);
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[38b3baf] | 134 | /* Create connection to the driver. */
|
---|
[ebcb05a] | 135 | log_msg(LVL_DEBUG, "Creating connection to the `%s' driver.",
|
---|
[9b415c9] | 136 | driver->name);
|
---|
[729fa2d6] | 137 | ipc_call_t call;
|
---|
[38b3baf] | 138 | ipc_callid_t callid = async_get_call(&call);
|
---|
[228e490] | 139 | if (IPC_GET_IMETHOD(call) != IPC_M_CONNECT_TO_ME) {
|
---|
[3ad7b1c] | 140 | fibril_mutex_unlock(&driver->driver_mutex);
|
---|
[ffa2c8ef] | 141 | async_answer_0(callid, ENOTSUP);
|
---|
| 142 | async_answer_0(iid, ENOTSUP);
|
---|
[729fa2d6] | 143 | return NULL;
|
---|
| 144 | }
|
---|
| 145 |
|
---|
[38b3baf] | 146 | /* Remember driver's phone. */
|
---|
[3ad7b1c] | 147 | driver->phone = IPC_GET_ARG5(call);
|
---|
| 148 |
|
---|
| 149 | fibril_mutex_unlock(&driver->driver_mutex);
|
---|
[729fa2d6] | 150 |
|
---|
[9b415c9] | 151 | log_msg(LVL_NOTE,
|
---|
[ebcb05a] | 152 | "The `%s' driver was successfully registered as running.",
|
---|
[38b3baf] | 153 | driver->name);
|
---|
[729fa2d6] | 154 |
|
---|
[ffa2c8ef] | 155 | async_answer_0(callid, EOK);
|
---|
| 156 | async_answer_0(iid, EOK);
|
---|
[729fa2d6] | 157 |
|
---|
| 158 | return driver;
|
---|
| 159 | }
|
---|
[e2b9a993] | 160 |
|
---|
[38b3baf] | 161 | /** Receive device match ID from the device's parent driver and add it to the
|
---|
| 162 | * list of devices match ids.
|
---|
| 163 | *
|
---|
| 164 | * @param match_ids The list of the device's match ids.
|
---|
| 165 | * @return Zero on success, negative error code otherwise.
|
---|
[3843ecb] | 166 | */
|
---|
[38b3baf] | 167 | static int devman_receive_match_id(match_id_list_t *match_ids)
|
---|
| 168 | {
|
---|
[66babbd] | 169 | match_id_t *match_id = create_match_id();
|
---|
| 170 | ipc_callid_t callid;
|
---|
| 171 | ipc_call_t call;
|
---|
| 172 | int rc = 0;
|
---|
| 173 |
|
---|
| 174 | callid = async_get_call(&call);
|
---|
[228e490] | 175 | if (DEVMAN_ADD_MATCH_ID != IPC_GET_IMETHOD(call)) {
|
---|
[9b415c9] | 176 | log_msg(LVL_ERROR,
|
---|
[ebcb05a] | 177 | "Invalid protocol when trying to receive match id.");
|
---|
[ffa2c8ef] | 178 | async_answer_0(callid, EINVAL);
|
---|
[66babbd] | 179 | delete_match_id(match_id);
|
---|
| 180 | return EINVAL;
|
---|
| 181 | }
|
---|
| 182 |
|
---|
[c6c389ed] | 183 | if (match_id == NULL) {
|
---|
[ebcb05a] | 184 | log_msg(LVL_ERROR, "Failed to allocate match id.");
|
---|
[ffa2c8ef] | 185 | async_answer_0(callid, ENOMEM);
|
---|
[66babbd] | 186 | return ENOMEM;
|
---|
| 187 | }
|
---|
| 188 |
|
---|
[ffa2c8ef] | 189 | async_answer_0(callid, EOK);
|
---|
[2480e19] | 190 |
|
---|
[66babbd] | 191 | match_id->score = IPC_GET_ARG1(call);
|
---|
| 192 |
|
---|
[c47e1a8] | 193 | char *match_id_str;
|
---|
[38b3baf] | 194 | rc = async_data_write_accept((void **) &match_id_str, true, 0, 0, 0, 0);
|
---|
[c47e1a8] | 195 | match_id->id = match_id_str;
|
---|
[c6c389ed] | 196 | if (rc != EOK) {
|
---|
[66babbd] | 197 | delete_match_id(match_id);
|
---|
[ebcb05a] | 198 | log_msg(LVL_ERROR, "Failed to receive match id string: %s.",
|
---|
[9b415c9] | 199 | str_error(rc));
|
---|
[66babbd] | 200 | return rc;
|
---|
| 201 | }
|
---|
| 202 |
|
---|
| 203 | list_append(&match_id->link, &match_ids->ids);
|
---|
[a087f2e] | 204 |
|
---|
[ebcb05a] | 205 | log_msg(LVL_DEBUG, "Received match id `%s', score %d.",
|
---|
[38b3baf] | 206 | match_id->id, match_id->score);
|
---|
[66babbd] | 207 | return rc;
|
---|
| 208 | }
|
---|
| 209 |
|
---|
[38b3baf] | 210 | /** Receive device match IDs from the device's parent driver and add them to the
|
---|
| 211 | * list of devices match ids.
|
---|
| 212 | *
|
---|
| 213 | * @param match_count The number of device's match ids to be received.
|
---|
| 214 | * @param match_ids The list of the device's match ids.
|
---|
| 215 | * @return Zero on success, negative error code otherwise.
|
---|
[3843ecb] | 216 | */
|
---|
[96b02eb9] | 217 | static int devman_receive_match_ids(sysarg_t match_count,
|
---|
[c6c389ed] | 218 | match_id_list_t *match_ids)
|
---|
[38b3baf] | 219 | {
|
---|
[66babbd] | 220 | int ret = EOK;
|
---|
[5cd136ab] | 221 | size_t i;
|
---|
[38b3baf] | 222 |
|
---|
[66babbd] | 223 | for (i = 0; i < match_count; i++) {
|
---|
[38b3baf] | 224 | if (EOK != (ret = devman_receive_match_id(match_ids)))
|
---|
[66babbd] | 225 | return ret;
|
---|
| 226 | }
|
---|
| 227 | return ret;
|
---|
| 228 | }
|
---|
| 229 |
|
---|
[398c4d7] | 230 | static int assign_driver_fibril(void *arg)
|
---|
| 231 | {
|
---|
[ba38f72c] | 232 | dev_node_t *dev_node = (dev_node_t *) arg;
|
---|
| 233 | assign_driver(dev_node, &drivers_list, &device_tree);
|
---|
[398c4d7] | 234 | return EOK;
|
---|
| 235 | }
|
---|
| 236 |
|
---|
[8b1e15ac] | 237 | /** Handle function registration.
|
---|
[38b3baf] | 238 | *
|
---|
[3843ecb] | 239 | * Child devices are registered by their parent's device driver.
|
---|
| 240 | */
|
---|
[8b1e15ac] | 241 | static void devman_add_function(ipc_callid_t callid, ipc_call_t *call)
|
---|
[bda60d9] | 242 | {
|
---|
[8b1e15ac] | 243 | fun_type_t ftype = (fun_type_t) IPC_GET_ARG1(*call);
|
---|
| 244 | devman_handle_t dev_handle = IPC_GET_ARG2(*call);
|
---|
| 245 | sysarg_t match_count = IPC_GET_ARG3(*call);
|
---|
[957cfa58] | 246 | dev_tree_t *tree = &device_tree;
|
---|
[66babbd] | 247 |
|
---|
[957cfa58] | 248 | fibril_rwlock_write_lock(&tree->rwlock);
|
---|
[8b1e15ac] | 249 |
|
---|
| 250 | dev_node_t *dev = NULL;
|
---|
| 251 | dev_node_t *pdev = find_dev_node_no_lock(&device_tree, dev_handle);
|
---|
[d347b53] | 252 |
|
---|
[ba38f72c] | 253 | if (pdev == NULL) {
|
---|
[957cfa58] | 254 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
[ffa2c8ef] | 255 | async_answer_0(callid, ENOENT);
|
---|
[d347b53] | 256 | return;
|
---|
[c6c389ed] | 257 | }
|
---|
[d347b53] | 258 |
|
---|
[8b1e15ac] | 259 | if (ftype != fun_inner && ftype != fun_exposed) {
|
---|
| 260 | /* Unknown function type */
|
---|
[9b415c9] | 261 | log_msg(LVL_ERROR,
|
---|
[ebcb05a] | 262 | "Unknown function type %d provided by driver.",
|
---|
[9b415c9] | 263 | (int) ftype);
|
---|
[8b1e15ac] | 264 |
|
---|
| 265 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
| 266 | async_answer_0(callid, EINVAL);
|
---|
| 267 | return;
|
---|
| 268 | }
|
---|
| 269 |
|
---|
[ba38f72c] | 270 | char *fun_name = NULL;
|
---|
| 271 | int rc = async_data_write_accept((void **)&fun_name, true, 0, 0, 0, 0);
|
---|
[c6c389ed] | 272 | if (rc != EOK) {
|
---|
[957cfa58] | 273 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
[ffa2c8ef] | 274 | async_answer_0(callid, rc);
|
---|
[d347b53] | 275 | return;
|
---|
| 276 | }
|
---|
| 277 |
|
---|
[0876062] | 278 | /* Check that function with same name is not there already. */
|
---|
| 279 | if (find_fun_node_in_device(pdev, fun_name) != NULL) {
|
---|
| 280 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
| 281 | async_answer_0(callid, EEXISTS);
|
---|
| 282 | printf(NAME ": Warning, driver tried to register `%s' twice.\n",
|
---|
| 283 | fun_name);
|
---|
| 284 | free(fun_name);
|
---|
| 285 | return;
|
---|
| 286 | }
|
---|
| 287 |
|
---|
[ba38f72c] | 288 | fun_node_t *fun = create_fun_node();
|
---|
| 289 | if (!insert_fun_node(&device_tree, fun, fun_name, pdev)) {
|
---|
[957cfa58] | 290 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
[ba38f72c] | 291 | delete_fun_node(fun);
|
---|
[ffa2c8ef] | 292 | async_answer_0(callid, ENOMEM);
|
---|
[d347b53] | 293 | return;
|
---|
[c6c389ed] | 294 | }
|
---|
| 295 |
|
---|
[8b1e15ac] | 296 | if (ftype == fun_inner) {
|
---|
| 297 | dev = create_dev_node();
|
---|
| 298 | if (dev == NULL) {
|
---|
| 299 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
| 300 | delete_fun_node(fun);
|
---|
| 301 | async_answer_0(callid, ENOMEM);
|
---|
| 302 | return;
|
---|
| 303 | }
|
---|
[ba38f72c] | 304 |
|
---|
[8b1e15ac] | 305 | insert_dev_node(tree, dev, fun);
|
---|
[ba38f72c] | 306 | }
|
---|
| 307 |
|
---|
[957cfa58] | 308 | fibril_rwlock_write_unlock(&tree->rwlock);
|
---|
[d347b53] | 309 |
|
---|
[ebcb05a] | 310 | log_msg(LVL_DEBUG, "devman_add_function(fun=\"%s\")", fun->pathname);
|
---|
[2480e19] | 311 |
|
---|
[ba38f72c] | 312 | devman_receive_match_ids(match_count, &fun->match_ids);
|
---|
[398c4d7] | 313 |
|
---|
[8b1e15ac] | 314 | if (ftype == fun_inner) {
|
---|
| 315 | assert(dev != NULL);
|
---|
[398c4d7] | 316 | /*
|
---|
[8b1e15ac] | 317 | * Try to find a suitable driver and assign it to the device. We do
|
---|
| 318 | * not want to block the current fibril that is used for processing
|
---|
| 319 | * incoming calls: we will launch a separate fibril to handle the
|
---|
| 320 | * driver assigning. That is because assign_driver can actually include
|
---|
| 321 | * task spawning which could take some time.
|
---|
[398c4d7] | 322 | */
|
---|
[8b1e15ac] | 323 | fid_t assign_fibril = fibril_create(assign_driver_fibril, dev);
|
---|
| 324 | if (assign_fibril == 0) {
|
---|
| 325 | /*
|
---|
| 326 | * Fallback in case we are out of memory.
|
---|
| 327 | * Probably not needed as we will die soon anyway ;-).
|
---|
| 328 | */
|
---|
| 329 | (void) assign_driver_fibril(fun);
|
---|
| 330 | } else {
|
---|
| 331 | fibril_add_ready(assign_fibril);
|
---|
| 332 | }
|
---|
[398c4d7] | 333 | } else {
|
---|
[8b1e15ac] | 334 | devmap_register_tree_function(fun, tree);
|
---|
[398c4d7] | 335 | }
|
---|
[8b1e15ac] | 336 |
|
---|
[38b3baf] | 337 | /* Return device handle to parent's driver. */
|
---|
[ba38f72c] | 338 | async_answer_1(callid, EOK, fun->handle);
|
---|
[d347b53] | 339 | }
|
---|
| 340 |
|
---|
[ce89036b] | 341 | static void devmap_register_class_dev(dev_class_info_t *cli)
|
---|
| 342 | {
|
---|
[38b3baf] | 343 | /* Create devmap path and name for the device. */
|
---|
[ce89036b] | 344 | char *devmap_pathname = NULL;
|
---|
[c6c389ed] | 345 |
|
---|
[38b3baf] | 346 | asprintf(&devmap_pathname, "%s/%s%c%s", DEVMAP_CLASS_NAMESPACE,
|
---|
| 347 | cli->dev_class->name, DEVMAP_SEPARATOR, cli->dev_name);
|
---|
[c6c389ed] | 348 | if (devmap_pathname == NULL)
|
---|
[ce89036b] | 349 | return;
|
---|
| 350 |
|
---|
[38b3baf] | 351 | /*
|
---|
| 352 | * Register the device by the device mapper and remember its devmap
|
---|
| 353 | * handle.
|
---|
| 354 | */
|
---|
[6e50466] | 355 | devmap_device_register_with_iface(devmap_pathname,
|
---|
| 356 | &cli->devmap_handle, DEVMAN_CONNECT_FROM_DEVMAP);
|
---|
[ce89036b] | 357 |
|
---|
[38b3baf] | 358 | /*
|
---|
| 359 | * Add device to the hash map of class devices registered by device
|
---|
| 360 | * mapper.
|
---|
| 361 | */
|
---|
[ba38f72c] | 362 | class_add_devmap_function(&class_list, cli);
|
---|
[a32defa] | 363 |
|
---|
[38b3baf] | 364 | free(devmap_pathname);
|
---|
[ce89036b] | 365 | }
|
---|
| 366 |
|
---|
[ba38f72c] | 367 | static void devman_add_function_to_class(ipc_callid_t callid, ipc_call_t *call)
|
---|
[ce89036b] | 368 | {
|
---|
[0b5a4131] | 369 | devman_handle_t handle = IPC_GET_ARG1(*call);
|
---|
[692c40cb] | 370 |
|
---|
[38b3baf] | 371 | /* Get class name. */
|
---|
[692c40cb] | 372 | char *class_name;
|
---|
[38b3baf] | 373 | int rc = async_data_write_accept((void **) &class_name, true,
|
---|
| 374 | 0, 0, 0, 0);
|
---|
[692c40cb] | 375 | if (rc != EOK) {
|
---|
[ffa2c8ef] | 376 | async_answer_0(callid, rc);
|
---|
[692c40cb] | 377 | return;
|
---|
| 378 | }
|
---|
| 379 |
|
---|
[ba38f72c] | 380 | fun_node_t *fun = find_fun_node(&device_tree, handle);
|
---|
| 381 | if (fun == NULL) {
|
---|
[ffa2c8ef] | 382 | async_answer_0(callid, ENOENT);
|
---|
[692c40cb] | 383 | return;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
| 386 | dev_class_t *cl = get_dev_class(&class_list, class_name);
|
---|
[ba38f72c] | 387 | dev_class_info_t *class_info = add_function_to_class(fun, cl, NULL);
|
---|
[692c40cb] | 388 |
|
---|
[38b3baf] | 389 | /* Register the device's class alias by devmapper. */
|
---|
[ce89036b] | 390 | devmap_register_class_dev(class_info);
|
---|
[692c40cb] | 391 |
|
---|
[ebcb05a] | 392 | log_msg(LVL_NOTE, "Function `%s' added to class `%s' as `%s'.",
|
---|
[9b415c9] | 393 | fun->pathname, class_name, class_info->dev_name);
|
---|
[398c4d7] | 394 |
|
---|
[ffa2c8ef] | 395 | async_answer_0(callid, EOK);
|
---|
[692c40cb] | 396 | }
|
---|
| 397 |
|
---|
[38b3baf] | 398 | /** Initialize driver which has registered itself as running and ready.
|
---|
| 399 | *
|
---|
| 400 | * The initialization is done in a separate fibril to avoid deadlocks (if the
|
---|
| 401 | * driver needed to be served by devman during the driver's initialization).
|
---|
[3843ecb] | 402 | */
|
---|
[d347b53] | 403 | static int init_running_drv(void *drv)
|
---|
| 404 | {
|
---|
[38b3baf] | 405 | driver_t *driver = (driver_t *) drv;
|
---|
| 406 |
|
---|
| 407 | initialize_running_driver(driver, &device_tree);
|
---|
[ebcb05a] | 408 | log_msg(LVL_DEBUG, "The `%s` driver was successfully initialized.",
|
---|
[38b3baf] | 409 | driver->name);
|
---|
[d347b53] | 410 | return 0;
|
---|
[bda60d9] | 411 | }
|
---|
| 412 |
|
---|
[38b3baf] | 413 | /** Function for handling connections from a driver to the device manager. */
|
---|
[924c75e1] | 414 | static void devman_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[38b3baf] | 415 | {
|
---|
| 416 | /* Accept the connection. */
|
---|
[ffa2c8ef] | 417 | async_answer_0(iid, EOK);
|
---|
[e2b9a993] | 418 |
|
---|
[729fa2d6] | 419 | driver_t *driver = devman_driver_register();
|
---|
[c6c389ed] | 420 | if (driver == NULL)
|
---|
[729fa2d6] | 421 | return;
|
---|
[d347b53] | 422 |
|
---|
[38b3baf] | 423 | /*
|
---|
| 424 | * Initialize the driver as running (e.g. pass assigned devices to it)
|
---|
| 425 | * in a separate fibril; the separate fibril is used to enable the
|
---|
| 426 | * driver to use devman service during the driver's initialization.
|
---|
| 427 | */
|
---|
[d347b53] | 428 | fid_t fid = fibril_create(init_running_drv, driver);
|
---|
| 429 | if (fid == 0) {
|
---|
[9b415c9] | 430 | log_msg(LVL_ERROR, "Failed to create initialization fibril " \
|
---|
[ebcb05a] | 431 | "for driver `%s'.", driver->name);
|
---|
[3843ecb] | 432 | return;
|
---|
[d347b53] | 433 | }
|
---|
| 434 | fibril_add_ready(fid);
|
---|
| 435 |
|
---|
[729fa2d6] | 436 | ipc_callid_t callid;
|
---|
| 437 | ipc_call_t call;
|
---|
| 438 | bool cont = true;
|
---|
| 439 | while (cont) {
|
---|
[e2b9a993] | 440 | callid = async_get_call(&call);
|
---|
| 441 |
|
---|
[228e490] | 442 | switch (IPC_GET_IMETHOD(call)) {
|
---|
[729fa2d6] | 443 | case IPC_M_PHONE_HUNGUP:
|
---|
| 444 | cont = false;
|
---|
| 445 | continue;
|
---|
[8b1e15ac] | 446 | case DEVMAN_ADD_FUNCTION:
|
---|
| 447 | devman_add_function(callid, &call);
|
---|
[e2b9a993] | 448 | break;
|
---|
[692c40cb] | 449 | case DEVMAN_ADD_DEVICE_TO_CLASS:
|
---|
[ba38f72c] | 450 | devman_add_function_to_class(callid, &call);
|
---|
[692c40cb] | 451 | break;
|
---|
[e2b9a993] | 452 | default:
|
---|
[ffa2c8ef] | 453 | async_answer_0(callid, EINVAL);
|
---|
[e2b9a993] | 454 | break;
|
---|
| 455 | }
|
---|
| 456 | }
|
---|
| 457 | }
|
---|
| 458 |
|
---|
[38b3baf] | 459 | /** Find handle for the device instance identified by the device's path in the
|
---|
| 460 | * device tree. */
|
---|
[ba38f72c] | 461 | static void devman_function_get_handle(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[f658458] | 462 | {
|
---|
[38b3baf] | 463 | char *pathname;
|
---|
| 464 |
|
---|
| 465 | int rc = async_data_write_accept((void **) &pathname, true, 0, 0, 0, 0);
|
---|
[f658458] | 466 | if (rc != EOK) {
|
---|
[ffa2c8ef] | 467 | async_answer_0(iid, rc);
|
---|
[f658458] | 468 | return;
|
---|
| 469 | }
|
---|
| 470 |
|
---|
[8b1e15ac] | 471 | fun_node_t *fun = find_fun_node_by_path(&device_tree, pathname);
|
---|
[f658458] | 472 |
|
---|
| 473 | free(pathname);
|
---|
| 474 |
|
---|
[ba38f72c] | 475 | if (fun == NULL) {
|
---|
[ffa2c8ef] | 476 | async_answer_0(iid, ENOENT);
|
---|
[f658458] | 477 | return;
|
---|
| 478 | }
|
---|
[8b1e15ac] | 479 |
|
---|
[ba38f72c] | 480 | async_answer_1(iid, EOK, fun->handle);
|
---|
[f658458] | 481 | }
|
---|
| 482 |
|
---|
[fc8c2b6] | 483 | /** Find handle for the device instance identified by device class name. */
|
---|
| 484 | static void devman_function_get_handle_by_class(ipc_callid_t iid,
|
---|
| 485 | ipc_call_t *icall)
|
---|
| 486 | {
|
---|
| 487 | char *classname;
|
---|
| 488 | char *devname;
|
---|
| 489 |
|
---|
| 490 | int rc = async_data_write_accept((void **) &classname, true, 0, 0, 0, 0);
|
---|
| 491 | if (rc != EOK) {
|
---|
| 492 | async_answer_0(iid, rc);
|
---|
| 493 | return;
|
---|
| 494 | }
|
---|
| 495 | rc = async_data_write_accept((void **) &devname, true, 0, 0, 0, 0);
|
---|
| 496 | if (rc != EOK) {
|
---|
| 497 | free(classname);
|
---|
| 498 | async_answer_0(iid, rc);
|
---|
| 499 | return;
|
---|
| 500 | }
|
---|
| 501 |
|
---|
| 502 |
|
---|
| 503 | fun_node_t *fun = find_fun_node_by_class(&class_list,
|
---|
| 504 | classname, devname);
|
---|
| 505 |
|
---|
| 506 | free(classname);
|
---|
| 507 | free(devname);
|
---|
| 508 |
|
---|
| 509 | if (fun == NULL) {
|
---|
| 510 | async_answer_0(iid, ENOENT);
|
---|
| 511 | return;
|
---|
| 512 | }
|
---|
| 513 |
|
---|
| 514 | async_answer_1(iid, EOK, fun->handle);
|
---|
| 515 | }
|
---|
| 516 |
|
---|
[f658458] | 517 |
|
---|
[38b3baf] | 518 | /** Function for handling connections from a client to the device manager. */
|
---|
[f658458] | 519 | static void devman_connection_client(ipc_callid_t iid, ipc_call_t *icall)
|
---|
| 520 | {
|
---|
[38b3baf] | 521 | /* Accept connection. */
|
---|
[ffa2c8ef] | 522 | async_answer_0(iid, EOK);
|
---|
[f658458] | 523 |
|
---|
| 524 | bool cont = true;
|
---|
| 525 | while (cont) {
|
---|
| 526 | ipc_call_t call;
|
---|
| 527 | ipc_callid_t callid = async_get_call(&call);
|
---|
| 528 |
|
---|
[228e490] | 529 | switch (IPC_GET_IMETHOD(call)) {
|
---|
[f658458] | 530 | case IPC_M_PHONE_HUNGUP:
|
---|
| 531 | cont = false;
|
---|
| 532 | continue;
|
---|
| 533 | case DEVMAN_DEVICE_GET_HANDLE:
|
---|
[ba38f72c] | 534 | devman_function_get_handle(callid, &call);
|
---|
[f658458] | 535 | break;
|
---|
[fc8c2b6] | 536 | case DEVMAN_DEVICE_GET_HANDLE_BY_CLASS:
|
---|
| 537 | devman_function_get_handle_by_class(callid, &call);
|
---|
| 538 | break;
|
---|
[f658458] | 539 | default:
|
---|
[ffa2c8ef] | 540 | async_answer_0(callid, ENOENT);
|
---|
[f658458] | 541 | }
|
---|
[c6c389ed] | 542 | }
|
---|
[f658458] | 543 | }
|
---|
| 544 |
|
---|
[c6c389ed] | 545 | static void devman_forward(ipc_callid_t iid, ipc_call_t *icall,
|
---|
| 546 | bool drv_to_parent)
|
---|
[38b3baf] | 547 | {
|
---|
[0b5a4131] | 548 | devman_handle_t handle = IPC_GET_ARG2(*icall);
|
---|
[8b1e15ac] | 549 | devman_handle_t fwd_h;
|
---|
| 550 | fun_node_t *fun = NULL;
|
---|
| 551 | dev_node_t *dev = NULL;
|
---|
[9a66bc2e] | 552 |
|
---|
[8b1e15ac] | 553 | fun = find_fun_node(&device_tree, handle);
|
---|
| 554 | if (fun == NULL)
|
---|
| 555 | dev = find_dev_node(&device_tree, handle);
|
---|
| 556 | else
|
---|
| 557 | dev = fun->dev;
|
---|
| 558 |
|
---|
[0418050] | 559 | /*
|
---|
| 560 | * For a valid function to connect to we need a device. The root
|
---|
| 561 | * function, for example, has no device and cannot be connected to.
|
---|
| 562 | * This means @c dev needs to be valid regardless whether we are
|
---|
| 563 | * connecting to a device or to a function.
|
---|
| 564 | */
|
---|
| 565 | if (dev == NULL) {
|
---|
[9b415c9] | 566 | log_msg(LVL_ERROR, "IPC forwarding failed - no device or "
|
---|
[ebcb05a] | 567 | "function with handle %" PRIun " was found.", handle);
|
---|
[ffa2c8ef] | 568 | async_answer_0(iid, ENOENT);
|
---|
[5cd136ab] | 569 | return;
|
---|
| 570 | }
|
---|
[8b1e15ac] | 571 |
|
---|
| 572 | if (fun == NULL && !drv_to_parent) {
|
---|
[9b415c9] | 573 | log_msg(LVL_ERROR, NAME ": devman_forward error - cannot "
|
---|
[ebcb05a] | 574 | "connect to handle %" PRIun ", refers to a device.",
|
---|
[9b415c9] | 575 | handle);
|
---|
[8b1e15ac] | 576 | async_answer_0(iid, ENOENT);
|
---|
| 577 | return;
|
---|
| 578 | }
|
---|
[5cd136ab] | 579 |
|
---|
| 580 | driver_t *driver = NULL;
|
---|
| 581 |
|
---|
| 582 | if (drv_to_parent) {
|
---|
[8b1e15ac] | 583 | /* Connect to parent function of a device (or device function). */
|
---|
| 584 | if (dev->pfun->dev != NULL)
|
---|
| 585 | driver = dev->pfun->dev->drv;
|
---|
| 586 | fwd_h = dev->pfun->handle;
|
---|
| 587 | } else if (dev->state == DEVICE_USABLE) {
|
---|
| 588 | /* Connect to the specified function */
|
---|
| 589 | driver = dev->drv;
|
---|
[c6c389ed] | 590 | assert(driver != NULL);
|
---|
[8b1e15ac] | 591 |
|
---|
| 592 | fwd_h = handle;
|
---|
[5cd136ab] | 593 | }
|
---|
| 594 |
|
---|
[c6c389ed] | 595 | if (driver == NULL) {
|
---|
[9b415c9] | 596 | log_msg(LVL_ERROR, "IPC forwarding refused - " \
|
---|
[ebcb05a] | 597 | "the device %" PRIun " is not in usable state.", handle);
|
---|
[ffa2c8ef] | 598 | async_answer_0(iid, ENOENT);
|
---|
[38b3baf] | 599 | return;
|
---|
[5cd136ab] | 600 | }
|
---|
| 601 |
|
---|
[38b3baf] | 602 | int method;
|
---|
| 603 | if (drv_to_parent)
|
---|
[5cd136ab] | 604 | method = DRIVER_DRIVER;
|
---|
[38b3baf] | 605 | else
|
---|
[5cd136ab] | 606 | method = DRIVER_CLIENT;
|
---|
| 607 |
|
---|
[3ad7b1c] | 608 | if (driver->phone < 0) {
|
---|
[9b415c9] | 609 | log_msg(LVL_ERROR,
|
---|
[ebcb05a] | 610 | "Could not forward to driver `%s' (phone is %d).",
|
---|
[9b415c9] | 611 | driver->name, (int) driver->phone);
|
---|
[ffa2c8ef] | 612 | async_answer_0(iid, EINVAL);
|
---|
[9a66bc2e] | 613 | return;
|
---|
| 614 | }
|
---|
[c6c389ed] | 615 |
|
---|
[8b1e15ac] | 616 | if (fun != NULL) {
|
---|
[9b415c9] | 617 | log_msg(LVL_DEBUG,
|
---|
[ebcb05a] | 618 | "Forwarding request for `%s' function to driver `%s'.",
|
---|
[9b415c9] | 619 | fun->pathname, driver->name);
|
---|
[8b1e15ac] | 620 | } else {
|
---|
[9b415c9] | 621 | log_msg(LVL_DEBUG,
|
---|
[ebcb05a] | 622 | "Forwarding request for `%s' device to driver `%s'.",
|
---|
[9b415c9] | 623 | dev->pfun->pathname, driver->name);
|
---|
[8b1e15ac] | 624 | }
|
---|
| 625 |
|
---|
| 626 | async_forward_fast(iid, driver->phone, method, fwd_h, 0, IPC_FF_NONE);
|
---|
[5cd136ab] | 627 | }
|
---|
| 628 |
|
---|
[38b3baf] | 629 | /** Function for handling connections from a client forwarded by the device
|
---|
| 630 | * mapper to the device manager. */
|
---|
[ce89036b] | 631 | static void devman_connection_devmapper(ipc_callid_t iid, ipc_call_t *icall)
|
---|
| 632 | {
|
---|
[47a7174f] | 633 | devmap_handle_t devmap_handle = IPC_GET_ARG2(*icall);
|
---|
[ba38f72c] | 634 | fun_node_t *fun;
|
---|
| 635 | dev_node_t *dev;
|
---|
[c6c389ed] | 636 |
|
---|
[ba38f72c] | 637 | fun = find_devmap_tree_function(&device_tree, devmap_handle);
|
---|
| 638 | if (fun == NULL)
|
---|
| 639 | fun = find_devmap_class_function(&class_list, devmap_handle);
|
---|
[ce89036b] | 640 |
|
---|
[ba38f72c] | 641 | if (fun == NULL || fun->dev->drv == NULL) {
|
---|
[ffa2c8ef] | 642 | async_answer_0(iid, ENOENT);
|
---|
[ce89036b] | 643 | return;
|
---|
| 644 | }
|
---|
| 645 |
|
---|
[ba38f72c] | 646 | dev = fun->dev;
|
---|
| 647 |
|
---|
[3ad7b1c] | 648 | if (dev->state != DEVICE_USABLE || dev->drv->phone < 0) {
|
---|
[ffa2c8ef] | 649 | async_answer_0(iid, EINVAL);
|
---|
[ce89036b] | 650 | return;
|
---|
| 651 | }
|
---|
| 652 |
|
---|
[b927375] | 653 | async_forward_fast(iid, dev->drv->phone, DRIVER_CLIENT, fun->handle, 0,
|
---|
[38b3baf] | 654 | IPC_FF_NONE);
|
---|
[9b415c9] | 655 | log_msg(LVL_DEBUG,
|
---|
[ebcb05a] | 656 | "Forwarding devmapper request for `%s' function to driver `%s'.",
|
---|
[9b415c9] | 657 | fun->pathname, dev->drv->name);
|
---|
[ce89036b] | 658 | }
|
---|
| 659 |
|
---|
[38b3baf] | 660 | /** Function for handling connections to device manager. */
|
---|
[924c75e1] | 661 | static void devman_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[38b3baf] | 662 | {
|
---|
| 663 | /* Select interface. */
|
---|
[96b02eb9] | 664 | switch ((sysarg_t) (IPC_GET_ARG1(*icall))) {
|
---|
[924c75e1] | 665 | case DEVMAN_DRIVER:
|
---|
| 666 | devman_connection_driver(iid, icall);
|
---|
| 667 | break;
|
---|
[f658458] | 668 | case DEVMAN_CLIENT:
|
---|
| 669 | devman_connection_client(iid, icall);
|
---|
| 670 | break;
|
---|
[924c75e1] | 671 | case DEVMAN_CONNECT_TO_DEVICE:
|
---|
[38b3baf] | 672 | /* Connect client to selected device. */
|
---|
[5cd136ab] | 673 | devman_forward(iid, icall, false);
|
---|
| 674 | break;
|
---|
[47a7174f] | 675 | case DEVMAN_CONNECT_FROM_DEVMAP:
|
---|
| 676 | /* Someone connected through devmap node. */
|
---|
| 677 | devman_connection_devmapper(iid, icall);
|
---|
| 678 | break;
|
---|
[5cd136ab] | 679 | case DEVMAN_CONNECT_TO_PARENTS_DEVICE:
|
---|
[38b3baf] | 680 | /* Connect client to selected device. */
|
---|
[5cd136ab] | 681 | devman_forward(iid, icall, true);
|
---|
[38b3baf] | 682 | break;
|
---|
[924c75e1] | 683 | default:
|
---|
| 684 | /* No such interface */
|
---|
[ffa2c8ef] | 685 | async_answer_0(iid, ENOENT);
|
---|
[924c75e1] | 686 | }
|
---|
| 687 | }
|
---|
| 688 |
|
---|
[38b3baf] | 689 | /** Initialize device manager internal structures. */
|
---|
| 690 | static bool devman_init(void)
|
---|
[e2b9a993] | 691 | {
|
---|
[ebcb05a] | 692 | log_msg(LVL_DEBUG, "devman_init - looking for available drivers.");
|
---|
[08d9c4e6] | 693 |
|
---|
[38b3baf] | 694 | /* Initialize list of available drivers. */
|
---|
[0c3666d] | 695 | init_driver_list(&drivers_list);
|
---|
[c6c389ed] | 696 | if (lookup_available_drivers(&drivers_list,
|
---|
| 697 | DRIVER_DEFAULT_STORE) == 0) {
|
---|
[ebcb05a] | 698 | log_msg(LVL_FATAL, "No drivers found.");
|
---|
[e2b9a993] | 699 | return false;
|
---|
| 700 | }
|
---|
[c6c389ed] | 701 |
|
---|
[ebcb05a] | 702 | log_msg(LVL_DEBUG, "devman_init - list of drivers has been initialized.");
|
---|
[e2b9a993] | 703 |
|
---|
[38b3baf] | 704 | /* Create root device node. */
|
---|
[e2b9a993] | 705 | if (!init_device_tree(&device_tree, &drivers_list)) {
|
---|
[9b415c9] | 706 | log_msg(LVL_FATAL, "Failed to initialize device tree.");
|
---|
[38b3baf] | 707 | return false;
|
---|
[e2b9a993] | 708 | }
|
---|
| 709 |
|
---|
[692c40cb] | 710 | init_class_list(&class_list);
|
---|
| 711 |
|
---|
[38b3baf] | 712 | /*
|
---|
| 713 | * !!! devman_connection ... as the device manager is not a real devmap
|
---|
| 714 | * driver (it uses a completely different ipc protocol than an ordinary
|
---|
| 715 | * devmap driver) forwarding a connection from client to the devman by
|
---|
| 716 | * devmapper would not work.
|
---|
| 717 | */
|
---|
| 718 | devmap_driver_register(NAME, devman_connection);
|
---|
[ce89036b] | 719 |
|
---|
[e2b9a993] | 720 | return true;
|
---|
| 721 | }
|
---|
| 722 |
|
---|
| 723 | int main(int argc, char *argv[])
|
---|
| 724 | {
|
---|
| 725 | printf(NAME ": HelenOS Device Manager\n");
|
---|
| 726 |
|
---|
[9b415c9] | 727 | if (log_init(NAME, LVL_ERROR) != EOK) {
|
---|
| 728 | printf(NAME ": Error initializing logging subsystem.\n");
|
---|
| 729 | return -1;
|
---|
| 730 | }
|
---|
| 731 |
|
---|
[e2b9a993] | 732 | if (!devman_init()) {
|
---|
[ebcb05a] | 733 | log_msg(LVL_ERROR, "Error while initializing service.");
|
---|
[e2b9a993] | 734 | return -1;
|
---|
| 735 | }
|
---|
| 736 |
|
---|
[38b3baf] | 737 | /* Set a handler of incomming connections. */
|
---|
[e2b9a993] | 738 | async_set_client_connection(devman_connection);
|
---|
| 739 |
|
---|
[38b3baf] | 740 | /* Register device manager at naming service. */
|
---|
[9b415c9] | 741 | if (service_register(SERVICE_DEVMAN) != EOK) {
|
---|
[ebcb05a] | 742 | log_msg(LVL_ERROR, "Failed registering as a service.");
|
---|
[e2b9a993] | 743 | return -1;
|
---|
[9b415c9] | 744 | }
|
---|
[e2b9a993] | 745 |
|
---|
[9b415c9] | 746 | printf(NAME ": Accepting connections.\n");
|
---|
[e2b9a993] | 747 | async_manager();
|
---|
| 748 |
|
---|
[38b3baf] | 749 | /* Never reached. */
|
---|
[e2b9a993] | 750 | return 0;
|
---|
| 751 | }
|
---|
[c16cf62] | 752 |
|
---|
| 753 | /** @}
|
---|
[38b3baf] | 754 | */
|
---|