- 论坛徽章:
- 0
|
本帖最后由 __dreamcatcher 于 2010-09-18 13:31 编辑
在netfilter的连接跟踪模块中,初始化一个新链接时需要调用nf_conntrack_alloc()函数,在这个函数中需要判断连接数是否超过连接数的最大值(atomic_read(&net->ct.count) > nf_conntrack_max),之后调用early_drop()函数。小弟现在对early_drop()函数存在些疑问,请大家指点帮忙!- 498 static noinline int early_drop(struct net *net, unsigned int hash)
- 499 {
- ...
- 507 rcu_read_lock();
- 508 for (i = 0; i < net->ct.htable_size; i++) {
- 509 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
- 510 hnnode) {
- 511 tmp = nf_ct_tuplehash_to_ctrack(h);//为什么要这么做?
- 512 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
- 513 ct = tmp;
- 514 cnt++;
- 515 }
- 516
- 517 if (ct != NULL) {
- 518 if (likely(!nf_ct_is_dying(ct) &&
- 519 atomic_inc_not_zero(&ct->ct_general.use)))
- 520 break;
- 521 else
- 522 ct = NULL;
- 523 }
- 524
- 525 if (cnt >= NF_CT_EVICTION_RANGE)
- 526 break;
- 527
- 528 hash = (hash + 1) % net->ct.htable_size;
- 529 }
- 530 rcu_read_unlock();
- 531
- 532 if (!ct)
- 533 return dropped;
- 534
- 535 if (del_timer(&ct->timeout)) {
- 536 death_by_timeout((unsigned long)ct);
- 537 dropped = 1;
- 538 NF_CT_STAT_INC_ATOMIC(net, early_drop);
- 539 }
- 540 nf_ct_put(ct);//ct上的计数减1
- 541 return dropped;
- 542 }
复制代码 在这个函数中的问题是:
hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
510 hnnode) {
511 tmp = nf_ct_tuplehash_to_ctrack(h);
512 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
513 ct = tmp; //当test_bit()多次满足时,ct都会发生变化,为什么要这么做? 还有就是cnt只在初始时被初始化为0,之后一直是cnt++,这样累加到8之后就跳出循环,其作用?
514 cnt++;
515 }
if (cnt >= NF_CT_EVICTION_RANGE) //cnt++,这样累加到8之后就跳出循环,不明白其含义
break; |
|