ip6_fib.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601
  1. /*
  2. * Linux INET6 implementation
  3. * Forwarding Information Database
  4. *
  5. * Authors:
  6. * Pedro Roque <roque@di.fc.ul.pt>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. /*
  14. * Changes:
  15. * Yuji SEKIYA @USAGI: Support default route on router node;
  16. * remove ip6_null_entry from the top of
  17. * routing table.
  18. * Ville Nuorvala: Fixed routing subtrees.
  19. */
  20. #include <linux/errno.h>
  21. #include <linux/types.h>
  22. #include <linux/net.h>
  23. #include <linux/route.h>
  24. #include <linux/netdevice.h>
  25. #include <linux/in6.h>
  26. #include <linux/init.h>
  27. #include <linux/list.h>
  28. #include <linux/slab.h>
  29. #ifdef CONFIG_PROC_FS
  30. #include <linux/proc_fs.h>
  31. #endif
  32. #include <net/ipv6.h>
  33. #include <net/ndisc.h>
  34. #include <net/addrconf.h>
  35. #include <net/ip6_fib.h>
  36. #include <net/ip6_route.h>
  37. #define RT6_DEBUG 2
  38. #if RT6_DEBUG >= 3
  39. #define RT6_TRACE(x...) printk(KERN_DEBUG x)
  40. #else
  41. #define RT6_TRACE(x...) do { ; } while (0)
  42. #endif
  43. static struct kmem_cache * fib6_node_kmem __read_mostly;
  44. enum fib_walk_state_t
  45. {
  46. #ifdef CONFIG_IPV6_SUBTREES
  47. FWS_S,
  48. #endif
  49. FWS_L,
  50. FWS_R,
  51. FWS_C,
  52. FWS_U
  53. };
  54. struct fib6_cleaner_t
  55. {
  56. struct fib6_walker_t w;
  57. struct net *net;
  58. int (*func)(struct rt6_info *, void *arg);
  59. void *arg;
  60. };
  61. static DEFINE_RWLOCK(fib6_walker_lock);
  62. #ifdef CONFIG_IPV6_SUBTREES
  63. #define FWS_INIT FWS_S
  64. #else
  65. #define FWS_INIT FWS_L
  66. #endif
  67. static void fib6_prune_clones(struct net *net, struct fib6_node *fn,
  68. struct rt6_info *rt);
  69. static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn);
  70. static struct fib6_node *fib6_repair_tree(struct net *net, struct fib6_node *fn);
  71. static int fib6_walk(struct fib6_walker_t *w);
  72. static int fib6_walk_continue(struct fib6_walker_t *w);
  73. /*
  74. * A routing update causes an increase of the serial number on the
  75. * affected subtree. This allows for cached routes to be asynchronously
  76. * tested when modifications are made to the destination cache as a
  77. * result of redirects, path MTU changes, etc.
  78. */
  79. static __u32 rt_sernum;
  80. static void fib6_gc_timer_cb(unsigned long arg);
  81. static LIST_HEAD(fib6_walkers);
  82. #define FOR_WALKERS(w) list_for_each_entry(w, &fib6_walkers, lh)
  83. static inline void fib6_walker_link(struct fib6_walker_t *w)
  84. {
  85. write_lock_bh(&fib6_walker_lock);
  86. list_add(&w->lh, &fib6_walkers);
  87. write_unlock_bh(&fib6_walker_lock);
  88. }
  89. static inline void fib6_walker_unlink(struct fib6_walker_t *w)
  90. {
  91. write_lock_bh(&fib6_walker_lock);
  92. list_del(&w->lh);
  93. write_unlock_bh(&fib6_walker_lock);
  94. }
  95. static __inline__ u32 fib6_new_sernum(void)
  96. {
  97. u32 n = ++rt_sernum;
  98. if ((__s32)n <= 0)
  99. rt_sernum = n = 1;
  100. return n;
  101. }
  102. /*
  103. * Auxiliary address test functions for the radix tree.
  104. *
  105. * These assume a 32bit processor (although it will work on
  106. * 64bit processors)
  107. */
  108. /*
  109. * test bit
  110. */
  111. #if defined(__LITTLE_ENDIAN)
  112. # define BITOP_BE32_SWIZZLE (0x1F & ~7)
  113. #else
  114. # define BITOP_BE32_SWIZZLE 0
  115. #endif
  116. static __inline__ __be32 addr_bit_set(void *token, int fn_bit)
  117. {
  118. __be32 *addr = token;
  119. /*
  120. * Here,
  121. * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
  122. * is optimized version of
  123. * htonl(1 << ((~fn_bit)&0x1F))
  124. * See include/asm-generic/bitops/le.h.
  125. */
  126. return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
  127. addr[fn_bit >> 5];
  128. }
  129. static __inline__ struct fib6_node * node_alloc(void)
  130. {
  131. struct fib6_node *fn;
  132. fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
  133. return fn;
  134. }
  135. static __inline__ void node_free(struct fib6_node * fn)
  136. {
  137. kmem_cache_free(fib6_node_kmem, fn);
  138. }
  139. static __inline__ void rt6_release(struct rt6_info *rt)
  140. {
  141. if (atomic_dec_and_test(&rt->rt6i_ref))
  142. dst_free(&rt->dst);
  143. }
  144. static void fib6_link_table(struct net *net, struct fib6_table *tb)
  145. {
  146. unsigned int h;
  147. /*
  148. * Initialize table lock at a single place to give lockdep a key,
  149. * tables aren't visible prior to being linked to the list.
  150. */
  151. rwlock_init(&tb->tb6_lock);
  152. h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
  153. /*
  154. * No protection necessary, this is the only list mutatation
  155. * operation, tables never disappear once they exist.
  156. */
  157. hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
  158. }
  159. #ifdef CONFIG_IPV6_MULTIPLE_TABLES
  160. static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
  161. {
  162. struct fib6_table *table;
  163. table = kzalloc(sizeof(*table), GFP_ATOMIC);
  164. if (table != NULL) {
  165. table->tb6_id = id;
  166. table->tb6_root.leaf = net->ipv6.ip6_null_entry;
  167. table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
  168. }
  169. return table;
  170. }
  171. struct fib6_table *fib6_new_table(struct net *net, u32 id)
  172. {
  173. struct fib6_table *tb;
  174. if (id == 0)
  175. id = RT6_TABLE_MAIN;
  176. tb = fib6_get_table(net, id);
  177. if (tb)
  178. return tb;
  179. tb = fib6_alloc_table(net, id);
  180. if (tb != NULL)
  181. fib6_link_table(net, tb);
  182. return tb;
  183. }
  184. struct fib6_table *fib6_get_table(struct net *net, u32 id)
  185. {
  186. struct fib6_table *tb;
  187. struct hlist_head *head;
  188. struct hlist_node *node;
  189. unsigned int h;
  190. if (id == 0)
  191. id = RT6_TABLE_MAIN;
  192. h = id & (FIB6_TABLE_HASHSZ - 1);
  193. rcu_read_lock();
  194. head = &net->ipv6.fib_table_hash[h];
  195. hlist_for_each_entry_rcu(tb, node, head, tb6_hlist) {
  196. if (tb->tb6_id == id) {
  197. rcu_read_unlock();
  198. return tb;
  199. }
  200. }
  201. rcu_read_unlock();
  202. return NULL;
  203. }
  204. static void __net_init fib6_tables_init(struct net *net)
  205. {
  206. fib6_link_table(net, net->ipv6.fib6_main_tbl);
  207. fib6_link_table(net, net->ipv6.fib6_local_tbl);
  208. }
  209. #else
  210. struct fib6_table *fib6_new_table(struct net *net, u32 id)
  211. {
  212. return fib6_get_table(net, id);
  213. }
  214. struct fib6_table *fib6_get_table(struct net *net, u32 id)
  215. {
  216. return net->ipv6.fib6_main_tbl;
  217. }
  218. struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi *fl,
  219. int flags, pol_lookup_t lookup)
  220. {
  221. return (struct dst_entry *) lookup(net, net->ipv6.fib6_main_tbl, fl, flags);
  222. }
  223. static void __net_init fib6_tables_init(struct net *net)
  224. {
  225. fib6_link_table(net, net->ipv6.fib6_main_tbl);
  226. }
  227. #endif
  228. static int fib6_dump_node(struct fib6_walker_t *w)
  229. {
  230. int res;
  231. struct rt6_info *rt;
  232. for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
  233. res = rt6_dump_route(rt, w->args);
  234. if (res < 0) {
  235. /* Frame is full, suspend walking */
  236. w->leaf = rt;
  237. return 1;
  238. }
  239. WARN_ON(res == 0);
  240. }
  241. w->leaf = NULL;
  242. return 0;
  243. }
  244. static void fib6_dump_end(struct netlink_callback *cb)
  245. {
  246. struct fib6_walker_t *w = (void*)cb->args[2];
  247. if (w) {
  248. if (cb->args[4]) {
  249. cb->args[4] = 0;
  250. fib6_walker_unlink(w);
  251. }
  252. cb->args[2] = 0;
  253. kfree(w);
  254. }
  255. cb->done = (void*)cb->args[3];
  256. cb->args[1] = 3;
  257. }
  258. static int fib6_dump_done(struct netlink_callback *cb)
  259. {
  260. fib6_dump_end(cb);
  261. return cb->done ? cb->done(cb) : 0;
  262. }
  263. static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
  264. struct netlink_callback *cb)
  265. {
  266. struct fib6_walker_t *w;
  267. int res;
  268. w = (void *)cb->args[2];
  269. w->root = &table->tb6_root;
  270. if (cb->args[4] == 0) {
  271. w->count = 0;
  272. w->skip = 0;
  273. read_lock_bh(&table->tb6_lock);
  274. res = fib6_walk(w);
  275. read_unlock_bh(&table->tb6_lock);
  276. if (res > 0) {
  277. cb->args[4] = 1;
  278. cb->args[5] = w->root->fn_sernum;
  279. }
  280. } else {
  281. if (cb->args[5] != w->root->fn_sernum) {
  282. /* Begin at the root if the tree changed */
  283. cb->args[5] = w->root->fn_sernum;
  284. w->state = FWS_INIT;
  285. w->node = w->root;
  286. w->skip = w->count;
  287. } else
  288. w->skip = 0;
  289. read_lock_bh(&table->tb6_lock);
  290. res = fib6_walk_continue(w);
  291. read_unlock_bh(&table->tb6_lock);
  292. if (res <= 0) {
  293. fib6_walker_unlink(w);
  294. cb->args[4] = 0;
  295. }
  296. }
  297. return res;
  298. }
  299. static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
  300. {
  301. struct net *net = sock_net(skb->sk);
  302. unsigned int h, s_h;
  303. unsigned int e = 0, s_e;
  304. struct rt6_rtnl_dump_arg arg;
  305. struct fib6_walker_t *w;
  306. struct fib6_table *tb;
  307. struct hlist_node *node;
  308. struct hlist_head *head;
  309. int res = 0;
  310. s_h = cb->args[0];
  311. s_e = cb->args[1];
  312. w = (void *)cb->args[2];
  313. if (w == NULL) {
  314. /* New dump:
  315. *
  316. * 1. hook callback destructor.
  317. */
  318. cb->args[3] = (long)cb->done;
  319. cb->done = fib6_dump_done;
  320. /*
  321. * 2. allocate and initialize walker.
  322. */
  323. w = kzalloc(sizeof(*w), GFP_ATOMIC);
  324. if (w == NULL)
  325. return -ENOMEM;
  326. w->func = fib6_dump_node;
  327. cb->args[2] = (long)w;
  328. }
  329. arg.skb = skb;
  330. arg.cb = cb;
  331. arg.net = net;
  332. w->args = &arg;
  333. for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
  334. e = 0;
  335. head = &net->ipv6.fib_table_hash[h];
  336. hlist_for_each_entry(tb, node, head, tb6_hlist) {
  337. if (e < s_e)
  338. goto next;
  339. res = fib6_dump_table(tb, skb, cb);
  340. if (res != 0)
  341. goto out;
  342. next:
  343. e++;
  344. }
  345. }
  346. out:
  347. cb->args[1] = e;
  348. cb->args[0] = h;
  349. res = res < 0 ? res : skb->len;
  350. if (res <= 0)
  351. fib6_dump_end(cb);
  352. return res;
  353. }
  354. /*
  355. * Routing Table
  356. *
  357. * return the appropriate node for a routing tree "add" operation
  358. * by either creating and inserting or by returning an existing
  359. * node.
  360. */
  361. static struct fib6_node * fib6_add_1(struct fib6_node *root, void *addr,
  362. int addrlen, int plen,
  363. int offset)
  364. {
  365. struct fib6_node *fn, *in, *ln;
  366. struct fib6_node *pn = NULL;
  367. struct rt6key *key;
  368. int bit;
  369. __be32 dir = 0;
  370. __u32 sernum = fib6_new_sernum();
  371. RT6_TRACE("fib6_add_1\n");
  372. /* insert node in tree */
  373. fn = root;
  374. do {
  375. key = (struct rt6key *)((u8 *)fn->leaf + offset);
  376. /*
  377. * Prefix match
  378. */
  379. if (plen < fn->fn_bit ||
  380. !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
  381. goto insert_above;
  382. /*
  383. * Exact match ?
  384. */
  385. if (plen == fn->fn_bit) {
  386. /* clean up an intermediate node */
  387. if ((fn->fn_flags & RTN_RTINFO) == 0) {
  388. rt6_release(fn->leaf);
  389. fn->leaf = NULL;
  390. }
  391. fn->fn_sernum = sernum;
  392. return fn;
  393. }
  394. /*
  395. * We have more bits to go
  396. */
  397. /* Try to walk down on tree. */
  398. fn->fn_sernum = sernum;
  399. dir = addr_bit_set(addr, fn->fn_bit);
  400. pn = fn;
  401. fn = dir ? fn->right: fn->left;
  402. } while (fn);
  403. /*
  404. * We walked to the bottom of tree.
  405. * Create new leaf node without children.
  406. */
  407. ln = node_alloc();
  408. if (ln == NULL)
  409. return NULL;
  410. ln->fn_bit = plen;
  411. ln->parent = pn;
  412. ln->fn_sernum = sernum;
  413. if (dir)
  414. pn->right = ln;
  415. else
  416. pn->left = ln;
  417. return ln;
  418. insert_above:
  419. /*
  420. * split since we don't have a common prefix anymore or
  421. * we have a less significant route.
  422. * we've to insert an intermediate node on the list
  423. * this new node will point to the one we need to create
  424. * and the current
  425. */
  426. pn = fn->parent;
  427. /* find 1st bit in difference between the 2 addrs.
  428. See comment in __ipv6_addr_diff: bit may be an invalid value,
  429. but if it is >= plen, the value is ignored in any case.
  430. */
  431. bit = __ipv6_addr_diff(addr, &key->addr, addrlen);
  432. /*
  433. * (intermediate)[in]
  434. * / \
  435. * (new leaf node)[ln] (old node)[fn]
  436. */
  437. if (plen > bit) {
  438. in = node_alloc();
  439. ln = node_alloc();
  440. if (in == NULL || ln == NULL) {
  441. if (in)
  442. node_free(in);
  443. if (ln)
  444. node_free(ln);
  445. return NULL;
  446. }
  447. /*
  448. * new intermediate node.
  449. * RTN_RTINFO will
  450. * be off since that an address that chooses one of
  451. * the branches would not match less specific routes
  452. * in the other branch
  453. */
  454. in->fn_bit = bit;
  455. in->parent = pn;
  456. in->leaf = fn->leaf;
  457. atomic_inc(&in->leaf->rt6i_ref);
  458. in->fn_sernum = sernum;
  459. /* update parent pointer */
  460. if (dir)
  461. pn->right = in;
  462. else
  463. pn->left = in;
  464. ln->fn_bit = plen;
  465. ln->parent = in;
  466. fn->parent = in;
  467. ln->fn_sernum = sernum;
  468. if (addr_bit_set(addr, bit)) {
  469. in->right = ln;
  470. in->left = fn;
  471. } else {
  472. in->left = ln;
  473. in->right = fn;
  474. }
  475. } else { /* plen <= bit */
  476. /*
  477. * (new leaf node)[ln]
  478. * / \
  479. * (old node)[fn] NULL
  480. */
  481. ln = node_alloc();
  482. if (ln == NULL)
  483. return NULL;
  484. ln->fn_bit = plen;
  485. ln->parent = pn;
  486. ln->fn_sernum = sernum;
  487. if (dir)
  488. pn->right = ln;
  489. else
  490. pn->left = ln;
  491. if (addr_bit_set(&key->addr, plen))
  492. ln->right = fn;
  493. else
  494. ln->left = fn;
  495. fn->parent = ln;
  496. }
  497. return ln;
  498. }
  499. /*
  500. * Insert routing information in a node.
  501. */
  502. static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
  503. struct nl_info *info)
  504. {
  505. struct rt6_info *iter = NULL;
  506. struct rt6_info **ins;
  507. ins = &fn->leaf;
  508. for (iter = fn->leaf; iter; iter=iter->dst.rt6_next) {
  509. /*
  510. * Search for duplicates
  511. */
  512. if (iter->rt6i_metric == rt->rt6i_metric) {
  513. /*
  514. * Same priority level
  515. */
  516. if (iter->rt6i_dev == rt->rt6i_dev &&
  517. iter->rt6i_idev == rt->rt6i_idev &&
  518. ipv6_addr_equal(&iter->rt6i_gateway,
  519. &rt->rt6i_gateway)) {
  520. if (!(iter->rt6i_flags&RTF_EXPIRES))
  521. return -EEXIST;
  522. iter->rt6i_expires = rt->rt6i_expires;
  523. if (!(rt->rt6i_flags&RTF_EXPIRES)) {
  524. iter->rt6i_flags &= ~RTF_EXPIRES;
  525. iter->rt6i_expires = 0;
  526. }
  527. return -EEXIST;
  528. }
  529. }
  530. if (iter->rt6i_metric > rt->rt6i_metric)
  531. break;
  532. ins = &iter->dst.rt6_next;
  533. }
  534. /* Reset round-robin state, if necessary */
  535. if (ins == &fn->leaf)
  536. fn->rr_ptr = NULL;
  537. /*
  538. * insert node
  539. */
  540. rt->dst.rt6_next = iter;
  541. *ins = rt;
  542. rt->rt6i_node = fn;
  543. atomic_inc(&rt->rt6i_ref);
  544. inet6_rt_notify(RTM_NEWROUTE, rt, info);
  545. info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
  546. if ((fn->fn_flags & RTN_RTINFO) == 0) {
  547. info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
  548. fn->fn_flags |= RTN_RTINFO;
  549. }
  550. return 0;
  551. }
  552. static __inline__ void fib6_start_gc(struct net *net, struct rt6_info *rt)
  553. {
  554. if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
  555. (rt->rt6i_flags & (RTF_EXPIRES|RTF_CACHE)))
  556. mod_timer(&net->ipv6.ip6_fib_timer,
  557. jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
  558. }
  559. void fib6_force_start_gc(struct net *net)
  560. {
  561. if (!timer_pending(&net->ipv6.ip6_fib_timer))
  562. mod_timer(&net->ipv6.ip6_fib_timer,
  563. jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
  564. }
  565. /*
  566. * Add routing information to the routing tree.
  567. * <destination addr>/<source addr>
  568. * with source addr info in sub-trees
  569. */
  570. int fib6_add(struct fib6_node *root, struct rt6_info *rt, struct nl_info *info)
  571. {
  572. struct fib6_node *fn, *pn = NULL;
  573. int err = -ENOMEM;
  574. fn = fib6_add_1(root, &rt->rt6i_dst.addr, sizeof(struct in6_addr),
  575. rt->rt6i_dst.plen, offsetof(struct rt6_info, rt6i_dst));
  576. if (fn == NULL)
  577. goto out;
  578. pn = fn;
  579. #ifdef CONFIG_IPV6_SUBTREES
  580. if (rt->rt6i_src.plen) {
  581. struct fib6_node *sn;
  582. if (fn->subtree == NULL) {
  583. struct fib6_node *sfn;
  584. /*
  585. * Create subtree.
  586. *
  587. * fn[main tree]
  588. * |
  589. * sfn[subtree root]
  590. * \
  591. * sn[new leaf node]
  592. */
  593. /* Create subtree root node */
  594. sfn = node_alloc();
  595. if (sfn == NULL)
  596. goto st_failure;
  597. sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
  598. atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
  599. sfn->fn_flags = RTN_ROOT;
  600. sfn->fn_sernum = fib6_new_sernum();
  601. /* Now add the first leaf node to new subtree */
  602. sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
  603. sizeof(struct in6_addr), rt->rt6i_src.plen,
  604. offsetof(struct rt6_info, rt6i_src));
  605. if (sn == NULL) {
  606. /* If it is failed, discard just allocated
  607. root, and then (in st_failure) stale node
  608. in main tree.
  609. */
  610. node_free(sfn);
  611. goto st_failure;
  612. }
  613. /* Now link new subtree to main tree */
  614. sfn->parent = fn;
  615. fn->subtree = sfn;
  616. } else {
  617. sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
  618. sizeof(struct in6_addr), rt->rt6i_src.plen,
  619. offsetof(struct rt6_info, rt6i_src));
  620. if (sn == NULL)
  621. goto st_failure;
  622. }
  623. if (fn->leaf == NULL) {
  624. fn->leaf = rt;
  625. atomic_inc(&rt->rt6i_ref);
  626. }
  627. fn = sn;
  628. }
  629. #endif
  630. err = fib6_add_rt2node(fn, rt, info);
  631. if (err == 0) {
  632. fib6_start_gc(info->nl_net, rt);
  633. if (!(rt->rt6i_flags&RTF_CACHE))
  634. fib6_prune_clones(info->nl_net, pn, rt);
  635. }
  636. out:
  637. if (err) {
  638. #ifdef CONFIG_IPV6_SUBTREES
  639. /*
  640. * If fib6_add_1 has cleared the old leaf pointer in the
  641. * super-tree leaf node we have to find a new one for it.
  642. */
  643. if (pn != fn && pn->leaf == rt) {
  644. pn->leaf = NULL;
  645. atomic_dec(&rt->rt6i_ref);
  646. }
  647. if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
  648. pn->leaf = fib6_find_prefix(info->nl_net, pn);
  649. #if RT6_DEBUG >= 2
  650. if (!pn->leaf) {
  651. WARN_ON(pn->leaf == NULL);
  652. pn->leaf = info->nl_net->ipv6.ip6_null_entry;
  653. }
  654. #endif
  655. atomic_inc(&pn->leaf->rt6i_ref);
  656. }
  657. #endif
  658. dst_free(&rt->dst);
  659. }
  660. return err;
  661. #ifdef CONFIG_IPV6_SUBTREES
  662. /* Subtree creation failed, probably main tree node
  663. is orphan. If it is, shoot it.
  664. */
  665. st_failure:
  666. if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
  667. fib6_repair_tree(info->nl_net, fn);
  668. dst_free(&rt->dst);
  669. return err;
  670. #endif
  671. }
  672. /*
  673. * Routing tree lookup
  674. *
  675. */
  676. struct lookup_args {
  677. int offset; /* key offset on rt6_info */
  678. struct in6_addr *addr; /* search key */
  679. };
  680. static struct fib6_node * fib6_lookup_1(struct fib6_node *root,
  681. struct lookup_args *args)
  682. {
  683. struct fib6_node *fn;
  684. __be32 dir;
  685. if (unlikely(args->offset == 0))
  686. return NULL;
  687. /*
  688. * Descend on a tree
  689. */
  690. fn = root;
  691. for (;;) {
  692. struct fib6_node *next;
  693. dir = addr_bit_set(args->addr, fn->fn_bit);
  694. next = dir ? fn->right : fn->left;
  695. if (next) {
  696. fn = next;
  697. continue;
  698. }
  699. break;
  700. }
  701. while(fn) {
  702. if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
  703. struct rt6key *key;
  704. key = (struct rt6key *) ((u8 *) fn->leaf +
  705. args->offset);
  706. if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
  707. #ifdef CONFIG_IPV6_SUBTREES
  708. if (fn->subtree)
  709. fn = fib6_lookup_1(fn->subtree, args + 1);
  710. #endif
  711. if (!fn || fn->fn_flags & RTN_RTINFO)
  712. return fn;
  713. }
  714. }
  715. if (fn->fn_flags & RTN_ROOT)
  716. break;
  717. fn = fn->parent;
  718. }
  719. return NULL;
  720. }
  721. struct fib6_node * fib6_lookup(struct fib6_node *root, struct in6_addr *daddr,
  722. struct in6_addr *saddr)
  723. {
  724. struct fib6_node *fn;
  725. struct lookup_args args[] = {
  726. {
  727. .offset = offsetof(struct rt6_info, rt6i_dst),
  728. .addr = daddr,
  729. },
  730. #ifdef CONFIG_IPV6_SUBTREES
  731. {
  732. .offset = offsetof(struct rt6_info, rt6i_src),
  733. .addr = saddr,
  734. },
  735. #endif
  736. {
  737. .offset = 0, /* sentinel */
  738. }
  739. };
  740. fn = fib6_lookup_1(root, daddr ? args : args + 1);
  741. if (fn == NULL || fn->fn_flags & RTN_TL_ROOT)
  742. fn = root;
  743. return fn;
  744. }
  745. /*
  746. * Get node with specified destination prefix (and source prefix,
  747. * if subtrees are used)
  748. */
  749. static struct fib6_node * fib6_locate_1(struct fib6_node *root,
  750. struct in6_addr *addr,
  751. int plen, int offset)
  752. {
  753. struct fib6_node *fn;
  754. for (fn = root; fn ; ) {
  755. struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
  756. /*
  757. * Prefix match
  758. */
  759. if (plen < fn->fn_bit ||
  760. !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
  761. return NULL;
  762. if (plen == fn->fn_bit)
  763. return fn;
  764. /*
  765. * We have more bits to go
  766. */
  767. if (addr_bit_set(addr, fn->fn_bit))
  768. fn = fn->right;
  769. else
  770. fn = fn->left;
  771. }
  772. return NULL;
  773. }
  774. struct fib6_node * fib6_locate(struct fib6_node *root,
  775. struct in6_addr *daddr, int dst_len,
  776. struct in6_addr *saddr, int src_len)
  777. {
  778. struct fib6_node *fn;
  779. fn = fib6_locate_1(root, daddr, dst_len,
  780. offsetof(struct rt6_info, rt6i_dst));
  781. #ifdef CONFIG_IPV6_SUBTREES
  782. if (src_len) {
  783. WARN_ON(saddr == NULL);
  784. if (fn && fn->subtree)
  785. fn = fib6_locate_1(fn->subtree, saddr, src_len,
  786. offsetof(struct rt6_info, rt6i_src));
  787. }
  788. #endif
  789. if (fn && fn->fn_flags&RTN_RTINFO)
  790. return fn;
  791. return NULL;
  792. }
  793. /*
  794. * Deletion
  795. *
  796. */
  797. static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
  798. {
  799. if (fn->fn_flags&RTN_ROOT)
  800. return net->ipv6.ip6_null_entry;
  801. while(fn) {
  802. if(fn->left)
  803. return fn->left->leaf;
  804. if(fn->right)
  805. return fn->right->leaf;
  806. fn = FIB6_SUBTREE(fn);
  807. }
  808. return NULL;
  809. }
  810. /*
  811. * Called to trim the tree of intermediate nodes when possible. "fn"
  812. * is the node we want to try and remove.
  813. */
  814. static struct fib6_node *fib6_repair_tree(struct net *net,
  815. struct fib6_node *fn)
  816. {
  817. int children;
  818. int nstate;
  819. struct fib6_node *child, *pn;
  820. struct fib6_walker_t *w;
  821. int iter = 0;
  822. for (;;) {
  823. RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
  824. iter++;
  825. WARN_ON(fn->fn_flags & RTN_RTINFO);
  826. WARN_ON(fn->fn_flags & RTN_TL_ROOT);
  827. WARN_ON(fn->leaf != NULL);
  828. children = 0;
  829. child = NULL;
  830. if (fn->right) child = fn->right, children |= 1;
  831. if (fn->left) child = fn->left, children |= 2;
  832. if (children == 3 || FIB6_SUBTREE(fn)
  833. #ifdef CONFIG_IPV6_SUBTREES
  834. /* Subtree root (i.e. fn) may have one child */
  835. || (children && fn->fn_flags&RTN_ROOT)
  836. #endif
  837. ) {
  838. fn->leaf = fib6_find_prefix(net, fn);
  839. #if RT6_DEBUG >= 2
  840. if (fn->leaf==NULL) {
  841. WARN_ON(!fn->leaf);
  842. fn->leaf = net->ipv6.ip6_null_entry;
  843. }
  844. #endif
  845. atomic_inc(&fn->leaf->rt6i_ref);
  846. return fn->parent;
  847. }
  848. pn = fn->parent;
  849. #ifdef CONFIG_IPV6_SUBTREES
  850. if (FIB6_SUBTREE(pn) == fn) {
  851. WARN_ON(!(fn->fn_flags & RTN_ROOT));
  852. FIB6_SUBTREE(pn) = NULL;
  853. nstate = FWS_L;
  854. } else {
  855. WARN_ON(fn->fn_flags & RTN_ROOT);
  856. #endif
  857. if (pn->right == fn) pn->right = child;
  858. else if (pn->left == fn) pn->left = child;
  859. #if RT6_DEBUG >= 2
  860. else
  861. WARN_ON(1);
  862. #endif
  863. if (child)
  864. child->parent = pn;
  865. nstate = FWS_R;
  866. #ifdef CONFIG_IPV6_SUBTREES
  867. }
  868. #endif
  869. read_lock(&fib6_walker_lock);
  870. FOR_WALKERS(w) {
  871. if (child == NULL) {
  872. if (w->root == fn) {
  873. w->root = w->node = NULL;
  874. RT6_TRACE("W %p adjusted by delroot 1\n", w);
  875. } else if (w->node == fn) {
  876. RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
  877. w->node = pn;
  878. w->state = nstate;
  879. }
  880. } else {
  881. if (w->root == fn) {
  882. w->root = child;
  883. RT6_TRACE("W %p adjusted by delroot 2\n", w);
  884. }
  885. if (w->node == fn) {
  886. w->node = child;
  887. if (children&2) {
  888. RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
  889. w->state = w->state>=FWS_R ? FWS_U : FWS_INIT;
  890. } else {
  891. RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
  892. w->state = w->state>=FWS_C ? FWS_U : FWS_INIT;
  893. }
  894. }
  895. }
  896. }
  897. read_unlock(&fib6_walker_lock);
  898. node_free(fn);
  899. if (pn->fn_flags&RTN_RTINFO || FIB6_SUBTREE(pn))
  900. return pn;
  901. rt6_release(pn->leaf);
  902. pn->leaf = NULL;
  903. fn = pn;
  904. }
  905. }
  906. static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
  907. struct nl_info *info)
  908. {
  909. struct fib6_walker_t *w;
  910. struct rt6_info *rt = *rtp;
  911. struct net *net = info->nl_net;
  912. RT6_TRACE("fib6_del_route\n");
  913. /* Unlink it */
  914. *rtp = rt->dst.rt6_next;
  915. rt->rt6i_node = NULL;
  916. net->ipv6.rt6_stats->fib_rt_entries--;
  917. net->ipv6.rt6_stats->fib_discarded_routes++;
  918. /* Reset round-robin state, if necessary */
  919. if (fn->rr_ptr == rt)
  920. fn->rr_ptr = NULL;
  921. /* Adjust walkers */
  922. read_lock(&fib6_walker_lock);
  923. FOR_WALKERS(w) {
  924. if (w->state == FWS_C && w->leaf == rt) {
  925. RT6_TRACE("walker %p adjusted by delroute\n", w);
  926. w->leaf = rt->dst.rt6_next;
  927. if (w->leaf == NULL)
  928. w->state = FWS_U;
  929. }
  930. }
  931. read_unlock(&fib6_walker_lock);
  932. rt->dst.rt6_next = NULL;
  933. /* If it was last route, expunge its radix tree node */
  934. if (fn->leaf == NULL) {
  935. fn->fn_flags &= ~RTN_RTINFO;
  936. net->ipv6.rt6_stats->fib_route_nodes--;
  937. fn = fib6_repair_tree(net, fn);
  938. }
  939. if (atomic_read(&rt->rt6i_ref) != 1) {
  940. /* This route is used as dummy address holder in some split
  941. * nodes. It is not leaked, but it still holds other resources,
  942. * which must be released in time. So, scan ascendant nodes
  943. * and replace dummy references to this route with references
  944. * to still alive ones.
  945. */
  946. while (fn) {
  947. if (!(fn->fn_flags&RTN_RTINFO) && fn->leaf == rt) {
  948. fn->leaf = fib6_find_prefix(net, fn);
  949. atomic_inc(&fn->leaf->rt6i_ref);
  950. rt6_release(rt);
  951. }
  952. fn = fn->parent;
  953. }
  954. /* No more references are possible at this point. */
  955. BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
  956. }
  957. inet6_rt_notify(RTM_DELROUTE, rt, info);
  958. rt6_release(rt);
  959. }
  960. int fib6_del(struct rt6_info *rt, struct nl_info *info)
  961. {
  962. struct net *net = info->nl_net;
  963. struct fib6_node *fn = rt->rt6i_node;
  964. struct rt6_info **rtp;
  965. #if RT6_DEBUG >= 2
  966. if (rt->dst.obsolete>0) {
  967. WARN_ON(fn != NULL);
  968. return -ENOENT;
  969. }
  970. #endif
  971. if (fn == NULL || rt == net->ipv6.ip6_null_entry)
  972. return -ENOENT;
  973. WARN_ON(!(fn->fn_flags & RTN_RTINFO));
  974. if (!(rt->rt6i_flags&RTF_CACHE)) {
  975. struct fib6_node *pn = fn;
  976. #ifdef CONFIG_IPV6_SUBTREES
  977. /* clones of this route might be in another subtree */
  978. if (rt->rt6i_src.plen) {
  979. while (!(pn->fn_flags&RTN_ROOT))
  980. pn = pn->parent;
  981. pn = pn->parent;
  982. }
  983. #endif
  984. fib6_prune_clones(info->nl_net, pn, rt);
  985. }
  986. /*
  987. * Walk the leaf entries looking for ourself
  988. */
  989. for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
  990. if (*rtp == rt) {
  991. fib6_del_route(fn, rtp, info);
  992. return 0;
  993. }
  994. }
  995. return -ENOENT;
  996. }
  997. /*
  998. * Tree traversal function.
  999. *
  1000. * Certainly, it is not interrupt safe.
  1001. * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
  1002. * It means, that we can modify tree during walking
  1003. * and use this function for garbage collection, clone pruning,
  1004. * cleaning tree when a device goes down etc. etc.
  1005. *
  1006. * It guarantees that every node will be traversed,
  1007. * and that it will be traversed only once.
  1008. *
  1009. * Callback function w->func may return:
  1010. * 0 -> continue walking.
  1011. * positive value -> walking is suspended (used by tree dumps,
  1012. * and probably by gc, if it will be split to several slices)
  1013. * negative value -> terminate walking.
  1014. *
  1015. * The function itself returns:
  1016. * 0 -> walk is complete.
  1017. * >0 -> walk is incomplete (i.e. suspended)
  1018. * <0 -> walk is terminated by an error.
  1019. */
  1020. static int fib6_walk_continue(struct fib6_walker_t *w)
  1021. {
  1022. struct fib6_node *fn, *pn;
  1023. for (;;) {
  1024. fn = w->node;
  1025. if (fn == NULL)
  1026. return 0;
  1027. if (w->prune && fn != w->root &&
  1028. fn->fn_flags&RTN_RTINFO && w->state < FWS_C) {
  1029. w->state = FWS_C;
  1030. w->leaf = fn->leaf;
  1031. }
  1032. switch (w->state) {
  1033. #ifdef CONFIG_IPV6_SUBTREES
  1034. case FWS_S:
  1035. if (FIB6_SUBTREE(fn)) {
  1036. w->node = FIB6_SUBTREE(fn);
  1037. continue;
  1038. }
  1039. w->state = FWS_L;
  1040. #endif
  1041. case FWS_L:
  1042. if (fn->left) {
  1043. w->node = fn->left;
  1044. w->state = FWS_INIT;
  1045. continue;
  1046. }
  1047. w->state = FWS_R;
  1048. case FWS_R:
  1049. if (fn->right) {
  1050. w->node = fn->right;
  1051. w->state = FWS_INIT;
  1052. continue;
  1053. }
  1054. w->state = FWS_C;
  1055. w->leaf = fn->leaf;
  1056. case FWS_C:
  1057. if (w->leaf && fn->fn_flags&RTN_RTINFO) {
  1058. int err;
  1059. if (w->count < w->skip) {
  1060. w->count++;
  1061. continue;
  1062. }
  1063. err = w->func(w);
  1064. if (err)
  1065. return err;
  1066. w->count++;
  1067. continue;
  1068. }
  1069. w->state = FWS_U;
  1070. case FWS_U:
  1071. if (fn == w->root)
  1072. return 0;
  1073. pn = fn->parent;
  1074. w->node = pn;
  1075. #ifdef CONFIG_IPV6_SUBTREES
  1076. if (FIB6_SUBTREE(pn) == fn) {
  1077. WARN_ON(!(fn->fn_flags & RTN_ROOT));
  1078. w->state = FWS_L;
  1079. continue;
  1080. }
  1081. #endif
  1082. if (pn->left == fn) {
  1083. w->state = FWS_R;
  1084. continue;
  1085. }
  1086. if (pn->right == fn) {
  1087. w->state = FWS_C;
  1088. w->leaf = w->node->leaf;
  1089. continue;
  1090. }
  1091. #if RT6_DEBUG >= 2
  1092. WARN_ON(1);
  1093. #endif
  1094. }
  1095. }
  1096. }
  1097. static int fib6_walk(struct fib6_walker_t *w)
  1098. {
  1099. int res;
  1100. w->state = FWS_INIT;
  1101. w->node = w->root;
  1102. fib6_walker_link(w);
  1103. res = fib6_walk_continue(w);
  1104. if (res <= 0)
  1105. fib6_walker_unlink(w);
  1106. return res;
  1107. }
  1108. static int fib6_clean_node(struct fib6_walker_t *w)
  1109. {
  1110. int res;
  1111. struct rt6_info *rt;
  1112. struct fib6_cleaner_t *c = container_of(w, struct fib6_cleaner_t, w);
  1113. struct nl_info info = {
  1114. .nl_net = c->net,
  1115. };
  1116. for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
  1117. res = c->func(rt, c->arg);
  1118. if (res < 0) {
  1119. w->leaf = rt;
  1120. res = fib6_del(rt, &info);
  1121. if (res) {
  1122. #if RT6_DEBUG >= 2
  1123. printk(KERN_DEBUG "fib6_clean_node: del failed: rt=%p@%p err=%d\n", rt, rt->rt6i_node, res);
  1124. #endif
  1125. continue;
  1126. }
  1127. return 0;
  1128. }
  1129. WARN_ON(res != 0);
  1130. }
  1131. w->leaf = rt;
  1132. return 0;
  1133. }
  1134. /*
  1135. * Convenient frontend to tree walker.
  1136. *
  1137. * func is called on each route.
  1138. * It may return -1 -> delete this route.
  1139. * 0 -> continue walking
  1140. *
  1141. * prune==1 -> only immediate children of node (certainly,
  1142. * ignoring pure split nodes) will be scanned.
  1143. */
  1144. static void fib6_clean_tree(struct net *net, struct fib6_node *root,
  1145. int (*func)(struct rt6_info *, void *arg),
  1146. int prune, void *arg)
  1147. {
  1148. struct fib6_cleaner_t c;
  1149. c.w.root = root;
  1150. c.w.func = fib6_clean_node;
  1151. c.w.prune = prune;
  1152. c.w.count = 0;
  1153. c.w.skip = 0;
  1154. c.func = func;
  1155. c.arg = arg;
  1156. c.net = net;
  1157. fib6_walk(&c.w);
  1158. }
  1159. void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *arg),
  1160. int prune, void *arg)
  1161. {
  1162. struct fib6_table *table;
  1163. struct hlist_node *node;
  1164. struct hlist_head *head;
  1165. unsigned int h;
  1166. rcu_read_lock();
  1167. for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
  1168. head = &net->ipv6.fib_table_hash[h];
  1169. hlist_for_each_entry_rcu(table, node, head, tb6_hlist) {
  1170. write_lock_bh(&table->tb6_lock);
  1171. fib6_clean_tree(net, &table->tb6_root,
  1172. func, prune, arg);
  1173. write_unlock_bh(&table->tb6_lock);
  1174. }
  1175. }
  1176. rcu_read_unlock();
  1177. }
  1178. static int fib6_prune_clone(struct rt6_info *rt, void *arg)
  1179. {
  1180. if (rt->rt6i_flags & RTF_CACHE) {
  1181. RT6_TRACE("pruning clone %p\n", rt);
  1182. return -1;
  1183. }
  1184. return 0;
  1185. }
  1186. static void fib6_prune_clones(struct net *net, struct fib6_node *fn,
  1187. struct rt6_info *rt)
  1188. {
  1189. fib6_clean_tree(net, fn, fib6_prune_clone, 1, rt);
  1190. }
  1191. /*
  1192. * Garbage collection
  1193. */
  1194. static struct fib6_gc_args
  1195. {
  1196. int timeout;
  1197. int more;
  1198. } gc_args;
  1199. static int fib6_age(struct rt6_info *rt, void *arg)
  1200. {
  1201. unsigned long now = jiffies;
  1202. /*
  1203. * check addrconf expiration here.
  1204. * Routes are expired even if they are in use.
  1205. *
  1206. * Also age clones. Note, that clones are aged out
  1207. * only if they are not in use now.
  1208. */
  1209. if (rt->rt6i_flags&RTF_EXPIRES && rt->rt6i_expires) {
  1210. if (time_after(now, rt->rt6i_expires)) {
  1211. RT6_TRACE("expiring %p\n", rt);
  1212. return -1;
  1213. }
  1214. gc_args.more++;
  1215. } else if (rt->rt6i_flags & RTF_CACHE) {
  1216. if (atomic_read(&rt->dst.__refcnt) == 0 &&
  1217. time_after_eq(now, rt->dst.lastuse + gc_args.timeout)) {
  1218. RT6_TRACE("aging clone %p\n", rt);
  1219. return -1;
  1220. } else if ((rt->rt6i_flags & RTF_GATEWAY) &&
  1221. (!(rt->rt6i_nexthop->flags & NTF_ROUTER))) {
  1222. RT6_TRACE("purging route %p via non-router but gateway\n",
  1223. rt);
  1224. return -1;
  1225. }
  1226. gc_args.more++;
  1227. }
  1228. return 0;
  1229. }
  1230. static DEFINE_SPINLOCK(fib6_gc_lock);
  1231. void fib6_run_gc(unsigned long expires, struct net *net)
  1232. {
  1233. if (expires != ~0UL) {
  1234. spin_lock_bh(&fib6_gc_lock);
  1235. gc_args.timeout = expires ? (int)expires :
  1236. net->ipv6.sysctl.ip6_rt_gc_interval;
  1237. } else {
  1238. if (!spin_trylock_bh(&fib6_gc_lock)) {
  1239. mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
  1240. return;
  1241. }
  1242. gc_args.timeout = net->ipv6.sysctl.ip6_rt_gc_interval;
  1243. }
  1244. gc_args.more = icmp6_dst_gc();
  1245. fib6_clean_all(net, fib6_age, 0, NULL);
  1246. if (gc_args.more)
  1247. mod_timer(&net->ipv6.ip6_fib_timer,
  1248. round_jiffies(jiffies
  1249. + net->ipv6.sysctl.ip6_rt_gc_interval));
  1250. else
  1251. del_timer(&net->ipv6.ip6_fib_timer);
  1252. spin_unlock_bh(&fib6_gc_lock);
  1253. }
  1254. static void fib6_gc_timer_cb(unsigned long arg)
  1255. {
  1256. fib6_run_gc(0, (struct net *)arg);
  1257. }
  1258. static int __net_init fib6_net_init(struct net *net)
  1259. {
  1260. setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
  1261. net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
  1262. if (!net->ipv6.rt6_stats)
  1263. goto out_timer;
  1264. net->ipv6.fib_table_hash = kcalloc(FIB6_TABLE_HASHSZ,
  1265. sizeof(*net->ipv6.fib_table_hash),
  1266. GFP_KERNEL);
  1267. if (!net->ipv6.fib_table_hash)
  1268. goto out_rt6_stats;
  1269. net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
  1270. GFP_KERNEL);
  1271. if (!net->ipv6.fib6_main_tbl)
  1272. goto out_fib_table_hash;
  1273. net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
  1274. net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
  1275. net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
  1276. RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
  1277. #ifdef CONFIG_IPV6_MULTIPLE_TABLES
  1278. net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
  1279. GFP_KERNEL);
  1280. if (!net->ipv6.fib6_local_tbl)
  1281. goto out_fib6_main_tbl;
  1282. net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
  1283. net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
  1284. net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
  1285. RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
  1286. #endif
  1287. fib6_tables_init(net);
  1288. return 0;
  1289. #ifdef CONFIG_IPV6_MULTIPLE_TABLES
  1290. out_fib6_main_tbl:
  1291. kfree(net->ipv6.fib6_main_tbl);
  1292. #endif
  1293. out_fib_table_hash:
  1294. kfree(net->ipv6.fib_table_hash);
  1295. out_rt6_stats:
  1296. kfree(net->ipv6.rt6_stats);
  1297. out_timer:
  1298. return -ENOMEM;
  1299. }
  1300. static void fib6_net_exit(struct net *net)
  1301. {
  1302. rt6_ifdown(net, NULL);
  1303. del_timer_sync(&net->ipv6.ip6_fib_timer);
  1304. #ifdef CONFIG_IPV6_MULTIPLE_TABLES
  1305. kfree(net->ipv6.fib6_local_tbl);
  1306. #endif
  1307. kfree(net->ipv6.fib6_main_tbl);
  1308. kfree(net->ipv6.fib_table_hash);
  1309. kfree(net->ipv6.rt6_stats);
  1310. }
  1311. static struct pernet_operations fib6_net_ops = {
  1312. .init = fib6_net_init,
  1313. .exit = fib6_net_exit,
  1314. };
  1315. int __init fib6_init(void)
  1316. {
  1317. int ret = -ENOMEM;
  1318. fib6_node_kmem = kmem_cache_create("fib6_nodes",
  1319. sizeof(struct fib6_node),
  1320. 0, SLAB_HWCACHE_ALIGN,
  1321. NULL);
  1322. if (!fib6_node_kmem)
  1323. goto out;
  1324. ret = register_pernet_subsys(&fib6_net_ops);
  1325. if (ret)
  1326. goto out_kmem_cache_create;
  1327. ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib);
  1328. if (ret)
  1329. goto out_unregister_subsys;
  1330. out:
  1331. return ret;
  1332. out_unregister_subsys:
  1333. unregister_pernet_subsys(&fib6_net_ops);
  1334. out_kmem_cache_create:
  1335. kmem_cache_destroy(fib6_node_kmem);
  1336. goto out;
  1337. }
  1338. void fib6_gc_cleanup(void)
  1339. {
  1340. unregister_pernet_subsys(&fib6_net_ops);
  1341. kmem_cache_destroy(fib6_node_kmem);
  1342. }