From 87862deec04e9ed12ced2d9a47879a63ff8e57e2 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Mon, 28 May 2007 10:40:24 +0000 Subject: [PATCH] Added FreeBSD 6.0 sysctl call --- unix/mbpasswd.c | 31 ++++++++++++++++++++++++++----- unix/mbuseradd.c | 31 ++++++++++++++++++++++++++----- 2 files changed, 52 insertions(+), 10 deletions(-) diff --git a/unix/mbpasswd.c b/unix/mbpasswd.c index 50984325..ccfb74db 100644 --- a/unix/mbpasswd.c +++ b/unix/mbpasswd.c @@ -5,7 +5,7 @@ * Shadow Suite (c) ......: Julianne Frances Haugh * ***************************************************************************** - * Copyright (C) 1997-2005 + * Copyright (C) 1997-2007 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -59,7 +59,11 @@ #include #endif -#if defined(__OpenBSD__) || defined(__NetBSD__) +#if (defined(__FreeBSD__) && __FreeBSD_version >= 600000) +#define FreeBSD_sysctl 1 +#endif + +#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(FreeBSD_sysctl) #include #endif @@ -855,8 +859,7 @@ int main(int argc, char *argv[]) size_t siz = 100; char **p; int mib[4]; -#elif defined(__NetBSD__) -#define ARG_SIZE 60 +#elif defined(__NetBSD__) || defined(FreeBSD_sysctl) static char **s; size_t siz = 100; int mib[4]; @@ -949,9 +952,27 @@ int main(int argc, char *argv[]) exit(1); } parent = xstrcpy((char *)s); +#elif defined(FreeBSD_sysctl) + /* + * For FreeBSD 6.0 and later. + */ + mib[0] = CTL_KERN; + mib[1] = KERN_PROC; + mib[2] = KERN_PROC_ARGS; + mib[3] = ppid; + if ((s = realloc(s, siz)) == NULL) { + fprintf(stderr, "mbpasswd: no memory\n"); + exit(1); + } + if (sysctl(mib, 4, s, &siz, NULL, 0) == -1) { + perror(""); + fprintf(stderr, "mbpasswd: sysctl call failed\n"); + exit(1); + } + parent = xstrcpy((char *)s); #else /* - * Systems with /proc filesystem like Linux, FreeBSD + * Systems with /proc filesystem like Linux, old FreeBSD */ snprintf(temp, PATH_MAX, "/proc/%d/cmdline", ppid); if ((fp = fopen(temp, "r")) == NULL) { diff --git a/unix/mbuseradd.c b/unix/mbuseradd.c index 2e6fb75b..cb186a1b 100644 --- a/unix/mbuseradd.c +++ b/unix/mbuseradd.c @@ -4,7 +4,7 @@ * Purpose ...............: setuid root version of useradd * ***************************************************************************** - * Copyright (C) 1997-2005 + * Copyright (C) 1997-2007 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -45,7 +45,11 @@ #include #include -#if defined(__OpenBSD__) || defined(__NetBSD__) +#if (defined(__FreeBSD__) && __FreeBSD_version >= 600000) +#define FreeBSD_sysctl 1 +#endif + +#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(FreeBSD_sysctl) #include #endif @@ -184,8 +188,7 @@ int main(int argc, char *argv[]) size_t siz = 100; char **p; int mib[4]; -#elif defined(__NetBSD__) -#define ARG_SIZE 60 +#elif defined(__NetBSD__) || defined(FreeBSD_sysctl) static char **s; size_t siz = 100; int mib[4]; @@ -282,9 +285,27 @@ int main(int argc, char *argv[]) exit(1); } parent = xstrcpy((char *)s); +#elif defined(FreeBSD_sysctl) + /* + * For FreeBSD 6.0 and later. + */ + mib[0] = CTL_KERN; + mib[1] = KERN_PROC; + mib[2] = KERN_PROC_ARGS; + mib[3] = ppid; + if ((s = realloc(s, siz)) == NULL) { + fprintf(stderr, "mbuseradd: no memory\n"); + exit(1); + } + if (sysctl(mib, 4, s, &siz, NULL, 0) == -1) { + perror(""); + fprintf(stderr, "mbuseradd: sysctl call failed\n"); + exit(1); + } + parent = xstrcpy((char *)s); #else /* - * Systems with /proc filesystem like Linux, FreeBSD + * Systems with /proc filesystem like Linux, old FreeBSD */ snprintf(temp, PATH_MAX, "/proc/%d/cmdline", ppid); if ((fp = fopen(temp, "r")) == NULL) {