2 * atalk_proc.c - proc support for Appletalk
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, version 2.
11 #include <linux/init.h>
12 #include <linux/proc_fs.h>
13 #include <linux/seq_file.h>
14 #include <net/net_namespace.h>
16 #include <linux/atalk.h>
17 #include <linux/export.h>
20 static __inline__ struct atalk_iface *atalk_get_interface_idx(loff_t pos)
22 struct atalk_iface *i;
24 for (i = atalk_interfaces; pos && i; i = i->next)
30 static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos)
31 __acquires(atalk_interfaces_lock)
35 read_lock_bh(&atalk_interfaces_lock);
36 return l ? atalk_get_interface_idx(--l) : SEQ_START_TOKEN;
39 static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos)
41 struct atalk_iface *i;
44 if (v == SEQ_START_TOKEN) {
56 static void atalk_seq_interface_stop(struct seq_file *seq, void *v)
57 __releases(atalk_interfaces_lock)
59 read_unlock_bh(&atalk_interfaces_lock);
62 static int atalk_seq_interface_show(struct seq_file *seq, void *v)
64 struct atalk_iface *iface;
66 if (v == SEQ_START_TOKEN) {
67 seq_puts(seq, "Interface Address Networks "
73 seq_printf(seq, "%-16s %04X:%02X %04X-%04X %d\n",
74 iface->dev->name, ntohs(iface->address.s_net),
75 iface->address.s_node, ntohs(iface->nets.nr_firstnet),
76 ntohs(iface->nets.nr_lastnet), iface->status);
81 static __inline__ struct atalk_route *atalk_get_route_idx(loff_t pos)
83 struct atalk_route *r;
85 for (r = atalk_routes; pos && r; r = r->next)
91 static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos)
92 __acquires(atalk_routes_lock)
96 read_lock_bh(&atalk_routes_lock);
97 return l ? atalk_get_route_idx(--l) : SEQ_START_TOKEN;
100 static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
102 struct atalk_route *r;
105 if (v == SEQ_START_TOKEN) {
117 static void atalk_seq_route_stop(struct seq_file *seq, void *v)
118 __releases(atalk_routes_lock)
120 read_unlock_bh(&atalk_routes_lock);
123 static int atalk_seq_route_show(struct seq_file *seq, void *v)
125 struct atalk_route *rt;
127 if (v == SEQ_START_TOKEN) {
128 seq_puts(seq, "Target Router Flags Dev\n");
132 if (atrtr_default.dev) {
134 seq_printf(seq, "Default %04X:%02X %-4d %s\n",
135 ntohs(rt->gateway.s_net), rt->gateway.s_node,
136 rt->flags, rt->dev->name);
140 seq_printf(seq, "%04X:%02X %04X:%02X %-4d %s\n",
141 ntohs(rt->target.s_net), rt->target.s_node,
142 ntohs(rt->gateway.s_net), rt->gateway.s_node,
143 rt->flags, rt->dev->name);
148 static void *atalk_seq_socket_start(struct seq_file *seq, loff_t *pos)
149 __acquires(atalk_sockets_lock)
151 read_lock_bh(&atalk_sockets_lock);
152 return seq_hlist_start_head(&atalk_sockets, *pos);
155 static void *atalk_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
157 return seq_hlist_next(v, &atalk_sockets, pos);
160 static void atalk_seq_socket_stop(struct seq_file *seq, void *v)
161 __releases(atalk_sockets_lock)
163 read_unlock_bh(&atalk_sockets_lock);
166 static int atalk_seq_socket_show(struct seq_file *seq, void *v)
169 struct atalk_sock *at;
171 if (v == SEQ_START_TOKEN) {
172 seq_printf(seq, "Type Local_addr Remote_addr Tx_queue "
173 "Rx_queue St UID\n");
180 seq_printf(seq, "%02X %04X:%02X:%02X %04X:%02X:%02X %08X:%08X "
182 s->sk_type, ntohs(at->src_net), at->src_node, at->src_port,
183 ntohs(at->dest_net), at->dest_node, at->dest_port,
184 sk_wmem_alloc_get(s),
185 sk_rmem_alloc_get(s),
187 from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)));
192 static const struct seq_operations atalk_seq_interface_ops = {
193 .start = atalk_seq_interface_start,
194 .next = atalk_seq_interface_next,
195 .stop = atalk_seq_interface_stop,
196 .show = atalk_seq_interface_show,
199 static const struct seq_operations atalk_seq_route_ops = {
200 .start = atalk_seq_route_start,
201 .next = atalk_seq_route_next,
202 .stop = atalk_seq_route_stop,
203 .show = atalk_seq_route_show,
206 static const struct seq_operations atalk_seq_socket_ops = {
207 .start = atalk_seq_socket_start,
208 .next = atalk_seq_socket_next,
209 .stop = atalk_seq_socket_stop,
210 .show = atalk_seq_socket_show,
213 int __init atalk_proc_init(void)
215 if (!proc_mkdir("atalk", init_net.proc_net))
218 if (!proc_create_seq("atalk/interface", 0444, init_net.proc_net,
219 &atalk_seq_interface_ops))
222 if (!proc_create_seq("atalk/route", 0444, init_net.proc_net,
223 &atalk_seq_route_ops))
226 if (!proc_create_seq("atalk/socket", 0444, init_net.proc_net,
227 &atalk_seq_socket_ops))
230 if (!proc_create_seq_private("atalk/arp", 0444, init_net.proc_net,
232 sizeof(struct aarp_iter_state), NULL))
236 remove_proc_subtree("atalk", init_net.proc_net);
240 void atalk_proc_exit(void)
242 remove_proc_subtree("atalk", init_net.proc_net);