/* * ebt_nflog * * Author: * Peter Warasin * * February, 2008 * * Based on: * xt_NFLOG.c, (C) 2006 by Patrick McHardy * ebt_ulog.c, (C) 2004 by Bart De Schuymer * */ #include #include #include #include #include #include static unsigned int ebt_nflog_tg(struct sk_buff *skb, const struct net_device *in, const struct net_device *out, unsigned int hooknr, const struct xt_target *target, const void *data) { struct ebt_nflog_info *info = (struct ebt_nflog_info *)data; struct nf_loginfo li; li.type = NF_LOG_TYPE_ULOG; li.u.ulog.copy_len = info->len; li.u.ulog.group = info->group; li.u.ulog.qthreshold = info->threshold; nf_log_packet(PF_BRIDGE, hooknr, skb, in, out, &li, "%s", info->prefix); return EBT_CONTINUE; } static bool ebt_nflog_tg_check(const char *table, const void *e, const struct xt_target *target, void *data, unsigned int hookmask) { struct ebt_nflog_info *info = (struct ebt_nflog_info *)data; if (info->flags & ~EBT_NFLOG_MASK) return false; info->prefix[EBT_NFLOG_PREFIX_SIZE - 1] = '\0'; return true; } static struct ebt_watcher nflog __read_mostly = { .name = EBT_NFLOG_WATCHER, .revision = 0, .family = NFPROTO_BRIDGE, .target = ebt_nflog_tg, .checkentry = ebt_nflog_tg_check, .targetsize = XT_ALIGN(sizeof(struct ebt_nflog_info)), .me = THIS_MODULE, }; static int __init ebt_nflog_init(void) { return ebt_register_watcher(&nflog); } static void __exit ebt_nflog_fini(void) { ebt_unregister_watcher(&nflog); } module_init(ebt_nflog_init); module_exit(ebt_nflog_fini); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Peter Warasin "); MODULE_DESCRIPTION("ebtables NFLOG netfilter logging module");