From: Jason A. Donenfeld Date: Mon, 2 Sep 2019 03:32:28 +0000 (-0600) Subject: wintun: take mutex first always X-Git-Tag: 0.0.20190908~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73d3bd9cd5e425c7422084172e63ed2eaa87d8ec;p=thirdparty%2Fwireguard-go.git wintun: take mutex first always This prevents an ABA deadlock with setupapi's internal locks. --- diff --git a/tun/wintun/wintun_windows.go b/tun/wintun/wintun_windows.go index c654b02..e2348c0 100644 --- a/tun/wintun/wintun_windows.go +++ b/tun/wintun/wintun_windows.go @@ -196,6 +196,15 @@ func (pool Pool) GetInterface(ifname string) (*Interface, error) { // interesting complications with its usage. This function returns the network // interface ID and a flag if reboot is required. func (pool Pool) CreateInterface(ifname string, requestedGUID *windows.GUID) (wintun *Interface, rebootRequired bool, err error) { + mutex, err := pool.takeNameMutex() + if err != nil { + return + } + defer func() { + windows.ReleaseMutex(mutex) + windows.CloseHandle(mutex) + }() + // Create an empty device info set for network adapter device class. devInfoList, err := setupapi.SetupDiCreateDeviceInfoListEx(&deviceClassNetGUID, 0, "") if err != nil { @@ -281,15 +290,6 @@ func (pool Pool) CreateInterface(ifname string, requestedGUID *windows.GUID) (wi return } - mutex, err := pool.takeNameMutex() - if err != nil { - return - } - defer func() { - windows.ReleaseMutex(mutex) - windows.CloseHandle(mutex) - }() - defer func() { if err != nil { // The interface failed to install, or the interface ID was unobtainable. Clean-up.