|
@@ -330,8 +330,10 @@ static void l2tp_recv_queue_skb(struct l2tp_session *session, struct sk_buff *sk
|
|
struct sk_buff *skbp;
|
|
struct sk_buff *skbp;
|
|
struct sk_buff *tmp;
|
|
struct sk_buff *tmp;
|
|
u32 ns = L2TP_SKB_CB(skb)->ns;
|
|
u32 ns = L2TP_SKB_CB(skb)->ns;
|
|
|
|
+ struct l2tp_stats *sstats;
|
|
|
|
|
|
spin_lock_bh(&session->reorder_q.lock);
|
|
spin_lock_bh(&session->reorder_q.lock);
|
|
|
|
+ sstats = &session->stats;
|
|
skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
|
|
skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
|
|
if (L2TP_SKB_CB(skbp)->ns > ns) {
|
|
if (L2TP_SKB_CB(skbp)->ns > ns) {
|
|
__skb_queue_before(&session->reorder_q, skbp, skb);
|
|
__skb_queue_before(&session->reorder_q, skbp, skb);
|
|
@@ -339,7 +341,9 @@ static void l2tp_recv_queue_skb(struct l2tp_session *session, struct sk_buff *sk
|
|
"%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
|
|
"%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
|
|
session->name, ns, L2TP_SKB_CB(skbp)->ns,
|
|
session->name, ns, L2TP_SKB_CB(skbp)->ns,
|
|
skb_queue_len(&session->reorder_q));
|
|
skb_queue_len(&session->reorder_q));
|
|
- session->stats.rx_oos_packets++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_oos_packets++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
goto out;
|
|
goto out;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -356,16 +360,23 @@ static void l2tp_recv_dequeue_skb(struct l2tp_session *session, struct sk_buff *
|
|
{
|
|
{
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
int length = L2TP_SKB_CB(skb)->length;
|
|
int length = L2TP_SKB_CB(skb)->length;
|
|
|
|
+ struct l2tp_stats *tstats, *sstats;
|
|
|
|
|
|
/* We're about to requeue the skb, so return resources
|
|
/* We're about to requeue the skb, so return resources
|
|
* to its current owner (a socket receive buffer).
|
|
* to its current owner (a socket receive buffer).
|
|
*/
|
|
*/
|
|
skb_orphan(skb);
|
|
skb_orphan(skb);
|
|
|
|
|
|
- tunnel->stats.rx_packets++;
|
|
|
|
- tunnel->stats.rx_bytes += length;
|
|
|
|
- session->stats.rx_packets++;
|
|
|
|
- session->stats.rx_bytes += length;
|
|
|
|
|
|
+ tstats = &tunnel->stats;
|
|
|
|
+ u64_stats_update_begin(&tstats->syncp);
|
|
|
|
+ sstats = &session->stats;
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ tstats->rx_packets++;
|
|
|
|
+ tstats->rx_bytes += length;
|
|
|
|
+ sstats->rx_packets++;
|
|
|
|
+ sstats->rx_bytes += length;
|
|
|
|
+ u64_stats_update_end(&tstats->syncp);
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
|
|
|
|
if (L2TP_SKB_CB(skb)->has_seq) {
|
|
if (L2TP_SKB_CB(skb)->has_seq) {
|
|
/* Bump our Nr */
|
|
/* Bump our Nr */
|
|
@@ -396,6 +407,7 @@ static void l2tp_recv_dequeue(struct l2tp_session *session)
|
|
{
|
|
{
|
|
struct sk_buff *skb;
|
|
struct sk_buff *skb;
|
|
struct sk_buff *tmp;
|
|
struct sk_buff *tmp;
|
|
|
|
+ struct l2tp_stats *sstats;
|
|
|
|
|
|
/* If the pkt at the head of the queue has the nr that we
|
|
/* If the pkt at the head of the queue has the nr that we
|
|
* expect to send up next, dequeue it and any other
|
|
* expect to send up next, dequeue it and any other
|
|
@@ -403,10 +415,13 @@ static void l2tp_recv_dequeue(struct l2tp_session *session)
|
|
*/
|
|
*/
|
|
start:
|
|
start:
|
|
spin_lock_bh(&session->reorder_q.lock);
|
|
spin_lock_bh(&session->reorder_q.lock);
|
|
|
|
+ sstats = &session->stats;
|
|
skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
|
|
skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
|
|
if (time_after(jiffies, L2TP_SKB_CB(skb)->expires)) {
|
|
if (time_after(jiffies, L2TP_SKB_CB(skb)->expires)) {
|
|
- session->stats.rx_seq_discards++;
|
|
|
|
- session->stats.rx_errors++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_seq_discards++;
|
|
|
|
+ sstats->rx_errors++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_DEBUG,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_DEBUG,
|
|
"%s: oos pkt %u len %d discarded (too old), "
|
|
"%s: oos pkt %u len %d discarded (too old), "
|
|
"waiting for %u, reorder_q_len=%d\n",
|
|
"waiting for %u, reorder_q_len=%d\n",
|
|
@@ -558,6 +573,7 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
int offset;
|
|
int offset;
|
|
u32 ns, nr;
|
|
u32 ns, nr;
|
|
|
|
+ struct l2tp_stats *sstats = &session->stats;
|
|
|
|
|
|
/* The ref count is increased since we now hold a pointer to
|
|
/* The ref count is increased since we now hold a pointer to
|
|
* the session. Take care to decrement the refcnt when exiting
|
|
* the session. Take care to decrement the refcnt when exiting
|
|
@@ -573,7 +589,9 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
PRINTK(tunnel->debug, L2TP_MSG_DATA, KERN_INFO,
|
|
PRINTK(tunnel->debug, L2TP_MSG_DATA, KERN_INFO,
|
|
"%s: cookie mismatch (%u/%u). Discarding.\n",
|
|
"%s: cookie mismatch (%u/%u). Discarding.\n",
|
|
tunnel->name, tunnel->tunnel_id, session->session_id);
|
|
tunnel->name, tunnel->tunnel_id, session->session_id);
|
|
- session->stats.rx_cookie_discards++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_cookie_discards++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
goto discard;
|
|
goto discard;
|
|
}
|
|
}
|
|
ptr += session->peer_cookie_len;
|
|
ptr += session->peer_cookie_len;
|
|
@@ -642,7 +660,9 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_WARNING,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_WARNING,
|
|
"%s: recv data has no seq numbers when required. "
|
|
"%s: recv data has no seq numbers when required. "
|
|
"Discarding\n", session->name);
|
|
"Discarding\n", session->name);
|
|
- session->stats.rx_seq_discards++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_seq_discards++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
goto discard;
|
|
goto discard;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -661,7 +681,9 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_WARNING,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_WARNING,
|
|
"%s: recv data has no seq numbers when required. "
|
|
"%s: recv data has no seq numbers when required. "
|
|
"Discarding\n", session->name);
|
|
"Discarding\n", session->name);
|
|
- session->stats.rx_seq_discards++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_seq_discards++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
goto discard;
|
|
goto discard;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -715,7 +737,9 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
* packets
|
|
* packets
|
|
*/
|
|
*/
|
|
if (L2TP_SKB_CB(skb)->ns != session->nr) {
|
|
if (L2TP_SKB_CB(skb)->ns != session->nr) {
|
|
- session->stats.rx_seq_discards++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_seq_discards++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_DEBUG,
|
|
PRINTK(session->debug, L2TP_MSG_SEQ, KERN_DEBUG,
|
|
"%s: oos pkt %u len %d discarded, "
|
|
"%s: oos pkt %u len %d discarded, "
|
|
"waiting for %u, reorder_q_len=%d\n",
|
|
"waiting for %u, reorder_q_len=%d\n",
|
|
@@ -742,7 +766,9 @@ void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
|
|
return;
|
|
return;
|
|
|
|
|
|
discard:
|
|
discard:
|
|
- session->stats.rx_errors++;
|
|
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
|
|
+ sstats->rx_errors++;
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
kfree_skb(skb);
|
|
kfree_skb(skb);
|
|
|
|
|
|
if (session->deref)
|
|
if (session->deref)
|
|
@@ -768,6 +794,7 @@ static int l2tp_udp_recv_core(struct l2tp_tunnel *tunnel, struct sk_buff *skb,
|
|
int offset;
|
|
int offset;
|
|
u16 version;
|
|
u16 version;
|
|
int length;
|
|
int length;
|
|
|
|
+ struct l2tp_stats *tstats;
|
|
|
|
|
|
if (tunnel->sock && l2tp_verify_udp_checksum(tunnel->sock, skb))
|
|
if (tunnel->sock && l2tp_verify_udp_checksum(tunnel->sock, skb))
|
|
goto discard_bad_csum;
|
|
goto discard_bad_csum;
|
|
@@ -860,7 +887,10 @@ static int l2tp_udp_recv_core(struct l2tp_tunnel *tunnel, struct sk_buff *skb,
|
|
discard_bad_csum:
|
|
discard_bad_csum:
|
|
LIMIT_NETDEBUG("%s: UDP: bad checksum\n", tunnel->name);
|
|
LIMIT_NETDEBUG("%s: UDP: bad checksum\n", tunnel->name);
|
|
UDP_INC_STATS_USER(tunnel->l2tp_net, UDP_MIB_INERRORS, 0);
|
|
UDP_INC_STATS_USER(tunnel->l2tp_net, UDP_MIB_INERRORS, 0);
|
|
- tunnel->stats.rx_errors++;
|
|
|
|
|
|
+ tstats = &tunnel->stats;
|
|
|
|
+ u64_stats_update_begin(&tstats->syncp);
|
|
|
|
+ tstats->rx_errors++;
|
|
|
|
+ u64_stats_update_end(&tstats->syncp);
|
|
kfree_skb(skb);
|
|
kfree_skb(skb);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
@@ -986,6 +1016,7 @@ static int l2tp_xmit_core(struct l2tp_session *session, struct sk_buff *skb,
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
struct l2tp_tunnel *tunnel = session->tunnel;
|
|
unsigned int len = skb->len;
|
|
unsigned int len = skb->len;
|
|
int error;
|
|
int error;
|
|
|
|
+ struct l2tp_stats *tstats, *sstats;
|
|
|
|
|
|
/* Debug */
|
|
/* Debug */
|
|
if (session->send_seq)
|
|
if (session->send_seq)
|
|
@@ -1022,15 +1053,21 @@ static int l2tp_xmit_core(struct l2tp_session *session, struct sk_buff *skb,
|
|
error = ip_queue_xmit(skb, fl);
|
|
error = ip_queue_xmit(skb, fl);
|
|
|
|
|
|
/* Update stats */
|
|
/* Update stats */
|
|
|
|
+ tstats = &tunnel->stats;
|
|
|
|
+ u64_stats_update_begin(&tstats->syncp);
|
|
|
|
+ sstats = &session->stats;
|
|
|
|
+ u64_stats_update_begin(&sstats->syncp);
|
|
if (error >= 0) {
|
|
if (error >= 0) {
|
|
- tunnel->stats.tx_packets++;
|
|
|
|
- tunnel->stats.tx_bytes += len;
|
|
|
|
- session->stats.tx_packets++;
|
|
|
|
- session->stats.tx_bytes += len;
|
|
|
|
|
|
+ tstats->tx_packets++;
|
|
|
|
+ tstats->tx_bytes += len;
|
|
|
|
+ sstats->tx_packets++;
|
|
|
|
+ sstats->tx_bytes += len;
|
|
} else {
|
|
} else {
|
|
- tunnel->stats.tx_errors++;
|
|
|
|
- session->stats.tx_errors++;
|
|
|
|
|
|
+ tstats->tx_errors++;
|
|
|
|
+ sstats->tx_errors++;
|
|
}
|
|
}
|
|
|
|
+ u64_stats_update_end(&tstats->syncp);
|
|
|
|
+ u64_stats_update_end(&sstats->syncp);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|