免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2273 | 回复: 2
打印 上一主题 下一主题

内核connlimit模块问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-03-03 09:30 |只看该作者 |倒序浏览
本帖最后由 zzappled 于 2011-03-03 09:42 编辑

static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
{
    return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
}

static inline bool already_closed(const struct nf_conn *conn)
{
    if (nf_ct_protonum(conn) == IPPROTO_TCP)
        return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT ||
               conn->proto.tcp.state == TCP_CONNTRACK_CLOSE;
    else
        return 0;
}

list_for_each_entry_safe(conn, tmp, hash, list) {
        found    = nf_conntrack_find_get(&init_net, &conn->tuple);
        found_ct = NULL;

        if (found != NULL)
            found_ct = nf_ct_tuplehash_to_ctrack(found);

        if (found_ct != NULL &&
            nf_ct_tuple_equal(&conn->tuple, tuple) &&
            !already_closed(found_ct))
            /*
                         * Just to be sure we have it only once in the list.
                         * We should not see tuples twice unless someone hooks
                         * this into a table without "-p tcp --syn".
                         */
            addit = false;

        if (found == NULL) {
            /* this one is gone */
            list_del(&conn->list);
            kfree(conn);
            continue;
        }

       if (already_closed(found_ct))//为什么这里不判断found_ct是否为NULL,是BUG还是别的 {
            /*
                         * we do not care about connections which are
                         * closed already -> ditch it
                         */
            nf_ct_put(found_ct);
            list_del(&conn->list);
            kfree(conn);
            continue;
        }

        if (same_source_net(addr, mask, &conn->tuple.src.u3, family))
            /* same source network -> be counted! */
            ++matches;
        nf_ct_put(found_ct);
    }

论坛徽章:
36
IT运维版块每日发帖之星
日期:2016-04-10 06:20:00IT运维版块每日发帖之星
日期:2016-04-16 06:20:0015-16赛季CBA联赛之广东
日期:2016-04-16 19:59:32IT运维版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-19 06:20:00每日论坛发贴之星
日期:2016-04-19 06:20:00IT运维版块每日发帖之星
日期:2016-04-25 06:20:00IT运维版块每日发帖之星
日期:2016-05-06 06:20:00IT运维版块每日发帖之星
日期:2016-05-08 06:20:00IT运维版块每日发帖之星
日期:2016-05-13 06:20:00IT运维版块每日发帖之星
日期:2016-05-28 06:20:00每日论坛发贴之星
日期:2016-05-28 06:20:00
2 [报告]
发表于 2011-03-03 10:48 |只看该作者
回复 1# zzappled

仔细看一下前面的代码,是不是已经保证了一定不是 NULL 的情况

论坛徽章:
0
3 [报告]
发表于 2011-03-03 10:59 |只看该作者
list_for_each_entry_safe(conn, tmp, hash, list) {
        found    = nf_conntrack_find_get(&init_net, &conn->tuple);
        found_ct = NULL;

        if (found != NULL)
            found_ct = nf_ct_tuplehash_to_ctrack(found);

        if (found_ct != NULL &&
            nf_ct_tuple_equal(&conn->tuple, tuple) &&
            !already_closed(found_ct))

在链表循环中,found_ct初始为NULL,如果found_ct = nf_ct_tuplehash_to_ctrack(found);始终不为NULL的话倒也好,那么下面if语句又进行了判断,为什么这句if (already_closed(found_ct))就不判断了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP