From e46784e5cfe7dbf760d9ab3c0a31c95305a86808 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Thu, 30 Oct 2008 19:58:49 +0100 Subject: move dev specific tools to dev/ subdir. update autoconf files accordingly --- Makefile.am | 5 +- configure.ac | 23 +++++--- dev/afccheck.c | 133 ++++++++++++++++++++++++++++++++++++++++++++++ dev/lckdclient.c | 100 +++++++++++++++++++++++++++++++++++ dev/main.c | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++++ src/Makefile.am | 16 ------ src/afccheck.c | 136 ----------------------------------------------- src/lckdclient.c | 103 ------------------------------------ src/main.c | 157 ------------------------------------------------------- 9 files changed, 405 insertions(+), 422 deletions(-) create mode 100644 dev/afccheck.c create mode 100644 dev/lckdclient.c create mode 100644 dev/main.c delete mode 100644 src/afccheck.c delete mode 100644 src/lckdclient.c delete mode 100644 src/main.c diff --git a/Makefile.am b/Makefile.am index d2db548..938986f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ AUTOMAKE_OPTIONS = foreign -SUBDIRS = src include fdi + +SUBDIRS = src include fdi $(DEV_SUB) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libiphone-1.0.pc @@ -8,4 +9,4 @@ doc: doxygen doxygen.cfg indent: - indent -kr -ut -ts4 -l120 src/*.c src/*.h + indent -kr -ut -ts4 -l120 src/*.c src/*.h dev/*.h dev/*.c diff --git a/configure.ac b/configure.ac index 24eec9b..286b1d8 100644 --- a/configure.ac +++ b/configure.ac @@ -43,13 +43,20 @@ AC_ARG_ENABLE([dev-tools], [build development helper tools (default is no)])], [build_dev_tools=true], [build_dev_tools=false]) -AM_CONDITIONAL([BUILD_DEV_TOOLS], [test x$build_dev_tools = xtrue]) +if test "$build_dev_tools" = true; then + DEV_SUB=dev +else + DEV_SUB= +fi +AC_SUBST([DEV_SUB]) AC_ARG_ENABLE([debug-code], - [AS_HELP_STRING([--enable-debug-code], - [enable debug message reporting in library (default is yes)])], - [debug_code=true], - [debug_code=false]) -AM_CONDITIONAL([STRIP_DEBUG_CODE], [test x$debug_code = xfalse]) - -AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc) + [AS_HELP_STRING([--disable-debug-code], + [disable debug message reporting in library (default is yes)])], + [no_debug_code=false], + [no_debug_code=true]) +if test "$no_debug_code" = true; then + AC_DEFINE(STRIP_DEBUG_CODE,1,[Strip debug reporting code]) +fi + +AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile dev/Makefile libiphone-1.0.pc) diff --git a/dev/afccheck.c b/dev/afccheck.c new file mode 100644 index 0000000..028110a --- /dev/null +++ b/dev/afccheck.c @@ -0,0 +1,133 @@ +/* + * afccheck.c + * creates threads and check communication through AFC is done rigth + * + * Copyright (c) 2008 Jonathan Beck 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 + */ + +#include +#include +#include + +#include + +#define BUFFER_SIZE 20000 +#define NB_THREADS 10 + + +typedef struct { + iphone_afc_client_t afc; + int id; +} param; + + +void check_afc(gpointer data) +{ + //prepare a buffer + int buffersize = BUFFER_SIZE * sizeof(int); + int *buf = (int *) malloc(buffersize); + int *buf2 = (int *) malloc(buffersize); + int bytes = 0; + //fill buffer + int i = 0; + for (i = 0; i < BUFFER_SIZE; i++) { + buf[i] = ((param *) data)->id * i; + } + + //now writes buffer on iphone + iphone_afc_file_t file = NULL; + char path[50]; + sprintf(path, "/Buf%i", ((param *) data)->id); + iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_WRITE, &file); + iphone_afc_write_file(((param *) data)->afc, file, (char *) buf, buffersize, &bytes); + iphone_afc_close_file(((param *) data)->afc, file); + file = NULL; + if (bytes != buffersize) + printf("Write operation failed\n"); + + //now read it + bytes = 0; + iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_READ, &file); + iphone_afc_read_file(((param *) data)->afc, file, (char *) buf2, buffersize, &bytes); + iphone_afc_close_file(((param *) data)->afc, file); + if (bytes != buffersize) + printf("Read operation failed\n"); + + //compare buffers + for (i = 0; i < BUFFER_SIZE; i++) { + if (buf[i] != buf2[i]) { + printf("Buffers are differents, stream corrupted\n"); + break; + } + } + + //cleanup + iphone_afc_delete_file(((param *) data)->afc, path); + g_thread_exit(0); +} + +int main(int argc, char *argv[]) +{ + iphone_lckd_client_t control = NULL; + iphone_device_t phone = NULL; + GError *err; + int port = 0; + iphone_afc_client_t afc = NULL; + + if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { + printf("No iPhone found, is it plugged in?\n"); + return 1; + } + + if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { + iphone_free_device(phone); + return 1; + } + + if (IPHONE_E_SUCCESS == iphone_lckd_start_service(control, "com.apple.afc", &port) && !port) { + iphone_lckd_free_client(control); + iphone_free_device(phone); + fprintf(stderr, "Something went wrong when starting AFC."); + return 1; + } + + iphone_afc_new_client(phone, 3432, port, &afc); + + //makes sure thread environment is available + if (!g_thread_supported()) + g_thread_init(NULL); + + GThread *threads[NB_THREADS]; + param data[NB_THREADS]; + + int i = 0; + for (i = 0; i < NB_THREADS; i++) { + data[i].afc = afc; + data[i].id = i + 1; + threads[i] = g_thread_create((GThreadFunc) check_afc, data + i, TRUE, &err); + } + + for (i = 0; i < NB_THREADS; i++) { + g_thread_join(threads[i]); + } + + + iphone_lckd_free_client(control); + iphone_free_device(phone); + + return 0; +} diff --git a/dev/lckdclient.c b/dev/lckdclient.c new file mode 100644 index 0000000..96bc27d --- /dev/null +++ b/dev/lckdclient.c @@ -0,0 +1,100 @@ +/* + * lckdclient.c + * Rudimentary command line interface to the Lockdown protocol + * + * Copyright (c) 2008 Jonathan Beck 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 + */ + +#include +#include +#include +#include +#include + +#include + + +int main(int argc, char *argv[]) +{ + int bytes = 0, port = 0, i = 0; + iphone_lckd_client_t control = NULL; + iphone_device_t phone = NULL; + + iphone_set_debug(1); + + if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { + printf("No iPhone found, is it plugged in?\n"); + return -1; + } + + if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { + iphone_free_device(phone); + return -1; + } + + char *uid = NULL; + if (IPHONE_E_SUCCESS == lockdownd_get_device_uid(control, &uid)) { + printf("DeviceUniqueID : %s\n", uid); + free(uid); + } + + using_history(); + int loop = TRUE; + while (loop) { + char *cmd = readline("> "); + if (cmd) { + + gchar **args = g_strsplit(cmd, " ", 0); + + int len = 0; + if (args) { + while (*(args + len)) { + g_strstrip(*(args + len)); + len++; + } + } + + if (len > 0) { + add_history(cmd); + if (!strcmp(*args, "quit")) + loop = FALSE; + + if (!strcmp(*args, "get") && len == 3) { + char *value = NULL; + if (IPHONE_E_SUCCESS == lockdownd_generic_get_value(control, *(args + 1), *(args + 2), &value)) + printf("Success : value = %s\n", value); + else + printf("Error\n"); + } + + if (!strcmp(*args, "start") && len == 2) { + int port = 0; + iphone_lckd_start_service(control, *(args + 1), &port); + printf("%i\n", port); + } + } + g_strfreev(args); + } + free(cmd); + cmd = NULL; + } + clear_history(); + iphone_lckd_free_client(control); + iphone_free_device(phone); + + return 0; +} diff --git a/dev/main.c b/dev/main.c new file mode 100644 index 0000000..2dbfb4a --- /dev/null +++ b/dev/main.c @@ -0,0 +1,154 @@ +/* + * main.c + * Rudimentary interface to the iPhone + * + * Copyright (c) 2008 Zach C. 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 + */ + +#include +#include +#include +#include + +#include +#include + +#include + + +int main(int argc, char *argv[]) +{ + int bytes = 0, port = 0, i = 0; + iphone_lckd_client_t control = NULL; + iphone_device_t phone = NULL; + + if (argc > 1 && !strcasecmp(argv[1], "--debug")) { + iphone_set_debug(1); + } else { + iphone_set_debug(0); + } + + if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { + printf("No iPhone found, is it plugged in?\n"); + return -1; + } + + if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { + iphone_free_device(phone); + return -1; + } + + char *uid = NULL; + if (IPHONE_E_SUCCESS == lockdownd_get_device_uid(control, &uid)) { + printf("DeviceUniqueID : %s\n", uid); + free(uid); + } + + iphone_lckd_start_service(control, "com.apple.afc", &port); + + if (port) { + iphone_afc_client_t afc = NULL; + iphone_afc_new_client(phone, 3432, port, &afc); + if (afc) { + char **dirs = NULL; + iphone_afc_get_dir_list(afc, "/eafaedf", &dirs); + if (!dirs) + iphone_afc_get_dir_list(afc, "/", &dirs); + printf("Directory time.\n"); + for (i = 0; dirs[i]; i++) { + printf("/%s\n", dirs[i]); + } + + g_strfreev(dirs); + iphone_afc_get_devinfo(afc, &dirs); + if (dirs) { + for (i = 0; dirs[i]; i += 2) { + printf("%s: %s\n", dirs[i], dirs[i + 1]); + } + } + g_strfreev(dirs); + + iphone_afc_file_t my_file = NULL; + struct stat stbuf; + iphone_afc_get_file_attr(afc, "/iTunesOnTheGoPlaylist.plist", &stbuf); + if (IPHONE_E_SUCCESS == + iphone_afc_open_file(afc, "/iTunesOnTheGoPlaylist.plist", IPHONE_AFC_FILE_READ, &my_file) && my_file) { + printf("A file size: %i\n", stbuf.st_size); + char *file_data = (char *) malloc(sizeof(char) * stbuf.st_size); + iphone_afc_read_file(afc, my_file, file_data, stbuf.st_size, &bytes); + if (bytes >= 0) { + printf("The file's data:\n"); + fwrite(file_data, 1, bytes, stdout); + } + printf("\nClosing my file.\n"); + iphone_afc_close_file(afc, my_file); + free(file_data); + } else + printf("couldn't open a file\n"); + + iphone_afc_open_file(afc, "/readme.libiphone.fx", IPHONE_AFC_FILE_WRITE, &my_file); + if (my_file) { + char *outdatafile = strdup("this is a bitchin text file\n"); + iphone_afc_write_file(afc, my_file, outdatafile, strlen(outdatafile), &bytes); + free(outdatafile); + if (bytes > 0) + printf("Wrote a surprise. ;)\n"); + else + printf("I wanted to write a surprise, but... :(\n"); + iphone_afc_close_file(afc, my_file); + } + printf("Deleting a file...\n"); + bytes = iphone_afc_delete_file(afc, "/delme"); + if (bytes) + printf("Success.\n"); + else + printf("Failure. (expected unless you have a /delme file on your phone)\n"); + + printf("Renaming a file...\n"); + bytes = iphone_afc_rename_file(afc, "/renme", "/renme2"); + if (bytes > 0) + printf("Success.\n"); + else + printf("Failure. (expected unless you have a /renme file on your phone)\n"); + + printf("Seek & read\n"); + iphone_afc_open_file(afc, "/readme.libiphone.fx", IPHONE_AFC_FILE_READ, &my_file); + if (IPHONE_E_SUCCESS != iphone_afc_seek_file(afc, my_file, 5)) + printf("WARN: SEEK DID NOT WORK\n"); + char *threeletterword = (char *) malloc(sizeof(char) * 5); + iphone_afc_read_file(afc, my_file, threeletterword, 3, &bytes); + threeletterword[3] = '\0'; + if (bytes > 0) + printf("Result: %s\n", threeletterword); + else + printf("Couldn't read!\n"); + free(threeletterword); + iphone_afc_close_file(afc, my_file); + + } + iphone_afc_free_client(afc); + } else { + printf("Start service failure.\n"); + } + + printf("All done.\n"); + + iphone_lckd_free_client(control); + iphone_free_device(phone); + + return 0; +} diff --git a/src/Makefile.am b/src/Makefile.am index a66c05b..785aacf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,22 +5,6 @@ AM_LDFLAGS = $(libxml2_LIBS) $(libusb_LIBS) $(libglib2_LIBS) $(libgnutls_LIBS) $ bin_PROGRAMS = libiphone-initconf -if BUILD_DEV_TOOLS - bin_PROGRAMS += iphoneclient lckd-client afccheck -endif - -iphoneclient_SOURCES = main.c -iphoneclient_LDADD = libiphone.la - -lckd_client_SOURCES = lckdclient.c -lckd_client_CFLAGS = $(AM_CFLAGS) -lckd_client_LDFLAGS = -lreadline $(AM_LDFLAGS) -lckd_client_LDADD = libiphone.la - -afccheck_SOURCES = afccheck.c -afccheck_CFLAGS = $(AM_CFLAGS) -afccheck_LDFLAGS = $(AM_LDFLAGS) -afccheck_LDADD = libiphone.la libiphone_initconf_SOURCES = initconf.c userpref.c lockdown.c plist.c usbmux.c iphone.c utils.c libiphone_initconf_CFLAGS = $(libgthread2_CFLAGS) $(AM_CFLAGS) diff --git a/src/afccheck.c b/src/afccheck.c deleted file mode 100644 index e772d99..0000000 --- a/src/afccheck.c +++ /dev/null @@ -1,136 +0,0 @@ -/* - * afccheck.c - * creates threads and check communication through AFC is done rigth - * - * Copyright (c) 2008 Jonathan Beck 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 - */ - -#include -#include -#include - -#include "usbmux.h" -#include "iphone.h" -#include - -#define BUFFER_SIZE 20000 -#define NB_THREADS 10 - -int debug = 0; - -typedef struct { - iphone_afc_client_t afc; - int id; -} param; - - -void check_afc(gpointer data) -{ - //prepare a buffer - int buffersize = BUFFER_SIZE * sizeof(int); - int *buf = (int *) malloc(buffersize); - int *buf2 = (int *) malloc(buffersize); - int bytes = 0; - //fill buffer - int i = 0; - for (i = 0; i < BUFFER_SIZE; i++) { - buf[i] = ((param *) data)->id * i; - } - - //now writes buffer on iphone - iphone_afc_file_t file = NULL; - char path[50]; - sprintf(path, "/Buf%i", ((param *) data)->id); - iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_WRITE, &file); - iphone_afc_write_file(((param *) data)->afc, file, (char *) buf, buffersize, &bytes); - iphone_afc_close_file(((param *) data)->afc, file); - file = NULL; - if (bytes != buffersize) - printf("Write operation failed\n"); - - //now read it - bytes = 0; - iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_READ, &file); - iphone_afc_read_file(((param *) data)->afc, file, (char *) buf2, buffersize, &bytes); - iphone_afc_close_file(((param *) data)->afc, file); - if (bytes != buffersize) - printf("Read operation failed\n"); - - //compare buffers - for (i = 0; i < BUFFER_SIZE; i++) { - if (buf[i] != buf2[i]) { - printf("Buffers are differents, stream corrupted\n"); - break; - } - } - - //cleanup - iphone_afc_delete_file(((param *) data)->afc, path); - g_thread_exit(0); -} - -int main(int argc, char *argv[]) -{ - iphone_lckd_client_t control = NULL; - iphone_device_t phone = NULL; - GError *err; - int port = 0; - iphone_afc_client_t afc = NULL; - - if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { - printf("No iPhone found, is it plugged in?\n"); - return 1; - } - - if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { - iphone_free_device(phone); - return 1; - } - - if (IPHONE_E_SUCCESS == iphone_lckd_start_service(control, "com.apple.afc", &port) && !port) { - iphone_lckd_free_client(control); - iphone_free_device(phone); - fprintf(stderr, "Something went wrong when starting AFC."); - return 1; - } - - iphone_afc_new_client(phone, 3432, port, &afc); - - //makes sure thread environment is available - if (!g_thread_supported()) - g_thread_init(NULL); - - GThread *threads[NB_THREADS]; - param data[NB_THREADS]; - - int i = 0; - for (i = 0; i < NB_THREADS; i++) { - data[i].afc = afc; - data[i].id = i + 1; - threads[i] = g_thread_create((GThreadFunc) check_afc, data + i, TRUE, &err); - } - - for (i = 0; i < NB_THREADS; i++) { - g_thread_join(threads[i]); - } - - - iphone_lckd_free_client(control); - iphone_free_device(phone); - - return 0; -} diff --git a/src/lckdclient.c b/src/lckdclient.c deleted file mode 100644 index b3b9942..0000000 --- a/src/lckdclient.c +++ /dev/null @@ -1,103 +0,0 @@ -/* - * lckdclient.c - * Rudimentary command line interface to the Lockdown protocol - * - * Copyright (c) 2008 Jonathan Beck 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 - */ - -#include -#include -#include -#include -#include - - -#include "usbmux.h" -#include "iphone.h" -#include - - -int main(int argc, char *argv[]) -{ - int bytes = 0, port = 0, i = 0; - iphone_lckd_client_t control = NULL; - iphone_device_t phone = NULL; - - iphone_set_debug(1); - - if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { - printf("No iPhone found, is it plugged in?\n"); - return -1; - } - - if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { - iphone_free_device(phone); - return -1; - } - - char *uid = NULL; - if (IPHONE_E_SUCCESS == lockdownd_get_device_uid(control, &uid)) { - printf("DeviceUniqueID : %s\n", uid); - free(uid); - } - - using_history(); - int loop = TRUE; - while (loop) { - char *cmd = readline("> "); - if (cmd) { - - gchar **args = g_strsplit(cmd, " ", 0); - - int len = 0; - if (args) { - while (*(args + len)) { - g_strstrip(*(args + len)); - len++; - } - } - - if (len > 0) { - add_history(cmd); - if (!strcmp(*args, "quit")) - loop = FALSE; - - if (!strcmp(*args, "get") && len == 3) { - char *value = NULL; - if (IPHONE_E_SUCCESS == lockdownd_generic_get_value(control, *(args + 1), *(args + 2), &value)) - printf("Success : value = %s\n", value); - else - printf("Error\n"); - } - - if (!strcmp(*args, "start") && len == 2) { - int port = 0; - iphone_lckd_start_service(control, *(args + 1), &port); - printf("%i\n", port); - } - } - g_strfreev(args); - } - free(cmd); - cmd = NULL; - } - clear_history(); - iphone_lckd_free_client(control); - iphone_free_device(phone); - - return 0; -} diff --git a/src/main.c b/src/main.c deleted file mode 100644 index 055cb4b..0000000 --- a/src/main.c +++ /dev/null @@ -1,157 +0,0 @@ -/* - * main.c - * Rudimentary interface to the iPhone - * - * Copyright (c) 2008 Zach C. 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 - */ - -#include -#include -#include -#include - -#include "usbmux.h" -#include "iphone.h" - -#include -#include - -#include - - -int main(int argc, char *argv[]) -{ - int bytes = 0, port = 0, i = 0; - iphone_lckd_client_t control = NULL; - iphone_device_t phone = NULL; - - if (argc > 1 && !strcasecmp(argv[1], "--debug")) { - iphone_set_debug(1); - } else { - iphone_set_debug(0); - } - - if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { - printf("No iPhone found, is it plugged in?\n"); - return -1; - } - - if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { - iphone_free_device(phone); - return -1; - } - - char *uid = NULL; - if (IPHONE_E_SUCCESS == lockdownd_get_device_uid(control, &uid)) { - printf("DeviceUniqueID : %s\n", uid); - free(uid); - } - - iphone_lckd_start_service(control, "com.apple.afc", &port); - - if (port) { - iphone_afc_client_t afc = NULL; - iphone_afc_new_client(phone, 3432, port, &afc); - if (afc) { - char **dirs = NULL; - iphone_afc_get_dir_list(afc, "/eafaedf", &dirs); - if (!dirs) - iphone_afc_get_dir_list(afc, "/", &dirs); - printf("Directory time.\n"); - for (i = 0; dirs[i]; i++) { - printf("/%s\n", dirs[i]); - } - - g_strfreev(dirs); - iphone_afc_get_devinfo(afc, &dirs); - if (dirs) { - for (i = 0; dirs[i]; i += 2) { - printf("%s: %s\n", dirs[i], dirs[i + 1]); - } - } - g_strfreev(dirs); - - iphone_afc_file_t my_file = NULL; - struct stat stbuf; - iphone_afc_get_file_attr(afc, "/iTunesOnTheGoPlaylist.plist", &stbuf); - if (IPHONE_E_SUCCESS == - iphone_afc_open_file(afc, "/iTunesOnTheGoPlaylist.plist", IPHONE_AFC_FILE_READ, &my_file) && my_file) { - printf("A file size: %i\n", stbuf.st_size); - char *file_data = (char *) malloc(sizeof(char) * stbuf.st_size); - iphone_afc_read_file(afc, my_file, file_data, stbuf.st_size, &bytes); - if (bytes >= 0) { - printf("The file's data:\n"); - fwrite(file_data, 1, bytes, stdout); - } - printf("\nClosing my file.\n"); - iphone_afc_close_file(afc, my_file); - free(file_data); - } else - printf("couldn't open a file\n"); - - iphone_afc_open_file(afc, "/readme.libiphone.fx", IPHONE_AFC_FILE_WRITE, &my_file); - if (my_file) { - char *outdatafile = strdup("this is a bitchin text file\n"); - iphone_afc_write_file(afc, my_file, outdatafile, strlen(outdatafile), &bytes); - free(outdatafile); - if (bytes > 0) - printf("Wrote a surprise. ;)\n"); - else - printf("I wanted to write a surprise, but... :(\n"); - iphone_afc_close_file(afc, my_file); - } - printf("Deleting a file...\n"); - bytes = iphone_afc_delete_file(afc, "/delme"); - if (bytes) - printf("Success.\n"); - else - printf("Failure. (expected unless you have a /delme file on your phone)\n"); - - printf("Renaming a file...\n"); - bytes = iphone_afc_rename_file(afc, "/renme", "/renme2"); - if (bytes > 0) - printf("Success.\n"); - else - printf("Failure. (expected unless you have a /renme file on your phone)\n"); - - printf("Seek & read\n"); - iphone_afc_open_file(afc, "/readme.libiphone.fx", IPHONE_AFC_FILE_READ, &my_file); - if (IPHONE_E_SUCCESS != iphone_afc_seek_file(afc, my_file, 5)) - printf("WARN: SEEK DID NOT WORK\n"); - char *threeletterword = (char *) malloc(sizeof(char) * 5); - iphone_afc_read_file(afc, my_file, threeletterword, 3, &bytes); - threeletterword[3] = '\0'; - if (bytes > 0) - printf("Result: %s\n", threeletterword); - else - printf("Couldn't read!\n"); - free(threeletterword); - iphone_afc_close_file(afc, my_file); - - } - iphone_afc_free_client(afc); - } else { - printf("Start service failure.\n"); - } - - printf("All done.\n"); - - iphone_lckd_free_client(control); - iphone_free_device(phone); - - return 0; -} -- cgit v1.1-32-gdbae