From eac9aac53d1ea725d31f3df3cf3e4d3c52f40034 Mon Sep 17 00:00:00 2001 From: ykpcx <52552971+xcpky@users.noreply.github.com> Date: Sat, 18 Jan 2025 17:31:05 +0800 Subject: [PATCH] fix(config): correct the truncation of process name(comm name) (#737) --- component/routing/function_parser.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/component/routing/function_parser.go b/component/routing/function_parser.go index c125f1026..86786aef6 100644 --- a/component/routing/function_parser.go +++ b/component/routing/function_parser.go @@ -108,8 +108,8 @@ func ProcessNameParserFactory(callback func(f *config_parser.Function, procNames return func(log *logrus.Logger, f *config_parser.Function, key string, paramValueGroup []string, overrideOutbound *Outbound) (err error) { var procNames [][consts.TaskCommLen]byte for _, v := range paramValueGroup { - if len([]byte(v)) > consts.TaskCommLen { - log.Infof(`pname routing: trim "%v" to "%v" because it is too long.`, v, string([]byte(v)[:consts.TaskCommLen])) + if len([]byte(v)) > consts.TaskCommLen - 1 { + log.Infof(`pname routing: trim "%v" to "%v" because it is too long.`, v, string([]byte(v)[:consts.TaskCommLen-1])) } procNames = append(procNames, toProcessName(v)) } @@ -134,6 +134,6 @@ func parsePrefixes(values []string) (cidrs []netip.Prefix, err error) { func toProcessName(processName string) (procName [consts.TaskCommLen]byte) { n := []byte(processName) - copy(procName[:], n) + copy(procName[:consts.TaskCommLen-1], n) return procName }