#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_media.c,v 1.54 2022/09/03 02:47:59 thorpej Exp $");
#define __IFMEDIA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/kmem.h>
#include <net/if.h>
#include <net/if_media.h>
static void ifmedia_status(struct ifmedia *, struct ifnet *,
struct ifmediareq *);
static struct ifmedia_entry *
ifmedia_match_locked(struct ifmedia *, u_int, u_int);
#ifdef IFMEDIA_DEBUG
int ifmedia_debug = 0;
static void ifmedia_printword(int);
#endif
#define IFM_L_OWNLOCK 0x01
#define IFM_L_COUNT_MASK 0x3UL
#define IFM_L_CPU_MASK ~(IFM_L_COUNT_MASK)
void
ifmedia_lock_for_legacy(struct ifmedia *ifm)
{
uintptr_t cnt = IFM_L_OWNLOCK;
uintptr_t ci;
if (mutex_tryenter(ifm->ifm_lock)) {
goto gotit;
}
kpreempt_disable();
ci = (uintptr_t)curcpu();
if ((ifm->ifm_legacy & IFM_L_CPU_MASK) == ci) {
cnt = ifm->ifm_legacy & IFM_L_COUNT_MASK;
KASSERT(cnt < IFM_L_COUNT_MASK);
cnt++;
kpreempt_enable();
goto gotit;
}
kpreempt_enable();
mutex_enter(ifm->ifm_lock);
gotit:
KASSERT(kpreempt_disabled());
ci = (uintptr_t)curcpu();
KASSERT((ci & IFM_L_CPU_MASK) == ci);
ifm->ifm_legacy = ci | cnt;
}
void
ifmedia_unlock_for_legacy(struct ifmedia *ifm)
{
uintptr_t cnt;
uintptr_t ci = (uintptr_t)curcpu();
KASSERT(kpreempt_disabled());
KASSERT((ifm->ifm_legacy & IFM_L_CPU_MASK) == ci);
cnt = ifm->ifm_legacy & IFM_L_COUNT_MASK;
KASSERT(cnt != 0);
if (cnt == IFM_L_OWNLOCK) {
ifm->ifm_legacy = IFM_L_OWNLOCK;
mutex_exit(ifm->ifm_lock);
return;
}
cnt--;
ifm->ifm_legacy = ci | cnt;
}
void
ifmedia_init_with_lock(struct ifmedia *ifm, int dontcare_mask,
ifm_change_cb_t change_callback, ifm_stat_cb_t status_callback,
kmutex_t *lock)
{
TAILQ_INIT(&ifm->ifm_list);
ifm->ifm_cur = NULL;
ifm->ifm_media = IFM_NONE;
ifm->ifm_mask = dontcare_mask;
ifm->ifm_change = change_callback;
ifm->ifm_status = status_callback;
ifm->ifm_legacy = 0;
if (lock == NULL) {
lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NET);
ifm->ifm_legacy = IFM_L_OWNLOCK;
}
ifm->ifm_lock = lock;
}
void
ifmedia_init(struct ifmedia *ifm, int dontcare_mask,
ifm_change_cb_t change_callback, ifm_stat_cb_t status_callback)
{
ifmedia_init_with_lock(ifm, dontcare_mask, change_callback,
status_callback, NULL);
}
void
ifmedia_fini(struct ifmedia *ifm)
{
ifmedia_removeall(ifm);
if (ifm->ifm_legacy) {
KASSERT(ifm->ifm_legacy == IFM_L_OWNLOCK);
mutex_obj_free(ifm->ifm_lock);
}
ifm->ifm_legacy = 0;
ifm->ifm_lock = NULL;
}
int
ifmedia_change(struct ifmedia *ifm, struct ifnet *ifp)
{
int rv;
IFMEDIA_LOCK_FOR_LEGACY(ifm);
KASSERT(ifmedia_locked(ifm));
if (ifm->ifm_change)
rv = (*ifm->ifm_change)(ifp);
else
rv = -1;
IFMEDIA_UNLOCK_FOR_LEGACY(ifm);
return rv;
}
static void
ifmedia_status(struct ifmedia *ifm, struct ifnet *ifp, struct ifmediareq *ifmr)
{
KASSERT(ifmedia_locked(ifm));
if (ifm->ifm_status == NULL)
return;
(*ifm->ifm_status)(ifp, ifmr);
}
static void
ifmedia_add_entry(struct ifmedia *ifm, int mword, int data, void *aux,
struct ifmedia_entry *entry)
{
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
if (ifm == NULL) {
printf("ifmedia_add: null ifm\n");
return;
}
printf("Adding entry for ");
ifmedia_printword(mword);
}
#endif
entry->ifm_media = mword;
entry->ifm_data = data;
entry->ifm_aux = aux;
TAILQ_INSERT_TAIL(&ifm->ifm_list, entry, ifm_list);
}
void
ifmedia_add(struct ifmedia *ifm, int mword, int data, void *aux)
{
struct ifmedia_entry *entry;
entry = kmem_zalloc(sizeof(*entry), KM_SLEEP);
ifmedia_lock(ifm);
ifmedia_add_entry(ifm, mword, data, aux, entry);
ifmedia_unlock(ifm);
}
void
ifmedia_list_add(struct ifmedia *ifm, struct ifmedia_entry *lp, int count)
{
int i;
for (i = 0; i < count; i++)
ifmedia_add(ifm, lp[i].ifm_media, lp[i].ifm_data,
lp[i].ifm_aux);
}
void
ifmedia_set(struct ifmedia *ifm, int target)
{
struct ifmedia_entry *match, *entry = NULL;
ifmedia_lock(ifm);
match = ifmedia_match_locked(ifm, target, ifm->ifm_mask);
if (match == NULL) {
printf("ifmedia_set: no match for 0x%x/0x%x\n",
target, ~ifm->ifm_mask);
target = (target & IFM_NMASK) | IFM_NONE;
match = ifmedia_match_locked(ifm, target, ifm->ifm_mask);
if (match == NULL) {
ifmedia_unlock(ifm);
entry = kmem_zalloc(sizeof(*entry), KM_SLEEP);
ifmedia_lock(ifm);
match = ifmedia_match_locked(ifm, target,
ifm->ifm_mask);
if (match == NULL) {
ifmedia_add_entry(ifm, target, 0, NULL, entry);
entry = NULL;
}
match = ifmedia_match_locked(ifm, target,
ifm->ifm_mask);
if (match == NULL)
panic("ifmedia_set failed");
}
}
ifm->ifm_cur = match;
ifmedia_unlock(ifm);
if (entry)
kmem_free(entry, sizeof(*entry));
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("ifmedia_set: target ");
ifmedia_printword(target);
printf("ifmedia_set: setting to ");
ifmedia_printword(ifm->ifm_cur->ifm_media);
}
#endif
}
static int
ifmedia_getwords(struct ifmedia * const ifm, int *words, int maxwords)
{
struct ifmedia_entry *ep;
int nwords = 0;
KASSERT(ifmedia_locked(ifm));
TAILQ_FOREACH(ep, &ifm->ifm_list, ifm_list) {
if (words != NULL && nwords < maxwords) {
words[nwords] = ep->ifm_media;
}
nwords++;
}
return nwords;
}
#define IFMEDIA_IOCTL_LOCK(ifm) \
do { \
if (ifmedia_islegacy(ifm)) \
ifmedia_lock_for_legacy(ifm); \
else \
ifmedia_lock(ifm); \
} while (0)
#define IFMEDIA_IOCTL_UNLOCK(ifm) \
do { \
if (ifmedia_islegacy(ifm)) \
ifmedia_unlock_for_legacy(ifm); \
else \
ifmedia_unlock(ifm); \
} while (0)
int
ifmedia_ioctl(struct ifnet *ifp, struct ifreq *ifr, struct ifmedia *ifm,
u_long cmd)
{
struct ifmedia_entry *match;
struct ifmediareq *ifmr = (struct ifmediareq *)ifr;
int error = 0;
if (ifp == NULL || ifr == NULL || ifm == NULL)
return EINVAL;
KERNEL_LOCK_UNLESS_IFP_MPSAFE(ifp);
switch (cmd) {
case SIOCSIFMEDIA:
{
struct ifmedia_entry *oldentry;
u_int oldmedia;
u_int newmedia = ifr->ifr_media;
IFMEDIA_IOCTL_LOCK(ifm);
match = ifmedia_match_locked(ifm, newmedia, ifm->ifm_mask);
if (match == NULL) {
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("ifmedia_ioctl: no media found for "
"0x%08x\n", newmedia);
}
#endif
IFMEDIA_IOCTL_UNLOCK(ifm);
error = EINVAL;
break;
}
if ((IFM_SUBTYPE(newmedia) != IFM_AUTO) &&
(newmedia == ifm->ifm_media) && (match == ifm->ifm_cur)) {
IFMEDIA_IOCTL_UNLOCK(ifm);
break;
}
#ifdef IFMEDIA_DEBUG
if (ifmedia_debug) {
printf("ifmedia_ioctl: switching %s to ",
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;
error = ifmedia_change(ifm, ifp);
if (error) {
ifm->ifm_cur = oldentry;
ifm->ifm_media = oldmedia;
}
IFMEDIA_IOCTL_UNLOCK(ifm);
break;
}
case SIOCGIFMEDIA:
{
int nwords1, nwords2;
if (ifmr->ifm_count < 0) {
error = EINVAL;
break;
}
IFMEDIA_IOCTL_LOCK(ifm);
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;
ifmedia_status(ifm, ifp, ifmr);
nwords1 = nwords2 = ifmedia_getwords(ifm, NULL, 0);
IFMEDIA_IOCTL_UNLOCK(ifm);
if (ifmr->ifm_count != 0) {
int maxwords = MIN(nwords1, ifmr->ifm_count);
int *kptr = kmem_zalloc(maxwords * sizeof(int),
KM_SLEEP);
ifmedia_lock(ifm);
nwords2 = ifmedia_getwords(ifm, kptr, maxwords);
ifmedia_unlock(ifm);
error = copyout(kptr, ifmr->ifm_ulist,
maxwords * sizeof(int));
if (error == 0 && nwords2 > nwords1)
error = E2BIG;
kmem_free(kptr, maxwords * sizeof(int));
}
ifmr->ifm_count = nwords2;
break;
}
default:
error = EINVAL;
break;
}
KERNEL_UNLOCK_UNLESS_IFP_MPSAFE(ifp);
return error;
}
static struct ifmedia_entry *
ifmedia_match_locked(struct ifmedia *ifm, u_int target, u_int mask)
{
struct ifmedia_entry *match, *next;
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("ifmedia_match: multiple match for "
"0x%x/0x%x, selected instance %d\n",
target, mask, IFM_INST(match->ifm_media));
#endif
break;
}
match = next;
}
}
return match;
}
struct ifmedia_entry *
ifmedia_match(struct ifmedia *ifm, u_int target, u_int mask)
{
struct ifmedia_entry *match;
ifmedia_lock(ifm);
match = ifmedia_match_locked(ifm, target, mask);
ifmedia_unlock(ifm);
return match;
}
void
ifmedia_delete_instance(struct ifmedia *ifm, u_int inst)
{
struct ifmedia_entry *ife, *nife;
TAILQ_HEAD(, ifmedia_entry) dead_entries;
TAILQ_INIT(&dead_entries);
ifmedia_lock(ifm);
TAILQ_FOREACH_SAFE(ife, &ifm->ifm_list, ifm_list, nife) {
if (inst == IFM_INST_ANY ||
inst == IFM_INST(ife->ifm_media)) {
if (ifm->ifm_cur == ife) {
ifm->ifm_cur = NULL;
ifm->ifm_media = IFM_NONE;
}
TAILQ_REMOVE(&ifm->ifm_list, ife, ifm_list);
TAILQ_INSERT_TAIL(&dead_entries, ife, ifm_list);
}
}
ifmedia_unlock(ifm);
TAILQ_FOREACH_SAFE(ife, &dead_entries, ifm_list, nife) {
TAILQ_REMOVE(&dead_entries, ife, ifm_list);
kmem_free(ife, sizeof(*ife));
}
}
void
ifmedia_removeall(struct ifmedia *ifm)
{
ifmedia_delete_instance(ifm, IFM_INST_ANY);
}
static const struct ifmedia_baudrate ifmedia_baudrate_descriptions[] =
IFM_BAUDRATE_DESCRIPTIONS;
uint64_t
ifmedia_baudrate(int mword)
{
int i;
for (i = 0; ifmedia_baudrate_descriptions[i].ifmb_word != 0; i++) {
if (IFM_TYPE_SUBTYPE_MATCH(mword,
ifmedia_baudrate_descriptions[i].ifmb_word))
return ifmedia_baudrate_descriptions[i].ifmb_baudrate;
}
return 0;
}
#ifdef IFMEDIA_DEBUG
static const struct ifmedia_description ifm_type_descriptions[] =
IFM_TYPE_DESCRIPTIONS;
static const struct ifmedia_description ifm_subtype_descriptions[] =
IFM_SUBTYPE_DESCRIPTIONS;
static const struct ifmedia_description ifm_option_descriptions[] =
IFM_OPTION_DESCRIPTIONS;
static void
ifmedia_printword(int ifmw)
{
const struct ifmedia_description *desc;
int 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