nginx: update from 1.10.3 to 1.12.0 (#929)
[termux-packages] / ndk_patches / pwd.patch
index c35e60c..5427452 100644 (file)
@@ -1,6 +1,6 @@
-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
+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 <sys/cdefs.h>
  #include <sys/types.h>
@@ -12,7 +12,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl
  #define _PATH_PASSWD        "/etc/passwd"
  #define _PATH_MASTERPASSWD  "/etc/master.passwd"
  #define _PATH_MASTERPASSWD_LOCK "/etc/ptmp"
-@@ -119,7 +123,37 @@
+@@ -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**);
  
@@ -23,12 +23,15 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl
 +       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 pw->pw_shell = "@TERMUX_PREFIX@/bin/sh";
 +       } else {
-+               pw->pw_shell = strcmp(realpath_buffer, "@TERMUX_PREFIX@/bin/busybox") == 0 ? (char*)"@TERMUX_PREFIX@/bin/ash" : realpath_buffer;
++               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) {
@@ -42,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
++#define getpwuid_r android_polyfill_getpwuid_r
 +static void endpwent(void) { /* Do nothing. */ }
  struct passwd* getpwent(void);
  int setpwent(void);