Blame view

net/ipx/ipx_proc.c 8.03 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  /*
   *	IPX proc routines
   *
   * 	Copyright(C) Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 2002
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
  #include <linux/init.h>
  #ifdef CONFIG_PROC_FS
  #include <linux/proc_fs.h>
  #include <linux/spinlock.h>
  #include <linux/seq_file.h>
bc3b2d7fb   Paul Gortmaker   net: Add export.h...
11
  #include <linux/export.h>
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
12
  #include <net/net_namespace.h>
c752f0739   Arnaldo Carvalho de Melo   [TCP]: Move the t...
13
  #include <net/tcp_states.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
  #include <net/ipx.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
  static void *ipx_seq_interface_start(struct seq_file *seq, loff_t *pos)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  	spin_lock_bh(&ipx_interfaces_lock);
a2b79b414   Li Zefan   net: ipx: use seq...
18
  	return seq_list_start_head(&ipx_interfaces, *pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
  }
  
  static void *ipx_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos)
  {
a2b79b414   Li Zefan   net: ipx: use seq...
23
  	return seq_list_next(v, &ipx_interfaces, pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
28
29
30
31
32
33
  }
  
  static void ipx_seq_interface_stop(struct seq_file *seq, void *v)
  {
  	spin_unlock_bh(&ipx_interfaces_lock);
  }
  
  static int ipx_seq_interface_show(struct seq_file *seq, void *v)
  {
  	struct ipx_interface *i;
a2b79b414   Li Zefan   net: ipx: use seq...
34
  	if (v == &ipx_interfaces) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
37
38
39
40
41
42
43
  		seq_puts(seq, "Network    Node_Address   Primary  Device     "
  			      "Frame_Type");
  #ifdef IPX_REFCNT_DEBUG
  		seq_puts(seq, "  refcnt");
  #endif
  		seq_puts(seq, "
  ");
  		goto out;
  	}
a2b79b414   Li Zefan   net: ipx: use seq...
44
  	i = list_entry(v, struct ipx_interface, node);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  	seq_printf(seq, "%08lX   ", (unsigned long int)ntohl(i->if_netnum));
  	seq_printf(seq, "%02X%02X%02X%02X%02X%02X   ",
  			i->if_node[0], i->if_node[1], i->if_node[2],
  			i->if_node[3], i->if_node[4], i->if_node[5]);
  	seq_printf(seq, "%-9s", i == ipx_primary_net ? "Yes" : "No");
  	seq_printf(seq, "%-11s", ipx_device_name(i));
  	seq_printf(seq, "%-9s", ipx_frame_name(i->if_dlink_type));
  #ifdef IPX_REFCNT_DEBUG
  	seq_printf(seq, "%6d", atomic_read(&i->refcnt));
  #endif
  	seq_puts(seq, "
  ");
  out:
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
  static void *ipx_seq_route_start(struct seq_file *seq, loff_t *pos)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  	read_lock_bh(&ipx_routes_lock);
a2b79b414   Li Zefan   net: ipx: use seq...
63
  	return seq_list_start_head(&ipx_routes, *pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
67
  }
  
  static void *ipx_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
  {
a2b79b414   Li Zefan   net: ipx: use seq...
68
  	return seq_list_next(v, &ipx_routes, pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
71
72
73
74
75
76
77
78
  }
  
  static void ipx_seq_route_stop(struct seq_file *seq, void *v)
  {
  	read_unlock_bh(&ipx_routes_lock);
  }
  
  static int ipx_seq_route_show(struct seq_file *seq, void *v)
  {
  	struct ipx_route *rt;
a2b79b414   Li Zefan   net: ipx: use seq...
79
  	if (v == &ipx_routes) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
81
82
83
  		seq_puts(seq, "Network    Router_Net   Router_Node
  ");
  		goto out;
  	}
a2b79b414   Li Zefan   net: ipx: use seq...
84
85
  
  	rt = list_entry(v, struct ipx_route, node);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  	seq_printf(seq, "%08lX   ", (unsigned long int)ntohl(rt->ir_net));
  	if (rt->ir_routed)
  		seq_printf(seq, "%08lX     %02X%02X%02X%02X%02X%02X
  ",
  			   (long unsigned int)ntohl(rt->ir_intrfc->if_netnum),
  			   rt->ir_router_node[0], rt->ir_router_node[1],
  			   rt->ir_router_node[2], rt->ir_router_node[3],
  			   rt->ir_router_node[4], rt->ir_router_node[5]);
  	else
  		seq_puts(seq, "Directly     Connected
  ");
  out:
  	return 0;
  }
  
  static __inline__ struct sock *ipx_get_socket_idx(loff_t pos)
  {
  	struct sock *s = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
105
106
107
  	struct ipx_interface *i;
  
  	list_for_each_entry(i, &ipx_interfaces, node) {
  		spin_lock_bh(&i->if_sklist_lock);
b67bfe0d4   Sasha Levin   hlist: drop the n...
108
  		sk_for_each(s, &i->if_sklist) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
114
  			if (!pos)
  				break;
  			--pos;
  		}
  		spin_unlock_bh(&i->if_sklist_lock);
  		if (!pos) {
b67bfe0d4   Sasha Levin   hlist: drop the n...
115
  			if (s)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  				goto found;
  			break;
  		}
  	}
  	s = NULL;
  found:
  	return s;
  }
  
  static void *ipx_seq_socket_start(struct seq_file *seq, loff_t *pos)
  {
  	loff_t l = *pos;
  
  	spin_lock_bh(&ipx_interfaces_lock);
  	return l ? ipx_get_socket_idx(--l) : SEQ_START_TOKEN;
  }
  
  static void *ipx_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
  {
  	struct sock* sk, *next;
  	struct ipx_interface *i;
  	struct ipx_sock *ipxs;
  
  	++*pos;
  	if (v == SEQ_START_TOKEN) {
  		sk = NULL;
  		i = ipx_interfaces_head();
  		if (!i)
  			goto out;
  		sk = sk_head(&i->if_sklist);
  		if (sk)
  			spin_lock_bh(&i->if_sklist_lock);
  		goto out;
  	}
  	sk = v;
  	next = sk_next(sk);
  	if (next) {
  		sk = next;
  		goto out;
  	}
  	ipxs = ipx_sk(sk);
  	i = ipxs->intrfc;
  	spin_unlock_bh(&i->if_sklist_lock);
  	sk = NULL;
  	for (;;) {
a2b79b414   Li Zefan   net: ipx: use seq...
161
  		if (i->node.next == &ipx_interfaces)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162
  			break;
a2b79b414   Li Zefan   net: ipx: use seq...
163
  		i = list_entry(i->node.next, struct ipx_interface, node);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  		spin_lock_bh(&i->if_sklist_lock);
  		if (!hlist_empty(&i->if_sklist)) {
  			sk = sk_head(&i->if_sklist);
  			break;
  		}
  		spin_unlock_bh(&i->if_sklist_lock);
  	}
  out:
  	return sk;
  }
  
  static int ipx_seq_socket_show(struct seq_file *seq, void *v)
  {
  	struct sock *s;
  	struct ipx_sock *ipxs;
  
  	if (v == SEQ_START_TOKEN) {
  #ifdef CONFIG_IPX_INTERN
  		seq_puts(seq, "Local_Address               "
  			      "Remote_Address              Tx_Queue  "
  			      "Rx_Queue  State  Uid
  ");
  #else
  		seq_puts(seq, "Local_Address  Remote_Address              "
  			      "Tx_Queue  Rx_Queue  State  Uid
  ");
  #endif
  		goto out;
  	}
  
  	s = v;
  	ipxs = ipx_sk(s);
  #ifdef CONFIG_IPX_INTERN
  	seq_printf(seq, "%08lX:%02X%02X%02X%02X%02X%02X:%04X  ",
4833ed094   Al Viro   [IPX]: Trivial pa...
198
  		   (unsigned long)ntohl(ipxs->intrfc->if_netnum),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
199
  		   ipxs->node[0], ipxs->node[1], ipxs->node[2], ipxs->node[3],
4833ed094   Al Viro   [IPX]: Trivial pa...
200
  		   ipxs->node[4], ipxs->node[5], ntohs(ipxs->port));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
  #else
4833ed094   Al Viro   [IPX]: Trivial pa...
202
203
  	seq_printf(seq, "%08lX:%04X  ", (unsigned long) ntohl(ipxs->intrfc->if_netnum),
  		   ntohs(ipxs->port));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
204
205
206
207
208
  #endif	/* CONFIG_IPX_INTERN */
  	if (s->sk_state != TCP_ESTABLISHED)
  		seq_printf(seq, "%-28s", "Not_Connected");
  	else {
  		seq_printf(seq, "%08lX:%02X%02X%02X%02X%02X%02X:%04X  ",
4833ed094   Al Viro   [IPX]: Trivial pa...
209
  			   (unsigned long)ntohl(ipxs->dest_addr.net),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
210
211
212
  			   ipxs->dest_addr.node[0], ipxs->dest_addr.node[1],
  			   ipxs->dest_addr.node[2], ipxs->dest_addr.node[3],
  			   ipxs->dest_addr.node[4], ipxs->dest_addr.node[5],
4833ed094   Al Viro   [IPX]: Trivial pa...
213
  			   ntohs(ipxs->dest_addr.sock));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
  	}
d14c5ab6b   Francesco Fusco   net: proc_fs: tri...
215
216
  	seq_printf(seq, "%08X  %08X  %02X     %03u
  ",
31e6d363a   Eric Dumazet   net: correct off-...
217
218
  		   sk_wmem_alloc_get(s),
  		   sk_rmem_alloc_get(s),
a7cb5a49b   Eric W. Biederman   userns: Print out...
219
220
  		   s->sk_state,
  		   from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
  out:
  	return 0;
  }
56b3d975b   Philippe De Muyter   [NET]: Make all i...
224
  static const struct seq_operations ipx_seq_interface_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
225
226
227
228
229
  	.start  = ipx_seq_interface_start,
  	.next   = ipx_seq_interface_next,
  	.stop   = ipx_seq_interface_stop,
  	.show   = ipx_seq_interface_show,
  };
56b3d975b   Philippe De Muyter   [NET]: Make all i...
230
  static const struct seq_operations ipx_seq_route_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
231
232
233
234
235
  	.start  = ipx_seq_route_start,
  	.next   = ipx_seq_route_next,
  	.stop   = ipx_seq_route_stop,
  	.show   = ipx_seq_route_show,
  };
56b3d975b   Philippe De Muyter   [NET]: Make all i...
236
  static const struct seq_operations ipx_seq_socket_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  	.start  = ipx_seq_socket_start,
  	.next   = ipx_seq_socket_next,
  	.stop   = ipx_seq_interface_stop,
  	.show   = ipx_seq_socket_show,
  };
  
  static int ipx_seq_route_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &ipx_seq_route_ops);
  }
  
  static int ipx_seq_interface_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &ipx_seq_interface_ops);
  }
  
  static int ipx_seq_socket_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &ipx_seq_socket_ops);
  }
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
257
  static const struct file_operations ipx_seq_interface_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
258
259
260
261
262
263
  	.owner		= THIS_MODULE,
  	.open           = ipx_seq_interface_open,
  	.read           = seq_read,
  	.llseek         = seq_lseek,
  	.release        = seq_release,
  };
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
264
  static const struct file_operations ipx_seq_route_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265
266
267
268
269
270
  	.owner		= THIS_MODULE,
  	.open           = ipx_seq_route_open,
  	.read           = seq_read,
  	.llseek         = seq_lseek,
  	.release        = seq_release,
  };
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
271
  static const struct file_operations ipx_seq_socket_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
273
274
275
276
277
278
279
280
281
282
283
284
  	.owner		= THIS_MODULE,
  	.open           = ipx_seq_socket_open,
  	.read           = seq_read,
  	.llseek         = seq_lseek,
  	.release        = seq_release,
  };
  
  static struct proc_dir_entry *ipx_proc_dir;
  
  int __init ipx_proc_init(void)
  {
  	struct proc_dir_entry *p;
  	int rc = -ENOMEM;
981c0ff69   YOSHIFUJI Hideaki   [NET] IPX: Fix wh...
285

457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
286
  	ipx_proc_dir = proc_mkdir("ipx", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
287
288
289
  
  	if (!ipx_proc_dir)
  		goto out;
1e15dc981   Wang Chen   [IPX]: Use proc_c...
290
291
  	p = proc_create("interface", S_IRUGO,
  			ipx_proc_dir, &ipx_seq_interface_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
293
  	if (!p)
  		goto out_interface;
1e15dc981   Wang Chen   [IPX]: Use proc_c...
294
  	p = proc_create("route", S_IRUGO, ipx_proc_dir, &ipx_seq_route_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295
296
  	if (!p)
  		goto out_route;
1e15dc981   Wang Chen   [IPX]: Use proc_c...
297
  	p = proc_create("socket", S_IRUGO, ipx_proc_dir, &ipx_seq_socket_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
299
  	if (!p)
  		goto out_socket;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
300
301
302
303
304
305
306
307
  	rc = 0;
  out:
  	return rc;
  out_socket:
  	remove_proc_entry("route", ipx_proc_dir);
  out_route:
  	remove_proc_entry("interface", ipx_proc_dir);
  out_interface:
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
308
  	remove_proc_entry("ipx", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
309
310
311
312
313
314
315
316
  	goto out;
  }
  
  void __exit ipx_proc_exit(void)
  {
  	remove_proc_entry("interface", ipx_proc_dir);
  	remove_proc_entry("route", ipx_proc_dir);
  	remove_proc_entry("socket", ipx_proc_dir);
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
317
  	remove_proc_entry("ipx", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
318
319
320
321
322
323
324
325
326
327
328
329
330
331
  }
  
  #else /* CONFIG_PROC_FS */
  
  int __init ipx_proc_init(void)
  {
  	return 0;
  }
  
  void __exit ipx_proc_exit(void)
  {
  }
  
  #endif /* CONFIG_PROC_FS */