/*
* Copyright (c) 2010 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
mutex_enter(&handovermtx);
/*
* If handover is in progress, wait for it to finish and complete
* attach after that. Otherwise record ourselves.
*/
while (handover) {
storeattach = false;
cv_wait(&handovercv, &handovermtx);
}
if (didhand == false) {
/* atomically remove all */
for (lag = TAILQ_FIRST(&lagdrvs); lag; lag = lag_next) {
lag_next = TAILQ_NEXT(lag, lag_entries);
if (lag->lag_ifp == ifp) {
TAILQ_REMOVE(&lagdrvs, lag, lag_entries);
TAILQ_INSERT_HEAD(&rmlist, lag, lag_entries);
}
}
mutex_exit(&handovermtx);
while ((lag = TAILQ_FIRST(&rmlist)) != NULL) {
TAILQ_REMOVE(&rmlist, lag, lag_entries);
kmem_free(lag, sizeof(*lag));
}
} else {
mutex_exit(&handovermtx);
KASSERT(bpf_ops != &bpf_ops_stub); /* revisit when unloadable */
bpf_ops->bpf_detach(ifp);
}
}
static void
bpf_stub_null(void)
{
}
static void
bpf_stub_warn(void)
{
#ifdef DEBUG
panic("bpf method called without attached bpf_if");
#endif
#ifdef DIAGNOSTIC
printf("bpf method called without attached bpf_if\n");
#endif
}
/*
* Party's over, prepare for handover.
* It needs to happen *before* bpf_ops is set to make it atomic
* to callers (see also stub implementations, which wait if
* called during handover). The likelyhood of seeing a full
* attach-detach *during* handover comes close to astronomical,
* but handle it anyway since it's relatively easy.
*/
void
bpf_ops_handover_enter(struct bpf_ops *newops)
{
struct laglist *lag;