2014-10-06 18:24:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008, The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * 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.
|
|
|
|
* * Neither the name of Google, Inc. nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
|
|
|
|
* COPYRIGHT OWNER 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <error.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <fcntl.h>
|
2010-11-17 20:47:23 +01:00
|
|
|
#include <getopt.h>
|
2014-10-06 18:24:54 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <string.h>
|
2010-11-17 20:47:23 +01:00
|
|
|
#include <sys/ioctl.h>
|
2014-12-29 21:24:25 +01:00
|
|
|
#include <unistd.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
static void usage() {
|
|
|
|
fprintf(stderr, "%s [-l <length>] [-a <argsize>] [-rdh] <device> <ioctlnr>\n"
|
|
|
|
" -l <length> Length of io buffer\n"
|
|
|
|
" -a <argsize> Size of each argument (1-8)\n"
|
|
|
|
" -r Open device in read only mode\n"
|
|
|
|
" -d Direct argument (no iobuffer)\n"
|
|
|
|
" -h Print help\n", getprogname());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xstrtoi(const char* s, const char* what) {
|
|
|
|
char* endp;
|
|
|
|
errno = 0;
|
|
|
|
long result = strtol(s, &endp, 0);
|
|
|
|
if (errno != 0 || *endp != '\0') {
|
|
|
|
error(1, errno, "couldn't parse %s '%s'", what, s);
|
|
|
|
}
|
|
|
|
if (result > INT_MAX || result < INT_MIN) {
|
|
|
|
error(1, errno, "%s '%s' out of range", what, s);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
int ioctl_main(int argc, char* argv[]) {
|
2009-03-04 04:32:55 +01:00
|
|
|
int read_only = 0;
|
|
|
|
int length = -1;
|
|
|
|
int arg_size = 4;
|
|
|
|
int direct_arg = 0;
|
2014-10-06 18:24:54 +02:00
|
|
|
|
2014-05-08 18:31:43 +02:00
|
|
|
void *ioctl_args = NULL;
|
2009-03-04 04:32:55 +01:00
|
|
|
uint8_t *ioctl_argp;
|
2014-05-08 18:31:43 +02:00
|
|
|
uint8_t *ioctl_argp_save = NULL;
|
2009-03-04 04:32:55 +01:00
|
|
|
int rem;
|
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
int c;
|
|
|
|
while ((c = getopt(argc, argv, "rdl:a:h")) != -1) {
|
2009-03-04 04:32:55 +01:00
|
|
|
switch (c) {
|
|
|
|
case 'r':
|
|
|
|
read_only = 1;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
direct_arg = 1;
|
|
|
|
break;
|
|
|
|
case 'l':
|
2014-10-06 18:24:54 +02:00
|
|
|
length = xstrtoi(optarg, "length");
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
|
|
|
case 'a':
|
2014-10-06 18:24:54 +02:00
|
|
|
arg_size = xstrtoi(optarg, "argument size");
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
|
|
|
case 'h':
|
2014-10-06 18:24:54 +02:00
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error(1, 0, "invalid option -%c", optopt);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2014-10-06 18:24:54 +02:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
if (optind + 2 > argc) {
|
|
|
|
usage();
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
const char* device = argv[optind];
|
|
|
|
int fd;
|
|
|
|
if (strcmp(device, "-") == 0) {
|
2013-10-18 00:30:54 +02:00
|
|
|
fd = STDIN_FILENO;
|
|
|
|
} else {
|
2014-10-06 18:24:54 +02:00
|
|
|
fd = open(device, read_only ? O_RDONLY : (O_RDWR | O_SYNC));
|
|
|
|
if (fd == -1) {
|
|
|
|
error(1, errno, "cannot open %s", argv[optind]);
|
2013-10-18 00:30:54 +02:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
optind++;
|
2014-10-06 18:24:54 +02:00
|
|
|
|
|
|
|
// IOCTL(2) wants second parameter as a signed int.
|
|
|
|
// Let's let the user specify either negative numbers or large positive
|
|
|
|
// numbers, for the case where ioctl number is larger than INT_MAX.
|
|
|
|
errno = 0;
|
|
|
|
char* endp;
|
|
|
|
int ioctl_nr = UINT_MAX & strtoll(argv[optind], &endp, 0);
|
|
|
|
if (errno != 0 || *endp != '\0') {
|
|
|
|
error(1, errno, "couldn't parse ioctl number '%s'", argv[optind]);
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
optind++;
|
|
|
|
|
|
|
|
if(direct_arg) {
|
|
|
|
arg_size = 4;
|
|
|
|
length = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(length < 0) {
|
|
|
|
length = (argc - optind) * arg_size;
|
|
|
|
}
|
|
|
|
if(length) {
|
|
|
|
ioctl_args = calloc(1, length);
|
|
|
|
|
|
|
|
ioctl_argp_save = ioctl_argp = ioctl_args;
|
|
|
|
rem = length;
|
2014-10-06 18:24:54 +02:00
|
|
|
while (optind < argc) {
|
2009-03-04 04:32:55 +01:00
|
|
|
uint64_t tmp = strtoull(argv[optind], NULL, 0);
|
2014-10-06 18:24:54 +02:00
|
|
|
if (rem < arg_size) {
|
|
|
|
error(1, 0, "too many arguments");
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
memcpy(ioctl_argp, &tmp, arg_size);
|
|
|
|
ioctl_argp += arg_size;
|
|
|
|
rem -= arg_size;
|
|
|
|
optind++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("sending ioctl 0x%x", ioctl_nr);
|
|
|
|
rem = length;
|
|
|
|
while(rem--) {
|
|
|
|
printf(" 0x%02x", *ioctl_argp_save++);
|
|
|
|
}
|
2014-10-06 18:24:54 +02:00
|
|
|
printf(" to %s\n", device);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-10-06 18:24:54 +02:00
|
|
|
int res;
|
2009-03-04 04:32:55 +01:00
|
|
|
if(direct_arg)
|
|
|
|
res = ioctl(fd, ioctl_nr, *(uint32_t*)ioctl_args);
|
|
|
|
else if(length)
|
|
|
|
res = ioctl(fd, ioctl_nr, ioctl_args);
|
|
|
|
else
|
|
|
|
res = ioctl(fd, ioctl_nr, 0);
|
|
|
|
if (res < 0) {
|
2014-05-08 18:31:43 +02:00
|
|
|
free(ioctl_args);
|
2014-10-06 18:24:54 +02:00
|
|
|
error(1, errno, "ioctl 0x%x failed (returned %d)", ioctl_nr, res);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2014-10-06 18:24:54 +02:00
|
|
|
|
|
|
|
if (length) {
|
2009-03-04 04:32:55 +01:00
|
|
|
printf("return buf:");
|
|
|
|
ioctl_argp = ioctl_args;
|
|
|
|
rem = length;
|
|
|
|
while(rem--) {
|
|
|
|
printf(" %02x", *ioctl_argp++);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
2014-05-08 18:31:43 +02:00
|
|
|
free(ioctl_args);
|
2014-10-06 18:24:54 +02:00
|
|
|
close(fd);
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|