source: mainline/uspace/drv/bus/usb/vhc/conndev.c

Last change on this file was fafb8e5, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Mechanically lowercase IPC_SET_*/IPC_GET_*

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[b371844]1/*
[6cb58e6]2 * Copyright (c) 2011 Vojtech Horky
[b371844]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
[bd8c753d]29/** @addtogroup drvusbvhc
[b371844]30 * @{
31 */
32/** @file
[6cb58e6]33 * Connection handling of calls from virtual device (implementation).
[b371844]34 */
35
36#include <assert.h>
37#include <errno.h>
[6cb58e6]38#include <ddf/driver.h>
[00b6c73]39#include <usbvirt/ipc.h>
[f6577d9]40#include <usb/debug.h>
[79ae36dd]41#include <async.h>
[f6577d9]42
43#include "vhcd.h"
[ca07cd3]44
[6cb58e6]45static fibril_local uintptr_t plugged_device_handle = 0;
[00b6c73]46#define PLUGGED_DEVICE_NAME_MAXLEN 256
47static fibril_local char plugged_device_name[PLUGGED_DEVICE_NAME_MAXLEN + 1] = "<unknown>";
48
49/** Receive device name.
50 *
51 * @warning Errors are silently ignored.
52 *
[79ae36dd]53 * @param sess Session to the virtual device.
54 *
[00b6c73]55 */
[79ae36dd]56static void receive_device_name(async_sess_t *sess)
[00b6c73]57{
[79ae36dd]58 async_exch_t *exch = async_exchange_begin(sess);
[a35b458]59
[79ae36dd]60 aid_t opening_request = async_send_0(exch, IPC_M_USBVIRT_GET_NAME, NULL);
[00b6c73]61 if (opening_request == 0) {
[79ae36dd]62 async_exchange_end(exch);
[00b6c73]63 return;
64 }
[a35b458]65
[00b6c73]66 ipc_call_t data_request_call;
[79ae36dd]67 aid_t data_request = async_data_read(exch, plugged_device_name,
[1433ecda]68 PLUGGED_DEVICE_NAME_MAXLEN, &data_request_call);
[a35b458]69
[79ae36dd]70 async_exchange_end(exch);
[a35b458]71
[00b6c73]72 if (data_request == 0) {
[50b581d]73 async_forget(opening_request);
[00b6c73]74 return;
75 }
[a35b458]76
[5a6cc679]77 errno_t data_request_rc;
78 errno_t opening_request_rc;
[00b6c73]79 async_wait_for(data_request, &data_request_rc);
80 async_wait_for(opening_request, &opening_request_rc);
[a35b458]81
[79ae36dd]82 if ((data_request_rc != EOK) || (opening_request_rc != EOK))
[00b6c73]83 return;
[a35b458]84
[fafb8e5]85 size_t len = ipc_get_arg2(&data_request_call);
[00b6c73]86 plugged_device_name[len] = 0;
87}
[ca07cd3]88
[e27595b]89/** Default handler for IPC methods not handled by DDF.
[355f7c2]90 *
[984a9ba]91 * @param fun Device handling the call.
92 * @param icall Call data.
93 *
[b371844]94 */
[984a9ba]95void default_connection_handler(ddf_fun_t *fun, ipc_call_t *icall)
[b371844]96{
[01eeaaf]97 vhc_data_t *vhc = ddf_fun_data_get(fun);
[a35b458]98
[8869f7b]99 async_sess_t *callback =
100 async_callback_receive_start(EXCHANGE_SERIALIZE, icall);
[a35b458]101
[8869f7b]102 if (callback) {
[5a6cc679]103 errno_t rc = vhc_virtdev_plug(vhc, callback, &plugged_device_handle);
[6cb58e6]104 if (rc != EOK) {
[984a9ba]105 async_answer_0(icall, rc);
[17aca1c]106 async_hangup(callback);
[e27595b]107 return;
[b371844]108 }
[a35b458]109
[984a9ba]110 async_answer_0(icall, EOK);
[a35b458]111
[00b6c73]112 receive_device_name(callback);
[a35b458]113
[a1732929]114 usb_log_info("New virtual device `%s' (id: %" PRIxn ").",
[00b6c73]115 plugged_device_name, plugged_device_handle);
[8869f7b]116 } else
[984a9ba]117 async_answer_0(icall, EINVAL);
[b371844]118}
119
[6cb58e6]120/** Callback when client disconnects.
121 *
122 * Used to unplug virtual USB device.
[6967c14]123 *
[6cb58e6]124 * @param fun
[6967c14]125 */
[eb1a2f4]126void on_client_close(ddf_fun_t *fun)
[6967c14]127{
[01eeaaf]128 vhc_data_t *vhc = ddf_fun_data_get(fun);
[6967c14]129
[6cb58e6]130 if (plugged_device_handle != 0) {
[a1732929]131 usb_log_info("Virtual device `%s' disconnected (id: %" PRIxn ").",
[00b6c73]132 plugged_device_name, plugged_device_handle);
[6cb58e6]133 vhc_virtdev_unplug(vhc, plugged_device_handle);
134 }
[6967c14]135}
136
[b371844]137/**
138 * @}
139 */
Note: See TracBrowser for help on using the repository browser.