#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <net/if.h>
#ifdef IFMEDIA_DEBUG
#include <net/if_var.h>
#endif
#include <net/if_media.h>
#ifdef IFMEDIA_DEBUG
int ifmedia_debug = 0;
static void ifmedia_printword(uint64_t);
#endif
struct mutex ifmedia_mtx = MUTEX_INITIALIZER(IPL_NET);
struct ifmedia_entry *ifmedia_get(struct ifmedia *, uint64_t, uint64_t);
void
ifmedia_init(struct ifmedia *ifm, uint64_t dontcare_mask,
ifm_change_cb_t change_callback, ifm_stat_cb_t status_callback)
{
TAILQ_INIT(&ifm->ifm_list);
ifm->ifm_nwords = 0;
ifm->ifm_cur = NULL;
ifm->ifm_media = 0;
ifm->ifm_mask = dontcare_mask;
ifm->ifm_change_cb = change_callback;
ifm->ifm_status_cb = status_callback;
}
void
ifmedia_add(struct ifmedia *ifm, uint64_t mword, int data, void *aux)
{
struct ifmedia_entry *entry;
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
if (ifm == NULL) {
printf("%s: null ifm\n", __func__);
return;
}
printf("%s: adding entry for ", __func__);
ifmedia_printword(mword);
}
#endif
entry = malloc(sizeof(*entry), M_IFADDR, M_NOWAIT);
if (entry == NULL)
panic("ifmedia_add: can't malloc entry");
entry->ifm_media = mword;
entry->ifm_data = data;
entry->ifm_aux = aux;
mtx_enter(&ifmedia_mtx);
TAILQ_INSERT_TAIL(&ifm->ifm_list, entry, ifm_list);
ifm->ifm_nwords++;
mtx_leave(&ifmedia_mtx);
}
void
ifmedia_set(struct ifmedia *ifm, uint64_t target)
{
struct ifmedia_entry *match;
mtx_enter(&ifmedia_mtx);
match = ifmedia_get(ifm, target, ifm->ifm_mask);
if (match == NULL) {
printf("%s: no match for 0x%llx/0x%llx\n", __func__,
target, ~ifm->ifm_mask);
target = (target & IFM_NMASK) | IFM_NONE;
match = ifmedia_get(ifm, target, ifm->ifm_mask);
if (match == NULL) {
mtx_leave(&ifmedia_mtx);
ifmedia_add(ifm, target, 0, NULL);
mtx_enter(&ifmedia_mtx);
match = ifmedia_get(ifm, target, ifm->ifm_mask);
if (match == NULL) {
mtx_leave(&ifmedia_mtx);
panic("ifmedia_set failed");
}
}
}
ifm->ifm_cur = match;
mtx_leave(&ifmedia_mtx);
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("%s: target ", __func__);
ifmedia_printword(target);
printf("%s: setting to ", __func__);
ifmedia_printword(ifm->ifm_cur->ifm_media);
}
#endif
}
int
ifmedia_ioctl(struct ifnet *ifp, struct ifreq *ifr, struct ifmedia *ifm,
u_long cmd)
{
struct ifmedia_entry *match;
int error = 0;
if (ifp == NULL || ifr == NULL || ifm == NULL)
return (EINVAL);
switch (cmd) {
case SIOCSIFMEDIA:
{
struct ifmedia_entry *oldentry;
uint64_t oldmedia;
uint64_t newmedia = ifr->ifr_media;
mtx_enter(&ifmedia_mtx);
match = ifmedia_get(ifm, newmedia, ifm->ifm_mask);
if (match == NULL) {
mtx_leave(&ifmedia_mtx);
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("%s: no media found for 0x%llx\n",
__func__, newmedia);
}
#endif
return (EINVAL);
}
if ((IFM_SUBTYPE(newmedia) != IFM_AUTO) &&
(newmedia == ifm->ifm_media) &&
(match == ifm->ifm_cur)) {
mtx_leave(&ifmedia_mtx);
return (0);
}
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("%s: switching %s to ", __func__,
ifp->if_xname);
ifmedia_printword(match->ifm_media);
}
#endif
oldentry = ifm->ifm_cur;
oldmedia = ifm->ifm_media;
ifm->ifm_cur = match;
ifm->ifm_media = newmedia;
mtx_leave(&ifmedia_mtx);
error = (*ifm->ifm_change_cb)(ifp);
if (error && error != ENETRESET) {
mtx_enter(&ifmedia_mtx);
if (ifm->ifm_cur == match) {
ifm->ifm_cur = oldentry;
ifm->ifm_media = oldmedia;
}
mtx_leave(&ifmedia_mtx);
}
break;
}
case SIOCGIFMEDIA:
{
struct ifmediareq *ifmr = (struct ifmediareq *) ifr;
size_t nwords;
if (ifmr->ifm_count < 0)
return (EINVAL);
mtx_enter(&ifmedia_mtx);
ifmr->ifm_active = ifmr->ifm_current = ifm->ifm_cur ?
ifm->ifm_cur->ifm_media : IFM_NONE;
ifmr->ifm_mask = ifm->ifm_mask;
ifmr->ifm_status = 0;
mtx_leave(&ifmedia_mtx);
(*ifm->ifm_status_cb)(ifp, ifmr);
mtx_enter(&ifmedia_mtx);
nwords = ifm->ifm_nwords;
mtx_leave(&ifmedia_mtx);
if (ifmr->ifm_count == 0) {
ifmr->ifm_count = nwords;
return (0);
}
while (1) {
struct ifmedia_entry *ife;
uint64_t *kptr;
size_t ksiz;
kptr = mallocarray(nwords, sizeof(*kptr), M_TEMP,
M_WAITOK | M_ZERO);
ksiz = nwords * sizeof(*kptr);
mtx_enter(&ifmedia_mtx);
if (nwords < ifm->ifm_nwords) {
nwords = ifm->ifm_nwords;
mtx_leave(&ifmedia_mtx);
free(kptr, M_TEMP, ksiz);
continue;
}
if (ifmr->ifm_count < ifm->ifm_nwords) {
nwords = ifm->ifm_nwords;
mtx_leave(&ifmedia_mtx);
free(kptr, M_TEMP, ksiz);
error = E2BIG;
break;
}
nwords = 0;
TAILQ_FOREACH(ife, &ifm->ifm_list, ifm_list) {
kptr[nwords++] = ife->ifm_media;
}
KASSERT(nwords == ifm->ifm_nwords);
mtx_leave(&ifmedia_mtx);
error = copyout(kptr, ifmr->ifm_ulist,
nwords * sizeof(*kptr));
free(kptr, M_TEMP, ksiz);
break;
}
ifmr->ifm_count = nwords;
break;
}
default:
return (ENOTTY);
}
return (error);
}
int
ifmedia_match(struct ifmedia *ifm, uint64_t target, uint64_t mask)
{
struct ifmedia_entry *match;
mtx_enter(&ifmedia_mtx);
match = ifmedia_get(ifm, target, mask);
mtx_leave(&ifmedia_mtx);
return (match != NULL);
}
struct ifmedia_entry *
ifmedia_get(struct ifmedia *ifm, uint64_t target, uint64_t mask)
{
struct ifmedia_entry *match, *next;
MUTEX_ASSERT_LOCKED(&ifmedia_mtx);
match = NULL;
mask = ~mask;
TAILQ_FOREACH(next, &ifm->ifm_list, ifm_list) {
if ((next->ifm_media & mask) == (target & mask)) {
if (match) {
#if defined(IFMEDIA_DEBUG) || defined(DIAGNOSTIC)
printf("%s: multiple match for 0x%llx/0x%llx, "
"selected instance %lld\n", __func__,
target, mask, IFM_INST(match->ifm_media));
#endif
break;
}
match = next;
}
}
return (match);
}
void
ifmedia_delete_instance(struct ifmedia *ifm, uint64_t inst)
{
struct ifmedia_entry *ife, *nife;
struct ifmedia_list ifmlist;
TAILQ_INIT(&ifmlist);
mtx_enter(&ifmedia_mtx);
TAILQ_FOREACH_SAFE(ife, &ifm->ifm_list, ifm_list, nife) {
if (inst == IFM_INST_ANY ||
inst == IFM_INST(ife->ifm_media)) {
TAILQ_REMOVE(&ifm->ifm_list, ife, ifm_list);
ifm->ifm_nwords--;
TAILQ_INSERT_TAIL(&ifmlist, ife, ifm_list);
}
}
ifm->ifm_cur = NULL;
mtx_leave(&ifmedia_mtx);
while((ife = TAILQ_FIRST(&ifmlist)) != NULL) {
TAILQ_REMOVE(&ifmlist, ife, ifm_list);
free(ife, M_IFADDR, sizeof *ife);
}
}
const struct ifmedia_baudrate ifmedia_baudrate_descriptions[] =
IFM_BAUDRATE_DESCRIPTIONS;
uint64_t
ifmedia_baudrate(uint64_t mword)
{
int i;
for (i = 0; ifmedia_baudrate_descriptions[i].ifmb_word != 0; i++) {
if ((mword & (IFM_NMASK|IFM_TMASK)) ==
ifmedia_baudrate_descriptions[i].ifmb_word)
return (ifmedia_baudrate_descriptions[i].ifmb_baudrate);
}
return (0);
}
#ifdef IFMEDIA_DEBUG
const struct ifmedia_description ifm_type_descriptions[] =
IFM_TYPE_DESCRIPTIONS;
const struct ifmedia_description ifm_subtype_descriptions[] =
IFM_SUBTYPE_DESCRIPTIONS;
const struct ifmedia_description ifm_option_descriptions[] =
IFM_OPTION_DESCRIPTIONS;
static void
ifmedia_printword(uint64_t ifmw)
{
const struct ifmedia_description *desc;
uint64_t seen_option = 0;
for (desc = ifm_type_descriptions; desc->ifmt_string != NULL;
desc++) {
if (IFM_TYPE(ifmw) == desc->ifmt_word)
break;
}
if (desc->ifmt_string == NULL)
printf("<unknown type> ");
else
printf("%s ", desc->ifmt_string);
for (desc = ifm_subtype_descriptions; desc->ifmt_string != NULL;
desc++) {
if (IFM_TYPE_MATCH(desc->ifmt_word, ifmw) &&
IFM_SUBTYPE(desc->ifmt_word) == IFM_SUBTYPE(ifmw))
break;
}
if (desc->ifmt_string == NULL)
printf("<unknown subtype>");
else
printf("%s", desc->ifmt_string);
for (desc = ifm_option_descriptions; desc->ifmt_string != NULL;
desc++) {
if (IFM_TYPE_MATCH(desc->ifmt_word, ifmw) &&
(ifmw & desc->ifmt_word) != 0 &&
(seen_option & IFM_OPTIONS(desc->ifmt_word)) == 0) {
if (seen_option == 0)
printf(" <");
printf("%s%s", seen_option ? "," : "",
desc->ifmt_string);
seen_option |= IFM_OPTIONS(desc->ifmt_word);
}
}
printf("%s\n", seen_option ? ">" : "");
}
#endif