cregit-Linux how code gets into the kernel

Release 4.15 net/x25/x25_timer.c

Directory: net/x25
/*
 *      X.25 Packet Layer release 002
 *
 *      This is ALPHA test software. This code may break your machine,
 *      randomly fail to work with new releases, misbehave and/or generally
 *      screw up. It might even work.
 *
 *      This code REQUIRES 2.1.15 or higher
 *
 *      This module:
 *              This module 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.
 *
 *      History
 *      X.25 001        Jonathan Naylor Started coding.
 *      X.25 002        Jonathan Naylor New timer architecture.
 *                                      Centralised disconnection processing.
 */

#include <linux/errno.h>
#include <linux/jiffies.h>
#include <linux/timer.h>
#include <net/sock.h>
#include <net/tcp_states.h>
#include <net/x25.h>

static void x25_heartbeat_expiry(struct timer_list *t);
static void x25_timer_expiry(struct timer_list *t);


void x25_init_timers(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); timer_setup(&x25->timer, x25_timer_expiry, 0); /* initialized by sock_init_data */ sk->sk_timer.function = x25_heartbeat_expiry; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1843.90%116.67%
Vinay K. Nallamothu1536.59%116.67%
Pavel Emelyanov49.76%116.67%
Arnaldo Carvalho de Melo24.88%233.33%
Kees Cook24.88%116.67%
Total41100.00%6100.00%


void x25_start_heartbeat(struct sock *sk) { mod_timer(&sk->sk_timer, jiffies + 5 * HZ); }

Contributors

PersonTokensPropCommitsCommitProp
Vinay K. Nallamothu1354.17%133.33%
Linus Torvalds (pre-git)1041.67%133.33%
Arnaldo Carvalho de Melo14.17%133.33%
Total24100.00%3100.00%


void x25_stop_heartbeat(struct sock *sk) { del_timer(&sk->sk_timer); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1794.44%150.00%
Arnaldo Carvalho de Melo15.56%150.00%
Total18100.00%2100.00%


void x25_start_t2timer(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); mod_timer(&x25->timer, jiffies + x25->t2); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2264.71%120.00%
David S. Miller823.53%120.00%
Arnaldo Carvalho de Melo25.88%240.00%
Vinay K. Nallamothu25.88%120.00%
Total34100.00%5100.00%


void x25_start_t21timer(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); mod_timer(&x25->timer, jiffies + x25->t21); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2264.71%120.00%
David S. Miller823.53%120.00%
Vinay K. Nallamothu25.88%120.00%
Arnaldo Carvalho de Melo25.88%240.00%
Total34100.00%5100.00%


void x25_start_t22timer(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); mod_timer(&x25->timer, jiffies + x25->t22); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2264.71%120.00%
David S. Miller823.53%120.00%
Vinay K. Nallamothu25.88%120.00%
Arnaldo Carvalho de Melo25.88%240.00%
Total34100.00%5100.00%


void x25_start_t23timer(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); mod_timer(&x25->timer, jiffies + x25->t23); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2264.71%233.33%
David S. Miller823.53%116.67%
Arnaldo Carvalho de Melo25.88%233.33%
Vinay K. Nallamothu25.88%116.67%
Total34100.00%6100.00%


void x25_stop_timer(struct sock *sk) { del_timer(&x25_sk(sk)->timer); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1885.71%150.00%
David S. Miller314.29%150.00%
Total21100.00%2100.00%


unsigned long x25_display_timer(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); if (!timer_pending(&x25->timer)) return 0; return x25->timer.expires - jiffies; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3477.27%240.00%
David S. Miller818.18%120.00%
Arnaldo Carvalho de Melo24.55%240.00%
Total44100.00%5100.00%


static void x25_heartbeat_expiry(struct timer_list *t) { struct sock *sk = from_timer(sk, t, sk_timer); bh_lock_sock(sk); if (sock_owned_by_user(sk)) /* can currently only occur in state 3 */ goto restart_heartbeat; switch (x25_sk(sk)->state) { case X25_STATE_0: /* * Magic here: If we listen() and a new link dies * before it is accepted() it isn't 'dead' so doesn't * get removed. */ if (sock_flag(sk, SOCK_DESTROY) || (sk->sk_state == TCP_LISTEN && sock_flag(sk, SOCK_DEAD))) { bh_unlock_sock(sk); x25_destroy_socket_from_timer(sk); return; } break; case X25_STATE_3: /* * Check for the state of the receive buffer. */ x25_check_rbuf(sk); break; } restart_heartbeat: x25_start_heartbeat(sk); bh_unlock_sock(sk); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5950.86%325.00%
Linus Torvalds2017.24%18.33%
Kees Cook1210.34%18.33%
Arnaldo Carvalho de Melo86.90%216.67%
Shaun Pereira65.17%18.33%
James Morris43.45%18.33%
David S. Miller43.45%216.67%
Benjamin LaHaise32.59%18.33%
Total116100.00%12100.00%

/* * Timer has expired, it may have been T2, T21, T22, or T23. We can tell * by the state machine state. */
static inline void x25_do_timer_expiry(struct sock * sk) { struct x25_sock *x25 = x25_sk(sk); switch (x25->state) { case X25_STATE_3: /* T2 */ if (x25->condition & X25_COND_ACK_PENDING) { x25->condition &= ~X25_COND_ACK_PENDING; x25_enquiry_response(sk); } break; case X25_STATE_1: /* T21 */ case X25_STATE_4: /* T22 */ x25_write_internal(sk, X25_CLEAR_REQUEST); x25->state = X25_STATE_2; x25_start_t23timer(sk); break; case X25_STATE_2: /* T23 */ x25_disconnect(sk, ETIMEDOUT, 0, 0); break; } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)8686.00%233.33%
David S. Miller88.00%116.67%
Linus Torvalds44.00%116.67%
Arnaldo Carvalho de Melo22.00%233.33%
Total100100.00%6100.00%


static void x25_timer_expiry(struct timer_list *t) { struct x25_sock *x25 = from_timer(x25, t, timer); struct sock *sk = &x25->sk; bh_lock_sock(sk); if (sock_owned_by_user(sk)) { /* can currently only occur in state 3 */ if (x25_sk(sk)->state == X25_STATE_3) x25_start_t2timer(sk); } else x25_do_timer_expiry(sk); bh_unlock_sock(sk); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds4963.64%125.00%
Kees Cook2228.57%125.00%
David S. Miller33.90%125.00%
Benjamin LaHaise33.90%125.00%
Total77100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)35757.86%420.00%
Linus Torvalds7311.83%15.00%
David S. Miller609.72%210.00%
Kees Cook447.13%15.00%
Vinay K. Nallamothu365.83%15.00%
Arnaldo Carvalho de Melo254.05%525.00%
Benjamin LaHaise60.97%15.00%
Shaun Pereira60.97%15.00%
Pavel Emelyanov40.65%15.00%
James Morris40.65%15.00%
Rusty Russell10.16%15.00%
Hideaki Yoshifuji / 吉藤英明10.16%15.00%
Total617100.00%20100.00%
Directory: net/x25
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.