]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/lockdir.go
Forbid any later GNU GPL versions autousage
[nncp.git] / src / cypherpunks.ru / nncp / lockdir.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 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, xx TRxTx) (*os.File, error) {
28         ctx.ensureRxDir(nodeId)
29         lockPath := filepath.Join(ctx.Spool, nodeId.String(), string(xx)) + ".lock"
30         dirLock, err := os.OpenFile(
31                 lockPath,
32                 os.O_CREATE|os.O_WRONLY,
33                 os.FileMode(0600),
34         )
35         if err != nil {
36                 ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
37                 return nil, err
38         }
39         err = unix.Flock(int(dirLock.Fd()), unix.LOCK_EX|unix.LOCK_NB)
40         if err != nil {
41                 ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
42                 dirLock.Close()
43                 return nil, err
44         }
45         return dirLock, nil
46 }
47
48 func (ctx *Ctx) UnlockDir(fd *os.File) {
49         if fd != nil {
50                 unix.Flock(int(fd.Fd()), unix.LOCK_UN)
51                 fd.Close()
52         }
53 }