~ubuntu-branches/ubuntu/trusty/argyll/trusty-proposed

« back to all changes in this revision

Viewing changes to usb/driver/claim_interface.c

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2014-02-12 00:35:39 UTC
  • mfrom: (13.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20140212003539-24tautzlitsiz61w
Tags: 1.5.1-5ubuntu1
* Merge from Debian unstable. (LP: #1275572) Remaining changes:
  - debian/control:
    + Build-depend on libtiff-dev rather than libtiff4-dev.
  - debian/control, debian/patches/06_fix_udev_rule.patch:
    + Fix udev rules to actually work; ENV{ACL_MANAGE} has
      stopped working ages ago, and with logind it's now the
      "uaccess" tag. Dropping also consolekit from Recommends.
  - debian/patches/drop-usb-db.patch:
    + Use hwdb builtin, instead of the obsolete usb-db
      in the udev rules.
* debian/patches/05_ftbfs-underlinkage.diff:
  - Dropped change, no needed anymore.
* Refresh the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libusb-win32, Generic Windows USB Library
 
2
 * Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 */
 
18
 
 
19
 
 
20
 
 
21
#include "libusb_driver.h"
 
22
 
 
23
 
 
24
 
 
25
NTSTATUS claim_interface(libusb_device_t *dev, FILE_OBJECT *file_object,
 
26
                         int interface)
 
27
{
 
28
    USBMSG("interface %d\n", interface);
 
29
 
 
30
    if (!dev->config.value)
 
31
    {
 
32
        USBERR0("device is not configured\n");
 
33
        return STATUS_INVALID_DEVICE_STATE;
 
34
    }
 
35
 
 
36
    if (interface >= LIBUSB_MAX_NUMBER_OF_INTERFACES)
 
37
    {
 
38
        USBERR("interface number %d too high\n",
 
39
                    interface);
 
40
        return STATUS_INVALID_PARAMETER;
 
41
    }
 
42
 
 
43
    if (!dev->config.interfaces[interface].valid)
 
44
    {
 
45
        USBERR("interface %d does not exist\n", interface);
 
46
        return STATUS_INVALID_PARAMETER;
 
47
    }
 
48
 
 
49
    if (dev->config.interfaces[interface].file_object == file_object)
 
50
    {
 
51
        return STATUS_SUCCESS;
 
52
    }
 
53
 
 
54
    if (dev->config.interfaces[interface].file_object)
 
55
    {
 
56
        USBERR("could not claim interface %d, interface is already claimed\n", interface);
 
57
        return STATUS_DEVICE_BUSY;
 
58
    }
 
59
 
 
60
    dev->config.interfaces[interface].file_object = file_object;
 
61
 
 
62
    return STATUS_SUCCESS;
 
63
}
 
64
 
 
65
NTSTATUS claim_interface_ex(libusb_device_t *dev, 
 
66
                                                        FILE_OBJECT *file_object, 
 
67
                                                        interface_request_t* interface_request)
 
68
{
 
69
        PUSB_INTERFACE_DESCRIPTOR interface_descriptor;
 
70
 
 
71
        USBMSG("interface-%s=%d\n",
 
72
                interface_request->intf_use_index ? "index" : "number",
 
73
                interface_request->intf_use_index ? interface_request->interface_index : interface_request->interface_number);
 
74
 
 
75
    if (!dev->config.value || !dev->config.descriptor)
 
76
    {
 
77
        USBERR0("device is not configured\n");
 
78
        return STATUS_INVALID_DEVICE_STATE;
 
79
    }
 
80
 
 
81
        interface_request->altsetting_index=FIND_INTERFACE_INDEX_ANY;
 
82
        interface_descriptor = find_interface_desc_ex(dev->config.descriptor,dev->config.total_size,interface_request,NULL);
 
83
        if (!interface_descriptor)
 
84
        {
 
85
        return STATUS_NO_MORE_ENTRIES;
 
86
        }
 
87
 
 
88
        return  claim_interface(dev, file_object, interface_descriptor->bInterfaceNumber);
 
89
}