首頁 > 軟體

iptables深入解析-應用層外掛篇

2020-06-16 17:55:22

對於常規的iptables match或者target擴充套件肯定不能滿足我們的需要,並且預設iptables也只識別到五元組,在深入識別已經很吃力了.顯然在實際的需求面前,我們不會止步於此.下面就講講iptables功能擴充套件的外掛,支援Layer7.

在Linux的防火牆體系Netfilter下有一個獨立的模組L7 filter 。從字面上看Netfilter是對網路資料的過濾,L7 filter是基於資料流應用層內容的過濾。不過實際上 L7 filter的本職工作不是對資料流進行過濾而是對資料流進行分類。它使用模式匹配演算法把進入裝置的封包應用層內容與事先定義好的協定規則進行比對,如果匹配成功就說明這個封包屬於某種協定。

L7 filter是基於資料流工作的,建立在Netfilter connstrack功能之上。因為一個資料流或者說一個連線的所有資料都是屬於同一個應用的,所以L7 filter沒有必要對所以的封包進行模式匹配,而只匹配一個流的前面幾個封包 (比如10個封包)。當一個流的前面幾個封包包含了某種應用層協定的特徵碼時 (比如QQ),則這個資料流被L7 filter識別;當前面幾個封包的內容沒有包含某種應用層協定的特徵碼時,則L7 filter放棄繼續做模式匹配,這個資料流也就沒有辦法被識別.

準備工作,需要下載netfilter-layer7-v2.22和l7-protocols 網址:    http://l7-filter.sourceforge.net/

它的工作和之前註冊match流程是一樣的 需要使用者空間註冊match 和核心的註冊.

先看看使用者空間: 

  1. static struct xtables_match layer7 = {
  2.     .family = AF_INET,
  3.     .name = "layer7",
  4.     .version = XTABLES_VERSION,
  5.     .size = XT_ALIGN(sizeof(struct xt_layer7_info)),
  6.     .userspacesize = XT_ALIGN(sizeof(struct xt_layer7_info)),
  7.     .help = &help,
  8.     .parse = &parse,
  9.     .final_check = &final_check,
  10.     .print = &print,
  11.     .save = &save,
  12.     .extra_opts = opts
  13. };

再看看opts:

  1. static const struct option opts[] = {
  2.     { .name = "l7proto", .has_arg = 1, .val = 'p' },
  3.     { .name = "l7dir", .has_arg = 1, .val = 'd' },
  4.     { .name = NULL }
  5. };

主要還是看parse函數:

  1. /* Function which parses command options; returns true if it ate an option */
  2. static int parse(int c, char **argv, int invert, unsigned int *flags,
  3.       const void *entry, struct xt_entry_match **match)
  4. {
  5.     struct xt_layer7_info *layer7info =
  6.         (struct xt_layer7_info *)(*match)->data;
  7.     switch (c) {
  8.     case 'p':
  9.         parse_layer7_protocol(argv[optind-1], layer7info);
  10.         if (invert)
  11.             layer7info->invert = true;
  12.         *flags = 1;
  13.         break;
  14.     case 'd':
  15.         if(strlen(argv[optind-1]) >= MAX_FN_LEN)
  16.             xtables_error(PARAMETER_PROBLEM, "directory name too longn");
  17.         strncpy(l7dir, argv[optind-1], MAX_FN_LEN);
  18.         *flags = 1;
  19.         break;
  20.     default:
  21.         return 0;
  22.     }
  23.     return 1;
  24. }

由於它是支援到iptable1.4.3 和核心2.6.28的,如果現在比較新的版本需要自己對應修改部分程式碼.
這裡需要註冊的是struct xt_layer7_info :

  1. #define MAX_PATTERN_LEN 8192
  2. #define MAX_PROTOCOL_LEN 256
  3. struct xt_layer7_info {
  4.     char protocol[MAX_PROTOCOL_LEN];
  5.     char pattern[MAX_PATTERN_LEN];
  6.     u_int8_t invert;
  7. };

我們拿一個實際的例子說明:
#iptables -t nat -A POSTROUTING -m layer7 --17proto qq  -j DROP
parse函數的作用就是解析引數後,讀取特徵碼pat檔案資訊匹配,然後賦值給xt_layer7_info
通過parse_layer7_protocol:預設pat檔案放在/etc/l7-protocols ,也可以自己指定.
看qq.pat:
#...
#     that."
#   So now the pattern allows any of the first three bytes to be 02.  Delete
#   one of the ".?" to restore to the old behaviour.
# pattern written by www.routerclub.com wsgtrsys
qq
^.?.?x02.+x03$
即:protocol =“qq”;pattern=“^.?.?x02.+x03$
我們可以看到協定識別的資訊是一串正規表示式顯然不能直接用.
對於layer7它只支援ip報文,協定只支援tcp、udp和icmp:

  1. static int can_handle(const struct sk_buff *skb)
  2. {
  3.     if(!ip_hdr(skb)) /* not IP */
  4.         return 0;
  5.     if(ip_hdr(skb)->protocol != IPPROTO_TCP &&
  6.     ip_hdr(skb)->protocol != IPPROTO_UDP &&
  7.     ip_hdr(skb)->protocol != IPPROTO_ICMP)
  8.         return 0;
  9.     return 1;
  10. }

下面看看核心部分:

  1. static struct xt_match xt_layer7_match[] __read_mostly = {
  2. {
  3.     .name        = "layer7",
  4.     .family        = AF_INET,
  5.     .checkentry    = check,
  6.     .match        = match,
  7.     .destroy    = destroy,
  8.     .matchsize    = sizeof(struct xt_layer7_info),
  9.     .me        = THIS_MODULE
  10. }

核心中的工作就是呼叫match解析正規表示式.

  1. struct xt_action_param {
  2.     union {
  3.         const struct xt_match *match;
  4.         const struct xt_target *target;
  5.     };
  6.     union {
  7.         const void *matchinfo, *targinfo;
  8.     };
  9.     const struct net_device *in, *out;
  10.     int fragoff;
  11.     unsigned int thoff;
  12.     unsigned int hooknum;
  13.     u_int8_t family;
  14.     bool hotdrop;
  15. };

1.首先獲取使用者傳的資訊:const struct xt_layer7_info * info =par->matchinfo;
2.判斷是否是支援的協定型別(ip ---> tcp/udp/icmp)
3.獲取當前連線ct和master ct資訊
4. 判斷skb是否線性
5.找到應用資料的地址:

  1. 4.        /* now that the skb is linearized, it's safe to set these. */
  2. 5.        app_data = skb->data + app_data_offset(skb);
  3. 6.        appdatalen = skb_tail_pointer(skb) - app_data;

6.利用regcomp編譯傳遞的字串正規表示式到regexp結構體中

  1. #define NSUBEXP 10
  2. typedef struct regexp {
  3.     char *startp[NSUBEXP];
  4.     char *endp[NSUBEXP];
  5.     char regstart;        /* Internal use only. */
  6.     char reganch;        /* Internal use only. */
  7.     char *regmust;        /* Internal use only. */
  8.     int regmlen;        /* Internal use only. */
  9.     char program[1];    /* Unwarranted chumminess with compiler. */
  10. } regexp;

7.利用total_acct_packets計算是否為第一個來的報文,如果是申請app_data空間給ct裡的layer7欄位
8.判斷skb->cb 是否為null,為空則附加data到主ct的layer7.app_data,如果有下個報文處理則追加data.(追加的條件是什麼呢?) ,(當skb附加data後會設定skb->cb[0]=1)
9.利用regexec判斷匹配
10.設定skb->cb[0]=1;然後返回

這裡我們特別說明下第三個:
關於ct->master的問題 這裡涉及expt 即期望連線的問題,稍微回顧一下,在新建一個ct的時候會查詢expect hlist看看是否是某一個ct期望的連線.

  1. exp = nf_ct_find_expectation(net, zone, tuple);
  2.     if (exp) {
  3.         pr_debug("conntrack: expectation arrives ct=%p exp=%pn",
  4.             ct, exp);
  5.         /* Welcome, Mr. Bond. We've been expecting you... */
  6.         __set_bit(IPS_EXPECTED_BIT, &ct->status);
  7.         ct->master = exp->master;

還有一個之前說的只匹配前幾個包的問題(算是一個隱式bug):

  1. /* if we've classified it or seen too many packets */
  2.     if(total_acct_packets(master_conntrack) > num_packets ||
  3.     master_conntrack->layer7.app_proto) {

具體的編譯和安裝測試這裡不再說明.當然我們會發現這個layer7並不完美,還有許多問題需要去解決.

--------------------------------------分割線 --------------------------------------

CentOS 7.0關閉預設防火牆啟用iptables防火牆  http://www.linuxidc.com/Linux/2015-05/117473.htm

iptables使用範例詳解 http://www.linuxidc.com/Linux/2014-03/99159.htm

Linux防火牆iptables詳細教學 http://www.linuxidc.com/Linux/2013-07/87045.htm

iptables的備份、恢復及防火牆指令碼的基本使用 http://www.linuxidc.com/Linux/2013-08/88535.htm

Linux下防火牆iptables用法規則詳解 http://www.linuxidc.com/Linux/2012-08/67952.htm

--------------------------------------分割線 --------------------------------------

本文永久更新連結地址http://www.linuxidc.com/Linux/2015-08/121706.htm


IT145.com E-mail:sddin#qq.com