1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00
fdroidserver/docs
Daniel Martí 055759cf76 Rewrite scanner logic
Initially, the scanner used libmagic which used magic numbers in the file's
content to detect what kind of file it appears to be. Since that library isn't
available on all systems, we added support for two other libraries, mimetypes
amongst them.

The issue with mimetypes is that it only uses the file's extension, not its
actual content. So this ends in variable behaviour depending on what system
you're using fdroidserver on. For example, an executable binary without
extension would be ignored if mimetypes was being used.

We now drop all libraries - mimetypes too as it depends on the system's
mime.types file - and instead check extensions ourselves. On top of that, do
a simple binary content check to find binary executables that don't have an
extension.

The new in-house code without any dependencies doesn't add any new checks, so
no builds should break. The current checks still work:

 % fdroid scanner app.openconnect:1029
[...]
Found executable binary at assets/raw/armeabi/curl
Found executable binary at assets/raw/mips/curl
Found executable binary at assets/raw/x86/curl
Found JAR file at lib/XposedBridgeApi-54.jar
Found JAR file at libs/acra-4.5.0.jar
Found JAR file at libs/openconnect-wrapper.jar
Found JAR file at libs/stoken-wrapper.jar
Found shared library at libs/armeabi/libopenconnect.so
Found shared library at libs/armeabi/libstoken.so
Found shared library at libs/mips/libopenconnect.so
Found shared library at libs/mips/libstoken.so
Found shared library at libs/x86/libopenconnect.so
Found shared library at libs/x86/libstoken.so
2015-09-13 22:17:37 -07:00
..
.gitignore Fix makebuildserver after rename, tidy gitignores 2013-12-30 17:18:45 +01:00
fdl.texi Move docs to docs directory, and generate HTML 2012-02-23 14:32:35 +00:00
fdroid.texi Rewrite scanner logic 2015-09-13 22:17:37 -07:00
gendocs_template Update gendocs from 2011-04 to 2013-02 2013-12-30 16:33:42 +01:00
gendocs.sh Follow-up to 5a0129d8: also replace file mentions 2015-08-29 20:19:32 -07:00
index_versions.md Bump index version to 11, add index version changelog 2014-01-07 17:59:02 +01:00
update.sh Docs for importing 2012-02-27 20:38:00 +00:00