Skip to content

Commit bffead8

Browse files
paligregkh
authored andcommitted
ppp: Fix generating ppp unit id when ifname is not specified
commit 3125f26 upstream. When registering new ppp interface via PPPIOCNEWUNIT ioctl then kernel has to choose interface name as this ioctl API does not support specifying it. Kernel in this case register new interface with name "ppp<id>" where <id> is the ppp unit id, which can be obtained via PPPIOCGUNIT ioctl. This applies also in the case when registering new ppp interface via rtnl without supplying IFLA_IFNAME. PPPIOCNEWUNIT ioctl allows to specify own ppp unit id which will kernel assign to ppp interface, in case this ppp id is not already used by other ppp interface. In case user does not specify ppp unit id then kernel choose the first free ppp unit id. This applies also for case when creating ppp interface via rtnl method as it does not provide a way for specifying own ppp unit id. If some network interface (does not have to be ppp) has name "ppp<id>" with this first free ppp id then PPPIOCNEWUNIT ioctl or rtnl call fails. And registering new ppp interface is not possible anymore, until interface which holds conflicting name is renamed. Or when using rtnl method with custom interface name in IFLA_IFNAME. As list of allocated / used ppp unit ids is not possible to retrieve from kernel to userspace, userspace has no idea what happens nor which interface is doing this conflict. So change the algorithm how ppp unit id is generated. And choose the first number which is not neither used as ppp unit id nor in some network interface with pattern "ppp<id>". This issue can be simply reproduced by following pppd call when there is no ppp interface registered and also no interface with name pattern "ppp<id>": pppd ifname ppp1 +ipv6 noip noauth nolock local nodetach pty "pppd +ipv6 noip noauth nolock local nodetach notty" Or by creating the one ppp interface (which gets assigned ppp unit id 0), renaming it to "ppp1" and then trying to create a new ppp interface (which will always fails as next free ppp unit id is 1, but network interface with name "ppp1" exists). This patch fixes above described issue by generating new and new ppp unit id until some non-conflicting id with network interfaces is generated. Signed-off-by: Pali Rohár <[email protected]> Cc: [email protected] Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 5df8590 commit bffead8

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

drivers/net/ppp/ppp_generic.c

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
283283
static int ppp_connect_channel(struct channel *pch, int unit);
284284
static int ppp_disconnect_channel(struct channel *pch);
285285
static void ppp_destroy_channel(struct channel *pch);
286-
static int unit_get(struct idr *p, void *ptr);
286+
static int unit_get(struct idr *p, void *ptr, int min);
287287
static int unit_set(struct idr *p, void *ptr, int n);
288288
static void unit_put(struct idr *p, int n);
289289
static void *unit_find(struct idr *p, int n);
@@ -1045,9 +1045,20 @@ static int ppp_unit_register(struct ppp *ppp, int unit, bool ifname_is_set)
10451045
mutex_lock(&pn->all_ppp_mutex);
10461046

10471047
if (unit < 0) {
1048-
ret = unit_get(&pn->units_idr, ppp);
1048+
ret = unit_get(&pn->units_idr, ppp, 0);
10491049
if (ret < 0)
10501050
goto err;
1051+
if (!ifname_is_set) {
1052+
while (1) {
1053+
snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ret);
1054+
if (!__dev_get_by_name(ppp->ppp_net, ppp->dev->name))
1055+
break;
1056+
unit_put(&pn->units_idr, ret);
1057+
ret = unit_get(&pn->units_idr, ppp, ret + 1);
1058+
if (ret < 0)
1059+
goto err;
1060+
}
1061+
}
10511062
} else {
10521063
/* Caller asked for a specific unit number. Fail with -EEXIST
10531064
* if unavailable. For backward compatibility, return -EEXIST
@@ -3378,9 +3389,9 @@ static int unit_set(struct idr *p, void *ptr, int n)
33783389
}
33793390

33803391
/* get new free unit number and associate pointer with it */
3381-
static int unit_get(struct idr *p, void *ptr)
3392+
static int unit_get(struct idr *p, void *ptr, int min)
33823393
{
3383-
return idr_alloc(p, ptr, 0, 0, GFP_KERNEL);
3394+
return idr_alloc(p, ptr, min, 0, GFP_KERNEL);
33843395
}
33853396

33863397
/* put unit number back to a pool */

0 commit comments

Comments
 (0)