xref: /freebsd/sys/net/if_clone.c (revision 5f901c92)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
442a58907SGleb Smirnoff  * Copyright (c) 2012 Gleb Smirnoff <glebius@FreeBSD.org>
5f889d2efSBrooks Davis  * Copyright (c) 1980, 1986, 1993
6f889d2efSBrooks Davis  *	The Regents of the University of California.  All rights reserved.
7f889d2efSBrooks Davis  *
8f889d2efSBrooks Davis  * Redistribution and use in source and binary forms, with or without
9f889d2efSBrooks Davis  * modification, are permitted provided that the following conditions
10f889d2efSBrooks Davis  * are met:
11f889d2efSBrooks Davis  * 1. Redistributions of source code must retain the above copyright
12f889d2efSBrooks Davis  *    notice, this list of conditions and the following disclaimer.
13f889d2efSBrooks Davis  * 2. Redistributions in binary form must reproduce the above copyright
14f889d2efSBrooks Davis  *    notice, this list of conditions and the following disclaimer in the
15f889d2efSBrooks Davis  *    documentation and/or other materials provided with the distribution.
16fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
17f889d2efSBrooks Davis  *    may be used to endorse or promote products derived from this software
18f889d2efSBrooks Davis  *    without specific prior written permission.
19f889d2efSBrooks Davis  *
20f889d2efSBrooks Davis  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21f889d2efSBrooks Davis  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22f889d2efSBrooks Davis  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23f889d2efSBrooks Davis  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24f889d2efSBrooks Davis  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25f889d2efSBrooks Davis  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26f889d2efSBrooks Davis  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27f889d2efSBrooks Davis  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28f889d2efSBrooks Davis  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29f889d2efSBrooks Davis  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30f889d2efSBrooks Davis  * SUCH DAMAGE.
31f889d2efSBrooks Davis  *
32f889d2efSBrooks Davis  *	@(#)if.c	8.5 (Berkeley) 1/9/95
33f889d2efSBrooks Davis  * $FreeBSD$
34f889d2efSBrooks Davis  */
35f889d2efSBrooks Davis 
36f889d2efSBrooks Davis #include <sys/param.h>
37c3322cb9SGleb Smirnoff #include <sys/eventhandler.h>
38f889d2efSBrooks Davis #include <sys/malloc.h>
39434dbbb3SRuslan Ermilov #include <sys/limits.h>
40f889d2efSBrooks Davis #include <sys/lock.h>
41f889d2efSBrooks Davis #include <sys/mutex.h>
42f889d2efSBrooks Davis #include <sys/kernel.h>
43f889d2efSBrooks Davis #include <sys/systm.h>
44f889d2efSBrooks Davis #include <sys/types.h>
45f889d2efSBrooks Davis #include <sys/socket.h>
46f889d2efSBrooks Davis 
47f889d2efSBrooks Davis #include <net/if.h>
48f889d2efSBrooks Davis #include <net/if_var.h>
4976039bc8SGleb Smirnoff #include <net/if_clone.h>
50f889d2efSBrooks Davis #include <net/radix.h>
51f889d2efSBrooks Davis #include <net/route.h>
5221ca7b57SMarko Zec #include <net/vnet.h>
53f889d2efSBrooks Davis 
5442a58907SGleb Smirnoff /* Current IF_MAXUNIT expands maximum to 5 characters. */
5542a58907SGleb Smirnoff #define	IFCLOSIZ	(IFNAMSIZ - 5)
5642a58907SGleb Smirnoff 
5742a58907SGleb Smirnoff /*
5842a58907SGleb Smirnoff  * Structure describing a `cloning' interface.
5942a58907SGleb Smirnoff  *
6042a58907SGleb Smirnoff  * List of locks
6142a58907SGleb Smirnoff  * (c)		const until freeing
6242a58907SGleb Smirnoff  * (d)		driver specific data, may need external protection.
6342a58907SGleb Smirnoff  * (e)		locked by if_cloners_mtx
6442a58907SGleb Smirnoff  * (i)		locked by ifc_mtx mtx
6542a58907SGleb Smirnoff  */
6642a58907SGleb Smirnoff struct if_clone {
6742a58907SGleb Smirnoff 	char ifc_name[IFCLOSIZ];	/* (c) Name of device, e.g. `gif' */
6842a58907SGleb Smirnoff 	struct unrhdr *ifc_unrhdr;	/* (c) alloc_unr(9) header */
6942a58907SGleb Smirnoff 	int ifc_maxunit;		/* (c) maximum unit number */
7009f6ff4fSMatt Macy 	int ifc_flags;
7142a58907SGleb Smirnoff 	long ifc_refcnt;		/* (i) Reference count. */
7242a58907SGleb Smirnoff 	LIST_HEAD(, ifnet) ifc_iflist;	/* (i) List of cloned interfaces */
7342a58907SGleb Smirnoff 	struct mtx ifc_mtx;		/* Mutex to protect members. */
7442a58907SGleb Smirnoff 
7542a58907SGleb Smirnoff 	enum { SIMPLE, ADVANCED } ifc_type; /* (c) */
7642a58907SGleb Smirnoff 
7742a58907SGleb Smirnoff 	/* (c) Driver specific cloning functions.  Called with no locks held. */
7842a58907SGleb Smirnoff 	union {
7942a58907SGleb Smirnoff 		struct {	/* advanced cloner */
8042a58907SGleb Smirnoff 			ifc_match_t	*_ifc_match;
8142a58907SGleb Smirnoff 			ifc_create_t	*_ifc_create;
8242a58907SGleb Smirnoff 			ifc_destroy_t	*_ifc_destroy;
8342a58907SGleb Smirnoff 		} A;
8442a58907SGleb Smirnoff 		struct {	/* simple cloner */
8542a58907SGleb Smirnoff 			ifcs_create_t	*_ifcs_create;
8642a58907SGleb Smirnoff 			ifcs_destroy_t	*_ifcs_destroy;
8742a58907SGleb Smirnoff 			int		_ifcs_minifs;	/* minimum ifs */
8842a58907SGleb Smirnoff 
8942a58907SGleb Smirnoff 		} S;
9042a58907SGleb Smirnoff 	} U;
9142a58907SGleb Smirnoff #define	ifc_match	U.A._ifc_match
9242a58907SGleb Smirnoff #define	ifc_create	U.A._ifc_create
9342a58907SGleb Smirnoff #define	ifc_destroy	U.A._ifc_destroy
9442a58907SGleb Smirnoff #define	ifcs_create	U.S._ifcs_create
9542a58907SGleb Smirnoff #define	ifcs_destroy	U.S._ifcs_destroy
9642a58907SGleb Smirnoff #define	ifcs_minifs	U.S._ifcs_minifs
9742a58907SGleb Smirnoff 
9842a58907SGleb Smirnoff 	LIST_ENTRY(if_clone) ifc_list;	/* (e) On list of cloners */
9942a58907SGleb Smirnoff };
10042a58907SGleb Smirnoff 
101f889d2efSBrooks Davis static void	if_clone_free(struct if_clone *ifc);
1026b7330e2SSam Leffler static int	if_clone_createif(struct if_clone *ifc, char *name, size_t len,
1036b7330e2SSam Leffler 		    caddr_t params);
104f889d2efSBrooks Davis 
10542a58907SGleb Smirnoff static int     ifc_simple_match(struct if_clone *, const char *);
10642a58907SGleb Smirnoff static int     ifc_simple_create(struct if_clone *, char *, size_t, caddr_t);
10742a58907SGleb Smirnoff static int     ifc_simple_destroy(struct if_clone *, struct ifnet *);
10842a58907SGleb Smirnoff 
109f889d2efSBrooks Davis static struct mtx if_cloners_mtx;
1104ea05db8SGleb Smirnoff MTX_SYSINIT(if_cloners_lock, &if_cloners_mtx, "if_cloners lock", MTX_DEF);
1115f901c92SAndrew Turner VNET_DEFINE_STATIC(int, if_cloners_count);
112eddfbb76SRobert Watson VNET_DEFINE(LIST_HEAD(, if_clone), if_cloners);
113eddfbb76SRobert Watson 
1141e77c105SRobert Watson #define	V_if_cloners_count	VNET(if_cloners_count)
1151e77c105SRobert Watson #define	V_if_cloners		VNET(if_cloners)
116f889d2efSBrooks Davis 
117f889d2efSBrooks Davis #define IF_CLONERS_LOCK_ASSERT()	mtx_assert(&if_cloners_mtx, MA_OWNED)
118f889d2efSBrooks Davis #define IF_CLONERS_LOCK()		mtx_lock(&if_cloners_mtx)
119f889d2efSBrooks Davis #define IF_CLONERS_UNLOCK()		mtx_unlock(&if_cloners_mtx)
120f889d2efSBrooks Davis 
121f889d2efSBrooks Davis #define IF_CLONE_LOCK_INIT(ifc)		\
122f889d2efSBrooks Davis     mtx_init(&(ifc)->ifc_mtx, "if_clone lock", NULL, MTX_DEF)
123f889d2efSBrooks Davis #define IF_CLONE_LOCK_DESTROY(ifc)	mtx_destroy(&(ifc)->ifc_mtx)
124f889d2efSBrooks Davis #define IF_CLONE_LOCK_ASSERT(ifc)	mtx_assert(&(ifc)->ifc_mtx, MA_OWNED)
125f889d2efSBrooks Davis #define IF_CLONE_LOCK(ifc)		mtx_lock(&(ifc)->ifc_mtx)
126f889d2efSBrooks Davis #define IF_CLONE_UNLOCK(ifc)		mtx_unlock(&(ifc)->ifc_mtx)
127f889d2efSBrooks Davis 
128f889d2efSBrooks Davis #define IF_CLONE_ADDREF(ifc)						\
129f889d2efSBrooks Davis 	do {								\
130f889d2efSBrooks Davis 		IF_CLONE_LOCK(ifc);					\
131f889d2efSBrooks Davis 		IF_CLONE_ADDREF_LOCKED(ifc);				\
132f889d2efSBrooks Davis 		IF_CLONE_UNLOCK(ifc);					\
133f889d2efSBrooks Davis 	} while (0)
134f889d2efSBrooks Davis #define IF_CLONE_ADDREF_LOCKED(ifc)					\
135f889d2efSBrooks Davis 	do {								\
136f889d2efSBrooks Davis 		IF_CLONE_LOCK_ASSERT(ifc);				\
137f889d2efSBrooks Davis 		KASSERT((ifc)->ifc_refcnt >= 0,				\
138f889d2efSBrooks Davis 		    ("negative refcnt %ld", (ifc)->ifc_refcnt));	\
139f889d2efSBrooks Davis 		(ifc)->ifc_refcnt++;					\
140f889d2efSBrooks Davis 	} while (0)
141f889d2efSBrooks Davis #define IF_CLONE_REMREF(ifc)						\
142f889d2efSBrooks Davis 	do {								\
143f889d2efSBrooks Davis 		IF_CLONE_LOCK(ifc);					\
144f889d2efSBrooks Davis 		IF_CLONE_REMREF_LOCKED(ifc);				\
145f889d2efSBrooks Davis 	} while (0)
146f889d2efSBrooks Davis #define IF_CLONE_REMREF_LOCKED(ifc)					\
147f889d2efSBrooks Davis 	do {								\
148f889d2efSBrooks Davis 		IF_CLONE_LOCK_ASSERT(ifc);				\
149f889d2efSBrooks Davis 		KASSERT((ifc)->ifc_refcnt > 0,				\
150f889d2efSBrooks Davis 		    ("bogus refcnt %ld", (ifc)->ifc_refcnt));		\
151f889d2efSBrooks Davis 		if (--(ifc)->ifc_refcnt == 0) {				\
152f889d2efSBrooks Davis 			IF_CLONE_UNLOCK(ifc);				\
153f889d2efSBrooks Davis 			if_clone_free(ifc);				\
154ca64c799SMax Laier 		} else {						\
155f889d2efSBrooks Davis 			/* silently free the lock */			\
156f889d2efSBrooks Davis 			IF_CLONE_UNLOCK(ifc);				\
157ca64c799SMax Laier 		}							\
158f889d2efSBrooks Davis 	} while (0)
159f889d2efSBrooks Davis 
1604e7e0183SAndrew Thompson #define IFC_IFLIST_INSERT(_ifc, _ifp)					\
1614e7e0183SAndrew Thompson 	LIST_INSERT_HEAD(&_ifc->ifc_iflist, _ifp, if_clones)
1624e7e0183SAndrew Thompson #define IFC_IFLIST_REMOVE(_ifc, _ifp)					\
1634e7e0183SAndrew Thompson 	LIST_REMOVE(_ifp, if_clones)
1644e7e0183SAndrew Thompson 
165c711aea6SPoul-Henning Kamp static MALLOC_DEFINE(M_CLONE, "clone", "interface cloning framework");
166f889d2efSBrooks Davis 
167d0728d71SRobert Watson void
168d0728d71SRobert Watson vnet_if_clone_init(void)
16937f17770SMarko Zec {
17037f17770SMarko Zec 
17137f17770SMarko Zec 	LIST_INIT(&V_if_cloners);
17237f17770SMarko Zec }
17337f17770SMarko Zec 
174f889d2efSBrooks Davis /*
1754e7e0183SAndrew Thompson  * Lookup and create a clone network interface.
176f889d2efSBrooks Davis  */
177f889d2efSBrooks Davis int
1786b7330e2SSam Leffler if_clone_create(char *name, size_t len, caddr_t params)
179f889d2efSBrooks Davis {
180f889d2efSBrooks Davis 	struct if_clone *ifc;
181f889d2efSBrooks Davis 
182f889d2efSBrooks Davis 	/* Try to find an applicable cloner for this request */
183f889d2efSBrooks Davis 	IF_CLONERS_LOCK();
18442a58907SGleb Smirnoff 	LIST_FOREACH(ifc, &V_if_cloners, ifc_list)
18542a58907SGleb Smirnoff 		if (ifc->ifc_type == SIMPLE) {
18642a58907SGleb Smirnoff 			if (ifc_simple_match(ifc, name))
187f889d2efSBrooks Davis 				break;
18842a58907SGleb Smirnoff 		} else {
18942a58907SGleb Smirnoff 			if (ifc->ifc_match(ifc, name))
19042a58907SGleb Smirnoff 				break;
191f889d2efSBrooks Davis 		}
19237f17770SMarko Zec #ifdef VIMAGE
19337f17770SMarko Zec 	if (ifc == NULL && !IS_DEFAULT_VNET(curvnet)) {
19437f17770SMarko Zec 		CURVNET_SET_QUIET(vnet0);
19542a58907SGleb Smirnoff 		LIST_FOREACH(ifc, &V_if_cloners, ifc_list)
19642a58907SGleb Smirnoff 			if (ifc->ifc_type == SIMPLE) {
19742a58907SGleb Smirnoff 				if (ifc_simple_match(ifc, name))
19842a58907SGleb Smirnoff 					break;
19942a58907SGleb Smirnoff 			} else {
20037f17770SMarko Zec 				if (ifc->ifc_match(ifc, name))
20137f17770SMarko Zec 					break;
20237f17770SMarko Zec 			}
20337f17770SMarko Zec 		CURVNET_RESTORE();
20437f17770SMarko Zec 	}
20537f17770SMarko Zec #endif
206f889d2efSBrooks Davis 	IF_CLONERS_UNLOCK();
207f889d2efSBrooks Davis 
208f889d2efSBrooks Davis 	if (ifc == NULL)
209f889d2efSBrooks Davis 		return (EINVAL);
210f889d2efSBrooks Davis 
2116b7330e2SSam Leffler 	return (if_clone_createif(ifc, name, len, params));
2124e7e0183SAndrew Thompson }
2134e7e0183SAndrew Thompson 
2144e7e0183SAndrew Thompson /*
2154e7e0183SAndrew Thompson  * Create a clone network interface.
2164e7e0183SAndrew Thompson  */
2174e7e0183SAndrew Thompson static int
2186b7330e2SSam Leffler if_clone_createif(struct if_clone *ifc, char *name, size_t len, caddr_t params)
2194e7e0183SAndrew Thompson {
2204e7e0183SAndrew Thompson 	int err;
2214e7e0183SAndrew Thompson 	struct ifnet *ifp;
2224e7e0183SAndrew Thompson 
2234e7e0183SAndrew Thompson 	if (ifunit(name) != NULL)
2244e7e0183SAndrew Thompson 		return (EEXIST);
2254e7e0183SAndrew Thompson 
22642a58907SGleb Smirnoff 	if (ifc->ifc_type == SIMPLE)
22742a58907SGleb Smirnoff 		err = ifc_simple_create(ifc, name, len, params);
22842a58907SGleb Smirnoff 	else
2296b7330e2SSam Leffler 		err = (*ifc->ifc_create)(ifc, name, len, params);
2304e7e0183SAndrew Thompson 
2314e7e0183SAndrew Thompson 	if (!err) {
2324e7e0183SAndrew Thompson 		ifp = ifunit(name);
2334e7e0183SAndrew Thompson 		if (ifp == NULL)
2344e7e0183SAndrew Thompson 			panic("%s: lookup failed for %s", __func__, name);
2354e7e0183SAndrew Thompson 
23609f6ff4fSMatt Macy 		if ((ifc->ifc_flags & IFC_NOGROUP) == 0)
2370dad3f0eSMax Laier 			if_addgroup(ifp, ifc->ifc_name);
2380dad3f0eSMax Laier 
2394e7e0183SAndrew Thompson 		IF_CLONE_LOCK(ifc);
2404e7e0183SAndrew Thompson 		IFC_IFLIST_INSERT(ifc, ifp);
2414e7e0183SAndrew Thompson 		IF_CLONE_UNLOCK(ifc);
2424e7e0183SAndrew Thompson 	}
2434e7e0183SAndrew Thompson 
244f889d2efSBrooks Davis 	return (err);
245f889d2efSBrooks Davis }
246f889d2efSBrooks Davis 
247f889d2efSBrooks Davis /*
2484e7e0183SAndrew Thompson  * Lookup and destroy a clone network interface.
249f889d2efSBrooks Davis  */
250f889d2efSBrooks Davis int
251f889d2efSBrooks Davis if_clone_destroy(const char *name)
252f889d2efSBrooks Davis {
253d0088cdeSBjoern A. Zeeb 	int err;
254f889d2efSBrooks Davis 	struct if_clone *ifc;
255f889d2efSBrooks Davis 	struct ifnet *ifp;
256f889d2efSBrooks Davis 
257d0088cdeSBjoern A. Zeeb 	ifp = ifunit_ref(name);
258f889d2efSBrooks Davis 	if (ifp == NULL)
259f889d2efSBrooks Davis 		return (ENXIO);
260f889d2efSBrooks Davis 
261f889d2efSBrooks Davis 	/* Find the cloner for this interface */
262f889d2efSBrooks Davis 	IF_CLONERS_LOCK();
26337f17770SMarko Zec 	LIST_FOREACH(ifc, &V_if_cloners, ifc_list) {
264f889d2efSBrooks Davis 		if (strcmp(ifc->ifc_name, ifp->if_dname) == 0) {
265f889d2efSBrooks Davis 			break;
266f889d2efSBrooks Davis 		}
267f889d2efSBrooks Davis 	}
26837f17770SMarko Zec #ifdef VIMAGE
26937f17770SMarko Zec 	if (ifc == NULL && !IS_DEFAULT_VNET(curvnet)) {
27037f17770SMarko Zec 		CURVNET_SET_QUIET(vnet0);
27142a58907SGleb Smirnoff 		LIST_FOREACH(ifc, &V_if_cloners, ifc_list)
2723aaf0159SGleb Smirnoff 			if (ifc->ifc_type == SIMPLE) {
27342a58907SGleb Smirnoff 				if (ifc_simple_match(ifc, name))
27442a58907SGleb Smirnoff 					break;
27542a58907SGleb Smirnoff 			} else {
27637f17770SMarko Zec 				if (ifc->ifc_match(ifc, name))
27737f17770SMarko Zec 					break;
27837f17770SMarko Zec 			}
27937f17770SMarko Zec 		CURVNET_RESTORE();
28037f17770SMarko Zec 	}
28137f17770SMarko Zec #endif
282f889d2efSBrooks Davis 	IF_CLONERS_UNLOCK();
283d0088cdeSBjoern A. Zeeb 	if (ifc == NULL) {
284d0088cdeSBjoern A. Zeeb 		if_rele(ifp);
285f889d2efSBrooks Davis 		return (EINVAL);
286d0088cdeSBjoern A. Zeeb 	}
287f889d2efSBrooks Davis 
288d0088cdeSBjoern A. Zeeb 	err = if_clone_destroyif(ifc, ifp);
289d0088cdeSBjoern A. Zeeb 	if_rele(ifp);
290d0088cdeSBjoern A. Zeeb 	return err;
2914e7e0183SAndrew Thompson }
2924e7e0183SAndrew Thompson 
2934e7e0183SAndrew Thompson /*
2944e7e0183SAndrew Thompson  * Destroy a clone network interface.
2954e7e0183SAndrew Thompson  */
296cb959fa2SAndrew Thompson int
2974e7e0183SAndrew Thompson if_clone_destroyif(struct if_clone *ifc, struct ifnet *ifp)
2984e7e0183SAndrew Thompson {
2994e7e0183SAndrew Thompson 	int err;
300c769e1beSBjoern A. Zeeb 	struct ifnet *ifcifp;
3014e7e0183SAndrew Thompson 
30242a58907SGleb Smirnoff 	if (ifc->ifc_type == ADVANCED && ifc->ifc_destroy == NULL)
30321ca7b57SMarko Zec 		return(EOPNOTSUPP);
304f889d2efSBrooks Davis 
30537f17770SMarko Zec 	/*
30637f17770SMarko Zec 	 * Given that the cloned ifnet might be attached to a different
30737f17770SMarko Zec 	 * vnet from where its cloner was registered, we have to
30837f17770SMarko Zec 	 * switch to the vnet context of the target vnet.
30937f17770SMarko Zec 	 */
31037f17770SMarko Zec 	CURVNET_SET_QUIET(ifp->if_vnet);
31137f17770SMarko Zec 
312434dbbb3SRuslan Ermilov 	IF_CLONE_LOCK(ifc);
313c769e1beSBjoern A. Zeeb 	LIST_FOREACH(ifcifp, &ifc->ifc_iflist, if_clones) {
314c769e1beSBjoern A. Zeeb 		if (ifcifp == ifp) {
315434dbbb3SRuslan Ermilov 			IFC_IFLIST_REMOVE(ifc, ifp);
316c769e1beSBjoern A. Zeeb 			break;
317c769e1beSBjoern A. Zeeb 		}
318c769e1beSBjoern A. Zeeb 	}
319434dbbb3SRuslan Ermilov 	IF_CLONE_UNLOCK(ifc);
320c769e1beSBjoern A. Zeeb 	if (ifcifp == NULL) {
321c769e1beSBjoern A. Zeeb 		CURVNET_RESTORE();
322c769e1beSBjoern A. Zeeb 		return (ENXIO);		/* ifp is not on the list. */
323c769e1beSBjoern A. Zeeb 	}
32409f6ff4fSMatt Macy 	if ((ifc->ifc_flags & IFC_NOGROUP) == 0)
3250dad3f0eSMax Laier 		if_delgroup(ifp, ifc->ifc_name);
3260dad3f0eSMax Laier 
32742a58907SGleb Smirnoff 	if (ifc->ifc_type == SIMPLE)
32842a58907SGleb Smirnoff 		err = ifc_simple_destroy(ifc, ifp);
32942a58907SGleb Smirnoff 	else
330f889d2efSBrooks Davis 		err = (*ifc->ifc_destroy)(ifc, ifp);
331f889d2efSBrooks Davis 
332434dbbb3SRuslan Ermilov 	if (err != 0) {
33309f6ff4fSMatt Macy 		if ((ifc->ifc_flags & IFC_NOGROUP) == 0)
3340dad3f0eSMax Laier 			if_addgroup(ifp, ifc->ifc_name);
3350dad3f0eSMax Laier 
336434dbbb3SRuslan Ermilov 		IF_CLONE_LOCK(ifc);
337434dbbb3SRuslan Ermilov 		IFC_IFLIST_INSERT(ifc, ifp);
338434dbbb3SRuslan Ermilov 		IF_CLONE_UNLOCK(ifc);
339434dbbb3SRuslan Ermilov 	}
34021ca7b57SMarko Zec 	CURVNET_RESTORE();
341f889d2efSBrooks Davis 	return (err);
342f889d2efSBrooks Davis }
343f889d2efSBrooks Davis 
34442a58907SGleb Smirnoff static struct if_clone *
34542a58907SGleb Smirnoff if_clone_alloc(const char *name, int maxunit)
34642a58907SGleb Smirnoff {
34742a58907SGleb Smirnoff 	struct if_clone *ifc;
34842a58907SGleb Smirnoff 
34942a58907SGleb Smirnoff 	KASSERT(name != NULL, ("%s: no name\n", __func__));
35042a58907SGleb Smirnoff 
35142a58907SGleb Smirnoff 	ifc = malloc(sizeof(struct if_clone), M_CLONE, M_WAITOK | M_ZERO);
35242a58907SGleb Smirnoff 	strncpy(ifc->ifc_name, name, IFCLOSIZ-1);
35342a58907SGleb Smirnoff 	IF_CLONE_LOCK_INIT(ifc);
35442a58907SGleb Smirnoff 	IF_CLONE_ADDREF(ifc);
35542a58907SGleb Smirnoff 	ifc->ifc_maxunit = maxunit ? maxunit : IF_MAXUNIT;
35642a58907SGleb Smirnoff 	ifc->ifc_unrhdr = new_unrhdr(0, ifc->ifc_maxunit, &ifc->ifc_mtx);
35742a58907SGleb Smirnoff 	LIST_INIT(&ifc->ifc_iflist);
35842a58907SGleb Smirnoff 
35942a58907SGleb Smirnoff 	return (ifc);
36042a58907SGleb Smirnoff }
36142a58907SGleb Smirnoff 
36242a58907SGleb Smirnoff static int
363f889d2efSBrooks Davis if_clone_attach(struct if_clone *ifc)
364f889d2efSBrooks Davis {
3652e9fff5bSGleb Smirnoff 	struct if_clone *ifc1;
366f889d2efSBrooks Davis 
367f889d2efSBrooks Davis 	IF_CLONERS_LOCK();
3682e9fff5bSGleb Smirnoff 	LIST_FOREACH(ifc1, &V_if_cloners, ifc_list)
3692e9fff5bSGleb Smirnoff 		if (strcmp(ifc->ifc_name, ifc1->ifc_name) == 0) {
3702e9fff5bSGleb Smirnoff 			IF_CLONERS_UNLOCK();
3712e9fff5bSGleb Smirnoff 			IF_CLONE_REMREF(ifc);
3722e9fff5bSGleb Smirnoff 			return (EEXIST);
3732e9fff5bSGleb Smirnoff 		}
37437f17770SMarko Zec 	LIST_INSERT_HEAD(&V_if_cloners, ifc, ifc_list);
37537f17770SMarko Zec 	V_if_cloners_count++;
376f889d2efSBrooks Davis 	IF_CLONERS_UNLOCK();
377f889d2efSBrooks Davis 
37842a58907SGleb Smirnoff 	return (0);
37942a58907SGleb Smirnoff }
38042a58907SGleb Smirnoff 
38142a58907SGleb Smirnoff struct if_clone *
38242a58907SGleb Smirnoff if_clone_advanced(const char *name, u_int maxunit, ifc_match_t match,
38342a58907SGleb Smirnoff 	ifc_create_t create, ifc_destroy_t destroy)
38442a58907SGleb Smirnoff {
38542a58907SGleb Smirnoff 	struct if_clone *ifc;
38642a58907SGleb Smirnoff 
38742a58907SGleb Smirnoff 	ifc = if_clone_alloc(name, maxunit);
38842a58907SGleb Smirnoff 	ifc->ifc_type = ADVANCED;
38942a58907SGleb Smirnoff 	ifc->ifc_match = match;
39042a58907SGleb Smirnoff 	ifc->ifc_create = create;
39142a58907SGleb Smirnoff 	ifc->ifc_destroy = destroy;
39242a58907SGleb Smirnoff 
3933395dd6eSAlexander Kabaev 	if (if_clone_attach(ifc) != 0)
39442a58907SGleb Smirnoff 		return (NULL);
39542a58907SGleb Smirnoff 
396f889d2efSBrooks Davis 	EVENTHANDLER_INVOKE(if_clone_event, ifc);
3972e9fff5bSGleb Smirnoff 
39842a58907SGleb Smirnoff 	return (ifc);
39942a58907SGleb Smirnoff }
40042a58907SGleb Smirnoff 
40142a58907SGleb Smirnoff struct if_clone *
40242a58907SGleb Smirnoff if_clone_simple(const char *name, ifcs_create_t create, ifcs_destroy_t destroy,
40342a58907SGleb Smirnoff 	u_int minifs)
40442a58907SGleb Smirnoff {
40542a58907SGleb Smirnoff 	struct if_clone *ifc;
40642a58907SGleb Smirnoff 	u_int unit;
40742a58907SGleb Smirnoff 
40842a58907SGleb Smirnoff 	ifc = if_clone_alloc(name, 0);
40942a58907SGleb Smirnoff 	ifc->ifc_type = SIMPLE;
41042a58907SGleb Smirnoff 	ifc->ifcs_create = create;
41142a58907SGleb Smirnoff 	ifc->ifcs_destroy = destroy;
41242a58907SGleb Smirnoff 	ifc->ifcs_minifs = minifs;
41342a58907SGleb Smirnoff 
4143395dd6eSAlexander Kabaev 	if (if_clone_attach(ifc) != 0)
41542a58907SGleb Smirnoff 		return (NULL);
41642a58907SGleb Smirnoff 
41742a58907SGleb Smirnoff 	for (unit = 0; unit < minifs; unit++) {
41842a58907SGleb Smirnoff 		char name[IFNAMSIZ];
41946d0f824SMatt Macy 		int error __unused;
42042a58907SGleb Smirnoff 
42142a58907SGleb Smirnoff 		snprintf(name, IFNAMSIZ, "%s%d", ifc->ifc_name, unit);
42242a58907SGleb Smirnoff 		error = if_clone_createif(ifc, name, IFNAMSIZ, NULL);
42342a58907SGleb Smirnoff 		KASSERT(error == 0,
42442a58907SGleb Smirnoff 		    ("%s: failed to create required interface %s",
42542a58907SGleb Smirnoff 		    __func__, name));
42642a58907SGleb Smirnoff 	}
42742a58907SGleb Smirnoff 
42842a58907SGleb Smirnoff 	EVENTHANDLER_INVOKE(if_clone_event, ifc);
42942a58907SGleb Smirnoff 
43042a58907SGleb Smirnoff 	return (ifc);
431f889d2efSBrooks Davis }
432f889d2efSBrooks Davis 
433f889d2efSBrooks Davis /*
434f889d2efSBrooks Davis  * Unregister a network interface cloner.
435f889d2efSBrooks Davis  */
436f889d2efSBrooks Davis void
437f889d2efSBrooks Davis if_clone_detach(struct if_clone *ifc)
438f889d2efSBrooks Davis {
439f889d2efSBrooks Davis 
440f889d2efSBrooks Davis 	IF_CLONERS_LOCK();
441f889d2efSBrooks Davis 	LIST_REMOVE(ifc, ifc_list);
44237f17770SMarko Zec 	V_if_cloners_count--;
443f889d2efSBrooks Davis 	IF_CLONERS_UNLOCK();
444f889d2efSBrooks Davis 
445febd0759SAndrew Thompson 	/* Allow all simples to be destroyed */
44642a58907SGleb Smirnoff 	if (ifc->ifc_type == SIMPLE)
44742a58907SGleb Smirnoff 		ifc->ifcs_minifs = 0;
448febd0759SAndrew Thompson 
4494e7e0183SAndrew Thompson 	/* destroy all interfaces for this cloner */
4504e7e0183SAndrew Thompson 	while (!LIST_EMPTY(&ifc->ifc_iflist))
4514e7e0183SAndrew Thompson 		if_clone_destroyif(ifc, LIST_FIRST(&ifc->ifc_iflist));
4524e7e0183SAndrew Thompson 
453f889d2efSBrooks Davis 	IF_CLONE_REMREF(ifc);
454f889d2efSBrooks Davis }
455f889d2efSBrooks Davis 
456f889d2efSBrooks Davis static void
457f889d2efSBrooks Davis if_clone_free(struct if_clone *ifc)
458f889d2efSBrooks Davis {
459f889d2efSBrooks Davis 
4604e7e0183SAndrew Thompson 	KASSERT(LIST_EMPTY(&ifc->ifc_iflist),
4614e7e0183SAndrew Thompson 	    ("%s: ifc_iflist not empty", __func__));
4624e7e0183SAndrew Thompson 
463f889d2efSBrooks Davis 	IF_CLONE_LOCK_DESTROY(ifc);
4642e9fff5bSGleb Smirnoff 	delete_unrhdr(ifc->ifc_unrhdr);
46542a58907SGleb Smirnoff 	free(ifc, M_CLONE);
466f889d2efSBrooks Davis }
467f889d2efSBrooks Davis 
468f889d2efSBrooks Davis /*
469f889d2efSBrooks Davis  * Provide list of interface cloners to userspace.
470f889d2efSBrooks Davis  */
471f889d2efSBrooks Davis int
472f889d2efSBrooks Davis if_clone_list(struct if_clonereq *ifcr)
473f889d2efSBrooks Davis {
474c859ef97SBrooks Davis 	char *buf, *dst, *outbuf = NULL;
475f889d2efSBrooks Davis 	struct if_clone *ifc;
476c859ef97SBrooks Davis 	int buf_count, count, err = 0;
477c859ef97SBrooks Davis 
478a6d00835SMaxim Konovalov 	if (ifcr->ifcr_count < 0)
479a6d00835SMaxim Konovalov 		return (EINVAL);
480a6d00835SMaxim Konovalov 
481c859ef97SBrooks Davis 	IF_CLONERS_LOCK();
482c859ef97SBrooks Davis 	/*
483c859ef97SBrooks Davis 	 * Set our internal output buffer size.  We could end up not
484c859ef97SBrooks Davis 	 * reporting a cloner that is added between the unlock and lock
485c859ef97SBrooks Davis 	 * below, but that's not a major problem.  Not caping our
486c859ef97SBrooks Davis 	 * allocation to the number of cloners actually in the system
487c859ef97SBrooks Davis 	 * could be because that would let arbitrary users cause us to
488a4641f4eSPedro F. Giffuni 	 * allocate arbitrary amounts of kernel memory.
489c859ef97SBrooks Davis 	 */
49037f17770SMarko Zec 	buf_count = (V_if_cloners_count < ifcr->ifcr_count) ?
49137f17770SMarko Zec 	    V_if_cloners_count : ifcr->ifcr_count;
492c859ef97SBrooks Davis 	IF_CLONERS_UNLOCK();
493c859ef97SBrooks Davis 
494c859ef97SBrooks Davis 	outbuf = malloc(IFNAMSIZ*buf_count, M_CLONE, M_WAITOK | M_ZERO);
495f889d2efSBrooks Davis 
496f889d2efSBrooks Davis 	IF_CLONERS_LOCK();
497f889d2efSBrooks Davis 
49837f17770SMarko Zec 	ifcr->ifcr_total = V_if_cloners_count;
499f889d2efSBrooks Davis 	if ((dst = ifcr->ifcr_buffer) == NULL) {
500f889d2efSBrooks Davis 		/* Just asking how many there are. */
501f889d2efSBrooks Davis 		goto done;
502f889d2efSBrooks Davis 	}
50337f17770SMarko Zec 	count = (V_if_cloners_count < buf_count) ?
50437f17770SMarko Zec 	    V_if_cloners_count : buf_count;
505f889d2efSBrooks Davis 
50637f17770SMarko Zec 	for (ifc = LIST_FIRST(&V_if_cloners), buf = outbuf;
507c859ef97SBrooks Davis 	    ifc != NULL && count != 0;
508c859ef97SBrooks Davis 	    ifc = LIST_NEXT(ifc, ifc_list), count--, buf += IFNAMSIZ) {
509c859ef97SBrooks Davis 		strlcpy(buf, ifc->ifc_name, IFNAMSIZ);
510f889d2efSBrooks Davis 	}
511f889d2efSBrooks Davis 
512f889d2efSBrooks Davis done:
513f889d2efSBrooks Davis 	IF_CLONERS_UNLOCK();
51492f19df4SAlexander Kabaev 	if (err == 0 && dst != NULL)
515c859ef97SBrooks Davis 		err = copyout(outbuf, dst, buf_count*IFNAMSIZ);
516c859ef97SBrooks Davis 	if (outbuf != NULL)
517c859ef97SBrooks Davis 		free(outbuf, M_CLONE);
518f889d2efSBrooks Davis 	return (err);
519f889d2efSBrooks Davis }
520f889d2efSBrooks Davis 
521f889d2efSBrooks Davis /*
522c92a456bSHiroki Sato  * if_clone_findifc() looks up ifnet from the current
523c92a456bSHiroki Sato  * cloner list, and returns ifc if found.  Note that ifc_refcnt
524c92a456bSHiroki Sato  * is incremented.
525c92a456bSHiroki Sato  */
526c92a456bSHiroki Sato struct if_clone *
527c92a456bSHiroki Sato if_clone_findifc(struct ifnet *ifp)
528c92a456bSHiroki Sato {
529c92a456bSHiroki Sato 	struct if_clone *ifc, *ifc0;
530c92a456bSHiroki Sato 	struct ifnet *ifcifp;
531c92a456bSHiroki Sato 
532c92a456bSHiroki Sato 	ifc0 = NULL;
533c92a456bSHiroki Sato 	IF_CLONERS_LOCK();
534c92a456bSHiroki Sato 	LIST_FOREACH(ifc, &V_if_cloners, ifc_list) {
535c92a456bSHiroki Sato 		IF_CLONE_LOCK(ifc);
536c92a456bSHiroki Sato 		LIST_FOREACH(ifcifp, &ifc->ifc_iflist, if_clones) {
537c92a456bSHiroki Sato 			if (ifp == ifcifp) {
538c92a456bSHiroki Sato 				ifc0 = ifc;
539c92a456bSHiroki Sato 				IF_CLONE_ADDREF_LOCKED(ifc);
540c92a456bSHiroki Sato 				break;
541c92a456bSHiroki Sato 			}
542c92a456bSHiroki Sato 		}
543c92a456bSHiroki Sato 		IF_CLONE_UNLOCK(ifc);
544c92a456bSHiroki Sato 		if (ifc0 != NULL)
545c92a456bSHiroki Sato 			break;
546c92a456bSHiroki Sato 	}
547c92a456bSHiroki Sato 	IF_CLONERS_UNLOCK();
548c92a456bSHiroki Sato 
549c92a456bSHiroki Sato 	return (ifc0);
550c92a456bSHiroki Sato }
551c92a456bSHiroki Sato 
552c92a456bSHiroki Sato /*
553c92a456bSHiroki Sato  * if_clone_addgroup() decrements ifc_refcnt because it is called after
554c92a456bSHiroki Sato  * if_clone_findifc().
555c92a456bSHiroki Sato  */
556c92a456bSHiroki Sato void
557c92a456bSHiroki Sato if_clone_addgroup(struct ifnet *ifp, struct if_clone *ifc)
558c92a456bSHiroki Sato {
55909f6ff4fSMatt Macy 	if ((ifc->ifc_flags & IFC_NOGROUP) == 0) {
560c92a456bSHiroki Sato 		if_addgroup(ifp, ifc->ifc_name);
561c92a456bSHiroki Sato 		IF_CLONE_REMREF(ifc);
562c92a456bSHiroki Sato 	}
56309f6ff4fSMatt Macy }
564c92a456bSHiroki Sato 
565c92a456bSHiroki Sato /*
566f889d2efSBrooks Davis  * A utility function to extract unit numbers from interface names of
567f889d2efSBrooks Davis  * the form name###.
568f889d2efSBrooks Davis  *
569f889d2efSBrooks Davis  * Returns 0 on success and an error on failure.
570f889d2efSBrooks Davis  */
571f889d2efSBrooks Davis int
572f889d2efSBrooks Davis ifc_name2unit(const char *name, int *unit)
573f889d2efSBrooks Davis {
574f889d2efSBrooks Davis 	const char	*cp;
575434dbbb3SRuslan Ermilov 	int		cutoff = INT_MAX / 10;
576434dbbb3SRuslan Ermilov 	int		cutlim = INT_MAX % 10;
577f889d2efSBrooks Davis 
578f889d2efSBrooks Davis 	for (cp = name; *cp != '\0' && (*cp < '0' || *cp > '9'); cp++);
579f889d2efSBrooks Davis 	if (*cp == '\0') {
580f889d2efSBrooks Davis 		*unit = -1;
581434dbbb3SRuslan Ermilov 	} else if (cp[0] == '0' && cp[1] != '\0') {
582434dbbb3SRuslan Ermilov 		/* Disallow leading zeroes. */
583434dbbb3SRuslan Ermilov 		return (EINVAL);
584f889d2efSBrooks Davis 	} else {
585f889d2efSBrooks Davis 		for (*unit = 0; *cp != '\0'; cp++) {
586f889d2efSBrooks Davis 			if (*cp < '0' || *cp > '9') {
587f889d2efSBrooks Davis 				/* Bogus unit number. */
588f889d2efSBrooks Davis 				return (EINVAL);
589f889d2efSBrooks Davis 			}
590434dbbb3SRuslan Ermilov 			if (*unit > cutoff ||
591434dbbb3SRuslan Ermilov 			    (*unit == cutoff && *cp - '0' > cutlim))
592434dbbb3SRuslan Ermilov 				return (EINVAL);
593f889d2efSBrooks Davis 			*unit = (*unit * 10) + (*cp - '0');
594f889d2efSBrooks Davis 		}
595f889d2efSBrooks Davis 	}
596f889d2efSBrooks Davis 
597f889d2efSBrooks Davis 	return (0);
598f889d2efSBrooks Davis }
599f889d2efSBrooks Davis 
600c64c1f95SAndriy Voskoboinyk static int
601c64c1f95SAndriy Voskoboinyk ifc_alloc_unit_specific(struct if_clone *ifc, int *unit)
602f889d2efSBrooks Davis {
6032e9fff5bSGleb Smirnoff 	char name[IFNAMSIZ];
604f889d2efSBrooks Davis 
6053932d760SGleb Smirnoff 	if (*unit > ifc->ifc_maxunit)
6063932d760SGleb Smirnoff 		return (ENOSPC);
607c64c1f95SAndriy Voskoboinyk 
608c64c1f95SAndriy Voskoboinyk 	if (alloc_unr_specific(ifc->ifc_unrhdr, *unit) == -1)
6092e9fff5bSGleb Smirnoff 		return (EEXIST);
610f889d2efSBrooks Davis 
6112e9fff5bSGleb Smirnoff 	snprintf(name, IFNAMSIZ, "%s%d", ifc->ifc_name, *unit);
6122e9fff5bSGleb Smirnoff 	if (ifunit(name) != NULL) {
6133932d760SGleb Smirnoff 		free_unr(ifc->ifc_unrhdr, *unit);
6142e9fff5bSGleb Smirnoff 		return (EEXIST);
615f889d2efSBrooks Davis 	}
616f889d2efSBrooks Davis 
6172e9fff5bSGleb Smirnoff 	IF_CLONE_ADDREF(ifc);
618f889d2efSBrooks Davis 
6192e9fff5bSGleb Smirnoff 	return (0);
620f889d2efSBrooks Davis }
621f889d2efSBrooks Davis 
622c64c1f95SAndriy Voskoboinyk static int
623c64c1f95SAndriy Voskoboinyk ifc_alloc_unit_next(struct if_clone *ifc, int *unit)
624c64c1f95SAndriy Voskoboinyk {
625c64c1f95SAndriy Voskoboinyk 	int error;
626c64c1f95SAndriy Voskoboinyk 
627c64c1f95SAndriy Voskoboinyk 	*unit = alloc_unr(ifc->ifc_unrhdr);
628c64c1f95SAndriy Voskoboinyk 	if (*unit == -1)
629c64c1f95SAndriy Voskoboinyk 		return (ENOSPC);
630c64c1f95SAndriy Voskoboinyk 
631c64c1f95SAndriy Voskoboinyk 	free_unr(ifc->ifc_unrhdr, *unit);
632c64c1f95SAndriy Voskoboinyk 	for (;;) {
633c64c1f95SAndriy Voskoboinyk 		error = ifc_alloc_unit_specific(ifc, unit);
634c64c1f95SAndriy Voskoboinyk 		if (error != EEXIST)
635c64c1f95SAndriy Voskoboinyk 			break;
636c64c1f95SAndriy Voskoboinyk 
637c64c1f95SAndriy Voskoboinyk 		(*unit)++;
638c64c1f95SAndriy Voskoboinyk 	}
639c64c1f95SAndriy Voskoboinyk 
640c64c1f95SAndriy Voskoboinyk 	return (error);
641c64c1f95SAndriy Voskoboinyk }
642c64c1f95SAndriy Voskoboinyk 
643c64c1f95SAndriy Voskoboinyk int
644c64c1f95SAndriy Voskoboinyk ifc_alloc_unit(struct if_clone *ifc, int *unit)
645c64c1f95SAndriy Voskoboinyk {
646c64c1f95SAndriy Voskoboinyk 	if (*unit < 0)
647c64c1f95SAndriy Voskoboinyk 		return (ifc_alloc_unit_next(ifc, unit));
648c64c1f95SAndriy Voskoboinyk 	else
649c64c1f95SAndriy Voskoboinyk 		return (ifc_alloc_unit_specific(ifc, unit));
650c64c1f95SAndriy Voskoboinyk }
651c64c1f95SAndriy Voskoboinyk 
652f889d2efSBrooks Davis void
653f889d2efSBrooks Davis ifc_free_unit(struct if_clone *ifc, int unit)
654f889d2efSBrooks Davis {
655f889d2efSBrooks Davis 
6562e9fff5bSGleb Smirnoff 	free_unr(ifc->ifc_unrhdr, unit);
6572e9fff5bSGleb Smirnoff 	IF_CLONE_REMREF(ifc);
658f889d2efSBrooks Davis }
659f889d2efSBrooks Davis 
66042a58907SGleb Smirnoff static int
661f889d2efSBrooks Davis ifc_simple_match(struct if_clone *ifc, const char *name)
662f889d2efSBrooks Davis {
663f889d2efSBrooks Davis 	const char *cp;
664f889d2efSBrooks Davis 	int i;
665f889d2efSBrooks Davis 
666f889d2efSBrooks Davis 	/* Match the name */
667f889d2efSBrooks Davis 	for (cp = name, i = 0; i < strlen(ifc->ifc_name); i++, cp++) {
668f889d2efSBrooks Davis 		if (ifc->ifc_name[i] != *cp)
669f889d2efSBrooks Davis 			return (0);
670f889d2efSBrooks Davis 	}
671f889d2efSBrooks Davis 
672f889d2efSBrooks Davis 	/* Make sure there's a unit number or nothing after the name */
673f889d2efSBrooks Davis 	for (; *cp != '\0'; cp++) {
674f889d2efSBrooks Davis 		if (*cp < '0' || *cp > '9')
675f889d2efSBrooks Davis 			return (0);
676f889d2efSBrooks Davis 	}
677f889d2efSBrooks Davis 
678f889d2efSBrooks Davis 	return (1);
679f889d2efSBrooks Davis }
680f889d2efSBrooks Davis 
68142a58907SGleb Smirnoff static int
6826b7330e2SSam Leffler ifc_simple_create(struct if_clone *ifc, char *name, size_t len, caddr_t params)
683f889d2efSBrooks Davis {
684f889d2efSBrooks Davis 	char *dp;
685f889d2efSBrooks Davis 	int wildcard;
686f889d2efSBrooks Davis 	int unit;
687f889d2efSBrooks Davis 	int err;
688f889d2efSBrooks Davis 
689f889d2efSBrooks Davis 	err = ifc_name2unit(name, &unit);
690f889d2efSBrooks Davis 	if (err != 0)
691f889d2efSBrooks Davis 		return (err);
692f889d2efSBrooks Davis 
693f889d2efSBrooks Davis 	wildcard = (unit < 0);
694f889d2efSBrooks Davis 
695f889d2efSBrooks Davis 	err = ifc_alloc_unit(ifc, &unit);
696f889d2efSBrooks Davis 	if (err != 0)
697f889d2efSBrooks Davis 		return (err);
698f889d2efSBrooks Davis 
69942a58907SGleb Smirnoff 	err = ifc->ifcs_create(ifc, unit, params);
700f889d2efSBrooks Davis 	if (err != 0) {
701f889d2efSBrooks Davis 		ifc_free_unit(ifc, unit);
702f889d2efSBrooks Davis 		return (err);
703f889d2efSBrooks Davis 	}
704f889d2efSBrooks Davis 
705f889d2efSBrooks Davis 	/* In the wildcard case, we need to update the name. */
706f889d2efSBrooks Davis 	if (wildcard) {
707f889d2efSBrooks Davis 		for (dp = name; *dp != '\0'; dp++);
708f889d2efSBrooks Davis 		if (snprintf(dp, len - (dp-name), "%d", unit) >
709f889d2efSBrooks Davis 		    len - (dp-name) - 1) {
710f889d2efSBrooks Davis 			/*
711f889d2efSBrooks Davis 			 * This can only be a programmer error and
712f889d2efSBrooks Davis 			 * there's no straightforward way to recover if
713f889d2efSBrooks Davis 			 * it happens.
714f889d2efSBrooks Davis 			 */
715f889d2efSBrooks Davis 			panic("if_clone_create(): interface name too long");
716f889d2efSBrooks Davis 		}
717f889d2efSBrooks Davis 
718f889d2efSBrooks Davis 	}
719f889d2efSBrooks Davis 
720f889d2efSBrooks Davis 	return (0);
721f889d2efSBrooks Davis }
722f889d2efSBrooks Davis 
72342a58907SGleb Smirnoff static int
724f889d2efSBrooks Davis ifc_simple_destroy(struct if_clone *ifc, struct ifnet *ifp)
725f889d2efSBrooks Davis {
726f889d2efSBrooks Davis 	int unit;
727f889d2efSBrooks Davis 
728f889d2efSBrooks Davis 	unit = ifp->if_dunit;
729f889d2efSBrooks Davis 
73042a58907SGleb Smirnoff 	if (unit < ifc->ifcs_minifs)
731f889d2efSBrooks Davis 		return (EINVAL);
732f889d2efSBrooks Davis 
73342a58907SGleb Smirnoff 	ifc->ifcs_destroy(ifp);
734f889d2efSBrooks Davis 
735f889d2efSBrooks Davis 	ifc_free_unit(ifc, unit);
736f889d2efSBrooks Davis 
737f889d2efSBrooks Davis 	return (0);
738f889d2efSBrooks Davis }
73909f6ff4fSMatt Macy 
74009f6ff4fSMatt Macy const char *
74109f6ff4fSMatt Macy ifc_name(struct if_clone *ifc)
74209f6ff4fSMatt Macy {
74309f6ff4fSMatt Macy 	return (ifc->ifc_name);
74409f6ff4fSMatt Macy }
74509f6ff4fSMatt Macy 
74609f6ff4fSMatt Macy void
74709f6ff4fSMatt Macy ifc_flags_set(struct if_clone *ifc, int flags)
74809f6ff4fSMatt Macy {
74909f6ff4fSMatt Macy 	ifc->ifc_flags = flags;
75009f6ff4fSMatt Macy }
75109f6ff4fSMatt Macy 
75209f6ff4fSMatt Macy int
75309f6ff4fSMatt Macy ifc_flags_get(struct if_clone *ifc)
75409f6ff4fSMatt Macy {
75509f6ff4fSMatt Macy 	return (ifc->ifc_flags);
75609f6ff4fSMatt Macy }
757