]> git.proxmox.com Git - mirror_frr.git/blame - zebra/ipforward_sysctl.c
pimd: Fix compiler warning in pim_mroute.c
[mirror_frr.git] / zebra / ipforward_sysctl.c
CommitLineData
718e3744 1/* IP forward control by sysctl function.
2 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
edd7c245 23#include "privs.h"
a1ac18c4 24#include "zebra/ipforward.h"
718e3744 25
26#ifdef NRL
27#include <netinet6/in6.h>
28#endif /* NRL */
29
30#include "log.h"
31
32#define MIB_SIZ 4
33
edd7c245 34extern struct zebra_privs_t zserv_privs;
35
718e3744 36/* IPv4 forwarding control MIB. */
37int mib[MIB_SIZ] =
38{
39 CTL_NET,
40 PF_INET,
41 IPPROTO_IP,
42 IPCTL_FORWARDING
43};
44
45int
a1ac18c4 46ipforward (void)
718e3744 47{
a5ea687e 48 size_t len;
718e3744 49 int ipforwarding = 0;
50
51 len = sizeof ipforwarding;
52 if (sysctl (mib, MIB_SIZ, &ipforwarding, &len, 0, 0) < 0)
53 {
54 zlog_warn ("Can't get ipforwarding value");
55 return -1;
56 }
57 return ipforwarding;
58}
59
60int
a1ac18c4 61ipforward_on (void)
718e3744 62{
a5ea687e 63 size_t len;
718e3744 64 int ipforwarding = 1;
65
66 len = sizeof ipforwarding;
edd7c245 67 if (zserv_privs.change(ZPRIVS_RAISE))
68 zlog (NULL, LOG_ERR, "Can't raise privileges");
69 if (sysctl (mib, MIB_SIZ, NULL, NULL, &ipforwarding, len) < 0)
718e3744 70 {
edd7c245 71 if (zserv_privs.change(ZPRIVS_LOWER))
72 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 73 zlog_warn ("Can't set ipforwarding on");
74 return -1;
75 }
edd7c245 76 if (zserv_privs.change(ZPRIVS_LOWER))
77 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 78 return ipforwarding;
79}
80
81int
a1ac18c4 82ipforward_off (void)
718e3744 83{
a5ea687e 84 size_t len;
718e3744 85 int ipforwarding = 0;
86
87 len = sizeof ipforwarding;
edd7c245 88 if (zserv_privs.change(ZPRIVS_RAISE))
89 zlog (NULL, LOG_ERR, "Can't raise privileges");
90 if (sysctl (mib, MIB_SIZ, NULL, NULL, &ipforwarding, len) < 0)
718e3744 91 {
edd7c245 92 if (zserv_privs.change(ZPRIVS_LOWER))
93 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 94 zlog_warn ("Can't set ipforwarding on");
95 return -1;
96 }
edd7c245 97 if (zserv_privs.change(ZPRIVS_LOWER))
98 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 99 return ipforwarding;
100}
101
102#ifdef HAVE_IPV6
103
104/* IPv6 forwarding control MIB. */
105int mib_ipv6[MIB_SIZ] =
106{
107 CTL_NET,
108 PF_INET6,
a4247f4b 109#if defined(KAME) || defined(NRL)
718e3744 110 IPPROTO_IPV6,
111 IPV6CTL_FORWARDING
112#else /* NOT KAME */
113 IPPROTO_IP,
114 IP6CTL_FORWARDING
115#endif /* KAME */
116};
117
118int
a1ac18c4 119ipforward_ipv6 (void)
718e3744 120{
a5ea687e 121 size_t len;
718e3744 122 int ip6forwarding = 0;
123
124 len = sizeof ip6forwarding;
edd7c245 125 if (zserv_privs.change(ZPRIVS_RAISE))
126 zlog (NULL, LOG_ERR, "Can't raise privileges");
127 if (sysctl (mib_ipv6, MIB_SIZ, &ip6forwarding, &len, 0, 0) < 0)
718e3744 128 {
edd7c245 129 if (zserv_privs.change(ZPRIVS_LOWER))
130 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 131 zlog_warn ("can't get ip6forwarding value");
132 return -1;
133 }
edd7c245 134 if (zserv_privs.change(ZPRIVS_LOWER))
135 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 136 return ip6forwarding;
137}
138
139int
a1ac18c4 140ipforward_ipv6_on (void)
718e3744 141{
a5ea687e 142 size_t len;
718e3744 143 int ip6forwarding = 1;
144
145 len = sizeof ip6forwarding;
edd7c245 146 if (zserv_privs.change(ZPRIVS_RAISE))
147 zlog (NULL, LOG_ERR, "Can't raise privileges");
148 if (sysctl (mib_ipv6, MIB_SIZ, NULL, NULL, &ip6forwarding, len) < 0)
718e3744 149 {
edd7c245 150 if (zserv_privs.change(ZPRIVS_LOWER))
151 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 152 zlog_warn ("can't get ip6forwarding value");
153 return -1;
154 }
edd7c245 155 if (zserv_privs.change(ZPRIVS_LOWER))
156 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 157 return ip6forwarding;
158}
159
160int
a1ac18c4 161ipforward_ipv6_off (void)
718e3744 162{
a5ea687e 163 size_t len;
718e3744 164 int ip6forwarding = 0;
165
166 len = sizeof ip6forwarding;
edd7c245 167 if (zserv_privs.change(ZPRIVS_RAISE))
168 zlog (NULL, LOG_ERR, "Can't raise privileges");
169 if (sysctl (mib_ipv6, MIB_SIZ, NULL, NULL, &ip6forwarding, len) < 0)
718e3744 170 {
edd7c245 171 if (zserv_privs.change(ZPRIVS_LOWER))
172 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 173 zlog_warn ("can't get ip6forwarding value");
174 return -1;
175 }
edd7c245 176 if (zserv_privs.change(ZPRIVS_LOWER))
177 zlog (NULL, LOG_ERR, "Can't lower privileges");
718e3744 178 return ip6forwarding;
179}
180#endif /* HAVE_IPV6 */