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
|
/*
* idevice_id.c
* Prints device name or a list of attached devices
*
* Copyright (C) 2010-2018 Nikias Bassen <nikias@gmx.li>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define TOOL_NAME "idevice_id"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>
#include <libimobiledevice/libimobiledevice.h>
#include <libimobiledevice/lockdown.h>
#define MODE_NONE 0
#define MODE_SHOW_ID 1
#define MODE_LIST_DEVICES 2
static void print_usage(int argc, char **argv, int is_error)
{
char *name = strrchr(argv[0], '/');
fprintf(is_error ? stderr : stdout, "Usage: %s [OPTIONS] [UDID]\n", (name ? name + 1: argv[0]));
fprintf(is_error ? stderr : stdout,
"\n"
"List attached devices or print device name of given device.\n"
"\n" \
" If UDID is given, the name of the connected device with that UDID"
" will be retrieved.\n"
"\n" \
"OPTIONS:\n"
" -l, --list list UDIDs of all devices attached via USB\n"
" -n, --network list UDIDs of all devices available via network\n"
" -d, --debug enable communication debugging\n"
" -h, --help prints usage information\n"
" -v, --version prints version information\n"
"\n"
"Homepage: <" PACKAGE_URL ">\n"
"Bug Reports: <" PACKAGE_BUGREPORT ">\n"
);
}
int main(int argc, char **argv)
{
idevice_t device = NULL;
lockdownd_client_t client = NULL;
idevice_info_t *dev_list = NULL;
char *device_name = NULL;
int ret = 0;
int i;
int mode = MODE_LIST_DEVICES;
int include_usb = 0;
int include_network = 0;
const char* udid = NULL;
int c = 0;
const struct option longopts[] = {
{ "debug", no_argument, NULL, 'd' },
{ "help", no_argument, NULL, 'h' },
{ "list", no_argument, NULL, 'l' },
{ "network", no_argument, NULL, 'n' },
{ "version", no_argument, NULL, 'v' },
{ NULL, 0, NULL, 0}
};
while ((c = getopt_long(argc, argv, "dhlnv", longopts, NULL)) != -1) {
switch (c) {
case 'd':
idevice_set_debug_level(1);
break;
case 'h':
print_usage(argc, argv, 0);
exit(EXIT_SUCCESS);
case 'l':
mode = MODE_LIST_DEVICES;
include_usb = 1;
break;
case 'n':
mode = MODE_LIST_DEVICES;
include_network = 1;
break;
case 'v':
printf("%s %s\n", TOOL_NAME, PACKAGE_VERSION);
return 0;
default:
print_usage(argc, argv, 1);
exit(EXIT_FAILURE);
}
}
argc -= optind;
argv += optind;
if (argc == 1) {
mode = MODE_SHOW_ID;
} else if (argc == 0 && optind == 1) {
include_usb = 1;
include_network = 1;
}
udid = argv[0];
switch (mode) {
case MODE_SHOW_ID:
idevice_new_with_options(&device, udid, IDEVICE_LOOKUP_USBMUX | IDEVICE_LOOKUP_NETWORK);
if (!device) {
fprintf(stderr, "ERROR: No device with UDID %s attached.\n", udid);
return -2;
}
if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(device, &client, TOOL_NAME)) {
idevice_free(device);
fprintf(stderr, "ERROR: Connecting to device failed!\n");
return -2;
}
if ((LOCKDOWN_E_SUCCESS != lockdownd_get_device_name(client, &device_name)) || !device_name) {
fprintf(stderr, "ERROR: Could not get device name!\n");
ret = -2;
}
lockdownd_client_free(client);
idevice_free(device);
if (ret == 0) {
printf("%s\n", device_name);
}
if (device_name) {
free(device_name);
}
break;
case MODE_LIST_DEVICES:
default:
if (idevice_get_device_list_extended(&dev_list, &i) < 0) {
fprintf(stderr, "ERROR: Unable to retrieve device list!\n");
return -1;
}
for (i = 0; dev_list[i] != NULL; i++) {
if (dev_list[i]->conn_type == CONNECTION_USBMUXD && !include_usb) continue;
if (dev_list[i]->conn_type == CONNECTION_NETWORK && !include_network) continue;
printf("%s", dev_list[i]->udid);
if (include_usb && include_network) {
if (dev_list[i]->conn_type == CONNECTION_NETWORK) {
printf(" (Network)");
} else {
printf(" (USB)");
}
}
printf("\n");
}
idevice_device_list_extended_free(dev_list);
break;
}
return ret;
}
|