From: Wolfgang Grandegger <wg@domain.hid>
To: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] rtdm_safe_copy_from_user...
Date: Fri, 19 May 2006 11:42:10 +0200 [thread overview]
Message-ID: <446D92F2.6000706@domain.hid> (raw)
[-- Attachment #1: Type: text/plain, Size: 395 bytes --]
Hello,
I propose to add the following commonly used RTDM inline functions to
rtdm_driver.h:
static inline int rtdm_safe_copy_from_user()
static inline int rtdm_safe_copy_to_user()
The attached patch also fixes a bug in rtdm_strncpy_from_user(). I think
__xn_access_ok() returns a non-zero value if the access is safe. Has it
ever worked? I don't care about the real name.
Wolfgang.
[-- Attachment #2: rtdm-safe-copy-user.patch --]
[-- Type: text/x-patch, Size: 1397 bytes --]
+ diff -u xenomai/include/rtdm/rtdm_driver.h.ORIG xenomai/include/rtdm/rtdm_driver.h
--- xenomai/include/rtdm/rtdm_driver.h.ORIG 2006-04-23 09:40:39.000000000 +0200
+++ xenomai/include/rtdm/rtdm_driver.h 2006-05-19 10:38:20.654561392 +0200
@@ -1047,12 +1047,30 @@
return __xn_copy_to_user(user_info, dst, src, size);
}
+static inline int rtdm_safe_copy_from_user(rtdm_user_info_t *user_info,
+ void *dst, const void __user *src,
+ size_t size)
+{
+ if (unlikely(!__xn_access_ok(user_info, VERIFY_READ, src, 1)))
+ return -EFAULT;
+ return __xn_copy_from_user(user_info, dst, src, size);
+}
+
+static inline int rtdm_safe_copy_to_user(rtdm_user_info_t *user_info,
+ void __user *dst, const void *src,
+ size_t size)
+{
+ if (unlikely(!__xn_access_ok(user_info, VERIFY_WRITE, src, 1)))
+ return -EFAULT;
+ return __xn_copy_to_user(user_info, dst, src, size);
+}
+
static inline int rtdm_strncpy_from_user(rtdm_user_info_t *user_info,
char *dst,
const char __user *src,
size_t count)
{
- if (unlikely(__xn_access_ok(user_info, VERIFY_READ, src, 1)))
+ if (unlikely(!__xn_access_ok(user_info, VERIFY_READ, src, 1)))
return -EFAULT;
return __xn_strncpy_from_user(user_info, dst, src, count);
}
next reply other threads:[~2006-05-19 9:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-05-19 9:42 Wolfgang Grandegger [this message]
2006-05-19 12:17 ` [Xenomai-core] rtdm_safe_copy_from_user Jan Kiszka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=446D92F2.6000706@domain.hid \
--to=wg@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.