Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/core/gen_stats.c |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 10 | * Jamal Hadi Salim |
| 11 | * Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 12 | * |
| 13 | * See Documentation/networking/gen_stats.txt |
| 14 | */ |
| 15 | |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/socket.h> |
| 21 | #include <linux/rtnetlink.h> |
| 22 | #include <linux/gen_stats.h> |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 23 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <net/gen_stats.h> |
| 25 | |
| 26 | |
| 27 | static inline int |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 28 | gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size, int padattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 30 | if (nla_put_64bit(d->skb, type, size, buf, padattr)) |
David S. Miller | 14ad664 | 2012-04-01 20:47:35 -0400 | [diff] [blame] | 31 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | return 0; |
| 33 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 34 | nla_put_failure: |
Ignacy Gawędzki | 1c4cff0 | 2015-02-13 14:47:05 -0800 | [diff] [blame] | 35 | kfree(d->xstats); |
| 36 | d->xstats = NULL; |
| 37 | d->xstats_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | spin_unlock_bh(d->lock); |
| 39 | return -1; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * gnet_stats_start_copy_compat - start dumping procedure in compatibility mode |
| 44 | * @skb: socket buffer to put statistics TLVs into |
| 45 | * @type: TLV type for top level statistic TLV |
| 46 | * @tc_stats_type: TLV type for backward compatibility struct tc_stats TLV |
| 47 | * @xstats_type: TLV type for backward compatibility xstats TLV |
| 48 | * @lock: statistics lock |
| 49 | * @d: dumping handle |
Eric Dumazet | e0d194a | 2016-06-08 06:19:45 -0700 | [diff] [blame] | 50 | * @padattr: padding attribute |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | * |
| 52 | * Initializes the dumping handle, grabs the statistic lock and appends |
| 53 | * an empty TLV header to the socket buffer for use a container for all |
| 54 | * other statistic TLVS. |
| 55 | * |
| 56 | * The dumping handle is marked to be in backward compatibility mode telling |
| 57 | * all gnet_stats_copy_XXX() functions to fill a local copy of struct tc_stats. |
| 58 | * |
| 59 | * Returns 0 on success or -1 if the room in the socket buffer was not sufficient. |
| 60 | */ |
| 61 | int |
| 62 | gnet_stats_start_copy_compat(struct sk_buff *skb, int type, int tc_stats_type, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 63 | int xstats_type, spinlock_t *lock, |
| 64 | struct gnet_dump *d, int padattr) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 65 | __acquires(lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | memset(d, 0, sizeof(*d)); |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | spin_lock_bh(lock); |
| 70 | d->lock = lock; |
| 71 | if (type) |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 72 | d->tail = (struct nlattr *)skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | d->skb = skb; |
| 74 | d->compat_tc_stats = tc_stats_type; |
| 75 | d->compat_xstats = xstats_type; |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 76 | d->padattr = padattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | if (d->tail) |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 79 | return gnet_stats_copy(d, type, NULL, 0, padattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | return 0; |
| 82 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 83 | EXPORT_SYMBOL(gnet_stats_start_copy_compat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | /** |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 86 | * gnet_stats_start_copy - start dumping procedure in compatibility mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | * @skb: socket buffer to put statistics TLVs into |
| 88 | * @type: TLV type for top level statistic TLV |
| 89 | * @lock: statistics lock |
| 90 | * @d: dumping handle |
Eric Dumazet | e0d194a | 2016-06-08 06:19:45 -0700 | [diff] [blame] | 91 | * @padattr: padding attribute |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * |
| 93 | * Initializes the dumping handle, grabs the statistic lock and appends |
| 94 | * an empty TLV header to the socket buffer for use a container for all |
| 95 | * other statistic TLVS. |
| 96 | * |
| 97 | * Returns 0 on success or -1 if the room in the socket buffer was not sufficient. |
| 98 | */ |
| 99 | int |
| 100 | gnet_stats_start_copy(struct sk_buff *skb, int type, spinlock_t *lock, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 101 | struct gnet_dump *d, int padattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 103 | return gnet_stats_start_copy_compat(skb, type, 0, 0, lock, d, padattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 105 | EXPORT_SYMBOL(gnet_stats_start_copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 107 | static void |
| 108 | __gnet_stats_copy_basic_cpu(struct gnet_stats_basic_packed *bstats, |
| 109 | struct gnet_stats_basic_cpu __percpu *cpu) |
| 110 | { |
| 111 | int i; |
| 112 | |
| 113 | for_each_possible_cpu(i) { |
| 114 | struct gnet_stats_basic_cpu *bcpu = per_cpu_ptr(cpu, i); |
| 115 | unsigned int start; |
WANG Cong | 02c0fc1 | 2014-10-06 17:01:33 -0700 | [diff] [blame] | 116 | u64 bytes; |
| 117 | u32 packets; |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 118 | |
| 119 | do { |
| 120 | start = u64_stats_fetch_begin_irq(&bcpu->syncp); |
| 121 | bytes = bcpu->bstats.bytes; |
| 122 | packets = bcpu->bstats.packets; |
| 123 | } while (u64_stats_fetch_retry_irq(&bcpu->syncp, start)); |
| 124 | |
WANG Cong | 02c0fc1 | 2014-10-06 17:01:33 -0700 | [diff] [blame] | 125 | bstats->bytes += bytes; |
| 126 | bstats->packets += packets; |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | |
| 130 | void |
| 131 | __gnet_stats_copy_basic(struct gnet_stats_basic_packed *bstats, |
| 132 | struct gnet_stats_basic_cpu __percpu *cpu, |
| 133 | struct gnet_stats_basic_packed *b) |
| 134 | { |
| 135 | if (cpu) { |
| 136 | __gnet_stats_copy_basic_cpu(bstats, cpu); |
| 137 | } else { |
| 138 | bstats->bytes = b->bytes; |
| 139 | bstats->packets = b->packets; |
| 140 | } |
| 141 | } |
| 142 | EXPORT_SYMBOL(__gnet_stats_copy_basic); |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /** |
| 145 | * gnet_stats_copy_basic - copy basic statistics into statistic TLV |
| 146 | * @d: dumping handle |
Luis de Bethencourt | b002fdc | 2016-03-19 21:19:55 +0000 | [diff] [blame] | 147 | * @cpu: copy statistic per cpu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | * @b: basic statistics |
| 149 | * |
| 150 | * Appends the basic statistics to the top level TLV created by |
| 151 | * gnet_stats_start_copy(). |
| 152 | * |
| 153 | * Returns 0 on success or -1 with the statistic lock released |
| 154 | * if the room in the socket buffer was not sufficient. |
| 155 | */ |
| 156 | int |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 157 | gnet_stats_copy_basic(struct gnet_dump *d, |
| 158 | struct gnet_stats_basic_cpu __percpu *cpu, |
| 159 | struct gnet_stats_basic_packed *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 161 | struct gnet_stats_basic_packed bstats = {0}; |
| 162 | |
| 163 | __gnet_stats_copy_basic(&bstats, cpu, b); |
| 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | if (d->compat_tc_stats) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 166 | d->tc_stats.bytes = bstats.bytes; |
| 167 | d->tc_stats.packets = bstats.packets; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 170 | if (d->tail) { |
| 171 | struct gnet_stats_basic sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 173 | memset(&sb, 0, sizeof(sb)); |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 174 | sb.bytes = bstats.bytes; |
| 175 | sb.packets = bstats.packets; |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 176 | return gnet_stats_copy(d, TCA_STATS_BASIC, &sb, sizeof(sb), |
| 177 | TCA_STATS_PAD); |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 178 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return 0; |
| 180 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 181 | EXPORT_SYMBOL(gnet_stats_copy_basic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | /** |
| 184 | * gnet_stats_copy_rate_est - copy rate estimator statistics into statistics TLV |
| 185 | * @d: dumping handle |
Eric Dumazet | d250a5f | 2009-10-02 10:32:18 +0000 | [diff] [blame] | 186 | * @b: basic statistics |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | * @r: rate estimator statistics |
| 188 | * |
| 189 | * Appends the rate estimator statistics to the top level TLV created by |
| 190 | * gnet_stats_start_copy(). |
| 191 | * |
| 192 | * Returns 0 on success or -1 with the statistic lock released |
| 193 | * if the room in the socket buffer was not sufficient. |
| 194 | */ |
| 195 | int |
Eric Dumazet | d250a5f | 2009-10-02 10:32:18 +0000 | [diff] [blame] | 196 | gnet_stats_copy_rate_est(struct gnet_dump *d, |
| 197 | const struct gnet_stats_basic_packed *b, |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 198 | struct gnet_stats_rate_est64 *r) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 200 | struct gnet_stats_rate_est est; |
| 201 | int res; |
| 202 | |
Eric Dumazet | d250a5f | 2009-10-02 10:32:18 +0000 | [diff] [blame] | 203 | if (b && !gen_estimator_active(b, r)) |
| 204 | return 0; |
| 205 | |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 206 | est.bps = min_t(u64, UINT_MAX, r->bps); |
| 207 | /* we have some time before reaching 2^32 packets per second */ |
| 208 | est.pps = r->pps; |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | if (d->compat_tc_stats) { |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 211 | d->tc_stats.bps = est.bps; |
| 212 | d->tc_stats.pps = est.pps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 215 | if (d->tail) { |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 216 | res = gnet_stats_copy(d, TCA_STATS_RATE_EST, &est, sizeof(est), |
| 217 | TCA_STATS_PAD); |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 218 | if (res < 0 || est.bps == r->bps) |
| 219 | return res; |
| 220 | /* emit 64bit stats only if needed */ |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 221 | return gnet_stats_copy(d, TCA_STATS_RATE_EST64, r, sizeof(*r), |
| 222 | TCA_STATS_PAD); |
Eric Dumazet | 45203a3 | 2013-06-06 08:43:22 -0700 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | return 0; |
| 226 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 227 | EXPORT_SYMBOL(gnet_stats_copy_rate_est); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 229 | static void |
| 230 | __gnet_stats_copy_queue_cpu(struct gnet_stats_queue *qstats, |
| 231 | const struct gnet_stats_queue __percpu *q) |
| 232 | { |
| 233 | int i; |
| 234 | |
| 235 | for_each_possible_cpu(i) { |
| 236 | const struct gnet_stats_queue *qcpu = per_cpu_ptr(q, i); |
| 237 | |
| 238 | qstats->qlen = 0; |
| 239 | qstats->backlog += qcpu->backlog; |
| 240 | qstats->drops += qcpu->drops; |
| 241 | qstats->requeues += qcpu->requeues; |
| 242 | qstats->overlimits += qcpu->overlimits; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | static void __gnet_stats_copy_queue(struct gnet_stats_queue *qstats, |
| 247 | const struct gnet_stats_queue __percpu *cpu, |
| 248 | const struct gnet_stats_queue *q, |
| 249 | __u32 qlen) |
| 250 | { |
| 251 | if (cpu) { |
| 252 | __gnet_stats_copy_queue_cpu(qstats, cpu); |
| 253 | } else { |
| 254 | qstats->qlen = q->qlen; |
| 255 | qstats->backlog = q->backlog; |
| 256 | qstats->drops = q->drops; |
| 257 | qstats->requeues = q->requeues; |
| 258 | qstats->overlimits = q->overlimits; |
| 259 | } |
| 260 | |
| 261 | qstats->qlen = qlen; |
| 262 | } |
| 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | /** |
| 265 | * gnet_stats_copy_queue - copy queue statistics into statistics TLV |
| 266 | * @d: dumping handle |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 267 | * @cpu_q: per cpu queue statistics |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * @q: queue statistics |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 269 | * @qlen: queue length statistics |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | * |
| 271 | * Appends the queue statistics to the top level TLV created by |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 272 | * gnet_stats_start_copy(). Using per cpu queue statistics if |
| 273 | * they are available. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | * |
| 275 | * Returns 0 on success or -1 with the statistic lock released |
| 276 | * if the room in the socket buffer was not sufficient. |
| 277 | */ |
| 278 | int |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 279 | gnet_stats_copy_queue(struct gnet_dump *d, |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 280 | struct gnet_stats_queue __percpu *cpu_q, |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 281 | struct gnet_stats_queue *q, __u32 qlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 283 | struct gnet_stats_queue qstats = {0}; |
| 284 | |
| 285 | __gnet_stats_copy_queue(&qstats, cpu_q, q, qlen); |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | if (d->compat_tc_stats) { |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 288 | d->tc_stats.drops = qstats.drops; |
| 289 | d->tc_stats.qlen = qstats.qlen; |
| 290 | d->tc_stats.backlog = qstats.backlog; |
| 291 | d->tc_stats.overlimits = qstats.overlimits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | if (d->tail) |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 295 | return gnet_stats_copy(d, TCA_STATS_QUEUE, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 296 | &qstats, sizeof(qstats), |
| 297 | TCA_STATS_PAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | return 0; |
| 300 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 301 | EXPORT_SYMBOL(gnet_stats_copy_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | /** |
| 304 | * gnet_stats_copy_app - copy application specific statistics into statistics TLV |
| 305 | * @d: dumping handle |
| 306 | * @st: application specific statistics data |
| 307 | * @len: length of data |
| 308 | * |
Masanari Iida | e793c0f | 2014-09-04 23:44:36 +0900 | [diff] [blame] | 309 | * Appends the application specific statistics to the top level TLV created by |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | * gnet_stats_start_copy() and remembers the data for XSTATS if the dumping |
| 311 | * handle is in backward compatibility mode. |
| 312 | * |
| 313 | * Returns 0 on success or -1 with the statistic lock released |
| 314 | * if the room in the socket buffer was not sufficient. |
| 315 | */ |
| 316 | int |
| 317 | gnet_stats_copy_app(struct gnet_dump *d, void *st, int len) |
| 318 | { |
| 319 | if (d->compat_xstats) { |
Ignacy Gawędzki | 1c4cff0 | 2015-02-13 14:47:05 -0800 | [diff] [blame] | 320 | d->xstats = kmemdup(st, len, GFP_ATOMIC); |
| 321 | if (!d->xstats) |
| 322 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | d->xstats_len = len; |
| 324 | } |
| 325 | |
| 326 | if (d->tail) |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 327 | return gnet_stats_copy(d, TCA_STATS_APP, st, len, |
| 328 | TCA_STATS_PAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | return 0; |
Ignacy Gawędzki | 1c4cff0 | 2015-02-13 14:47:05 -0800 | [diff] [blame] | 331 | |
| 332 | err_out: |
| 333 | d->xstats_len = 0; |
| 334 | spin_unlock_bh(d->lock); |
| 335 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 337 | EXPORT_SYMBOL(gnet_stats_copy_app); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
| 339 | /** |
| 340 | * gnet_stats_finish_copy - finish dumping procedure |
| 341 | * @d: dumping handle |
| 342 | * |
| 343 | * Corrects the length of the top level TLV to include all TLVs added |
| 344 | * by gnet_stats_copy_XXX() calls. Adds the backward compatibility TLVs |
| 345 | * if gnet_stats_start_copy_compat() was used and releases the statistics |
| 346 | * lock. |
| 347 | * |
| 348 | * Returns 0 on success or -1 with the statistic lock released |
| 349 | * if the room in the socket buffer was not sufficient. |
| 350 | */ |
| 351 | int |
| 352 | gnet_stats_finish_copy(struct gnet_dump *d) |
| 353 | { |
| 354 | if (d->tail) |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 355 | d->tail->nla_len = skb_tail_pointer(d->skb) - (u8 *)d->tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
| 357 | if (d->compat_tc_stats) |
| 358 | if (gnet_stats_copy(d, d->compat_tc_stats, &d->tc_stats, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 359 | sizeof(d->tc_stats), d->padattr) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | return -1; |
| 361 | |
| 362 | if (d->compat_xstats && d->xstats) { |
| 363 | if (gnet_stats_copy(d, d->compat_xstats, d->xstats, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 364 | d->xstats_len, d->padattr) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | return -1; |
| 366 | } |
| 367 | |
Ignacy Gawędzki | 1c4cff0 | 2015-02-13 14:47:05 -0800 | [diff] [blame] | 368 | kfree(d->xstats); |
| 369 | d->xstats = NULL; |
| 370 | d->xstats_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | spin_unlock_bh(d->lock); |
| 372 | return 0; |
| 373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | EXPORT_SYMBOL(gnet_stats_finish_copy); |