X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fctx.go;h=cb1f1f4109ce443aed8ed148f99e5295694cdd34;hb=cf9363f956cb2d93a581c11ed65c5b02910d10d5;hp=7e4d726751f149963fb189dfa5df46bc03727581;hpb=90213583043b3fc723e4214bf96de29a2ba40a35;p=nncp.git diff --git a/src/ctx.go b/src/ctx.go index 7e4d726..cb1f1f4 100644 --- a/src/ctx.go +++ b/src/ctx.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2021 Sergey Matveev +Copyright (C) 2016-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +23,8 @@ import ( "io/ioutil" "os" "path/filepath" + "strconv" + "strings" "syscall" ) @@ -49,6 +51,8 @@ type Ctx struct { MCDRxIfis []string MCDTxIfis map[string]int + + YggdrasilAliases map[string]string } func (ctx *Ctx) FindNode(id string) (*Node, error) { @@ -67,21 +71,30 @@ func (ctx *Ctx) FindNode(id string) (*Node, error) { return node, nil } -func (ctx *Ctx) ensureRxDir(nodeId *NodeId) error { - dirPath := filepath.Join(ctx.Spool, nodeId.String(), string(TRx)) - logMsg := func(les LEs) string { - return fmt.Sprintf("Ensuring directory %s existence", dirPath) +func ensureDir(dirs ...string) error { + p := filepath.Join(dirs...) + fi, err := os.Stat(p) + if err == nil { + if fi.IsDir() { + return nil + } + return fmt.Errorf("%s: is not a directory", p) } - if err := os.MkdirAll(dirPath, os.FileMode(0777)); err != nil { - ctx.LogE("dir-ensure-mkdir", LEs{{"Dir", dirPath}}, err, logMsg) + if !os.IsNotExist(err) { return err } - fd, err := os.Open(dirPath) + return os.MkdirAll(p, os.FileMode(0777)) +} + +func (ctx *Ctx) ensureRxDir(nodeId *NodeId) error { + dirPath := filepath.Join(ctx.Spool, nodeId.String(), string(TRx)) + err := ensureDir(dirPath) if err != nil { - ctx.LogE("dir-ensure-open", LEs{{"Dir", dirPath}}, err, logMsg) - return err + ctx.LogE("dir-ensure-mkdir", LEs{{"Dir", dirPath}}, err, func(les LEs) string { + return fmt.Sprintf("Ensuring directory %s existence", dirPath) + }) } - return fd.Close() + return err } func CtxFromCmdline( @@ -135,6 +148,18 @@ func CtxFromCmdline( } else { ctx.LogPath = logPath } + if strings.HasPrefix(ctx.LogPath, LogFdPrefix) { + ptr, err := strconv.ParseUint( + strings.TrimPrefix(ctx.LogPath, LogFdPrefix), 10, 64, + ) + if err != nil { + return nil, err + } + LogFd = os.NewFile(uintptr(ptr), CfgLogEnv) + if LogFd == nil { + return nil, errors.New("can not open:" + ctx.LogPath) + } + } if showPrgrs { ctx.ShowPrgrs = true }