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