CernVM-FS  2.12.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
commit_processor.cc
Go to the documentation of this file.
1 
5 #include "commit_processor.h"
6 
7 #include <time.h>
8 
9 #include <vector>
10 
11 #include "catalog_diff_tool.h"
12 #include "catalog_merge_tool.h"
13 #include "catalog_mgr_ro.h"
14 #include "catalog_mgr_rw.h"
15 #include "compression.h"
16 #include "manifest.h"
17 #include "manifest_fetch.h"
18 #include "network/download.h"
19 #include "params.h"
20 #include "signing_tool.h"
21 #include "statistics.h"
22 #include "statistics_database.h"
23 #include "swissknife.h"
24 #include "swissknife_history.h"
25 #include "util/algorithm.h"
26 #include "util/logging.h"
27 #include "util/pointer.h"
28 #include "util/posix.h"
29 #include "util/raii_temp_dir.h"
30 #include "util/string.h"
31 
32 namespace {
33 
34 PathString RemoveRepoName(const PathString& lease_path) {
35  std::string abs_path = lease_path.ToString();
36  std::string::const_iterator it =
37  std::find(abs_path.begin(), abs_path.end(), '/');
38  if (it != abs_path.end()) {
39  size_t idx = it - abs_path.begin() + 1;
40  return lease_path.Suffix(idx);
41  } else {
42  return lease_path;
43  }
44 }
45 
46 bool CreateNewTag(const RepositoryTag& repo_tag, const std::string& repo_name,
47  const receiver::Params& params, const std::string& temp_dir,
48  const std::string& manifest_path,
49  const std::string& public_key_path,
50  const std::string& proxy) {
52  args['r'].Reset(new std::string(params.spooler_configuration));
53  args['w'].Reset(new std::string(params.stratum0));
54  args['t'].Reset(new std::string(temp_dir));
55  args['m'].Reset(new std::string(manifest_path));
56  args['p'].Reset(new std::string(public_key_path));
57  args['f'].Reset(new std::string(repo_name));
58  args['e'].Reset(new std::string(params.hash_alg_str));
59  args['a'].Reset(new std::string(repo_tag.name()));
60  args['D'].Reset(new std::string(repo_tag.description()));
61  args['x'].Reset(new std::string());
62  args['@'].Reset(new std::string(proxy));
63 
66  const int ret = edit_cmd->Main(args);
67 
68  if (ret) {
69  LogCvmfs(kLogReceiver, kLogSyslogErr, "Error %d creating tag: %s", ret,
70  repo_tag.name().c_str());
71  return false;
72  }
73 
74  return true;
75 }
76 
77 } // namespace
78 
79 namespace receiver {
80 
81 CommitProcessor::CommitProcessor() : num_errors_(0), statistics_(NULL) {}
82 
84 
102  const std::string& lease_path, const shash::Any& old_root_hash,
103  const shash::Any& new_root_hash, const RepositoryTag& tag,
104  uint64_t *final_revision) {
105  RepositoryTag final_tag = tag;
106  // If tag_name is a generic tag, update the time stamp
107  if (final_tag.HasGenericName()) {
108  final_tag.SetGenericName();
109  }
110 
112  "CommitProcessor - lease_path: %s, old hash: %s, new hash: %s, "
113  "tag_name: %s, tag_description: %s",
114  lease_path.c_str(), old_root_hash.ToString(true).c_str(),
115  new_root_hash.ToString(true).c_str(), final_tag.name().c_str(),
116  final_tag.description().c_str());
117 
118  const std::vector<std::string> lease_path_tokens =
119  SplitString(lease_path, '/');
120 
121  const std::string repo_name = lease_path_tokens.front();
122 
123  Params params;
124  if (!GetParamsFromFile(repo_name, &params)) {
125  LogCvmfs(
127  "CommitProcessor - error: Could not get configuration parameters.");
128  return kError;
129  }
130 
131  UniquePtr<ServerTool> server_tool(new ServerTool());
132 
133  if (!server_tool->InitDownloadManager(true, params.proxy)) {
134  LogCvmfs(
136  "CommitProcessor - error: Could not initialize the download manager");
137  return kError;
138  }
139 
140  const std::string public_key = "/etc/cvmfs/keys/" + repo_name + ".pub";
141  if (!server_tool->InitVerifyingSignatureManager(public_key)) {
142  LogCvmfs(
144  "CommitProcessor - error: Could not initialize the signature manager");
145  return kError;
146  }
147 
148  shash::Any manifest_base_hash;
150  params.stratum0, repo_name, manifest_base_hash));
151 
152  // Current catalog from the gateway machine
153  if (!manifest.IsValid()) {
155  "CommitProcessor - error: Could not open repository manifest");
156  return kError;
157  }
158 
160  "CommitProcessor - lease_path: %s, target root hash: %s",
161  lease_path.c_str(),
162  manifest->catalog_hash().ToString(false).c_str());
163 
164  const std::string spooler_temp_dir =
166  assert(!spooler_temp_dir.empty());
167  assert(MkdirDeep(spooler_temp_dir + "/receiver", 0666, true));
168  const std::string temp_dir_root =
169  spooler_temp_dir + "/receiver/commit_processor";
170 
171  const PathString relative_lease_path = RemoveRepoName(PathString(lease_path));
172 
174  "CommitProcessor - lease_path: %s, merging catalogs",
175  lease_path.c_str());
176 
179  merge_tool(params.stratum0, old_root_hash, new_root_hash,
180  relative_lease_path, temp_dir_root,
181  server_tool->download_manager(), manifest.weak_ref(),
182  statistics_);
183  if (!merge_tool.Init()) {
185  "Error: Could not initialize the catalog merge tool");
186  return kError;
187  }
188 
189  std::string new_manifest_path;
190  if (!merge_tool.Run(params, &new_manifest_path, final_revision)) {
192  "CommitProcessor - error: Catalog merge failed");
193  return kMergeFailure;
194  }
195 
196  UniquePtr<RaiiTempDir> raii_temp_dir(RaiiTempDir::Create(temp_dir_root));
197  const std::string temp_dir = raii_temp_dir->dir();
198  const std::string certificate = "/etc/cvmfs/keys/" + repo_name + ".crt";
199  const std::string private_key = "/etc/cvmfs/keys/" + repo_name + ".key";
200 
201  if (!CreateNewTag(final_tag, repo_name, params, temp_dir, new_manifest_path,
202  public_key, params.proxy)) {
203  LogCvmfs(kLogReceiver, kLogSyslogErr, "Error creating tag: %s",
204  final_tag.name().c_str());
205  return kError;
206  }
207 
208  // We need to re-initialize the ServerTool component for signing
209  server_tool.Destroy();
210  server_tool = new ServerTool();
211 
213  "CommitProcessor - lease_path: %s, signing manifest",
214  lease_path.c_str());
215 
216  // Add C_N root catalog hash to reflog through SigningTool,
217  // so garbage collector can later delete it.
218  std::vector<shash::Any> reflog_catalogs;
219  reflog_catalogs.push_back(new_root_hash);
220 
221  SigningTool signing_tool(server_tool.weak_ref());
222  SigningTool::Result res = signing_tool.Run(
223  new_manifest_path, params.stratum0, params.spooler_configuration,
224  temp_dir, certificate, private_key, repo_name, "", "",
225  "/var/spool/cvmfs/" + repo_name + "/reflog.chksum", params.proxy,
226  params.garbage_collection, false, false, reflog_catalogs);
227  switch (res) {
230  "CommitProcessor - error: missing reflog.chksum");
231  return kMissingReflog;
234  "CommitProcessor - error: missing reflog");
235  return kMissingReflog;
236  case SigningTool::kError:
239  "CommitProcessor - error: signing manifest");
240  return kError;
243  "CommitProcessor - lease_path: %s, success.",
244  lease_path.c_str());
245  }
246 
247  {
248  UniquePtr<ServerTool> server_tool(new ServerTool());
249 
250  if (!server_tool->InitDownloadManager(true, params.proxy)) {
251  LogCvmfs(
253  "CommitProcessor - error: Could not initialize the download manager");
254  return kError;
255  }
256 
257  const std::string public_key = "/etc/cvmfs/keys/" + repo_name + ".pub";
258  if (!server_tool->InitVerifyingSignatureManager(public_key)) {
260  "CommitProcessor - error: Could not initialize the signature "
261  "manager");
262  return kError;
263  }
264 
265  shash::Any manifest_base_hash;
267  params.stratum0, repo_name, manifest_base_hash));
268 
270  "CommitProcessor - lease_path: %s, new root hash: %s",
271  lease_path.c_str(),
272  manifest->catalog_hash().ToString(false).c_str());
273  }
274 
275  // Ensure CVMFS_ROOT_HASH is not set in
276  // /var/spool/cvmfs/<REPO_NAME>/client.local
277  const std::string fname = "/var/spool/cvmfs/" + repo_name + "/client.local";
278  if (truncate(fname.c_str(), 0) < 0) {
279  LogCvmfs(kLogReceiver, kLogSyslogErr, "Could not truncate %s\n",
280  fname.c_str());
281  return kError;
282  }
283 
285  if (stats_db != NULL) {
286  if (!stats_db->StorePublishStatistics(statistics_, start_time_, true)) {
288  "Could not store publish statistics");
289  }
290  if (params.upload_stats_db) {
292  upload::Spooler *spooler = upload::Spooler::Construct(sd);
293  if (!stats_db->UploadStatistics(spooler)) {
295  "Could not upload statistics DB to upstream storage");
296  }
297  delete spooler;
298  }
299  delete stats_db;
300 
301  } else {
302  LogCvmfs(kLogReceiver, kLogSyslogErr, "Could not open statistics DB");
303  }
304 
305  return kSuccess;
306 }
307 
309  const std::string &start_time)
310 {
311  statistics_ = st;
312  statistics_->Register("publish.revision", "");
313  start_time_ = start_time;
314 }
315 
316 } // namespace receiver
std::string name() const
Counter * Register(const std::string &name, const std::string &desc)
Definition: statistics.cc:160
const manifest::Manifest * manifest() const
Definition: repository.h:125
void SetGenericName()
Result Run(const std::string &manifest_path, const std::string &repo_url, const std::string &spooler_definition, const std::string &temp_dir, const std::string &certificate="", const std::string &priv_key="", const std::string &repo_name="", const std::string &pwd="", const std::string &meta_info="", const std::string &reflog_chksum_path="", const std::string &proxy="", const bool garbage_collectable=false, const bool bootstrap_shortcuts=false, const bool return_early=false, const std::vector< shash::Any > reflog_catalogs=std::vector< shash::Any >())
Definition: signing_tool.cc:27
std::string description() const
std::string spooler_configuration
Definition: params.h:20
bool UploadStatistics(upload::Spooler *spooler, std::string local_path="")
ShortString Suffix(const unsigned start_at) const
Definition: shortstring.h:198
perf::Statistics * statistics_
std::string ToString(const bool with_suffix=false) const
Definition: hash.h:249
int Main(const ArgumentList &args)
bool GetParamsFromFile(const std::string &repo_name, Params *params)
Definition: params.cc:20
perf::Statistics * statistics_
Definition: repository.h:139
manifest::Manifest * FetchRemoteManifest(const std::string &repository_url, const std::string &repository_name, const shash::Any &base_hash=shash::Any()) const
Definition: server_tool.cc:126
assert((mem||(size==0))&&"Out Of Memory")
bool InitVerifyingSignatureManager(const std::string &pubkey_path)
Definition: server_tool.cc:44
std::string GetSpoolerTempDir(const std::string &spooler_config)
Definition: params.cc:14
std::string hash_alg_str
Definition: params.h:22
bool CreateNewTag(const RepositoryTag &repo_tag, const std::string &repo_name, const receiver::Params &params, const std::string &temp_dir, const std::string &manifest_path, const std::string &public_key_path, const std::string &proxy)
download::DownloadManager * download_manager() const
Definition: server_tool.cc:101
vector< string > SplitString(const string &str, char delim)
Definition: string.cc:290
std::string stratum0
Definition: params.h:18
static RaiiTempDir * Create(const std::string &prefix)
Definition: raii_temp_dir.cc:9
bool MkdirDeep(const std::string &path, const mode_t mode, bool verify_writable)
Definition: posix.cc:846
PathString RemoveRepoName(const PathString &lease_path)
shash::Any catalog_hash() const
Definition: manifest.h:132
static StatisticsDatabase * OpenStandardDB(const std::string repo_name)
bool garbage_collection
Definition: params.h:33
void SetStatistics(perf::Statistics *st, const std::string &start_time)
bool StorePublishStatistics(const perf::Statistics *statistics, const std::string &start_time, const bool success)
bool HasGenericName()
std::string ToString() const
Definition: shortstring.h:141
std::map< char, SharedPtr< std::string > > ArgumentList
Definition: swissknife.h:72
ShortString< kDefaultMaxPath, 0 > PathString
Definition: shortstring.h:217
Result Process(const std::string &lease_path, const shash::Any &old_root_hash, const shash::Any &new_root_hash, const RepositoryTag &tag, uint64_t *final_revision)
std::string proxy
Definition: params.h:19
bool upload_stats_db
Definition: params.h:37
bool InitDownloadManager(const bool follow_redirects, const std::string &proxy, const unsigned max_pool_handles=1)
Definition: server_tool.cc:17
CVMFS_EXPORT void LogCvmfs(const LogSource source, const int mask, const char *format,...)
Definition: logging.cc:528