2012-03-17 21:53:10 +08:00
|
|
|
/**
|
|
|
|
* @file sk.c
|
|
|
|
* @brief Implements protocol independent socket methods.
|
|
|
|
* @note Copyright (C) 2012 Richard Cochran <richardcochran@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
#include <errno.h>
|
|
|
|
#include <linux/net_tstamp.h>
|
|
|
|
#include <linux/sockios.h>
|
2012-05-10 02:46:16 +08:00
|
|
|
#include <linux/ethtool.h>
|
2012-03-17 21:53:10 +08:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "print.h"
|
|
|
|
#include "sk.h"
|
|
|
|
|
2012-08-05 20:09:13 +08:00
|
|
|
/* globals */
|
|
|
|
|
|
|
|
int sk_tx_retries = 2, sk_prefer_layer2 = 0;
|
|
|
|
|
2012-03-17 21:53:10 +08:00
|
|
|
/* private methods */
|
|
|
|
|
|
|
|
static int hwts_init(int fd, char *device)
|
|
|
|
{
|
|
|
|
struct ifreq ifreq;
|
|
|
|
struct hwtstamp_config cfg, req;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
memset(&ifreq, 0, sizeof(ifreq));
|
|
|
|
memset(&cfg, 0, sizeof(cfg));
|
|
|
|
|
|
|
|
strncpy(ifreq.ifr_name, device, sizeof(ifreq.ifr_name));
|
|
|
|
|
|
|
|
ifreq.ifr_data = (void *) &cfg;
|
|
|
|
cfg.tx_type = HWTSTAMP_TX_ON;
|
2012-07-27 18:00:47 +08:00
|
|
|
cfg.rx_filter = sk_prefer_layer2 ?
|
|
|
|
HWTSTAMP_FILTER_PTP_V2_L2_EVENT : HWTSTAMP_FILTER_PTP_V2_EVENT;
|
2012-03-17 21:53:10 +08:00
|
|
|
|
|
|
|
req = cfg;
|
|
|
|
err = ioctl(fd, SIOCSHWTSTAMP, &ifreq);
|
|
|
|
if (err < 0)
|
|
|
|
pr_err("ioctl SIOCSHWTSTAMP failed: %m");
|
|
|
|
|
|
|
|
if (memcmp(&cfg, &req, sizeof(cfg))) {
|
|
|
|
|
|
|
|
pr_warning("driver changed our HWTSTAMP options");
|
|
|
|
pr_warning("tx_type %d not %d", cfg.tx_type, req.tx_type);
|
|
|
|
pr_warning("rx_filter %d not %d", cfg.rx_filter, req.rx_filter);
|
|
|
|
|
|
|
|
if (cfg.tx_type != HWTSTAMP_TX_ON ||
|
2012-07-27 18:00:47 +08:00
|
|
|
(cfg.rx_filter != HWTSTAMP_FILTER_ALL &&
|
|
|
|
cfg.rx_filter != HWTSTAMP_FILTER_PTP_V2_EVENT)) {
|
2012-03-17 21:53:10 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err ? errno : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* public methods */
|
|
|
|
|
|
|
|
int sk_interface_index(int fd, char *name)
|
|
|
|
{
|
|
|
|
struct ifreq ifreq;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
memset(&ifreq, 0, sizeof(ifreq));
|
|
|
|
strcpy(ifreq.ifr_name, name);
|
|
|
|
err = ioctl(fd, SIOCGIFINDEX, &ifreq);
|
|
|
|
if (err < 0) {
|
|
|
|
pr_err("ioctl SIOCGIFINDEX failed: %m");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
return ifreq.ifr_ifindex;
|
|
|
|
}
|
|
|
|
|
2012-05-10 02:46:16 +08:00
|
|
|
int sk_interface_phc(char *name, int *index)
|
|
|
|
{
|
|
|
|
#ifdef ETHTOOL_GET_TS_INFO
|
|
|
|
struct ethtool_ts_info info;
|
|
|
|
struct ifreq ifr;
|
|
|
|
int fd, err;
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
memset(&info, 0, sizeof(info));
|
|
|
|
info.cmd = ETHTOOL_GET_TS_INFO;
|
|
|
|
strcpy(ifr.ifr_name, name);
|
|
|
|
ifr.ifr_data = (char *) &info;
|
|
|
|
fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
pr_err("socket failed: %m");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ioctl(fd, SIOCETHTOOL, &ifr);
|
|
|
|
if (err < 0) {
|
|
|
|
pr_err("ioctl SIOCETHTOOL failed: %m");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
*index = info.phc_index;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-03-17 21:53:10 +08:00
|
|
|
int sk_interface_macaddr(char *name, unsigned char *mac, int len)
|
|
|
|
{
|
|
|
|
struct ifreq ifreq;
|
|
|
|
int err, fd;
|
|
|
|
|
|
|
|
memset(&ifreq, 0, sizeof(ifreq));
|
|
|
|
strcpy(ifreq.ifr_name, name);
|
|
|
|
|
|
|
|
fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
if (fd < 0) {
|
|
|
|
pr_err("socket failed: %m");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ioctl(fd, SIOCGIFHWADDR, &ifreq);
|
|
|
|
if (err < 0) {
|
|
|
|
pr_err("ioctl SIOCGIFHWADDR failed: %m");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(mac, ifreq.ifr_hwaddr.sa_data, len);
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sk_receive(int fd, void *buf, int buflen,
|
|
|
|
struct hw_timestamp *hwts, int flags)
|
|
|
|
{
|
|
|
|
char control[256];
|
|
|
|
int cnt, level, try_again, type;
|
|
|
|
struct cmsghdr *cm;
|
|
|
|
struct iovec iov = { buf, buflen };
|
|
|
|
struct msghdr msg;
|
|
|
|
struct timespec *ts = NULL;
|
|
|
|
|
|
|
|
memset(control, 0, sizeof(control));
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
msg.msg_control = control;
|
|
|
|
msg.msg_controllen = sizeof(control);
|
|
|
|
|
2012-03-21 03:16:58 +08:00
|
|
|
try_again = flags == MSG_ERRQUEUE ? sk_tx_retries : 1;
|
2012-03-17 21:53:10 +08:00
|
|
|
|
|
|
|
for ( ; try_again; try_again--) {
|
|
|
|
cnt = recvmsg(fd, &msg, flags);
|
|
|
|
if (cnt >= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (errno == EINTR) {
|
|
|
|
try_again++;
|
|
|
|
} else if (errno == EAGAIN) {
|
|
|
|
usleep(1);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-18 15:36:38 +08:00
|
|
|
if (cnt < 1) {
|
|
|
|
if (flags == MSG_ERRQUEUE)
|
|
|
|
pr_err("recvmsg tx timestamp failed: %m");
|
|
|
|
else
|
|
|
|
pr_err("recvmsg failed: %m");
|
|
|
|
}
|
|
|
|
|
2012-03-17 21:53:10 +08:00
|
|
|
for (cm = CMSG_FIRSTHDR(&msg); cm != NULL; cm = CMSG_NXTHDR(&msg, cm)) {
|
|
|
|
level = cm->cmsg_level;
|
|
|
|
type = cm->cmsg_type;
|
|
|
|
if (SOL_SOCKET == level && SO_TIMESTAMPING == type) {
|
|
|
|
if (cm->cmsg_len < sizeof(*ts) * 3) {
|
|
|
|
pr_warning("short SO_TIMESTAMPING message");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ts = (struct timespec *) CMSG_DATA(cm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ts) {
|
|
|
|
memset(&hwts->ts, 0, sizeof(hwts->ts));
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (hwts->type) {
|
|
|
|
case TS_SOFTWARE:
|
|
|
|
hwts->ts = ts[0];
|
|
|
|
break;
|
|
|
|
case TS_HARDWARE:
|
|
|
|
hwts->ts = ts[2];
|
|
|
|
break;
|
|
|
|
case TS_LEGACY_HW:
|
|
|
|
hwts->ts = ts[1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sk_timestamping_init(int fd, char *device, enum timestamp_type type)
|
|
|
|
{
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case TS_SOFTWARE:
|
|
|
|
flags = SOF_TIMESTAMPING_TX_SOFTWARE |
|
|
|
|
SOF_TIMESTAMPING_RX_SOFTWARE |
|
|
|
|
SOF_TIMESTAMPING_SOFTWARE;
|
|
|
|
break;
|
|
|
|
case TS_HARDWARE:
|
|
|
|
flags = SOF_TIMESTAMPING_TX_HARDWARE |
|
|
|
|
SOF_TIMESTAMPING_RX_HARDWARE |
|
|
|
|
SOF_TIMESTAMPING_RAW_HARDWARE;
|
|
|
|
break;
|
|
|
|
case TS_LEGACY_HW:
|
|
|
|
flags = SOF_TIMESTAMPING_TX_HARDWARE |
|
|
|
|
SOF_TIMESTAMPING_RX_HARDWARE |
|
|
|
|
SOF_TIMESTAMPING_SYS_HARDWARE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != TS_SOFTWARE && hwts_init(fd, device))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING,
|
|
|
|
&flags, sizeof(flags)) < 0) {
|
|
|
|
pr_err("ioctl SO_TIMESTAMPING failed: %m");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|