blob: c74b04dbae94fb064ac6d10ccf2368b3e50338ea [file] [log] [blame]
Harald Weltee920f292002-03-24 20:57:26 +00001/* Shared library add-on to ip6tables to add EUI64 address checking support. */
András Kis-Szabó81adae92001-04-12 15:35:32 +00002#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7#if defined(__GLIBC__) && __GLIBC__ == 2
8#include <net/ethernet.h>
9#else
10#include <linux/if_ether.h>
11#endif
12#include <ip6tables.h>
13
14/* Function which prints out usage message. */
15static void
16help(void)
17{
18 printf(
Harald Weltee920f292002-03-24 20:57:26 +000019"eui64 v%s options:\n"
András Kis-Szabó81adae92001-04-12 15:35:32 +000020" This module hasn't got any option\n"
Harald Weltee920f292002-03-24 20:57:26 +000021" This module checks for EUI64 IPv6 addresses\n"
Harald Welte80fe35d2002-05-29 13:08:15 +000022"\n", IPTABLES_VERSION);
András Kis-Szabó81adae92001-04-12 15:35:32 +000023}
24
25static struct option opts[] = {
26 {0}
27};
28
András Kis-Szabó81adae92001-04-12 15:35:32 +000029/* Function which parses command options; returns true if it
30 ate an option */
31static int
32parse(int c, char **argv, int invert, unsigned int *flags,
33 const struct ip6t_entry *entry,
34 unsigned int *nfcache,
35 struct ip6t_entry_match **match)
36{
37 return 0;
38}
39
40/* Final check */
41static void final_check(unsigned int flags)
42{
43}
44
45/* Prints out the matchinfo. */
46static void
47print(const struct ip6t_ip6 *ip,
48 const struct ip6t_entry_match *match,
49 int numeric)
50{
Harald Weltee920f292002-03-24 20:57:26 +000051 printf("eui64 ");
András Kis-Szabó81adae92001-04-12 15:35:32 +000052}
53
54/* Saves the union ip6t_matchinfo in parsable form to stdout. */
55static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
56{
Harald Weltee920f292002-03-24 20:57:26 +000057
András Kis-Szabó81adae92001-04-12 15:35:32 +000058}
59
Harald Welte02aa7332005-02-01 15:38:20 +000060static struct ip6tables_match eui64 = {
61 .name = "eui64",
62 .version = IPTABLES_VERSION,
63 .size = IP6T_ALIGN(sizeof(int)),
64 .userspacesize = IP6T_ALIGN(sizeof(int)),
65 .help = &help,
Harald Welte02aa7332005-02-01 15:38:20 +000066 .parse = &parse,
67 .final_check = &final_check,
68 .print = &print,
69 .save = &save,
70 .extra_opts = opts,
András Kis-Szabó81adae92001-04-12 15:35:32 +000071};
72
73void _init(void)
74{
Harald Weltee920f292002-03-24 20:57:26 +000075 register_match6(&eui64);
András Kis-Szabó81adae92001-04-12 15:35:32 +000076}