Blame view

net/appletalk/atalk_proc.c 6.84 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
  /*
   * 	atalk_proc.c - proc support for Appletalk
   *
   * 	Copyright(c) Arnaldo Carvalho de Melo <acme@conectiva.com.br>
   *
   *	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, version 2.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
  #include <linux/init.h>
  #include <linux/proc_fs.h>
  #include <linux/seq_file.h>
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
13
  #include <net/net_namespace.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
  #include <net/sock.h>
  #include <linux/atalk.h>
bc3b2d7fb   Paul Gortmaker   net: Add export.h...
16
  #include <linux/export.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
19
20
21
22
23
24
25
26
27
28
29
  
  
  static __inline__ struct atalk_iface *atalk_get_interface_idx(loff_t pos)
  {
  	struct atalk_iface *i;
  
  	for (i = atalk_interfaces; pos && i; i = i->next)
  		--pos;
  
  	return i;
  }
  
  static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
30
  	__acquires(atalk_interfaces_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  {
  	loff_t l = *pos;
  
  	read_lock_bh(&atalk_interfaces_lock);
  	return l ? atalk_get_interface_idx(--l) : SEQ_START_TOKEN;
  }
  
  static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos)
  {
  	struct atalk_iface *i;
  
  	++*pos;
  	if (v == SEQ_START_TOKEN) {
  		i = NULL;
  		if (atalk_interfaces)
  			i = atalk_interfaces;
  		goto out;
  	}
  	i = v;
  	i = i->next;
  out:
  	return i;
  }
  
  static void atalk_seq_interface_stop(struct seq_file *seq, void *v)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
56
  	__releases(atalk_interfaces_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  {
  	read_unlock_bh(&atalk_interfaces_lock);
  }
  
  static int atalk_seq_interface_show(struct seq_file *seq, void *v)
  {
  	struct atalk_iface *iface;
  
  	if (v == SEQ_START_TOKEN) {
  		seq_puts(seq, "Interface        Address   Networks  "
  			      "Status
  ");
  		goto out;
  	}
  
  	iface = v;
  	seq_printf(seq, "%-16s %04X:%02X  %04X-%04X  %d
  ",
  		   iface->dev->name, ntohs(iface->address.s_net),
  		   iface->address.s_node, ntohs(iface->nets.nr_firstnet),
  		   ntohs(iface->nets.nr_lastnet), iface->status);
  out:
  	return 0;
  }
  
  static __inline__ struct atalk_route *atalk_get_route_idx(loff_t pos)
  {
  	struct atalk_route *r;
  
  	for (r = atalk_routes; pos && r; r = r->next)
  		--pos;
  
  	return r;
  }
  
  static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
93
  	__acquires(atalk_routes_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  {
  	loff_t l = *pos;
  
  	read_lock_bh(&atalk_routes_lock);
  	return l ? atalk_get_route_idx(--l) : SEQ_START_TOKEN;
  }
  
  static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
  {
  	struct atalk_route *r;
  
  	++*pos;
  	if (v == SEQ_START_TOKEN) {
  		r = NULL;
  		if (atalk_routes)
  			r = atalk_routes;
  		goto out;
  	}
  	r = v;
  	r = r->next;
  out:
  	return r;
  }
  
  static void atalk_seq_route_stop(struct seq_file *seq, void *v)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
119
  	__releases(atalk_routes_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  {
  	read_unlock_bh(&atalk_routes_lock);
  }
  
  static int atalk_seq_route_show(struct seq_file *seq, void *v)
  {
  	struct atalk_route *rt;
  
  	if (v == SEQ_START_TOKEN) {
  		seq_puts(seq, "Target        Router  Flags Dev
  ");
  		goto out;
  	}
  
  	if (atrtr_default.dev) {
  		rt = &atrtr_default;
  		seq_printf(seq, "Default     %04X:%02X  %-4d  %s
  ",
  			       ntohs(rt->gateway.s_net), rt->gateway.s_node,
  			       rt->flags, rt->dev->name);
  	}
  
  	rt = v;
  	seq_printf(seq, "%04X:%02X     %04X:%02X  %-4d  %s
  ",
  		   ntohs(rt->target.s_net), rt->target.s_node,
  		   ntohs(rt->gateway.s_net), rt->gateway.s_node,
  		   rt->flags, rt->dev->name);
  out:
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
  static void *atalk_seq_socket_start(struct seq_file *seq, loff_t *pos)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
152
  	__acquires(atalk_sockets_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
  	read_lock_bh(&atalk_sockets_lock);
efaffb78d   Li Zefan   net: appletalk: u...
155
  	return seq_hlist_start_head(&atalk_sockets, *pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
156
157
158
159
  }
  
  static void *atalk_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
  {
efaffb78d   Li Zefan   net: appletalk: u...
160
  	return seq_hlist_next(v, &atalk_sockets, pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
161
162
163
  }
  
  static void atalk_seq_socket_stop(struct seq_file *seq, void *v)
ca629f247   Eric Dumazet   [APPLETALK]: Anno...
164
  	__releases(atalk_sockets_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  {
  	read_unlock_bh(&atalk_sockets_lock);
  }
  
  static int atalk_seq_socket_show(struct seq_file *seq, void *v)
  {
  	struct sock *s;
  	struct atalk_sock *at;
  
  	if (v == SEQ_START_TOKEN) {
  		seq_printf(seq, "Type Local_addr  Remote_addr Tx_queue "
  				"Rx_queue St UID
  ");
  		goto out;
  	}
efaffb78d   Li Zefan   net: appletalk: u...
180
  	s = sk_entry(v);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
181
182
183
184
185
186
187
  	at = at_sk(s);
  
  	seq_printf(seq, "%02X   %04X:%02X:%02X  %04X:%02X:%02X  %08X:%08X "
  			"%02X %d
  ",
  		   s->sk_type, ntohs(at->src_net), at->src_node, at->src_port,
  		   ntohs(at->dest_net), at->dest_node, at->dest_port,
31e6d363a   Eric Dumazet   net: correct off-...
188
189
  		   sk_wmem_alloc_get(s),
  		   sk_rmem_alloc_get(s),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
191
192
193
  		   s->sk_state, SOCK_INODE(s->sk_socket)->i_uid);
  out:
  	return 0;
  }
56b3d975b   Philippe De Muyter   [NET]: Make all i...
194
  static const struct seq_operations atalk_seq_interface_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
196
197
198
199
  	.start  = atalk_seq_interface_start,
  	.next   = atalk_seq_interface_next,
  	.stop   = atalk_seq_interface_stop,
  	.show   = atalk_seq_interface_show,
  };
56b3d975b   Philippe De Muyter   [NET]: Make all i...
200
  static const struct seq_operations atalk_seq_route_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
202
203
204
205
  	.start  = atalk_seq_route_start,
  	.next   = atalk_seq_route_next,
  	.stop   = atalk_seq_route_stop,
  	.show   = atalk_seq_route_show,
  };
56b3d975b   Philippe De Muyter   [NET]: Make all i...
206
  static const struct seq_operations atalk_seq_socket_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  	.start  = atalk_seq_socket_start,
  	.next   = atalk_seq_socket_next,
  	.stop   = atalk_seq_socket_stop,
  	.show   = atalk_seq_socket_show,
  };
  
  static int atalk_seq_interface_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &atalk_seq_interface_ops);
  }
  
  static int atalk_seq_route_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &atalk_seq_route_ops);
  }
  
  static int atalk_seq_socket_open(struct inode *inode, struct file *file)
  {
  	return seq_open(file, &atalk_seq_socket_ops);
  }
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
227
  static const struct file_operations atalk_seq_interface_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
228
229
230
231
232
233
  	.owner		= THIS_MODULE,
  	.open		= atalk_seq_interface_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
  	.release	= seq_release,
  };
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
234
  static const struct file_operations atalk_seq_route_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
240
  	.owner		= THIS_MODULE,
  	.open		= atalk_seq_route_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
  	.release	= seq_release,
  };
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
241
  static const struct file_operations atalk_seq_socket_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
242
243
244
245
246
247
248
249
250
251
252
253
254
  	.owner		= THIS_MODULE,
  	.open		= atalk_seq_socket_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
  	.release	= seq_release,
  };
  
  static struct proc_dir_entry *atalk_proc_dir;
  
  int __init atalk_proc_init(void)
  {
  	struct proc_dir_entry *p;
  	int rc = -ENOMEM;
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
255
  	atalk_proc_dir = proc_mkdir("atalk", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
  	if (!atalk_proc_dir)
  		goto out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
258

ed2b5b474   Wang Chen   [APPLETALK]: Use ...
259
260
  	p = proc_create("interface", S_IRUGO, atalk_proc_dir,
  			&atalk_seq_interface_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
  	if (!p)
  		goto out_interface;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263

ed2b5b474   Wang Chen   [APPLETALK]: Use ...
264
265
  	p = proc_create("route", S_IRUGO, atalk_proc_dir,
  			&atalk_seq_route_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266
267
  	if (!p)
  		goto out_route;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268

ed2b5b474   Wang Chen   [APPLETALK]: Use ...
269
270
  	p = proc_create("socket", S_IRUGO, atalk_proc_dir,
  			&atalk_seq_socket_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
  	if (!p)
  		goto out_socket;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
273

ed2b5b474   Wang Chen   [APPLETALK]: Use ...
274
  	p = proc_create("arp", S_IRUGO, atalk_proc_dir, &atalk_seq_arp_fops);
ed4477b96   YOSHIFUJI Hideaki   [NET] APPLETALK: ...
275
  	if (!p)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276
  		goto out_arp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
278
279
280
281
282
283
284
285
286
287
  
  	rc = 0;
  out:
  	return rc;
  out_arp:
  	remove_proc_entry("socket", atalk_proc_dir);
  out_socket:
  	remove_proc_entry("route", atalk_proc_dir);
  out_route:
  	remove_proc_entry("interface", atalk_proc_dir);
  out_interface:
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
288
  	remove_proc_entry("atalk", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
289
290
291
292
293
294
295
296
297
  	goto out;
  }
  
  void __exit atalk_proc_exit(void)
  {
  	remove_proc_entry("interface", atalk_proc_dir);
  	remove_proc_entry("route", atalk_proc_dir);
  	remove_proc_entry("socket", atalk_proc_dir);
  	remove_proc_entry("arp", atalk_proc_dir);
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
298
  	remove_proc_entry("atalk", init_net.proc_net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
299
  }