Blame view

net/decnet/dn_neigh.c 15.2 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  /*
   * DECnet       An implementation of the DECnet protocol suite for the LINUX
   *              operating system.  DECnet is implemented using the  BSD Socket
   *              interface as the means of communication with the user level.
   *
429eb0fae   YOSHIFUJI Hideaki   [NET] DECNET: Fix...
6
   *              DECnet Neighbour Functions (Adjacency Database and
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   *                                                        On-Ethernet Cache)
   *
   * Author:      Steve Whitehouse <SteveW@ACM.org>
   *
   *
   * Changes:
   *     Steve Whitehouse     : Fixed router listing routine
   *     Steve Whitehouse     : Added error_report functions
   *     Steve Whitehouse     : Added default router detection
   *     Steve Whitehouse     : Hop counts in outgoing messages
   *     Steve Whitehouse     : Fixed src/dst in outgoing messages so
   *                            forwarding now stands a good chance of
   *                            working.
   *     Steve Whitehouse     : Fixed neighbour states (for now anyway).
   *     Steve Whitehouse     : Made error_report functions dummies. This
   *                            is not the right place to return skbs.
   *     Steve Whitehouse     : Convert to seq_file
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
  #include <linux/net.h>
  #include <linux/module.h>
  #include <linux/socket.h>
  #include <linux/if_arp.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
30
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
35
36
37
38
39
  #include <linux/if_ether.h>
  #include <linux/init.h>
  #include <linux/proc_fs.h>
  #include <linux/string.h>
  #include <linux/netfilter_decnet.h>
  #include <linux/spinlock.h>
  #include <linux/seq_file.h>
  #include <linux/rcupdate.h>
  #include <linux/jhash.h>
60063497a   Arun Sharma   atomic: use <linu...
40
  #include <linux/atomic.h>
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
41
  #include <net/net_namespace.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
46
47
48
  #include <net/neighbour.h>
  #include <net/dst.h>
  #include <net/flow.h>
  #include <net/dn.h>
  #include <net/dn_dev.h>
  #include <net/dn_neigh.h>
  #include <net/dn_route.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
  static int dn_neigh_construct(struct neighbour *);
  static void dn_long_error_report(struct neighbour *, struct sk_buff *);
  static void dn_short_error_report(struct neighbour *, struct sk_buff *);
8f40b161d   David S. Miller   neigh: Pass neigh...
52
53
54
  static int dn_long_output(struct neighbour *, struct sk_buff *);
  static int dn_short_output(struct neighbour *, struct sk_buff *);
  static int dn_phase3_output(struct neighbour *, struct sk_buff *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
  
  
  /*
   * For talking to broadcast devices: Ethernet & PPP
   */
89d69d2b7   Stephen Hemminger   net: make neigh_o...
60
  static const struct neigh_ops dn_long_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
62
63
64
  	.family =		AF_DECnet,
  	.error_report =		dn_long_error_report,
  	.output =		dn_long_output,
  	.connected_output =	dn_long_output,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
  };
  
  /*
   * For talking to pointopoint and multidrop devices: DDCMP and X.25
   */
89d69d2b7   Stephen Hemminger   net: make neigh_o...
70
  static const struct neigh_ops dn_short_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
72
73
74
  	.family =		AF_DECnet,
  	.error_report =		dn_short_error_report,
  	.output =		dn_short_output,
  	.connected_output =	dn_short_output,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
78
79
  };
  
  /*
   * For talking to DECnet phase III nodes
   */
89d69d2b7   Stephen Hemminger   net: make neigh_o...
80
  static const struct neigh_ops dn_phase3_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
  	.family =		AF_DECnet,
  	.error_report =		dn_short_error_report, /* Can use short version here */
  	.output =		dn_phase3_output,
  	.connected_output =	dn_phase3_output,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
  };
d6bf78171   Eric Dumazet   net neigh: RCU co...
86
87
  static u32 dn_neigh_hash(const void *pkey,
  			 const struct net_device *dev,
2c2aba6c5   David S. Miller   ipv6: Use univers...
88
  			 __u32 *hash_rnd)
d6bf78171   Eric Dumazet   net neigh: RCU co...
89
  {
2c2aba6c5   David S. Miller   ipv6: Use univers...
90
  	return jhash_2words(*(__u16 *)pkey, 0, hash_rnd[0]);
d6bf78171   Eric Dumazet   net neigh: RCU co...
91
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
93
94
  struct neigh_table dn_neigh_table = {
  	.family =			PF_DECnet,
  	.entry_size =			sizeof(struct dn_neigh),
c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
95
  	.key_len =			sizeof(__le16),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
  	.hash =				dn_neigh_hash,
  	.constructor =			dn_neigh_construct,
  	.id =				"dn_neigh_cache",
  	.parms ={
  		.tbl =			&dn_neigh_table,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
102
103
104
105
  		.base_reachable_time =	30 * HZ,
  		.retrans_time =	1 * HZ,
  		.gc_staletime =	60 * HZ,
  		.reachable_time =		30 * HZ,
  		.delay_probe_time =	5 * HZ,
8b5c171bb   Eric Dumazet   neigh: new unreso...
106
  		.queue_len_bytes =	64*1024,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
110
111
112
113
114
115
116
117
118
119
  		.ucast_probes =	0,
  		.app_probes =		0,
  		.mcast_probes =	0,
  		.anycast_delay =	0,
  		.proxy_delay =		0,
  		.proxy_qlen =		0,
  		.locktime =		1 * HZ,
  	},
  	.gc_interval =			30 * HZ,
  	.gc_thresh1 =			128,
  	.gc_thresh2 =			512,
  	.gc_thresh3 =			1024,
  };
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
  static int dn_neigh_construct(struct neighbour *neigh)
  {
  	struct net_device *dev = neigh->dev;
  	struct dn_neigh *dn = (struct dn_neigh *)neigh;
  	struct dn_dev *dn_db;
  	struct neigh_parms *parms;
  
  	rcu_read_lock();
  	dn_db = rcu_dereference(dev->dn_ptr);
  	if (dn_db == NULL) {
  		rcu_read_unlock();
  		return -EINVAL;
  	}
  
  	parms = dn_db->neigh_parms;
  	if (!parms) {
  		rcu_read_unlock();
  		return -EINVAL;
  	}
  
  	__neigh_parms_put(neigh->parms);
  	neigh->parms = neigh_parms_clone(parms);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142
143
144
145
146
  
  	if (dn_db->use_long)
  		neigh->ops = &dn_long_ops;
  	else
  		neigh->ops = &dn_short_ops;
1f07247de   Paul E. McKenney   [DECNET]: Fix RCU...
147
  	rcu_read_unlock();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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
198
199
200
  
  	if (dn->flags & DN_NDFLAG_P3)
  		neigh->ops = &dn_phase3_ops;
  
  	neigh->nud_state = NUD_NOARP;
  	neigh->output = neigh->ops->connected_output;
  
  	if ((dev->type == ARPHRD_IPGRE) || (dev->flags & IFF_POINTOPOINT))
  		memcpy(neigh->ha, dev->broadcast, dev->addr_len);
  	else if ((dev->type == ARPHRD_ETHER) || (dev->type == ARPHRD_LOOPBACK))
  		dn_dn2eth(neigh->ha, dn->addr);
  	else {
  		if (net_ratelimit())
  			printk(KERN_DEBUG "Trying to create neigh for hw %d
  ",  dev->type);
  		return -EINVAL;
  	}
  
  	/*
  	 * Make an estimate of the remote block size by assuming that its
  	 * two less then the device mtu, which it true for ethernet (and
  	 * other things which support long format headers) since there is
  	 * an extra length field (of 16 bits) which isn't part of the
  	 * ethernet headers and which the DECnet specs won't admit is part
  	 * of the DECnet routing headers either.
  	 *
  	 * If we over estimate here its no big deal, the NSP negotiations
  	 * will prevent us from sending packets which are too large for the
  	 * remote node to handle. In any case this figure is normally updated
  	 * by a hello message in most cases.
  	 */
  	dn->blksize = dev->mtu - 2;
  
  	return 0;
  }
  
  static void dn_long_error_report(struct neighbour *neigh, struct sk_buff *skb)
  {
  	printk(KERN_DEBUG "dn_long_error_report: called
  ");
  	kfree_skb(skb);
  }
  
  
  static void dn_short_error_report(struct neighbour *neigh, struct sk_buff *skb)
  {
  	printk(KERN_DEBUG "dn_short_error_report: called
  ");
  	kfree_skb(skb);
  }
  
  static int dn_neigh_output_packet(struct sk_buff *skb)
  {
adf30907d   Eric Dumazet   net: skb->dst acc...
201
  	struct dst_entry *dst = skb_dst(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
  	struct dn_route *rt = (struct dn_route *)dst;
272174550   David Miller   net: Rename dst_g...
203
  	struct neighbour *neigh = dst_get_neighbour_noref(dst);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
204
205
206
207
  	struct net_device *dev = neigh->dev;
  	char mac_addr[ETH_ALEN];
  
  	dn_dn2eth(mac_addr, rt->rt_local_src);
0c4e85813   Stephen Hemminger   [NET]: Wrap netde...
208
209
  	if (dev_hard_header(skb, dev, ntohs(skb->protocol), neigh->ha,
  			    mac_addr, skb->len) >= 0)
542d4d685   David S. Miller   neigh: Kill ndisc...
210
  		return dev_queue_xmit(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
212
213
214
215
216
217
218
  
  	if (net_ratelimit())
  		printk(KERN_DEBUG "dn_neigh_output_packet: oops, can't send packet
  ");
  
  	kfree_skb(skb);
  	return -EINVAL;
  }
8f40b161d   David S. Miller   neigh: Pass neigh...
219
  static int dn_long_output(struct neighbour *neigh, struct sk_buff *skb)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
220
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
  	struct net_device *dev = neigh->dev;
  	int headroom = dev->hard_header_len + sizeof(struct dn_long_packet) + 3;
  	unsigned char *data;
  	struct dn_long_packet *lp;
  	struct dn_skb_cb *cb = DN_SKB_CB(skb);
  
  
  	if (skb_headroom(skb) < headroom) {
  		struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
  		if (skb2 == NULL) {
  			if (net_ratelimit())
  				printk(KERN_CRIT "dn_long_output: no memory
  ");
  			kfree_skb(skb);
  			return -ENOBUFS;
  		}
  		kfree_skb(skb);
  		skb = skb2;
  		if (net_ratelimit())
  			printk(KERN_INFO "dn_long_output: Increasing headroom
  ");
  	}
  
  	data = skb_push(skb, sizeof(struct dn_long_packet) + 3);
  	lp = (struct dn_long_packet *)(data+3);
c4106aa88   Harvey Harrison   decnet: remove pr...
246
  	*((__le16 *)data) = cpu_to_le16(skb->len - 2);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
247
248
249
250
  	*(data + 2) = 1 | DN_RT_F_PF; /* Padding */
  
  	lp->msgflg   = DN_RT_PKT_LONG|(cb->rt_flags&(DN_RT_F_IE|DN_RT_F_RQR|DN_RT_F_RTS));
  	lp->d_area   = lp->d_subarea = 0;
c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
251
  	dn_dn2eth(lp->d_id, cb->dst);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
  	lp->s_area   = lp->s_subarea = 0;
c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
253
  	dn_dn2eth(lp->s_id, cb->src);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
254
255
256
257
  	lp->nl2      = 0;
  	lp->visit_ct = cb->hops & 0x3f;
  	lp->s_class  = 0;
  	lp->pt       = 0;
c1d2bbe1c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
258
  	skb_reset_network_header(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
259

5d877d876   Jan Engelhardt   netfilter: decnet...
260
261
  	return NF_HOOK(NFPROTO_DECNET, NF_DN_POST_ROUTING, skb, NULL,
  		       neigh->dev, dn_neigh_output_packet);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
262
  }
8f40b161d   David S. Miller   neigh: Pass neigh...
263
  static int dn_short_output(struct neighbour *neigh, struct sk_buff *skb)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
264
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265
266
267
268
269
  	struct net_device *dev = neigh->dev;
  	int headroom = dev->hard_header_len + sizeof(struct dn_short_packet) + 2;
  	struct dn_short_packet *sp;
  	unsigned char *data;
  	struct dn_skb_cb *cb = DN_SKB_CB(skb);
429eb0fae   YOSHIFUJI Hideaki   [NET] DECNET: Fix...
270
271
272
  	if (skb_headroom(skb) < headroom) {
  		struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
  		if (skb2 == NULL) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
273
  			if (net_ratelimit())
429eb0fae   YOSHIFUJI Hideaki   [NET] DECNET: Fix...
274
275
276
277
278
279
280
  				printk(KERN_CRIT "dn_short_output: no memory
  ");
  			kfree_skb(skb);
  			return -ENOBUFS;
  		}
  		kfree_skb(skb);
  		skb = skb2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
281
  		if (net_ratelimit())
429eb0fae   YOSHIFUJI Hideaki   [NET] DECNET: Fix...
282
283
284
  			printk(KERN_INFO "dn_short_output: Increasing headroom
  ");
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
286
  
  	data = skb_push(skb, sizeof(struct dn_short_packet) + 2);
c4106aa88   Harvey Harrison   decnet: remove pr...
287
  	*((__le16 *)data) = cpu_to_le16(skb->len - 2);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
289
290
291
292
293
  	sp = (struct dn_short_packet *)(data+2);
  
  	sp->msgflg     = DN_RT_PKT_SHORT|(cb->rt_flags&(DN_RT_F_RQR|DN_RT_F_RTS));
  	sp->dstnode    = cb->dst;
  	sp->srcnode    = cb->src;
  	sp->forward    = cb->hops & 0x3f;
c1d2bbe1c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
294
  	skb_reset_network_header(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295

5d877d876   Jan Engelhardt   netfilter: decnet...
296
297
  	return NF_HOOK(NFPROTO_DECNET, NF_DN_POST_ROUTING, skb, NULL,
  		       neigh->dev, dn_neigh_output_packet);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
299
300
301
302
303
  }
  
  /*
   * Phase 3 output is the same is short output, execpt that
   * it clears the area bits before transmission.
   */
8f40b161d   David S. Miller   neigh: Pass neigh...
304
  static int dn_phase3_output(struct neighbour *neigh, struct sk_buff *skb)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
  	struct net_device *dev = neigh->dev;
  	int headroom = dev->hard_header_len + sizeof(struct dn_short_packet) + 2;
  	struct dn_short_packet *sp;
  	unsigned char *data;
  	struct dn_skb_cb *cb = DN_SKB_CB(skb);
  
  	if (skb_headroom(skb) < headroom) {
  		struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
  		if (skb2 == NULL) {
  			if (net_ratelimit())
  				printk(KERN_CRIT "dn_phase3_output: no memory
  ");
  			kfree_skb(skb);
  			return -ENOBUFS;
  		}
  		kfree_skb(skb);
  		skb = skb2;
  		if (net_ratelimit())
  			printk(KERN_INFO "dn_phase3_output: Increasing headroom
  ");
  	}
  
  	data = skb_push(skb, sizeof(struct dn_short_packet) + 2);
c4106aa88   Harvey Harrison   decnet: remove pr...
329
  	*((__le16 *)data) = cpu_to_le16(skb->len - 2);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
330
331
332
  	sp = (struct dn_short_packet *)(data + 2);
  
  	sp->msgflg   = DN_RT_PKT_SHORT|(cb->rt_flags&(DN_RT_F_RQR|DN_RT_F_RTS));
c4106aa88   Harvey Harrison   decnet: remove pr...
333
334
  	sp->dstnode  = cb->dst & cpu_to_le16(0x03ff);
  	sp->srcnode  = cb->src & cpu_to_le16(0x03ff);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
335
  	sp->forward  = cb->hops & 0x3f;
c1d2bbe1c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
336
  	skb_reset_network_header(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
337

5d877d876   Jan Engelhardt   netfilter: decnet...
338
339
  	return NF_HOOK(NFPROTO_DECNET, NF_DN_POST_ROUTING, skb, NULL,
  		       neigh->dev, dn_neigh_output_packet);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  }
  
  /*
   * Unfortunately, the neighbour code uses the device in its hash
   * function, so we don't get any advantage from it. This function
   * basically does a neigh_lookup(), but without comparing the device
   * field. This is required for the On-Ethernet cache
   */
  
  /*
   * Pointopoint link receives a hello message
   */
  void dn_neigh_pointopoint_hello(struct sk_buff *skb)
  {
  	kfree_skb(skb);
  }
  
  /*
   * Ethernet router hello message received
   */
  int dn_neigh_router_hello(struct sk_buff *skb)
  {
  	struct rtnode_hello_message *msg = (struct rtnode_hello_message *)skb->data;
  
  	struct neighbour *neigh;
  	struct dn_neigh *dn;
  	struct dn_dev *dn_db;
c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
367
  	__le16 src;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
368

c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
369
  	src = dn_eth2dn(msg->id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370
371
372
373
374
375
376
377
378
  
  	neigh = __neigh_lookup(&dn_neigh_table, &src, skb->dev, 1);
  
  	dn = (struct dn_neigh *)neigh;
  
  	if (neigh) {
  		write_lock(&neigh->lock);
  
  		neigh->used = jiffies;
fc766e4c4   Eric Dumazet   decnet: RCU conve...
379
  		dn_db = rcu_dereference(neigh->dev->dn_ptr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
380
381
382
383
384
385
  
  		if (!(neigh->nud_state & NUD_PERMANENT)) {
  			neigh->updated = jiffies;
  
  			if (neigh->dev->type == ARPHRD_ETHER)
  				memcpy(neigh->ha, &eth_hdr(skb)->h_source, ETH_ALEN);
c4106aa88   Harvey Harrison   decnet: remove pr...
386
  			dn->blksize  = le16_to_cpu(msg->blksize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
387
388
389
  			dn->priority = msg->priority;
  
  			dn->flags &= ~DN_NDFLAG_P3;
06f8fe11b   Joe Perches   decnet: Reduce sw...
390
391
392
393
394
395
396
  			switch (msg->iinfo & DN_RT_INFO_TYPE) {
  			case DN_RT_INFO_L1RT:
  				dn->flags &=~DN_NDFLAG_R2;
  				dn->flags |= DN_NDFLAG_R1;
  				break;
  			case DN_RT_INFO_L2RT:
  				dn->flags |= DN_NDFLAG_R2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
  			}
  		}
5062430c5   Patrick Caulfield   [DECNET]: Only us...
399
  		/* Only use routers in our area */
c4106aa88   Harvey Harrison   decnet: remove pr...
400
  		if ((le16_to_cpu(src)>>10) == (le16_to_cpu((decnet_address))>>10)) {
5062430c5   Patrick Caulfield   [DECNET]: Only us...
401
402
403
404
405
406
  			if (!dn_db->router) {
  				dn_db->router = neigh_clone(neigh);
  			} else {
  				if (msg->priority > ((struct dn_neigh *)dn_db->router)->priority)
  					neigh_release(xchg(&dn_db->router, neigh_clone(neigh)));
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
  		}
  		write_unlock(&neigh->lock);
  		neigh_release(neigh);
  	}
  
  	kfree_skb(skb);
  	return 0;
  }
  
  /*
   * Endnode hello message received
   */
  int dn_neigh_endnode_hello(struct sk_buff *skb)
  {
  	struct endnode_hello_message *msg = (struct endnode_hello_message *)skb->data;
  	struct neighbour *neigh;
  	struct dn_neigh *dn;
c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
424
  	__le16 src;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
425

c4ea94ab3   Steven Whitehouse   [DECnet]: Endian ...
426
  	src = dn_eth2dn(msg->id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
  
  	neigh = __neigh_lookup(&dn_neigh_table, &src, skb->dev, 1);
  
  	dn = (struct dn_neigh *)neigh;
  
  	if (neigh) {
  		write_lock(&neigh->lock);
  
  		neigh->used = jiffies;
  
  		if (!(neigh->nud_state & NUD_PERMANENT)) {
  			neigh->updated = jiffies;
  
  			if (neigh->dev->type == ARPHRD_ETHER)
  				memcpy(neigh->ha, &eth_hdr(skb)->h_source, ETH_ALEN);
  			dn->flags   &= ~(DN_NDFLAG_R1 | DN_NDFLAG_R2);
c4106aa88   Harvey Harrison   decnet: remove pr...
443
  			dn->blksize  = le16_to_cpu(msg->blksize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
  			dn->priority = 0;
  		}
  
  		write_unlock(&neigh->lock);
  		neigh_release(neigh);
  	}
  
  	kfree_skb(skb);
  	return 0;
  }
  
  static char *dn_find_slot(char *base, int max, int priority)
  {
  	int i;
  	unsigned char *min = NULL;
  
  	base += 6; /* skip first id */
  
  	for(i = 0; i < max; i++) {
  		if (!min || (*base < *min))
  			min = base;
  		base += 7; /* find next priority */
  	}
  
  	if (!min)
  		return NULL;
  
  	return (*min < priority) ? (min - 6) : NULL;
  }
  
  struct elist_cb_state {
  	struct net_device *dev;
  	unsigned char *ptr;
  	unsigned char *rs;
  	int t, n;
  };
  
  static void neigh_elist_cb(struct neighbour *neigh, void *_info)
  {
  	struct elist_cb_state *s = _info;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
484
485
486
487
488
489
490
491
  	struct dn_neigh *dn;
  
  	if (neigh->dev != s->dev)
  		return;
  
  	dn = (struct dn_neigh *) neigh;
  	if (!(dn->flags & (DN_NDFLAG_R1|DN_NDFLAG_R2)))
  		return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
  	if (s->t == s->n)
  		s->rs = dn_find_slot(s->ptr, s->n, dn->priority);
  	else
  		s->t++;
  	if (s->rs == NULL)
  		return;
  
  	dn_dn2eth(s->rs, dn->addr);
  	s->rs += 6;
  	*(s->rs) = neigh->nud_state & NUD_CONNECTED ? 0x80 : 0x0;
  	*(s->rs) |= dn->priority;
  	s->rs++;
  }
  
  int dn_neigh_elist(struct net_device *dev, unsigned char *ptr, int n)
  {
  	struct elist_cb_state state;
  
  	state.dev = dev;
  	state.t = 0;
  	state.n = n;
  	state.ptr = ptr;
  	state.rs = ptr;
  
  	neigh_for_each(&dn_neigh_table, neigh_elist_cb, &state);
  
  	return state.t;
  }
  
  
  #ifdef CONFIG_PROC_FS
  
  static inline void dn_neigh_format_entry(struct seq_file *seq,
  					 struct neighbour *n)
  {
  	struct dn_neigh *dn = (struct dn_neigh *) n;
  	char buf[DN_ASCBUF_LEN];
  
  	read_lock(&n->lock);
  	seq_printf(seq, "%-7s %s%s%s   %02x    %02d  %07ld %-8s
  ",
c4106aa88   Harvey Harrison   decnet: remove pr...
533
  		   dn_addr2asc(le16_to_cpu(dn->addr), buf),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
  		   (dn->flags&DN_NDFLAG_R1) ? "1" : "-",
  		   (dn->flags&DN_NDFLAG_R2) ? "2" : "-",
  		   (dn->flags&DN_NDFLAG_P3) ? "3" : "-",
  		   dn->n.nud_state,
  		   atomic_read(&dn->n.refcnt),
  		   dn->blksize,
  		   (dn->n.dev) ? dn->n.dev->name : "?");
  	read_unlock(&n->lock);
  }
  
  static int dn_neigh_seq_show(struct seq_file *seq, void *v)
  {
  	if (v == SEQ_START_TOKEN) {
  		seq_puts(seq, "Addr    Flags State Use Blksize Dev
  ");
  	} else {
  		dn_neigh_format_entry(seq, v);
  	}
  
  	return 0;
  }
  
  static void *dn_neigh_seq_start(struct seq_file *seq, loff_t *pos)
  {
  	return neigh_seq_start(seq, pos, &dn_neigh_table,
  			       NEIGH_SEQ_NEIGH_ONLY);
  }
56b3d975b   Philippe De Muyter   [NET]: Make all i...
561
  static const struct seq_operations dn_neigh_seq_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
562
563
564
565
566
567
568
569
  	.start = dn_neigh_seq_start,
  	.next  = neigh_seq_next,
  	.stop  = neigh_seq_stop,
  	.show  = dn_neigh_seq_show,
  };
  
  static int dn_neigh_seq_open(struct inode *inode, struct file *file)
  {
426b5303e   Eric W. Biederman   [NETNS]: Modify t...
570
571
  	return seq_open_net(inode, file, &dn_neigh_seq_ops,
  			    sizeof(struct neigh_seq_state));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
572
  }
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
573
  static const struct file_operations dn_neigh_seq_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
574
575
576
577
  	.owner		= THIS_MODULE,
  	.open		= dn_neigh_seq_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
426b5303e   Eric W. Biederman   [NETNS]: Modify t...
578
  	.release	= seq_release_net,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
579
580
581
582
583
584
585
  };
  
  #endif
  
  void __init dn_neigh_init(void)
  {
  	neigh_table_init(&dn_neigh_table);
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
586
  	proc_net_fops_create(&init_net, "decnet_neigh", S_IRUGO, &dn_neigh_seq_fops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
587
588
589
590
  }
  
  void __exit dn_neigh_cleanup(void)
  {
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
591
  	proc_net_remove(&init_net, "decnet_neigh");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
592
593
  	neigh_table_clear(&dn_neigh_table);
  }