1 // SPDX-License-Identifier: GPL-2.0-only
3 * atalk_proc.c - proc support for Appletalk
5 * Copyright(c) Arnaldo Carvalho de Melo <acme@conectiva.com.br>
8 #include <linux/init.h>
9 #include <linux/proc_fs.h>
10 #include <linux/seq_file.h>
11 #include <net/net_namespace.h>
13 #include <linux/atalk.h>
14 #include <linux/export.h>
17 static __inline__ struct atalk_iface *atalk_get_interface_idx(loff_t pos)
19 struct atalk_iface *i;
21 for (i = atalk_interfaces; pos && i; i = i->next)
27 static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos)
28 __acquires(atalk_interfaces_lock)
32 read_lock_bh(&atalk_interfaces_lock);
33 return l ? atalk_get_interface_idx(--l) : SEQ_START_TOKEN;
36 static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos)
38 struct atalk_iface *i;
41 if (v == SEQ_START_TOKEN) {
53 static void atalk_seq_interface_stop(struct seq_file *seq, void *v)
54 __releases(atalk_interfaces_lock)
56 read_unlock_bh(&atalk_interfaces_lock);
59 static int atalk_seq_interface_show(struct seq_file *seq, void *v)
61 struct atalk_iface *iface;
63 if (v == SEQ_START_TOKEN) {
64 seq_puts(seq, "Interface Address Networks "
70 seq_printf(seq, "%-16s %04X:%02X %04X-%04X %d\n",
71 iface->dev->name, ntohs(iface->address.s_net),
72 iface->address.s_node, ntohs(iface->nets.nr_firstnet),
73 ntohs(iface->nets.nr_lastnet), iface->status);
78 static __inline__ struct atalk_route *atalk_get_route_idx(loff_t pos)
80 struct atalk_route *r;
82 for (r = atalk_routes; pos && r; r = r->next)
88 static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos)
89 __acquires(atalk_routes_lock)
93 read_lock_bh(&atalk_routes_lock);
94 return l ? atalk_get_route_idx(--l) : SEQ_START_TOKEN;
97 static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
99 struct atalk_route *r;
102 if (v == SEQ_START_TOKEN) {
114 static void atalk_seq_route_stop(struct seq_file *seq, void *v)
115 __releases(atalk_routes_lock)
117 read_unlock_bh(&atalk_routes_lock);
120 static int atalk_seq_route_show(struct seq_file *seq, void *v)
122 struct atalk_route *rt;
124 if (v == SEQ_START_TOKEN) {
125 seq_puts(seq, "Target Router Flags Dev\n");
129 if (atrtr_default.dev) {
131 seq_printf(seq, "Default %04X:%02X %-4d %s\n",
132 ntohs(rt->gateway.s_net), rt->gateway.s_node,
133 rt->flags, rt->dev->name);
137 seq_printf(seq, "%04X:%02X %04X:%02X %-4d %s\n",
138 ntohs(rt->target.s_net), rt->target.s_node,
139 ntohs(rt->gateway.s_net), rt->gateway.s_node,
140 rt->flags, rt->dev->name);
145 static void *atalk_seq_socket_start(struct seq_file *seq, loff_t *pos)
146 __acquires(atalk_sockets_lock)
148 read_lock_bh(&atalk_sockets_lock);
149 return seq_hlist_start_head(&atalk_sockets, *pos);
152 static void *atalk_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
154 return seq_hlist_next(v, &atalk_sockets, pos);
157 static void atalk_seq_socket_stop(struct seq_file *seq, void *v)
158 __releases(atalk_sockets_lock)
160 read_unlock_bh(&atalk_sockets_lock);
163 static int atalk_seq_socket_show(struct seq_file *seq, void *v)
166 struct atalk_sock *at;
168 if (v == SEQ_START_TOKEN) {
169 seq_printf(seq, "Type Local_addr Remote_addr Tx_queue "
170 "Rx_queue St UID\n");
177 seq_printf(seq, "%02X %04X:%02X:%02X %04X:%02X:%02X %08X:%08X "
179 s->sk_type, ntohs(at->src_net), at->src_node, at->src_port,
180 ntohs(at->dest_net), at->dest_node, at->dest_port,
181 sk_wmem_alloc_get(s),
182 sk_rmem_alloc_get(s),
184 from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)));
189 static const struct seq_operations atalk_seq_interface_ops = {
190 .start = atalk_seq_interface_start,
191 .next = atalk_seq_interface_next,
192 .stop = atalk_seq_interface_stop,
193 .show = atalk_seq_interface_show,
196 static const struct seq_operations atalk_seq_route_ops = {
197 .start = atalk_seq_route_start,
198 .next = atalk_seq_route_next,
199 .stop = atalk_seq_route_stop,
200 .show = atalk_seq_route_show,
203 static const struct seq_operations atalk_seq_socket_ops = {
204 .start = atalk_seq_socket_start,
205 .next = atalk_seq_socket_next,
206 .stop = atalk_seq_socket_stop,
207 .show = atalk_seq_socket_show,
210 int __init atalk_proc_init(void)
212 if (!proc_mkdir("atalk", init_net.proc_net))
215 if (!proc_create_seq("atalk/interface", 0444, init_net.proc_net,
216 &atalk_seq_interface_ops))
219 if (!proc_create_seq("atalk/route", 0444, init_net.proc_net,
220 &atalk_seq_route_ops))
223 if (!proc_create_seq("atalk/socket", 0444, init_net.proc_net,
224 &atalk_seq_socket_ops))
227 if (!proc_create_seq_private("atalk/arp", 0444, init_net.proc_net,
229 sizeof(struct aarp_iter_state), NULL))
235 remove_proc_subtree("atalk", init_net.proc_net);
239 void atalk_proc_exit(void)
241 remove_proc_subtree("atalk", init_net.proc_net);