
The dhcp server is systemd-networkd, and the dhcp plugin can request an ip but can not renew it. The systemd-networkd just ignore the renew request. ``` 2024/09/14 21:46:00 no DHCP packet received within 10s 2024/09/14 21:46:00 retrying in 31.529038 seconds 2024/09/14 21:46:42 no DHCP packet received within 10s 2024/09/14 21:46:42 retrying in 63.150490 seconds 2024/09/14 21:47:45 98184616c91f15419f5cacd012697f85afaa2daeb5d3233e28b0ec21589fb45a/iot/eth1: no more tries 2024/09/14 21:47:45 98184616c91f15419f5cacd012697f85afaa2daeb5d3233e28b0ec21589fb45a/iot/eth1: renewal time expired, rebinding 2024/09/14 21:47:45 Link "eth1" down. Attempting to set up 2024/09/14 21:47:45 98184616c91f15419f5cacd012697f85afaa2daeb5d3233e28b0ec21589fb45a/iot/eth1: lease rebound, expiration is 2024-09-14 22:47:45.309270751 +0800 CST m=+11730.048516519 ``` Follow the https://datatracker.ietf.org/doc/html/rfc2131#section-4.3.6, following options must not be sent in renew - Requested IP Address - Server Identifier Since the upstream code has been inactive for 6 years, we should switch to another dhcpv4 library. The new selected one is https://github.com/insomniacslk/dhcp. Signed-off-by: Songmin Li <lisongmin@protonmail.com>
76 lines
1.6 KiB
Go
76 lines
1.6 KiB
Go
package lz4
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/pierrec/lz4/v4/internal/lz4errors"
|
|
)
|
|
|
|
//go:generate go run golang.org/x/tools/cmd/stringer -type=aState -output state_gen.go
|
|
|
|
const (
|
|
noState aState = iota // uninitialized reader
|
|
errorState // unrecoverable error encountered
|
|
newState // instantiated object
|
|
readState // reading data
|
|
writeState // writing data
|
|
closedState // all done
|
|
)
|
|
|
|
type (
|
|
aState uint8
|
|
_State struct {
|
|
states []aState
|
|
state aState
|
|
err error
|
|
}
|
|
)
|
|
|
|
func (s *_State) init(states []aState) {
|
|
s.states = states
|
|
s.state = states[0]
|
|
}
|
|
|
|
func (s *_State) reset() {
|
|
s.state = s.states[0]
|
|
s.err = nil
|
|
}
|
|
|
|
// next sets the state to the next one unless it is passed a non nil error.
|
|
// It returns whether or not it is in error.
|
|
func (s *_State) next(err error) bool {
|
|
if err != nil {
|
|
s.err = fmt.Errorf("%s: %w", s.state, err)
|
|
s.state = errorState
|
|
return true
|
|
}
|
|
s.state = s.states[s.state]
|
|
return false
|
|
}
|
|
|
|
// nextd is like next but for defers.
|
|
func (s *_State) nextd(errp *error) bool {
|
|
return errp != nil && s.next(*errp)
|
|
}
|
|
|
|
// check sets s in error if not already in error and if the error is not nil or io.EOF,
|
|
func (s *_State) check(errp *error) {
|
|
if s.state == errorState || errp == nil {
|
|
return
|
|
}
|
|
if err := *errp; err != nil {
|
|
s.err = fmt.Errorf("%w[%s]", err, s.state)
|
|
if !errors.Is(err, io.EOF) {
|
|
s.state = errorState
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *_State) fail() error {
|
|
s.state = errorState
|
|
s.err = fmt.Errorf("%w[%s]", lz4errors.ErrInternalUnhandledState, s.state)
|
|
return s.err
|
|
}
|