blob: 8d07264754be018d42e16c661d46393502263707 [file] [log] [blame] [raw]
/*
* Copyright (C) 2000-2006 SWsoft. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <linux/vzcalluser.h>
#include <string.h>
#include <stdio.h>
#include "iptables.h"
static struct iptables_s iptables[] = {
#ifdef VZCTL_ENV_CREATE_DATA
{"ip_tables", VE_IP_IPTABLES_MOD, VE_IP_IPTABLES},
{"iptable_filter", VE_IP_FILTER_MOD, VE_IP_FILTER},
{"iptable_mangle", VE_IP_MANGLE_MOD, VE_IP_MANGLE},
{"ipt_limit", VE_IP_MATCH_LIMIT_MOD, VE_IP_MATCH_LIMIT},
{"ipt_multiport", VE_IP_MATCH_MULTIPORT_MOD, VE_IP_MATCH_MULTIPORT},
{"ipt_tos", VE_IP_MATCH_TOS_MOD, VE_IP_MATCH_TOS},
{"ipt_TOS", VE_IP_TARGET_TOS_MOD, VE_IP_TARGET_TOS},
{"ipt_REJECT", VE_IP_TARGET_REJECT_MOD, VE_IP_TARGET_REJECT},
{"ipt_TCPMSS", VE_IP_TARGET_TCPMSS_MOD, VE_IP_TARGET_TCPMSS},
{"ipt_tcpmss", VE_IP_MATCH_TCPMSS_MOD, VE_IP_MATCH_TCPMSS},
{"ipt_ttl", VE_IP_MATCH_TTL_MOD, VE_IP_MATCH_TTL},
{"ipt_LOG", VE_IP_TARGET_LOG_MOD, VE_IP_TARGET_LOG},
{"ipt_length", VE_IP_MATCH_LENGTH_MOD, VE_IP_MATCH_LENGTH},
{"ip_conntrack", VE_IP_CONNTRACK_MOD, VE_IP_CONNTRACK},
{"ip_conntrack_ftp", VE_IP_CONNTRACK_FTP_MOD, VE_IP_CONNTRACK_FTP},
{"ip_conntrack_irc", VE_IP_CONNTRACK_IRC_MOD, VE_IP_CONNTRACK_IRC},
{"ipt_conntrack", VE_IP_MATCH_CONNTRACK_MOD, VE_IP_MATCH_CONNTRACK},
{"ipt_state", VE_IP_MATCH_STATE_MOD, VE_IP_MATCH_STATE},
{"ipt_helper", VE_IP_MATCH_HELPER_MOD, VE_IP_MATCH_HELPER},
{"iptable_nat", VE_IP_NAT_MOD, VE_IP_NAT},
{"ip_nat_ftp", VE_IP_NAT_FTP_MOD, VE_IP_NAT_FTP},
{"ip_nat_irc", VE_IP_NAT_IRC_MOD, VE_IP_NAT_IRC},
#ifdef VE_IP_TARGET_REDIRECT
{"ipt_REDIRECT", VE_IP_TARGET_REDIRECT_MOD, VE_IP_TARGET_REDIRECT},
#endif
#ifdef VE_IP_MATCH_MAC
{"xt_mac", VE_IP_MATCH_MAC_MOD, VE_IP_MATCH_MAC},
#endif
#endif /* VZCTL_ENV_CREATE_DATA */
{NULL, 0}
};
struct iptables_s *find_ipt(const char *name)
{
int i;
for (i = 0; iptables[i].name != NULL; i++)
if (!strcmp(name, iptables[i].name))
return &iptables[i];
return NULL;
}
void ipt_mask2str(unsigned long mask, char *buf, int size)
{
int i, r;
char *sp, *ep;
sp = buf;
ep = buf + size;
for (i = 0; iptables[i].name != NULL; i++) {
if (!(mask & iptables[i].id))
continue;
r = snprintf(sp, ep - sp, "%s ", iptables[i].name);
if (r < 0 || sp + r >= ep)
break;
sp += r;
}
}
unsigned long long get_ipt_mask(unsigned long ids)
{
unsigned long long mask;
int i;
if (!ids)
return VE_IP_DEFAULT;
mask = 0;
for (i = 0; iptables[i].name != NULL; i++) {
if (iptables[i].id & ids)
mask |= iptables[i].mask;
}
return mask;
}