X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fipcp.c;h=48d7095f58ad3fa517a9763d7e566c76e2e3ced5;hb=31db94f4f74809b687ef25e369b449b02964c6f8;hp=e9738fe4d894dd9291317412e4a8a93d331db19c;hpb=a243f217f1c6ac1aa7793806bc88590d077f490a;p=ppp.git diff --git a/pppd/ipcp.c b/pppd/ipcp.c index e9738fe..48d7095 100644 --- a/pppd/ipcp.c +++ b/pppd/ipcp.c @@ -55,6 +55,7 @@ #include #include #include +#include #include "pppd.h" #include "fsm.h" @@ -1788,6 +1789,7 @@ ipcp_up(f) ipcp_options *ho = &ipcp_hisoptions[f->unit]; ipcp_options *go = &ipcp_gotoptions[f->unit]; ipcp_options *wo = &ipcp_wantoptions[f->unit]; + int ifindex; IPCPDEBUG(("ipcp: up")); @@ -1901,9 +1903,18 @@ ipcp_up(f) } #endif + ifindex = if_nametoindex(ifname); + /* run the pre-up script, if any, and wait for it to finish */ ipcp_script(_PATH_IPPREUP, 1); + /* check if preup script renamed the interface */ + if (!if_indextoname(ifindex, ifname)) { + error("Interface index %d failed to get renamed by a pre-up script", ifindex); + ipcp_close(f->unit, "Interface configuration failed"); + return; + } + /* bring the interface up for IP */ if (!sifup(f->unit)) { if (debug)