summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Matt Colyer2008-08-19 09:48:24 -0700
committerGravatar Matt Colyer2008-08-19 09:48:24 -0700
commita55c3e762bceab49be53a76381ad28f818fb70b6 (patch)
tree241c56c92c32ca8ead393f0f4e4fa19705a89659 /src
parentbc68ec7c3b8d37a2d3b8127e5591e9b505fd14cd (diff)
downloadlibimobiledevice-a55c3e762bceab49be53a76381ad28f818fb70b6.tar.gz
libimobiledevice-a55c3e762bceab49be53a76381ad28f818fb70b6.tar.bz2
Put some very elementary error checking to ensure that initconf has been run.
Diffstat (limited to 'src')
-rw-r--r--src/lockdown.c53
-rw-r--r--src/main.c44
2 files changed, 50 insertions, 47 deletions
diff --git a/src/lockdown.c b/src/lockdown.c
index 7f938fb..cb57ca9 100644
--- a/src/lockdown.c
+++ b/src/lockdown.c
@@ -228,6 +228,9 @@ int lockdownd_get_device_public_key(lockdownd_client *control, char **public_key
return success;
}
+/**
+ * @return 1 on success and 0 on failure
+ */
int lockdownd_init(iPhone *phone, lockdownd_client **control)
{
int ret = 0;
@@ -251,22 +254,27 @@ int lockdownd_init(iPhone *phone, lockdownd_client **control)
if (!is_device_known(public_key)){
ret = lockdownd_pair_device(*control, public_key, host_id);
+ }else{
+ ret = 1;
}
free(public_key);
public_key = NULL;
- if (ret && host_id && !lockdownd_start_SSL_session(*control, host_id)) {
+ if (ret && host_id && lockdownd_start_SSL_session(*control, host_id)) {
ret = 1;
free(host_id);
host_id = NULL;
} else {
ret = 0;
- fprintf(stderr, "SSL Session opening failed.\n");
+ fprintf(stderr, "lockdownd_init: SSL Session opening failed, has libiphone-initconf been run?\n");
}
return ret;
}
+/**
+ * @return 1 on success and 0 on failure
+ */
int lockdownd_pair_device(lockdownd_client *control, char *public_key_b64, char *host_id)
{
int ret = 0;
@@ -282,7 +290,9 @@ int lockdownd_pair_device(lockdownd_client *control, char *public_key_b64, char
char* host_cert_b64 = NULL;
char* root_cert_b64 = NULL;
- lockdownd_gen_pair_cert(public_key_b64, &device_cert_b64, &host_cert_b64, &root_cert_b64);
+ if(!lockdownd_gen_pair_cert(public_key_b64, &device_cert_b64, &host_cert_b64, &root_cert_b64)){
+ return 0;
+ }
/* Setup Pair request plist */
dict = add_child_to_plist(plist, "dict", "\n", NULL, 0);
@@ -349,9 +359,12 @@ int lockdownd_pair_device(lockdownd_client *control, char *public_key_b64, char
return ret;
}
+/**
+ * @return 1 on success and 0 on failure.
+ */
int lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char **host_cert_b64, char **root_cert_b64)
{
- int ret = 0;
+ int ret = 0, error = 0;
gnutls_datum_t modulus = {NULL, 0};
gnutls_datum_t exponent = {NULL, 0};
@@ -415,24 +428,23 @@ int lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char *
/* get root cert */
gnutls_datum_t pem_root_cert = {NULL, 0};
- ret = get_root_certificate(&pem_root_cert);
- ret = gnutls_x509_crt_import (root_cert, &pem_root_cert, GNUTLS_X509_FMT_PEM);
-
+ get_root_certificate(&pem_root_cert);
+ ret = gnutls_x509_crt_import(root_cert, &pem_root_cert, GNUTLS_X509_FMT_PEM);
+ if (ret != GNUTLS_E_SUCCESS) error = 1;
/* get host cert */
gnutls_datum_t pem_host_cert = {NULL, 0};
- ret = get_host_certificate(&pem_host_cert);
- ret = gnutls_x509_crt_import (host_cert, &pem_host_cert, GNUTLS_X509_FMT_PEM);
-
+ get_host_certificate(&pem_host_cert);
+ ret = gnutls_x509_crt_import(host_cert, &pem_host_cert, GNUTLS_X509_FMT_PEM);
+ if (ret != GNUTLS_E_SUCCESS) error = 1;
/* get root private key */
gnutls_datum_t pem_root_priv = {NULL, 0};
- ret = get_root_private_key(&pem_root_priv);
- ret = gnutls_x509_privkey_import (root_privkey, &pem_root_priv, GNUTLS_X509_FMT_PEM);
-
+ get_root_private_key(&pem_root_priv);
+ ret = gnutls_x509_privkey_import(root_privkey, &pem_root_priv, GNUTLS_X509_FMT_PEM);
+ if (ret != GNUTLS_E_SUCCESS) error = 1;
/* generate device certificate */
-
gnutls_x509_crt_set_key(dev_cert, fake_privkey);
gnutls_x509_crt_set_serial(dev_cert, "\x00", 1);
gnutls_x509_crt_set_version(dev_cert, 3);
@@ -441,12 +453,8 @@ int lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char *
gnutls_x509_crt_set_expiration_time(dev_cert, time(NULL) + (60 * 60 * 24 * 365 * 10));
gnutls_x509_crt_sign(dev_cert, root_cert, root_privkey);
- //TODO handle errors
- ret = 1;
-
- if (ret) {
+ if (!error) {
/* if everything went well, export in PEM format */
-
gnutls_datum_t dev_pem = {NULL, 0};
size_t crt_size;
gnutls_x509_crt_export(dev_cert, GNUTLS_X509_FMT_PEM, NULL, &crt_size);
@@ -472,7 +480,12 @@ int lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char *
gnutls_free(der_pub_key.data);
g_free(pem_pub_key.data);
- return ret;
+
+ if (error) {
+ return 0;
+ } else {
+ return ret;
+ }
}
int lockdownd_start_SSL_session(lockdownd_client *control, const char *HostID) {
diff --git a/src/main.c b/src/main.c
index 31c2a76..0267dee 100644
--- a/src/main.c
+++ b/src/main.c
@@ -37,37 +37,29 @@
int debug = 1;
int main(int argc, char *argv[]) {
- /* char* host_id = NULL; */
- iPhone *phone = get_iPhone();
- if (argc > 1 && !strcasecmp(argv[1], "--debug")) debug = 1;
- else debug = 0;
int bytes = 0, port = 0, i = 0;
- if (phone) printf("I got a phone.\n");
- else { printf("oops\n"); return -1; }
-
lockdownd_client *control = NULL;
- lockdownd_init(phone, &control);
- /*
- lockdownd_client *control = new_lockdownd_client(phone);
- if (!lockdownd_hello(control)) {
- printf("Something went wrong in the lockdownd client, go take a look.\n");
+ iPhone *phone = get_iPhone();
+
+ if (argc > 1 && !strcasecmp(argv[1], "--debug")){
+ debug = 1;
} else {
- printf("We said hello. :)\n");
+ debug = 0;
}
-
- printf("Now starting SSL.\n");
+
+ if (!phone) {
+ printf("No iPhone found, is it plugged in?\n");
+ return -1;
+ }
- host_id = get_host_id();
- if (host_id && !lockdownd_start_SSL_session(control, host_id)) {
- printf("Error happened in GnuTLS...\n");
- } else {
- free(host_id);
- host_id = NULL;*/
- printf("... we're in SSL with the phone... !?\n");
- port = lockdownd_start_service(control, "com.apple.afc");
- //}
+ if (!lockdownd_init(phone, &control)){
+ free_iPhone(phone);
+ return -1;
+ }
+
+ port = lockdownd_start_service(control, "com.apple.afc");
+
if (port) {
- printf("Start Service successful -- connect on port %i\n", port);
AFClient *afc = afc_connect(phone, 3432, port);
if (afc) {
char **dirs;
@@ -139,8 +131,6 @@ int main(int argc, char *argv[]) {
printf("Start service failure.\n");
}
- printf("All done.\n");
-
free_iPhone(phone);
return 0;