2012-04-25 22:26:35 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2012-04-25 22:26:35 +04:00
|
|
|
* RemoteFX USB Redirection
|
|
|
|
*
|
|
|
|
* Copyright 2012 Atrust corp.
|
|
|
|
* Copyright 2012 Alfred Liu <alfred.liu@atruscorp.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-12-03 19:32:04 +04:00
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
2012-12-03 23:57:15 +04:00
|
|
|
#include <winpr/synch.h>
|
2012-12-03 19:32:04 +04:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
#include "searchman.h"
|
2019-11-22 12:42:05 +03:00
|
|
|
#include "urbdrc_main.h"
|
2012-04-25 22:26:35 +04:00
|
|
|
|
2012-10-03 01:24:52 +04:00
|
|
|
static void searchman_rewind(USB_SEARCHMAN* searchman)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
searchman->idev = searchman->head;
|
|
|
|
}
|
|
|
|
|
2012-10-03 01:24:52 +04:00
|
|
|
static int searchman_has_next(USB_SEARCHMAN* searchman)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
if (searchman->idev == NULL)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-10-03 01:24:52 +04:00
|
|
|
static USB_SEARCHDEV* searchman_get_next(USB_SEARCHMAN* searchman)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
USB_SEARCHDEV* search;
|
|
|
|
search = searchman->idev;
|
2019-11-06 17:24:51 +03:00
|
|
|
searchman->idev = (USB_SEARCHDEV*)searchman->idev->next;
|
2012-04-25 22:26:35 +04:00
|
|
|
return search;
|
|
|
|
}
|
|
|
|
|
2015-07-06 17:46:21 +03:00
|
|
|
static BOOL searchman_list_add(USB_SEARCHMAN* searchman, UINT16 idVendor, UINT16 idProduct)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
USB_SEARCHDEV* search;
|
|
|
|
search = (USB_SEARCHDEV*)calloc(1, sizeof(USB_SEARCHDEV));
|
2019-11-22 12:42:05 +03:00
|
|
|
|
2015-07-06 17:46:21 +03:00
|
|
|
if (!search)
|
|
|
|
return FALSE;
|
2017-04-10 11:39:01 +03:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
search->idVendor = idVendor;
|
|
|
|
search->idProduct = idProduct;
|
|
|
|
|
|
|
|
if (searchman->head == NULL)
|
|
|
|
{
|
|
|
|
/* linked list is empty */
|
|
|
|
searchman->head = search;
|
|
|
|
searchman->tail = search;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* append device to the end of the linked list */
|
|
|
|
searchman->tail->next = (void*)search;
|
|
|
|
search->prev = (void*)searchman->tail;
|
|
|
|
searchman->tail = search;
|
|
|
|
}
|
2017-04-10 11:39:01 +03:00
|
|
|
|
2019-11-22 12:42:05 +03:00
|
|
|
searchman->usb_numbers += 1;
|
2015-07-06 17:46:21 +03:00
|
|
|
return TRUE;
|
2012-04-25 22:26:35 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
static int searchman_list_remove(USB_SEARCHMAN* searchman, UINT16 idVendor, UINT16 idProduct)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
USB_SEARCHDEV* search;
|
|
|
|
USB_SEARCHDEV* point;
|
|
|
|
searchman_rewind(searchman);
|
2012-10-03 01:24:52 +04:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
while (searchman_has_next(searchman) != 0)
|
|
|
|
{
|
|
|
|
point = searchman_get_next(searchman);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (point->idVendor == idVendor && point->idProduct == idProduct)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
/* set previous device to point to next device */
|
|
|
|
search = point;
|
2019-11-22 12:42:05 +03:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
if (search->prev != NULL)
|
|
|
|
{
|
|
|
|
/* unregistered device is not the head */
|
|
|
|
point = (USB_SEARCHDEV*)search->prev;
|
|
|
|
point->next = search->next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* unregistered device is the head, update head */
|
|
|
|
searchman->head = (USB_SEARCHDEV*)search->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set next device to point to previous device */
|
|
|
|
|
|
|
|
if (search->next != NULL)
|
|
|
|
{
|
|
|
|
/* unregistered device is not the tail */
|
|
|
|
point = (USB_SEARCHDEV*)search->next;
|
|
|
|
point->prev = search->prev;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* unregistered device is the tail, update tail */
|
|
|
|
searchman->tail = (USB_SEARCHDEV*)search->prev;
|
|
|
|
}
|
2017-04-10 11:39:01 +03:00
|
|
|
|
2019-11-22 12:42:05 +03:00
|
|
|
searchman->usb_numbers--;
|
2017-04-10 11:39:01 +03:00
|
|
|
free(search);
|
2012-04-25 22:26:35 +04:00
|
|
|
return 1; /* unregistration successful */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we reach this point, the device wasn't found */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 01:24:52 +04:00
|
|
|
static void searchman_list_show(USB_SEARCHMAN* self)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
|
|
|
int num = 0;
|
2012-10-03 01:24:52 +04:00
|
|
|
USB_SEARCHDEV* usb;
|
2019-11-22 12:42:05 +03:00
|
|
|
URBDRC_PLUGIN* urbdrc;
|
|
|
|
|
|
|
|
if (!self || !self->urbdrc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
urbdrc = self->urbdrc;
|
|
|
|
WLog_Print(urbdrc->log, WLOG_DEBUG, "=========== Usb Search List =========");
|
2012-04-25 22:26:35 +04:00
|
|
|
self->rewind(self);
|
2019-11-22 12:42:05 +03:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
while (self->has_next(self))
|
|
|
|
{
|
|
|
|
usb = self->get_next(self);
|
2019-11-22 12:42:05 +03:00
|
|
|
WLog_Print(urbdrc->log, WLOG_DEBUG, " USB %d: ", num++);
|
|
|
|
WLog_Print(urbdrc->log, WLOG_DEBUG, " idVendor: 0x%04" PRIX16 "", usb->idVendor);
|
|
|
|
WLog_Print(urbdrc->log, WLOG_DEBUG, " idProduct: 0x%04" PRIX16 "", usb->idProduct);
|
2012-04-25 22:26:35 +04:00
|
|
|
}
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2019-11-22 12:42:05 +03:00
|
|
|
WLog_Print(urbdrc->log, WLOG_DEBUG, "================= END ===============");
|
2012-04-25 22:26:35 +04:00
|
|
|
}
|
|
|
|
|
2012-10-03 01:24:52 +04:00
|
|
|
void searchman_free(USB_SEARCHMAN* self)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
USB_SEARCHDEV* dev;
|
2012-04-25 22:26:35 +04:00
|
|
|
|
|
|
|
while (self->head != NULL)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
dev = (USB_SEARCHDEV*)self->head;
|
|
|
|
self->remove(self, dev->idVendor, dev->idProduct);
|
2012-04-25 22:26:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* free searchman */
|
|
|
|
free(self);
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
USB_SEARCHMAN* searchman_new(void* urbdrc, UINT32 UsbDevice)
|
2012-04-25 22:26:35 +04:00
|
|
|
{
|
2012-10-03 01:24:52 +04:00
|
|
|
USB_SEARCHMAN* searchman;
|
2019-11-06 17:24:51 +03:00
|
|
|
searchman = (USB_SEARCHMAN*)calloc(1, sizeof(USB_SEARCHMAN));
|
2019-11-22 12:42:05 +03:00
|
|
|
|
2015-03-30 23:46:20 +03:00
|
|
|
if (!searchman)
|
|
|
|
return NULL;
|
2012-10-03 01:24:52 +04:00
|
|
|
|
2012-04-25 22:26:35 +04:00
|
|
|
searchman->urbdrc = urbdrc;
|
|
|
|
searchman->UsbDevice = UsbDevice;
|
|
|
|
/* load service */
|
|
|
|
searchman->add = searchman_list_add;
|
|
|
|
searchman->remove = searchman_list_remove;
|
|
|
|
searchman->rewind = searchman_rewind;
|
|
|
|
searchman->get_next = searchman_get_next;
|
|
|
|
searchman->has_next = searchman_has_next;
|
|
|
|
searchman->show = searchman_list_show;
|
|
|
|
searchman->free = searchman_free;
|
|
|
|
return searchman;
|
|
|
|
}
|