2002-09-23 22:36:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2002 Andriy Palamarchuk
|
|
|
|
*
|
|
|
|
* netapi32 access functions
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-23 22:36:50 +02:00
|
|
|
*/
|
|
|
|
|
2011-03-01 13:08:27 +01:00
|
|
|
#include "config.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2011-03-01 13:08:27 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2003-09-06 01:08:26 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2002-09-24 20:29:39 +02:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "lmcons.h"
|
|
|
|
#include "lmaccess.h"
|
|
|
|
#include "lmapibuf.h"
|
|
|
|
#include "lmerr.h"
|
2007-08-04 03:20:00 +02:00
|
|
|
#include "lmuse.h"
|
2006-04-29 21:35:27 +02:00
|
|
|
#include "ntsecapi.h"
|
2002-09-23 22:36:50 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
2007-03-24 09:01:13 +01:00
|
|
|
#include "wine/list.h"
|
2002-09-23 22:36:50 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
|
|
|
|
2007-03-24 09:01:13 +01:00
|
|
|
/* NOTE: So far, this is implemented to support tests that require user logins,
|
|
|
|
* but not designed to handle real user databases. Those should probably
|
|
|
|
* be synced with either the host's user database or with Samba.
|
|
|
|
*
|
|
|
|
* FIXME: The user database should hold all the information the USER_INFO_4 struct
|
|
|
|
* needs, but for the first try, I will just implement the USER_INFO_1 fields.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct sam_user
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
WCHAR user_name[LM20_UNLEN+1];
|
|
|
|
WCHAR user_password[PWLEN + 1];
|
|
|
|
DWORD sec_since_passwd_change;
|
|
|
|
DWORD user_priv;
|
|
|
|
LPWSTR home_dir;
|
|
|
|
LPWSTR user_comment;
|
|
|
|
DWORD user_flags;
|
|
|
|
LPWSTR user_logon_script_path;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct list user_list = LIST_INIT( user_list );
|
|
|
|
|
2007-03-19 02:33:36 +01:00
|
|
|
BOOL NETAPI_IsLocalComputer(LPCWSTR ServerName);
|
|
|
|
|
2002-09-23 22:36:50 +02:00
|
|
|
/************************************************************
|
|
|
|
* NETAPI_ValidateServername
|
|
|
|
*
|
|
|
|
* Validates server name
|
|
|
|
*/
|
2005-07-05 14:49:14 +02:00
|
|
|
static NET_API_STATUS NETAPI_ValidateServername(LPCWSTR ServerName)
|
2002-09-23 22:36:50 +02:00
|
|
|
{
|
|
|
|
if (ServerName)
|
|
|
|
{
|
|
|
|
if (ServerName[0] == 0)
|
|
|
|
return ERROR_BAD_NETPATH;
|
|
|
|
else if (
|
|
|
|
((ServerName[0] == '\\') &&
|
|
|
|
(ServerName[1] != '\\'))
|
|
|
|
||
|
|
|
|
((ServerName[0] == '\\') &&
|
|
|
|
(ServerName[1] == '\\') &&
|
|
|
|
(ServerName[2] == 0))
|
|
|
|
)
|
|
|
|
return ERROR_INVALID_NAME;
|
|
|
|
}
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
2007-03-24 09:01:32 +01:00
|
|
|
* NETAPI_FindUser
|
2002-09-23 22:36:50 +02:00
|
|
|
*
|
2007-03-24 09:01:32 +01:00
|
|
|
* Looks for a user in the user database.
|
|
|
|
* Returns a pointer to the entry in the user list when the user
|
|
|
|
* is found, NULL otherwise.
|
2002-09-23 22:36:50 +02:00
|
|
|
*/
|
2007-03-24 09:01:32 +01:00
|
|
|
static struct sam_user* NETAPI_FindUser(LPCWSTR UserName)
|
2002-09-23 22:36:50 +02:00
|
|
|
{
|
2007-03-24 09:01:32 +01:00
|
|
|
struct sam_user *user;
|
2002-09-23 22:36:50 +02:00
|
|
|
|
2007-03-24 09:01:32 +01:00
|
|
|
LIST_FOR_EACH_ENTRY(user, &user_list, struct sam_user, entry)
|
|
|
|
{
|
|
|
|
if(lstrcmpW(user->user_name, UserName) == 0)
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
return NULL;
|
2002-09-23 22:36:50 +02:00
|
|
|
}
|
|
|
|
|
2008-07-02 12:26:35 +02:00
|
|
|
static BOOL NETAPI_IsCurrentUser(LPCWSTR username)
|
|
|
|
{
|
|
|
|
LPWSTR curr_user = NULL;
|
|
|
|
DWORD dwSize;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
|
|
|
|
dwSize = LM20_UNLEN+1;
|
2009-10-11 22:02:40 +02:00
|
|
|
curr_user = HeapAlloc(GetProcessHeap(), 0, dwSize * sizeof(WCHAR));
|
2008-07-02 12:26:35 +02:00
|
|
|
if(!curr_user)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate memory for user name.\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if(!GetUserNameW(curr_user, &dwSize))
|
|
|
|
{
|
|
|
|
ERR("Failed to get current user's user name.\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (!lstrcmpW(curr_user, username))
|
|
|
|
{
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
end:
|
|
|
|
HeapFree(GetProcessHeap(), 0, curr_user);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-07-07 22:26:41 +02:00
|
|
|
/************************************************************
|
|
|
|
* NetUserAdd (NETAPI32.@)
|
|
|
|
*/
|
2005-11-21 12:59:27 +01:00
|
|
|
NET_API_STATUS WINAPI NetUserAdd(LPCWSTR servername,
|
|
|
|
DWORD level, LPBYTE bufptr, LPDWORD parm_err)
|
2005-07-07 22:26:41 +02:00
|
|
|
{
|
|
|
|
NET_API_STATUS status;
|
2007-03-24 09:01:13 +01:00
|
|
|
struct sam_user * su = NULL;
|
|
|
|
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("(%s, %d, %p, %p) stub!\n", debugstr_w(servername), level, bufptr, parm_err);
|
2005-07-07 22:26:41 +02:00
|
|
|
|
2007-03-24 09:01:13 +01:00
|
|
|
if((status = NETAPI_ValidateServername(servername)) != NERR_Success)
|
2005-07-07 22:26:41 +02:00
|
|
|
return status;
|
2007-03-24 09:01:13 +01:00
|
|
|
|
|
|
|
switch(level)
|
|
|
|
{
|
|
|
|
/* Level 3 and 4 are identical for the purposes of NetUserAdd */
|
|
|
|
case 4:
|
|
|
|
case 3:
|
|
|
|
FIXME("Level 3 and 4 not implemented.\n");
|
|
|
|
/* Fall through */
|
|
|
|
case 2:
|
|
|
|
FIXME("Level 2 not implemented.\n");
|
2007-07-31 18:57:34 +02:00
|
|
|
/* Fall through */
|
2007-03-24 09:01:13 +01:00
|
|
|
case 1:
|
2005-07-07 22:26:41 +02:00
|
|
|
{
|
|
|
|
PUSER_INFO_1 ui = (PUSER_INFO_1) bufptr;
|
2007-03-24 09:01:13 +01:00
|
|
|
su = HeapAlloc(GetProcessHeap(), 0, sizeof(struct sam_user));
|
|
|
|
if(!su)
|
|
|
|
{
|
|
|
|
status = NERR_InternalError;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lstrlenW(ui->usri1_name) > LM20_UNLEN)
|
|
|
|
{
|
|
|
|
status = NERR_BadUsername;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*FIXME: do other checks for a valid username */
|
|
|
|
lstrcpyW(su->user_name, ui->usri1_name);
|
|
|
|
|
|
|
|
if(lstrlenW(ui->usri1_password) > PWLEN)
|
|
|
|
{
|
|
|
|
/* Always return PasswordTooShort on invalid passwords. */
|
|
|
|
status = NERR_PasswordTooShort;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
lstrcpyW(su->user_password, ui->usri1_password);
|
|
|
|
|
|
|
|
su->sec_since_passwd_change = ui->usri1_password_age;
|
|
|
|
su->user_priv = ui->usri1_priv;
|
|
|
|
su->user_flags = ui->usri1_flags;
|
|
|
|
|
|
|
|
/*FIXME: set the other LPWSTRs to NULL for now */
|
|
|
|
su->home_dir = NULL;
|
|
|
|
su->user_comment = NULL;
|
|
|
|
su->user_logon_script_path = NULL;
|
|
|
|
|
|
|
|
list_add_head(&user_list, &su->entry);
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
TRACE("Invalid level %d specified.\n", level);
|
|
|
|
status = ERROR_INVALID_LEVEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-11-17 19:15:22 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, su);
|
|
|
|
|
2005-07-07 22:26:41 +02:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* NetUserDel (NETAPI32.@)
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI NetUserDel(LPCWSTR servername, LPCWSTR username)
|
|
|
|
{
|
|
|
|
NET_API_STATUS status;
|
2007-03-24 09:01:32 +01:00
|
|
|
struct sam_user *user;
|
2005-07-07 22:26:41 +02:00
|
|
|
|
2007-03-24 09:01:32 +01:00
|
|
|
TRACE("(%s, %s)\n", debugstr_w(servername), debugstr_w(username));
|
|
|
|
|
|
|
|
if((status = NETAPI_ValidateServername(servername))!= NERR_Success)
|
2005-07-07 22:26:41 +02:00
|
|
|
return status;
|
|
|
|
|
2007-03-24 09:01:32 +01:00
|
|
|
if ((user = NETAPI_FindUser(username)) == NULL)
|
2005-07-07 22:26:41 +02:00
|
|
|
return NERR_UserNotFound;
|
|
|
|
|
2007-03-24 09:01:32 +01:00
|
|
|
list_remove(&user->entry);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, user->home_dir);
|
|
|
|
HeapFree(GetProcessHeap(), 0, user->user_comment);
|
|
|
|
HeapFree(GetProcessHeap(), 0, user->user_logon_script_path);
|
|
|
|
HeapFree(GetProcessHeap(), 0, user);
|
|
|
|
|
|
|
|
return NERR_Success;
|
2005-07-07 22:26:41 +02:00
|
|
|
}
|
|
|
|
|
2002-09-23 22:36:50 +02:00
|
|
|
/************************************************************
|
|
|
|
* NetUserGetInfo (NETAPI32.@)
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI
|
|
|
|
NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level,
|
|
|
|
LPBYTE* bufptr)
|
|
|
|
{
|
|
|
|
NET_API_STATUS status;
|
2006-10-12 20:56:59 +02:00
|
|
|
TRACE("(%s, %s, %d, %p)\n", debugstr_w(servername), debugstr_w(username),
|
2002-09-23 22:36:50 +02:00
|
|
|
level, bufptr);
|
|
|
|
status = NETAPI_ValidateServername(servername);
|
|
|
|
if (status != NERR_Success)
|
|
|
|
return status;
|
2007-03-19 02:33:36 +01:00
|
|
|
|
|
|
|
if(!NETAPI_IsLocalComputer(servername))
|
|
|
|
{
|
|
|
|
FIXME("Only implemented for local computer, but remote server"
|
|
|
|
"%s was requested.\n", debugstr_w(servername));
|
|
|
|
return NERR_InvalidComputer;
|
|
|
|
}
|
2007-03-18 22:13:28 +01:00
|
|
|
|
2008-07-02 12:26:35 +02:00
|
|
|
if(!NETAPI_FindUser(username) && !NETAPI_IsCurrentUser(username))
|
2007-03-18 22:13:28 +01:00
|
|
|
{
|
|
|
|
TRACE("User %s is unknown.\n", debugstr_w(username));
|
|
|
|
return NERR_UserNotFound;
|
|
|
|
}
|
2002-09-23 22:36:50 +02:00
|
|
|
|
|
|
|
switch (level)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
PUSER_INFO_0 ui;
|
|
|
|
int name_sz;
|
|
|
|
|
|
|
|
name_sz = lstrlenW(username) + 1;
|
|
|
|
|
|
|
|
/* set up buffer */
|
|
|
|
NetApiBufferAllocate(sizeof(USER_INFO_0) + name_sz * sizeof(WCHAR),
|
|
|
|
(LPVOID *) bufptr);
|
|
|
|
|
|
|
|
ui = (PUSER_INFO_0) *bufptr;
|
|
|
|
ui->usri0_name = (LPWSTR) (*bufptr + sizeof(USER_INFO_0));
|
|
|
|
|
|
|
|
/* get data */
|
|
|
|
lstrcpyW(ui->usri0_name, username);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 10:
|
|
|
|
{
|
|
|
|
PUSER_INFO_10 ui;
|
|
|
|
PUSER_INFO_0 ui0;
|
|
|
|
NET_API_STATUS status;
|
|
|
|
/* sizes of the field buffers in WCHARS */
|
|
|
|
int name_sz, comment_sz, usr_comment_sz, full_name_sz;
|
|
|
|
|
|
|
|
comment_sz = 1;
|
|
|
|
usr_comment_sz = 1;
|
|
|
|
full_name_sz = 1;
|
|
|
|
|
|
|
|
/* get data */
|
|
|
|
status = NetUserGetInfo(servername, username, 0, (LPBYTE *) &ui0);
|
|
|
|
if (status != NERR_Success)
|
|
|
|
{
|
|
|
|
NetApiBufferFree(ui0);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
name_sz = lstrlenW(ui0->usri0_name) + 1;
|
|
|
|
|
|
|
|
/* set up buffer */
|
|
|
|
NetApiBufferAllocate(sizeof(USER_INFO_10) +
|
|
|
|
(name_sz + comment_sz + usr_comment_sz +
|
|
|
|
full_name_sz) * sizeof(WCHAR),
|
|
|
|
(LPVOID *) bufptr);
|
|
|
|
ui = (PUSER_INFO_10) *bufptr;
|
|
|
|
ui->usri10_name = (LPWSTR) (*bufptr + sizeof(USER_INFO_10));
|
|
|
|
ui->usri10_comment = (LPWSTR) (
|
|
|
|
((PBYTE) ui->usri10_name) + name_sz * sizeof(WCHAR));
|
|
|
|
ui->usri10_usr_comment = (LPWSTR) (
|
|
|
|
((PBYTE) ui->usri10_comment) + comment_sz * sizeof(WCHAR));
|
|
|
|
ui->usri10_full_name = (LPWSTR) (
|
|
|
|
((PBYTE) ui->usri10_usr_comment) + usr_comment_sz * sizeof(WCHAR));
|
|
|
|
|
|
|
|
/* set data */
|
|
|
|
lstrcpyW(ui->usri10_name, ui0->usri0_name);
|
|
|
|
NetApiBufferFree(ui0);
|
|
|
|
ui->usri10_comment[0] = 0;
|
|
|
|
ui->usri10_usr_comment[0] = 0;
|
|
|
|
ui->usri10_full_name[0] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1:
|
2002-12-17 02:46:40 +01:00
|
|
|
{
|
|
|
|
static const WCHAR homedirW[] = {'H','O','M','E',0};
|
|
|
|
PUSER_INFO_1 ui;
|
|
|
|
PUSER_INFO_0 ui0;
|
|
|
|
NET_API_STATUS status;
|
|
|
|
/* sizes of the field buffers in WCHARS */
|
|
|
|
int name_sz, password_sz, home_dir_sz, comment_sz, script_path_sz;
|
|
|
|
|
|
|
|
password_sz = 1; /* not filled out for security reasons for NetUserGetInfo*/
|
|
|
|
comment_sz = 1;
|
|
|
|
script_path_sz = 1;
|
|
|
|
|
|
|
|
/* get data */
|
|
|
|
status = NetUserGetInfo(servername, username, 0, (LPBYTE *) &ui0);
|
|
|
|
if (status != NERR_Success)
|
|
|
|
{
|
|
|
|
NetApiBufferFree(ui0);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
name_sz = lstrlenW(ui0->usri0_name) + 1;
|
|
|
|
home_dir_sz = GetEnvironmentVariableW(homedirW, NULL,0);
|
|
|
|
/* set up buffer */
|
|
|
|
NetApiBufferAllocate(sizeof(USER_INFO_1) +
|
|
|
|
(name_sz + password_sz + home_dir_sz +
|
|
|
|
comment_sz + script_path_sz) * sizeof(WCHAR),
|
|
|
|
(LPVOID *) bufptr);
|
|
|
|
|
|
|
|
ui = (PUSER_INFO_1) *bufptr;
|
|
|
|
ui->usri1_name = (LPWSTR) (ui + 1);
|
|
|
|
ui->usri1_password = ui->usri1_name + name_sz;
|
|
|
|
ui->usri1_home_dir = ui->usri1_password + password_sz;
|
|
|
|
ui->usri1_comment = ui->usri1_home_dir + home_dir_sz;
|
|
|
|
ui->usri1_script_path = ui->usri1_comment + comment_sz;
|
|
|
|
/* set data */
|
|
|
|
lstrcpyW(ui->usri1_name, ui0->usri0_name);
|
|
|
|
NetApiBufferFree(ui0);
|
|
|
|
ui->usri1_password[0] = 0;
|
|
|
|
ui->usri1_password_age = 0;
|
|
|
|
ui->usri1_priv = 0;
|
|
|
|
GetEnvironmentVariableW(homedirW, ui->usri1_home_dir,home_dir_sz);
|
|
|
|
ui->usri1_comment[0] = 0;
|
|
|
|
ui->usri1_flags = 0;
|
|
|
|
ui->usri1_script_path[0] = 0;
|
|
|
|
break;
|
|
|
|
}
|
2002-09-23 22:36:50 +02:00
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
case 11:
|
|
|
|
case 20:
|
|
|
|
case 23:
|
|
|
|
case 1003:
|
|
|
|
case 1005:
|
|
|
|
case 1006:
|
|
|
|
case 1007:
|
|
|
|
case 1008:
|
|
|
|
case 1009:
|
|
|
|
case 1010:
|
|
|
|
case 1011:
|
|
|
|
case 1012:
|
|
|
|
case 1013:
|
|
|
|
case 1014:
|
|
|
|
case 1017:
|
|
|
|
case 1018:
|
|
|
|
case 1020:
|
|
|
|
case 1023:
|
|
|
|
case 1024:
|
|
|
|
case 1025:
|
|
|
|
case 1051:
|
|
|
|
case 1052:
|
|
|
|
case 1053:
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("Level %d is not implemented\n", level);
|
2006-08-05 01:00:58 +02:00
|
|
|
return NERR_InternalError;
|
2002-09-23 22:36:50 +02:00
|
|
|
}
|
|
|
|
default:
|
2007-03-18 19:52:29 +01:00
|
|
|
TRACE("Invalid level %d is specified\n", level);
|
2002-09-23 22:36:50 +02:00
|
|
|
return ERROR_INVALID_LEVEL;
|
|
|
|
}
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
|
|
|
|
2006-08-05 01:12:34 +02:00
|
|
|
/************************************************************
|
|
|
|
* NetUserGetLocalGroups (NETAPI32.@)
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI
|
|
|
|
NetUserGetLocalGroups(LPCWSTR servername, LPCWSTR username, DWORD level,
|
|
|
|
DWORD flags, LPBYTE* bufptr, DWORD prefmaxlen,
|
|
|
|
LPDWORD entriesread, LPDWORD totalentries)
|
|
|
|
{
|
2007-02-18 19:37:37 +01:00
|
|
|
NET_API_STATUS status;
|
2008-09-12 00:05:47 +02:00
|
|
|
const WCHAR admins[] = {'A','d','m','i','n','i','s','t','r','a','t','o','r','s',0};
|
|
|
|
LPWSTR currentuser;
|
|
|
|
LOCALGROUP_USERS_INFO_0* info;
|
|
|
|
DWORD size;
|
2007-02-18 19:37:37 +01:00
|
|
|
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("(%s, %s, %d, %08x, %p %d, %p, %p) stub!\n",
|
2006-08-05 01:12:34 +02:00
|
|
|
debugstr_w(servername), debugstr_w(username), level, flags, bufptr,
|
|
|
|
prefmaxlen, entriesread, totalentries);
|
2007-02-18 19:37:37 +01:00
|
|
|
|
|
|
|
status = NETAPI_ValidateServername(servername);
|
|
|
|
if (status != NERR_Success)
|
|
|
|
return status;
|
|
|
|
|
2008-09-12 00:05:47 +02:00
|
|
|
size = UNLEN + 1;
|
2009-10-11 22:02:40 +02:00
|
|
|
NetApiBufferAllocate(size * sizeof(WCHAR), (LPVOID*)¤tuser);
|
2008-09-12 00:05:47 +02:00
|
|
|
GetUserNameW(currentuser, &size);
|
|
|
|
|
|
|
|
if (lstrcmpiW(username, currentuser) && NETAPI_FindUser(username))
|
|
|
|
{
|
|
|
|
NetApiBufferFree(currentuser);
|
2007-02-18 19:37:37 +01:00
|
|
|
return NERR_UserNotFound;
|
2008-09-12 00:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NetApiBufferFree(currentuser);
|
|
|
|
*totalentries = 1;
|
|
|
|
size = sizeof(*info) + sizeof(admins);
|
|
|
|
|
|
|
|
if(prefmaxlen < size)
|
|
|
|
status = ERROR_MORE_DATA;
|
|
|
|
else
|
|
|
|
status = NetApiBufferAllocate(size, (LPVOID*)&info);
|
|
|
|
|
|
|
|
if(status != NERR_Success)
|
|
|
|
{
|
|
|
|
*bufptr = NULL;
|
|
|
|
*entriesread = 0;
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
info->lgrui0_name = (LPWSTR)((LPBYTE)info + sizeof(*info));
|
|
|
|
lstrcpyW(info->lgrui0_name, admins);
|
2007-02-18 19:37:37 +01:00
|
|
|
|
2008-09-12 00:05:47 +02:00
|
|
|
*bufptr = (LPBYTE)info;
|
|
|
|
*entriesread = 1;
|
2007-02-18 19:37:37 +01:00
|
|
|
|
|
|
|
return NERR_Success;
|
2006-08-05 01:12:34 +02:00
|
|
|
}
|
2004-02-06 06:17:39 +01:00
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* NetUserEnum (NETAPI32.@)
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI
|
|
|
|
NetUserEnum(LPCWSTR servername, DWORD level, DWORD filter, LPBYTE* bufptr,
|
|
|
|
DWORD prefmaxlen, LPDWORD entriesread, LPDWORD totalentries,
|
|
|
|
LPDWORD resume_handle)
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("(%s,%d, 0x%d,%p,%d,%p,%p,%p) stub!\n", debugstr_w(servername), level,
|
2005-07-07 22:26:41 +02:00
|
|
|
filter, bufptr, prefmaxlen, entriesread, totalentries, resume_handle);
|
|
|
|
|
2004-02-06 06:17:39 +01:00
|
|
|
return ERROR_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
|
2002-09-23 22:36:50 +02:00
|
|
|
/************************************************************
|
|
|
|
* ACCESS_QueryAdminDisplayInformation
|
|
|
|
*
|
|
|
|
* Creates a buffer with information for the Admin User
|
|
|
|
*/
|
2005-07-05 14:49:14 +02:00
|
|
|
static void ACCESS_QueryAdminDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD pdwSize)
|
2002-09-23 22:36:50 +02:00
|
|
|
{
|
2004-04-19 22:12:14 +02:00
|
|
|
static const WCHAR sAdminUserName[] = {
|
2002-09-23 22:36:50 +02:00
|
|
|
'A','d','m','i','n','i','s','t','r','a','t','o','r',0};
|
|
|
|
|
|
|
|
/* sizes of the field buffers in WCHARS */
|
|
|
|
int name_sz, comment_sz, full_name_sz;
|
|
|
|
PNET_DISPLAY_USER usr;
|
|
|
|
|
|
|
|
/* set up buffer */
|
2009-12-04 16:09:02 +01:00
|
|
|
name_sz = lstrlenW(sAdminUserName) + 1;
|
2002-09-23 22:36:50 +02:00
|
|
|
comment_sz = 1;
|
|
|
|
full_name_sz = 1;
|
|
|
|
|
|
|
|
*pdwSize = sizeof(NET_DISPLAY_USER);
|
|
|
|
*pdwSize += (name_sz + comment_sz + full_name_sz) * sizeof(WCHAR);
|
|
|
|
NetApiBufferAllocate(*pdwSize, (LPVOID *) buf);
|
|
|
|
|
|
|
|
usr = *buf;
|
|
|
|
usr->usri1_name = (LPWSTR) ((PBYTE) usr + sizeof(NET_DISPLAY_USER));
|
|
|
|
usr->usri1_comment = (LPWSTR) (
|
|
|
|
((PBYTE) usr->usri1_name) + name_sz * sizeof(WCHAR));
|
|
|
|
usr->usri1_full_name = (LPWSTR) (
|
|
|
|
((PBYTE) usr->usri1_comment) + comment_sz * sizeof(WCHAR));
|
|
|
|
|
|
|
|
/* set data */
|
|
|
|
lstrcpyW(usr->usri1_name, sAdminUserName);
|
|
|
|
usr->usri1_comment[0] = 0;
|
|
|
|
usr->usri1_flags = UF_SCRIPT | UF_NORMAL_ACCOUNT | UF_DONT_EXPIRE_PASSWD;
|
|
|
|
usr->usri1_full_name[0] = 0;
|
2008-10-16 23:51:02 +02:00
|
|
|
usr->usri1_user_id = DOMAIN_USER_RID_ADMIN;
|
2002-09-23 22:36:50 +02:00
|
|
|
usr->usri1_next_index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* ACCESS_QueryGuestDisplayInformation
|
|
|
|
*
|
|
|
|
* Creates a buffer with information for the Guest User
|
|
|
|
*/
|
2005-07-05 14:49:14 +02:00
|
|
|
static void ACCESS_QueryGuestDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD pdwSize)
|
2002-09-23 22:36:50 +02:00
|
|
|
{
|
2004-04-19 22:12:14 +02:00
|
|
|
static const WCHAR sGuestUserName[] = {
|
2002-09-23 22:36:50 +02:00
|
|
|
'G','u','e','s','t',0 };
|
|
|
|
|
|
|
|
/* sizes of the field buffers in WCHARS */
|
|
|
|
int name_sz, comment_sz, full_name_sz;
|
|
|
|
PNET_DISPLAY_USER usr;
|
|
|
|
|
|
|
|
/* set up buffer */
|
2009-12-04 16:09:02 +01:00
|
|
|
name_sz = lstrlenW(sGuestUserName) + 1;
|
2002-09-23 22:36:50 +02:00
|
|
|
comment_sz = 1;
|
|
|
|
full_name_sz = 1;
|
|
|
|
|
|
|
|
*pdwSize = sizeof(NET_DISPLAY_USER);
|
|
|
|
*pdwSize += (name_sz + comment_sz + full_name_sz) * sizeof(WCHAR);
|
|
|
|
NetApiBufferAllocate(*pdwSize, (LPVOID *) buf);
|
|
|
|
|
|
|
|
usr = *buf;
|
|
|
|
usr->usri1_name = (LPWSTR) ((PBYTE) usr + sizeof(NET_DISPLAY_USER));
|
|
|
|
usr->usri1_comment = (LPWSTR) (
|
|
|
|
((PBYTE) usr->usri1_name) + name_sz * sizeof(WCHAR));
|
|
|
|
usr->usri1_full_name = (LPWSTR) (
|
|
|
|
((PBYTE) usr->usri1_comment) + comment_sz * sizeof(WCHAR));
|
|
|
|
|
|
|
|
/* set data */
|
|
|
|
lstrcpyW(usr->usri1_name, sGuestUserName);
|
|
|
|
usr->usri1_comment[0] = 0;
|
|
|
|
usr->usri1_flags = UF_ACCOUNTDISABLE | UF_SCRIPT | UF_NORMAL_ACCOUNT |
|
|
|
|
UF_DONT_EXPIRE_PASSWD;
|
|
|
|
usr->usri1_full_name[0] = 0;
|
2008-10-16 23:51:02 +02:00
|
|
|
usr->usri1_user_id = DOMAIN_USER_RID_GUEST;
|
2002-09-23 22:36:50 +02:00
|
|
|
usr->usri1_next_index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* Copies NET_DISPLAY_USER record.
|
|
|
|
*/
|
2007-06-19 23:06:48 +02:00
|
|
|
static void ACCESS_CopyDisplayUser(const NET_DISPLAY_USER *dest, LPWSTR *dest_buf,
|
2002-09-23 22:36:50 +02:00
|
|
|
PNET_DISPLAY_USER src)
|
|
|
|
{
|
|
|
|
LPWSTR str = *dest_buf;
|
|
|
|
|
|
|
|
src->usri1_name = str;
|
|
|
|
lstrcpyW(src->usri1_name, dest->usri1_name);
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + (lstrlenW(str) + 1) * sizeof(WCHAR));
|
|
|
|
|
|
|
|
src->usri1_comment = str;
|
|
|
|
lstrcpyW(src->usri1_comment, dest->usri1_comment);
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + (lstrlenW(str) + 1) * sizeof(WCHAR));
|
|
|
|
|
|
|
|
src->usri1_flags = dest->usri1_flags;
|
|
|
|
|
|
|
|
src->usri1_full_name = str;
|
|
|
|
lstrcpyW(src->usri1_full_name, dest->usri1_full_name);
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + (lstrlenW(str) + 1) * sizeof(WCHAR));
|
|
|
|
|
|
|
|
src->usri1_user_id = dest->usri1_user_id;
|
|
|
|
src->usri1_next_index = dest->usri1_next_index;
|
|
|
|
*dest_buf = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* NetQueryDisplayInformation (NETAPI32.@)
|
|
|
|
*
|
|
|
|
* The buffer structure:
|
|
|
|
* - array of fixed size record of the level type
|
|
|
|
* - strings, referenced by the record of the level type
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI
|
|
|
|
NetQueryDisplayInformation(
|
2005-11-21 12:59:27 +01:00
|
|
|
LPCWSTR ServerName, DWORD Level, DWORD Index, DWORD EntriesRequested,
|
2002-09-23 22:36:50 +02:00
|
|
|
DWORD PreferredMaximumLength, LPDWORD ReturnedEntryCount,
|
|
|
|
PVOID *SortedBuffer)
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
TRACE("(%s, %d, %d, %d, %d, %p, %p)\n", debugstr_w(ServerName),
|
2002-09-23 22:36:50 +02:00
|
|
|
Level, Index, EntriesRequested, PreferredMaximumLength,
|
|
|
|
ReturnedEntryCount, SortedBuffer);
|
2007-03-19 02:33:36 +01:00
|
|
|
|
|
|
|
if(!NETAPI_IsLocalComputer(ServerName))
|
|
|
|
{
|
|
|
|
FIXME("Only implemented on local computer, but requested for "
|
|
|
|
"remote server %s\n", debugstr_w(ServerName));
|
|
|
|
return ERROR_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
|
2002-09-23 22:36:50 +02:00
|
|
|
switch (Level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
/* current record */
|
|
|
|
PNET_DISPLAY_USER inf;
|
|
|
|
/* current available strings buffer */
|
|
|
|
LPWSTR str;
|
|
|
|
PNET_DISPLAY_USER admin, guest;
|
|
|
|
DWORD admin_size, guest_size;
|
|
|
|
LPWSTR name = NULL;
|
|
|
|
DWORD dwSize;
|
|
|
|
|
|
|
|
/* sizes of the field buffers in WCHARS */
|
|
|
|
int name_sz, comment_sz, full_name_sz;
|
|
|
|
|
|
|
|
/* number of the records, returned in SortedBuffer
|
|
|
|
3 - for current user, Administrator and Guest users
|
|
|
|
*/
|
|
|
|
int records = 3;
|
|
|
|
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("Level %d partially implemented\n", Level);
|
2002-09-23 22:36:50 +02:00
|
|
|
*ReturnedEntryCount = records;
|
|
|
|
comment_sz = 1;
|
|
|
|
full_name_sz = 1;
|
|
|
|
|
|
|
|
/* get data */
|
|
|
|
dwSize = UNLEN + 1;
|
2009-10-11 22:02:40 +02:00
|
|
|
NetApiBufferAllocate(dwSize * sizeof(WCHAR), (LPVOID *) &name);
|
2002-09-23 22:36:50 +02:00
|
|
|
if (!GetUserNameW(name, &dwSize))
|
|
|
|
{
|
|
|
|
NetApiBufferFree(name);
|
|
|
|
return ERROR_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
name_sz = dwSize;
|
|
|
|
ACCESS_QueryAdminDisplayInformation(&admin, &admin_size);
|
|
|
|
ACCESS_QueryGuestDisplayInformation(&guest, &guest_size);
|
|
|
|
|
|
|
|
/* set up buffer */
|
|
|
|
dwSize = sizeof(NET_DISPLAY_USER) * records;
|
|
|
|
dwSize += (name_sz + comment_sz + full_name_sz) * sizeof(WCHAR);
|
|
|
|
|
|
|
|
NetApiBufferAllocate(dwSize +
|
|
|
|
admin_size - sizeof(NET_DISPLAY_USER) +
|
|
|
|
guest_size - sizeof(NET_DISPLAY_USER),
|
2008-01-12 17:05:42 +01:00
|
|
|
SortedBuffer);
|
2009-03-05 09:39:01 +01:00
|
|
|
inf = *SortedBuffer;
|
2002-09-23 22:36:50 +02:00
|
|
|
str = (LPWSTR) ((PBYTE) inf + sizeof(NET_DISPLAY_USER) * records);
|
|
|
|
inf->usri1_name = str;
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + name_sz * sizeof(WCHAR));
|
|
|
|
inf->usri1_comment = str;
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + comment_sz * sizeof(WCHAR));
|
|
|
|
inf->usri1_full_name = str;
|
|
|
|
str = (LPWSTR) (
|
|
|
|
((PBYTE) str) + full_name_sz * sizeof(WCHAR));
|
|
|
|
|
|
|
|
/* set data */
|
|
|
|
lstrcpyW(inf->usri1_name, name);
|
|
|
|
NetApiBufferFree(name);
|
|
|
|
inf->usri1_comment[0] = 0;
|
|
|
|
inf->usri1_flags =
|
|
|
|
UF_SCRIPT | UF_NORMAL_ACCOUNT | UF_DONT_EXPIRE_PASSWD;
|
|
|
|
inf->usri1_full_name[0] = 0;
|
|
|
|
inf->usri1_user_id = 0;
|
|
|
|
inf->usri1_next_index = 0;
|
|
|
|
|
|
|
|
inf++;
|
|
|
|
ACCESS_CopyDisplayUser(admin, &str, inf);
|
|
|
|
NetApiBufferFree(admin);
|
|
|
|
|
|
|
|
inf++;
|
|
|
|
ACCESS_CopyDisplayUser(guest, &str, inf);
|
|
|
|
NetApiBufferFree(guest);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
FIXME("Level %d is not implemented\n", Level);
|
2002-09-23 22:36:50 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2007-03-18 22:14:06 +01:00
|
|
|
TRACE("Invalid level %d is specified\n", Level);
|
2002-09-23 22:36:50 +02:00
|
|
|
return ERROR_INVALID_LEVEL;
|
|
|
|
}
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
2002-12-13 21:28:03 +01:00
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
* NetGetDCName (NETAPI32.@)
|
|
|
|
*
|
|
|
|
* Return the name of the primary domain controller (PDC)
|
|
|
|
*/
|
|
|
|
|
|
|
|
NET_API_STATUS WINAPI
|
2005-11-21 12:59:27 +01:00
|
|
|
NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr)
|
2002-12-13 21:28:03 +01:00
|
|
|
{
|
2005-07-07 22:26:41 +02:00
|
|
|
FIXME("(%s, %s, %p) stub!\n", debugstr_w(servername),
|
|
|
|
debugstr_w(domainname), bufptr);
|
2002-12-13 21:28:03 +01:00
|
|
|
return NERR_DCNotFound; /* say we can't find a domain controller */
|
|
|
|
}
|
|
|
|
|
2008-07-31 09:00:31 +02:00
|
|
|
/************************************************************
|
|
|
|
* NetGroupEnum (NETAPI32.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI
|
|
|
|
NetGroupEnum(LPCWSTR servername, DWORD level, LPBYTE *bufptr, DWORD prefmaxlen,
|
|
|
|
LPDWORD entriesread, LPDWORD totalentries, LPDWORD resume_handle)
|
|
|
|
{
|
|
|
|
FIXME("(%s, %d, %p, %d, %p, %p, %p) stub!\n", debugstr_w(servername),
|
|
|
|
level, bufptr, prefmaxlen, entriesread, totalentries, resume_handle);
|
|
|
|
return ERROR_ACCESS_DENIED;
|
|
|
|
}
|
2002-12-13 21:28:03 +01:00
|
|
|
|
2009-09-08 00:48:22 +02:00
|
|
|
/************************************************************
|
|
|
|
* NetGroupGetInfo (NETAPI32.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI NetGroupGetInfo(LPCWSTR servername, LPCWSTR groupname, DWORD level, LPBYTE *bufptr)
|
|
|
|
{
|
|
|
|
FIXME("(%s, %s, %d, %p) stub!\n", debugstr_w(servername), debugstr_w(groupname), level, bufptr);
|
|
|
|
return ERROR_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* NetUserModalsGet (NETAPI32.@)
|
|
|
|
*
|
|
|
|
* Retrieves global information for all users and global groups in the security
|
|
|
|
* database.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* szServer [I] Specifies the DNS or the NetBIOS name of the remote server
|
|
|
|
* on which the function is to execute.
|
|
|
|
* level [I] Information level of the data.
|
|
|
|
* 0 Return global passwords parameters. bufptr points to a
|
|
|
|
* USER_MODALS_INFO_0 struct.
|
|
|
|
* 1 Return logon server and domain controller information. bufptr
|
|
|
|
* points to a USER_MODALS_INFO_1 struct.
|
|
|
|
* 2 Return domain name and identifier. bufptr points to a
|
|
|
|
* USER_MODALS_INFO_2 struct.
|
|
|
|
* 3 Return lockout information. bufptr points to a USER_MODALS_INFO_3
|
|
|
|
* struct.
|
|
|
|
* pbuffer [I] Buffer that receives the data.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: NERR_Success.
|
|
|
|
* Failure:
|
|
|
|
* ERROR_ACCESS_DENIED - the user does not have access to the info.
|
|
|
|
* NERR_InvalidComputer - computer name is invalid.
|
2003-12-04 21:53:46 +01:00
|
|
|
*/
|
2006-04-29 21:35:27 +02:00
|
|
|
NET_API_STATUS WINAPI NetUserModalsGet(
|
|
|
|
LPCWSTR szServer, DWORD level, LPBYTE *pbuffer)
|
2003-12-04 21:53:46 +01:00
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
TRACE("(%s %d %p)\n", debugstr_w(szServer), level, pbuffer);
|
2006-04-29 21:35:27 +02:00
|
|
|
|
|
|
|
switch (level)
|
2006-02-13 13:22:11 +01:00
|
|
|
{
|
2006-04-29 21:35:27 +02:00
|
|
|
case 0:
|
|
|
|
/* return global passwords parameters */
|
|
|
|
FIXME("level 0 not implemented!\n");
|
|
|
|
*pbuffer = NULL;
|
|
|
|
return NERR_InternalError;
|
|
|
|
case 1:
|
|
|
|
/* return logon server and domain controller info */
|
|
|
|
FIXME("level 1 not implemented!\n");
|
|
|
|
*pbuffer = NULL;
|
|
|
|
return NERR_InternalError;
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
/* return domain name and identifier */
|
|
|
|
PUSER_MODALS_INFO_2 umi;
|
|
|
|
LSA_HANDLE policyHandle;
|
|
|
|
LSA_OBJECT_ATTRIBUTES objectAttributes;
|
|
|
|
PPOLICY_ACCOUNT_DOMAIN_INFO domainInfo;
|
|
|
|
NTSTATUS ntStatus;
|
|
|
|
PSID domainIdentifier = NULL;
|
|
|
|
int domainNameLen;
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
ZeroMemory(&objectAttributes, sizeof(objectAttributes));
|
2006-08-13 00:49:37 +02:00
|
|
|
objectAttributes.Length = sizeof(objectAttributes);
|
|
|
|
|
|
|
|
ntStatus = LsaOpenPolicy(NULL, &objectAttributes,
|
2006-04-29 21:35:27 +02:00
|
|
|
POLICY_VIEW_LOCAL_INFORMATION,
|
|
|
|
&policyHandle);
|
|
|
|
if (ntStatus != STATUS_SUCCESS)
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
WARN("LsaOpenPolicy failed with NT status %x\n",
|
2006-04-29 21:35:27 +02:00
|
|
|
LsaNtStatusToWinError(ntStatus));
|
|
|
|
return ntStatus;
|
|
|
|
}
|
2006-08-13 00:49:37 +02:00
|
|
|
|
|
|
|
ntStatus = LsaQueryInformationPolicy(policyHandle,
|
2006-04-29 21:35:27 +02:00
|
|
|
PolicyAccountDomainInformation,
|
|
|
|
(PVOID *)&domainInfo);
|
|
|
|
if (ntStatus != STATUS_SUCCESS)
|
|
|
|
{
|
2006-10-12 20:56:59 +02:00
|
|
|
WARN("LsaQueryInformationPolicy failed with NT status %x\n",
|
2006-04-29 21:35:27 +02:00
|
|
|
LsaNtStatusToWinError(ntStatus));
|
2006-08-13 00:49:37 +02:00
|
|
|
LsaClose(policyHandle);
|
2006-04-29 21:35:27 +02:00
|
|
|
return ntStatus;
|
|
|
|
}
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
domainIdentifier = domainInfo->DomainSid;
|
|
|
|
domainNameLen = lstrlenW(domainInfo->DomainName.Buffer) + 1;
|
|
|
|
LsaClose(policyHandle);
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
ntStatus = NetApiBufferAllocate(sizeof(USER_MODALS_INFO_2) +
|
|
|
|
GetLengthSid(domainIdentifier) +
|
|
|
|
domainNameLen * sizeof(WCHAR),
|
|
|
|
(LPVOID *)pbuffer);
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
if (ntStatus != NERR_Success)
|
2006-08-13 00:49:37 +02:00
|
|
|
{
|
2006-04-29 21:35:27 +02:00
|
|
|
WARN("NetApiBufferAllocate() failed\n");
|
|
|
|
LsaFreeMemory(domainInfo);
|
|
|
|
return ntStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
umi = (USER_MODALS_INFO_2 *) *pbuffer;
|
2009-03-05 09:39:01 +01:00
|
|
|
umi->usrmod2_domain_id = *pbuffer + sizeof(USER_MODALS_INFO_2);
|
2006-04-29 21:35:27 +02:00
|
|
|
umi->usrmod2_domain_name = (LPWSTR)(*pbuffer +
|
|
|
|
sizeof(USER_MODALS_INFO_2) + GetLengthSid(domainIdentifier));
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
lstrcpynW(umi->usrmod2_domain_name,
|
|
|
|
domainInfo->DomainName.Buffer,
|
|
|
|
domainNameLen);
|
|
|
|
CopySid(GetLengthSid(domainIdentifier), umi->usrmod2_domain_id,
|
|
|
|
domainIdentifier);
|
|
|
|
|
|
|
|
LsaFreeMemory(domainInfo);
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
break;
|
2006-08-13 00:49:37 +02:00
|
|
|
}
|
2006-04-29 21:35:27 +02:00
|
|
|
case 3:
|
|
|
|
/* return lockout information */
|
|
|
|
FIXME("level 3 not implemented!\n");
|
|
|
|
*pbuffer = NULL;
|
|
|
|
return NERR_InternalError;
|
|
|
|
default:
|
2007-03-18 22:14:06 +01:00
|
|
|
TRACE("Invalid level %d is specified\n", level);
|
2006-04-29 21:35:27 +02:00
|
|
|
*pbuffer = NULL;
|
|
|
|
return ERROR_INVALID_LEVEL;
|
2006-02-13 13:22:11 +01:00
|
|
|
}
|
2006-08-13 00:49:37 +02:00
|
|
|
|
2006-04-29 21:35:27 +02:00
|
|
|
return NERR_Success;
|
2003-12-04 21:53:46 +01:00
|
|
|
}
|
2007-02-22 15:34:10 +01:00
|
|
|
|
2011-03-01 13:08:27 +01:00
|
|
|
static int fork_smbpasswd( char * const argv[] )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_FORK
|
|
|
|
int pipe_out[2];
|
|
|
|
|
|
|
|
if (pipe( pipe_out ) == -1) return -1;
|
|
|
|
fcntl( pipe_out[0], F_SETFD, FD_CLOEXEC );
|
|
|
|
fcntl( pipe_out[1], F_SETFD, FD_CLOEXEC );
|
|
|
|
|
|
|
|
switch (fork())
|
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
close( pipe_out[0] );
|
|
|
|
close( pipe_out[1] );
|
|
|
|
return -1;
|
|
|
|
case 0:
|
|
|
|
dup2( pipe_out[0], 0 );
|
|
|
|
close( pipe_out[0] );
|
|
|
|
close( pipe_out[1] );
|
|
|
|
execvp( "smbpasswd", argv );
|
|
|
|
ERR( "can't execute smbpasswd, is it installed?\n" );
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
close( pipe_out[0] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return pipe_out[1];
|
|
|
|
#else
|
|
|
|
ERR( "no fork support on this platform\n" );
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *strdup_unixcp( const WCHAR *str )
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
int len = WideCharToMultiByte( CP_UNIXCP, 0, str, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((ret = HeapAlloc( GetProcessHeap(), 0, len )))
|
|
|
|
WideCharToMultiByte( CP_UNIXCP, 0, str, -1, ret, len, NULL, NULL );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NET_API_STATUS change_password_smb( LPCWSTR domainname, LPCWSTR username,
|
|
|
|
LPCWSTR oldpassword, LPCWSTR newpassword )
|
|
|
|
{
|
|
|
|
static char option_silent[] = "-s";
|
|
|
|
static char option_user[] = "-U";
|
|
|
|
static char option_remote[] = "-r";
|
|
|
|
static char smbpasswd[] = "smbpasswd";
|
|
|
|
int pipe_out;
|
|
|
|
char *server = NULL, *user, *argv[7], *old, *new;
|
|
|
|
|
|
|
|
if (domainname && !(server = strdup_unixcp( domainname ))) return ERROR_OUTOFMEMORY;
|
|
|
|
if (!(user = strdup_unixcp( username )))
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, server );
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
argv[0] = smbpasswd;
|
|
|
|
argv[1] = option_silent;
|
|
|
|
argv[2] = option_user;
|
|
|
|
argv[3] = user;
|
|
|
|
if (server)
|
|
|
|
{
|
|
|
|
argv[4] = option_remote;
|
|
|
|
argv[5] = server;
|
|
|
|
argv[6] = NULL;
|
|
|
|
}
|
|
|
|
else argv[4] = NULL;
|
|
|
|
|
|
|
|
pipe_out = fork_smbpasswd( argv );
|
|
|
|
HeapFree( GetProcessHeap(), 0, server );
|
|
|
|
HeapFree( GetProcessHeap(), 0, user );
|
|
|
|
if (pipe_out == -1) return NERR_InternalError;
|
|
|
|
|
|
|
|
if (!(old = strdup_unixcp( oldpassword )))
|
|
|
|
{
|
|
|
|
close( pipe_out );
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
if (!(new = strdup_unixcp( newpassword )))
|
|
|
|
{
|
|
|
|
close( pipe_out );
|
|
|
|
HeapFree( GetProcessHeap(), 0, old );
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
write( pipe_out, old, strlen( old ) );
|
|
|
|
write( pipe_out, "\n", 1 );
|
|
|
|
write( pipe_out, new, strlen( new ) );
|
|
|
|
write( pipe_out, "\n", 1 );
|
|
|
|
write( pipe_out, new, strlen( new ) );
|
|
|
|
write( pipe_out, "\n", 1 );
|
|
|
|
|
|
|
|
close( pipe_out );
|
|
|
|
HeapFree( GetProcessHeap(), 0, old );
|
|
|
|
HeapFree( GetProcessHeap(), 0, new );
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
|
|
|
|
2007-02-22 15:34:10 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* NetUserChangePassword (NETAPI32.@)
|
|
|
|
* PARAMS
|
|
|
|
* domainname [I] Optional. Domain on which the user resides or the logon
|
|
|
|
* domain of the current user if NULL.
|
|
|
|
* username [I] Optional. Username to change the password for or the name
|
|
|
|
* of the current user if NULL.
|
|
|
|
* oldpassword [I] The user's current password.
|
|
|
|
* newpassword [I] The password that the user will be changed to using.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: NERR_Success.
|
|
|
|
* Failure: NERR_* failure code or win error code.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NET_API_STATUS WINAPI NetUserChangePassword(LPCWSTR domainname, LPCWSTR username,
|
|
|
|
LPCWSTR oldpassword, LPCWSTR newpassword)
|
|
|
|
{
|
2007-03-24 09:02:04 +01:00
|
|
|
struct sam_user *user;
|
|
|
|
|
|
|
|
TRACE("(%s, %s, ..., ...)\n", debugstr_w(domainname), debugstr_w(username));
|
|
|
|
|
2011-03-01 13:08:27 +01:00
|
|
|
if (!change_password_smb( domainname, username, oldpassword, newpassword ))
|
|
|
|
return NERR_Success;
|
|
|
|
|
2007-03-24 09:02:04 +01:00
|
|
|
if(domainname)
|
|
|
|
FIXME("Ignoring domainname %s.\n", debugstr_w(domainname));
|
|
|
|
|
|
|
|
if((user = NETAPI_FindUser(username)) == NULL)
|
|
|
|
return NERR_UserNotFound;
|
|
|
|
|
|
|
|
if(lstrcmpW(user->user_password, oldpassword) != 0)
|
|
|
|
return ERROR_INVALID_PASSWORD;
|
|
|
|
|
|
|
|
if(lstrlenW(newpassword) > PWLEN)
|
|
|
|
return ERROR_PASSWORD_RESTRICTION;
|
|
|
|
|
|
|
|
lstrcpyW(user->user_password, newpassword);
|
|
|
|
|
|
|
|
return NERR_Success;
|
2007-02-22 15:34:10 +01:00
|
|
|
}
|
2007-07-16 16:04:07 +02:00
|
|
|
|
2007-08-03 00:45:40 +02:00
|
|
|
NET_API_STATUS WINAPI NetUseAdd(LMSTR servername, DWORD level, LPBYTE bufptr, LPDWORD parm_err)
|
2007-07-16 16:04:07 +02:00
|
|
|
{
|
|
|
|
FIXME("%s %d %p %p stub\n", debugstr_w(servername), level, bufptr, parm_err);
|
|
|
|
return NERR_Success;
|
|
|
|
}
|
2011-02-06 19:39:33 +01:00
|
|
|
|
|
|
|
NET_API_STATUS WINAPI NetUseDel(LMSTR servername, LMSTR usename, DWORD forcecond)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %d stub\n", debugstr_w(servername), debugstr_w(usename), forcecond);
|
|
|
|
return NERR_Success;
|
|
|
|
}
|