paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * ipforward value get function for solaris. |
| 3 | * Copyright (C) 1997 Kunihiro Ishiguro |
| 4 | * |
| 5 | * This file is part of GNU Zebra. |
| 6 | * |
| 7 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2, or (at your option) any |
| 10 | * later version. |
| 11 | * |
| 12 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 19 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 20 | * 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #include <zebra.h> |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 24 | #include "log.h" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 25 | #include "prefix.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 26 | |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 27 | #include "privs.h" |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 28 | #include "zebra/ipforward.h" |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 29 | |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 30 | /* |
| 31 | ** Solaris should define IP_DEV_NAME in <inet/ip.h>, but we'll save |
| 32 | ** configure.in changes for another day. We can use the same device |
| 33 | ** for both IPv4 and IPv6. |
| 34 | */ |
| 35 | /* #include <inet/ip.h> */ |
| 36 | #ifndef IP_DEV_NAME |
| 37 | #define IP_DEV_NAME "/dev/ip" |
| 38 | #endif |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 39 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 40 | |
| 41 | extern struct zebra_privs_t zserv_privs; |
| 42 | |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 43 | /* This is a limited ndd style function that operates one integer |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 44 | ** value only. Errors return -1. ND_SET commands return 0 on |
| 45 | ** success. ND_GET commands return the value on success (which could |
| 46 | ** be -1 and be confused for an error). The parameter is the string |
| 47 | ** name of the parameter being referenced. |
| 48 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 50 | static int |
| 51 | solaris_nd(const int cmd, const char* parameter, const int value) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 52 | { |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 53 | #define ND_BUFFER_SIZE 1024 |
| 54 | int fd; |
| 55 | char nd_buf[ND_BUFFER_SIZE]; |
| 56 | struct strioctl strioctl; |
| 57 | const char* device = IP_DEV_NAME; |
| 58 | int retval; |
| 59 | memset(nd_buf, '\0', ND_BUFFER_SIZE); |
| 60 | /* |
| 61 | ** ND_SET takes a NULL delimited list of strings further terminated |
| 62 | ** buy a NULL. ND_GET returns a list in a similar layout, although |
| 63 | ** here we only use the first result. |
| 64 | */ |
paul | 66e9488 | 2004-05-09 17:19:24 +0000 | [diff] [blame] | 65 | if (cmd == ND_SET) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 66 | snprintf(nd_buf, ND_BUFFER_SIZE, "%s%c%d%c", parameter, '\0', value,'\0'); |
paul | 66e9488 | 2004-05-09 17:19:24 +0000 | [diff] [blame] | 67 | else if (cmd == ND_GET) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 68 | snprintf(nd_buf, ND_BUFFER_SIZE, "%s", parameter); |
paul | 66e9488 | 2004-05-09 17:19:24 +0000 | [diff] [blame] | 69 | else { |
| 70 | zlog_err("internal error - inappropriate command given to " |
| 71 | "solaris_nd()%s:%d", __FILE__, __LINE__); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 72 | return -1; |
| 73 | } |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 74 | |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 75 | strioctl.ic_cmd = cmd; |
| 76 | strioctl.ic_timout = 0; |
| 77 | strioctl.ic_len = ND_BUFFER_SIZE; |
| 78 | strioctl.ic_dp = nd_buf; |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 79 | |
| 80 | if ( zserv_privs.change (ZPRIVS_RAISE) ) |
| 81 | zlog_err ("solaris_nd: Can't raise privileges"); |
| 82 | if ((fd = open (device, O_RDWR)) < 0) |
| 83 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 84 | zlog_warn("failed to open device %s - %s", device, safe_strerror(errno)); |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 85 | if ( zserv_privs.change (ZPRIVS_LOWER) ) |
| 86 | zlog_err ("solaris_nd: Can't lower privileges"); |
| 87 | return -1; |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 88 | } |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 89 | if (ioctl (fd, I_STR, &strioctl) < 0) |
| 90 | { |
ajs | 4460e7a | 2005-01-29 17:07:40 +0000 | [diff] [blame] | 91 | int save_errno = errno; |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 92 | if ( zserv_privs.change (ZPRIVS_LOWER) ) |
| 93 | zlog_err ("solaris_nd: Can't lower privileges"); |
| 94 | close (fd); |
ajs | 4460e7a | 2005-01-29 17:07:40 +0000 | [diff] [blame] | 95 | zlog_warn("ioctl I_STR failed on device %s - %s", |
| 96 | device, safe_strerror(save_errno)); |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 97 | return -1; |
| 98 | } |
| 99 | close(fd); |
| 100 | if ( zserv_privs.change (ZPRIVS_LOWER) ) |
| 101 | zlog_err ("solaris_nd: Can't lower privileges"); |
| 102 | |
| 103 | if (cmd == ND_GET) |
| 104 | { |
| 105 | errno = 0; |
| 106 | retval = atoi(nd_buf); |
| 107 | if (errno) |
| 108 | { |
| 109 | zlog_warn("failed to convert returned value to integer - %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 110 | safe_strerror(errno)); |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 111 | retval = -1; |
| 112 | } |
| 113 | } |
| 114 | else |
| 115 | { |
| 116 | retval = 0; |
| 117 | } |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 118 | return retval; |
| 119 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 120 | |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 121 | static int |
| 122 | solaris_nd_set(const char* parameter, const int value) { |
| 123 | return solaris_nd(ND_SET, parameter, value); |
| 124 | } |
| 125 | static int |
| 126 | solaris_nd_get(const char* parameter) { |
| 127 | return solaris_nd(ND_GET, parameter, 0); |
| 128 | } |
| 129 | int |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 130 | ipforward(void) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 131 | { |
| 132 | return solaris_nd_get("ip_forwarding"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | int |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 136 | ipforward_on (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 137 | { |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 138 | (void) solaris_nd_set("ip_forwarding", 1); |
| 139 | return ipforward(); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | int |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 143 | ipforward_off (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 144 | { |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 145 | (void) solaris_nd_set("ip_forwarding", 0); |
| 146 | return ipforward(); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 147 | } |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 148 | #ifdef HAVE_IPV6 |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 149 | int ipforward_ipv6(void) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 150 | { |
paul | 66e9488 | 2004-05-09 17:19:24 +0000 | [diff] [blame] | 151 | return solaris_nd_get("ip6_forwarding"); |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 152 | } |
| 153 | int |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 154 | ipforward_ipv6_on (void) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 155 | { |
| 156 | (void) solaris_nd_set("ip6_forwarding", 1); |
| 157 | return ipforward_ipv6(); |
| 158 | } |
| 159 | int |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 160 | ipforward_ipv6_off (void) |
paul | 269c67c | 2003-05-24 22:50:31 +0000 | [diff] [blame] | 161 | { |
| 162 | (void) solaris_nd_set("ip6_forwarding", 0); |
| 163 | return ipforward_ipv6(); |
| 164 | } |
| 165 | #endif /* HAVE_IPV6 */ |