Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: panic: unaligned 64-bit atomic operation on arm32-bit while establishing websocket connection #432

Closed
Himani-relan opened this issue Jan 23, 2024 · 2 comments
Labels
Milestone

Comments

@Himani-relan
Copy link

Himani-relan commented Jan 23, 2024

Hi,
I have upgraded the library version to v1.8.8 and running it on my arm32 machine. While trying to establish a websocket connection it fails with this error : panic: unaligned 64-bit atomic operation
Full logs below:
panic: unaligned 64-bit atomic operation goroutine 38 [running]: 2024-01-23T08:13:24.341158+00:00 4Z6RWM3-idrac 1121111e190f42c48e78746625c64444[4429]: runtime/internal/atomic.panicUnaligned() #011/usr/local/go/src/runtime/internal/atomic/unaligned.go:8 +0x24 runtime/internal/atomic.Load64(0xeae34c) #011/usr/local/go/src/runtime/internal/atomic/atomic_arm.s:280 +0x14 nhooyr.io/websocket.(*netConn).read(0xeae320, {0xe58000, 0x1000, 0x1000})

I am guessing this particular PR changed the code: 0a61ffe?diff=split&w=0

I had to make it work by changing the data type of readExpired and writeExpired to int32 & LoadInt64 and StoreInt64 function into LoadInt32 and StoreInt32 respectively in this module: https://github.com/nhooyr/websocket/blob/master/netconn.go

@nhooyr
Copy link
Contributor

nhooyr commented Jan 23, 2024

Ah darn, good catch will fix.

@nhooyr nhooyr added the bug label Jan 23, 2024
@nhooyr nhooyr added this to the v1.9.0 milestone Jan 23, 2024
@nhooyr
Copy link
Contributor

nhooyr commented Mar 7, 2024

Fixed by #438

@nhooyr nhooyr closed this as completed Mar 7, 2024
nhooyr added a commit that referenced this issue Mar 7, 2024
Fix unaligned load error on 32-bit architectures

Closes #432
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants