2015-02-24 21:15:29 +03:00
|
|
|
/* $NetBSD: drvctl.c,v 1.17 2015/02/24 18:15:29 mlelstv Exp $ */
|
2004-08-18 16:30:01 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2004
|
|
|
|
* Matthias Drochner. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2011-08-07 16:00:11 +04:00
|
|
|
#include <inttypes.h>
|
2009-04-21 01:40:42 +04:00
|
|
|
#include <stdbool.h>
|
2004-08-18 16:30:01 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/drvctlio.h>
|
|
|
|
|
2011-08-07 17:00:35 +04:00
|
|
|
#define OPTS "QRSa:dlnprt"
|
2006-09-22 08:37:36 +04:00
|
|
|
|
|
|
|
#define OPEN_MODE(mode) \
|
|
|
|
(((mode) == 'd' || (mode) == 'r') ? O_RDWR \
|
|
|
|
: O_RDONLY)
|
2004-08-18 16:30:01 +04:00
|
|
|
|
2011-08-29 18:34:58 +04:00
|
|
|
__dead static void usage(void);
|
2012-01-16 23:43:50 +04:00
|
|
|
static void extract_property(prop_dictionary_t, const char *, bool);
|
|
|
|
static void display_object(prop_object_t, bool);
|
2011-08-07 17:00:35 +04:00
|
|
|
static void list_children(int, char *, bool, bool, int);
|
2004-08-18 16:30:01 +04:00
|
|
|
|
|
|
|
static void
|
2005-01-20 18:56:30 +03:00
|
|
|
usage(void)
|
2004-08-18 16:30:01 +04:00
|
|
|
{
|
|
|
|
|
2004-08-18 17:24:55 +04:00
|
|
|
fprintf(stderr, "Usage: %s -r [-a attribute] busdevice [locator ...]\n"
|
2006-09-22 08:37:36 +04:00
|
|
|
" %s -d device\n"
|
2011-08-07 17:00:35 +04:00
|
|
|
" %s [-nt] -l [device]\n"
|
2012-01-17 12:22:09 +04:00
|
|
|
" %s [-n] -p device [prop]\n"
|
2008-01-27 04:38:33 +03:00
|
|
|
" %s -Q device\n"
|
|
|
|
" %s -R device\n"
|
|
|
|
" %s -S device\n",
|
|
|
|
getprogname(), getprogname(), getprogname(), getprogname(),
|
2006-09-22 08:37:36 +04:00
|
|
|
getprogname(), getprogname(), getprogname());
|
2004-08-18 16:30:01 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2011-08-07 17:00:35 +04:00
|
|
|
bool nflag = false, tflag = false;
|
2004-08-18 16:30:01 +04:00
|
|
|
int c, mode;
|
|
|
|
char *attr = 0;
|
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
|
|
|
int fd, res;
|
2008-01-27 04:38:33 +03:00
|
|
|
struct devpmargs paa = {.devname = "", .flags = 0};
|
2004-08-18 16:30:01 +04:00
|
|
|
struct devdetachargs daa;
|
|
|
|
struct devrescanargs raa;
|
|
|
|
int *locs, i;
|
2008-01-27 04:38:33 +03:00
|
|
|
prop_dictionary_t command_dict, args_dict, results_dict,
|
|
|
|
data_dict;
|
|
|
|
prop_string_t string;
|
|
|
|
prop_number_t number;
|
|
|
|
char *xml;
|
2004-08-18 16:30:01 +04:00
|
|
|
|
2005-06-02 04:00:46 +04:00
|
|
|
mode = 0;
|
2004-08-18 16:30:01 +04:00
|
|
|
while ((c = getopt(argc, argv, OPTS)) != -1) {
|
|
|
|
switch (c) {
|
2008-01-27 04:38:33 +03:00
|
|
|
case 'Q':
|
|
|
|
case 'R':
|
|
|
|
case 'S':
|
2004-08-18 16:30:01 +04:00
|
|
|
case 'd':
|
2008-01-27 04:38:33 +03:00
|
|
|
case 'l':
|
2006-09-22 08:37:36 +04:00
|
|
|
case 'p':
|
2008-01-27 04:38:33 +03:00
|
|
|
case 'r':
|
2004-08-18 16:30:01 +04:00
|
|
|
mode = c;
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
attr = optarg;
|
|
|
|
break;
|
2009-04-21 01:40:42 +04:00
|
|
|
case 'n':
|
|
|
|
nflag = true;
|
|
|
|
break;
|
2011-08-07 17:00:35 +04:00
|
|
|
case 't':
|
|
|
|
tflag = nflag = true;
|
|
|
|
break;
|
2004-08-18 16:30:01 +04:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2009-04-05 02:05:47 +04:00
|
|
|
if ((argc < 1 && mode != 'l') || mode == 0)
|
2004-08-18 16:30:01 +04:00
|
|
|
usage();
|
|
|
|
|
2006-09-22 08:37:36 +04:00
|
|
|
fd = open(DRVCTLDEV, OPEN_MODE(mode), 0);
|
2004-08-18 16:30:01 +04:00
|
|
|
if (fd < 0)
|
|
|
|
err(2, "open %s", DRVCTLDEV);
|
|
|
|
|
2008-01-27 04:38:33 +03:00
|
|
|
switch (mode) {
|
|
|
|
case 'Q':
|
|
|
|
paa.flags = DEVPM_F_SUBTREE;
|
|
|
|
/*FALLTHROUGH*/
|
|
|
|
case 'R':
|
|
|
|
strlcpy(paa.devname, argv[0], sizeof(paa.devname));
|
|
|
|
|
|
|
|
if (ioctl(fd, DRVRESUMEDEV, &paa) == -1)
|
|
|
|
err(3, "DRVRESUMEDEV");
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
strlcpy(paa.devname, argv[0], sizeof(paa.devname));
|
|
|
|
|
|
|
|
if (ioctl(fd, DRVSUSPENDDEV, &paa) == -1)
|
|
|
|
err(3, "DRVSUSPENDDEV");
|
|
|
|
break;
|
|
|
|
case 'd':
|
2004-08-18 16:30:01 +04:00
|
|
|
strlcpy(daa.devname, argv[0], sizeof(daa.devname));
|
|
|
|
|
2008-01-27 04:38:33 +03:00
|
|
|
if (ioctl(fd, DRVDETACHDEV, &daa) == -1)
|
2004-08-18 16:30:01 +04:00
|
|
|
err(3, "DRVDETACHDEV");
|
2008-01-27 04:38:33 +03:00
|
|
|
break;
|
|
|
|
case 'l':
|
2011-08-07 17:00:35 +04:00
|
|
|
list_children(fd, argc ? argv[0] : NULL, nflag, tflag, 0);
|
2008-01-27 04:38:33 +03:00
|
|
|
break;
|
|
|
|
case 'r':
|
2004-08-18 16:30:01 +04:00
|
|
|
memset(&raa, 0, sizeof(raa));
|
|
|
|
strlcpy(raa.busname, argv[0], sizeof(raa.busname));
|
|
|
|
if (attr)
|
|
|
|
strlcpy(raa.ifattr, attr, sizeof(raa.ifattr));
|
|
|
|
if (argc > 1) {
|
|
|
|
locs = malloc((argc - 1) * sizeof(int));
|
|
|
|
if (!locs)
|
|
|
|
err(5, "malloc int[%d]", argc - 1);
|
|
|
|
for (i = 0; i < argc - 1; i++)
|
|
|
|
locs[i] = atoi(argv[i + 1]);
|
|
|
|
raa.numlocators = argc - 1;
|
|
|
|
raa.locators = locs;
|
|
|
|
}
|
|
|
|
|
2008-01-27 04:38:33 +03:00
|
|
|
if (ioctl(fd, DRVRESCANBUS, &raa) == -1)
|
2004-08-18 16:30:01 +04:00
|
|
|
err(3, "DRVRESCANBUS");
|
2008-01-27 04:38:33 +03:00
|
|
|
break;
|
|
|
|
case 'p':
|
2006-09-22 08:37:36 +04:00
|
|
|
|
|
|
|
command_dict = prop_dictionary_create();
|
|
|
|
args_dict = prop_dictionary_create();
|
|
|
|
|
|
|
|
string = prop_string_create_cstring_nocopy("get-properties");
|
|
|
|
prop_dictionary_set(command_dict, "drvctl-command", string);
|
|
|
|
prop_object_release(string);
|
|
|
|
|
|
|
|
string = prop_string_create_cstring(argv[0]);
|
|
|
|
prop_dictionary_set(args_dict, "device-name", string);
|
|
|
|
prop_object_release(string);
|
|
|
|
|
|
|
|
prop_dictionary_set(command_dict, "drvctl-arguments",
|
|
|
|
args_dict);
|
|
|
|
prop_object_release(args_dict);
|
|
|
|
|
|
|
|
res = prop_dictionary_sendrecv_ioctl(command_dict, fd,
|
|
|
|
DRVCTLCOMMAND,
|
|
|
|
&results_dict);
|
|
|
|
prop_object_release(command_dict);
|
|
|
|
if (res)
|
|
|
|
errx(3, "DRVCTLCOMMAND: %s", strerror(res));
|
|
|
|
|
|
|
|
number = prop_dictionary_get(results_dict, "drvctl-error");
|
|
|
|
if (prop_number_integer_value(number) != 0) {
|
|
|
|
errx(3, "get-properties: %s",
|
|
|
|
strerror((int)prop_number_integer_value(number)));
|
|
|
|
}
|
|
|
|
|
|
|
|
data_dict = prop_dictionary_get(results_dict,
|
|
|
|
"drvctl-result-data");
|
|
|
|
if (data_dict == NULL) {
|
|
|
|
errx(3, "get-properties: failed to return result data");
|
|
|
|
}
|
|
|
|
|
2011-08-07 16:00:11 +04:00
|
|
|
if (argc == 1) {
|
|
|
|
xml = prop_dictionary_externalize(data_dict);
|
2011-10-20 02:13:46 +04:00
|
|
|
if (!nflag) {
|
|
|
|
printf("Properties for device `%s':\n",
|
|
|
|
argv[0]);
|
|
|
|
}
|
|
|
|
printf("%s", xml);
|
2011-08-07 16:00:11 +04:00
|
|
|
free(xml);
|
|
|
|
} else {
|
|
|
|
for (i = 1; i < argc; i++)
|
2012-01-16 23:43:50 +04:00
|
|
|
extract_property(data_dict, argv[i], nflag);
|
2011-08-07 16:00:11 +04:00
|
|
|
}
|
2006-09-22 08:37:36 +04:00
|
|
|
|
2011-08-07 16:00:11 +04:00
|
|
|
prop_object_release(results_dict);
|
2008-01-27 04:38:33 +03:00
|
|
|
break;
|
|
|
|
default:
|
2004-08-18 16:30:01 +04:00
|
|
|
errx(4, "unknown command");
|
2008-01-27 04:38:33 +03:00
|
|
|
}
|
2004-08-18 16:30:01 +04:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2011-08-07 16:00:11 +04:00
|
|
|
|
|
|
|
static void
|
2012-01-16 23:43:50 +04:00
|
|
|
extract_property(prop_dictionary_t dict, const char *prop, bool nflag)
|
2011-08-07 16:00:11 +04:00
|
|
|
{
|
2012-01-16 23:43:50 +04:00
|
|
|
char *s, *p, *cur, *ep = NULL;
|
2011-08-07 16:00:11 +04:00
|
|
|
prop_object_t obj;
|
2015-02-24 21:15:29 +03:00
|
|
|
unsigned long ind;
|
2011-08-07 16:00:11 +04:00
|
|
|
|
2015-02-24 21:15:29 +03:00
|
|
|
obj = dict;
|
|
|
|
cur = NULL;
|
2011-08-07 16:00:11 +04:00
|
|
|
s = strdup(prop);
|
|
|
|
p = strtok_r(s, "/", &ep);
|
|
|
|
while (p) {
|
|
|
|
cur = p;
|
|
|
|
p = strtok_r(NULL, "/", &ep);
|
2015-02-24 21:15:29 +03:00
|
|
|
|
|
|
|
switch (prop_object_type(obj)) {
|
|
|
|
case PROP_TYPE_DICTIONARY:
|
|
|
|
obj = prop_dictionary_get(obj, cur);
|
|
|
|
if (obj == NULL)
|
2011-08-07 16:00:11 +04:00
|
|
|
exit(EXIT_FAILURE);
|
2015-02-24 21:15:29 +03:00
|
|
|
break;
|
|
|
|
case PROP_TYPE_ARRAY:
|
|
|
|
ind = strtoul(cur, NULL, 0);
|
|
|
|
obj = prop_array_get(obj, ind);
|
|
|
|
if (obj == NULL)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "select neither dict nor array with '%s'\n", cur);
|
|
|
|
exit(EXIT_FAILURE);
|
2011-08-07 16:00:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-24 21:15:29 +03:00
|
|
|
if (obj != NULL && cur != NULL)
|
|
|
|
display_object(obj, nflag);
|
|
|
|
|
2011-08-07 16:00:11 +04:00
|
|
|
free(s);
|
|
|
|
}
|
2011-08-07 17:00:35 +04:00
|
|
|
|
2012-01-16 23:43:50 +04:00
|
|
|
static void
|
|
|
|
display_object(prop_object_t obj, bool nflag)
|
|
|
|
{
|
|
|
|
char *xml;
|
|
|
|
prop_object_t next_obj;
|
|
|
|
prop_object_iterator_t iter;
|
|
|
|
|
|
|
|
if (obj == NULL)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
switch (prop_object_type(obj)) {
|
|
|
|
case PROP_TYPE_BOOL:
|
|
|
|
printf("%s\n", prop_bool_true(obj) ? "true" : "false");
|
|
|
|
break;
|
|
|
|
case PROP_TYPE_NUMBER:
|
|
|
|
printf("%" PRId64 "\n", prop_number_integer_value(obj));
|
|
|
|
break;
|
|
|
|
case PROP_TYPE_STRING:
|
|
|
|
printf("%s\n", prop_string_cstring_nocopy(obj));
|
|
|
|
break;
|
|
|
|
case PROP_TYPE_DICTIONARY:
|
|
|
|
xml = prop_dictionary_externalize(obj);
|
|
|
|
printf("%s", xml);
|
|
|
|
free(xml);
|
|
|
|
break;
|
|
|
|
case PROP_TYPE_ARRAY:
|
|
|
|
iter = prop_array_iterator(obj);
|
|
|
|
if (!nflag)
|
|
|
|
printf("Array:\n");
|
|
|
|
while ((next_obj = prop_object_iterator_next(iter)) != NULL)
|
|
|
|
display_object(next_obj, nflag);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "unhandled type %d\n", prop_object_type(obj));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-07 17:00:35 +04:00
|
|
|
static void
|
|
|
|
list_children(int fd, char *dvname, bool nflag, bool tflag, int depth)
|
|
|
|
{
|
|
|
|
struct devlistargs laa = {.l_devname = "", .l_childname = NULL,
|
|
|
|
.l_children = 0};
|
|
|
|
size_t children;
|
|
|
|
int i, n;
|
|
|
|
|
|
|
|
if (dvname == NULL) {
|
|
|
|
if (depth > 0)
|
|
|
|
return;
|
|
|
|
*laa.l_devname = '\0';
|
|
|
|
} else {
|
|
|
|
strlcpy(laa.l_devname, dvname, sizeof(laa.l_devname));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ioctl(fd, DRVLISTDEV, &laa) == -1)
|
|
|
|
err(3, "DRVLISTDEV");
|
|
|
|
|
|
|
|
children = laa.l_children;
|
|
|
|
|
|
|
|
laa.l_childname = malloc(children * sizeof(laa.l_childname[0]));
|
|
|
|
if (laa.l_childname == NULL)
|
|
|
|
err(5, "DRVLISTDEV");
|
|
|
|
if (ioctl(fd, DRVLISTDEV, &laa) == -1)
|
|
|
|
err(3, "DRVLISTDEV");
|
|
|
|
if (laa.l_children > children)
|
|
|
|
err(6, "DRVLISTDEV: number of children grew");
|
|
|
|
|
|
|
|
for (i = 0; i < (int)laa.l_children; i++) {
|
|
|
|
for (n = 0; n < depth; n++)
|
|
|
|
printf(" ");
|
|
|
|
if (!nflag) {
|
|
|
|
printf("%s ",
|
|
|
|
(dvname == NULL) ? "root" : laa.l_devname);
|
|
|
|
}
|
|
|
|
printf("%s\n", laa.l_childname[i]);
|
|
|
|
if (tflag) {
|
|
|
|
list_children(fd, laa.l_childname[i], nflag,
|
|
|
|
tflag, depth + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(laa.l_childname);
|
|
|
|
}
|