aboutsummaryrefslogtreecommitdiffstats
path: root/net/netlink/attr.c
diff options
context:
space:
mode:
authorHolger Eitzenberger <holger@eitzenberger.org>2009-03-25 13:26:30 -0400
committerPatrick McHardy <kaber@trash.net>2009-03-25 13:26:30 -0400
commite487eb99cf9381a4f8254fa01747a85818da612b (patch)
tree2381e552d88063982bea03a16db942ebcc295fc2 /net/netlink/attr.c
parentd0dba7255b541f1651a88e75ebdb20dd45509c2f (diff)
netlink: add nla_policy_len()
It calculates the max. length of a Netlink policy, which is usefull for allocating Netlink buffers roughly the size of the actual message. Signed-off-by: Holger Eitzenberger <holger@eitzenberger.org> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netlink/attr.c')
-rw-r--r--net/netlink/attr.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/net/netlink/attr.c b/net/netlink/attr.c
index 56c3ce7fe29a..ae32c573df00 100644
--- a/net/netlink/attr.c
+++ b/net/netlink/attr.c
@@ -133,6 +133,32 @@ errout:
133} 133}
134 134
135/** 135/**
136 * nla_policy_len - Determin the max. length of a policy
137 * @policy: policy to use
138 * @n: number of policies
139 *
140 * Determines the max. length of the policy. It is currently used
141 * to allocated Netlink buffers roughly the size of the actual
142 * message.
143 *
144 * Returns 0 on success or a negative error code.
145 */
146int
147nla_policy_len(const struct nla_policy *p, int n)
148{
149 int i, len = 0;
150
151 for (i = 0; i < n; i++) {
152 if (p->len)
153 len += nla_total_size(p->len);
154 else if (nla_attr_minlen[p->type])
155 len += nla_total_size(nla_attr_minlen[p->type]);
156 }
157
158 return len;
159}
160
161/**
136 * nla_parse - Parse a stream of attributes into a tb buffer 162 * nla_parse - Parse a stream of attributes into a tb buffer
137 * @tb: destination array with maxtype+1 elements 163 * @tb: destination array with maxtype+1 elements
138 * @maxtype: maximum attribute type to be expected 164 * @maxtype: maximum attribute type to be expected
@@ -456,6 +482,7 @@ int nla_append(struct sk_buff *skb, int attrlen, const void *data)
456} 482}
457 483
458EXPORT_SYMBOL(nla_validate); 484EXPORT_SYMBOL(nla_validate);
485EXPORT_SYMBOL(nla_policy_len);
459EXPORT_SYMBOL(nla_parse); 486EXPORT_SYMBOL(nla_parse);
460EXPORT_SYMBOL(nla_find); 487EXPORT_SYMBOL(nla_find);
461EXPORT_SYMBOL(nla_strlcpy); 488EXPORT_SYMBOL(nla_strlcpy);