Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Also since Android 7 they started locking down what was possible to access with the NDK, any attempt to link against anything not listed as official NDK API will terminate the application.

With Android P they are doing the same to Java apps that make use of reflection to access non-public APIs or work around bugs due to lack of updates.



sort by: page size:

I wonder if it still would work in Android 7, with the new restrictions that kill any application that tries to link to non public NDK libraries.

That is wishful thinking.

Android is 90% Java frameworks. C and C++ applications are only allowed to use these libraries from the underlying OS.

https://developer.android.com/ndk/guides/stable_apis.html

Trying to link to anything else will terminate the application, starting with Android 7.

https://developer.android.com/about/versions/nougat/android-...

ChromeOS is a browser based OS, that happens to have Linux underneath.

On Android Things, the NDK is even more constrained to the point that the device drivers API is mostly exposed via Java.

https://developer.android.com/things/sdk/index.html

In all cases, their fork of Linux has some POSIX API removed.

http://www.cs.columbia.edu/~vatlidak/resources/POSIXmagazine...

So, Google could tomorrow replace Linux by anything else and only OEMs writing drivers would notice.

Which is actually what they are doing with their Fuchsia project.

https://github.com/fuchsia-mirror


Android is only about Java.

The NDK APIs are quite constrained and only meant to be used for Java native methods, real time audio and high performance graphics.

Google can replace the kernel for anything else POSIX like, with the same set of NDK APIs.

Since Android 7, they have been locking down access to anything else not part of the official NDK APIs.


Have you ever used the NDK?

Android is all about Java and there is only a very thin subset of native APIs that are available, including POSIX ones.

https://developer.android.com/ndk/guides/stable_apis.html

Starting with Android 7, calling anything outside of that list will terminate the application.

Google could replace the kernel for something else, while keeping those NDK APIs and only OEMs writing drivers would notice.


And that there in is an issue. Android will never have a complete ndk API parity with Java. They've made this clear, and would be difficult since the Java API is implemented in Java (it's not a wrapper of ndk).

ART is the Android RunTime, basically the large majority of Android's userspace.

Those native libraries are forbidden to use Linux specific features, only these APIs are sancioned.

https://developer.android.com/ndk/guides/stable_apis

Since Android 7, Google has been claping down NDK users that try to used anything that isn't part of that list.

Since Android 8, APKs are only allowed to reach for their own internal filesystem and use SAF for anything else. Something that will be further enforced on Android Q, so no luck trying to peek into /dev, /share and similar.


I guess so.

For NDK they are using a similar process. Any attempt to use on-device libraries not part of the official NDK APIs will terminate the application.


Apparently you haven't been paying attention, declaring off limits APIs started with Android Nougat for NDK developers.

Because Linux APIs were never really intended to be called by NDK developers, only the POSIX subset and Android public native APIs.

Likewise with Java, which is only a subset of proper Java.

In any case, it might relate more to an eventual future support of Java 9 module system, where private really means private, than anything else.


The issue with the NDK is that it is still a 2nd class citzen.

The few Android APIs available, are wrappers around JNI calls.

Java is the native language of the platform and Google does not seem willing to change that, even with the ongoing court issues.


Only the ISO C standard library is part of the public API for Android apps, use anything else at the peril of having the app crash across devices or being killed by Android security measures that prevent access to private APIs.

EDIT: To make it more explicit, given that people keep mistaking Android for Linux,

"NDK C library"

https://developer.android.com/ndk/guides/stable_apis#c_libra...

"Improving Stability with Private C/C++ Symbol Restrictions in Android N"

https://android-developers.googleblog.com/2016/06/improving-...

"Android changes for NDK developers"

https://android-developers.googleblog.com/2016/06/android-ch...


Sure it has, because it doesn't matter if it is open source or not, if it is a stable API described on the NDK documentation it is not allowed.

Something that termux guys are having some issues to swallow, regarless of Linux being the kernel, it is not allowed to do what they want, wrapping Java APIs via JNI is the only allowed way.


Once you go ndk aren't you opening up the library to all sorts of compatibility issues with specific devices? The Java api always seems safer to me.

Only developers without Android experience think that.

Android is all about Java.

The NDK is there as layer for implementing Java native methods, games and high performance audio, and general purpose native libraries from other OSes.

This is what you are allowed to call from C and C++ on Android:

https://developer.android.com/ndk/reference/index.html

https://developer.android.com/ndk/guides/stable_apis.html

Trying to call anything else terminates the application as of Android 7.

https://developer.android.com/about/versions/nougat/android-...

As of the upcoming Android 8, calling syscalls outside of what libc requires leads to application termination as well.

https://developer.android.com/preview/behavior-changes.html#...

Basically nothing really UNIX specific and could be implemented with any other kind of kernel (hence Fuchsia).


Android was always about Java (now Kotlin).

The NDK was only added in 2.0 to appease game developers and workaround for Dalvik anemic performance.

Any access to Linux APIs was accidental and never part of the official native APIs.


Which even after their adoption of OpenJDK still isn't compatible out of the box with the standard library available at https://adoptopenjdk.net/

In 2020 it is still pretty much hint and miss getting a Java library working without changes on Android, given that the Android team cherry picks whatever they feel like from OpenJDK for their own Android API implementation purposes.

Easily to find that out from Gerrit commits and AOSP source code.

Meanwhile, effort has been spent ensuring that 100% of ISO C and ISO C++ are available on Android NDK.

Thus out of the window goes the interoperability argument.


No, because you get full access to the OS APIs, so any application is exposed to the implementation specific behaviours of POSIX and OS specific syscalls and paths.

Where in Android, you just get Java and a tiny bit of C and C++.

Check the NDK documentation, Google provides a list of the set of APIs any NDK application is allowed to use.

Since many used to ignore that list, starting with Android 7, any app that uses unauthorised native libraries will get killed.


As update to my rant, I have to be faire to the Android team.

Apparently something related to C++ APIs on the NDK is planned to start appearing with NDR r17 onwards, as per Github issues.


Depends on how one pats their back and the actual reality.

Yes, Android runs on Linux, yet that is 100% meaningless for app developers targeting Android.

Web developers don't care about what OS the browser is running on.

Native Android developers have a Java Framework and Kotlin libraries to work with, which are completely unrelated to Linux.

However they also have the NDK, one would say. Yes, indeed.

So what are the public APIs?

https://developer.android.com/ndk/guides/stable_apis

And recent versions will kill apps that try to be clever and access private APIs,

https://android-developers.googleblog.com/2016/06/android-ch...

https://android-developers.googleblog.com/2017/07/seccomp-fi...

As for automotive, while Automotive Grade Linux is getting some love, it is still not an option for real time requirements.


Except most of that stuff is only visible via Java APIs, NDK userspace is hands-off to such tools

A fact that termux people refuse to accept, hence why it doesn't run on the latest versions, unless they now finally accepted that POSIX isn't part of the official NDK stable APIs and have started calling into JNI.

Plenty of Linux software won't be compilable just with these APIs, unless they are game based,

https://developer.android.com/ndk/guides/stable_apis

next

Legal | privacy