2000-02-17 20:38:33 +01:00
|
|
|
/* mkpasswd.c:
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2016-06-27 17:51:41 +02:00
|
|
|
#define _WIN32_WINNT 0x0a00
|
2011-10-10 16:57:48 +02:00
|
|
|
#include <errno.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <wchar.h>
|
2008-07-23 13:41:10 +02:00
|
|
|
#include <wctype.h>
|
2009-05-15 13:30:18 +02:00
|
|
|
#include <locale.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdio.h>
|
2002-09-30 05:01:17 +02:00
|
|
|
#include <unistd.h>
|
2013-04-23 11:44:36 +02:00
|
|
|
#include <inttypes.h>
|
2000-11-08 16:00:02 +01:00
|
|
|
#include <getopt.h>
|
2008-07-22 16:40:05 +02:00
|
|
|
#include <io.h>
|
2014-02-24 11:51:42 +01:00
|
|
|
#include <pwd.h>
|
2001-06-15 06:50:57 +02:00
|
|
|
#include <sys/fcntl.h>
|
2008-07-22 16:40:05 +02:00
|
|
|
#include <sys/cygwin.h>
|
2011-10-10 16:57:48 +02:00
|
|
|
#include <cygwin/version.h>
|
2008-07-22 16:40:05 +02:00
|
|
|
#include <windows.h>
|
|
|
|
#include <lm.h>
|
2008-07-09 16:32:29 +02:00
|
|
|
#include <iptypes.h>
|
2008-07-22 16:40:05 +02:00
|
|
|
#include <wininet.h>
|
|
|
|
#include <ntsecapi.h>
|
|
|
|
#include <dsgetdc.h>
|
|
|
|
#include <ntdef.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-01-12 00:03:24 +01:00
|
|
|
#define print_win_error(x) _print_win_error(x, __LINE__)
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
SID_IDENTIFIER_AUTHORITY sid_world_auth = {SECURITY_WORLD_SID_AUTHORITY};
|
|
|
|
SID_IDENTIFIER_AUTHORITY sid_nt_auth = {SECURITY_NT_AUTHORITY};
|
|
|
|
|
|
|
|
#ifndef min
|
|
|
|
#define min(a,b) (((a)<(b))?(a):(b))
|
|
|
|
#endif
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
typedef struct
|
2008-07-22 16:40:05 +02:00
|
|
|
{
|
|
|
|
char *str;
|
2008-07-23 20:09:50 +02:00
|
|
|
BOOL domain;
|
2014-11-12 15:13:56 +01:00
|
|
|
BOOL with_dom;
|
2008-07-22 16:40:05 +02:00
|
|
|
} domlist_t;
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static void
|
2008-07-22 16:40:05 +02:00
|
|
|
_print_win_error(DWORD code, int line)
|
|
|
|
{
|
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
if (FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
|
|
|
|
| FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
code,
|
|
|
|
MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPTSTR) buf, sizeof (buf), NULL))
|
2013-04-23 11:44:36 +02:00
|
|
|
fprintf (stderr, "mkpasswd (%d): [%" PRIu32 "] %s",
|
|
|
|
line, (unsigned int) code, buf);
|
2008-07-22 16:40:05 +02:00
|
|
|
else
|
2013-04-23 11:44:36 +02:00
|
|
|
fprintf (stderr, "mkpasswd (%d): error %" PRIu32,
|
|
|
|
line, (unsigned int) code);
|
2008-07-22 16:40:05 +02:00
|
|
|
}
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static char *
|
2000-02-17 20:38:33 +01:00
|
|
|
put_sid (PSID sid)
|
|
|
|
{
|
|
|
|
static char s[512];
|
|
|
|
char t[32];
|
|
|
|
DWORD i;
|
|
|
|
|
|
|
|
strcpy (s, "S-1-");
|
|
|
|
sprintf(t, "%u", GetSidIdentifierAuthority (sid)->Value[5]);
|
|
|
|
strcat (s, t);
|
|
|
|
for (i = 0; i < *GetSidSubAuthorityCount (sid); ++i)
|
|
|
|
{
|
2013-04-23 11:44:36 +02:00
|
|
|
sprintf(t, "-%" PRIu32, (unsigned int) *GetSidSubAuthority (sid, i));
|
2000-02-17 20:38:33 +01:00
|
|
|
strcat (s, t);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static void
|
2001-04-11 11:38:55 +02:00
|
|
|
uni2ansi (LPWSTR wcs, char *mbs, int size)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
if (wcs)
|
2008-07-09 16:32:29 +02:00
|
|
|
wcstombs (mbs, wcs, size);
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
|
|
|
*mbs = '\0';
|
|
|
|
}
|
|
|
|
|
2008-08-15 15:08:47 +02:00
|
|
|
typedef struct {
|
|
|
|
PSID psid;
|
|
|
|
int buffer[10];
|
|
|
|
} sidbuf;
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static sidbuf curr_user;
|
|
|
|
static sidbuf curr_pgrp;
|
|
|
|
static BOOL got_curr_user = FALSE;
|
2008-08-15 15:08:47 +02:00
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static void
|
2008-08-15 15:08:47 +02:00
|
|
|
fetch_current_user_sid ()
|
2002-01-15 14:10:45 +01:00
|
|
|
{
|
2003-01-08 18:38:11 +01:00
|
|
|
DWORD len;
|
|
|
|
HANDLE ptok;
|
2008-08-15 15:08:47 +02:00
|
|
|
|
|
|
|
if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &ptok)
|
|
|
|
|| !GetTokenInformation (ptok, TokenUser, &curr_user, sizeof curr_user,
|
|
|
|
&len)
|
|
|
|
|| !GetTokenInformation (ptok, TokenPrimaryGroup, &curr_pgrp,
|
|
|
|
sizeof curr_pgrp, &len)
|
|
|
|
|| !CloseHandle (ptok))
|
|
|
|
{
|
|
|
|
print_win_error (GetLastError ());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static void
|
2014-02-24 11:51:42 +01:00
|
|
|
enum_unix_users (domlist_t *mach, const char *sep, DWORD id_offset,
|
2008-07-23 13:41:10 +02:00
|
|
|
char *unix_user_list)
|
|
|
|
{
|
|
|
|
WCHAR machine[INTERNET_MAX_HOST_NAME_LENGTH + 1];
|
|
|
|
SID_IDENTIFIER_AUTHORITY auth = { { 0, 0, 0, 0, 0, 22 } };
|
|
|
|
char *ustr, *user_list;
|
|
|
|
WCHAR user[UNLEN + sizeof ("Unix User\\") + 1];
|
|
|
|
WCHAR dom[MAX_DOMAIN_NAME_LEN + 1];
|
|
|
|
DWORD ulen, dlen, sidlen;
|
|
|
|
PSID psid;
|
2015-02-25 21:18:29 +01:00
|
|
|
PSID numeric_psid;
|
|
|
|
char psid_buffer[SECURITY_MAX_SID_SIZE];
|
2008-07-23 13:41:10 +02:00
|
|
|
SID_NAME_USE acc_type;
|
|
|
|
|
2014-02-24 11:51:42 +01:00
|
|
|
int ret = mbstowcs (machine, mach->str, INTERNET_MAX_HOST_NAME_LENGTH + 1);
|
2008-07-23 13:41:10 +02:00
|
|
|
if (ret < 1 || ret >= INTERNET_MAX_HOST_NAME_LENGTH + 1)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: Invalid machine name '%s'. Skipping...\n",
|
2014-02-24 11:51:42 +01:00
|
|
|
program_invocation_short_name, mach->str);
|
2008-07-23 13:41:10 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-25 21:18:29 +01:00
|
|
|
if (!AllocateAndInitializeSid (&auth, 2, 1, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
&numeric_psid))
|
2008-07-23 13:41:10 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(user_list = strdup (unix_user_list)))
|
|
|
|
{
|
2015-02-25 21:18:29 +01:00
|
|
|
FreeSid (numeric_psid);
|
2008-07-23 13:41:10 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ustr = strtok (user_list, ","); ustr; ustr = strtok (NULL, ","))
|
|
|
|
{
|
2009-05-06 13:54:24 +02:00
|
|
|
if (!isdigit ((unsigned char) ustr[0]) && ustr[0] != '-')
|
2008-08-17 18:45:44 +02:00
|
|
|
{
|
2008-07-23 13:41:10 +02:00
|
|
|
PWCHAR p = wcpcpy (user, L"Unix User\\");
|
|
|
|
ret = mbstowcs (p, ustr, UNLEN + 1);
|
|
|
|
if (ret < 1 || ret >= UNLEN + 1)
|
2015-02-25 21:18:29 +01:00
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: Invalid user name '%s'. Skipping...\n",
|
|
|
|
program_invocation_short_name, ustr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
psid = (PSID) psid_buffer;
|
|
|
|
sidlen = SECURITY_MAX_SID_SIZE;
|
|
|
|
dlen = MAX_DOMAIN_NAME_LEN + 1;
|
|
|
|
if (LookupAccountNameW (machine, user, psid, &sidlen,
|
|
|
|
dom, &dlen, &acc_type))
|
2014-11-27 20:55:37 +01:00
|
|
|
printf ("%s%s%ls:*:%" PRIu32 ":99999:,%s::\n",
|
2014-11-10 17:21:52 +01:00
|
|
|
"Unix_User",
|
|
|
|
sep,
|
2008-08-17 18:45:44 +02:00
|
|
|
user + 10,
|
2013-04-23 11:44:36 +02:00
|
|
|
(unsigned int) (id_offset +
|
2008-07-23 13:41:10 +02:00
|
|
|
*GetSidSubAuthority (psid,
|
2013-04-23 11:44:36 +02:00
|
|
|
*GetSidSubAuthorityCount(psid) - 1)),
|
2008-08-17 18:45:44 +02:00
|
|
|
put_sid (psid));
|
2008-07-23 13:41:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DWORD start, stop;
|
|
|
|
char *p = ustr;
|
|
|
|
if (*p == '-')
|
|
|
|
start = 0;
|
|
|
|
else
|
|
|
|
start = strtol (p, &p, 10);
|
|
|
|
if (!*p)
|
|
|
|
stop = start;
|
2009-05-06 13:54:24 +02:00
|
|
|
else if (*p++ != '-' || !isdigit ((unsigned char) *p)
|
2008-07-23 13:41:10 +02:00
|
|
|
|| (stop = strtol (p, &p, 10)) < start || *p)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: Malformed unix user list entry '%s'. "
|
2011-10-10 16:57:48 +02:00
|
|
|
"Skipping...\n",
|
|
|
|
program_invocation_short_name, ustr);
|
2008-07-23 13:41:10 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (; start <= stop; ++ start)
|
|
|
|
{
|
2015-02-25 21:18:29 +01:00
|
|
|
psid = numeric_psid;
|
2008-07-23 13:41:10 +02:00
|
|
|
*GetSidSubAuthority (psid, *GetSidSubAuthorityCount(psid) - 1)
|
|
|
|
= start;
|
2015-02-25 21:18:29 +01:00
|
|
|
ulen = GNLEN + 1;
|
|
|
|
dlen = MAX_DOMAIN_NAME_LEN + 1;
|
|
|
|
if (LookupAccountSidW (machine, psid, user, &ulen,
|
|
|
|
dom, &dlen, &acc_type)
|
2008-07-23 13:41:10 +02:00
|
|
|
&& !iswdigit (user[0]))
|
2014-11-27 20:55:37 +01:00
|
|
|
printf ("%s%s%ls:*:%" PRIu32 ":99999:,%s::\n",
|
2014-11-10 17:21:52 +01:00
|
|
|
"Unix_User",
|
|
|
|
sep,
|
2008-07-23 13:41:10 +02:00
|
|
|
user,
|
2013-04-23 11:44:36 +02:00
|
|
|
(unsigned int) (id_offset + start),
|
2008-07-23 13:41:10 +02:00
|
|
|
put_sid (psid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free (user_list);
|
2015-02-25 21:18:29 +01:00
|
|
|
FreeSid (numeric_psid);
|
2008-07-23 13:41:10 +02:00
|
|
|
}
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static int
|
2014-02-24 11:51:42 +01:00
|
|
|
enum_users (domlist_t *mach, const char *sep, const char *passed_home_path,
|
|
|
|
DWORD id_offset, char *disp_username, int print_current)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2008-07-22 16:40:05 +02:00
|
|
|
WCHAR machine[INTERNET_MAX_HOST_NAME_LENGTH + 1];
|
2000-02-17 20:38:33 +01:00
|
|
|
USER_INFO_3 *buffer;
|
|
|
|
DWORD entriesread = 0;
|
|
|
|
DWORD totalentries = 0;
|
|
|
|
DWORD resume_handle = 0;
|
2000-04-16 00:30:49 +02:00
|
|
|
DWORD rc;
|
2008-07-09 16:32:29 +02:00
|
|
|
WCHAR uni_name[UNLEN + 1];
|
2014-02-24 11:51:42 +01:00
|
|
|
|
|
|
|
int ret = mbstowcs (machine, mach->str, INTERNET_MAX_HOST_NAME_LENGTH + 1);
|
|
|
|
if (ret < 1 || ret >= INTERNET_MAX_HOST_NAME_LENGTH + 1)
|
2008-07-22 16:40:05 +02:00
|
|
|
{
|
2014-02-24 11:51:42 +01:00
|
|
|
fprintf (stderr, "%s: Invalid machine name '%s'. Skipping...\n",
|
|
|
|
program_invocation_short_name, mach->str);
|
|
|
|
return 1;
|
2008-07-22 16:40:05 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
DWORD i;
|
|
|
|
|
2008-07-09 16:32:29 +02:00
|
|
|
if (disp_username != NULL)
|
|
|
|
{
|
|
|
|
mbstowcs (uni_name, disp_username, UNLEN + 1);
|
2014-02-24 11:51:42 +01:00
|
|
|
rc = NetUserGetInfo (machine, (LPWSTR) &uni_name, 3,
|
2008-07-09 16:32:29 +02:00
|
|
|
(void *) &buffer);
|
|
|
|
entriesread = 1;
|
2009-08-11 10:59:50 +02:00
|
|
|
/* Avoid annoying error messages just because the user hasn't been
|
|
|
|
found. */
|
|
|
|
if (rc == NERR_UserNotFound)
|
|
|
|
return 0;
|
2008-07-09 16:32:29 +02:00
|
|
|
}
|
2008-08-17 18:45:44 +02:00
|
|
|
else
|
2014-02-24 11:51:42 +01:00
|
|
|
rc = NetUserEnum (machine, 3, FILTER_NORMAL_ACCOUNT,
|
2008-07-09 16:32:29 +02:00
|
|
|
(void *) &buffer, MAX_PREFERRED_LENGTH,
|
|
|
|
&entriesread, &totalentries, &resume_handle);
|
2000-02-17 20:38:33 +01:00
|
|
|
switch (rc)
|
|
|
|
{
|
|
|
|
case ERROR_ACCESS_DENIED:
|
2002-01-15 14:10:45 +01:00
|
|
|
print_win_error(rc);
|
2008-07-22 16:40:05 +02:00
|
|
|
return 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
case ERROR_MORE_DATA:
|
|
|
|
case ERROR_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-01-15 14:10:45 +01:00
|
|
|
print_win_error(rc);
|
2008-07-22 16:40:05 +02:00
|
|
|
return 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < entriesread; i++)
|
|
|
|
{
|
2008-07-09 16:32:29 +02:00
|
|
|
char homedir_psx[PATH_MAX];
|
|
|
|
WCHAR domain_name[MAX_DOMAIN_NAME_LEN + 1];
|
|
|
|
DWORD domname_len = MAX_DOMAIN_NAME_LEN + 1;
|
2015-02-25 21:18:29 +01:00
|
|
|
char psid_buffer[SECURITY_MAX_SID_SIZE];
|
2000-02-17 20:38:33 +01:00
|
|
|
PSID psid = (PSID) psid_buffer;
|
2015-02-25 21:18:29 +01:00
|
|
|
DWORD sid_length = SECURITY_MAX_SID_SIZE;
|
2000-02-17 20:38:33 +01:00
|
|
|
SID_NAME_USE acc_type;
|
|
|
|
|
|
|
|
int uid = buffer[i].usri3_user_id;
|
|
|
|
int gid = buffer[i].usri3_primary_group_id;
|
2011-12-01 14:06:13 +01:00
|
|
|
homedir_psx[0] = '\0';
|
2001-12-14 21:01:53 +01:00
|
|
|
if (passed_home_path[0] == '\0')
|
|
|
|
{
|
2011-12-01 14:06:13 +01:00
|
|
|
if (buffer[i].usri3_home_dir[0] != L'\0')
|
|
|
|
cygwin_conv_path (CCP_WIN_W_TO_POSIX | CCP_ABSOLUTE,
|
|
|
|
buffer[i].usri3_home_dir, homedir_psx,
|
|
|
|
PATH_MAX);
|
2001-12-14 21:01:53 +01:00
|
|
|
else
|
2008-07-09 16:32:29 +02:00
|
|
|
uni2ansi (buffer[i].usri3_name,
|
|
|
|
stpcpy (homedir_psx, "/home/"), PATH_MAX - 6);
|
2001-12-14 21:01:53 +01:00
|
|
|
}
|
2000-12-07 04:20:21 +01:00
|
|
|
else
|
2008-07-09 16:32:29 +02:00
|
|
|
uni2ansi (buffer[i].usri3_name,
|
|
|
|
stpcpy (homedir_psx, passed_home_path),
|
|
|
|
PATH_MAX - strlen (passed_home_path));
|
2000-12-07 11:31:01 +01:00
|
|
|
|
2014-02-24 11:51:42 +01:00
|
|
|
if (!LookupAccountNameW (machine, buffer[i].usri3_name,
|
2008-07-22 16:40:05 +02:00
|
|
|
psid, &sid_length, domain_name,
|
|
|
|
&domname_len, &acc_type))
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-01-15 14:10:45 +01:00
|
|
|
print_win_error(GetLastError ());
|
2008-07-22 16:40:05 +02:00
|
|
|
fprintf(stderr, " (%ls)\n", buffer[i].usri3_name);
|
2000-02-17 20:38:33 +01:00
|
|
|
continue;
|
|
|
|
}
|
2000-12-07 04:20:21 +01:00
|
|
|
else if (acc_type == SidTypeDomain)
|
|
|
|
{
|
2008-07-22 16:40:05 +02:00
|
|
|
WCHAR domname[MAX_DOMAIN_NAME_LEN + UNLEN + 2];
|
2016-10-23 17:02:24 +02:00
|
|
|
PWCHAR p;
|
2008-07-09 16:32:29 +02:00
|
|
|
|
2016-10-23 17:02:24 +02:00
|
|
|
p = wcpcpy (domname, machine);
|
|
|
|
p = wcpcpy (p, L"\\");
|
|
|
|
p = wcpncpy (p, buffer[i].usri3_name, UNLEN);
|
|
|
|
*p = L'\0';
|
2015-02-25 21:18:29 +01:00
|
|
|
sid_length = SECURITY_MAX_SID_SIZE;
|
2008-07-22 16:40:05 +02:00
|
|
|
domname_len = sizeof (domname);
|
2014-02-24 11:51:42 +01:00
|
|
|
if (!LookupAccountNameW (machine, domname, psid,
|
2008-07-22 16:40:05 +02:00
|
|
|
&sid_length, domain_name,
|
|
|
|
&domname_len, &acc_type))
|
2000-12-07 04:20:21 +01:00
|
|
|
{
|
2002-01-15 14:10:45 +01:00
|
|
|
print_win_error(GetLastError ());
|
2008-07-09 16:32:29 +02:00
|
|
|
fprintf(stderr, " (%ls)\n", domname);
|
2000-12-07 04:20:21 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2008-08-17 18:45:44 +02:00
|
|
|
if (!print_current)
|
|
|
|
/* fall through */;
|
|
|
|
else if (EqualSid (curr_user.psid, psid))
|
2008-08-15 15:08:47 +02:00
|
|
|
got_curr_user = TRUE;
|
2008-08-17 18:45:44 +02:00
|
|
|
|
2014-11-27 20:55:37 +01:00
|
|
|
printf ("%ls%s%ls:*:%" PRIu32 ":%" PRIu32
|
2013-04-23 11:44:36 +02:00
|
|
|
":%ls%sU-%ls\\%ls,%s:%s:/bin/bash\n",
|
2014-11-12 15:13:56 +01:00
|
|
|
mach->with_dom ? domain_name : L"",
|
|
|
|
mach->with_dom ? sep : "",
|
2008-08-17 18:45:44 +02:00
|
|
|
buffer[i].usri3_name,
|
2013-04-23 11:44:36 +02:00
|
|
|
(unsigned int) (id_offset + uid),
|
|
|
|
(unsigned int) (id_offset + gid),
|
2008-07-22 16:40:05 +02:00
|
|
|
buffer[i].usri3_full_name ?: L"",
|
2008-08-17 18:45:44 +02:00
|
|
|
buffer[i].usri3_full_name
|
2008-07-22 16:40:05 +02:00
|
|
|
&& buffer[i].usri3_full_name[0] ? "," : "",
|
|
|
|
domain_name,
|
|
|
|
buffer[i].usri3_name,
|
|
|
|
put_sid (psid),
|
|
|
|
homedir_psx);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2008-07-09 16:32:29 +02:00
|
|
|
NetApiBufferFree (buffer);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
}
|
2000-04-16 00:30:49 +02:00
|
|
|
while (rc == ERROR_MORE_DATA);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-07 13:29:43 +02:00
|
|
|
static int __attribute__ ((__noreturn__))
|
2008-07-22 16:40:05 +02:00
|
|
|
usage (FILE * stream)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2008-07-22 16:40:05 +02:00
|
|
|
fprintf (stream,
|
2011-10-10 16:57:48 +02:00
|
|
|
"Usage: %s [OPTIONS]...\n"
|
|
|
|
"\n"
|
2014-02-24 11:51:42 +01:00
|
|
|
"Write /etc/passwd-like output to stdout\n"
|
2008-07-22 16:40:05 +02:00
|
|
|
"\n"
|
2014-07-29 15:29:54 +02:00
|
|
|
"Don't use this command to generate a local /etc/passwd file, unless you\n"
|
|
|
|
"really need one. See the Cygwin User's Guide for more information.\n"
|
|
|
|
"\n"
|
2008-07-22 16:40:05 +02:00
|
|
|
"Options:\n"
|
2011-10-10 16:57:48 +02:00
|
|
|
"\n"
|
2014-11-12 15:22:05 +01:00
|
|
|
" -l,--local [machine] Print local user accounts of \"machine\",\n"
|
2014-11-12 15:13:56 +01:00
|
|
|
" from local machine if no machine specified.\n"
|
2014-11-12 15:22:05 +01:00
|
|
|
" Automatically adding machine prefix for local\n"
|
|
|
|
" machine depends on settings in /etc/nsswitch.conf.\n"
|
|
|
|
" -L,--Local machine Ditto, but generate username with machine prefix.\n"
|
|
|
|
" -d,--domain [domain] Print domain accounts,\n"
|
|
|
|
" from current domain if no domain specified.\n"
|
|
|
|
" -c,--current Print current user.\n"
|
|
|
|
" -S,--separator char For -L use character char as domain\\user\n"
|
|
|
|
" separator in username instead of the default '%s'.\n"
|
|
|
|
" -o,--id-offset offset Change the default offset (0x10000) added to uids\n"
|
|
|
|
" of foreign local machine accounts. Use with -l/-L.\n"
|
|
|
|
" -u,--username username Only return information for the specified user.\n"
|
|
|
|
" One of -l, -d must be specified, too\n"
|
|
|
|
" -b,--no-builtin Don't print BUILTIN users.\n"
|
|
|
|
" -p,--path-to-home path Use specified path instead of user account home dir\n"
|
|
|
|
" or /home prefix.\n"
|
|
|
|
" -U,--unix userlist Print UNIX users when using -l on a UNIX Samba\n"
|
|
|
|
" server. Userlist is a comma-separated list of\n"
|
2014-02-24 11:51:42 +01:00
|
|
|
" usernames or uid ranges (root,-25,50-100).\n"
|
2014-11-12 15:22:05 +01:00
|
|
|
" Enumerating large ranges can take a long time!\n"
|
|
|
|
" -h,--help Displays this message.\n"
|
|
|
|
" -V,--version Version information and exit.\n"
|
2008-07-22 16:40:05 +02:00
|
|
|
"\n"
|
|
|
|
"Default is to print local accounts on stand-alone machines, domain accounts\n"
|
2014-07-29 15:29:54 +02:00
|
|
|
"on domain controllers and domain member machines.\n"
|
2014-02-24 11:51:42 +01:00
|
|
|
"\n", program_invocation_short_name,
|
|
|
|
(const char *) cygwin_internal (CW_GETNSSSEP));
|
2020-08-07 13:29:43 +02:00
|
|
|
exit (stream == stdout ? 0 : 1);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2008-08-17 18:45:44 +02:00
|
|
|
static struct option longopts[] = {
|
2014-02-24 11:51:42 +01:00
|
|
|
{"no-builtin", no_argument, NULL, 'b'},
|
2003-01-08 18:38:11 +01:00
|
|
|
{"current", no_argument, NULL, 'c'},
|
2008-07-22 16:40:05 +02:00
|
|
|
{"Current", no_argument, NULL, 'C'},
|
|
|
|
{"domain", optional_argument, NULL, 'd'},
|
|
|
|
{"Domain", optional_argument, NULL, 'D'},
|
2000-12-07 11:31:01 +01:00
|
|
|
{"local-groups", no_argument, NULL, 'g'},
|
2008-07-22 16:40:05 +02:00
|
|
|
{"help", no_argument, NULL, 'h'},
|
|
|
|
{"local", optional_argument, NULL, 'l'},
|
|
|
|
{"Local", optional_argument, NULL, 'L'},
|
2000-11-08 16:00:02 +01:00
|
|
|
{"no-mount", no_argument, NULL, 'm'},
|
2008-07-22 16:40:05 +02:00
|
|
|
{"id-offset", required_argument, NULL, 'o'},
|
2001-11-21 11:39:43 +01:00
|
|
|
{"path-to-home", required_argument, NULL, 'p'},
|
2008-07-22 16:40:05 +02:00
|
|
|
{"no-sids", no_argument, NULL, 's'},
|
|
|
|
{"separator", required_argument, NULL, 'S'},
|
2001-11-21 11:39:43 +01:00
|
|
|
{"username", required_argument, NULL, 'u'},
|
2008-07-23 13:41:10 +02:00
|
|
|
{"unix", required_argument, NULL, 'U'},
|
2011-10-10 16:57:48 +02:00
|
|
|
{"version", no_argument, NULL, 'V'},
|
2000-11-08 16:00:02 +01:00
|
|
|
{0, no_argument, NULL, 0}
|
|
|
|
};
|
|
|
|
|
2014-02-24 11:51:42 +01:00
|
|
|
static char opts[] = "bcCd::D::ghl::L::mo:sS:p:u:U:V";
|
2002-04-29 12:21:54 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
print_version ()
|
|
|
|
{
|
2011-10-10 16:57:48 +02:00
|
|
|
printf ("mkpasswd (cygwin) %d.%d.%d\n"
|
2011-12-18 00:39:47 +01:00
|
|
|
"Passwd File Generator\n"
|
2016-05-24 11:16:39 +02:00
|
|
|
"Copyright (C) 1997 - %s Cygwin Authors\n"
|
2011-12-18 00:39:47 +01:00
|
|
|
"This is free software; see the source for copying conditions. There is NO\n"
|
2011-10-10 16:57:48 +02:00
|
|
|
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
|
2011-12-18 00:39:47 +01:00
|
|
|
CYGWIN_VERSION_DLL_MAJOR / 1000,
|
|
|
|
CYGWIN_VERSION_DLL_MAJOR % 1000,
|
|
|
|
CYGWIN_VERSION_DLL_MINOR,
|
|
|
|
strrchr (__DATE__, ' ') + 1);
|
2002-04-29 12:21:54 +02:00
|
|
|
}
|
2000-11-08 16:00:02 +01:00
|
|
|
|
2000-10-28 07:00:00 +02:00
|
|
|
int
|
2000-02-17 20:38:33 +01:00
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2008-07-23 20:09:50 +02:00
|
|
|
int print_domlist = 0;
|
|
|
|
domlist_t domlist[32];
|
2014-11-12 15:13:56 +01:00
|
|
|
char cname[1024];
|
2008-07-23 20:09:50 +02:00
|
|
|
char *opt, *p, *ep;
|
2008-07-22 16:40:05 +02:00
|
|
|
int print_current = 0;
|
2014-02-24 11:51:42 +01:00
|
|
|
int print_builtin = 1;
|
2008-07-23 13:41:10 +02:00
|
|
|
char *print_unix = NULL;
|
2014-02-24 11:51:42 +01:00
|
|
|
const char *nss_sep = (const char *) cygwin_internal (CW_GETNSSSEP);
|
|
|
|
const char *sep_char = nss_sep;
|
|
|
|
DWORD id_offset = 0x10000, off;
|
2008-07-23 20:09:50 +02:00
|
|
|
int c, i;
|
2001-11-21 11:39:43 +01:00
|
|
|
char *disp_username = NULL;
|
2008-07-22 16:40:05 +02:00
|
|
|
char passed_home_path[PATH_MAX];
|
2008-08-18 10:33:48 +02:00
|
|
|
int optional_args = 0;
|
2014-11-27 20:55:37 +01:00
|
|
|
uintptr_t nss_src = cygwin_internal (CW_GETNSS_PWD_SRC);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-12-07 11:31:01 +01:00
|
|
|
passed_home_path[0] = '\0';
|
2002-05-30 21:35:51 +02:00
|
|
|
if (!isatty (1))
|
|
|
|
setmode (1, O_BINARY);
|
2000-12-07 11:31:01 +01:00
|
|
|
|
2009-05-15 13:30:18 +02:00
|
|
|
/* Use locale from environment. If not set or set to "C", use UTF-8. */
|
|
|
|
setlocale (LC_CTYPE, "");
|
|
|
|
if (!strcmp (setlocale (LC_CTYPE, NULL), "C"))
|
|
|
|
setlocale (LC_CTYPE, "en_US.UTF-8");
|
2008-08-17 18:45:44 +02:00
|
|
|
fetch_current_user_sid ();
|
|
|
|
|
2008-07-22 16:40:05 +02:00
|
|
|
if (argc == 1)
|
2001-10-20 15:56:09 +02:00
|
|
|
{
|
2014-02-24 11:51:42 +01:00
|
|
|
int enums = ENUM_PRIMARY | ENUM_LOCAL | ENUM_BUILTIN;
|
|
|
|
uintptr_t ticket = cygwin_internal (CW_SETENT, FALSE, enums, NULL);
|
|
|
|
if (ticket)
|
|
|
|
{
|
|
|
|
struct passwd *pwd;
|
|
|
|
|
|
|
|
while ((pwd = (struct passwd *) cygwin_internal (CW_GETENT, FALSE,
|
|
|
|
ticket)))
|
|
|
|
printf ("%s:%s:%u:%u:%s:%s:%s\n", pwd->pw_name, pwd->pw_passwd,
|
|
|
|
pwd->pw_uid, pwd->pw_gid, pwd->pw_gecos, pwd->pw_dir,
|
|
|
|
pwd->pw_shell);
|
|
|
|
cygwin_internal (CW_ENDENT, FALSE, ticket);
|
|
|
|
}
|
2008-07-22 16:40:05 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-18 10:33:48 +02:00
|
|
|
unsetenv ("POSIXLY_CORRECT"); /* To get optional arg processing right. */
|
2008-07-22 16:40:05 +02:00
|
|
|
while ((c = getopt_long (argc, argv, opts, longopts, NULL)) != EOF)
|
|
|
|
switch (c)
|
|
|
|
{
|
2008-07-23 20:09:50 +02:00
|
|
|
case 'd':
|
|
|
|
case 'D':
|
2008-07-22 16:40:05 +02:00
|
|
|
case 'l':
|
|
|
|
case 'L':
|
2008-07-23 20:09:50 +02:00
|
|
|
if (print_domlist >= 32)
|
2003-01-08 18:38:11 +01:00
|
|
|
{
|
2008-07-23 20:09:50 +02:00
|
|
|
fprintf (stderr, "%s: Can not enumerate from more than 32 "
|
2011-10-10 16:57:48 +02:00
|
|
|
"domains and machines.\n",
|
|
|
|
program_invocation_short_name);
|
2003-01-08 18:38:11 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2008-07-23 22:12:12 +02:00
|
|
|
domlist[print_domlist].domain = (c == 'd' || c == 'D');
|
2008-07-22 16:40:05 +02:00
|
|
|
opt = optarg ?:
|
|
|
|
argv[optind] && argv[optind][0] != '-' ? argv[optind] : NULL;
|
2008-08-18 10:52:49 +02:00
|
|
|
if (argv[optind] && opt == argv[optind])
|
2008-08-18 10:33:48 +02:00
|
|
|
++optional_args;
|
2008-07-23 20:09:50 +02:00
|
|
|
for (i = 0; i < print_domlist; ++i)
|
2008-07-23 22:12:12 +02:00
|
|
|
if (domlist[i].domain == domlist[print_domlist].domain
|
|
|
|
&& ((!domlist[i].str && !opt)
|
|
|
|
|| (domlist[i].str && opt
|
|
|
|
&& (off = strlen (domlist[i].str))
|
|
|
|
&& !strncmp (domlist[i].str, opt, off)
|
|
|
|
&& (!opt[off] || opt[off] == ','))))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: Duplicate %s '%s'. Skipping...\n",
|
2011-10-10 16:57:48 +02:00
|
|
|
program_invocation_short_name,
|
|
|
|
domlist[i].domain ? "domain" : "machine",
|
2008-07-23 22:12:12 +02:00
|
|
|
domlist[i].str);
|
2014-11-10 17:21:52 +01:00
|
|
|
break;
|
2008-07-23 22:12:12 +02:00
|
|
|
}
|
2008-07-23 20:09:50 +02:00
|
|
|
domlist[print_domlist].str = opt;
|
|
|
|
if (opt && (p = strchr (opt, ',')))
|
2008-07-22 16:40:05 +02:00
|
|
|
{
|
2014-02-24 11:51:42 +01:00
|
|
|
if (p == opt)
|
2008-07-23 20:09:50 +02:00
|
|
|
{
|
2014-11-10 17:21:52 +01:00
|
|
|
fprintf (stderr, "%s: Malformed domain string '%s'. "
|
2011-10-10 16:57:48 +02:00
|
|
|
"Skipping...\n", program_invocation_short_name, opt);
|
2008-08-17 18:45:44 +02:00
|
|
|
break;
|
2008-07-23 20:09:50 +02:00
|
|
|
}
|
|
|
|
*p = '\0';
|
2008-07-22 16:40:05 +02:00
|
|
|
}
|
2014-11-12 15:13:56 +01:00
|
|
|
if (c == 'l' || c == 'L')
|
2014-11-10 17:21:52 +01:00
|
|
|
{
|
|
|
|
DWORD csize = sizeof cname;
|
|
|
|
|
2014-11-12 15:13:56 +01:00
|
|
|
domlist[print_domlist].with_dom = (c == 'L');
|
|
|
|
if (!opt)
|
|
|
|
{
|
|
|
|
/* If the system uses /etc/passwd exclusively as account DB,
|
|
|
|
create local group names the old fashioned way. */
|
2014-11-27 20:55:37 +01:00
|
|
|
if (nss_src == NSS_SRC_FILES)
|
2014-11-12 15:13:56 +01:00
|
|
|
{
|
|
|
|
GetComputerNameExA (ComputerNameNetBIOS, cname, &csize);
|
|
|
|
domlist[print_domlist].str = cname;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 20:55:37 +01:00
|
|
|
else if (nss_src != NSS_SRC_FILES)
|
2014-11-12 15:13:56 +01:00
|
|
|
{
|
|
|
|
/* If the system uses Windows account DBs, check if machine
|
|
|
|
name is local machine. If so, remove the domain name to
|
|
|
|
enforce system naming convention. */
|
|
|
|
if (GetComputerNameExA (strchr (opt, '.')
|
|
|
|
? ComputerNameDnsFullyQualified
|
|
|
|
: ComputerNameNetBIOS,
|
|
|
|
cname, &csize)
|
|
|
|
&& strcasecmp (opt, cname) == 0)
|
|
|
|
domlist[print_domlist].str = NULL;
|
|
|
|
}
|
2014-11-10 17:21:52 +01:00
|
|
|
}
|
|
|
|
++print_domlist;
|
2008-07-22 16:40:05 +02:00
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
sep_char = optarg;
|
|
|
|
if (strlen (sep_char) > 1)
|
|
|
|
{
|
2014-02-24 11:51:42 +01:00
|
|
|
fprintf (stderr, "%s: Only one ASCII character allowed as "
|
|
|
|
"domain\\user separator character.\n",
|
2011-10-10 16:57:48 +02:00
|
|
|
program_invocation_short_name);
|
2008-07-22 16:40:05 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (*sep_char == ':')
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: Colon not allowed as domain\\user separator "
|
2011-10-10 16:57:48 +02:00
|
|
|
"character.\n", program_invocation_short_name);
|
2008-07-22 16:40:05 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2008-08-17 18:45:44 +02:00
|
|
|
break;
|
2008-07-23 13:41:10 +02:00
|
|
|
case 'U':
|
2008-08-17 18:45:44 +02:00
|
|
|
print_unix = optarg;
|
2008-07-23 13:41:10 +02:00
|
|
|
break;
|
2008-07-22 16:40:05 +02:00
|
|
|
case 'c':
|
|
|
|
case 'C':
|
|
|
|
print_current = 1;
|
|
|
|
break;
|
|
|
|
case 'o':
|
2008-07-23 20:09:50 +02:00
|
|
|
id_offset = strtoul (optarg, &ep, 10);
|
2014-02-24 11:51:42 +01:00
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
print_builtin = 0;
|
2008-07-22 16:40:05 +02:00
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
if (optarg[0] != '/')
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: '%s' is not a fully qualified path.\n",
|
2011-10-10 16:57:48 +02:00
|
|
|
program_invocation_short_name, optarg);
|
2003-01-08 18:38:11 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2008-07-22 16:40:05 +02:00
|
|
|
strcpy (passed_home_path, optarg);
|
|
|
|
if (optarg[strlen (optarg)-1] != '/')
|
|
|
|
strcat (passed_home_path, "/");
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
disp_username = optarg;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage (stdout);
|
2011-10-10 16:57:48 +02:00
|
|
|
case 'V':
|
2008-07-22 16:40:05 +02:00
|
|
|
print_version ();
|
|
|
|
return 0;
|
2011-12-01 14:06:13 +01:00
|
|
|
case 'g': /* deprecated */
|
|
|
|
case 's': /* deprecated */
|
|
|
|
case 'm': /* deprecated */
|
|
|
|
break;
|
2008-07-22 16:40:05 +02:00
|
|
|
default:
|
2011-10-10 16:57:48 +02:00
|
|
|
fprintf (stderr, "Try `%s --help' for more information.\n",
|
|
|
|
program_invocation_short_name);
|
2008-07-22 16:40:05 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2008-08-18 10:33:48 +02:00
|
|
|
optind += optional_args;
|
2008-08-17 18:45:44 +02:00
|
|
|
if (argv[optind])
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"mkpasswd: non-option command line argument `%s' is not allowed.\n"
|
|
|
|
"Try `mkpasswd --help' for more information.\n", argv[optind]);
|
|
|
|
exit (1);
|
|
|
|
}
|
2008-08-15 15:08:47 +02:00
|
|
|
|
2014-02-24 11:51:42 +01:00
|
|
|
struct passwd *ppwd = NULL;
|
|
|
|
const char *ppwd_sid = NULL;
|
|
|
|
if (print_current)
|
|
|
|
{
|
|
|
|
ppwd = (struct passwd *) cygwin_internal (CW_GETPWSID, TRUE,
|
|
|
|
curr_user.psid);
|
|
|
|
if (ppwd)
|
|
|
|
ppwd_sid = strrchr (ppwd->pw_gecos, ',');
|
|
|
|
}
|
|
|
|
|
|
|
|
int enums = ENUM_NONE;
|
|
|
|
WCHAR tdoms[print_domlist * 258];
|
|
|
|
PWCHAR t = tdoms;
|
|
|
|
if (!disp_username && print_builtin && print_domlist)
|
|
|
|
enums |= ENUM_BUILTIN;
|
2008-07-23 20:09:50 +02:00
|
|
|
for (i = 0; i < print_domlist; ++i)
|
2001-11-21 11:39:43 +01:00
|
|
|
{
|
2014-02-24 11:51:42 +01:00
|
|
|
if (domlist[i].domain)
|
|
|
|
{
|
|
|
|
if (domlist[i].str)
|
|
|
|
{
|
|
|
|
enums |= ENUM_TDOMS;
|
|
|
|
t += mbstowcs (t, domlist[i].str, 257);
|
|
|
|
*t++ = L'\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
enums |= ENUM_PRIMARY;
|
|
|
|
}
|
|
|
|
else if (!domlist[i].str)
|
|
|
|
enums |= ENUM_LOCAL;
|
|
|
|
}
|
|
|
|
if (t > tdoms)
|
|
|
|
*t++ = L'\0';
|
|
|
|
if (enums)
|
|
|
|
{
|
|
|
|
uintptr_t ticket = cygwin_internal (CW_SETENT, FALSE, enums,
|
|
|
|
t > tdoms ? tdoms : NULL);
|
|
|
|
if (ticket)
|
|
|
|
{
|
|
|
|
struct passwd *pwd;
|
|
|
|
|
|
|
|
while ((pwd = (struct passwd *)
|
|
|
|
cygwin_internal (CW_GETENT, FALSE, ticket)))
|
|
|
|
{
|
|
|
|
p = NULL;
|
|
|
|
if (disp_username
|
|
|
|
&& strcasecmp (disp_username, pwd->pw_name) != 0
|
|
|
|
&& (!(p = strchr (pwd->pw_name, nss_sep[0]))
|
|
|
|
|| strcasecmp (disp_username, p + 1) != 0))
|
|
|
|
continue;
|
|
|
|
printf ("%s:%s:%u:%u:%s:%s%s:%s\n", pwd->pw_name, pwd->pw_passwd,
|
|
|
|
pwd->pw_uid, pwd->pw_gid, pwd->pw_gecos,
|
|
|
|
passed_home_path[0] ? passed_home_path : "",
|
|
|
|
passed_home_path[0] ? (p ? p + 1 : pwd->pw_name)
|
|
|
|
: pwd->pw_dir,
|
|
|
|
pwd->pw_shell);
|
|
|
|
const char *pwd_sid = strrchr (pwd->pw_gecos, ',');
|
|
|
|
if (ppwd && ppwd_sid && pwd_sid && !strcmp (pwd_sid, ppwd_sid))
|
|
|
|
got_curr_user = TRUE;
|
|
|
|
}
|
|
|
|
cygwin_internal (CW_ENDENT, FALSE, ticket);
|
|
|
|
}
|
2001-11-21 11:39:43 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2008-08-15 15:08:47 +02:00
|
|
|
if (print_current && !got_curr_user)
|
2014-02-24 11:51:42 +01:00
|
|
|
{
|
|
|
|
p = strchr (ppwd->pw_name, nss_sep[0]);
|
|
|
|
printf ("%s:%s:%u:%u:%s:%s%s:%s\n", ppwd->pw_name, ppwd->pw_passwd,
|
|
|
|
ppwd->pw_uid, ppwd->pw_gid, ppwd->pw_gecos,
|
|
|
|
passed_home_path[0] ? passed_home_path : "",
|
|
|
|
passed_home_path[0] ? (p ? p + 1 : ppwd->pw_name) : ppwd->pw_dir,
|
|
|
|
ppwd->pw_shell);
|
|
|
|
}
|
|
|
|
|
|
|
|
off = 0xfd000000;
|
|
|
|
for (i = 0; i < print_domlist; ++i)
|
|
|
|
{
|
|
|
|
if (domlist[i].domain || !domlist[i].str)
|
|
|
|
continue;
|
2014-11-27 20:55:37 +01:00
|
|
|
enum_users (domlist + i, sep_char, passed_home_path,
|
|
|
|
(nss_src == NSS_SRC_FILES) ? 0x30000 : off,
|
|
|
|
disp_username, print_current);
|
2014-02-24 11:51:42 +01:00
|
|
|
if (!domlist[i].domain && domlist[i].str && print_unix)
|
|
|
|
enum_unix_users (domlist + i, sep_char, 0xff000000, print_unix);
|
|
|
|
off += id_offset;
|
|
|
|
}
|
2003-01-08 18:38:11 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|