Собственная отладка Android (ndk-gdb) в HTC Desire: недостаток запуска? - PullRequest
13 голосов
/ 02 февраля 2011

Я пытаюсь выполнить отладку собственного кода на своем HTC Desire для моего проекта Android.Проект состоит из тонкого слоя оболочки JNI и основного блока в C ++, скомпилированного с помощью ndk-build.Установлен флаг отладки, я запускаю 2.2 на HTC Desire и работаю с Ubuntu на моем ПК.

Итак, простой ndk-gdb --start возвращает:

ERROR: Could not setup network redirection to gdbserver?
   Maybe using --port=<port> to use a different TCP port might help?

Это странно.Я проверил в интернете и обнаружил, что это неправильная ошибка сообщения, вызванная ошибкой в ​​ndk-gdb.Если я запускаю ndk-gdb - start --verbose, я получаю эту запутанную ошибку:

Android NDK installation path: /home/marco/dev/android-ndk
Using specific adb command: /home/marco/dev/android-sdk//platform-tools/adb
ADB version found: Android Debug Bridge version 1.0.26
Using final ADB command: '/home/marco/dev/android-sdk//platform-tools/adb'
Using auto-detected project path: .
Found package name: com.marco83.siege
ABIs targetted by application: armeabi
Device API Level: 8
Device CPU ABIs: armeabi-v7a armeabi
Compatible device ABI: armeabi
Found debuggable flag: true
Found device gdbserver: /data/data/com.marco83.siege/lib/gdbserver
Using gdb setup init: /home/marco/dev/siege_game/trunk/SiegeGameNative/libs/armeabi/gdb.setup
Using toolchain prefix: /home/marco/dev/android-ndk/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-
Using app out directory: /home/marco/dev/siege_game/trunk/SiegeGameNative/obj/local/armeabi
Found data directory: 'run-as: Package 'com.marco83.siege' has corrupt installation'
Found first launchable activity: .Main
Launching activity: com.marco83.siege/.Main
## COMMAND: /home/marco/dev/android-sdk//platform-tools/adb shell am start -n com.marco83.siege/.Main
Starting: Intent { cmp=com.marco83.siege/.Main }
Warning: Activity not started, its current task has been brought to the front
## COMMAND: /home/marco/dev/android-sdk//platform-tools/adb shell sleep 2
Found running PID: 844
Launched gdbserver succesfully.
Setup network redirection
## COMMAND: /home/marco/dev/android-sdk//platform-tools/adb forward tcp:5039 localfilesystem:run-as: Package 'com.marco83.siege' has corrupt installation/debug-socket
## COMMAND: /home/marco/dev/android-sdk//platform-tools/adb shell run-as com.marco83.siege lib/gdbserver +debug-socket --attach 844
Android Debug Bridge version 1.0.26

 -d                            - directs command to the only connected USB device
                                 returns an error if more than one USB device is present.
 -e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is running.
 -s <serial number>            - directs command to the USB device or emulator with
                                 the given serial number. Overrides ANDROID_SERIAL
                                 environment variable.
 -p <product name or path>     - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.
                                 If -p is not specified, the ANDROID_PRODUCT_OUT
                                 environment variable is used, which must
                                 be an absolute path.
 devices                       - list all connected devices
 connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number is specified.
 disconnect [<host>[:<port>]]  - disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number is specified.
                                 Using this ocmmand with no additional arguments
                                 will disconnect from all connected TCP/IP devices.

device commands:
  adb push <local> <remote>    - copy file/dir to device
  adb pull <remote> [<local>]  - copy file/dir from device
  adb sync [ <directory> ]     - copy host->device only if changed
                                 (-l means list but don't copy)
                                 (see 'adb help all')
  adb shell                    - run remote shell interactively
  adb shell <command>          - run remote shell command
  adb emu <command>            - run emulator console command
  adb logcat [ <filter-spec> ] - View device log
  adb forward <local> <remote> - forward socket connections
                                 forward specs are one of: 
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
                                   dev:<character device name>
                                   jdwp:<process pid> (remote only)
  adb jdwp                     - list PIDs of processes hosting a JDWP transport
  adb install [-l] [-r] [-s] <file> - push this package file to the device and install it
                                 ('-l' means forward-lock the app)
                                 ('-r' means reinstall the app, keeping its data)
                                 ('-s' means install on SD card instead of internal storage)
  adb uninstall [-k] <package> - remove this app package from the device
                                 ('-k' means keep the data and cache directories)
  adb bugreport                - return all information from the device
                                 that should be included in a bug report.

  adb help                     - show this help message
  adb version                  - show version num

DATAOPTS:
 (no option)                   - don't touch the data partition
  -w                           - wipe the data partition
  -d                           - flash the data partition

scripting:
  adb wait-for-device          - block until device is online
  adb start-server             - ensure that there is a server running
  adb kill-server              - kill the server if it is running
  adb get-state                - prints: offline | bootloader | device
  adb get-serialno             - prints: <serial-number>
  adb status-window            - continuously print device status for a specified device
  adb remount                  - remounts the /system partition on the device read-write
  adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
  adb reboot-bootloader        - reboots the device into the bootloader
  adb root                     - restarts the adbd daemon with root permissions
  adb usb                      - restarts the adbd daemon listening on USB
  adb tcpip <port>             - restarts the adbd daemon listening on TCP on the specified port
networking:
  adb ppp <tty> [parameters]   - Run PPP over USB.
 Note: you should not automatically start a PPP connection.
 <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
 [parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
  <localdir> can be interpreted in several ways:

  - If <directory> is not specified, both /system and /data partitions will be updated.

  - If it is "system" or "data", only the corresponding partition
    is updated.

environmental variables:
  ADB_TRACE                    - Print debug information. A comma separated list of the following values
                                 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
  ANDROID_SERIAL               - The serial number to connect to. -s takes priority over this if given.
  ANDROID_LOG_TAGS             - When used with the logcat option, only these debug tags are printed.
ERROR: Could not setup network redirection to gdbserver?
       Maybe using --port=<port> to use a different TCP port might help?
marco@pacer:~/dev/siege_game/trunk/SiegeGameNative$ run-as: Package 'com.marco83.siege' has corrupt installation

, которая, как вы можете видеть и как сообщается здесь: http://vilimpoc.org/blog/2010/09/23/hello-gdbserver-a-debuggable-jni-example-for-android/, вызвана смесьюразных одновременных выходов;настоящая ошибка должна быть

Package 'xxxxx' has corrupt installation

Дальнейшее расследование этой ошибки указало мне на: http://osdir.com/ml/android-ndk/2010-08/msg00263.html

, где сообщается об одной и той же ошибке, и они говорят, что невозможно выполнить внутреннюю отладку на Desire,Проблема в том, что run-as не может получить доступ к папке / data.

Есть ли какое-либо решение, кроме рутирования / перепрошивки телефона?Почему run-as доступ / данные?Я думал о наивном решении, где я копирую пакет (objs, libs, ...) в более легкодоступное место (например, на SD-карту) и говорю отладчику вместо этого получить доступ к этому месту - возможно ли это?

Спасибо Марко

РЕДАКТИРОВАТЬ: обновление: Я рутировал телефон с помощью unrevoked3.Даже если я установлю chmod 0777 data (что, вероятно, ЧРЕЗВЫЧАЙНО опасно), я получаю ту же ошибку.Как сообщается во второй ссылке в посте, run-as проверяет, доступны ли данные /.Как я могу получить доступ к исходному коду при запуске?Можно ли перекомпилировать его и загрузить измененную версию, которая работает вокруг этой проверки?(поскольку в любом случае я могу установить / данные для чтения всеми)

Ответы [ 6 ]

4 голосов
/ 04 марта 2012

Я исправил эту проблему для HTC Desire S (2.3.3), изменив доступ и владельца для каталога '/ data / data':

До исправления:

ls -l /data
 (...)
drwxrwxrwx root     root              2012-03-03 19:07 data

В режиме root:

chmod 771 /data/data
chown system.system /data/data

ls -l /data
 (...)
drwxrwx--x system   system            2012-03-03 19:07 data

Также может потребоваться изменить директорию / data.

chmod 771 /data
chown system.system /data
3 голосов
/ 26 марта 2011

У меня такая же проблема с моим HTC Legend.Мой обходной путь:

  1. получить root-права
  2. получить PID приложения, которое вы хотите отлаживать: ps |grep your_app_package
  3. запустить сервер gdb: / data / data / your_app_package / lib / gdbserver: 5039 --attach PID

в новом терминале

  1. adbforward tcp: 5039 tcp: 5039
  2. adb pull system / bin / app_process project_path / obj / local / armeabi / app_process
  3. adb pull system / bin / libc.so / project_path / obj / local/armeabi/libc.so

Теперь вы можете подключиться к gdbserverb (http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-debugging/#more-23 пропустить шаги с помощью ndk-gdb).

PS: не забудьте скомпилировать код сследующие флаги

LOCAL_CFLAGS: = -g # debug

LOCAL_LDFLAGS: = -Wl, -Map, xxx.map #создать карту fil

1 голос
/ 06 июня 2011

Наткнулся на эту тему: http://code.google.com/p/android/issues/detail?id=16391

Для меня решена проблема с запуском, ndk-gdb теперь работает правильно.

0 голосов
/ 04 июня 2015

вам нужно s-on включить / выключить (прошивка)

для s-off чипа tegra 3

http://bbs.angeeks.com/thread-2598143-1-1.html

///

для чипа Qualcomm s-off

bbs.htc.com / cn / thread-11592-1-1.html

У меня 2 телефона HTC, Sensation s-off, одинX s-on

Sensation может использовать отладку ndk, но One X не может.

вот фотография слева - Sensation, справа - One X

https://plus.google.com/photos/106185541018774360364/albums/6156448731748249457/6156448735435939234?banner=pwa&sort=1&pid=6156448735435939234&oid=106185541018774360364

0 голосов
/ 22 марта 2014

Путь / должен / быть правильным (оба каталога «data» - 771 и system: system, каталог данных приложения - 755 и принадлежит учетной записи «app_»).

0 голосов
/ 31 августа 2011

Раньше я получал эту проблему, пока не изменил имя пакета на 4, а не на 3. Не знаю, почему это проблема (об этом уже писали разработчики), но если имя вашего пакета a.b.c работает только Java-отладчик. Для нативной отладки он должен быть в форме a.b.c.d.

...