]> Cypherpunks.ru repositories - nncp.git/blob - src/lockdir.go
go fmt
[nncp.git] / src / lockdir.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2021 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package nncp
19
20 import (
21         "os"
22         "path/filepath"
23
24         "golang.org/x/sys/unix"
25 )
26
27 func (ctx *Ctx) LockDir(nodeId *NodeId, lockCtx string) (*os.File, error) {
28         if err := ctx.ensureRxDir(nodeId); err != nil {
29                 ctx.LogE("lockdir", SDS{}, err, "")
30                 return nil, err
31         }
32         lockPath := filepath.Join(ctx.Spool, nodeId.String(), lockCtx) + ".lock"
33         dirLock, err := os.OpenFile(
34                 lockPath,
35                 os.O_CREATE|os.O_WRONLY,
36                 os.FileMode(0666),
37         )
38         if err != nil {
39                 ctx.LogE("lockdir", SDS{"path": lockPath}, err, "")
40                 return nil, err
41         }
42         err = unix.Flock(int(dirLock.Fd()), unix.LOCK_EX|unix.LOCK_NB)
43         if err != nil {
44                 ctx.LogE("lockdir", SDS{"path": lockPath}, err, "")
45                 dirLock.Close() // #nosec G104
46                 return nil, err
47         }
48         return dirLock, nil
49 }
50
51 func (ctx *Ctx) UnlockDir(fd *os.File) {
52         if fd != nil {
53                 unix.Flock(int(fd.Fd()), unix.LOCK_UN) // #nosec G104
54                 fd.Close()                             // #nosec G104
55         }
56 }