X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/02b55df699f03db125b6ba9e4dbaf685bb8b6cc3..c4264438f75274e6b6c0eafbb8ff0234518c94e0:/ndk_patches/pwd.patch diff --git a/ndk_patches/pwd.patch b/ndk_patches/pwd.patch index 2cd2cb8f..54274522 100644 --- a/ndk_patches/pwd.patch +++ b/ndk_patches/pwd.patch @@ -1,37 +1,37 @@ -diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/include/pwd.h ./usr/include/pwd.h ---- /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/include/pwd.h 2014-10-14 22:53:49.000000000 -0400 -+++ ./usr/include/pwd.h 2015-07-15 09:42:32.974621965 -0400 -@@ -65,6 +65,9 @@ +diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm64/usr/include/pwd.h ./usr/include/pwd.h +--- /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm64/usr/include/pwd.h 2017-02-27 17:27:10.000000000 +0100 ++++ ./usr/include/pwd.h 2017-03-05 13:28:19.227658358 +0100 +@@ -65,6 +65,10 @@ #include #include -+/* For access(): */ ++/* For access() and realpath(): */ +#include ++#include + #define _PATH_PASSWD "/etc/passwd" #define _PATH_MASTERPASSWD "/etc/master.passwd" #define _PATH_MASTERPASSWD_LOCK "/etc/ptmp" -@@ -119,6 +122,41 @@ +@@ -119,7 +123,52 @@ int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**); int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**); -+extern char *realpath(const char *path, char *resolved_path); -+extern void free(void *ptr); -+extern void *memcpy(void *dest, const void *src, size_t n); -+extern size_t strlen(const char *s); -+ +-void endpwent(void); +static void android_setup_pwd(struct passwd* pw) { + static char realpath_buffer[4096/*PATH_MAX*/]; + char* result = realpath("@TERMUX_HOME@/.termux/shell", realpath_buffer); + if (result == NULL || access(realpath_buffer, X_OK) == -1) { + char const* bash_path = "@TERMUX_PREFIX@/bin/bash"; -+ if (access(bash_path, X_OK) != -1) pw->pw_shell = bash_path; -+ else pw->pw_shell = "@TERMUX_PREFIX@/bin/ash"; ++ if (access(bash_path, X_OK) != -1) pw->pw_shell = (char*) bash_path; ++ else pw->pw_shell = "@TERMUX_PREFIX@/bin/sh"; + } else { + pw->pw_shell = realpath_buffer; + } + pw->pw_dir = "@TERMUX_HOME@"; + pw->pw_passwd = "*"; ++#ifdef __LP64__ ++ pw->pw_gecos = ""; /* Avoid NULL field. */ ++#endif +} + +static struct passwd* android_polyfill_getpwuid(uid_t t) { @@ -45,11 +45,24 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl + struct passwd* pw = getpwnam(name); + if (pw == NULL) return NULL; + android_setup_pwd(pw); -+ return pw; ++ return pw; ++} ++ ++static int android_polyfill_getpwuid_r(uid_t uid, ++ struct passwd *pwd, ++ char *buffer, ++ size_t bufsize, ++ struct passwd **result) { ++ int ret = getpwuid_r(uid, pwd, buffer, bufsize, result); ++ if (ret != 0) return ret; ++ android_setup_pwd(pwd); ++ return 0; +} + +#define getpwnam android_polyfill_getpwnam +#define getpwuid android_polyfill_getpwuid - void endpwent(void); ++#define getpwuid_r android_polyfill_getpwuid_r ++static void endpwent(void) { /* Do nothing. */ } struct passwd* getpwent(void); int setpwent(void); +