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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
|
/*
* afcclient.c
* Utility to interact with AFC/HoustArrest service on the device
*
* Inspired by https://github.com/emonti/afcclient
* But entirely rewritten from scratch.
*
* Copyright (c) 2023 Nikias Bassen, All Rights Reserved.
*
* 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 "afcclient"
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <getopt.h>
#include <signal.h>
#include <ctype.h>
#include <unistd.h>
#include <dirent.h>
#include <time.h>
#include <sys/stat.h>
#ifdef _WIN32
#include <windows.h>
#include <sys/time.h>
#include <conio.h>
#define sleep(x) Sleep(x*1000)
#define S_IFMT 0170000 /* [XSI] type of file mask */
#define S_IFIFO 0010000 /* [XSI] named pipe (fifo) */
#define S_IFCHR 0020000 /* [XSI] character special */
#define S_IFBLK 0060000 /* [XSI] block special */
#define S_IFLNK 0120000 /* [XSI] symbolic link */
#define S_IFSOCK 0140000 /* [XSI] socket */
#define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) /* block special */
#define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) /* char special */
#define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) /* fifo or socket */
#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) /* symbolic link */
#define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) /* socket */
#else
#include <sys/time.h>
#include <termios.h>
#endif
#ifdef HAVE_READLINE
#include <readline/readline.h>
#include <readline/history.h>
#endif
#include <libimobiledevice/libimobiledevice.h>
#include <libimobiledevice/lockdown.h>
#include <libimobiledevice/house_arrest.h>
#include <libimobiledevice/afc.h>
#include <plist/plist.h>
#include <libimobiledevice-glue/termcolors.h>
#include <libimobiledevice-glue/utils.h>
#undef st_mtime
#undef st_birthtime
struct afc_file_stat {
uint16_t st_mode;
uint16_t st_nlink;
uint64_t st_size;
uint64_t st_mtime;
uint64_t st_birthtime;
uint32_t st_blocks;
};
static char* udid = NULL;
static int connected = 0;
static int use_network = 0;
static idevice_subscription_context_t context = NULL;
static char* curdir = NULL;
static size_t curdir_len = 0;
static int file_exists(const char* path)
{
struct stat tst;
#ifdef _WIN32
return (stat(path, &tst) == 0);
#else
return (lstat(path, &tst) == 0);
#endif
}
static int is_directory(const char* path)
{
struct stat tst;
#ifdef _WIN32
return (stat(path, &tst) == 0) && S_ISDIR(tst.st_mode);
#else
return (lstat(path, &tst) == 0) && S_ISDIR(tst.st_mode);
#endif
}
static void print_usage(int argc, char **argv, int is_error)
{
char *name = strrchr(argv[0], '/');
fprintf(is_error ? stderr : stdout, "Usage: %s [OPTIONS]\n", (name ? name + 1: argv[0]));
fprintf(is_error ? stderr : stdout,
"\n"
"Interact with AFC/HouseArrest service on a connected device.\n"
"\n"
"OPTIONS:\n"
" -u, --udid UDID target specific device by UDID\n"
" -n, --network connect to network device (not recommended!)\n"
" --container <appid> Access container of given app\n"
" --documents <appid> Access Documents directory of given app\n"
" -h, --help prints usage information\n" \
" -d, --debug enable communication debugging\n" \
" -v, --version prints version information\n" \
"\n"
);
fprintf(is_error ? stderr : stdout,
"\n" \
"Homepage: <" PACKAGE_URL ">\n"
"Bug Reports: <" PACKAGE_BUGREPORT ">\n"
);
}
#ifndef HAVE_READLINE
#ifdef _WIN32
#define BS_CC '\b'
#else
#define BS_CC 0x7f
#define getch getchar
#endif
static void get_input(char *buf, int maxlen)
{
int len = 0;
int c;
while ((c = getch())) {
if ((c == '\r') || (c == '\n')) {
break;
}
if (isprint(c)) {
if (len < maxlen-1)
buf[len++] = c;
} else if (c == BS_CC) {
if (len > 0) {
fputs("\b \b", stdout);
len--;
}
}
}
buf[len] = 0;
}
#endif
#define OPT_DOCUMENTS 1
#define OPT_CONTAINER 2
int stop_requested = 0;
static void handle_signal(int sig)
{
stop_requested++;
#ifdef _WIN32
GenerateConsoleCtrlEvent(CTRL_C_EVENT, 0);
#else
kill(getpid(), SIGINT);
#endif
}
static void handle_help(afc_client_t afc, int argc, char** argv)
{
printf("Available commands:\n");
printf("help - print list of available commands\n");
printf("devinfo - print device information\n");
printf("info PATH - print file attributes of file at PATH\n");
printf("ls [-l] PATH - print directory contents of PATH\n");
printf("mv OLD NEW - rename file OLD to NEW\n");
printf("mkdir PATH - create directory at PATH\n");
printf("ln [-s] FILE [LINK] - create a (symbolic) link to file named LINKNAME\n");
printf(" NOTE: This feature has been disabled in newer versions of iOS.\n");
printf("rm PATH - remove item at PATH\n");
printf("get [-rf] PATH [LOCALPATH] - transfer file at PATH from device to LOCALPATH\n");
printf("put [-rf] LOCALPATH [PATH] - transfer local file at LOCALPATH to device at PATH\n");
printf("\n");
}
static const char* path_get_basename(const char* path)
{
const char *p = strrchr(path, '/');
return p ? p + 1 : path;
}
static int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y)
{
/* Perform the carry for the later subtraction by updating y. */
if (x->tv_usec < y->tv_usec) {
int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
y->tv_usec -= 1000000 * nsec;
y->tv_sec += nsec;
}
if (x->tv_usec - y->tv_usec > 1000000) {
int nsec = (x->tv_usec - y->tv_usec) / 1000000;
y->tv_usec += 1000000 * nsec;
y->tv_sec -= nsec;
}
/* Compute the time remaining to wait.
tv_usec is certainly positive. */
result->tv_sec = x->tv_sec - y->tv_sec;
result->tv_usec = x->tv_usec - y->tv_usec;
/* Return 1 if result is negative. */
return x->tv_sec < y->tv_sec;
}
struct str_item {
size_t len;
char* str;
};
static char* get_absolute_path(const char *path)
{
if (*path == '/') {
return strdup(path);
} else {
size_t len = curdir_len + 1 + strlen(path) + 1;
char* result = (char*)malloc(len);
if (!strcmp(curdir, "/")) {
snprintf(result, len, "/%s", path);
} else {
snprintf(result, len, "%s/%s", curdir, path);
}
return result;
}
}
static char* get_realpath(const char* path)
{
if (!path) return NULL;
int is_absolute = 0;
if (*path == '/') {
is_absolute = 1;
}
const char* p = path;
if (is_absolute) {
while (*p == '/') p++;
}
if (*p == '\0') {
return strdup("/");
}
int c_count = 1;
const char* start = p;
const char* end = p;
struct str_item* comps = NULL;
while (*p) {
if (*p == '/') {
p++;
end = p-1;
while (*p == '/') p++;
if (*p == '\0') break;
struct str_item* newcomps = (struct str_item*)realloc(comps, sizeof(struct str_item)*c_count);
if (!newcomps) {
free(comps);
printf("%s: out of memory?!\n", __func__);
return NULL;
}
comps = newcomps;
char *comp = (char*)malloc(end-start+1);
strncpy(comp, start, end-start);
comp[end-start] = '\0';
comps[c_count-1].len = end-start;
comps[c_count-1].str = comp;
c_count++;
start = p;
end = p;
}
p++;
}
if (p > start) {
if (start == end) {
end = p;
}
struct str_item* newcomps = (struct str_item*)realloc(comps, sizeof(struct str_item)*c_count);
if (!newcomps) {
free(comps);
printf("%s: out of memory?!\n", __func__);
return NULL;
}
comps = newcomps;
char *comp = (char*)malloc(end-start+1);
strncpy(comp, start, end-start);
comp[end-start] = '\0';
comps[c_count-1].len = end-start;
comps[c_count-1].str = comp;
}
struct str_item* comps_final = (struct str_item*)malloc(sizeof(struct str_item)*(c_count+1));
int o = 1;
if (is_absolute) {
comps_final[0].len = 1;
comps_final[0].str = (char*)"/";
} else {
comps_final[0].len = curdir_len;
comps_final[0].str = curdir;
}
size_t o_len = comps_final[0].len;
for (int i = 0; i < c_count; i++) {
if (!strcmp(comps[i].str, "..")) {
o--;
continue;
} else if (!strcmp(comps[i].str, ".")) {
continue;
}
o_len += comps[i].len;
comps_final[o].str = comps[i].str;
comps_final[o].len = comps[i].len;
o++;
}
o_len += o;
char* result = (char*)malloc(o_len);
char* presult = result;
for (int i = 0; i < o; i++) {
if (i > 0 && strcmp(comps_final[i-1].str, "/") != 0) {
*presult = '/';
presult++;
}
strncpy(presult, comps_final[i].str, comps_final[i].len);
presult+=comps_final[i].len;
*presult = '\0';
}
if (presult == result) {
*presult = '/';
presult++;
*presult = 0;
}
for (int i = 0; i < c_count; i++) {
free(comps[i].str);
}
free(comps);
free(comps_final);
return result;
}
static void handle_devinfo(afc_client_t afc, int argc, char** argv)
{
char **info = NULL;
afc_error_t err = afc_get_device_info(afc, &info);
if (err == AFC_E_SUCCESS && info) {
int i;
for (i = 0; info[i]; i += 2) {
printf("%s: %s\n", info[i], info[i+1]);
}
} else {
printf("Error: Failed to get device info: %s (%d)\n", afc_strerror(err), err);
}
afc_dictionary_free(info);
}
static int get_file_info_stat(afc_client_t afc, const char* path, struct afc_file_stat *stbuf)
{
char **info = NULL;
afc_error_t ret = afc_get_file_info(afc, path, &info);
memset(stbuf, 0, sizeof(struct afc_file_stat));
if (ret != AFC_E_SUCCESS) {
return -1;
} else if (!info) {
return -1;
} else {
// get file attributes from info list
int i;
for (i = 0; info[i]; i += 2) {
if (!strcmp(info[i], "st_size")) {
stbuf->st_size = atoll(info[i+1]);
} else if (!strcmp(info[i], "st_blocks")) {
stbuf->st_blocks = atoi(info[i+1]);
} else if (!strcmp(info[i], "st_ifmt")) {
if (!strcmp(info[i+1], "S_IFREG")) {
stbuf->st_mode = S_IFREG;
} else if (!strcmp(info[i+1], "S_IFDIR")) {
stbuf->st_mode = S_IFDIR;
} else if (!strcmp(info[i+1], "S_IFLNK")) {
stbuf->st_mode = S_IFLNK;
} else if (!strcmp(info[i+1], "S_IFBLK")) {
stbuf->st_mode = S_IFBLK;
} else if (!strcmp(info[i+1], "S_IFCHR")) {
stbuf->st_mode = S_IFCHR;
} else if (!strcmp(info[i+1], "S_IFIFO")) {
stbuf->st_mode = S_IFIFO;
} else if (!strcmp(info[i+1], "S_IFSOCK")) {
stbuf->st_mode = S_IFSOCK;
}
} else if (!strcmp(info[i], "st_nlink")) {
stbuf->st_nlink = atoi(info[i+1]);
} else if (!strcmp(info[i], "st_mtime")) {
stbuf->st_mtime = (time_t)(atoll(info[i+1]) / 1000000000);
} else if (!strcmp(info[i], "st_birthtime")) { /* available on iOS 7+ */
stbuf->st_birthtime = (time_t)(atoll(info[i+1]) / 1000000000);
}
}
afc_dictionary_free(info);
}
return 0;
}
static void handle_file_info(afc_client_t afc, int argc, char** argv)
{
if (argc < 1) {
printf("Error: Missing PATH.\n");
return;
}
char **info = NULL;
char* abspath = get_absolute_path(argv[0]);
if (!abspath) {
printf("Error: Invalid argument\n");
return;
}
afc_error_t err = afc_get_file_info(afc, abspath, &info);
if (err == AFC_E_SUCCESS && info) {
int i;
for (i = 0; info[i]; i += 2) {
printf("%s: %s\n", info[i], info[i+1]);
}
} else {
printf("Error: Failed to get file info for %s: %s (%d)\n", argv[0], afc_strerror(err), err);
}
afc_dictionary_free(info);
free(abspath);
}
static void print_file_info(afc_client_t afc, const char* path, int list_verbose)
{
struct afc_file_stat st;
get_file_info_stat(afc, path, &st);
if (list_verbose) {
char timebuf[64];
time_t t = st.st_mtime;
if (S_ISDIR(st.st_mode)) {
printf("drwxr-xr-x");
} else if (S_ISLNK(st.st_mode)) {
printf("lrwxrwxrwx");
} else {
if (S_ISFIFO(st.st_mode)) {
printf("f");
} else if (S_ISBLK(st.st_mode)) {
printf("b");
} else if (S_ISCHR(st.st_mode)) {
printf("c");
} else if (S_ISSOCK(st.st_mode)) {
printf("s");
} else {
printf("-");
}
printf("rw-r--r--");
}
printf(" ");
printf("%4d", st.st_nlink);
printf(" ");
printf("mobile");
printf(" ");
printf("mobile");
printf(" ");
printf("%10lld", (long long)st.st_size);
printf(" ");
#ifdef _WIN32
strftime(timebuf, 64, "%d %b %Y %H:%M:%S", localtime(&t));
#else
strftime(timebuf, 64, "%d %h %Y %H:%M:%S", localtime(&t));
#endif
printf("%s", timebuf);
printf(" ");
}
if (S_ISDIR(st.st_mode)) {
cprintf(FG_CYAN);
} else if (S_ISLNK(st.st_mode)) {
cprintf(FG_MAGENTA);
} else if (S_ISREG(st.st_mode)) {
cprintf(FG_DEFAULT);
} else {
cprintf(FG_YELLOW);
}
cprintf("%s" COLOR_RESET "\n", path_get_basename(path));
}
static void handle_list(afc_client_t afc, int argc, char** argv)
{
const char* path = NULL;
int list_verbose = 0;
if (argc < 1) {
path = curdir;
} else {
if (!strcmp(argv[0], "-l")) {
list_verbose = 1;
if (argc == 2) {
path = argv[1];
} else {
path = curdir;
}
} else {
path = argv[0];
}
}
char* abspath = get_absolute_path(path);
if (!abspath) {
printf("Error: Invalid argument\n");
return;
}
int abspath_is_root = strcmp(abspath, "/") == 0;
size_t abspath_len = (abspath_is_root) ? 0 : strlen(abspath);
char** entries = NULL;
afc_error_t err = afc_read_directory(afc, abspath, &entries);
if (err == AFC_E_READ_ERROR) {
print_file_info(afc, abspath, list_verbose);
return;
} else if (err != AFC_E_SUCCESS) {
printf("Error: Failed to list '%s': %s (%d)\n", path, afc_strerror(err), err);
free(abspath);
return;
}
char** p = entries;
while (p && *p) {
if (strcmp(".", *p) == 0 || strcmp("..", *p) == 0) {
p++;
continue;
}
size_t len = abspath_len + 1 + strlen(*p) + 1;
char* testpath = (char*)malloc(len);
if (abspath_is_root) {
snprintf(testpath, len, "/%s", *p);
} else {
snprintf(testpath, len, "%s/%s", abspath, *p);
}
print_file_info(afc, testpath, list_verbose);
free(testpath);
p++;
}
afc_dictionary_free(entries);
free(abspath);
}
static void handle_rename(afc_client_t afc, int argc, char** argv)
{
if (argc != 2) {
printf("Error: Invalid number of arguments\n");
return;
}
char* srcpath = get_absolute_path(argv[0]);
if (!srcpath) {
printf("Error: Invalid argument\n");
return;
}
char* dstpath = get_absolute_path(argv[1]);
if (!dstpath) {
free(srcpath);
printf("Error: Invalid argument\n");
return;
}
afc_error_t err = afc_rename_path(afc, srcpath, dstpath);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to rename '%s' -> '%s': %s (%d)\n", argv[0], argv[1], afc_strerror(err), err);
}
free(srcpath);
free(dstpath);
}
static void handle_mkdir(afc_client_t afc, int argc, char** argv)
{
for (int i = 0; i < argc; i++) {
char* abspath = get_absolute_path(argv[i]);
if (!abspath) {
printf("Error: Invalid argument '%s'\n", argv[i]);
continue;
}
afc_error_t err = afc_make_directory(afc, abspath);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to create directory '%s': %s (%d)\n", argv[i], afc_strerror(err), err);
}
free(abspath);
}
}
static void handle_link(afc_client_t afc, int argc, char** argv)
{
if (argc < 2) {
printf("Error: Invalid number of arguments\n");
return;
}
afc_link_type_t link_type = AFC_HARDLINK;
if (!strcmp(argv[0], "-s")) {
argc--;
argv++;
link_type = AFC_SYMLINK;
}
if (argc < 1 || argc > 2) {
printf("Error: Invalid number of arguments\n");
return;
}
const char *link_name = (argc == 1) ? path_get_basename(argv[0]) : argv[1];
char* abs_link_name = get_absolute_path(link_name);
if (!abs_link_name) {
printf("Error: Invalid argument\n");
return;
}
afc_error_t err = afc_make_link(afc, link_type, argv[0], link_name);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to create %s link for '%s' at '%s': %s (%d)\n", (link_type == AFC_HARDLINK) ? "hard" : "symbolic", argv[0], link_name, afc_strerror(err), err);
}
}
static int ask_yesno(const char* prompt)
{
int ret = 0;
#ifdef HAVE_READLINE
char* result = readline(prompt);
if (result && result[0] == 'y') {
ret = 1;
}
#else
char cmdbuf[2] = {0, };
printf("%s", prompt);
fflush(stdout);
get_input(cmdbuf, sizeof(cmdbuf));
if (cmdbuf[0] == 'y') {
ret = 1;
}
#endif
#ifdef HAVE_READLINE
free(result);
#endif
return ret;
}
static void handle_remove(afc_client_t afc, int argc, char** argv)
{
int recursive = 0;
int force = 0;
int i = 0;
for (i = 0; i < argc; i++) {
if (!strcmp(argv[i], "--")) {
i++;
break;
} else if (!strcmp(argv[i], "-r")) {
recursive = 1;
} else if (!strcmp(argv[i], "-f")) {
force = 1;
} else if (!strcmp(argv[i], "-rf") || !strcmp(argv[i], "-fr")) {
recursive = 1;
force = 1;
} else {
break;
}
}
if (recursive && !force) {
if (!ask_yesno("WARNING: This operation will remove all contents of the given path(s). Continue? [y/N] ")) {
printf("Aborted.\n");
return;
}
}
for ( ; i < argc; i++) {
char* abspath = get_absolute_path(argv[i]);
if (!abspath) {
printf("Error: Invalid argument '%s'\n", argv[i]);
continue;
}
afc_error_t err;
if (recursive) {
err = afc_remove_path_and_contents(afc, abspath);
} else {
err = afc_remove_path(afc, abspath);
}
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to remove '%s': %s (%d)\n", argv[i], afc_strerror(err), err);
}
free(abspath);
}
}
static uint8_t get_single_file(afc_client_t afc, const char *srcpath, const char *dstpath, uint64_t file_size, uint8_t force_overwrite)
{
uint64_t fh = 0;
afc_error_t err = afc_file_open(afc, srcpath, AFC_FOPEN_RDONLY, &fh);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to open file '%s': %s (%d)\n", srcpath, afc_strerror(err), err);
return 0;
}
if (file_exists(dstpath) && !force_overwrite) {
printf("Error: Failed to overwrite existing file without '-f' option: %s\n", dstpath);
return 0;
}
FILE *f = fopen(dstpath, "wb");
if (!f) {
printf("Error: Failed to open local file '%s': %s\n", dstpath, strerror(errno));
return 0;
}
struct timeval t1;
struct timeval t2;
struct timeval tdiff;
size_t bufsize = 0x100000;
char *buf = malloc(bufsize);
size_t total = 0;
int progress = 0;
int lastprog = 0;
if (file_size > 0x400000) {
progress = 1;
gettimeofday(&t1, NULL);
}
uint8_t succeed = 1;
while (err == AFC_E_SUCCESS) {
uint32_t bytes_read = 0;
size_t chunk = 0;
err = afc_file_read(afc, fh, buf, bufsize, &bytes_read);
if (bytes_read == 0) {
break;
}
while (chunk < bytes_read) {
size_t wr = fwrite(buf + chunk, 1, bytes_read - chunk, f);
if (wr == 0) {
if (progress) {
printf("\n");
}
printf("Error: Failed to write to local file\n");
succeed = 0;
break;
}
chunk += wr;
}
total += chunk;
if (progress) {
int prog = (int) ((double) total / (double) file_size * 100.0f);
if (prog > lastprog) {
gettimeofday(&t2, NULL);
timeval_subtract(&tdiff, &t2, &t1);
double time_in_sec = (double) tdiff.tv_sec + (double) tdiff.tv_usec / 1000000;
printf("\r%d%% (%0.1f MB/s) ", prog, (double) total / 1048576.0f / time_in_sec);
fflush(stdout);
lastprog = prog;
}
}
}
if (progress) {
printf("\n");
}
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to read from file '%s': %s (%d)\n", srcpath, afc_strerror(err), err);
succeed = 0;
}
free(buf);
fclose(f);
afc_file_close(afc, fh);
return succeed;
}
static int __mkdir(const char* path)
{
#ifdef _WIN32
return mkdir(path);
#else
return mkdir(path, 0755);
#endif
}
static uint8_t get_file(afc_client_t afc, const char *srcpath, const char *dstpath, uint8_t force_overwrite, uint8_t recursive_get)
{
char **info = NULL;
uint64_t file_size = 0;
afc_error_t err = afc_get_file_info(afc, srcpath, &info);
if (err == AFC_E_OBJECT_NOT_FOUND) {
printf("Error: Failed to read from file '%s': %s (%d)\n", srcpath, afc_strerror(err), err);
return 0;
}
uint8_t is_dir = 0;
if (info) {
char **p = info;
while (p && *p) {
if (!strcmp(*p, "st_size")) {
p++;
file_size = (uint64_t) strtoull(*p, NULL, 10);
}
if (!strcmp(*p, "st_ifmt")) {
p++;
is_dir = !strcmp(*p, "S_IFDIR");
}
p++;
}
afc_dictionary_free(info);
}
uint8_t succeed = 1;
if (is_dir) {
if (!recursive_get) {
printf("Error: Failed to get a directory without '-r' option: %s\n", srcpath);
return 0;
}
char **entries = NULL;
err = afc_read_directory(afc, srcpath, &entries);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to list '%s': %s (%d)\n", srcpath, afc_strerror(err), err);
return 0;
}
char **p = entries;
size_t srcpath_len = strlen(srcpath);
uint8_t srcpath_is_root = strcmp(srcpath, "/") == 0;
// if directory exists, check force_overwrite flag
if (is_directory(dstpath)) {
if (!force_overwrite) {
printf("Error: Failed to write into existing directory without '-f': %s\n", dstpath);
return 0;
}
} else if (__mkdir(dstpath) != 0) {
printf("Error: Failed to create directory '%s': %s\n", dstpath, strerror(errno));
afc_dictionary_free(entries);
return 0;
}
while (p && *p) {
if (strcmp(".", *p) == 0 || strcmp("..", *p) == 0) {
p++;
continue;
}
size_t len = srcpath_is_root ? (strlen(*p) + 2) : (srcpath_len + 1 + strlen(*p) + 1);
char *testpath = (char *) malloc(len);
if (srcpath_is_root) {
snprintf(testpath, len, "/%s", *p);
} else {
snprintf(testpath, len, "%s/%s", srcpath, *p);
}
uint8_t dst_is_root = strcmp(srcpath, "/") == 0;
size_t dst_len = dst_is_root ? (strlen(*p) + 2) : (strlen(dstpath) + 1 + strlen(*p) + 1);
char *newdst = (char *) malloc(dst_len);
if (dst_is_root) {
snprintf(newdst, dst_len, "/%s", *p);
} else {
snprintf(newdst, dst_len, "%s/%s", dstpath, *p);
}
if (!get_file(afc, testpath, newdst, force_overwrite, recursive_get)) {
succeed = 0;
break;
}
free(testpath);
free(newdst);
p++;
}
afc_dictionary_free(entries);
} else {
succeed = get_single_file(afc, srcpath, dstpath, file_size, force_overwrite);
}
return succeed;
}
static void handle_get(afc_client_t afc, int argc, char **argv)
{
if (argc < 1) {
printf("Error: Invalid number of arguments\n");
return;
}
uint8_t force_overwrite = 0, recursive_get = 0;
char *srcpath = NULL;
char *dstpath = NULL;
int i = 0;
for ( ; i < argc; i++) {
if (!strcmp(argv[i], "--")) {
i++;
break;
} else if (!strcmp(argv[i], "-r")) {
recursive_get = 1;
} else if (!strcmp(argv[i], "-f")) {
force_overwrite = 1;
} else if (!strcmp(argv[i], "-rf") || !strcmp(argv[i], "-fr")) {
recursive_get = 1;
force_overwrite = 1;
} else {
break;
}
}
if (argc - i == 1) {
char *tmp = strdup(argv[i]);
size_t src_len = strlen(tmp);
if (src_len > 1 && tmp[src_len - 1] == '/') {
tmp[src_len - 1] = '\0';
}
srcpath = get_absolute_path(tmp);
dstpath = strdup(path_get_basename(tmp));
free(tmp);
} else if (argc - i == 2) {
char *tmp = strdup(argv[i]);
size_t src_len = strlen(tmp);
if (src_len > 1 && tmp[src_len - 1] == '/') {
tmp[src_len - 1] = '\0';
}
srcpath = get_absolute_path(tmp);
dstpath = strdup(argv[i + 1]);
size_t dst_len = strlen(dstpath);
if (dst_len > 1 && dstpath[dst_len - 1] == '/') {
dstpath[dst_len - 1] = '\0';
}
free(tmp);
} else {
printf("Error: Invalid number of arguments\n");
return;
}
// target is a directory, put file under this target
if (is_directory(dstpath)) {
const char *basen = path_get_basename(srcpath);
uint8_t dst_is_root = strcmp(dstpath, "/") == 0;
size_t len = dst_is_root ? (strlen(basen) + 2) : (strlen(dstpath) + 1 + strlen(basen) + 1);
char *newdst = (char *) malloc(len);
if (dst_is_root) {
snprintf(newdst, len, "/%s", basen);
} else {
snprintf(newdst, len, "%s/%s", dstpath, basen);
}
get_file(afc, srcpath, newdst, force_overwrite, recursive_get);
free(srcpath);
free(newdst);
free(dstpath);
} else {
// target is not a dir or does not exist, just try to create or rewrite it
get_file(afc, srcpath, dstpath, force_overwrite, recursive_get);
free(srcpath);
free(dstpath);
}
}
static uint8_t put_single_file(afc_client_t afc, const char *srcpath, const char *dstpath, uint8_t force_overwrite)
{
char **info = NULL;
afc_error_t ret = afc_get_file_info(afc, dstpath, &info);
// file exists, only overwrite with '-f' option was set
if (ret == AFC_E_SUCCESS && info) {
afc_dictionary_free(info);
if (!force_overwrite) {
printf("Error: Failed to write into existing file without '-f' option: %s\n", dstpath);
return 0;
}
}
FILE *f = fopen(srcpath, "rb");
if (!f) {
printf("Error: Failed to open local file '%s': %s\n", srcpath, strerror(errno));
return 0;
}
struct timeval t1;
struct timeval t2;
struct timeval tdiff;
struct stat fst;
int progress = 0;
size_t bufsize = 0x100000;
char *buf = malloc(bufsize);
fstat(fileno(f), &fst);
if (fst.st_size >= 0x400000) {
progress = 1;
gettimeofday(&t1, NULL);
}
size_t total = 0;
int lastprog = 0;
uint64_t fh = 0;
afc_error_t err = afc_file_open(afc, dstpath, AFC_FOPEN_RW, &fh);
uint8_t succeed = 1;
while (err == AFC_E_SUCCESS) {
uint32_t bytes_read = fread(buf, 1, bufsize, f);
if (bytes_read == 0) {
if (!feof(f)) {
if (progress) {
printf("\n");
}
printf("Error: Failed to read from local file\n");
succeed = 0;
}
break;
}
uint32_t chunk = 0;
while (chunk < bytes_read) {
uint32_t bytes_written = 0;
err = afc_file_write(afc, fh, buf + chunk, bytes_read - chunk, &bytes_written);
if (err != AFC_E_SUCCESS) {
if (progress) {
printf("\n");
}
printf("Error: Failed to write to device file\n");
succeed = 0;
break;
}
chunk += bytes_written;
}
total += chunk;
if (progress) {
int prog = (int) ((double) total / (double) fst.st_size * 100.0f);
if (prog > lastprog) {
gettimeofday(&t2, NULL);
timeval_subtract(&tdiff, &t2, &t1);
double time_in_sec = (double) tdiff.tv_sec + (double) tdiff.tv_usec / 1000000;
printf("\r%d%% (%0.1f MB/s) ", prog, (double) total / 1048576.0f / time_in_sec);
fflush(stdout);
lastprog = prog;
}
}
}
free(buf);
afc_file_close(afc, fh);
fclose(f);
return succeed;
}
static uint8_t put_file(afc_client_t afc, const char *srcpath, const char *dstpath, uint8_t force_overwrite, uint8_t recursive_put)
{
if (is_directory(srcpath)) {
if (!recursive_put) {
printf("Error: Failed to put directory without '-r' option: %s\n", srcpath);
return 0;
}
char **info = NULL;
afc_error_t err = afc_get_file_info(afc, dstpath, &info);
//create if target directory does not exist
afc_dictionary_free(info);
if (err == AFC_E_OBJECT_NOT_FOUND) {
err = afc_make_directory(afc, dstpath);
if (err != AFC_E_SUCCESS) {
printf("Error: Failed to create directory '%s': %s (%d)\n", dstpath, afc_strerror(err), err);
return 0;
}
} else if (!force_overwrite) {
printf("Error: Failed to put existing directory without '-f' option: %s\n", dstpath);
return 0;
}
afc_get_file_info(afc, dstpath, &info);
uint8_t is_dir = 0;
if (info) {
char **p = info;
while (p && *p) {
if (!strcmp(*p, "st_ifmt")) {
p++;
is_dir = !strcmp(*p, "S_IFDIR");
break;
}
p++;
}
afc_dictionary_free(info);
}
if (!is_dir) {
printf("Error: Failed to create or access directory: '%s'\n", dstpath);
return 0;
}
// walk dir recursively to put files
DIR *cur_dir = opendir(srcpath);
if (cur_dir) {
struct dirent *ep;
while ((ep = readdir(cur_dir))) {
if ((strcmp(ep->d_name, ".") == 0) || (strcmp(ep->d_name, "..") == 0)) {
continue;
}
char *fpath = string_build_path(srcpath, ep->d_name, NULL);
if (fpath) {
uint8_t dst_is_root = strcmp(dstpath, "/") == 0;
size_t len = dst_is_root ? (strlen(ep->d_name) + 2) : (strlen(dstpath) + 1 + strlen(ep->d_name) + 1);
char *newdst = (char *) malloc(len);
if (dst_is_root) {
snprintf(newdst, len, "/%s", ep->d_name);
} else {
snprintf(newdst, len, "%s/%s", dstpath, ep->d_name);
}
if (!put_file(afc, fpath, newdst, force_overwrite, recursive_put)) {
free(newdst);
free(fpath);
return 0;
}
free(newdst);
free(fpath);
}
}
closedir(cur_dir);
} else {
printf("Error: Failed to visit directory: '%s': %s\n", srcpath, strerror(errno));
return 0;
}
} else {
return put_single_file(afc, srcpath, dstpath, force_overwrite);
}
return 1;
}
static void handle_put(afc_client_t afc, int argc, char **argv)
{
if (argc < 1) {
printf("Error: Invalid number of arguments\n");
return;
}
int i = 0;
uint8_t force_overwrite = 0, recursive_put = 0;
for ( ; i < argc; i++) {
if (!strcmp(argv[i], "--")) {
i++;
break;
} else if (!strcmp(argv[i], "-r")) {
recursive_put = 1;
} else if (!strcmp(argv[i], "-f")) {
force_overwrite = 1;
} else if (!strcmp(argv[i], "-rf") || !strcmp(argv[i], "-fr")) {
recursive_put = 1;
force_overwrite = 1;
} else {
break;
}
}
if (i >= argc) {
printf("Error: Invalid number of arguments\n");
return;
}
char *srcpath = strdup(argv[i]);
size_t src_len = strlen(srcpath);
if (src_len > 1 && srcpath[src_len - 1] == '/') {
srcpath[src_len - 1] = '\0';
}
char *dstpath = NULL;
if (argc - i == 1) {
dstpath = get_absolute_path(path_get_basename(srcpath));
} else if (argc - i == 2) {
char *tmp = strdup(argv[i + 1]);
size_t dst_len = strlen(tmp);
if (dst_len > 1 && tmp[dst_len - 1] == '/') {
tmp[dst_len - 1] = '\0';
}
dstpath = get_absolute_path(tmp);
free(tmp);
} else {
printf("Error: Invalid number of arguments\n");
return;
}
char **info = NULL;
afc_error_t err = afc_get_file_info(afc, dstpath, &info);
// target does not exist, put directly
if (err == AFC_E_OBJECT_NOT_FOUND) {
put_file(afc, srcpath, dstpath, force_overwrite, recursive_put);
free(srcpath);
free(dstpath);
} else {
uint8_t is_dir = 0;
if (info) {
char **p = info;
while (p && *p) {
if (!strcmp(*p, "st_ifmt")) {
p++;
is_dir = !strcmp(*p, "S_IFDIR");
break;
}
p++;
}
afc_dictionary_free(info);
}
// target is a directory, try to put under this directory
if (is_dir) {
const char *basen = path_get_basename(srcpath);
uint8_t dst_is_root = strcmp(dstpath, "/") == 0;
size_t len = dst_is_root ? (strlen(basen) + 2) : (strlen(dstpath) + 1 + strlen(basen) + 1);
char *newdst = (char *) malloc(len);
if (dst_is_root) {
snprintf(newdst, len, "/%s", basen);
} else {
snprintf(newdst, len, "%s/%s", dstpath, basen);
}
free(dstpath);
dstpath = get_absolute_path(newdst);
free(newdst);
put_file(afc, srcpath, dstpath, force_overwrite, recursive_put);
} else {
//target is common file, rewrite it
put_file(afc, srcpath, dstpath, force_overwrite, recursive_put);
}
free(srcpath);
free(dstpath);
}
}
static void handle_pwd(afc_client_t afc, int argc, char** argv)
{
printf("%s\n", curdir);
}
static void handle_cd(afc_client_t afc, int argc, char** argv)
{
if (argc != 1) {
printf("Error: Invalid number of arguments\n");
return;
}
if (!strcmp(argv[0], ".")) {
return;
}
if (!strcmp(argv[0], "..")) {
if (!strcmp(curdir, "/")) {
return;
}
char *p = strrchr(curdir, '/');
if (!p) {
strcpy(curdir, "/");
return;
}
if (p == curdir) {
*(p+1) = '\0';
} else {
*p = '\0';
}
return;
}
char* path = get_realpath(argv[0]);
int is_dir = 0;
char **info = NULL;
afc_error_t err = afc_get_file_info(afc, path, &info);
if (err == AFC_E_SUCCESS && info) {
int i;
for (i = 0; info[i]; i += 2) {
if (!strcmp(info[i], "st_ifmt")) {
if (!strcmp(info[i+1], "S_IFDIR")) {
is_dir = 1;
}
break;
}
}
afc_dictionary_free(info);
} else {
printf("Error: Failed to get file info for %s: %s (%d)\n", path, afc_strerror(err), err);
free(path);
return;
}
if (!is_dir) {
printf("Error: '%s' is not a valid directory\n", path);
free(path);
return;
}
free(curdir);
curdir = path;
curdir_len = strlen(curdir);
}
static void parse_cmdline(int* p_argc, char*** p_argv, const char* cmdline)
{
char **argv = NULL;
int argc = 0;
size_t maxlen = strlen(cmdline);
const char* pos = cmdline;
const char* qpos = NULL;
char *tmpbuf = NULL;
int tmplen = 0;
int is_error = 0;
/* skip initial whitespace */
while (isspace(*pos)) pos++;
maxlen -= (pos - cmdline);
tmpbuf = (char*)malloc(maxlen+1);
while (!is_error) {
if (*pos == '\\') {
pos++;
switch (*pos) {
case '"':
case '\'':
case '\\':
case ' ':
tmpbuf[tmplen++] = *pos;
pos++;
break;
default:
printf("Error: Invalid escape sequence\n");
is_error++;
break;
}
} else if (*pos == '"' || *pos == '\'') {
if (!qpos) {
qpos = pos;
} else {
qpos = NULL;
}
pos++;
} else if (*pos == '\0' || (!qpos && isspace(*pos))) {
tmpbuf[tmplen] = '\0';
if (*pos == '\0' && qpos) {
printf("Error: Unmatched `%c`\n", *qpos);
is_error++;
break;
}
char** new_argv = (char**)realloc(argv, (argc+1)*sizeof(char*));
if (new_argv == NULL) {
printf("Error: Out of memory?!\n");
is_error++;
break;
}
argv = new_argv;
/* shrink buffer to actual argument size */
argv[argc] = (char*)realloc(tmpbuf, tmplen+1);
if (!argv[argc]) {
printf("Error: Out of memory?!\n");
is_error++;
break;
}
argc++;
tmpbuf = NULL;
if (*pos == '\0') {
break;
}
maxlen -= tmplen;
tmpbuf = (char*)malloc(maxlen+1);
tmplen = 0;
while (isspace(*pos)) pos++;
} else {
tmpbuf[tmplen++] = *pos;
pos++;
}
}
if (tmpbuf) {
free(tmpbuf);
}
if (is_error) {
int i;
for (i = 0; argv && i < argc; i++) free(argv[i]);
free(argv);
return;
}
*p_argv = argv;
*p_argc = argc;
}
static int process_args(afc_client_t afc, int argc, char** argv)
{
if (!strcmp(argv[0], "q") || !strcmp(argv[0], "quit") || !strcmp(argv[0], "exit")) {
return -1;
}
else if (!strcmp(argv[0], "help")) {
handle_help(afc, argc, argv);
}
else if (!strcmp(argv[0], "devinfo") || !strcmp(argv[0], "deviceinfo")) {
handle_devinfo(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "info")) {
handle_file_info(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "ls") || !strcmp(argv[0], "list")) {
handle_list(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "mv") || !strcmp(argv[0], "rename")) {
handle_rename(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "mkdir")) {
handle_mkdir(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "ln")) {
handle_link(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "rm") || !strcmp(argv[0], "remove")) {
handle_remove(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "get")) {
handle_get(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "put")) {
handle_put(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "pwd")) {
handle_pwd(afc, argc-1, argv+1);
}
else if (!strcmp(argv[0], "cd")) {
handle_cd(afc, argc-1, argv+1);
}
else {
printf("Unknown command '%s'. Type 'help' to get a list of available commands.\n", argv[0]);
}
return 0;
}
static void start_cmdline(afc_client_t afc)
{
while (!stop_requested) {
int argc = 0;
char **argv = NULL;
char prompt[128];
int plen = curdir_len;
char *ppath = curdir;
int plim = (int)(sizeof(prompt)/2)-8;
if (plen > plim) {
ppath = curdir + (plen - plim);
plen = plim;
}
snprintf(prompt, 128, FG_BLACK BG_LIGHT_GRAY "afc:" COLOR_RESET FG_BRIGHT_YELLOW BG_BLUE "%.*s" COLOR_RESET " > ", plen, ppath);
#ifdef HAVE_READLINE
char* cmd = readline(prompt);
if (!cmd || !*cmd) {
free(cmd);
continue;
}
add_history(cmd);
parse_cmdline(&argc, &argv, cmd);
#else
char cmdbuf[4096];
printf("%s", prompt);
fflush(stdout);
get_input(cmdbuf, sizeof(cmdbuf));
parse_cmdline(&argc, &argv, cmdbuf);
#endif
#ifdef HAVE_READLINE
free(cmd);
#endif
/* process arguments */
if (argv && argv[0]) {
if (process_args(afc, argc, argv) < 0) {
break;
}
}
}
}
static void device_event_cb(const idevice_event_t* event, void* userdata)
{
if (use_network && event->conn_type != CONNECTION_NETWORK) {
return;
} else if (!use_network && event->conn_type != CONNECTION_USBMUXD) {
return;
}
if (event->event == IDEVICE_DEVICE_ADD) {
if (!udid) {
udid = strdup(event->udid);
}
if (strcmp(udid, event->udid) == 0) {
connected = 1;
}
} else if (event->event == IDEVICE_DEVICE_REMOVE) {
if (strcmp(udid, event->udid) == 0) {
connected = 0;
printf("\n[disconnected]\n");
handle_signal(SIGINT);
}
}
}
int main(int argc, char** argv)
{
const char* appid = NULL;
int ret = 0;
idevice_t device = NULL;
lockdownd_client_t lockdown = NULL;
lockdownd_error_t ldret = LOCKDOWN_E_UNKNOWN_ERROR;
lockdownd_service_descriptor_t service = NULL;
afc_client_t afc = NULL;
house_arrest_client_t house_arrest = NULL;
const char* service_name = AFC_SERVICE_NAME;
int use_container = 0;
int c = 0;
const struct option longopts[] = {
{ "udid", required_argument, NULL, 'u' },
{ "network", no_argument, NULL, 'n' },
{ "help", no_argument, NULL, 'h' },
{ "debug", no_argument, NULL, 'd' },
{ "version", no_argument, NULL, 'v' },
{ "documents", required_argument, NULL, OPT_DOCUMENTS },
{ "container", required_argument, NULL, OPT_CONTAINER },
{ NULL, 0, NULL, 0}
};
signal(SIGTERM, handle_signal);
#ifndef _WIN32
signal(SIGQUIT, handle_signal);
signal(SIGPIPE, SIG_IGN);
#endif
while ((c = getopt_long(argc, argv, "du:nhv", longopts, NULL)) != -1) {
switch (c) {
case 'd':
idevice_set_debug_level(1);
break;
case 'u':
if (!*optarg) {
fprintf(stderr, "ERROR: UDID must not be empty!\n");
print_usage(argc, argv, 1);
return 2;
}
udid = strdup(optarg);
break;
case 'n':
use_network = 1;
break;
case 'h':
print_usage(argc, argv, 0);
return 0;
case 'v':
printf("%s %s", TOOL_NAME, PACKAGE_VERSION);
#ifdef HAVE_READLINE
printf(" (readline)");
#endif
printf("\n");
return 0;
case OPT_DOCUMENTS:
if (!*optarg) {
fprintf(stderr, "ERROR: '--documents' requires a non-empty app ID!\n");
print_usage(argc, argv, 1);
return 2;
}
appid = optarg;
use_container = 0;
break;
case OPT_CONTAINER:
if (!*optarg) {
fprintf(stderr, "ERROR: '--container' requires a not-empty app ID!\n");
print_usage(argc, argv, 1);
return 2;
}
appid = optarg;
use_container = 1;
break;
default:
print_usage(argc, argv, 1);
return 2;
}
}
argc -= optind;
argv += optind;
int num = 0;
idevice_info_t *devices = NULL;
idevice_get_device_list_extended(&devices, &num);
int count = 0;
for (int i = 0; i < num; i++) {
if (devices[i]->conn_type == CONNECTION_NETWORK && use_network) {
count++;
} else if (devices[i]->conn_type == CONNECTION_USBMUXD) {
count++;
}
}
idevice_device_list_extended_free(devices);
if (count == 0) {
fprintf(stderr, "No device found. Plug in a device or pass UDID with -u to wait for device to be available.\n");
return 1;
}
idevice_events_subscribe(&context, device_event_cb, NULL);
while (!connected && !stop_requested) {
#ifdef _WIN32
Sleep(100);
#else
usleep(100000);
#endif
}
if (stop_requested) {
return 0;
}
ret = idevice_new_with_options(&device, udid, (use_network) ? IDEVICE_LOOKUP_NETWORK : IDEVICE_LOOKUP_USBMUX);
if (ret != IDEVICE_E_SUCCESS) {
if (udid) {
fprintf(stderr, "ERROR: Device %s not found!\n", udid);
} else {
fprintf(stderr, "ERROR: No device found!\n");
}
return 1;
}
do {
if (LOCKDOWN_E_SUCCESS != (ldret = lockdownd_client_new_with_handshake(device, &lockdown, TOOL_NAME))) {
fprintf(stderr, "ERROR: Could not connect to lockdownd: %s (%d)\n", lockdownd_strerror(ldret), ldret);
ret = 1;
break;
}
if (appid) {
service_name = HOUSE_ARREST_SERVICE_NAME;
}
ldret = lockdownd_start_service(lockdown, service_name, &service);
if (ldret != LOCKDOWN_E_SUCCESS) {
fprintf(stderr, "ERROR: Failed to start service %s: %s (%d)\n", service_name, lockdownd_strerror(ldret), ldret);
ret = 1;
break;
}
if (appid) {
house_arrest_client_new(device, service, &house_arrest);
if (!house_arrest) {
fprintf(stderr, "Could not start document sharing service!\n");
ret = 1;
break;
}
if (house_arrest_send_command(house_arrest, use_container ? "VendContainer": "VendDocuments", appid) != HOUSE_ARREST_E_SUCCESS) {
fprintf(stderr, "Could not send house_arrest command!\n");
ret = 1;
break;
}
plist_t dict = NULL;
if (house_arrest_get_result(house_arrest, &dict) != HOUSE_ARREST_E_SUCCESS) {
fprintf(stderr, "Could not get result from document sharing service!\n");
break;
}
plist_t node = plist_dict_get_item(dict, "Error");
if (node) {
char *str = NULL;
plist_get_string_val(node, &str);
fprintf(stderr, "ERROR: %s\n", str);
if (str && !strcmp(str, "InstallationLookupFailed")) {
fprintf(stderr, "The App '%s' is either not present on the device, or the 'UIFileSharingEnabled' key is not set in its Info.plist. Starting with iOS 8.3 this key is mandatory to allow access to an app's Documents folder.\n", appid);
}
free(str);
plist_free(dict);
break;
}
plist_free(dict);
afc_client_new_from_house_arrest_client(house_arrest, &afc);
} else {
afc_client_new(device, service, &afc);
}
lockdownd_service_descriptor_free(service);
lockdownd_client_free(lockdown);
lockdown = NULL;
curdir = strdup("/");
curdir_len = 1;
if (argc > 0) {
// command line mode
process_args(afc, argc, argv);
} else {
// interactive mode
start_cmdline(afc);
}
} while (0);
if (afc) {
afc_client_free(afc);
}
if (lockdown) {
lockdownd_client_free(lockdown);
}
idevice_free(device);
return ret;
}
|