| /* |
| * Copyright (C) 2001-2006 by Darren Reed. |
| * |
| * See the IPFILTER.LICENCE file for details on licencing. |
| */ |
| %{ |
| #ifdef __FreeBSD__ |
| # ifndef __FreeBSD_cc_version |
| # include <osreldate.h> |
| # else |
| # if __FreeBSD_cc_version < 430000 |
| # include <osreldate.h> |
| # endif |
| # endif |
| #endif |
| #include <stdio.h> |
| #include <unistd.h> |
| #include <string.h> |
| #include <fcntl.h> |
| #include <errno.h> |
| #if !defined(__SVR4) && !defined(__GNUC__) |
| #include <strings.h> |
| #endif |
| #include <sys/types.h> |
| #include <sys/param.h> |
| #include <sys/file.h> |
| #include <stdlib.h> |
| #include <stddef.h> |
| #include <sys/socket.h> |
| #include <sys/ioctl.h> |
| #include <netinet/in.h> |
| #include <netinet/in_systm.h> |
| #include <sys/time.h> |
| #include <syslog.h> |
| #include <net/if.h> |
| #if __FreeBSD_version >= 300000 |
| # include <net/if_var.h> |
| #endif |
| #include <netdb.h> |
| #include <arpa/nameser.h> |
| #include <resolv.h> |
| #include "ipf.h" |
| #include "netinet/ipl.h" |
| #include "ipnat_l.h" |
| |
| #define YYDEBUG 1 |
| |
| extern void yyerror __P((char *)); |
| extern int yyparse __P((void)); |
| extern int yylex __P((void)); |
| extern int yydebug; |
| extern FILE *yyin; |
| extern int yylineNum; |
| |
| static ipnat_t *nattop = NULL; |
| static ipnat_t *nat = NULL; |
| static int natfd = -1; |
| static ioctlfunc_t natioctlfunc = NULL; |
| static addfunc_t nataddfunc = NULL; |
| static int suggest_port = 0; |
| static proxyrule_t *prules = NULL; |
| |
| static void newnatrule __P((void)); |
| static void setnatproto __P((int)); |
| static void setmapifnames __P((void)); |
| static void setrdrifnames __P((void)); |
| static void proxy_setconfig __P((int)); |
| static void proxy_unsetconfig __P((void)); |
| static namelist_t *proxy_dns_add_pass __P((char *, char *)); |
| static namelist_t *proxy_dns_add_block __P((char *, char *)); |
| static void proxy_addconfig __P((char *, int, char *, namelist_t *)); |
| static void proxy_loadconfig __P((int, ioctlfunc_t, char *, int, |
| char *, namelist_t *)); |
| static void proxy_loadrules __P((int, ioctlfunc_t, proxyrule_t *)); |
| %} |
| %union { |
| char *str; |
| u_32_t num; |
| struct in_addr ipa; |
| frentry_t fr; |
| frtuc_t *frt; |
| u_short port; |
| struct { |
| int p1; |
| int p2; |
| int pc; |
| } pc; |
| struct { |
| i6addr_t a; |
| i6addr_t m; |
| int t; |
| int f; |
| } ipp; |
| union i6addr ip6; |
| namelist_t *names; |
| }; |
| |
| %token <num> YY_NUMBER YY_HEX |
| %token <str> YY_STR |
| %token YY_COMMENT |
| %token YY_CMP_EQ YY_CMP_NE YY_CMP_LE YY_CMP_GE YY_CMP_LT YY_CMP_GT |
| %token YY_RANGE_OUT YY_RANGE_IN |
| %token <ip6> YY_IPV6 |
| |
| %token IPNY_MAPBLOCK IPNY_RDR IPNY_PORT IPNY_PORTS IPNY_AUTO IPNY_RANGE |
| %token IPNY_MAP IPNY_BIMAP IPNY_FROM IPNY_TO IPNY_MASK IPNY_PORTMAP IPNY_ANY |
| %token IPNY_ROUNDROBIN IPNY_FRAG IPNY_AGE IPNY_ICMPIDMAP IPNY_PROXY |
| %token IPNY_TCP IPNY_UDP IPNY_TCPUDP IPNY_STICKY IPNY_MSSCLAMP IPNY_TAG |
| %token IPNY_TLATE IPNY_POOL IPNY_HASH IPNY_NO IPNY_REWRITE IPNY_PROTO |
| %token IPNY_ON IPNY_SRC IPNY_DST IPNY_IN IPNY_OUT IPNY_DIVERT IPNY_ENCAP |
| %token IPNY_RANDOM IPNY_HASHMD5 IPNY_CONFIG IPNY_ALLOW IPNY_DENY IPNY_DNS |
| %type <port> portspec |
| %type <num> hexnumber compare range proto functype |
| %type <ipa> hostname ipv4 |
| %type <ipp> addr rhsaddr rhdaddr afunc |
| %type <pc> portstuff portpair comaports srcports dstports |
| %type <names> dnslines dnsline |
| %% |
| file: line |
| | assign |
| | file line |
| | file assign |
| | file pconf ';' |
| ; |
| |
| line: xx rule { while ((nat = nattop) != NULL) { |
| nattop = nat->in_next; |
| (*nataddfunc)(natfd, natioctlfunc, nat); |
| free(nat); |
| } |
| if (prules != NULL) { |
| proxy_loadrules(natfd, natioctlfunc, prules); |
| prules = NULL; |
| } |
| resetlexer(); |
| } |
| | YY_COMMENT |
| ; |
| |
| assign: YY_STR assigning YY_STR ';' { set_variable($1, $3); |
| resetlexer(); |
| free($1); |
| free($3); |
| yyvarnext = 0; |
| } |
| ; |
| |
| assigning: |
| '=' { yyvarnext = 1; } |
| ; |
| |
| xx: { newnatrule(); } |
| ; |
| |
| rule: map eol |
| | mapblock eol |
| | redir eol |
| | rewrite ';' |
| | divert ';' |
| | encap ';' |
| ; |
| |
| no: IPNY_NO { nat->in_flags |= IPN_NO; } |
| ; |
| |
| eol: | ';' |
| ; |
| |
| map: mapit ifnames addr IPNY_TLATE rhsaddr proxy mapoptions |
| { nat->in_v = 4; |
| nat->in_osrcatype = $3.t; |
| bcopy(&$3.a, &nat->in_osrc.na_addr[0], |
| sizeof($3.a)); |
| bcopy(&$3.m, &nat->in_osrc.na_addr[1], |
| sizeof($3.a)); |
| nat->in_nsrcatype = $5.t; |
| nat->in_nsrcafunc = $5.f; |
| bcopy(&$5.a, &nat->in_nsrc.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_nsrc.na_addr[1], |
| sizeof($5.a)); |
| |
| setmapifnames(); |
| } |
| | mapit ifnames addr IPNY_TLATE rhsaddr mapport mapoptions |
| { nat->in_v = 4; |
| nat->in_osrcatype = $3.t; |
| bcopy(&$3.a, &nat->in_osrc.na_addr[0], |
| sizeof($3.a)); |
| bcopy(&$3.m, &nat->in_osrc.na_addr[1], |
| sizeof($3.a)); |
| nat->in_nsrcatype = $5.t; |
| nat->in_nsrcafunc = $5.f; |
| bcopy(&$5.a, &nat->in_nsrc.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_nsrc.na_addr[1], |
| sizeof($5.a)); |
| |
| setmapifnames(); |
| } |
| | no mapit ifnames addr setproto ';' |
| { nat->in_v = 4; |
| nat->in_osrcatype = $4.t; |
| bcopy(&$4.a, &nat->in_osrc.na_addr[0], |
| sizeof($4.a)); |
| bcopy(&$4.m, &nat->in_osrc.na_addr[1], |
| sizeof($4.a)); |
| |
| setmapifnames(); |
| } |
| | mapit ifnames mapfrom IPNY_TLATE rhsaddr proxy mapoptions |
| { nat->in_v = 4; |
| nat->in_nsrcatype = $5.t; |
| nat->in_nsrcafunc = $5.f; |
| bcopy(&$5.a, &nat->in_nsrc.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_nsrc.na_addr[1], |
| sizeof($5.a)); |
| |
| setmapifnames(); |
| } |
| | no mapit ifnames mapfrom setproto ';' |
| { nat->in_v = 4; |
| |
| setmapifnames(); |
| } |
| | mapit ifnames mapfrom IPNY_TLATE rhsaddr mapport mapoptions |
| { nat->in_v = 4; |
| nat->in_nsrcatype = $5.t; |
| nat->in_nsrcafunc = $5.f; |
| bcopy(&$5.a, &nat->in_nsrc.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_nsrc.na_addr[1], |
| sizeof($5.a)); |
| |
| setmapifnames(); |
| } |
| ; |
| |
| mapblock: |
| mapblockit ifnames addr IPNY_TLATE addr ports mapoptions |
| { nat->in_v = 4; |
| nat->in_osrcatype = $3.t; |
| bcopy(&$3.a, &nat->in_osrc.na_addr[0], |
| sizeof($3.a)); |
| bcopy(&$3.m, &nat->in_osrc.na_addr[1], |
| sizeof($3.a)); |
| nat->in_nsrcatype = $5.t; |
| nat->in_nsrcafunc = $5.f; |
| bcopy(&$5.a, &nat->in_nsrc.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_nsrc.na_addr[1], |
| sizeof($5.a)); |
| |
| setmapifnames(); |
| } |
| | no mapblockit ifnames addr setproto ';' |
| { nat->in_v = 4; |
| nat->in_osrcatype = $4.t; |
| bcopy(&$4.a, &nat->in_osrc.na_addr[0], |
| sizeof($4.a)); |
| bcopy(&$4.m, &nat->in_osrc.na_addr[1], |
| sizeof($4.a)); |
| |
| setmapifnames(); |
| } |
| ; |
| |
| redir: rdrit ifnames addr dport IPNY_TLATE dip nport setproto rdroptions |
| { nat->in_v = 4; |
| nat->in_odstatype = $3.t; |
| bcopy(&$3.a, &nat->in_odst.na_addr[0], |
| sizeof($3.a)); |
| bcopy(&$3.m, &nat->in_odst.na_addr[1], |
| sizeof($3.a)); |
| |
| setrdrifnames(); |
| } |
| | no rdrit ifnames addr dport setproto ';' |
| { nat->in_v = 4; |
| nat->in_odstatype = $4.t; |
| bcopy(&$4.a, &nat->in_odst.na_addr[0], |
| sizeof($4.a)); |
| bcopy(&$4.m, &nat->in_odst.na_addr[1], |
| sizeof($4.a)); |
| |
| setrdrifnames(); |
| } |
| | rdrit ifnames rdrfrom IPNY_TLATE dip nport setproto rdroptions |
| { nat->in_v = 4; |
| |
| setrdrifnames(); |
| } |
| | no rdrit ifnames rdrfrom setproto ';' |
| { nat->in_v = 4; |
| |
| setrdrifnames(); |
| } |
| ; |
| |
| rewrite: |
| IPNY_REWRITE oninout rwrproto mapfrom IPNY_TLATE newdst |
| { if (nat->in_redir & NAT_MAP) |
| setmapifnames(); |
| else |
| setrdrifnames(); |
| nat->in_redir |= NAT_REWRITE; |
| } |
| ; |
| |
| divert: IPNY_DIVERT oninout rwrproto mapfrom IPNY_TLATE divdst |
| { if (nat->in_redir & NAT_MAP) { |
| setmapifnames(); |
| nat->in_pr[0] = IPPROTO_UDP; |
| } else { |
| setrdrifnames(); |
| nat->in_pr[1] = IPPROTO_UDP; |
| } |
| nat->in_flags &= ~IPN_TCP; |
| } |
| ; |
| |
| encap: IPNY_ENCAP oninout rwrproto mapfrom IPNY_TLATE encapdst |
| { if (nat->in_redir & NAT_MAP) { |
| setmapifnames(); |
| nat->in_pr[0] = IPPROTO_ENCAP; |
| } else { |
| setrdrifnames(); |
| nat->in_pr[1] = IPPROTO_ENCAP; |
| } |
| nat->in_flags &= ~IPN_TCPUDP; |
| } |
| ; |
| |
| pconf: IPNY_PROXY { yysetdict(proxies); } |
| IPNY_DNS '/' proto IPNY_CONFIG YY_STR '{' |
| { proxy_setconfig(IPNY_DNS); } |
| dnslines ';' '}' |
| { proxy_addconfig("dns", $5, $7, $10); |
| proxy_unsetconfig(); |
| } |
| ; |
| |
| dnslines: |
| dnsline { $$ = $1; } |
| | dnslines ';' dnsline { $$ = $1; $1->na_next = $3; } |
| ; |
| |
| dnsline: |
| IPNY_ALLOW YY_STR { $$ = proxy_dns_add_pass(NULL, $2); } |
| | IPNY_DENY YY_STR { $$ = proxy_dns_add_block(NULL, $2); } |
| | IPNY_ALLOW '.' YY_STR { $$ = proxy_dns_add_pass(".", $3); } |
| | IPNY_DENY '.' YY_STR { $$ = proxy_dns_add_block(".", $3); } |
| ; |
| |
| oninout: |
| inout IPNY_ON ifnames { nat->in_v = 4; } |
| ; |
| |
| inout: IPNY_IN { nat->in_redir = NAT_REDIRECT; } |
| | IPNY_OUT { nat->in_redir = NAT_MAP; } |
| ; |
| |
| rwrproto: |
| | IPNY_PROTO setproto |
| ; |
| |
| newdst: IPNY_SRC rhsaddr srcports IPNY_DST rhdaddr dstports |
| { bcopy(&$2.a, &nat->in_nsrc.na_addr[0], |
| sizeof($2.a)); |
| bcopy(&$2.m, &nat->in_nsrc.na_addr[1], |
| sizeof($2.m)); |
| nat->in_nsrcafunc = $2.f; |
| nat->in_nsports[0] = $3.p1; |
| nat->in_nsports[1] = $3.p2; |
| bcopy(&$5.a, &nat->in_ndst.na_addr[0], |
| sizeof($5.a)); |
| bcopy(&$5.m, &nat->in_ndst.na_addr[1], |
| sizeof($5.m)); |
| nat->in_ndstafunc = $5.f; |
| nat->in_ndports[0] = $6.p1; |
| nat->in_ndports[1] = $6.p2; |
| } |
| ; |
| |
| divdst: IPNY_SRC addr ',' portspec IPNY_DST addr ',' portspec IPNY_UDP |
| { bcopy(&$2.a, &nat->in_nsrc.na_addr[0], |
| sizeof($2.a)); |
| if ($2.m.in4.s_addr != 0xffffffff) |
| yyerror("divert must have /32 dest"); |
| bcopy(&$2.m, &nat->in_nsrc.na_addr[1], |
| sizeof($2.m)); |
| nat->in_nsrcafunc = $2.f; |
| nat->in_nsports[0] = $4; |
| nat->in_nsports[1] = $4; |
| |
| bcopy(&$6.a, &nat->in_ndst.na_addr[0], |
| sizeof($6.a)); |
| bcopy(&$6.m, &nat->in_ndst.na_addr[1], |
| sizeof($6.m)); |
| if ($6.m.in4.s_addr != 0xffffffff) |
| yyerror("divert must have /32 dest"); |
| nat->in_ndstafunc = $6.f; |
| nat->in_ndports[0] = $8; |
| nat->in_ndports[1] = $8; |
| |
| nat->in_redir |= NAT_DIVERTUDP; |
| } |
| ; |
| |
| encapdst: |
| IPNY_SRC addr IPNY_DST addr |
| { bcopy(&$2.a, &nat->in_nsrc.na_addr[0], |
| sizeof($2.a)); |
| bcopy(&$2.m, &nat->in_nsrc.na_addr[1], |
| sizeof($2.m)); |
| bcopy(&$4.a, &nat->in_ndst.na_addr[0], |
| sizeof($4.a)); |
| bcopy(&$4.m, &nat->in_ndst.na_addr[1], |
| sizeof($4.m)); |
| nat->in_redir |= NAT_ENCAP; |
| } |
| ; |
| |
| srcports: |
| comaports { $$.p1 = $1.p1; |
| $$.p2 = $1.p2; |
| } |
| | IPNY_PORT '=' portspec |
| { $$.p1 = $3; |
| $$.p2 = $3; |
| nat->in_flags |= IPN_FIXEDSPORT; |
| } |
| ; |
| |
| dstports: |
| comaports { $$.p1 = $1.p1; |
| $$.p2 = $1.p2; |
| } |
| | IPNY_PORT '=' portspec |
| { $$.p1 = $3; |
| $$.p2 = $3; |
| nat->in_flags |= IPN_FIXEDDPORT; |
| } |
| ; |
| |
| comaports: |
| { $$.p1 = 0; |
| $$.p2 = 0; |
| } |
| | ',' { if (!(nat->in_flags & IPN_TCPUDP)) |
| yyerror("must be TCP/UDP for ports"); |
| } |
| portpair { $$.p1 = $3.p1; |
| $$.p2 = $3.p2; |
| } |
| ; |
| |
| proxy: | IPNY_PROXY port portspec YY_STR '/' proto |
| { strncpy(nat->in_plabel, $4, sizeof(nat->in_plabel)); |
| if (nat->in_dcmp == 0) { |
| nat->in_odport = $3; |
| } else if ($3 != nat->in_odport) { |
| yyerror("proxy port numbers not consistant"); |
| } |
| nat->in_ndport = $3; |
| setnatproto($6); |
| free($4); |
| } |
| | IPNY_PROXY port YY_STR YY_STR '/' proto |
| { int pnum; |
| strncpy(nat->in_plabel, $4, sizeof(nat->in_plabel)); |
| pnum = getportproto($3, $6); |
| if (pnum == -1) |
| yyerror("invalid port number"); |
| nat->in_odport = ntohs(pnum); |
| nat->in_ndport = ntohs(pnum); |
| setnatproto($6); |
| free($3); |
| free($4); |
| } |
| | IPNY_PROXY port portspec YY_STR '/' proto IPNY_CONFIG YY_STR |
| { strncpy(nat->in_plabel, $4, sizeof(nat->in_plabel)); |
| if (nat->in_dcmp == 0) { |
| nat->in_odport = $3; |
| } else if ($3 != nat->in_odport) { |
| yyerror("proxy port numbers not consistant"); |
| } |
| nat->in_ndport = $3; |
| setnatproto($6); |
| strncpy(nat->in_pconfig, $8, APR_LABELLEN); |
| nat->in_pconfig[APR_LABELLEN - 1] = '\0'; |
| free($4); |
| free($8); |
| } |
| | IPNY_PROXY port YY_STR YY_STR '/' proto IPNY_CONFIG YY_STR |
| { int pnum; |
| strncpy(nat->in_plabel, $4, sizeof(nat->in_plabel)); |
| pnum = getportproto($3, $6); |
| if (pnum == -1) |
| yyerror("invalid port number"); |
| nat->in_odport = ntohs(pnum); |
| nat->in_ndport = ntohs(pnum); |
| setnatproto($6); |
| strncpy(nat->in_pconfig, $8, APR_LABELLEN); |
| nat->in_pconfig[APR_LABELLEN - 1] = '\0'; |
| free($3); |
| free($4); |
| free($8); |
| } |
| ; |
| setproto: |
| | proto { if (nat->in_pr[0] != 0 || |
| nat->in_pr[1] != 0 || |
| nat->in_flags & IPN_TCPUDP) |
| yyerror("protocol set twice"); |
| setnatproto($1); |
| } |
| | IPNY_TCPUDP { if (nat->in_pr[0] != 0 || |
| nat->in_pr[1] != 0 || |
| nat->in_flags & IPN_TCPUDP) |
| yyerror("protocol set twice"); |
| nat->in_flags |= IPN_TCPUDP; |
| nat->in_pr[0] = 0; |
| nat->in_pr[1] = 0; |
| } |
| | IPNY_TCP '/' IPNY_UDP { if (nat->in_pr[0] != 0 || |
| nat->in_pr[1] != 0 || |
| nat->in_flags & IPN_TCPUDP) |
| yyerror("protocol set twice"); |
| nat->in_flags |= IPN_TCPUDP; |
| nat->in_pr[0] = 0; |
| nat->in_pr[1] = 0; |
| } |
| ; |
| |
| rhsaddr: |
| addr { $$.t = $1.t; |
| $$.f = NA_NORMAL; |
| $$.a = $1.a; |
| $$.m = $1.m; |
| } |
| | afunc { $$.t = $1.t; |
| $$.f = $1.f; |
| $$.a = $1.a; |
| $$.m = $1.m; |
| } |
| | hostname '-' hostname |
| { $$.t = FRI_RANGE; |
| $$.f = NA_NORMAL; |
| $$.a.in4 = $1; |
| $$.m.in4 = $3; |
| nat->in_flags |= IPN_SIPRANGE; } |
| | IPNY_RANGE hostname '-' hostname |
| { $$.t = FRI_RANGE; |
| $$.f = NA_NORMAL; |
| $$.a.in4 = $2; |
| $$.m.in4 = $4; |
| nat->in_flags |= IPN_SIPRANGE; } |
| ; |
| |
| afunc: functype '(' hostname '-' hostname ')' |
| { $$.t = FRI_RANGE; |
| $$.f = $1; |
| $$.a.in4 = $3; |
| $$.m.in4 = $5; |
| } |
| | functype '(' addr ')' { $$.t = $3.t; |
| $$.f = $1; |
| $$.a = $3.a; |
| $$.m = $3.m; |
| } |
| ; |
| |
| functype: |
| IPNY_RANDOM { $$ = NA_RANDOM; } |
| | IPNY_HASHMD5 { $$ = NA_HASHMD5; } |
| ; |
| |
| dip: |
| hostname ',' hostname { nat->in_flags |= IPN_SPLIT; |
| nat->in_ndstaddr = $1.s_addr; |
| nat->in_ndstmsk = $3.s_addr; |
| nat->in_ndstatype = FRI_SPLIT; |
| nat->in_ndstafunc = NA_NORMAL; |
| } |
| | rhdaddr { nat->in_ndstaddr = $1.a.in4.s_addr; |
| nat->in_ndstmsk = $1.m.in4.s_addr; |
| nat->in_ndstatype = $1.t; |
| nat->in_ndstafunc = $1.f;; |
| } |
| ; |
| |
| rhdaddr: |
| addr { $$.t = $1.t; |
| $$.f = NA_NORMAL; |
| $$.a = $1.a; |
| $$.m = $1.m; } |
| | afunc { $$.t = $1.t; |
| $$.f = $1.f; |
| $$.a = $1.a; |
| $$.m = $1.m; |
| } |
| | hostname '-' hostname { $$.t = FRI_RANGE; |
| $$.f = NA_NORMAL; |
| $$.a.in4 = $1; |
| $$.m.in4 = $3; |
| nat->in_flags |= IPN_DIPRANGE; } |
| | IPNY_RANGE hostname '-' hostname |
| { $$.t = FRI_RANGE; |
| $$.f = NA_NORMAL; |
| $$.a.in4 = $2; |
| $$.m.in4 = $4; |
| nat->in_flags |= IPN_DIPRANGE; } |
| ; |
| |
| port: IPNY_PORT { suggest_port = 1; } |
| ; |
| |
| portspec: |
| YY_NUMBER { if ($1 > 65535) /* Unsigned */ |
| yyerror("invalid port number"); |
| else |
| $$ = $1; |
| } |
| | YY_STR { if (getport(NULL, $1, |
| &($$), NULL) == -1) |
| yyerror("invalid port number"); |
| $$ = ntohs($$); |
| } |
| ; |
| |
| portpair: |
| portspec { $$.p1 = $1; $$.p2 = $1; } |
| | portspec '-' portspec { $$.p1 = $1; $$.p2 = $3; } |
| | portspec ':' portspec { $$.p1 = $1; $$.p2 = $3; } |
| ; |
| |
| dport: | port portpair { nat->in_odport = $2.p1; |
| if ($2.p2 == 0) |
| nat->in_dtop = $2.p1; |
| else |
| nat->in_dtop = $2.p2; |
| } |
| ; |
| |
| nport: | port portpair { nat->in_dpmin = $2.p1; |
| nat->in_dpnext = $2.p1; |
| nat->in_dpmax = $2.p2; |
| nat->in_ndport = $2.p1; |
| if (nat->in_dtop == 0) |
| nat->in_dtop = $2.p2; |
| } |
| | port '=' portspec { nat->in_dpmin = $3; |
| nat->in_dpnext = $3; |
| nat->in_ndport = $3; |
| if (nat->in_dtop == 0) |
| nat->in_dtop = nat->in_odport; |
| nat->in_flags |= IPN_FIXEDDPORT; |
| } |
| ; |
| |
| ports: | IPNY_PORTS YY_NUMBER { nat->in_spmin = $2; } |
| | IPNY_PORTS IPNY_AUTO { nat->in_flags |= IPN_AUTOPORTMAP; } |
| ; |
| |
| mapit: IPNY_MAP { nat->in_redir = NAT_MAP; } |
| | IPNY_BIMAP { nat->in_redir = NAT_BIMAP; } |
| ; |
| |
| rdrit: IPNY_RDR { nat->in_redir = NAT_REDIRECT; } |
| ; |
| |
| mapblockit: |
| IPNY_MAPBLOCK { nat->in_redir = NAT_MAPBLK; } |
| ; |
| |
| mapfrom: |
| from sobject IPNY_TO dobject |
| | from sobject '!' IPNY_TO dobject |
| { nat->in_flags |= IPN_NOTDST; } |
| | from sobject IPNY_TO '!' dobject |
| { nat->in_flags |= IPN_NOTDST; } |
| ; |
| |
| rdrfrom: |
| from sobject IPNY_TO dobject |
| | '!' from sobject IPNY_TO dobject |
| { nat->in_flags |= IPN_NOTSRC; } |
| | from '!' sobject IPNY_TO dobject |
| { nat->in_flags |= IPN_NOTSRC; } |
| ; |
| |
| from: IPNY_FROM { nat->in_flags |= IPN_FILTER; } |
| ; |
| |
| ifnames: |
| ifname |
| | ifname ',' otherifname |
| ; |
| |
| ifname: YY_STR { strncpy(nat->in_ifnames[0], $1, |
| sizeof(nat->in_ifnames[0])); |
| nat->in_ifnames[0][LIFNAMSIZ - 1] = '\0'; |
| free($1); |
| } |
| ; |
| |
| otherifname: |
| YY_STR { strncpy(nat->in_ifnames[1], $1, |
| sizeof(nat->in_ifnames[1])); |
| nat->in_ifnames[1][LIFNAMSIZ - 1] = '\0'; |
| free($1); |
| } |
| ; |
| |
| mapport: |
| IPNY_PORTMAP tcpudp portpair |
| { nat->in_spmin = $3.p1; |
| nat->in_spmax = $3.p2; |
| } |
| | IPNY_PORTMAP portpair tcpudp |
| { nat->in_spmin = $2.p1; |
| nat->in_spmax = $2.p2; |
| } |
| | IPNY_PORTMAP tcpudp IPNY_AUTO |
| { nat->in_flags |= IPN_AUTOPORTMAP; |
| nat->in_spmin = 1024; |
| nat->in_spmax = 65535; |
| } |
| | IPNY_ICMPIDMAP YY_STR portpair |
| { if (strcmp($2, "icmp") != 0) { |
| yyerror("icmpidmap not followed by icmp"); |
| } |
| free($2); |
| if ($3.p1 < 0 || $3.p1 > 65535) |
| yyerror("invalid ICMP Id number"); |
| if ($3.p2 < 0 || $3.p2 > 65535) |
| yyerror("invalid ICMP Id number"); |
| nat->in_pr[0] = IPPROTO_ICMP; |
| nat->in_pr[1] = IPPROTO_ICMP; |
| nat->in_flags = IPN_ICMPQUERY; |
| nat->in_spmin = $3.p1; |
| nat->in_spmax = $3.p2; |
| } |
| ; |
| |
| sobject: |
| saddr |
| | saddr port portstuff { nat->in_osport = $3.p1; |
| nat->in_stop = $3.p2; |
| nat->in_scmp = $3.pc; } |
| ; |
| |
| saddr: addr { nat->in_osrcatype = $1.t; |
| bcopy(&$1.a, |
| &nat->in_osrc.na_addr[0], |
| sizeof($1.a)); |
| bcopy(&$1.m, |
| &nat->in_osrc.na_addr[1], |
| sizeof($1.m)); |
| } |
| ; |
| |
| dobject: |
| daddr |
| | daddr port portstuff { nat->in_odport = $3.p1; |
| nat->in_dtop = $3.p2; |
| nat->in_dcmp = $3.pc; |
| } |
| ; |
| |
| daddr: addr { nat->in_odstatype = $1.t; |
| bcopy(&$1.a, |
| &nat->in_odst.na_addr[0], |
| sizeof($1.a)); |
| bcopy(&$1.m, |
| &nat->in_odst.na_addr[1], |
| sizeof($1.m)); |
| } |
| ; |
| |
| addr: IPNY_ANY { bzero(&$$.a, sizeof($$.a)); |
| bzero(&$$.m, sizeof($$.a)); |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| } |
| | hostname { $$.a.in4 = $1; |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| $$.m.in4.s_addr = 0xffffffff; } |
| | hostname '/' YY_NUMBER { $$.a.in4 = $1; |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| ntomask(4, $3, &$$.m.in4.s_addr); |
| $$.a.in4.s_addr &= $$.m.in4.s_addr; |
| } |
| | hostname '/' ipv4 { $$.a.in4 = $1; |
| $$.m.in4 = $3; |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| $$.a.in4.s_addr &= $$.m.in4.s_addr; |
| } |
| | hostname '/' hexnumber { $$.a.in4 = $1; |
| $$.m.in4.s_addr = htonl($3); |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| $$.a.in4.s_addr &= $$.m.in4.s_addr; |
| } |
| | hostname IPNY_MASK ipv4 { $$.a.in4 = $1; |
| $$.m.in4 = $3; |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| $$.a.in4.s_addr &= $$.m.in4.s_addr; |
| } |
| | hostname IPNY_MASK hexnumber { $$.a.in4 = $1; |
| $$.m.in4.s_addr = htonl($3); |
| $$.t = FRI_NORMAL; |
| $$.f = NA_NORMAL; |
| $$.a.in4.s_addr &= $$.m.in4.s_addr; |
| } |
| | pool '/' YY_NUMBER { $$.a.iplookupnum = $3; |
| $$.a.iplookuptype = IPLT_POOL; |
| $$.t = FRI_LOOKUP; |
| $$.f = NA_NORMAL; |
| } |
| | hash '/' YY_NUMBER { $$.a.iplookupnum = $3; |
| $$.a.iplookuptype = IPLT_HASH; |
| $$.t = FRI_LOOKUP; |
| $$.f = NA_NORMAL; |
| } |
| ; |
| |
| pool: IPNY_POOL { if (!(nat->in_flags & IPN_FILTER)) { |
| yyerror("Can only use pool with from/to rules\n"); |
| } |
| yyexpectaddr = 0; |
| yyresetdict(); |
| } |
| ; |
| |
| hash: IPNY_HASH { if (!(nat->in_flags & IPN_FILTER)) { |
| yyerror("Can only use hash with from/to rules\n"); |
| } |
| yyexpectaddr = 0; |
| yyresetdict(); |
| } |
| ; |
| |
| portstuff: |
| compare portspec { $$.pc = $1; $$.p1 = $2; } |
| | portspec range portspec { $$.pc = $2; $$.p1 = $1; $$.p2 = $3; } |
| ; |
| |
| mapoptions: |
| rr frag age mssclamp nattag setproto |
| ; |
| |
| rdroptions: |
| rr frag age sticky mssclamp rdrproxy nattag |
| ; |
| |
| nattag: | IPNY_TAG YY_STR { strncpy(nat->in_tag.ipt_tag, $2, |
| sizeof(nat->in_tag.ipt_tag)); |
| } |
| rr: | IPNY_ROUNDROBIN { nat->in_flags |= IPN_ROUNDR; } |
| ; |
| |
| frag: | IPNY_FRAG { nat->in_flags |= IPN_FRAG; } |
| ; |
| |
| age: | IPNY_AGE YY_NUMBER { nat->in_age[0] = $2; |
| nat->in_age[1] = $2; } |
| | IPNY_AGE YY_NUMBER '/' YY_NUMBER { nat->in_age[0] = $2; |
| nat->in_age[1] = $4; } |
| ; |
| |
| sticky: | IPNY_STICKY { if (!(nat->in_flags & IPN_ROUNDR) && |
| !(nat->in_flags & IPN_SPLIT)) { |
| fprintf(stderr, |
| "'sticky' for use with round-robin/IP splitting only\n"); |
| } else |
| nat->in_flags |= IPN_STICKY; |
| } |
| ; |
| |
| mssclamp: |
| | IPNY_MSSCLAMP YY_NUMBER { nat->in_mssclamp = $2; } |
| ; |
| |
| tcpudp: IPNY_TCP { setnatproto(IPPROTO_TCP); } |
| | IPNY_UDP { setnatproto(IPPROTO_UDP); } |
| | IPNY_TCPUDP { nat->in_flags |= IPN_TCPUDP; |
| nat->in_pr[0] = 0; |
| nat->in_pr[1] = 0; |
| } |
| | IPNY_TCP '/' IPNY_UDP { nat->in_flags |= IPN_TCPUDP; |
| nat->in_pr[0] = 0; |
| nat->in_pr[1] = 0; |
| } |
| ; |
| |
| rdrproxy: |
| IPNY_PROXY YY_STR |
| { strncpy(nat->in_plabel, $2, |
| sizeof(nat->in_plabel)); |
| nat->in_odport = nat->in_dpnext; |
| nat->in_dtop = nat->in_odport; |
| free($2); |
| } |
| | proxy { if (nat->in_plabel[0] != '\0') { |
| nat->in_ndport = nat->in_odport; |
| nat->in_dpmin = nat->in_odport; |
| nat->in_dpmax = nat->in_dpmin; |
| nat->in_dtop = nat->in_dpmin; |
| nat->in_dpnext = nat->in_dpmin; |
| } |
| } |
| ; |
| |
| proto: YY_NUMBER { $$ = $1; |
| if ($$ != IPPROTO_TCP && |
| $$ != IPPROTO_UDP) |
| suggest_port = 0; |
| } |
| | IPNY_TCP { $$ = IPPROTO_TCP; } |
| | IPNY_UDP { $$ = IPPROTO_UDP; } |
| | YY_STR { $$ = getproto($1); free($1); |
| if ($$ != IPPROTO_TCP && |
| $$ != IPPROTO_UDP) |
| suggest_port = 0; |
| } |
| ; |
| |
| hexnumber: |
| YY_HEX { $$ = $1; } |
| ; |
| |
| hostname: |
| YY_STR { if (gethost($1, &$$.s_addr) == -1) |
| fprintf(stderr, |
| "Unknown host '%s'\n", |
| $1); |
| free($1); |
| } |
| | YY_NUMBER { $$.s_addr = htonl($1); } |
| | ipv4 { $$.s_addr = $1.s_addr; } |
| ; |
| |
| compare: |
| '=' { $$ = FR_EQUAL; } |
| | YY_CMP_EQ { $$ = FR_EQUAL; } |
| | YY_CMP_NE { $$ = FR_NEQUAL; } |
| | YY_CMP_LT { $$ = FR_LESST; } |
| | YY_CMP_LE { $$ = FR_LESSTE; } |
| | YY_CMP_GT { $$ = FR_GREATERT; } |
| | YY_CMP_GE { $$ = FR_GREATERTE; } |
| |
| range: |
| YY_RANGE_OUT { $$ = FR_OUTRANGE; } |
| | YY_RANGE_IN { $$ = FR_INRANGE; } |
| | ':' { $$ = FR_INCRANGE; } |
| ; |
| |
| ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER |
| { if ($1 > 255 || $3 > 255 || $5 > 255 || $7 > 255) { |
| yyerror("Invalid octet string for IP address"); |
| return 0; |
| } |
| $$.s_addr = ($1 << 24) | ($3 << 16) | ($5 << 8) | $7; |
| $$.s_addr = htonl($$.s_addr); |
| } |
| ; |
| |
| %% |
| |
| |
| static wordtab_t proxies[] = { |
| { "dns", IPNY_DNS } |
| }; |
| |
| static wordtab_t dnswords[] = { |
| { "allow", IPNY_ALLOW }, |
| { "block", IPNY_DENY }, |
| { "deny", IPNY_DENY }, |
| { "drop", IPNY_DENY }, |
| { "pass", IPNY_ALLOW }, |
| |
| }; |
| |
| static wordtab_t yywords[] = { |
| { "age", IPNY_AGE }, |
| { "any", IPNY_ANY }, |
| { "auto", IPNY_AUTO }, |
| { "bimap", IPNY_BIMAP }, |
| { "config", IPNY_CONFIG }, |
| { "divert", IPNY_DIVERT }, |
| { "dst", IPNY_DST }, |
| { "encap", IPNY_ENCAP }, |
| { "frag", IPNY_FRAG }, |
| { "from", IPNY_FROM }, |
| { "hash", IPNY_HASH }, |
| { "hash-md5", IPNY_HASHMD5 }, |
| { "icmpidmap", IPNY_ICMPIDMAP }, |
| { "in", IPNY_IN }, |
| { "mask", IPNY_MASK }, |
| { "map", IPNY_MAP }, |
| { "map-block", IPNY_MAPBLOCK }, |
| { "mssclamp", IPNY_MSSCLAMP }, |
| { "netmask", IPNY_MASK }, |
| { "no", IPNY_NO }, |
| { "on", IPNY_ON }, |
| { "out", IPNY_OUT }, |
| { "pool", IPNY_POOL }, |
| { "port", IPNY_PORT }, |
| { "portmap", IPNY_PORTMAP }, |
| { "ports", IPNY_PORTS }, |
| { "proto", IPNY_PROTO }, |
| { "proxy", IPNY_PROXY }, |
| { "random", IPNY_RANDOM }, |
| { "range", IPNY_RANGE }, |
| { "rewrite", IPNY_REWRITE }, |
| { "rdr", IPNY_RDR }, |
| { "round-robin",IPNY_ROUNDROBIN }, |
| { "src", IPNY_SRC }, |
| { "sticky", IPNY_STICKY }, |
| { "tag", IPNY_TAG }, |
| { "tcp", IPNY_TCP }, |
| { "tcpudp", IPNY_TCPUDP }, |
| { "to", IPNY_TO }, |
| { "udp", IPNY_UDP }, |
| { "-", '-' }, |
| { "->", IPNY_TLATE }, |
| { "eq", YY_CMP_EQ }, |
| { "ne", YY_CMP_NE }, |
| { "lt", YY_CMP_LT }, |
| { "gt", YY_CMP_GT }, |
| { "le", YY_CMP_LE }, |
| { "ge", YY_CMP_GE }, |
| { NULL, 0 } |
| }; |
| |
| |
| int ipnat_parsefile(fd, addfunc, ioctlfunc, filename) |
| int fd; |
| addfunc_t addfunc; |
| ioctlfunc_t ioctlfunc; |
| char *filename; |
| { |
| FILE *fp = NULL; |
| char *s; |
| |
| (void) yysettab(yywords); |
| |
| s = getenv("YYDEBUG"); |
| if (s) |
| yydebug = atoi(s); |
| else |
| yydebug = 0; |
| |
| if (strcmp(filename, "-")) { |
| fp = fopen(filename, "r"); |
| if (!fp) { |
| fprintf(stderr, "fopen(%s) failed: %s\n", filename, |
| STRERROR(errno)); |
| return -1; |
| } |
| } else |
| fp = stdin; |
| |
| while (ipnat_parsesome(fd, addfunc, ioctlfunc, fp) == 1) |
| ; |
| if (fp != NULL) |
| fclose(fp); |
| return 0; |
| } |
| |
| |
| int ipnat_parsesome(fd, addfunc, ioctlfunc, fp) |
| int fd; |
| addfunc_t addfunc; |
| ioctlfunc_t ioctlfunc; |
| FILE *fp; |
| { |
| char *s; |
| int i; |
| |
| yylineNum = 1; |
| |
| natfd = fd; |
| nataddfunc = addfunc; |
| natioctlfunc = ioctlfunc; |
| |
| if (feof(fp)) |
| return 0; |
| i = fgetc(fp); |
| if (i == EOF) |
| return 0; |
| if (ungetc(i, fp) == EOF) |
| return 0; |
| if (feof(fp)) |
| return 0; |
| s = getenv("YYDEBUG"); |
| if (s) |
| yydebug = atoi(s); |
| else |
| yydebug = 0; |
| |
| yyin = fp; |
| yyparse(); |
| return 1; |
| } |
| |
| |
| static void newnatrule() |
| { |
| ipnat_t *n; |
| |
| n = calloc(1, sizeof(*n)); |
| if (n == NULL) |
| return; |
| |
| n->in_osrcatype = FRI_NONE; |
| n->in_odstatype = FRI_NONE; |
| |
| if (nat == NULL) |
| nattop = nat = n; |
| else { |
| nat->in_next = n; |
| nat = n; |
| } |
| |
| suggest_port = 0; |
| } |
| |
| |
| static void setnatproto(p) |
| int p; |
| { |
| nat->in_pr[0] = p; |
| nat->in_pr[1] = p; |
| |
| switch (p) |
| { |
| case IPPROTO_TCP : |
| nat->in_flags |= IPN_TCP; |
| nat->in_flags &= ~IPN_UDP; |
| break; |
| case IPPROTO_UDP : |
| nat->in_flags |= IPN_UDP; |
| nat->in_flags &= ~IPN_TCP; |
| break; |
| case IPPROTO_ICMP : |
| nat->in_flags &= ~IPN_TCPUDP; |
| if (!(nat->in_flags & IPN_ICMPQUERY)) { |
| nat->in_dcmp = 0; |
| nat->in_scmp = 0; |
| nat->in_dpmin = 0; |
| nat->in_dpmax = 0; |
| nat->in_dpnext = 0; |
| nat->in_spmin = 0; |
| nat->in_spmax = 0; |
| nat->in_spnext = 0; |
| } |
| break; |
| default : |
| if ((nat->in_redir & NAT_MAPBLK) == 0) { |
| nat->in_flags &= ~IPN_TCPUDP; |
| nat->in_dcmp = 0; |
| nat->in_scmp = 0; |
| nat->in_spmin = 0; |
| nat->in_spmax = 0; |
| nat->in_spnext = 0; |
| nat->in_dpmin = 0; |
| nat->in_dpmax = 0; |
| nat->in_dpnext = 0; |
| } |
| break; |
| } |
| |
| if ((nat->in_flags & (IPN_TCPUDP|IPN_FIXEDDPORT)) == IPN_FIXEDDPORT) |
| nat->in_flags &= ~IPN_FIXEDDPORT; |
| } |
| |
| |
| void ipnat_addrule(fd, ioctlfunc, ptr) |
| int fd; |
| ioctlfunc_t ioctlfunc; |
| void *ptr; |
| { |
| ioctlcmd_t add, del; |
| ipfobj_t obj; |
| ipnat_t *ipn; |
| |
| ipn = ptr; |
| bzero((char *)&obj, sizeof(obj)); |
| obj.ipfo_rev = IPFILTER_VERSION; |
| obj.ipfo_size = sizeof(ipnat_t); |
| obj.ipfo_type = IPFOBJ_IPNAT; |
| obj.ipfo_ptr = ptr; |
| add = 0; |
| del = 0; |
| |
| if ((opts & OPT_DONOTHING) != 0) |
| fd = -1; |
| |
| if (opts & OPT_ZERORULEST) { |
| add = SIOCZRLST; |
| } else if (opts & OPT_INACTIVE) { |
| add = SIOCADNAT; |
| del = SIOCRMNAT; |
| } else { |
| add = SIOCADNAT; |
| del = SIOCRMNAT; |
| } |
| |
| if ((opts & OPT_VERBOSE) != 0) |
| printnat(ipn, opts); |
| |
| if (opts & OPT_DEBUG) |
| binprint(ipn, sizeof(*ipn)); |
| |
| if ((opts & OPT_ZERORULEST) != 0) { |
| if ((*ioctlfunc)(fd, add, (void *)&obj) == -1) { |
| if ((opts & OPT_DONOTHING) == 0) { |
| fprintf(stderr, "%d:", yylineNum); |
| perror("ioctl(SIOCZRLST)"); |
| } |
| } else { |
| #ifdef USE_QUAD_T |
| /* |
| printf("hits %qd bytes %qd ", |
| (long long)fr->fr_hits, |
| (long long)fr->fr_bytes); |
| */ |
| #else |
| /* |
| printf("hits %ld bytes %ld ", |
| fr->fr_hits, fr->fr_bytes); |
| */ |
| #endif |
| printnat(ipn, opts); |
| } |
| } else if ((opts & OPT_REMOVE) != 0) { |
| if ((*ioctlfunc)(fd, del, (void *)&obj) == -1) { |
| if ((opts & OPT_DONOTHING) == 0) { |
| fprintf(stderr, "%d:", yylineNum); |
| perror("ioctl(delete nat rule)"); |
| } |
| } |
| } else { |
| if ((*ioctlfunc)(fd, add, (void *)&obj) == -1) { |
| if ((opts & OPT_DONOTHING) == 0) { |
| fprintf(stderr, "%d:", yylineNum); |
| perror("ioctl(add/insert nat rule)"); |
| } |
| } |
| } |
| } |
| |
| |
| void setmapifnames() |
| { |
| if (nat->in_ifnames[1][0] == '\0') |
| strncpy(nat->in_ifnames[1], nat->in_ifnames[0], |
| sizeof(nat->in_ifnames[0])); |
| |
| if ((suggest_port == 1) && (nat->in_flags & IPN_TCPUDP) == 0) |
| nat->in_flags |= IPN_TCPUDP; |
| |
| if ((nat->in_flags & IPN_TCPUDP) == 0) |
| setnatproto(nat->in_pr[1]); |
| |
| if (((nat->in_redir & NAT_MAPBLK) != 0) || |
| ((nat->in_flags & IPN_AUTOPORTMAP) != 0)) |
| nat_setgroupmap(nat); |
| } |
| |
| |
| void setrdrifnames() |
| { |
| if ((suggest_port == 1) && (nat->in_flags & IPN_TCPUDP) == 0) |
| nat->in_flags |= IPN_TCPUDP; |
| |
| if ((nat->in_pr[0] == 0) && ((nat->in_flags & IPN_TCPUDP) == 0) && |
| (nat->in_dpmin != 0 || nat->in_dpmax != 0 || nat->in_dpnext != 0)) |
| setnatproto(IPPROTO_TCP); |
| |
| if (nat->in_ifnames[1][0] == '\0') |
| strncpy(nat->in_ifnames[1], nat->in_ifnames[0], |
| sizeof(nat->in_ifnames[0])); |
| } |
| |
| |
| static void proxy_setconfig(proxy) |
| int proxy; |
| { |
| if (proxy == IPNY_DNS) { |
| yysetfixeddict(dnswords); |
| } |
| } |
| |
| |
| static void proxy_unsetconfig() |
| { |
| yyresetdict(); |
| } |
| |
| |
| static namelist_t *proxy_dns_add_pass(prefix, name) |
| char *prefix, *name; |
| { |
| namelist_t *n; |
| |
| n = calloc(1, sizeof(*n)); |
| if (n != NULL) { |
| if (prefix == NULL || *prefix == '\0') { |
| n->na_name = strdup(name); |
| } else { |
| n->na_name = malloc(strlen(name) + strlen(prefix) + 1); |
| strcpy(n->na_name, prefix); |
| strcat(n->na_name, name); |
| } |
| } |
| return n; |
| } |
| |
| |
| static namelist_t *proxy_dns_add_block(prefix, name) |
| char *prefix, *name; |
| { |
| namelist_t *n; |
| |
| n = calloc(1, sizeof(*n)); |
| if (n != NULL) { |
| if (prefix == NULL || *prefix == '\0') { |
| n->na_name = strdup(name); |
| } else { |
| n->na_name = malloc(strlen(name) + strlen(prefix) + 1); |
| strcpy(n->na_name, prefix); |
| strcat(n->na_name, name); |
| } |
| n->na_value = 1; |
| } |
| return n; |
| } |
| |
| |
| static void proxy_addconfig(proxy, proto, conf, list) |
| char *proxy, *conf; |
| int proto; |
| namelist_t *list; |
| { |
| proxyrule_t *pr; |
| |
| pr = calloc(1, sizeof(*pr)); |
| if (pr != NULL) { |
| pr->pr_proto = proto; |
| pr->pr_proxy = proxy; |
| pr->pr_conf = conf; |
| pr->pr_names = list; |
| pr->pr_next = prules; |
| prules = pr; |
| } |
| } |
| |
| |
| static void proxy_loadrules(fd, ioctlfunc, rules) |
| int fd; |
| ioctlfunc_t ioctlfunc; |
| proxyrule_t *rules; |
| { |
| proxyrule_t *pr; |
| |
| while ((pr = rules) != NULL) { |
| proxy_loadconfig(fd, ioctlfunc, pr->pr_proxy, pr->pr_proto, |
| pr->pr_conf, pr->pr_names); |
| rules = pr->pr_next; |
| free(pr->pr_conf); |
| free(pr); |
| } |
| } |
| |
| |
| static void proxy_loadconfig(fd, ioctlfunc, proxy, proto, conf, list) |
| int fd; |
| ioctlfunc_t ioctlfunc; |
| char *proxy, *conf; |
| int proto; |
| namelist_t *list; |
| { |
| namelist_t *na; |
| ipfobj_t obj; |
| ap_ctl_t pcmd; |
| |
| obj.ipfo_rev = IPFILTER_VERSION; |
| obj.ipfo_type = IPFOBJ_PROXYCTL; |
| obj.ipfo_size = sizeof(pcmd); |
| obj.ipfo_ptr = &pcmd; |
| |
| while ((na = list) != NULL) { |
| if ((opts & OPT_REMOVE) != 0) |
| pcmd.apc_cmd = APC_CMD_DEL; |
| else |
| pcmd.apc_cmd = APC_CMD_ADD; |
| pcmd.apc_dsize = strlen(na->na_name) + 1; |
| pcmd.apc_data = na->na_name; |
| pcmd.apc_arg = na->na_value; |
| pcmd.apc_p = proto; |
| |
| strncpy(pcmd.apc_label, proxy, APR_LABELLEN); |
| pcmd.apc_label[APR_LABELLEN - 1] = '\0'; |
| |
| strncpy(pcmd.apc_config, conf, APR_LABELLEN); |
| pcmd.apc_config[APR_LABELLEN - 1] = '\0'; |
| |
| if ((*ioctlfunc)(fd, SIOCPROXY, (void *)&obj) == -1) { |
| if ((opts & OPT_DONOTHING) == 0) { |
| fprintf(stderr, "%d:", yylineNum); |
| perror("ioctl(add/remm proxy rule)"); |
| } |
| } |
| |
| list = na->na_next; |
| free(na->na_name); |
| free(na); |
| } |
| } |