Open chrisk44 opened 6 years ago
I think aircrack works fine on arm64 architectures even when compiled for armv7, so simply do not compile it for arm64.
Am 19.12.2017 2:57 nachm. schrieb "Christos Kyriakopoulos" < notifications@github.com>:
I'm trying to compile the aircrack-ng suite to run on arm64 (Nexus 6p). I have configured the Makefile, Android.mk and Application.mk in aircrack-ng, libosdep, libssl, libcrypto and libsqlite. Everything except aircrack compiles fine for any architecture I want.
When aircrack-ng starts the ndk-build I get this:
/home/chris/android-ndk-r11c/ndk-build NDK_APPLICATION_MK=
pwd
/Application.mk NDK_APP_OUT=. TARGET_PLATFORM=android-21 APP_ABI=arm64-v8a make[1]: Entering directory '/home/chris/Desktop/nexmon/utilities/aircrack-ng' [arm64-v8a] Install : airbase-ng => libs/arm64-v8a/airbase-ng [arm64-v8a] Compile : aircrack-ng <= wpapsk.c ./src/wpapsk.c: In function 'wpapsk_sse': ./src/wpapsk.c:227:35: error: 'SIMD_COEF_32' undeclared (first use in this function) ((unsigned int )sse_hash1)[15SIMD_COEF_32 + (index&(SIMD_COEF_32-1)) + (unsigned int)index/SIMD_COEF_32SHA_BUF_SIZSIMD_COEF_32] = (84<<3); // all encrypts are 64+20 bytes. ^ ./src/wpapsk.c:227:35: note: each undeclared identifier is reported only once for each function it appears in ./src/wpapsk.c:227:110: error: 'SHA_BUF_SIZ' undeclared (first use in this function) ((unsigned int )sse_hash1)[15SIMD_COEF_32 + (index&(SIMD_COEF_32-1)) + (unsigned int)index/SIMD_COEF_32SHA_BUF_SIZSIMD_COEF_32] = (84<<3); // all encrypts are 64+20 bytes. ^ ./src/wpapsk.c:340:4: warning: implicit declaration of function 'SIMDSHA1body' [-Wimplicit-function-declaration] SIMDSHA1body((unsigned int)t_sse_hash1, (unsigned int)t_sse_hash1, (unsigned int*)t_sse_crypt1, SSEi_MIXED_IN|SSEi_RELOAD|SSEi_OUTPUT_AS_INP_FMT); ^ /home/chris/android-ndk-r11c/build/core/build-binary.mk:460: recipe for target 'local/arm64-v8a/objs/aircrack-ng/src/wpapsk.o' failed make[1]: [local/arm64-v8a/objs/aircrack-ng/src/wpapsk.o] Error 1 make[1]: Leaving directory '/home/chris/Desktop/nexmon/utilities/aircrack-ng' Makefile:39: recipe for target 'libs/arm64-v8a/aircrack-ng' failed make: [libs/arm64-v8a/aircrack-ng] Error 2Since the problem appears in the aircrack-ng code and not the build configuration (I think), I have no idea how to approach this. I tried including a few libs in the src file that produces the error, but nothing worked. I'm building on Ubuntu, ndk version is r11c, as suggested.
Any help on how to fix this would be appreciated. Thanks.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7uTcj3nPPmY52O9YtxAJsoh13keGks5tB8DcgaJpZM4RG_7c .
There appears to be a problem with linking libnexmon.so. Unfortunately I don't have a nexus 6p, I just want to include the binaries and libraries to support it in my app Hijacker. According to this issue there is some problem linking the library, so I assumed that the binary for armv7 was not compatible. What architecture should libnexmon.so be built in order for it to work with the binaries for armv7?
Ah, good to know that you are the Hijacker developer. Did you already take a look at our Nexmon app? Unfortunately, I do not have time to support it and keep it updated. It might be worth merging both the Hijacker and the Nexmon app. In the app we intended to circumvent calling native binaries whenever possible and tried to reimplement basic applications such as airodump in java, based on raw wifi frames that we tunnel through udp.
Regarding the libnexmon problem, I think that I always build it for both architectures. You just need to make sure that you install it to the correct locations or use an absolute path when calling LD_PRELOAD.
Am 19.12.2017 3:10 nachm. schrieb "Christos Kyriakopoulos" < notifications@github.com>:
There appears to be a problem with linking libnexmon.so. Unfortunately I don't have a nexus 6p, I just want to support it in my app Hijacker https://github.com/chrisk44/Hijacker. According to this issue https://github.com/chrisk44/Hijacker/issues/30 there is some problem linking the library, so I assumed that the binary for armv7 was not compatible. What architecture should libnexmon.so be built in order for it to work with the binaries for armv7?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-352762415, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7uGo1jqSQ4FYwLk-YbClKkj0Fj2Lks5tB8M8gaJpZM4RG_7c .
I have seen it, but not the code. It would probably be great to have this implemented in Hijacker, but it seems like a lot of work that I can't do. Also, it's not just the aircrack suite, I also have reaver and mdk3. A merge might be worth discussing though.
About libnexmon, I believe that it was tested with absolute paths to the library through LD_PRELOAD. I had a tester test my binary with libraries built for armv7 and arm64, one said "32bit instead of 64", and the other said "64bit instead of 32" (here). Does this make any sense to you?
I can try to redo the steps that I did to get it working on a Nexus 6P.
On Tue, Dec 19, 2017 at 3:30 PM, Christos Kyriakopoulos < notifications@github.com> wrote:
I have seen it, but not the code. It would probably be great to have this implemented in Hijacker, but it seems like a lot of work that I can't do. Also, it's not just the aircrack suite, I also have reaver and mdk3. A merge might be worth discussing though.
About libnexmon, I believe that it was tested with absolute paths to the library through LD_PRELOAD. I had a tester test my binary with libraries built for armv7 and arm64, one said "32bit instead of 64", and the other said "64bit instead of 32" (here https://github.com/chrisk44/Hijacker/issues/30#issuecomment-352700007). Does this make any sense to you?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-352770982, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7lFqjDsMjRzaIm34uG2FMSOo3F8Hks5tB8hvgaJpZM4RG_7c .
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
Maybe tonight.
On Tue, Dec 19, 2017 at 3:34 PM, Matthias Schulz < mschulz@seemoo.tu-darmstadt.de> wrote:
I can try to redo the steps that I did to get it working on a Nexus 6P.
On Tue, Dec 19, 2017 at 3:30 PM, Christos Kyriakopoulos < notifications@github.com> wrote:
I have seen it, but not the code. It would probably be great to have this implemented in Hijacker, but it seems like a lot of work that I can't do. Also, it's not just the aircrack suite, I also have reaver and mdk3. A merge might be worth discussing though.
About libnexmon, I believe that it was tested with absolute paths to the library through LD_PRELOAD. I had a tester test my binary with libraries built for armv7 and arm64, one said "32bit instead of 64", and the other said "64bit instead of 32" (here https://github.com/chrisk44/Hijacker/issues/30#issuecomment-352700007). Does this make any sense to you?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-352770982, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7lFqjDsMjRzaIm34uG2FMSOo3F8Hks5tB8hvgaJpZM4RG_7c .
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
Thanks, I would appreciate that. No rush...
We could also add releases of patched firmware files to our github repo. Then your app could check whether a release exists for the firmware installed on a users smartphone and download it. This will let up update firmwares more easily and new chips will be supported more easily.
Matthias
On Tue, Dec 19, 2017 at 3:35 PM, Christos Kyriakopoulos < notifications@github.com> wrote:
Thanks, I would appreciate that. No rush...
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-352773231, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7nD39mMpmVMfUJMmlWeHTPNMANtJks5tB8nMgaJpZM4RG_7c .
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
I'll take a look at your code when I have a chance...
So I tried it on a Galaxy S7, which has also an arm64 architecture. You can build libnexmon.so for multiple architectures and by running make install you can install a 64 bit version of the library to /system/lib64 and a 32 bit version of the library to /system/lib then you can simply install the 32 bit version of aireplay-ng to /system/bin and execute: LD_PRELOAD=libnexmon.so aireplay-ng --test wlan0
On Tue, Dec 19, 2017 at 3:42 PM, Christos Kyriakopoulos < notifications@github.com> wrote:
I'll take a look at your code when I have a chance...
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-352775950, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7pSgWe6Z1p3ECCWC2FSCAhigZ_Lyks5tB8togaJpZM4RG_7c .
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
I prefer to not have my app install binaries in system directories (other than the firmware, that is), so all binaries and libs are in the app's directory. I assume that this command would use the 32bit version of libnexmon, right? So the 32bit binary should work with the 32bit library on the arm64 device?
I think I tried to debug the problem once. At a certain point in time aireplay-ng calls a command line tool with a system or exec call or something like this. So the aireplay-ng binary needs the 32 bit version of the binary but the called command line tool will need the 64 bit binary. In the end, you have to load both libraries. This is also the reason why you once get the error message that you need the 64 bit version of the library whenever you reference the 32 bit version and vice versa.
On Thu, Dec 21, 2017 at 12:40 AM, Christos Kyriakopoulos < notifications@github.com> wrote:
I prefer to not have my app install binaries in system directories (other than the firmware, that is), so all binaries and libs are in the app's directory. I assume that this command would use the 32bit version of libnexmon, right? So the 32bit binary should work with the 32bit library on the arm64 device?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/seemoo-lab/nexmon/issues/161#issuecomment-353214999, or mute the thread https://github.com/notifications/unsubscribe-auth/ALP_7sNuT7ujFJqIKbUjFGviNkP1OIz0ks5tCZsDgaJpZM4RG_7c .
-- Matthias Schulz Secure Mobile Networking Lab - SEEMOO
Email: matthias.schulz@seemoo.tu-darmstadt.de Web: http://www.seemoo.de/mschulz Phone (new): +49 6151 16-25478 Fax: +49 6151 16-25471
Department of Computer Science Center for Advanced Security Research Darmstadt Technische Universität Darmstadt Mornewegstr. 32 (Office 4.2.10, Building S4/14) D-64293 Darmstadt, Germany
I'm trying to compile the aircrack-ng suite to run on arm64 (Nexus 6p). I have configured the Makefile, Android.mk and Application.mk in aircrack-ng, libosdep, libssl, libcrypto and libsqlite. Everything except aircrack compiles fine for any architecture I want.
When aircrack-ng starts the ndk-build I get this:
Since the problem appears in the aircrack-ng code and not the build configuration (I think), I have no idea how to approach this. I tried including a few libs in the src file that produces the error, but nothing worked. I'm building on Ubuntu, ndk version is r11c, as suggested.
Any help on how to fix this would be appreciated. Thanks.