cregit-Linux how code gets into the kernel

Release 4.7 net/core/gen_stats.c

Directory: net/core
/*
 * net/core/gen_stats.c
 *
 *             This program is free software; you can redistribute it and/or
 *             modify it under the terms of the GNU General Public License
 *             as published by the Free Software Foundation; either version
 *             2 of the License, or (at your option) any later version.
 *
 * Authors:  Thomas Graf <tgraf@suug.ch>
 *           Jamal Hadi Salim
 *           Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
 *
 * See Documentation/networking/gen_stats.txt
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/socket.h>
#include <linux/rtnetlink.h>
#include <linux/gen_stats.h>
#include <net/netlink.h>
#include <net/gen_stats.h>



static inline int gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size, int padattr) { if (nla_put_64bit(d->skb, type, size, buf, padattr)) goto nla_put_failure; return 0; nla_put_failure: kfree(d->xstats); d->xstats = NULL; d->xstats_len = 0; spin_unlock_bh(d->lock); return -1; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller5467.50%240.00%
ignacy gawedzkiignacy gawedzki1923.75%120.00%
nicolas dichtelnicolas dichtel67.50%120.00%
patrick mchardypatrick mchardy11.25%120.00%
Total80100.00%5100.00%

/** * gnet_stats_start_copy_compat - start dumping procedure in compatibility mode * @skb: socket buffer to put statistics TLVs into * @type: TLV type for top level statistic TLV * @tc_stats_type: TLV type for backward compatibility struct tc_stats TLV * @xstats_type: TLV type for backward compatibility xstats TLV * @lock: statistics lock * @d: dumping handle * @padattr: padding attribute * * Initializes the dumping handle, grabs the statistic lock and appends * an empty TLV header to the socket buffer for use a container for all * other statistic TLVS. * * The dumping handle is marked to be in backward compatibility mode telling * all gnet_stats_copy_XXX() functions to fill a local copy of struct tc_stats. * * Returns 0 on success or -1 if the room in the socket buffer was not sufficient. */
int gnet_stats_start_copy_compat(struct sk_buff *skb, int type, int tc_stats_type, int xstats_type, spinlock_t *lock, struct gnet_dump *d, int padattr) __acquires (lock) { memset(d, 0, sizeof(*d)); spin_lock_bh(lock); d->lock = lock; if (type) d->tail = (struct nlattr *)skb_tail_pointer(skb); d->skb = skb; d->compat_tc_stats = tc_stats_type; d->compat_xstats = xstats_type; d->padattr = padattr; if (d->tail) return gnet_stats_copy(d, type, NULL, 0, padattr); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller8467.74%114.29%
thomas grafthomas graf2116.94%228.57%
nicolas dichtelnicolas dichtel118.87%114.29%
eric dumazeteric dumazet43.23%114.29%
arnaldo carvalho de meloarnaldo carvalho de melo32.42%114.29%
patrick mchardypatrick mchardy10.81%114.29%
Total124100.00%7100.00%

EXPORT_SYMBOL(gnet_stats_start_copy_compat); /** * gnet_stats_start_copy - start dumping procedure in compatibility mode * @skb: socket buffer to put statistics TLVs into * @type: TLV type for top level statistic TLV * @lock: statistics lock * @d: dumping handle * @padattr: padding attribute * * Initializes the dumping handle, grabs the statistic lock and appends * an empty TLV header to the socket buffer for use a container for all * other statistic TLVS. * * Returns 0 on success or -1 if the room in the socket buffer was not sufficient. */
int gnet_stats_start_copy(struct sk_buff *skb, int type, spinlock_t *lock, struct gnet_dump *d, int padattr) { return gnet_stats_start_copy_compat(skb, type, 0, 0, lock, d, padattr); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller3888.37%150.00%
nicolas dichtelnicolas dichtel511.63%150.00%
Total43100.00%2100.00%

EXPORT_SYMBOL(gnet_stats_start_copy);
static void __gnet_stats_copy_basic_cpu(struct gnet_stats_basic_packed *bstats, struct gnet_stats_basic_cpu __percpu *cpu) { int i; for_each_possible_cpu(i) { struct gnet_stats_basic_cpu *bcpu = per_cpu_ptr(cpu, i); unsigned int start; u64 bytes; u32 packets; do { start = u64_stats_fetch_begin_irq(&bcpu->syncp); bytes = bcpu->bstats.bytes; packets = bcpu->bstats.packets; } while (u64_stats_fetch_retry_irq(&bcpu->syncp, start)); bstats->bytes += bytes; bstats->packets += packets; } }

Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend10098.04%150.00%
americo wangamerico wang21.96%150.00%
Total102100.00%2100.00%


void __gnet_stats_copy_basic(struct gnet_stats_basic_packed *bstats, struct gnet_stats_basic_cpu __percpu *cpu, struct gnet_stats_basic_packed *b) { if (cpu) { __gnet_stats_copy_basic_cpu(bstats, cpu); } else { bstats->bytes = b->bytes; bstats->packets = b->packets; } }

Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend53100.00%1100.00%
Total53100.00%1100.00%

EXPORT_SYMBOL(__gnet_stats_copy_basic); /** * gnet_stats_copy_basic - copy basic statistics into statistic TLV * @d: dumping handle * @cpu: copy statistic per cpu * @b: basic statistics * * Appends the basic statistics to the top level TLV created by * gnet_stats_start_copy(). * * Returns 0 on success or -1 with the statistic lock released * if the room in the socket buffer was not sufficient. */
int gnet_stats_copy_basic(struct gnet_dump *d, struct gnet_stats_basic_cpu __percpu *cpu, struct gnet_stats_basic_packed *b) { struct gnet_stats_basic_packed bstats = {0}; __gnet_stats_copy_basic(&bstats, cpu, b); if (d->compat_tc_stats) { d->tc_stats.bytes = bstats.bytes; d->tc_stats.packets = bstats.packets; } if (d->tail) { struct gnet_stats_basic sb; memset(&sb, 0, sizeof(sb)); sb.bytes = bstats.bytes; sb.packets = bstats.packets; return gnet_stats_copy(d, TCA_STATS_BASIC, &sb, sizeof(sb), TCA_STATS_PAD); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller5139.53%120.00%
eric dumazeteric dumazet3527.13%120.00%
john fastabendjohn fastabend3224.81%120.00%
thomas grafthomas graf96.98%120.00%
nicolas dichtelnicolas dichtel21.55%120.00%
Total129100.00%5100.00%

EXPORT_SYMBOL(gnet_stats_copy_basic); /** * gnet_stats_copy_rate_est - copy rate estimator statistics into statistics TLV * @d: dumping handle * @b: basic statistics * @r: rate estimator statistics * * Appends the rate estimator statistics to the top level TLV created by * gnet_stats_start_copy(). * * Returns 0 on success or -1 with the statistic lock released * if the room in the socket buffer was not sufficient. */
int gnet_stats_copy_rate_est(struct gnet_dump *d, const struct gnet_stats_basic_packed *b, struct gnet_stats_rate_est64 *r) { struct gnet_stats_rate_est est; int res; if (b && !gen_estimator_active(b, r)) return 0; est.bps = min_t(u64, UINT_MAX, r->bps); /* we have some time before reaching 2^32 packets per second */ est.pps = r->pps; if (d->compat_tc_stats) { d->tc_stats.bps = est.bps; d->tc_stats.pps = est.pps; } if (d->tail) { res = gnet_stats_copy(d, TCA_STATS_RATE_EST, &est, sizeof(est), TCA_STATS_PAD); if (res < 0 || est.bps == r->bps) return res; /* emit 64bit stats only if needed */ return gnet_stats_copy(d, TCA_STATS_RATE_EST64, r, sizeof(*r), TCA_STATS_PAD); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
eric dumazeteric dumazet9559.01%240.00%
david s. millerdavid s. miller5332.92%120.00%
thomas grafthomas graf95.59%120.00%
nicolas dichtelnicolas dichtel42.48%120.00%
Total161100.00%5100.00%

EXPORT_SYMBOL(gnet_stats_copy_rate_est);
static void __gnet_stats_copy_queue_cpu(struct gnet_stats_queue *qstats, const struct gnet_stats_queue __percpu *q) { int i; for_each_possible_cpu(i) { const struct gnet_stats_queue *qcpu = per_cpu_ptr(q, i); qstats->qlen = 0; qstats->backlog += qcpu->backlog; qstats->drops += qcpu->drops; qstats->requeues += qcpu->requeues; qstats->overlimits += qcpu->overlimits; } }

Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend78100.00%1100.00%
Total78100.00%1100.00%


static void __gnet_stats_copy_queue(struct gnet_stats_queue *qstats, const struct gnet_stats_queue __percpu *cpu, const struct gnet_stats_queue *q, __u32 qlen) { if (cpu) { __gnet_stats_copy_queue_cpu(qstats, cpu); } else { qstats->qlen = q->qlen; qstats->backlog = q->backlog; qstats->drops = q->drops; qstats->requeues = q->requeues; qstats->overlimits = q->overlimits; } qstats->qlen = qlen; }

Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend89100.00%1100.00%
Total89100.00%1100.00%

/** * gnet_stats_copy_queue - copy queue statistics into statistics TLV * @d: dumping handle * @cpu_q: per cpu queue statistics * @q: queue statistics * @qlen: queue length statistics * * Appends the queue statistics to the top level TLV created by * gnet_stats_start_copy(). Using per cpu queue statistics if * they are available. * * Returns 0 on success or -1 with the statistic lock released * if the room in the socket buffer was not sufficient. */
int gnet_stats_copy_queue(struct gnet_dump *d, struct gnet_stats_queue __percpu *cpu_q, struct gnet_stats_queue *q, __u32 qlen) { struct gnet_stats_queue qstats = {0}; __gnet_stats_copy_queue(&qstats, cpu_q, q, qlen); if (d->compat_tc_stats) { d->tc_stats.drops = qstats.drops; d->tc_stats.qlen = qstats.qlen; d->tc_stats.backlog = qstats.backlog; d->tc_stats.overlimits = qstats.overlimits; } if (d->tail) return gnet_stats_copy(d, TCA_STATS_QUEUE, &qstats, sizeof(qstats), TCA_STATS_PAD); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller6857.14%120.00%
john fastabendjohn fastabend4033.61%240.00%
thomas grafthomas graf97.56%120.00%
nicolas dichtelnicolas dichtel21.68%120.00%
Total119100.00%5100.00%

EXPORT_SYMBOL(gnet_stats_copy_queue); /** * gnet_stats_copy_app - copy application specific statistics into statistics TLV * @d: dumping handle * @st: application specific statistics data * @len: length of data * * Appends the application specific statistics to the top level TLV created by * gnet_stats_start_copy() and remembers the data for XSTATS if the dumping * handle is in backward compatibility mode. * * Returns 0 on success or -1 with the statistic lock released * if the room in the socket buffer was not sufficient. */
int gnet_stats_copy_app(struct gnet_dump *d, void *st, int len) { if (d->compat_xstats) { d->xstats = kmemdup(st, len, GFP_ATOMIC); if (!d->xstats) goto err_out; d->xstats_len = len; } if (d->tail) return gnet_stats_copy(d, TCA_STATS_APP, st, len, TCA_STATS_PAD); return 0; err_out: d->xstats_len = 0; spin_unlock_bh(d->lock); return -1; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller4243.75%120.00%
ignacy gawedzkiignacy gawedzki3637.50%120.00%
thomas grafthomas graf1616.67%240.00%
nicolas dichtelnicolas dichtel22.08%120.00%
Total96100.00%5100.00%

EXPORT_SYMBOL(gnet_stats_copy_app); /** * gnet_stats_finish_copy - finish dumping procedure * @d: dumping handle * * Corrects the length of the top level TLV to include all TLVs added * by gnet_stats_copy_XXX() calls. Adds the backward compatibility TLVs * if gnet_stats_start_copy_compat() was used and releases the statistics * lock. * * Returns 0 on success or -1 with the statistic lock released * if the room in the socket buffer was not sufficient. */
int gnet_stats_finish_copy(struct gnet_dump *d) { if (d->tail) d->tail->nla_len = skb_tail_pointer(d->skb) - (u8 *)d->tail; if (d->compat_tc_stats) if (gnet_stats_copy(d, d->compat_tc_stats, &d->tc_stats, sizeof(d->tc_stats), d->padattr) < 0) return -1; if (d->compat_xstats && d->xstats) { if (gnet_stats_copy(d, d->compat_xstats, d->xstats, d->xstats_len, d->padattr) < 0) return -1; } kfree(d->xstats); d->xstats = NULL; d->xstats_len = 0; spin_unlock_bh(d->lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller10873.97%114.29%
ignacy gawedzkiignacy gawedzki1913.01%114.29%
nicolas dichtelnicolas dichtel85.48%114.29%
thomas grafthomas graf74.79%228.57%
arnaldo carvalho de meloarnaldo carvalho de melo32.05%114.29%
patrick mchardypatrick mchardy10.68%114.29%
Total146100.00%7100.00%

EXPORT_SYMBOL(gnet_stats_finish_copy);

Overall Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller52840.77%29.09%
john fastabendjohn fastabend39830.73%313.64%
eric dumazeteric dumazet16712.90%627.27%
ignacy gawedzkiignacy gawedzki745.71%14.55%
thomas grafthomas graf725.56%418.18%
nicolas dichtelnicolas dichtel403.09%14.55%
patrick mchardypatrick mchardy60.46%14.55%
arnaldo carvalho de meloarnaldo carvalho de melo60.46%14.55%
americo wangamerico wang20.15%14.55%
luis de bethencourtluis de bethencourt10.08%14.55%
masanari iidamasanari iida10.08%14.55%
Total1295100.00%22100.00%
Directory: net/core
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}