Track down race conditions with Go
Classic Computer Science
The classical method for slowing down racers relies on what are known as mutex (mutually exclusive) constructs. Go's sync package provides mutex elements that use Lock()
to create a roadblock for subsequent goroutines and clear it again with Unlock()
after the critical region has been navigated.
Listing 5 shows the implementation of the book()
airplane-seat booking function; the call to the function in Line 16 is surrounded by a pair of mutexes. Before the call, line 15 uses mutex.Lock()
to block the section for subsequent goroutines. After the job is done, line 17 uses mutex.Unlock()
to lift the block again.
Listing 5
airline-mutex.go
01 package main 02 import ( 03 "fmt" 04 "sync" 05 "time" 06 ) 07 08 func main() { 09 seats := 1 10 mutex := &sync.Mutex{} 11 12 for i := 0; i < 2; i++ { 13 go func(id int) { 14 time.Sleep(100 * time.Millisecond) 15 mutex.Lock() 16 book(id, &seats) 17 mutex.Unlock() 18 }(i) 19 } 20 21 time.Sleep(1 * time.Second) 22 fmt.Println("") 23 } 24 25 func book(id int, seats *int) { 26 if *seats > 0 { 27 fmt.Printf("%d booked!\n", id) 28 *seats = 0 29 } else { 30 fmt.Printf("%d missed out.\n", id) 31 } 32 }
For the sake of clarity, the book()
function now encapsulates the posting process starting in line 25. As its input, it expects the ID of the goroutine and a pointer to the seats
variable, whose value it adjusts accordingly in case of a successful booking.
Height-Adjustable Barrier
One alternative to the mutex construct is provided by the sync.WaitGroup
construct, also from the sync package of the Go core library. Its Add()
function sets up a block with an adjustable height. A subsequent Wait()
waits for the block to be lifted, which a call to the Done()
function is happy to do.
The smart thing here is that multiple program parts can set up any number of blocks through subsequent calls to Add()
. You then need the same number of calls to Done()
before Wait()
grants passage again.
The code in Listing 6 waits for this to happen before starting the critical section with a prophylactic Wait()
statement in line 15, but the code continues immediately because there are no blocks in the way in the initial state. Line 16 then calls Add(1)
to add a barrier just before booking. Afterwards, book()
in line 17 can calmly make the booking, before line 18 uses Done()
to take down the barrier again.
Listing 6
airline-wg.go
01 package main 02 import ( 03 "fmt" 04 "sync" 05 "time" 06 ) 07 08 func main() { 09 seats := 1 10 wg := &sync.WaitGroup{} 11 12 for i := 0; i < 2; i++ { 13 go func(id int) { 14 time.Sleep(100 * time.Millisecond) 15 wg.Wait() 16 wg.Add(1) 17 book(id, &seats) 18 wg.Done() 19 }(i) 20 } 21 22 time.Sleep(1 * time.Second) 23 fmt.Println("") 24 } 25 26 func book(id int, seats *int) { 27 if *seats > 0 { 28 fmt.Printf("%d booked!\n", id) 29 *seats = 0 30 } else { 31 fmt.Printf("%d missed out.\n", id) 32 } 33 }
Conclusions
As always in Go, there are several possible solutions to the challenges of controlling racing goroutines – after all, these are well-known programming problems.
If two related instructions such as checking and placing a shared variable cannot be done atomically, you need to use a synchronization tool to temporarily block the critical time window between the instructions – to keep out any program threads attempting to rush in.
And always remember to clear the block later on, even if the booking fails for some reason. Otherwise, you have built a permanent lock into your program, which might consume resources or block access to some resources entirely. Test every case to make sure!
Infos
- Go: "Programming Snapshot – Golang" by Mike Schilli, Linux Magazine issue 250, September 2021, p. 54-60
- Listings for this article: ftp://ftp.linux-magazine.com/pub/listings/linux-magazine.com/251/
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.