1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _CFGA_USB_H
#define _CFGA_USB_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <strings.h>
#include <fcntl.h>
#include <ctype.h>
#include <unistd.h>
#include <libintl.h>
#include <libdevice.h>
#include <sys/varargs.h>
#include <sys/usb/usba.h>
#include <sys/usb/hubd/hub.h>
#include <sys/usb/hubd/hubd_impl.h>
#include <libdevinfo.h>
#include <libdevice.h>
#include <librcm.h>
#include <synch.h>
#include <thread.h>
#include <assert.h>
#define CFGA_PLUGIN_LIB
#include <config_admin.h>
/*
* Debug stuff.
*/
#ifdef DEBUG
#define DPRINTF (void) printf
#else
#define DPRINTF 0 &&
#endif /* DEBUG */
/* for walking links */
typedef struct walk_link {
char *path;
char len;
char **linkpp;
} walk_link_t;
/*
* Stuff carried over for the routines borrowed from cfgadm/SCSI.
*/
typedef enum {
UCFGA_TERMINATE = 0,
UCFGA_CONTINUE
} ucfga_recur_t;
/* Structures for tree walking code */
typedef struct {
char *phys;
char *log;
int ret;
int match_minor;
int l_errno;
} pathm_t;
#define MATCH_MINOR_NAME 1
#define S_FREE(x) (((x) != NULL) ? (free(x), (x) = NULL) : (void *)0)
#define GET_DYN(a) (((a) != NULL) ? strstr((a), DYN_SEP) : (void *)0)
/* Location of USB configuration file */
#define USBCONF_FILE "/etc/usb/config_map.conf"
/* Hardware options */
#define OPT_DISABLE_RCM "disable_rcm"
#define FLAG_DISABLE_RCM 0x00000001 /* flags */
/* Return/error codes */
typedef enum {
UCFGA_ERR = -2,
UCFGA_LIB_ERR,
UCFGA_OK,
UCFGA_BUSY,
UCFGA_NO_REC
} ucfga_ret_t;
/* Messages */
typedef struct {
int intl; /* Flag: if 1, internationalize */
cfga_err_t cfga_err; /* Error code libcfgadm understands */
const char *msgstr;
} msgcvt_t;
#define NO_CVT 0
#define CVT 1
#define MSG_TBL_SZ(table) (sizeof ((table)) / sizeof (msgcvt_t))
/* Error message ids (and indices into usb_error_msgs) */
typedef enum {
CFGA_USB_OK = 0,
CFGA_USB_UNKNOWN,
CFGA_USB_INTERNAL_ERROR,
CFGA_USB_OPTIONS,
CFGA_USB_DYNAMIC_AP,
CFGA_USB_AP,
CFGA_USB_PORT,
CFGA_USB_DEVCTL,
CFGA_USB_NOT_CONNECTED,
CFGA_USB_NOT_CONFIGURED,
CFGA_USB_ALREADY_CONNECTED,
CFGA_USB_ALREADY_CONFIGURED,
CFGA_USB_OPEN,
CFGA_USB_IOCTL,
CFGA_USB_BUSY,
CFGA_USB_ALLOC_FAIL,
CFGA_USB_OPNOTSUPP,
CFGA_USB_DEVLINK,
CFGA_USB_STATE,
CFGA_USB_CONFIG_INVAL,
CFGA_USB_PRIV,
CFGA_USB_NVLIST,
CFGA_USB_ZEROLEN,
CFGA_USB_CONFIG_FILE,
CFGA_USB_LOCK_FILE,
CFGA_USB_UNLOCK_FILE,
CFGA_USB_ONE_CONFIG,
/* RCM Errors */
CFGA_USB_RCM_HANDLE,
CFGA_USB_RCM_ONLINE,
CFGA_USB_RCM_OFFLINE,
CFGA_USB_RCM_INFO
} cfga_usb_ret_t;
/*
* Given an error msg index, look up the associated string, and
* convert it to the current locale if required.
*/
#define ERR_STR(msg_idx) \
(get_msg((msg_idx), usb_error_msgs, MSG_TBL_SZ(usb_error_msgs)))
/* Misc text strings */
#define CFGA_DEV_DIR "/dev/cfg"
#define DYN_SEP "::"
#define MINOR_SEP ":"
#define PORT "port"
#define PORT_SEPERATOR "."
#define USB "usb"
#define USB_CFGADM_DEFAULT_AP_TYPE "unknown"
/* these set of defines are -lav listing */
#define USB_UNDEF_STR "<undef>"
#define USB_NO_CFG_STR "<no cfg str descr>"
/* -x commands */
#define RESET_DEVICE "usb_reset" /* with -x option */
#define USB_CONFIG "usb_config" /* with -x option */
#define SET_CONFIG "config=" /* with -o option */
#define SET_DRIVER "drv=" /* with -op option */
/* for confirm operation */
#define USB_CONFIRM_0 "the device: "
#define USB_CONFIRM_1 \
"This operation will suspend activity on the USB device\nContinue"
/* Prototypes */
extern int add_entry(char *, int, int, int, char *, char *, char *,
char **);
extern cfga_usb_ret_t do_control_ioctl(const char *, uint_t, uint_t,
void **, size_t *);
#ifdef __cplusplus
}
#endif
#endif /* _CFGA_USB_H */
|