go-fuse icon indicating copy to clipboard operation
go-fuse copied to clipboard

panic: LARGEFILE (8000) overlaps with LARGEFILE (8000)

Open ncw opened this issue 7 months ago • 0 comments

When I compile and build this library for GOARCH=386 GOOS=linux I get this panic on startup

panic: LARGEFILE (8000) overlaps with LARGEFILE (8000)

goroutine 1 [running]:
github.com/hanwen/go-fuse/v2/fuse.(*flagNames).set(0xd219000, 0x8000, {0x9cdc4c6, 0x9})
	/home/ncw/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print.go:116 +0x25e
github.com/hanwen/go-fuse/v2/fuse.init.1()
	/home/ncw/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print_linux.go:14 +0x79

The panic is issued here

https://github.com/hanwen/go-fuse/blob/cbb13ba8d29c65dd5661be449c56563edcb7f5a1/fuse/print.go#L116

And this comes from this bit of init() code

https://github.com/hanwen/go-fuse/blob/cbb13ba8d29c65dd5661be449c56563edcb7f5a1/fuse/print_linux.go#L14

I think this is because the value is already set here

https://github.com/hanwen/go-fuse/blob/cbb13ba8d29c65dd5661be449c56563edcb7f5a1/fuse/print.go#L67

This is easy to replicate

$ GOOS=linux GOARCH=386 go build
$ ./fusebug 
panic: LARGEFILE (8000) overlaps with LARGEFILE (8000)

goroutine 1 [running]:
github.com/hanwen/go-fuse/v2/fuse.(*flagNames).set(0x90b3000, 0x8000, {0x811e6cf, 0x9})
	/home/ncw/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print.go:116 +0x240
github.com/hanwen/go-fuse/v2/fuse.init.1()
	/home/ncw/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print_linux.go:14 +0x79

with

package main

import (
	"fmt"

	_ "github.com/hanwen/go-fuse/v2/fuse"
)

func main() {
	fmt.Printf("Hello world!")
}

And

module fusebug

go 1.21.4

require github.com/hanwen/go-fuse/v2 v2.4.3-0.20231120175208-cbb13ba8d29c

require golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect

Note this does not replicate on linux/amd64.

On darwin/amd64 and darwin/arm64 it gives

panic: XTIMES (80000000) overlaps with INIT_RESERVED (80000000)

goroutine 1 [running]:
github.com/hanwen/go-fuse/v2/fuse.(*flagNames).set(0xc000313500?, 0x80000000, {0x104de4686?, 0x0?})
	/Users/runner/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print.go:124 +0x15[9](https://github.com/rclone/rclone/actions/runs/7520820006/job/20470909802#step:11:10)
github.com/hanwen/go-fuse/v2/fuse.init.1()
	/Users/runner/go/pkg/mod/github.com/hanwen/go-fuse/[email protected]/fuse/print_darwin.go:[12](https://github.com/rclone/rclone/actions/runs/7520820006/job/20470909802#step:11:13) +0x2b

ncw avatar Jan 15 '24 16:01 ncw