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