gpt4 book ai didi

c# - Marshal.PtrToStructure 在 64 位上崩溃

转载 作者:行者123 更新时间:2023-12-01 17:52:25 27 4
gpt4 key购买 nike

在 64 位中运行时,我的单元测试在这段代码上崩溃。

崩溃发生在循环第二次迭代的 Marshal.PtrToStructure 调用上。 “entriesRead”显示为 4,因此它应该能够正确读取,但事实并非如此。 Marshal.SizeOf(typeof(WinAPI.NETAPI32.USER_INFO_4)) 在 64 位中为 192 字节。这是错误的根源吗?

    ....
try {
int entriesRead;
int totalEntries;
int resumeHandle;
var result = WinAPI.NETAPI32.NetUserEnum(
this.NTCompatibleHostName,
3,
2,
out bufPtr,
-1,
out entriesRead,
out totalEntries,
out resumeHandle
);
if (result != 0) {
throw new NetApiException(
result,
"Failed to enumerate local users on host '{0}'",
Host
);
}
var structSize = Marshal.SizeOf(typeof(WinAPI.NETAPI32.USER_INFO_4));
var startAddr = bufPtr.ToInt64();
var endAddr = startAddr + entriesRead * structSize;
for (var offset = startAddr; offset < endAddr; offset += structSize) {
var userInfo =
(WinAPI.NETAPI32.USER_INFO_4)Marshal.PtrToStructure(
new IntPtr(offset),
typeof(WinAPI.NETAPI32.USER_INFO_4)

);

}
} catch (Exception error) {
}

[StructLayout(LayoutKind.Sequential)]
public struct USER_INFO_4 {
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_name;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_password;
public uint usri4_password_age;
public uint usri4_priv;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_home_dir;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_comment;
public uint usri4_flags;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_script_path;
public uint usri4_auth_flags;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_full_name;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_usr_comment;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_parms;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_workstations;
public uint usri4_last_logon;
public uint usri4_last_logoff;
public uint usri4_acct_expires;
public uint usri4_max_storage;
public uint usri4_units_per_week;
public IntPtr usri4_logon_hours;
public uint usri4_bad_pw_count;
public uint usri4_num_logons;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_logon_server;
public uint usri4_country_code;
public uint usri4_code_page;
public IntPtr usri4_user_sid;
public uint usri4_primary_group_id;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_profile;
[MarshalAs(UnmanagedType.LPWStr)]
public string usri4_home_dir_drive;
public uint usri4_password_expired;
}


[DllImport("netapi32.dll")]
[return: MarshalAs(UnmanagedType.U4)]
public static extern NET_API_STATUS NetUserEnum([MarshalAs(UnmanagedType.LPWStr)] string servername, int level, int filter, out IntPtr bufptr, int prefmaxlen, out int entriesread, out int totalentries, out int resume_handle);

最佳答案

该结构已正确翻译。它的尺寸是正确的。您对函数调用的翻译是正确的。

问题是您正在通过级别 3。这意味着该函数返回 USER_INFO_3 而不是 USER_INFO_4NetUserEnum 的文档完全没有提及它返回 USER_INFO_4 值。为了获取 USER_INFO_4 值,您必须调用 NetUserGetInfo

调用NetUserEnum,传递服务器名称和级别值0。这将枚举用户名。然后将每个用户名以及服务器名称传递给级别为 4 的 NetUserGetInfo

关于c# - Marshal.PtrToStructure 在 64 位上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28805095/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com