X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/59f0d218a6ff34c80cf898f6d7ac62555ba8eb11..e59984067b5a2530ef1afeeaa24161a6242e0c73:/ndk_patches/pwd.patch diff --git a/ndk_patches/pwd.patch b/ndk_patches/pwd.patch index 3ca91f4b..1447c38e 100644 --- a/ndk_patches/pwd.patch +++ b/ndk_patches/pwd.patch @@ -1,29 +1,37 @@ -diff -u -r /home/fornwall/lib/android-ndk/platforms/android-19/arch-arm/usr/include/pwd.h ./usr/include/pwd.h ---- /home/fornwall/lib/android-ndk/platforms/android-19/arch-arm/usr/include/pwd.h 2012-08-21 07:23:12.000000000 +0200 -+++ ./usr/include/pwd.h 2014-07-06 04:39:02.731221101 +0200 -@@ -114,6 +114,43 @@ - struct passwd* getpwnam(const char*); - struct passwd* getpwuid(uid_t); - -+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); +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 2016-03-03 16:54:24.000000000 -0500 ++++ ./usr/include/pwd.h 2016-03-10 08:11:16.795710172 -0500 +@@ -65,6 +65,10 @@ + #include + #include + ++/* For access() and realpath(): */ ++#include ++#include + + #define _PATH_PASSWD "/etc/passwd" + #define _PATH_MASTERPASSWD "/etc/master.passwd" + #define _PATH_MASTERPASSWD_LOCK "/etc/ptmp" +@@ -119,7 +123,40 @@ + int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**); + int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**); + +-void endpwent(void); +static void android_setup_pwd(struct passwd* pw) { -+ static char realpath_buffer[255]; -+ size_t allocated_realpath_len; -+ char* allocated_realpath = realpath("@TERMUX_HOME@/.termux/shell", NULL); -+ if (allocated_realpath == NULL || (allocated_realpath_len = strlen(allocated_realpath)) >= sizeof(realpath_buffer)) { -+ pw->pw_shell = "@TERMUX_PREFIX@/bin/ash"; ++ 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 = (char*) bash_path; ++ else pw->pw_shell = "@TERMUX_PREFIX@/bin/ash"; + } else { -+ memcpy(realpath_buffer, allocated_realpath, allocated_realpath_len); -+ realpath_buffer[allocated_realpath_len] = 0; -+ pw->pw_shell = realpath_buffer; ++ pw->pw_shell = strcmp(realpath_buffer, "@TERMUX_PREFIX@/bin/busybox") == 0 ? (char*)"@TERMUX_PREFIX@/bin/ash" : realpath_buffer; + } -+ free(allocated_realpath); + 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) { @@ -42,6 +50,6 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-19/arch-arm/usr/incl + +#define getpwnam android_polyfill_getpwnam +#define getpwuid android_polyfill_getpwuid - void endpwent(void); - - #if 0 /* MISSING FROM BIONIC */ ++static void endpwent(void) { /* Do nothing. */ } + struct passwd* getpwent(void); + int setpwent(void);