开发者

copy_from_user twice - character device

I've implemented a character device and I'd like to ask If this is correct:

  1. In a Userspace I've a struct with 2 pointers.

  2. I write this struct into my device.

  3. In my write function in char device I copy_from_user this structure into kmalloced space.

  4. After this I'm in KS and got 2 pointers to US so I want to copy_from_user each. Am I allowed to do so right after first copy_from_user by using this copied addresses? They point to a data in US application which called write function not to the write function argument char *buf开发者_JS百科.


Seems like it should work.

I'd probably be inclined to put this sort of thing into an ioctl instead of write, depending on whether the operation is similar to what other devices do when written to. But that's just style; it's functionally the same.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜