2 * proc_llc.c - proc interface for LLC
4 * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org>
5 * 2002-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 * This program can be redistributed or modified under the terms of the
8 * GNU General Public License as published by the Free Software Foundation.
9 * This program is distributed without any warranty or implied warranty
10 * of merchantability or fitness for a particular purpose.
12 * See the GNU General Public License for more details.
15 #include <linux/config.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/proc_fs.h>
19 #include <linux/errno.h>
20 #include <linux/seq_file.h>
23 #include <net/llc_c_ac.h>
24 #include <net/llc_c_ev.h>
25 #include <net/llc_c_st.h>
26 #include <net/llc_conn.h>
28 static void llc_ui_format_mac(struct seq_file *seq, unsigned char *mac)
30 seq_printf(seq, "%02X:%02X:%02X:%02X:%02X:%02X",
31 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
34 static struct sock *llc_get_sk_idx(loff_t pos)
36 struct list_head *sap_entry;
38 struct hlist_node *node;
39 struct sock *sk = NULL;
41 list_for_each(sap_entry, &llc_sap_list) {
42 sap = list_entry(sap_entry, struct llc_sap, node);
44 read_lock_bh(&sap->sk_list.lock);
45 sk_for_each(sk, node, &sap->sk_list.list) {
50 read_unlock_bh(&sap->sk_list.lock);
57 static void *llc_seq_start(struct seq_file *seq, loff_t *pos)
61 read_lock_bh(&llc_sap_list_lock);
62 return l ? llc_get_sk_idx(--l) : SEQ_START_TOKEN;
65 static void *llc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
67 struct sock* sk, *next;
72 if (v == SEQ_START_TOKEN) {
73 sk = llc_get_sk_idx(0);
84 read_unlock_bh(&sap->sk_list.lock);
87 if (sap->node.next == &llc_sap_list)
89 sap = list_entry(sap->node.next, struct llc_sap, node);
90 read_lock_bh(&sap->sk_list.lock);
91 if (!hlist_empty(&sap->sk_list.list)) {
92 sk = sk_head(&sap->sk_list.list);
95 read_unlock_bh(&sap->sk_list.lock);
101 static void llc_seq_stop(struct seq_file *seq, void *v)
103 if (v && v != SEQ_START_TOKEN) {
105 struct llc_sock *llc = llc_sk(sk);
106 struct llc_sap *sap = llc->sap;
108 read_unlock_bh(&sap->sk_list.lock);
110 read_unlock_bh(&llc_sap_list_lock);
113 static int llc_seq_socket_show(struct seq_file *seq, void *v)
116 struct llc_sock *llc;
118 if (v == SEQ_START_TOKEN) {
119 seq_puts(seq, "SKt Mc local_mac_sap remote_mac_sap "
120 " tx_queue rx_queue st uid link\n");
126 /* FIXME: check if the address is multicast */
127 seq_printf(seq, "%2X %2X ", sk->sk_type, 0);
130 llc_ui_format_mac(seq, llc->dev->dev_addr);
132 seq_printf(seq, "00:00:00:00:00:00");
133 seq_printf(seq, "@%02X ", llc->sap->laddr.lsap);
134 llc_ui_format_mac(seq, llc->daddr.mac);
135 seq_printf(seq, "@%02X %8d %8d %2d %3d %4d\n", llc->daddr.lsap,
136 atomic_read(&sk->sk_wmem_alloc),
137 atomic_read(&sk->sk_rmem_alloc) - llc->copied_seq,
139 sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_uid : -1,
145 static char *llc_conn_state_names[] = {
146 [LLC_CONN_STATE_ADM] = "adm",
147 [LLC_CONN_STATE_SETUP] = "setup",
148 [LLC_CONN_STATE_NORMAL] = "normal",
149 [LLC_CONN_STATE_BUSY] = "busy",
150 [LLC_CONN_STATE_REJ] = "rej",
151 [LLC_CONN_STATE_AWAIT] = "await",
152 [LLC_CONN_STATE_AWAIT_BUSY] = "await_busy",
153 [LLC_CONN_STATE_AWAIT_REJ] = "await_rej",
154 [LLC_CONN_STATE_D_CONN] = "d_conn",
155 [LLC_CONN_STATE_RESET] = "reset",
156 [LLC_CONN_STATE_ERROR] = "error",
157 [LLC_CONN_STATE_TEMP] = "temp",
160 static int llc_seq_core_show(struct seq_file *seq, void *v)
163 struct llc_sock *llc;
165 if (v == SEQ_START_TOKEN) {
166 seq_puts(seq, "Connection list:\n"
167 "dsap state retr txw rxw pf ff sf df rs cs "
168 "tack tpfc trs tbs blog busr\n");
174 seq_printf(seq, " %02X %-10s %3d %3d %3d %2d %2d %2d %2d %2d %2d "
175 "%4d %4d %3d %3d %4d %4d\n",
176 llc->daddr.lsap, llc_conn_state_names[llc->state],
177 llc->retry_count, llc->k, llc->rw, llc->p_flag, llc->f_flag,
178 llc->s_flag, llc->data_flag, llc->remote_busy_flag,
179 llc->cause_flag, timer_pending(&llc->ack_timer.timer),
180 timer_pending(&llc->pf_cycle_timer.timer),
181 timer_pending(&llc->rej_sent_timer.timer),
182 timer_pending(&llc->busy_state_timer.timer),
183 !!sk->sk_backlog.tail, !!sock_owned_by_user(sk));
188 static struct seq_operations llc_seq_socket_ops = {
189 .start = llc_seq_start,
190 .next = llc_seq_next,
191 .stop = llc_seq_stop,
192 .show = llc_seq_socket_show,
195 static struct seq_operations llc_seq_core_ops = {
196 .start = llc_seq_start,
197 .next = llc_seq_next,
198 .stop = llc_seq_stop,
199 .show = llc_seq_core_show,
202 static int llc_seq_socket_open(struct inode *inode, struct file *file)
204 return seq_open(file, &llc_seq_socket_ops);
207 static int llc_seq_core_open(struct inode *inode, struct file *file)
209 return seq_open(file, &llc_seq_core_ops);
212 static struct file_operations llc_seq_socket_fops = {
213 .owner = THIS_MODULE,
214 .open = llc_seq_socket_open,
217 .release = seq_release,
220 static struct file_operations llc_seq_core_fops = {
221 .owner = THIS_MODULE,
222 .open = llc_seq_core_open,
225 .release = seq_release,
228 static struct proc_dir_entry *llc_proc_dir;
230 int __init llc_proc_init(void)
233 struct proc_dir_entry *p;
235 llc_proc_dir = proc_mkdir("llc", proc_net);
238 llc_proc_dir->owner = THIS_MODULE;
240 p = create_proc_entry("socket", S_IRUGO, llc_proc_dir);
244 p->proc_fops = &llc_seq_socket_fops;
246 p = create_proc_entry("core", S_IRUGO, llc_proc_dir);
250 p->proc_fops = &llc_seq_core_fops;
256 remove_proc_entry("socket", llc_proc_dir);
258 remove_proc_entry("llc", proc_net);
262 void llc_proc_exit(void)
264 remove_proc_entry("socket", llc_proc_dir);
265 remove_proc_entry("core", llc_proc_dir);
266 remove_proc_entry("llc", proc_net);