File: net_alias.c

package info (click to toggle)
kernel-source-2.0.38 2.0.38-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 34,660 kB
  • ctags: 102,964
  • sloc: ansic: 632,204; asm: 26,444; makefile: 4,286; sh: 1,276; perl: 761; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (1503 lines) | stat: -rw-r--r-- 33,831 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
56
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
93
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
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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
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
484
485
486
487
488
489
490
491
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
533
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
/*
 *		NET_ALIAS network device aliasing module.
 *
 *
 * Version:	@(#)net_alias.c	0.50   4/20/97
 *
 *
 * Authors:	Juan Jose Ciarlante, <jjciarla@raiz.uncu.edu.ar>
 *		Marcelo Fabian Roccasalva, <mfroccas@raiz.uncu.edu.ar>
 *
 * Features:
 *	-	AF_ independent: net_alias_type objects
 *	-	AF_INET optimized
 *	-	ACTUAL alias devices inserted in dev chain
 *	-	fast hashed alias address lookup
 *	-	net_alias_type objs registration/unreg., module-ables.
 *	-	/proc/net/aliases & /proc/net/alias_types entries
 *	-	tx and rx stats
 *	-	/proc/sys/net/core/net_alias_max entry
 * Fixes:
 *	Juan Jose Ciarlante	:	several net_alias_type func. renamed.
 *	Juan Jose Ciarlante	:	net_alias_type object methods now pass 
 *					*this.
 *	Juan Jose Ciarlante	:	xxx_rcv device selection based on <src,dst> addrs
 *		Andreas Schultz	:	Kerneld support.
 *	Juan Jose Ciarlante	:	Added tx/rx stats for aliases.
 *	Juan Jose Ciarlante	:	Added sysctl interface for max aliases per device
 *
 * FIXME:
 *	- User calls sleep/wake_up locking.
 *
 *
 *	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; either version
 *	2 of the License, or (at your option) any later version.
 *	
 */

#include <linux/config.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/notifier.h>
#include <linux/if.h>
#include <linux/if_ether.h>
#include <linux/inet.h>
#include <linux/in.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/sysctl.h>

#ifdef ALIAS_USER_LAND_DEBUG
#include "net_alias.h"
#include "user_stubs.h"
#endif

#include <linux/net_alias.h>

#ifdef CONFIG_KERNELD
#include <linux/kerneld.h>
#endif


/*
 * 	NET_ALIAS_MAX_DEFAULT: max. alias slot number allowed by default,
 *		can be changed by sysctl
 *	NET_ALIAS_HASH_TAB_SIZE: hash table size (addr lookup), 1 per aliased 
 *		device, due to hash optimizations, MUST be 16 or 256 only.
 */

#define NET_ALIAS_MAX_DEFAULT		256

/* DO NOT CHANGE the line below ! */
#define NET_ALIAS_HASH_TAB_SIZE(n)  ( ((n)>=NET_ALIAS_MAX_DEFAULT) ? 256 : 16 )

/*
 *	set default max_aliases per device
 */
int sysctl_net_alias_max = NET_ALIAS_MAX_DEFAULT;

/*
 * 	Only allow the following flags to pass from main device to aliases
 *	Note that IFF_BROADCAST is not passed by default, this make sense
 *	because:
 *	a) if same-net alias: broadcasts are already handled by main device
 *	b) if diff-net alias: bcasts will be set by 'broadcast' ifconfig opt.
 *	I prefer this approach instead of setting '-broadcast' for each
 *	same-net alias device  --JJC.
 */

#define  NET_ALIAS_IFF_MASK   (IFF_SOFTHEADERS|IFF_NOARP|IFF_LOOPBACK|IFF_POINTOPOINT)

static struct net_alias_type * nat_getbytype(int type);
static int nat_attach_chg(struct net_alias_type *nat, int delta);
static int nat_bind(struct net_alias_type *nat,struct net_alias *alias, struct sockaddr *sa);
static int nat_unbind(struct net_alias_type *nat, struct net_alias *alias);


static int net_alias_devinit(struct device *dev);
static struct enet_statistics *net_alias_dev_stats(struct device *dev);
static int net_alias_hard_start_xmit(struct sk_buff *skb, struct device *dev);
static int net_alias_devsetup(struct net_alias *alias, struct net_alias_type *nat, struct sockaddr *sa);
static struct net_alias **net_alias_slow_findp(struct net_alias_info *alias_info, struct net_alias *alias);
static struct device *net_alias_dev_create(struct device *main_dev, int slot, int *err, struct sockaddr *sa, void *data);
static struct device *net_alias_dev_delete(struct device *main_dev, int slot, int *err);
static void net_alias_free(struct device *dev);
					   
/*
 * net_alias_type base array, will hold net_alias_type obj hashed list heads.
 */

struct net_alias_type *net_alias_type_base[16];


/*
 *	get_stats function: return rx/tx pkts based on lookups
 */
static struct enet_statistics *net_alias_dev_stats(struct device *dev)
{
        static struct enet_statistics alias_stats;
        struct net_alias *alias = dev->my_alias;
        
        memset (&alias_stats, 0, sizeof (alias_stats));
        alias_stats.rx_packets	      = alias->rx_lookups;
        alias_stats.tx_packets	      = alias->tx_lookups;
        return &alias_stats;
}


/*
 * get net_alias_type ptr by type
 */

static __inline__ struct net_alias_type *
nat_getbytype(int type)
{
  struct net_alias_type *nat;
  for(nat = net_alias_type_base[type & 0x0f]; nat ; nat = nat->next)
  {
    if (nat->type == type) return nat;
  }
  return NULL;
}


/*
 * get addr32 representation (pre-hashing) of address.
 * if NULL nat->get_addr32, assume sockaddr_in struct (IP-ish).
 */

static __inline__ __u32
nat_addr32(struct net_alias_type *nat, struct sockaddr *sa)
{
  if (nat->get_addr32)
    return nat->get_addr32(nat, sa);
  else
    return (*(struct sockaddr_in *)sa).sin_addr.s_addr;
}


/*
 * hashing code for alias_info->hash_tab entries
 * 4 bytes -> 1/2 byte using xor complemented by af
 */

static __inline__ unsigned
hash_key(unsigned hsize, __u32 addr)
{
  unsigned tmp = addr ^ (addr>>16); /* 4 -> 2 */
  tmp ^= (tmp>>8);                  /* 2 -> 1 */
  if (hsize == 256)
    return (tmp & 0xff);
  else
    return (tmp^(tmp>>4)) & 0x0f;	    /* 1 -> 1/2 */
}


/*
 * get hash key for supplied net alias type and address
 * nat must be !NULL
 * the purpose here is to map a net_alias_type and a generic
 * address to a hash code.
 */

static __inline__ int
nat_hash_key(struct net_alias_type *nat, unsigned hsize, struct sockaddr *sa)
{
  return hash_key(hsize, nat_addr32(nat,sa));
}


/*
 * change net_alias_type number of attachments (bindings)
 */

static int
nat_attach_chg(struct net_alias_type *nat, int delta)
{
  unsigned long flags;
  int n_at;
  if (!nat) return -1;
  save_flags(flags);
  cli();
  n_at = nat->n_attach + delta;
  if (n_at < 0)
  {
    restore_flags(flags);
    printk(KERN_WARNING "net_alias: tried to set n_attach < 0 for (family==%d) nat object.\n",
	   nat->type);
    return -1;
  }
  nat->n_attach = n_at;
  restore_flags(flags);
  return 0;
}


/*
 * bind alias to its type (family) object and call initialization hook
 */

static __inline__ int
nat_bind(struct net_alias_type *nat,struct net_alias *alias, struct sockaddr *sa)
{
  if (nat->alias_init_1) nat->alias_init_1(nat, alias, sa);
  return nat_attach_chg(nat, +1);
}


/*
 * unbind alias from type object and call alias destructor
 */

static __inline__ int
nat_unbind(struct net_alias_type *nat, struct net_alias *alias)
{
  if (nat->alias_done_1) nat->alias_done_1(nat, alias);
  return nat_attach_chg(nat, -1);
}


/*
 * compare device address with given. if NULL nat->dev_addr_chk,
 * compare dev->pa_addr with (sockaddr_in) 32 bits address (IP-ish)
 */

static __inline__ int nat_dev_addr_chk_1(struct net_alias_type *nat,
				   struct device *dev, struct sockaddr *sa)
{
  if (nat->dev_addr_chk)
    return nat->dev_addr_chk(nat, dev, sa);
  else
    return (dev->pa_addr == (*(struct sockaddr_in *)sa).sin_addr.s_addr);
}


/*
 * alias device init()
 * do nothing.
 */

static int 
net_alias_devinit(struct device *dev)
{
#ifdef ALIAS_USER_LAND_DEBUG
  printk("net_alias_devinit(%s) called.\n", dev->name);
#endif
  return 0;
}


/*
 * hard_start_xmit() should not be called.
 * ignore ... but shout!.
 */

static int
net_alias_hard_start_xmit(struct sk_buff *skb, struct device *dev)
{
  printk(KERN_WARNING "net_alias: net_alias_hard_start_xmit() for %s called (ignored)!!\n", dev->name);
  dev_kfree_skb(skb, FREE_WRITE);
  return 0;
}


static int
net_alias_dev_open(struct device * dev)
{
  return 0;
}

static int
net_alias_dev_close(struct device * dev)
{
  return 0;
}

/*
 * setups a new (alias) device 
 */

static int
net_alias_devsetup(struct net_alias *alias, struct net_alias_type *nat,
		struct sockaddr *sa)
{
  struct device *main_dev;
  struct device *dev;
  int family;
  int i;

  /*
   *
   * generic device setup based on main_dev info
   *
   * FIXME: is NULL bitwise 0 for all Linux platforms?
   */
  
  main_dev = alias->main_dev;
  dev = &alias->dev;
  memset(dev, '\0', sizeof(struct device));
  family = (sa)? sa->sa_family : main_dev->family;
  alias->rx_lookups = 0;
  alias->tx_lookups = 0;
  dev->alias_info = NULL;	/* no aliasing recursion */
  dev->my_alias = alias;	/* point to alias */
  dev->name = alias->name;
  dev->type = main_dev->type;
  dev->open = net_alias_dev_open;
  dev->stop = net_alias_dev_close;
  dev->get_stats = net_alias_dev_stats;
  
  dev->hard_header_len = main_dev->hard_header_len;
  memcpy(dev->broadcast, main_dev->broadcast, MAX_ADDR_LEN);
  memcpy(dev->dev_addr, main_dev->dev_addr, MAX_ADDR_LEN);
  dev->addr_len = main_dev->addr_len;
  dev->init = net_alias_devinit;
  dev->hard_start_xmit = net_alias_hard_start_xmit;
  dev->flags = main_dev->flags & NET_ALIAS_IFF_MASK & ~IFF_UP;

  /*
   * only makes sense if same family
   */
  
  if (family == main_dev->family)
  {
    dev->metric = main_dev->metric;
    dev->mtu = main_dev->mtu;
    dev->pa_alen = main_dev->pa_alen;
    dev->hard_header = main_dev->hard_header;
    dev->rebuild_header = main_dev->rebuild_header;
  }
  
  /*
   *	Fill in the generic fields of the device structure.
   *    not actually used, avoids some dev.c #ifdef's
   */
  
  for (i = 0; i < DEV_NUMBUFFS; i++)
    skb_queue_head_init(&dev->buffs[i]);
  
  dev->family = family;
  return 0;
}


/*
 * slow alias find (parse the whole hash_tab)
 * returns: alias' pointer address
 */

static struct net_alias **
net_alias_slow_findp(struct net_alias_info *alias_info, struct net_alias *alias)
{
  unsigned idx, n_aliases;
  struct net_alias **aliasp;

  /*
   * for each alias_info's hash_tab entry, for every alias ...
   */
  
  n_aliases = alias_info->n_aliases;
  for (idx=0; idx < alias_info->hash_tab_size ; idx++)
    for (aliasp = &alias_info->hash_tab[idx];*aliasp;aliasp = &(*aliasp)->next)
      if (*aliasp == alias)
	return aliasp;
      else
	if (--n_aliases == 0) break; /* faster give up */
  return NULL;
}


/*
 * create alias device for main_dev with given slot num.
 * if sa==NULL will create a same_family alias device 
 */

static struct device *
net_alias_dev_create(struct device *main_dev, int slot, int *err, struct sockaddr *sa, void *data)
{
  struct net_alias_info *alias_info;
  struct net_alias *alias, **aliasp;
  struct net_alias_type *nat;
  struct device *dev;
  unsigned long flags;
  int family;
  __u32 addr32;
  int max_aliases;
  
  /* FIXME: lock */
  alias_info = main_dev->alias_info;

  /*
   * if NULL address given, take family from main_dev
   */
  
  family = (sa)? sa->sa_family : main_dev->family;
  
  /*
   * check if wanted family has a net_alias_type object registered
   */
  
  nat = nat_getbytype(family);
  if (!nat) {
#ifdef CONFIG_KERNELD
    char modname[20];
    sprintf (modname,"netalias-%d", family);
    request_module(modname);

    nat = nat_getbytype(family);
    if (!nat) {
#endif
      printk(KERN_WARNING "net_alias_dev_create(%s:%d): unregistered family==%d\n",
             main_dev->name, slot, family);
      /* *err = -EAFNOSUPPORT; */
      *err = -EINVAL;
      return NULL;
#ifdef CONFIG_KERNELD
    }
#endif
  }
  
  *err = -EINVAL;
  
  if (!alias_info)
  	/*
         *	At this point we take the sysctl value(s)
         */
  	max_aliases = sysctl_net_alias_max;
  else
  	max_aliases = alias_info->max_aliases;
  
  if (slot >= max_aliases )     /* 0-based (eth0:0 _IS_ valid) */
  	return NULL;
  
  /*
   * do not allow creation over downed devices
   */

  *err = -EIO;
  
  if (! (main_dev->flags & IFF_UP) )
    return NULL;
  
  /*
   * if first alias, must also create alias_info
   */
      
  *err = -ENOMEM;

  if (!alias_info)
  {
          /*
           *	Allocate space for struct net_alias_info plus hash table
           */
          int truesize;

          /* net_alias_info size */
          truesize = sizeof(struct net_alias_info);
          /* add   hash_tab size * sizeof(elem)  */
          truesize += NET_ALIAS_HASH_TAB_SIZE(max_aliases) * sizeof (struct net_alias *);
          
          alias_info = kmalloc( truesize , GFP_KERNEL);
  
          if (!alias_info) return NULL; /* ENOMEM */
          
          memset(alias_info, 0, truesize);
          alias_info->truesize = truesize;
          alias_info->max_aliases = max_aliases;
          alias_info->hash_tab_size = NET_ALIAS_HASH_TAB_SIZE(max_aliases);
  }
  
  if (!(alias = kmalloc(sizeof(struct net_alias), GFP_KERNEL)))
    return NULL;		/* ENOMEM */

  /*
   * FIXME: is NULL bitwise 0 for all Linux platforms?
   */
  
  memset(alias, 0, sizeof(struct net_alias));
  alias->slot = slot;
  alias->main_dev = main_dev;
  alias->nat = nat;
  alias->next = NULL;
  alias->data = data;
  sprintf(alias->name, "%s:%d", main_dev->name, slot);
  
  /*
   * initialise alias' device structure
   */
  
  net_alias_devsetup(alias, nat, sa);

  dev = &alias->dev;
  
  save_flags(flags);
  cli();

  /*
   * bind alias to its object type
   * nat_bind calls nat->alias_init_1
   */
  
  nat_bind(nat, alias, sa);

  /*
   * if no address passed, take from device (could have been
   * set by nat->alias_init_1)
   */
  
  addr32 = (sa)? nat_addr32(nat, sa) : alias->dev.pa_addr;
  
  /*
   * store hash key in alias: will speed-up rehashing and deletion
   */
  
  alias->hash = hash_key(alias_info->hash_tab_size, addr32);

  /*
   * insert alias in hashed linked list
   */
  
  aliasp = &alias_info->hash_tab[alias->hash];
  alias->next = *aliasp;	
  *aliasp = alias;

  /*
   * if first alias ...
   */
  
  if (!alias_info->n_aliases++)
  {
    alias_info->taildev = main_dev;
    main_dev->alias_info = alias_info;
  }
  
  /*
   * add device at tail (just after last main_dev alias)
   */
  
  dev->next = alias_info->taildev->next;
  alias_info->taildev->next = dev;
  alias_info->taildev = dev;
  restore_flags(flags);
  return dev;
}


/*
 * delete one main_dev alias (referred by its slot num)
 */

static struct device *
net_alias_dev_delete(struct device *main_dev, int slot, int *err)
{
  struct net_alias_info *alias_info;
  struct net_alias *alias, **aliasp;
  struct device *dev;
  unsigned n_aliases;
  unsigned long flags;
  struct net_alias_type *nat;
  struct device *prevdev;
  
  /* FIXME: lock */
  *err = -ENODEV;
  
  if (main_dev == NULL) return NULL;

  /*
   * does main_dev have aliases?
   */
  
  alias_info = main_dev->alias_info;
  if (!alias_info) return NULL;	/* ENODEV */
  
  n_aliases = alias_info->n_aliases;
  
  /*
   * find device that holds the same slot number (could also
   * be strcmp() ala dev_get).
   */
  
  for (prevdev=main_dev, alias = NULL;prevdev->next && n_aliases; prevdev = prevdev->next)
  {
    if (!(alias = prevdev->next->my_alias))
    {
      printk(KERN_ERR "net_alias_dev_delete(): incorrect non-alias device after maindev\n");
      continue;			/* or should give up? */
    }
    if (alias->slot == slot) break;
    alias = NULL;
    n_aliases--;
  }
  
  if (!alias) return NULL;	/* ENODEV */
  
  dev = &alias->dev;
  
  /*
   * find alias hashed entry
   */
  
  for(aliasp = &alias_info->hash_tab[alias->hash]; *aliasp; aliasp = &(*aliasp)->next)
    if(*aliasp == alias) break;

  /*
   * if not found (???), try a full search
   */
  
  if (*aliasp != alias)
    if ((aliasp = net_alias_slow_findp(alias_info, alias)))
      printk(KERN_WARNING "net_alias_dev_delete(%s): bad hashing recovered\n", alias->name);
    else
    {
      printk(KERN_ERR "net_alias_dev_delete(%s): unhashed alias!\n",alias->name);
      return NULL;		/* ENODEV */
    }
  
  nat = alias->nat;

  save_flags(flags);
  cli();
  
  /*
   * unbind alias from alias_type obj.
   */
  
  nat_unbind(nat, alias);
  
  /*
   * is alias at tail?
   */
  
  if ( dev == alias_info->taildev )
    alias_info->taildev = prevdev;
  
  /*
   * unlink and close device
   */
  prevdev->next = dev->next;
  dev_close(dev);
  
  /*
   * unlink alias
   */
  
  *aliasp = (*aliasp)->next;

  if (--alias_info->n_aliases == 0) /* last alias */
    main_dev->alias_info = NULL;
  restore_flags(flags);

  /*
   * now free structures
   */
  
  kfree_s(alias, sizeof(struct net_alias));
  if (main_dev->alias_info == NULL)
    kfree_s(alias_info, alias_info->truesize);

  /*
   * deletion ok (*err=0), NULL device returned.
   */
  
  *err = 0;
  return NULL;
}

/*
 * free all main device aliasing stuff
 * will be called on dev_close(main_dev)
 */

static void
net_alias_free(struct device *main_dev)
{
  struct net_alias_info *alias_info;
  struct net_alias *alias;
  struct net_alias_type *nat;
  struct device *dev;
  unsigned long flags;

  /*
   * do I really have aliases?
   */
  
  if (!(alias_info = main_dev->alias_info))    return;

  /*
   * fast device link "short-circuit": set main_dev->next to
   * device after last alias
   */
  
  save_flags(flags);
  cli();
  
  dev =  main_dev->next;
  main_dev->next = alias_info->taildev->next;
  main_dev->alias_info = NULL;
  alias_info->taildev->next = NULL;
  
  restore_flags(flags);

  /*
   * loop over alias devices, free and dev_close()
   */
  
  while (dev)
  {
    if (net_alias_is(dev))
    {
      alias = dev->my_alias;
      if (alias->main_dev == main_dev)
      {
	/*
	 * unbind alias from alias_type object
	 */
	
	nat = alias->nat;
	if (nat)
	{
	  nat_unbind(nat, alias);
	} /*  else error/printk ??? */
	
	dev_close(dev);
	dev = dev->next;
	
	kfree_s(alias, sizeof(struct net_alias));
	continue;
      }
      else
	printk(KERN_ERR "net_alias_free(%s): '%s' is not my alias\n",
	       main_dev->name, alias->name);
    }
    else
      printk(KERN_ERR "net_alias_free(%s): found a non-alias after device!\n",
	     main_dev->name);
    dev = dev->next;
  }
  
  kfree_s(alias_info, sizeof(alias_info));
  return;
}

/*
 * dev_get() with added alias naming magic.
 */

struct device *
net_alias_dev_get(char *dev_name, int aliasing_ok, int *err,
		  struct sockaddr *sa, void *data)
{
  struct device *dev;
  char *sptr,*eptr;
  int slot = 0;
  int delete = 0;
  
  *err = -ENODEV;
  if ((dev=dev_get(dev_name)))
    return dev;

  /*
   * want alias naming magic?
   */
  
  if (!aliasing_ok) return NULL;

  if (!dev_name || !*dev_name)
    return NULL;
  
  /*
   * find the first ':' , must be followed by, at least, 1 char
   */
  
  for (sptr=dev_name ; *sptr ; sptr++) if(*sptr==':') break;
  if (!*sptr || !*(sptr+1))
    return NULL;
  
  /*
   * seems to be an alias name, fetch main device
   */
  
  *sptr='\0';
  if (!(dev=dev_get(dev_name)))
    return NULL;
  *sptr++=':';

  /*
   * fetch slot number
   */
  
  slot = simple_strtoul(sptr,&eptr,10);

  /*
   * if last char is '-', it is a deletion request
   */
  
  if (eptr[0] == '-' && !eptr[1] ) delete++;
  else if (eptr[0])
    return NULL;
  
  /*
   * well... let's work.
   */
  
  if (delete)
    return net_alias_dev_delete(dev, slot, err);
  else
    return net_alias_dev_create(dev, slot, err, sa, data);
}


/*
 * rehash alias device with address supplied. 
 */

int
net_alias_dev_rehash(struct device *dev, struct sockaddr *sa)
{
  struct net_alias_info *alias_info;
  struct net_alias *alias, **aliasp;
  struct device *main_dev;
  unsigned long flags;
  struct net_alias_type *o_nat, *n_nat;
  unsigned n_hash;

  /*
   * defensive ...
   */
  
  if (dev == NULL) return -1;
  if ( (alias = dev->my_alias) == NULL ) return -1;
  
  if (!sa)
  {
    printk(KERN_ERR "net_alias_rehash(): NULL sockaddr passed\n");
    return -1;
  }

  /*
   * defensive. should not happen.
   */

  if ( (main_dev = alias->main_dev) == NULL )
  {
    printk(KERN_ERR "net_alias_rehash for %s: NULL maindev\n", alias->name);
    return -1;
  }

  /*
   * defensive. should not happen.
   */

  if (!(alias_info=main_dev->alias_info))
  {
    printk(KERN_ERR "net_alias_rehash for %s: NULL alias_info\n", alias->name);
    return -1;
  }
  
  /*
   * will the request also change device family?
   */
  
  o_nat = alias->nat;
  if (!o_nat)
  {
    printk(KERN_ERR "net_alias_rehash(%s): unbound alias.\n", alias->name);
    return -1;
  }

  /*
   * point to new alias_type obj.
   */
  
  if (o_nat->type == sa->sa_family)
    n_nat = o_nat;
  else
  {
    n_nat = nat_getbytype(sa->sa_family);
    if (!n_nat)
    {
      printk(KERN_ERR "net_alias_rehash(%s): unreg family==%d.\n", alias->name, sa->sa_family);
      return -1;
    }
  }
  
  /*
   * new hash key. if same as old AND same type (family) return;
   */
  
  n_hash = nat_hash_key(n_nat, alias_info->hash_tab_size, sa);
  if (n_hash == alias->hash && o_nat == n_nat )
    return 0;

  /*
   * find alias in hashed list
   */
  
  for (aliasp = &alias_info->hash_tab[alias->hash]; *aliasp; aliasp = &(*aliasp)->next)
    if (*aliasp == alias) break;
  
  /*
   * not found (???). try a full search
   */
  
  if(!*aliasp)
    if ((aliasp = net_alias_slow_findp(alias_info, alias)))
      printk(KERN_WARNING "net_alias_rehash(%s): bad hashing recovered\n", alias->name);
    else
    {
      printk(KERN_ERR "net_alias_rehash(%s): unhashed alias!\n", alias->name);
      return -1;
    }
  
  save_flags(flags);
  cli();
  
  /*
   * if type (family) changed, unlink from old type object (o_nat)
   * will call o_nat->alias_done_1()
   */
  
  if (o_nat != n_nat)
    nat_unbind(o_nat, alias);

  /*
   * if diff hash key, change alias position in hashed list
   */
  
  if (n_hash != alias->hash)
  {
    *aliasp = (*aliasp)->next;
    alias->hash = n_hash;
    aliasp = &alias_info->hash_tab[n_hash];
    alias->next = *aliasp;
    *aliasp = alias;
  }
  
  /*
   * if type (family) changed link to new type object (n_nat)
   * will call n_nat->alias_init_1()
   */
  
  if (o_nat != n_nat)
    nat_bind(n_nat, alias, sa);
  
  restore_flags(flags);
  return 0;
}




/*
 *  implements /proc/net/alias_types entry
 *  shows net_alias_type objects registered.
 */

int net_alias_types_getinfo(char *buffer, char **start, off_t offset, int length, int dummy)
{
  off_t pos=0, begin=0;
  int len=0;
  struct net_alias_type *nat;
  unsigned idx;
  len=sprintf(buffer,"type    name            n_attach\n");
  for (idx=0 ; idx < 16 ; idx++)
    for (nat = net_alias_type_base[idx]; nat ; nat = nat->next)
    {
      len += sprintf(buffer+len, "%-7d %-15s %-7d\n",
		     nat->type, nat->name,nat->n_attach);
      pos=begin+len;
      if(pos<offset)
      {
	len=0;
	begin=pos;
      }
      if(pos>offset+length)
	break;
    }
  *start=buffer+(offset-begin);
  len-=(offset-begin);
  if(len>length)
    len=length;	
  return len;
}


/*
 *  implements /proc/net/aliases entry, shows alias devices.
 *   calls alias nat->alias_print_1 if not NULL and formats everything
 *   to a fixed rec. size without using local (stack) buffers
 *
 */

#define NET_ALIASES_RECSIZ 64
int net_alias_getinfo(char *buffer, char **start, off_t offset, int length, int dummy)
{
  off_t pos=0, begin=0;
  int len=0;
  int dlen;
  struct net_alias_type *nat;
  struct net_alias *alias;
  struct device *dev;

  len=sprintf(buffer,"%-*s\n",NET_ALIASES_RECSIZ-1,"device           family address");
  for (dev = dev_base; dev ; dev = dev->next)
    if (net_alias_is(dev))
    {
      alias = dev->my_alias;
      nat = alias->nat;
      dlen=sprintf(buffer+len, "%-16s %-6d ", alias->name, alias->dev.family);
      
      /*
       * call alias_type specific print function.
       */
      
      if (nat->alias_print_1)
	dlen += nat->alias_print_1(nat, alias, buffer+len+dlen, NET_ALIASES_RECSIZ - dlen);
      else
	dlen += sprintf(buffer+len+dlen, "-");

      /*
       * fill with spaces if needed 
       */
      
      if (dlen < NET_ALIASES_RECSIZ) memset(buffer+len+dlen, ' ', NET_ALIASES_RECSIZ - dlen);
      /*
       * truncate to NET_ALIASES_RECSIZ
       */
      
      len += NET_ALIASES_RECSIZ;
      buffer[len-1] = '\n';
      
      pos=begin+len;
      if(pos<offset)
      {
	len=0;
	begin=pos;
      }
      if(pos>offset+length)
	break;
    }
  *start=buffer+(offset-begin);
  len-=(offset-begin);
  if(len>length)
    len=length;	
  return len;
}


/*
 * notifier for devices events
 */

int net_alias_device_event(struct notifier_block *this, unsigned long event, void *ptr)
{
  struct device *dev = ptr;

  if (event == NETDEV_DOWN)
  {
#ifdef ALIAS_USER_LAND_DEBUG
    printk("net_alias: NETDEV_DOWN for %s received\n", dev->name);
#endif
    if (net_alias_has(dev))
      net_alias_free(dev);
  }

  if (event == NETDEV_UP)
  {
#ifdef ALIAS_USER_LAND_DEBUG
    printk("net_alias: NETDEV_UP for %s received\n", dev->name);
#endif
    dev->alias_info = 0;
  }

  return NOTIFY_DONE;
}


/*
 * device aliases address comparison workhorse
 * no checks for nat and alias_info, must be !NULL
 */

static __inline__ struct device *
nat_addr_chk(struct net_alias_type *nat, struct net_alias_info *alias_info, struct sockaddr *sa, int flags_on, int flags_off)
{
  struct net_alias *alias;
  unsigned hsize = alias_info->hash_tab_size;
  
  for(alias = alias_info->hash_tab[nat_hash_key(nat,hsize,sa)];
      alias; alias = alias->next)
  {
    if (alias->dev.family != sa->sa_family) continue;

    /*
     * nat_dev_addr_chk_1 will call type specific address cmp function.
     */
    
    if (alias->dev.flags & flags_on && !(alias->dev.flags & flags_off) &&
	nat_dev_addr_chk_1(nat,&alias->dev,sa))
      return &alias->dev;
  }
  return NULL;
}

/*
 * nat_addr_chk enough for protocols whose addr is (fully) stored at pa_addr.
 * note that nat pointer is ignored because of static comparison.
 */

static __inline__ struct device *
nat_addr_chk32(struct net_alias_type *nat, struct net_alias_info *alias_info, int family, __u32 addr32, int flags_on, int flags_off)
{
  struct net_alias *alias;
  unsigned hsize = alias_info->hash_tab_size;
  
  for (alias=alias_info->hash_tab[hash_key(hsize, addr32)];
       alias; alias=alias->next)
  {
    if (alias->dev.family != family) continue;
    
    /*
     * "hard" (static) comparison between addr32 and pa_addr.
     */
    
    if (alias->dev.flags & flags_on && !(alias->dev.flags & flags_off) &&
	addr32 == alias->dev.pa_addr)
      return &alias->dev;
  }
  return NULL;
}

/*
 * returns alias device with specified address AND flags_on AND flags_off,
 * else NULL.
 * intended for main devices.
 */

struct device *
net_alias_dev_chk(struct device *main_dev, struct sockaddr *sa,int flags_on, int flags_off)
{
  struct net_alias_info *alias_info = main_dev->alias_info;
  struct net_alias_type *nat;
  
  /*
   * only if main_dev has aliases
   */

  if (!alias_info) return NULL;
  
  /*
   * get alias_type object for sa->sa_family.
   */
  
  nat = nat_getbytype(sa->sa_family);
  if (!nat)
    return NULL;

  return nat_addr_chk(nat, alias_info, sa, flags_on, flags_off);
}

/*
 * net_alias_dev_chk enough for protocols whose addr is (fully) stored
 * at pa_addr.
 */

struct device *
net_alias_dev_chk32(struct device *main_dev, int family, __u32 addr32,
		int flags_on, int flags_off)
{
  struct net_alias_info *alias_info = main_dev->alias_info;
  
  /*
   * only if main_dev has aliases
   */

  if (!alias_info) return NULL;
  
  return nat_addr_chk32(NULL, alias_info, family, addr32, flags_on, flags_off);
}


/*
 * select closest (main or alias) device to <src,dst> addresses given. if no
 * further info is available, return main_dev (for easier calling arrangement).
 *
 * Should be called early at xxx_rcv() time for device selection
 */

struct device *
net_alias_dev_rx(struct device *main_dev, struct sockaddr *sa_src, struct sockaddr *sa_dst)
{
  int family;
  struct net_alias_type *nat;
  struct net_alias_info *alias_info;
  struct device *dev;
  
  if (main_dev == NULL) return NULL;

  /*
   * if not aliased, don't bother any more
   */

  if ((alias_info = main_dev->alias_info) == NULL)
    return main_dev;

  /*
   * find out family
   */

  family = (sa_src)? sa_src->sa_family : ((sa_dst)? sa_dst->sa_family : AF_UNSPEC);
  if (family == AF_UNSPEC) return main_dev;

  /*
   * get net_alias_type object for this family
   */

  if ( (nat = nat_getbytype(family)) == NULL ) return main_dev;
  
  /*
   * first step: find out if dst addr is main_dev's or one of its aliases'
   */

  if (sa_dst)
  {
    if (nat_dev_addr_chk_1(nat, main_dev,sa_dst))
      return main_dev;

    dev = nat_addr_chk(nat, alias_info, sa_dst, IFF_UP, 0);

    if (dev != NULL) {
            net_alias_inc_rx(dev->my_alias);
            return dev;
    }
  }

  /*
   * second step: find the rcv addr 'closest' alias through nat method call
   */

  if ( sa_src == NULL || nat->dev_select == NULL) return main_dev;
  dev = nat->dev_select(nat, main_dev, sa_src);

  if (dev == NULL || dev->family != family) return main_dev;
  
  /*
   * dev ok only if it is alias of main_dev
   */

  if (net_alias_is(dev)) {
          struct net_alias *alias=dev->my_alias;
          if (alias->main_dev == main_dev) {
                  net_alias_inc_rx(alias);
                  return dev;
          }
  }
  
  /*
   * do not return NULL.
   */
  
  return main_dev;

}

/*
 * dev_rx32: dev_rx selection for 'pa_addr' protocols.
 */

struct device *
net_alias_dev_rx32(struct device *main_dev, int family, __u32 src, __u32 dst)
{
  struct net_alias_type *nat;
  struct net_alias_info *alias_info;
  struct sockaddr_in sin_src;
  struct device *dev;
  
  if (main_dev == NULL) return NULL;

  /*
   * if not aliased, don't bother any more
   */

  if ((alias_info = main_dev->alias_info) == NULL)
    return main_dev;

  /*
   * early return if dst is main_dev's address
   */
  
  if (dst == main_dev->pa_addr)
    return main_dev;
  
  if (family == AF_UNSPEC) return main_dev;

  /*
   * get net_alias_type object for this family
   */

  if ( (nat = nat_getbytype(family)) == NULL ) return main_dev;
  
  /*
   * first step: find out if dst address one of main_dev aliases'
   */
  
  if (dst)
  {
    dev = nat_addr_chk32(nat, alias_info, family, dst, IFF_UP, 0);
    if (dev) {
            net_alias_inc_rx(dev->my_alias);
            return dev;
    }
  }
  
  /*
   * second step: find the rcv addr 'closest' alias through nat method call
   */

  if ( src == 0 || nat->dev_select == NULL) return main_dev;

  sin_src.sin_family = family;
  sin_src.sin_addr.s_addr = src;
    
  dev = nat->dev_select(nat, main_dev, (struct sockaddr *)&sin_src);

  if (dev == NULL || dev->family != family) return main_dev;
  
  /*
   * dev ok only if it is alias of main_dev
   */

  if (net_alias_is(dev)) {
          struct net_alias *alias=dev->my_alias;
          if (alias->main_dev == main_dev) {
                  net_alias_inc_rx(alias);
                  return dev;
          }
  }

  /*
   * do not return NULL.
   */
  
  return main_dev;
  
}

/*
 * device event hook
 */

static struct notifier_block net_alias_dev_notifier = {
  net_alias_device_event,
  NULL,
  0
};


/*
 * net_alias initialisation
 * called from net_dev_init().
 */

void net_alias_init(void)
{

  /*
   * register dev events notifier
   */
  
  register_netdevice_notifier(&net_alias_dev_notifier);

  /*
   * register /proc/net entries
   */
  
#ifndef ALIAS_USER_LAND_DEBUG
#ifdef CONFIG_PROC_FS
  proc_net_register(&(struct proc_dir_entry) {
    PROC_NET_ALIAS_TYPES, 11, "alias_types",
    S_IFREG | S_IRUGO, 1, 0, 0,
    0, &proc_net_inode_operations,
    net_alias_types_getinfo
  });
  proc_net_register(&(struct proc_dir_entry) {
    PROC_NET_ALIASES, 7, "aliases",
    S_IFREG | S_IRUGO, 1, 0, 0,
    0, &proc_net_inode_operations,
    net_alias_getinfo
  });
#endif
#endif
  
}

/*
 * net_alias type object registering func.
 */
int register_net_alias_type(struct net_alias_type *nat, int type)
{
  unsigned hash;
  unsigned long flags;
  if (!nat)
  {
    printk(KERN_ERR "register_net_alias_type(): NULL arg\n");
    return -EINVAL;
  }
  nat->type = type;
  nat->n_attach = 0;
  hash = nat->type & 0x0f;
  save_flags(flags);
  cli();
  nat->next = net_alias_type_base[hash];
  net_alias_type_base[hash] = nat;
  restore_flags(flags);
  return 0;
}

/*
 * net_alias type object unreg.
 */
int unregister_net_alias_type(struct net_alias_type *nat)
{
  struct net_alias_type **natp;
  unsigned hash;
  unsigned long flags;
  
  if (!nat)
  {
    printk(KERN_ERR "unregister_net_alias_type(): NULL arg\n");
    return -EINVAL;
  }

  /*
   * only allow unregistration if it has no attachments
   */
  if (nat->n_attach)
  {
    printk(KERN_ERR "unregister_net_alias_type(): has %d attachments. failed\n",
	   nat->n_attach);
    return -EINVAL;
  }
  hash = nat->type & 0x0f;
  save_flags(flags);
  cli();
  for (natp = &net_alias_type_base[hash]; *natp ; natp = &(*natp)->next)
  {
    if (nat==(*natp))
    {
      *natp = nat->next;
      restore_flags(flags);
      return 0;
    }
  }
  restore_flags(flags);
  printk(KERN_ERR "unregister_net_alias_type(type=%d): not found!\n", nat->type);
  return -EINVAL;
}

/*
 *	Log sysctl's net_alias_max changes.
 */
int proc_do_net_alias_max(ctl_table *ctl, int write, struct file *filp,
			    void *buffer, size_t *lenp) 
{
        int old = sysctl_net_alias_max;
        int ret;
        
        ret = proc_dointvec(ctl, write, filp, buffer, lenp);
        if (write) {
                if (sysctl_net_alias_max != old) {
                        printk(KERN_INFO "sysctl: net_alias_max changed (max.aliases=%d, hashsize=%d).\n",
                               sysctl_net_alias_max,
                               NET_ALIAS_HASH_TAB_SIZE(sysctl_net_alias_max));
                        if (!sysctl_net_alias_max)
                                printk(KERN_INFO "sysctl: net_alias creation disabled.\n");
                        if (!old)
                                printk(KERN_INFO "sysctl: net_alias creation enabled.\n");
                }
        }
        return ret; 
}