Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34717
b: refs/heads/master
c: be7263b
h: refs/heads/master
i:
  34715: c17a894
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Sep 22, 2006
1 parent 5fece54 commit 7f0f03a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bc80b656657251fc936d2d93fc70d5566c1c7d29
refs/heads/master: be7263b7b72ed9d5d25958f2b71e77e889e4845a
34 changes: 34 additions & 0 deletions trunk/net/netfilter/xt_MARK.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,35 @@ checkentry_v1(const char *tablename,
return 1;
}

#ifdef CONFIG_COMPAT
struct compat_xt_mark_target_info_v1 {
compat_ulong_t mark;
u_int8_t mode;
u_int8_t __pad1;
u_int16_t __pad2;
};

static void compat_from_user_v1(void *dst, void *src)
{
struct compat_xt_mark_target_info_v1 *cm = src;
struct xt_mark_target_info_v1 m = {
.mark = cm->mark,
.mode = cm->mode,
};
memcpy(dst, &m, sizeof(m));
}

static int compat_to_user_v1(void __user *dst, void *src)
{
struct xt_mark_target_info_v1 *m = src;
struct compat_xt_mark_target_info_v1 cm = {
.mark = m->mark,
.mode = m->mode,
};
return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
}
#endif /* CONFIG_COMPAT */

static struct xt_target xt_mark_target[] = {
{
.name = "MARK",
Expand All @@ -126,6 +155,11 @@ static struct xt_target xt_mark_target[] = {
.checkentry = checkentry_v1,
.target = target_v1,
.targetsize = sizeof(struct xt_mark_target_info_v1),
#ifdef CONFIG_COMPAT
.compatsize = sizeof(struct compat_xt_mark_target_info_v1),
.compat_from_user = compat_from_user_v1,
.compat_to_user = compat_to_user_v1,
#endif
.table = "mangle",
.me = THIS_MODULE,
},
Expand Down

0 comments on commit 7f0f03a

Please sign in to comment.