1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#pragma once
///@file
#include "lix/libstore/remote-store.hh"
#include "lix/libstore/remote-store-connection.hh"
#include "lix/libstore/indirect-root-store.hh"
#include "lix/libutil/async-io.hh"
namespace nix {
constexpr inline std::string_view LEGACY_SOCKET_COMBINED = "/socket";
struct UDSRemoteStoreConfig : virtual LocalFSStoreConfig, virtual RemoteStoreConfig
{
UDSRemoteStoreConfig(const Params & params)
: StoreConfig(params)
, LocalFSStoreConfig(params)
, RemoteStoreConfig(params)
{
}
const Setting<std::string> protocol{
this,
"legacy-combined",
"protocol",
R"(
Space-or-comma-separated list of protocols to try to connect to, in preference order.
Currently supported:
- `legacy-combined` (default): legacy wire protocol using a single combined socket.
The provided path will be used *unmodified* to locate the combined daemon socket.
Also supports the special value `any` to try *all* known protocols using the provided
path as the *base* directory for sockets. Unlike `legacy-combined` this will append a
`/socket` to the given path when trying to connect with the legacy-combined protocol.
Ignored unless a path is also present.
)"
};
const std::string name() override { return "Local Daemon Store"; }
std::string doc() override;
};
class UDSRemoteStore : public virtual IndirectRootStore
, public virtual RemoteStore
{
UDSRemoteStoreConfig config_;
public:
UDSRemoteStore(UDSRemoteStoreConfig config);
UDSRemoteStore(const std::string scheme, std::string path, UDSRemoteStoreConfig config);
UDSRemoteStoreConfig & config() override { return config_; }
const UDSRemoteStoreConfig & config() const override { return config_; }
std::string getUri() override;
static std::set<std::string> uriSchemes()
{ return {"unix"}; }
ref<FSAccessor> getFSAccessor() override
{ return LocalFSStore::getFSAccessor(); }
kj::Promise<Result<box_ptr<AsyncInputStream>>>
narFromPath(const StorePath & path, const Activity * context) override
{
return LocalFSStore::narFromPath(path, context);
}
kj::Promise<Result<void>> repairPath(const StorePath & path) override
try {
unsupported(
"repairPath",
HintFmt("This command must be run as %s with %s", "root", "--store local").str()
);
} catch (...) {
return {result::current_exception()};
}
/**
* Implementation of `IndirectRootStore::addIndirectRoot()` which
* delegates to the remote store.
*
* The idea is that the client makes the direct symlink, so it is
* owned managed by the client's user account, and the server makes
* the indirect symlink.
*/
kj::Promise<Result<void>> addIndirectRoot(const Path & path) override;
private:
struct Connection : RemoteStore::Connection
{
AutoCloseFD fd;
int getFD() const override
{
return fd.get();
}
};
kj::Promise<Result<ref<RemoteStore::Connection>>> openConnection() override;
std::optional<std::string> path;
};
void registerUDSRemoteStore();
}
|