ceph/src/cfuse.cc

109 lines
2.7 KiB
C++
Raw Normal View History

// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#include <sys/stat.h>
#include <iostream>
#include <string>
using namespace std;
#include "config.h"
#include "client/Client.h"
#include "client/fuse.h"
#include "client/fuse_ll.h"
#include "msg/SimpleMessenger.h"
#include "mon/MonClient.h"
#include "common/Timer.h"
#ifndef DARWIN
#include <envz.h>
#endif // DARWIN
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
2008-01-01 22:04:31 +00:00
int main(int argc, const char **argv, const char *envp[]) {
//cerr << "cfuse starting " << myrank << "/" << world << std::endl;
2008-01-01 22:04:31 +00:00
vector<const char*> args;
argv_to_vec(argc, argv, args);
parse_config_options(args);
// args for fuse
vec_to_argv(args, argc, argv);
// FUSE will chdir("/"); be ready.
g_conf.use_abspaths = true;
if (g_conf.clock_tare) g_clock.tare();
2008-06-18 14:11:20 +00:00
// check for 32-bit arch
if (sizeof(long) == 4) {
cerr << std::endl;
cerr << "WARNING: Ceph inode numbers are 64 bits wide, and FUSE on 32-bit kernels does" << std::endl;
cerr << " not cope well with that situation. Expect to crash shortly." << std::endl;
cerr << std::endl;
}
// get monmap
MonMap monmap;
MonClient mc;
if (mc.get_monmap(&monmap) < 0)
return -1;
// start up network
2008-01-26 17:33:13 +00:00
rank.bind();
cout << "bound to " << rank.get_rank_addr() << ", mounting ceph" << std::endl;
rank.start();
rank.set_policy(entity_name_t::TYPE_MON, Rank::Policy::lossy_fast_fail());
rank.set_policy(entity_name_t::TYPE_MDS, Rank::Policy::lossless());
rank.set_policy(entity_name_t::TYPE_OSD, Rank::Policy::lossless());
2008-08-02 21:56:15 +00:00
// start client
Client *client = new Client(rank.register_entity(entity_name_t::CLIENT()), &monmap);
client->init();
// start up fuse
// use my argc, argv (make sure you pass a mount point!)
client->mount();
2008-01-25 20:04:31 +00:00
create_courtesy_output_symlink("client", client->get_nodeid());
2008-01-25 20:10:45 +00:00
cout << "starting fuse" << std::endl;
//cerr << "starting fuse on pid " << getpid() << std::endl;
if (g_conf.fuse_ll)
ceph_fuse_ll_main(client, argc, argv);
else
ceph_fuse_main(client, argc, argv);
//cerr << "fuse finished on pid " << getpid() << std::endl;
2008-01-25 20:10:45 +00:00
cout << "fuse finished, unmounting ceph" << std::endl;
client->unmount();
cout << "unmounted" << std::endl;
client->shutdown();
delete client;
// wait for messenger to finish
rank.wait();
return 0;
}