- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用其他人编写的项目从 Parrot AR 无人机接收一些数据。许多数据以字节数组的形式出现,我正在使用的这个库使用一堆结构进行解析。总的来说,我对编码真的很陌生。
我有一个看起来像这样的结构:
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]
public unsafe struct navdata_vision_detect_t
{
public ushort tag;
public ushort size;
public uint nb_detected;
public fixed uint type [4]; // <Ctype "c_uint32 * 4">
public fixed uint xc [4]; // <Ctype "c_uint32 * 4">
public fixed uint yc [4]; // <Ctype "c_uint32 * 4">
public fixed uint width [4]; // <Ctype "c_uint32 * 4">
public fixed uint height [4]; // <Ctype "c_uint32 * 4">
public fixed uint dist [4]; // <Ctype "c_uint32 * 4">
public fixed float orientation_angle [4]; // <Ctype "float32_t * 4">
}
但是,如果我尝试访问 navdata_vision_detect_t 的实例并获得固定的 uint 值,我必须使用“fixed”关键字,这看起来真的很乱:
unsafe private void drawTagDetection()
{
int x, y;
if (_detectData.nb_detected > 0)
{
fixed (uint* xc = _detectData.xc)
{
x = (int)xc[0];
}
fixed (uint* yc = _detectData.yc)
{
y = (int)yc[0];
}
}
我希望能够像访问普通 C# 数组一样访问 uint 数组。我想我应该可以为此使用编码,但我无法让它工作。我试过类似的东西:
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
public uint[] type; // <Ctype "c_uint32 * 4">
这让我删除了“unsafe”和“fixed”关键字,但引起了另一个问题,因为在解析字节数据时,有一个很大的 switch 语句对各种结构进行一些强制转换,如下所示:
private static unsafe void ProcessOption(navdata_option_t* option, ref NavdataBag navigationData){
var tag = (navdata_tag_t) option->tag;
switch (tag)
{
//lots of other stuff here
case navdata_tag_t.NAVDATA_VISION_TAG:
navigationData.vision = *(navdata_vision_t*) option;
break;
}
}
所以我仍然需要在另一个不安全的函数中有一些指向这个结构的指针。我怎样才能让这些结构中的数组变得“安全”,同时仍然允许另一个不安全的函数将我的对象转换为结构?
感谢您提供的任何帮助!
最佳答案
首先,编码为 UnmanagedType.ByValArray
是行不通的:我们有指针而不是值。建议的联合模拟也会失败:数组是 C# 中的引用类型,使用 [FieldOffset(x)]
将无法按预期工作。
我认为你可以这样做:
1) 将您的结构转换为这样的指针结构:
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]
public struct _navdata_vision_detect_t
{
public ushort tag;
public ushort size;
public uint nb_detected;
public IntPtr type; // <Ctype "c_uint32 * 4">
public IntPtr xc; // <Ctype "c_uint32 * 4">
public IntPtr yc; // <Ctype "c_uint32 * 4">
public IntPtr width; // <Ctype "c_uint32 * 4
public IntPtr height; // <Ctype "c_uint32 * 4">
public IntPtr dist; // <Ctype "c_uint32 * 4">
public IntPtr orientation_angle; // <Ctype "float32_t * 4">
}
2) 围绕这个结构包装一个类。该类应包含上述结构作为成员。它还应该以“安全的方式”镜像所有结构成员。
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]
public class navdata_vision_detect_t
{
public ushort tag;
public ushort size;
public uint nb_detected;
public uint[] type; // <Ctype "c_uint32 * 4">
public uint[] xc; // <Ctype "c_uint32 * 4">
public uint[] yc; // <Ctype "c_uint32 * 4">
public uint[] width; // <Ctype "c_uint32 * 4
public uint[] height; // <Ctype "c_uint32 * 4">
public uint[] dist; // <Ctype "c_uint32 * 4">
public float[] orientation_angle; // <Ctype "float32_t * 4">
internal _navdata_vision_detect_t data;
}
3) 现在您需要一个自定义编码器来手动将数据从指向的数据传输到实际数组。请记住(不幸的是)您不能在结构上使用自定义编码器,只能在 P/Invoke 调用上使用。您的自定义编码器可能如下所示:
public class myCustomMarshaler : ICustomMarshaler
{
[ThreadStatic]
private navdata_vision_detect_t marshaledObj;
private static myCustomMarshaler marshaler = null;
public static ICustomMarshaler GetInstance(string cookie)
{
if (marshaler == null)
{
marshaler = new myCustomMarshaler();
}
return marshaler;
}
public int GetNativeDataSize()
{
return Marshal.SizeOf(typeof(_navdata_vision_detect_t));
}
public System.IntPtr MarshalManagedToNative(object managedObj)
{
if (!(managedObj is navdata_vision_detect_t))
{
throw new ArgumentException("Specified object is not a navdata_vision_detect_t object.", "managedObj");
}
else
{
this.marshaledObj = (navdata_vision_detect_t)managedObj;
}
IntPtr ptr = Marshal.AllocHGlobal(this.GetNativeDataSize());
if (ptr == IntPtr.Zero)
{
throw new Exception("Unable to allocate memory to.");
}
Marshal.StructureToPtr(this.marshaledObj.data, ptr, false);
return ptr;
}
public object MarshalNativeToManaged(System.IntPtr pNativeData)
{
marshaledObj.tag = marshaledObj.data.tag;
marshaledObj.size = marshaledObj.data.size;
marshaledObj.nb_detected = marshaledObj.data.nb_detected;
for (int i=0; i<3; i++)
{
Int32 _type = Marshal.ReadInt32(this.marshaledObj.data.type, i * sizeof(Int32));
this.marshaledObj.type[i] = Convert.ToUInt32(_type)
Int32 _xc = Marshal.ReadInt32(this.marshaledObj.data.xc, i * sizeof(Int32));
this.marshaledObj.xc[i] = Convert.ToUInt32(_xc)
Int32 _yc = Marshal.ReadInt32(this.marshaledObj.data.yc, i * sizeof(Int32));
this.marshaledObj.yc[i] = Convert.ToUInt32(_yc)
Int32 _width = Marshal.ReadInt32(this.marshaledObj.data.width, i * sizeof(Int32));
this.marshaledObj.width[i] = Convert.ToUInt32(_width)
Int32 _height = Marshal.ReadInt32(this.marshaledObj.data.height, i * sizeof(Int32));
this.marshaledObj.height[i] = Convert.ToUInt32(_height)
Int32 _dist = Marshal.ReadInt32(this.marshaledObj.data.dist, i * sizeof(Int32));
this.marshaledObj.dist[i] = Convert.ToUInt32(_dist)
// Marshal class doesn't have ReadFloat method, so we will read Int32 and convert it to float
Int32 _orientation_angle = Marshal.ReadInt32(this.marshaledObj.data.orientation_angle, i * sizeof(Int32));
byte[] tmpBytes = BitConverter.GetBytes(_orientation_angle);
this.marshaledObj.orientation_angle[i] = BitConverter.ToFloat(tmpBytes);
}
// Here is your safe "structure"
return this.marshaledObj;
}
public void CleanUpManagedData(object managedObj)
{
}
public void CleanUpNativeData(System.IntPtr pNativeData)
{
Marshal.FreeHGlobal(pNativeData);
}
}
4) 在外部方法中使用您的结构和自定义编码器,如下所示:
[DllImport("legacy.dll", CharSet = CharSet.Ansi)]
public static extern short doLegacyStuff(
[In, Out, MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(myCustomMarshaler))]
navdata_vision_detect_t navdata);
5) 您可以使用 PtrToStructure() 以“安全方式”将字节数组转换为结构:
GCHandle handle = GCHandle.Alloc(bytes, GCHandleType.Pinned);
navdata_vision_t data = (navdata_vision_t)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(navdata_vision_t));
handle.Free();
关于c# - 摆脱不安全的代码,从字节编码 uint 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28424696/
我正在学习 Spring 安全性,但我对它的灵活性感到困惑.. 我知道我可以通过在标签中定义规则来保护网址 然后我看到有一个@secure 注释可以保护方法。 然后还有其他注释来保护域(或 POJO)
假设有一个 key 加密 key 位于内存中并且未写入文件或数据库... byte[] kek = new byte[32]; secureRandom.nextBytes(kek); byte[]
我有 Spring Security 3.2.0 RC1 的问题 我正在使用标签来连接我 这表示“方法‘setF
我正在创建一个使用 Node Js 服务器 API 的 Flutter 应用程序。对于授权,我决定将 JWT 与私钥/公钥一起使用。服务器和移动客户端之间的通信使用 HTTPS。 Flutter 应用
在过去的几年里,我一直在使用范围从 Raphael.js 的 javascript 库。至 D3 ,我已经为自己的教育操纵了来自网络各地的动画。我已经从各种 git 存储库下载了 js 脚本,例如 s
在 python 中实现身份验证的好方法是什么?已经存在的东西也很好。我需要它通过不受信任的网络连接进行身份验证。它不需要太高级,只要足以安全地获取通用密码即可。我查看了 ssl 模块。但那个模块让我
我正在尝试学习“如何在 Hadoop 中实现 Kerberos?”我已经看过这个文档 https://issues.apache.org/jira/browse/HADOOP-4487我还了解了基本的
我有一个带有 apache2、php、mysql 的生产服务器。我现在只有一个站点 (mysite.com) 作为虚拟主机。我想把 phpmyadmin、webalizer 和 webmin 放在那里
前些天在网上看到防火墙软件OPNsense,对其有了兴趣,以前写过一个其前面的一个软件M0n0wall( 关于m0n0wa
我在 Spring Boot 和 oauth2(由 Google 提供)上编写了 rest 后端,在 "/login" 上自动重定向。除了 web 的 oauth 之外,我还想在移动后端进行 Fire
我想调用类 Foo,它的构造函数中有抽象类 Base。我希望能够从派生自 Base 的 Derived 调用 Foo 并使用 Derived覆盖方法而不是 Base 的方法。 我只能按照指示使用原始指
如何提高 session 的安全性? $this->session->userdata('userid') 我一直在为我的 ajax 调用扔掉这个小坏蛋。有些情况我没有。然后我想,使用 DOM 中的
我目前正在为某些人提供程序集编译服务。他们可以在在线编辑器中输入汇编代码并进行编译。然后编译它时,代码通过ajax请求发送到我的服务器,编译并返回程序的输出。 但是,我想知道我可以做些什么来防止对服务
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
目前,我通过将 session 中的 key 与 MySQl 数据库中的相同 key 相匹配来验证用户 session 。我使用随机数重新生成 session ,该随机数在每个页面加载时都受 MD5
Microsoft 模式与实践团队提供了一个很棒的 pdf,称为:“构建安全的 asp.net 应用程序”。 microsoft pdf 由于它是为 .Net 1.0 编写的,所以现在有点旧了。有谁知
在 Lua 中,通常会使用 math.random 生成随机值和/或字符串。 & math.randomseed , 其中 os.time用于 math.randomseed . 然而,这种方法有一个
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我们有一个严重依赖 Ajax 的应用程序。确保对服务器端脚本的请求不是通过独立程序而是通过坐在浏览器上的实际用户的好方法是什么 最佳答案 真的没有。 通过浏览器发送的任何请求都可以由独立程序伪造。 归
我正在寻找使用 WebSockets 与我们的服务器通信来实现 web (angular) 和 iPhone 应用程序。在过去使用 HTTP 请求时,我们使用请求数据、url、时间戳等的哈希值来验证和
我是一名优秀的程序员,十分优秀!