1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
/*******************************************************************************
LLDP Agent Daemon (LLDPAD) Software
Copyright(c) 2007-2012 Intel Corporation.
This program is free software; you can redistribute it and/or modify it
under the terms and conditions of the GNU General Public License,
version 2, as published by the Free Software Foundation.
This program is distributed in the hope 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.,
51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
The full GNU General Public License is included in this distribution in
the file called "COPYING".
Contact Information:
open-lldp Mailing List <lldp-devel@open-lldp.org>
*******************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <linux/if_packet.h>
#include <linux/pkt_sched.h>
#include <net/if.h>
#include <errno.h>
#include "eloop.h"
#include "ports.h"
#include "messages.h"
#include "l2_packet.h"
#include "lldp_util.h"
#include "dcb_types.h"
#include "lldp/states.h"
#include "lldp_dcbx_nl.h"
struct l2_packet_data {
int fd;
char ifname[IFNAMSIZ + 1];
int ifindex;
u8 perm_mac_addr[ETH_ALEN];
u8 curr_mac_addr[ETH_ALEN];
u8 san_mac_addr[ETH_ALEN];
u8 remote_mac_addr[ETH_ALEN];
void (*rx_callback)(void *ctx, int ifindex,
const u8 *buf, size_t len);
void *rx_callback_ctx;
int l2_hdr; /* whether to include layer 2 (Ethernet) header data
* buffers */
};
int l2_packet_get_own_src_addr(struct l2_packet_data *l2, u8 *addr)
{
if (is_valid_mac(l2->san_mac_addr))
memcpy(addr, l2->san_mac_addr, ETH_ALEN);
else {
/* get an appropriate src MAC to use if the port is
* part of a bond.
*/
struct port *bond_port = porthead;
while (bond_port != NULL) {
if (bond_port->bond_master
&& get_src_mac_from_bond(bond_port, l2->ifname,
addr))
return 0;
bond_port = bond_port->next;
}
memcpy(addr, l2->curr_mac_addr, ETH_ALEN);
}
return 0;
}
/*
* Extracts the remote peer's MAC address from the rx frame and
* puts it in the l2_packet_data
*/
void get_remote_peer_mac_addr(struct port *port, struct lldp_agent *agent)
{
int offset = ETH_ALEN; /* points to remote MAC address in RX frame */
memcpy(port->l2->remote_mac_addr, &agent->rx.framein[offset], ETH_ALEN);
}
void l2_packet_get_remote_addr(struct l2_packet_data *l2, u8 *addr)
{
memcpy(addr, l2->remote_mac_addr, ETH_ALEN);
}
int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
{
memcpy(addr, l2->perm_mac_addr, ETH_ALEN);
return 0;
}
int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
const u8 *buf, size_t len)
{
int ret;
if (l2 == NULL)
return -1;
if (l2->l2_hdr) {
ret = send(l2->fd, buf, len, 0);
if (ret < 0)
perror("l2_packet_send - send");
} else {
struct sockaddr_ll ll;
memset(&ll, 0, sizeof(ll));
ll.sll_family = AF_PACKET;
ll.sll_ifindex = l2->ifindex;
ll.sll_protocol = htons(proto);
ll.sll_halen = ETH_ALEN;
memcpy(ll.sll_addr, dst_addr, ETH_ALEN);
ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll,
sizeof(ll));
if (ret < 0)
perror("l2_packet_send - sendto");
}
return ret;
}
static void l2_packet_receive(int sock, void *eloop_ctx, UNUSED void *sock_ctx)
{
struct l2_packet_data *l2 = eloop_ctx;
u8 buf[2300];
int res;
struct sockaddr_ll ll;
socklen_t fromlen;
memset(&ll, 0, sizeof(ll));
fromlen = sizeof(ll);
res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &ll,
&fromlen);
if (res < 0) {
LLDPAD_INFO("receive if %s ERROR = %d\n", l2->ifname, errno);
if (errno != ENETDOWN)
perror("l2_packet_receive - recvfrom");
return;
}
l2->rx_callback(l2->rx_callback_ctx, ll.sll_ifindex, buf, res);
}
struct l2_packet_data * l2_packet_init(
const char *ifname, UNUSED const u8 *own_addr, unsigned short protocol,
void (*rx_callback)(void *ctx, int ifindex,
const u8 *buf, size_t len),
void *rx_callback_ctx, int l2_hdr)
{
struct l2_packet_data *l2;
struct ifreq ifr;
struct sockaddr_ll ll;
l2 = malloc(sizeof(struct l2_packet_data));
if (l2 == NULL)
return NULL;
memset(l2, 0, sizeof(*l2));
STRNCPY_TERMINATED(l2->ifname, ifname, sizeof(l2->ifname));
l2->rx_callback = rx_callback;
l2->rx_callback_ctx = rx_callback_ctx;
l2->l2_hdr = l2_hdr;
l2->fd = socket(PF_PACKET, l2_hdr ? SOCK_RAW : SOCK_DGRAM,
htons(protocol));
if (l2->fd < 0) {
perror("socket(PF_PACKET)");
free(l2);
return NULL;
}
STRNCPY_TERMINATED(ifr.ifr_name, l2->ifname, sizeof(ifr.ifr_name));
if (ioctl(l2->fd, SIOCGIFINDEX, &ifr) < 0) {
perror("ioctl[SIOCGIFINDEX]");
close(l2->fd);
free(l2);
return NULL;
}
l2->ifindex = ifr.ifr_ifindex;
memset(&ll, 0, sizeof(ll));
ll.sll_family = PF_PACKET;
ll.sll_ifindex = ifr.ifr_ifindex;
ll.sll_protocol = htons(protocol);
if (bind(l2->fd, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
perror("bind[PF_PACKET]");
close(l2->fd);
free(l2);
return NULL;
}
/* current hw address */
if (ioctl(l2->fd, SIOCGIFHWADDR, &ifr) < 0) {
perror("ioctl[SIOCGIFHWADDR]");
close(l2->fd);
free(l2);
return NULL;
}
memcpy(l2->curr_mac_addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
if (get_perm_hwaddr(ifname, l2->perm_mac_addr, l2->san_mac_addr) != 0) {
memcpy(l2->perm_mac_addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
memset(l2->san_mac_addr, 0xff, ETH_ALEN);
}
LLDPAD_DBG("%s mac:" MACSTR " perm:" MACSTR " san:" MACSTR "\n",
ifname, MAC2STR(l2->curr_mac_addr),
MAC2STR(l2->perm_mac_addr), MAC2STR(l2->san_mac_addr));
struct packet_mreq mr;
memset(&mr, 0, sizeof(mr));
mr.mr_ifindex = l2->ifindex;
mr.mr_alen = ETH_ALEN;
memcpy(mr.mr_address, &nearest_bridge, ETH_ALEN);
mr.mr_type = PACKET_MR_MULTICAST;
if (setsockopt(l2->fd, SOL_PACKET, PACKET_ADD_MEMBERSHIP, &mr,
sizeof(mr)) < 0) {
perror("setsockopt nearest_bridge");
close(l2->fd);
free(l2);
return NULL;
}
memcpy(mr.mr_address, &nearest_customer_bridge, ETH_ALEN);
if (setsockopt(l2->fd, SOL_PACKET, PACKET_ADD_MEMBERSHIP, &mr,
sizeof(mr)) < 0)
perror("setsockopt nearest_customer_bridge");
memcpy(mr.mr_address, &nearest_nontpmr_bridge, ETH_ALEN);
if (setsockopt(l2->fd, SOL_PACKET, PACKET_ADD_MEMBERSHIP, &mr,
sizeof(mr)) < 0)
perror("setsockopt nearest_nontpmr_bridge");
int option = 1;
int option_size = sizeof(option);
if (setsockopt(l2->fd, SOL_PACKET, PACKET_ORIGDEV,
&option, option_size) < 0) {
perror("setsockopt SOL_PACKET");
close(l2->fd);
free(l2);
return NULL;
}
option = TC_PRIO_CONTROL;
if ( setsockopt(l2->fd, SOL_SOCKET, SO_PRIORITY, &option,
sizeof(option_size)) < 0) {
perror("setsockopt SOL_PRIORITY");
close(l2->fd);
free(l2);
return NULL;
}
LLDPAD_INFO("%s MAC address is " MACSTR "\n",
ifname, MAC2STR(l2->perm_mac_addr));
eloop_register_read_sock(l2->fd, l2_packet_receive, l2, NULL);
return l2;
}
void l2_packet_deinit(struct l2_packet_data *l2)
{
if (l2 == NULL)
return;
if (l2->fd >= 0) {
eloop_unregister_read_sock(l2->fd);
close(l2->fd);
}
free(l2);
}
|