12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271 |
- /* Virtual File System: Midnight Commander file system.
-
- Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
- 2004, 2005, 2007 Free Software Foundation, Inc.
- Written by Miguel de Icaza
- Andrej Borsenkow
- Norbert Warmuth
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public License
- as published by the Free Software Foundation; either version 2 of
- the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Library General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
- /**
- * \file
- * \brief Source: Midnight Commander file system
- * \author Miguel de Icaza
- * \author Andrej Borsenkow
- * \author Norbert Warmuth
- *
- * Namespace: exports mcfs_vfs_ops, tcp_invalidate_socket
- */
- #include <config.h>
- #ifdef ENABLE_VFS_MCFS
- #include <stdio.h>
- #include <errno.h>
- #include <string.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <pwd.h>
- #include <sys/types.h> /* POSIX-required by sys/socket.h and netdb.h */
- #include <netdb.h> /* struct hostent */
- #include <sys/socket.h> /* AF_INET */
- #include <netinet/in.h> /* struct in_addr */
- #ifdef HAVE_ARPA_INET_H
- #include <arpa/inet.h>
- #endif
- #ifdef HAVE_PMAP_SET
- #include <rpc/rpc.h>
- #include <rpc/pmap_prot.h>
- #ifdef HAVE_RPC_PMAP_CLNT_H
- #include <rpc/pmap_clnt.h>
- #endif
- #endif
- #include "lib/global.h"
- #include "src/wtools.h" /* message() */
- #include "src/main.h" /* print_vfs_message */
- #include "utilvfs.h"
- #include "vfs.h"
- #include "vfs-impl.h"
- #include "mcfs.h"
- #include "mcfsutil.h"
- #include "netutil.h"
- #ifndef INADDR_NONE
- # define INADDR_NONE (0xffffffffU)
- #endif
- #define MCFS_MAX_CONNECTIONS 32
- static struct _mcfs_connection {
- char *host;
- char *user;
- char *home;
- int sock;
- int port;
- int version;
- } mcfs_connections[MCFS_MAX_CONNECTIONS];
- #define mcserver_port 9876
- typedef struct _mcfs_connection mcfs_connection;
- typedef struct {
- int handle;
- mcfs_connection *conn;
- } mcfs_handle;
- static char *mcfs_gethome (mcfs_connection * mc);
- static int my_errno;
- static struct vfs_class vfs_mcfs_ops;
- /* Extract the hostname and username from the path */
- /* path is in the form: hostname:user/remote-dir */
- static char *
- mcfs_get_host_and_username (const char *path, char **host, char **user,
- int *port, char **pass)
- {
- return vfs_split_url (path, host, user, port, pass, 0, 0);
- }
- static void
- mcfs_fill_names (struct vfs_class *me, fill_names_f func)
- {
- int i;
- char *name;
- (void) me;
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++) {
- if (mcfs_connections[i].host == 0)
- continue;
- name = g_strconcat ("/#mc:", mcfs_connections[i].user,
- "@", mcfs_connections[i].host, (char *) NULL);
- (*func) (name);
- g_free (name);
- }
- }
- /* This routine checks the server RPC version and logs the user in */
- static int
- mcfs_login_server (int my_socket, char *user, int port,
- int port_autodetected, char *netrcpass, int *version)
- {
- int result;
- char *pass;
- /* Send the version number */
- rpc_send (my_socket, RPC_INT, *version, RPC_END);
- if (0 == rpc_get (my_socket, RPC_INT, &result, RPC_END))
- return 0;
- if (result != MC_VERSION_OK) {
- message (D_ERROR, _(" MCFS "),
- _(" The server does not support this version "));
- close (my_socket);
- return 0;
- }
- /* FIXME: figure out why last_current_dir used to be passed here */
- rpc_send (my_socket, RPC_INT, MC_LOGIN, RPC_STRING, "/",
- RPC_STRING, user, RPC_END);
- if (0 == rpc_get (my_socket, RPC_INT, &result, RPC_END))
- return 0;
- if (result == MC_NEED_PASSWORD) {
- if (port > 1024 && port_autodetected) {
- int v;
- v = query_dialog (_("Warning"),
- _
- (" The remote server is not running on a system port \n"
- " you need a password to log in, but the information may \n"
- " not be safe on the remote side. Continue? \n"),
- D_ERROR, 2, _("&Yes"), _("&No"));
- if (v == 1) {
- close (my_socket);
- return 0;
- }
- }
- if (netrcpass != NULL)
- pass = g_strdup (netrcpass);
- else
- pass = vfs_get_password (_(" MCFS Password required "));
- if (!pass) {
- rpc_send (my_socket, RPC_INT, MC_QUIT, RPC_END);
- close (my_socket);
- return 0;
- }
- rpc_send (my_socket, RPC_INT, MC_PASS, RPC_STRING, pass, RPC_END);
- wipe_password (pass);
- if (0 == rpc_get (my_socket, RPC_INT, &result, RPC_END))
- return 0;
- if (result != MC_LOGINOK) {
- message (D_ERROR, _(" MCFS "), _(" Invalid password "));
- rpc_send (my_socket, RPC_INT, MC_QUIT, RPC_END);
- close (my_socket);
- return 0;
- }
- }
- return my_socket;
- }
- static int
- mcfs_get_remote_port (struct sockaddr_in *sin, int *version)
- {
- #ifdef HAVE_PMAP_GETMAPS
- int port;
- struct pmaplist *pl;
- *version = 1;
- port = mcserver_port;
- for (pl = pmap_getmaps (sin); pl; pl = pl->pml_next)
- if (pl->pml_map.pm_prog == RPC_PROGNUM
- && pl->pml_map.pm_prot == IPPROTO_TCP
- && pl->pml_map.pm_vers >= (unsigned long) *version) {
- *version = (int) pl->pml_map.pm_vers;
- port = pl->pml_map.pm_port;
- }
- return port;
- #else
- #ifdef HAVE_PMAP_GETPORT
- int port;
- for (*version = RPC_PROGVER; *version >= 1; (*version)--)
- port = pmap_getport (sin, RPC_PROGNUM, *version, IPPROTO_TCP);
- if (port != NULL)
- return port;
- #endif /* HAVE_PMAP_GETPORT */
- *version = 1;
- return mcserver_port;
- #endif /* HAVE_PMAP_GETMAPS */
- }
- /* This used to be in utilvfs.c, but as it deals with portmapper, it
- is probably useful for mcfs */
- static int
- mcfs_create_tcp_link (const char *host, int *port, int *version, const char *caller)
- {
- struct sockaddr_in server_address;
- unsigned long inaddr;
- struct hostent *hp;
- int my_socket;
- if (!*host)
- return 0;
- memset ((char *) &server_address, 0, sizeof (server_address));
- server_address.sin_family = AF_INET;
- /* Try to use the dotted decimal number */
- inaddr = inet_addr (host);
- if (inaddr != INADDR_NONE) {
- memcpy ((char *) &server_address.sin_addr, (char *) &inaddr,
- sizeof (inaddr));
- } else {
- hp = gethostbyname (host);
- if (hp == NULL) {
- message (D_ERROR, caller, _(" Cannot locate hostname: %s "),
- host);
- return 0;
- }
- memcpy ((char *) &server_address.sin_addr, (char *) hp->h_addr,
- hp->h_length);
- }
- /* Try to contact a remote portmapper to obtain the listening port */
- if (*port == 0) {
- *port = mcfs_get_remote_port (&server_address, version);
- if (*port < 1)
- return 0;
- } else
- *version = 1;
- server_address.sin_port = htons (*port);
- my_socket = socket (AF_INET, SOCK_STREAM, 0);
- if (my_socket < 0) {
- message (D_ERROR, caller, _(" Cannot create socket: %s "),
- unix_error_string (errno));
- return 0;
- }
- if (connect (my_socket, (struct sockaddr *) &server_address,
- sizeof (server_address)) < 0) {
- message (D_ERROR, caller, _(" Cannot connect to server: %s "),
- unix_error_string (errno));
- close (my_socket);
- return 0;
- }
- return my_socket;
- }
- static int
- mcfs_open_tcp_link (char *host, char *user,
- int *port, char *netrcpass, int *version)
- {
- int my_socket;
- int old_port = *port;
- my_socket = mcfs_create_tcp_link (host, port, version, " MCfs ");
- if (my_socket <= 0)
- return 0;
- /* We got the connection to the server, verify if the server
- implements our version of the RPC mechanism and then login
- the user.
- */
- return mcfs_login_server (my_socket, user, *port, old_port == 0,
- netrcpass, version);
- }
- static int mcfs_get_free_bucket_init = 1;
- static mcfs_connection *
- mcfs_get_free_bucket (void)
- {
- int i;
- if (mcfs_get_free_bucket_init) {
- mcfs_get_free_bucket_init = 0;
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++)
- mcfs_connections[i].host = 0;
- }
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++) {
- if (!mcfs_connections[i].host)
- return &mcfs_connections[i];
- }
- /* This can't happend, since we have checked for max connections before */
- vfs_die ("Internal error: mcfs_get_free_bucket");
- return 0; /* shut up, stupid gcc */
- }
- /* This routine keeps track of open connections */
- /* Returns a connected socket to host */
- static mcfs_connection *
- mcfs_open_link (char *host, char *user, int *port, char *netrcpass)
- {
- static int mcfs_open_connections = 0;
- int i, sock, version;
- mcfs_connection *bucket;
- /* Is the link actually open? */
- if (mcfs_get_free_bucket_init) {
- mcfs_get_free_bucket_init = 0;
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++)
- mcfs_connections[i].host = 0;
- } else
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++) {
- if (!mcfs_connections[i].host)
- continue;
- if ((strcmp (host, mcfs_connections[i].host) == 0) &&
- (strcmp (user, mcfs_connections[i].user) == 0))
- return &mcfs_connections[i];
- }
- if (mcfs_open_connections == MCFS_MAX_CONNECTIONS) {
- message (D_ERROR, MSG_ERROR, _(" Too many open connections "));
- return 0;
- }
- sock = mcfs_open_tcp_link (host, user, port, netrcpass, &version);
- if (sock == 0)
- return 0;
- bucket = mcfs_get_free_bucket ();
- mcfs_open_connections++;
- bucket->host = g_strdup (host);
- bucket->user = g_strdup (user);
- bucket->home = 0;
- bucket->port = *port;
- bucket->sock = sock;
- bucket->version = version;
- return bucket;
- }
- static int
- mcfs_is_error (int result, int errno_num)
- {
- if (!(result == -1))
- return my_errno = 0;
- else
- my_errno = errno_num;
- return 1;
- }
- static int
- mcfs_set_error (int result, int errno_num)
- {
- if (result == -1)
- my_errno = errno_num;
- else
- my_errno = 0;
- return result;
- }
- static char *
- mcfs_get_path (mcfs_connection **mc, const char *path)
- {
- char *user, *host, *remote_path;
- char *pass;
- int port;
- /* An absolute path name, try to determine connection socket */
- if (strncmp (path, "/#mc:", 5))
- return NULL;
- path += 5;
- /* Port = 0 means that mcfs_create_tcp_link will try to contact the
- * remote portmapper to get the port number
- */
- port = 0;
- remote_path = mcfs_get_host_and_username (path, &host, &user, &port, &pass);
- if (remote_path != NULL) {
- *mc = mcfs_open_link (host, user, &port, pass);
- if (*mc == NULL) {
- g_free (remote_path);
- remote_path = NULL;
- }
- }
- g_free (host);
- g_free (user);
- if (pass)
- wipe_password (pass);
- if (!remote_path)
- return NULL;
- /* NOTE: tildes are deprecated. See ftpfs.c */
- {
- int f = !strcmp (remote_path, "/~");
- if (f || !strncmp (remote_path, "/~/", 3)) {
- char *s;
- s = concat_dir_and_file (mcfs_gethome (*mc),
- remote_path + 3 - f);
- g_free (remote_path);
- remote_path = s;
- }
- }
- return remote_path;
- }
- /* Simple function for routines returning only an integer from the server */
- static int
- mcfs_handle_simple_error (int sock, int return_status)
- {
- int status, error;
- if (0 == rpc_get (sock, RPC_INT, &status, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- if (mcfs_is_error (status, error))
- return -1;
- if (return_status)
- return status;
- return 0;
- }
- /* Nice wrappers */
- static int
- mcfs_rpc_two_paths (int command, const char *s1, const char *s2)
- {
- mcfs_connection *mc;
- char *r1, *r2;
- r1 = mcfs_get_path (&mc, s1);
- if (r1 == NULL)
- return -1;
- r2 = mcfs_get_path (&mc, s2);
- if (r2 == NULL) {
- g_free (r1);
- return -1;
- }
- rpc_send (mc->sock,
- RPC_INT, command, RPC_STRING, r1, RPC_STRING, r2, RPC_END);
- g_free (r1);
- g_free (r2);
- return mcfs_handle_simple_error (mc->sock, 0);
- }
- static int
- mcfs_rpc_path (int command, const char *path)
- {
- mcfs_connection *mc;
- char *remote_file;
- remote_file = mcfs_get_path (&mc, path);
- if (remote_file == NULL)
- return -1;
- rpc_send (mc->sock,
- RPC_INT, command, RPC_STRING, remote_file, RPC_END);
- g_free (remote_file);
- return mcfs_handle_simple_error (mc->sock, 0);
- }
- static int
- mcfs_rpc_path_int (int command, const char *path, int data)
- {
- mcfs_connection *mc;
- char *remote_file;
- remote_file = mcfs_get_path (&mc, path);
- if (remote_file == NULL)
- return -1;
- rpc_send (mc->sock,
- RPC_INT, command,
- RPC_STRING, remote_file, RPC_INT, data, RPC_END);
- g_free (remote_file);
- return mcfs_handle_simple_error (mc->sock, 0);
- }
- static int
- mcfs_rpc_path_int_int (int command, const char *path, int n1, int n2)
- {
- mcfs_connection *mc;
- char *remote_file;
- remote_file = mcfs_get_path (&mc, path);
- if (remote_file == NULL)
- return -1;
- rpc_send (mc->sock,
- RPC_INT, command,
- RPC_STRING, remote_file, RPC_INT, n1, RPC_INT, n2, RPC_END);
- g_free (remote_file);
- return mcfs_handle_simple_error (mc->sock, 0);
- }
- static char *
- mcfs_gethome (mcfs_connection *mc)
- {
- char *buffer;
- if (mc->home)
- return g_strdup (mc->home);
- else {
- rpc_send (mc->sock, RPC_INT, MC_GETHOME, RPC_END);
- if (0 == rpc_get (mc->sock, RPC_STRING, &buffer, RPC_END))
- return g_strdup (PATH_SEP_STR);
- mc->home = buffer;
- return g_strdup (buffer);
- }
- }
- /* The callbacks */
- static void *
- mcfs_open (struct vfs_class *me, const char *file, int flags, int mode)
- {
- char *remote_file;
- mcfs_connection *mc;
- int result, error_num;
- mcfs_handle *remote_handle;
- (void) me;
- remote_file = mcfs_get_path (&mc, file);
- if (remote_file == NULL)
- return 0;
- rpc_send (mc->sock, RPC_INT, MC_OPEN, RPC_STRING, remote_file, RPC_INT,
- flags, RPC_INT, mode, RPC_END);
- g_free (remote_file);
- if (0 ==
- rpc_get (mc->sock, RPC_INT, &result, RPC_INT, &error_num, RPC_END))
- return 0;
- if (mcfs_is_error (result, error_num))
- return 0;
- remote_handle = g_new (mcfs_handle, 2);
- remote_handle->handle = result;
- remote_handle->conn = mc;
- return remote_handle;
- }
- static ssize_t
- mcfs_read (void *data, char *buffer, int count)
- {
- mcfs_handle *info = (mcfs_handle *) data;
- int result, error;
- int handle;
- mcfs_connection *mc;
- mc = info->conn;
- handle = info->handle;
- rpc_send (mc->sock, RPC_INT, MC_READ, RPC_INT, handle,
- RPC_INT, count, RPC_END);
- if (0 ==
- rpc_get (mc->sock, RPC_INT, &result, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- if (mcfs_is_error (result, error))
- return 0;
- if (0 == rpc_get (mc->sock, RPC_BLOCK, result, buffer, RPC_END))
- return mcfs_set_error (-1, EIO);
- return result;
- }
- static ssize_t
- mcfs_write (void *data, const char *buf, int nbyte)
- {
- mcfs_handle *info = (mcfs_handle *) data;
- mcfs_connection *mc;
- int handle;
- mc = info->conn;
- handle = info->handle;
- rpc_send (mc->sock,
- RPC_INT, MC_WRITE,
- RPC_INT, handle,
- RPC_INT, nbyte, RPC_BLOCK, nbyte, buf, RPC_END);
- return mcfs_handle_simple_error (mc->sock, 1);
- }
- static int
- mcfs_close (void *data)
- {
- mcfs_handle *info = (mcfs_handle *) data;
- mcfs_connection *mc;
- int handle, result, error;
- if (!data)
- return -1;
- handle = info->handle;
- mc = info->conn;
- rpc_send (mc->sock, RPC_INT, MC_CLOSE, RPC_INT, handle, RPC_END);
- if (0 ==
- rpc_get (mc->sock, RPC_INT, &result, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- mcfs_is_error (result, error);
- g_free (data);
- return result;
- }
- static int
- mcfs_errno (struct vfs_class *me)
- {
- (void) me;
- return my_errno;
- }
- typedef struct dir_entry {
- char *text;
- struct dir_entry *next;
- struct stat my_stat;
- int merrno;
- } dir_entry;
- typedef struct {
- mcfs_connection *conn;
- int handle;
- dir_entry *entries;
- dir_entry *current;
- } opendir_info;
- static void *
- mcfs_opendir (struct vfs_class *me, const char *dirname)
- {
- opendir_info *mcfs_info;
- mcfs_connection *mc;
- int handle, error_num;
- char *remote_dir;
- int result;
- (void) me;
- remote_dir = mcfs_get_path (&mc, dirname);
- if (remote_dir == NULL)
- return NULL;
- rpc_send (mc->sock, RPC_INT, MC_OPENDIR, RPC_STRING, remote_dir,
- RPC_END);
- g_free (remote_dir);
- if (0 ==
- rpc_get (mc->sock, RPC_INT, &result, RPC_INT, &error_num, RPC_END))
- return NULL;
- if (mcfs_is_error (result, error_num))
- return NULL;
- handle = result;
- mcfs_info = g_new (opendir_info, 1);
- mcfs_info->conn = mc;
- mcfs_info->handle = handle;
- mcfs_info->entries = 0;
- mcfs_info->current = 0;
- return (void *) mcfs_info;
- }
- static int mcfs_get_stat_info (mcfs_connection * mc, struct stat *buf);
- static int
- mcfs_loaddir (opendir_info *mcfs_info)
- {
- int status, error;
- mcfs_connection *mc = mcfs_info->conn;
- int lc_link = mc->sock;
- int first = 1;
- rpc_send (lc_link, RPC_INT, MC_READDIR, RPC_INT, mcfs_info->handle,
- RPC_END);
- for (;;) {
- int entry_len;
- dir_entry *new_entry;
- if (!rpc_get (lc_link, RPC_INT, &entry_len, RPC_END))
- return 0;
- if (entry_len == 0)
- break;
- new_entry = g_new (dir_entry, 1);
- new_entry->text = g_new0 (char, entry_len + 1);
- new_entry->next = 0;
- if (first) {
- mcfs_info->entries = new_entry;
- mcfs_info->current = new_entry;
- first = 0;
- } else {
- mcfs_info->current->next = new_entry;
- mcfs_info->current = new_entry;
- }
- if (!rpc_get
- (lc_link, RPC_BLOCK, entry_len, new_entry->text, RPC_END))
- return 0;
- /* Then we get the status from the lstat */
- if (!rpc_get (lc_link, RPC_INT, &status, RPC_INT, &error, RPC_END))
- return 0;
- if (mcfs_is_error (status, error))
- new_entry->merrno = error;
- else {
- new_entry->merrno = 0;
- if (!mcfs_get_stat_info (mc, &(new_entry->my_stat)))
- return 0;
- }
- }
- mcfs_info->current = mcfs_info->entries;
- return 1;
- }
- static void
- mcfs_free_dir (dir_entry *de)
- {
- if (!de)
- return;
- mcfs_free_dir (de->next);
- g_free (de->text);
- g_free (de);
- }
- static union vfs_dirent mcfs_readdir_data;
- /* The readdir routine loads the complete directory */
- /* It's too slow to ask the server each time */
- /* It now also sends the complete lstat information for each file */
- static struct stat *cached_lstat_info;
- static void *
- mcfs_readdir (void *info)
- {
- opendir_info *mcfs_info;
- char *dirent_dest;
- mcfs_info = (opendir_info *) info;
- if (!mcfs_info->entries)
- if (!mcfs_loaddir (mcfs_info))
- return NULL;
- if (mcfs_info->current == 0) {
- cached_lstat_info = 0;
- mcfs_free_dir (mcfs_info->entries);
- mcfs_info->entries = 0;
- return NULL;
- }
- dirent_dest = mcfs_readdir_data.dent.d_name;
- g_strlcpy (dirent_dest, mcfs_info->current->text, MC_MAXPATHLEN);
- cached_lstat_info = &mcfs_info->current->my_stat;
- mcfs_info->current = mcfs_info->current->next;
- compute_namelen (&mcfs_readdir_data.dent);
- return &mcfs_readdir_data;
- }
- static int
- mcfs_closedir (void *info)
- {
- opendir_info *mcfs_info = (opendir_info *) info;
- dir_entry *p, *q;
- rpc_send (mcfs_info->conn->sock, RPC_INT, MC_CLOSEDIR,
- RPC_INT, mcfs_info->handle, RPC_END);
- for (p = mcfs_info->entries; p;) {
- q = p;
- p = p->next;
- g_free (q->text);
- g_free (q);
- }
- g_free (info);
- return 0;
- }
- static time_t
- mcfs_get_time (mcfs_connection *mc)
- {
- int sock = mc->sock;
- if (mc->version == 1) {
- struct tm tt;
- rpc_get (sock,
- RPC_INT, &tt.tm_sec,
- RPC_INT, &tt.tm_min,
- RPC_INT, &tt.tm_hour,
- RPC_INT, &tt.tm_mday,
- RPC_INT, &tt.tm_year, RPC_INT, &tt.tm_mon, RPC_END);
- tt.tm_year -= 1900;
- tt.tm_isdst = 0;
- return mktime (&tt);
- } else {
- char *buf;
- long tm;
- rpc_get (sock, RPC_STRING, &buf, RPC_END);
- sscanf (buf, "%lx", &tm);
- g_free (buf);
- return (time_t) tm;
- }
- }
- static int
- mcfs_get_stat_info (mcfs_connection *mc, struct stat *buf)
- {
- long mylong;
- int sock = mc->sock;
- buf->st_dev = 0;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- #ifdef HAVE_STRUCT_STAT_ST_RDEV
- buf->st_rdev = mylong;
- #endif
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_ino = mylong;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_mode = mylong;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_nlink = mylong;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_uid = mylong;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_gid = mylong;
- rpc_get (sock, RPC_INT, &mylong, RPC_END);
- buf->st_size = mylong;
- if (!rpc_get (sock, RPC_INT, &mylong, RPC_END))
- return 0;
- #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
- buf->st_blocks = mylong;
- #endif
- buf->st_atime = mcfs_get_time (mc);
- buf->st_mtime = mcfs_get_time (mc);
- buf->st_ctime = mcfs_get_time (mc);
- return 1;
- }
- static int
- mcfs_stat_cmd (int cmd, const char *path, struct stat *buf)
- {
- char *remote_file;
- mcfs_connection *mc;
- int status, error;
- remote_file = mcfs_get_path (&mc, path);
- if (remote_file == NULL)
- return -1;
- rpc_send (mc->sock, RPC_INT, cmd, RPC_STRING, remote_file, RPC_END);
- g_free (remote_file);
- if (!rpc_get (mc->sock, RPC_INT, &status, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, errno);
- if (mcfs_is_error (status, error))
- return -1;
- if (mcfs_get_stat_info (mc, buf))
- return 0;
- else
- return mcfs_set_error (-1, EIO);
- }
- static int
- mcfs_stat (struct vfs_class *me, const char *path, struct stat *buf)
- {
- (void) me;
- return mcfs_stat_cmd (MC_STAT, path, buf);
- }
- static int
- mcfs_lstat (struct vfs_class *me, const char *path, struct stat *buf)
- {
- int path_len = strlen (path);
- int entry_len = strlen (mcfs_readdir_data.dent.d_name);
- (void) me;
- /* Hack ... */
- if (strcmp (path + path_len - entry_len,
- mcfs_readdir_data.dent.d_name) == 0 && cached_lstat_info) {
- *buf = *cached_lstat_info;
- return 0;
- }
- return mcfs_stat_cmd (MC_LSTAT, path, buf);
- }
- static int
- mcfs_fstat (void *data, struct stat *buf)
- {
- mcfs_handle *info = (mcfs_handle *) data;
- int result, error;
- int handle, sock;
- sock = info->conn->sock;
- handle = info->handle;
- rpc_send (sock, RPC_INT, MC_FSTAT, RPC_INT, handle, RPC_END);
- if (!rpc_get (sock, RPC_INT, &result, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- if (mcfs_is_error (result, error))
- return -1;
- if (mcfs_get_stat_info (info->conn, buf))
- return 0;
- else
- return mcfs_set_error (-1, EIO);
- }
- static int
- mcfs_chmod (struct vfs_class *me, const char *path, int mode)
- {
- (void) me;
- return mcfs_rpc_path_int (MC_CHMOD, path, mode);
- }
- static int
- mcfs_chown (struct vfs_class *me, const char *path, int owner, int group)
- {
- (void) me;
- return mcfs_rpc_path_int_int (MC_CHOWN, path, owner, group);
- }
- static int
- mcfs_utime (struct vfs_class *me, const char *path, struct utimbuf *times)
- {
- mcfs_connection *mc;
- int status;
- char *file;
- (void) me;
- file = mcfs_get_path (&mc, path);
- if (file == NULL)
- return -1;
- status = 0;
- if (mc->version >= 2) {
- char abuf[BUF_SMALL];
- char mbuf[BUF_SMALL];
- long atime, mtime;
- atime = (long) times->actime;
- mtime = (long) times->modtime;
- g_snprintf (abuf, sizeof (abuf), "%lx", atime);
- g_snprintf (mbuf, sizeof (mbuf), "%lx", mtime);
- rpc_send (mc->sock, RPC_INT, MC_UTIME,
- RPC_STRING, file,
- RPC_STRING, abuf, RPC_STRING, mbuf, RPC_END);
- status = mcfs_handle_simple_error (mc->sock, 0);
- }
- g_free (file);
- return (status);
- }
- static int
- mcfs_readlink (struct vfs_class *me, const char *path, char *buf, size_t size)
- {
- char *remote_file, *stat_str;
- int status, error;
- mcfs_connection *mc;
- size_t len;
- (void) me;
- remote_file = mcfs_get_path (&mc, path);
- if (remote_file == NULL)
- return -1;
- rpc_send (mc->sock, RPC_INT, MC_READLINK, RPC_STRING, remote_file,
- RPC_END);
- g_free (remote_file);
- if (!rpc_get (mc->sock, RPC_INT, &status, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- if (mcfs_is_error (status, errno))
- return -1;
- if (!rpc_get (mc->sock, RPC_STRING, &stat_str, RPC_END))
- return mcfs_set_error (-1, EIO);
- len = strlen (stat_str);
- if (len < size)
- size = len;
- /* readlink() does not append a NUL character to buf */
- memcpy (buf, stat_str, size);
- g_free (stat_str);
- return size;
- }
- static int
- mcfs_unlink (struct vfs_class *me, const char *path)
- {
- (void) me;
- return mcfs_rpc_path (MC_UNLINK, path);
- }
- static int
- mcfs_symlink (struct vfs_class *me, const char *n1, const char *n2)
- {
- (void) me;
- return mcfs_rpc_two_paths (MC_SYMLINK, n1, n2);
- }
- static int
- mcfs_rename (struct vfs_class *me, const char *a, const char *b)
- {
- (void) me;
- return mcfs_rpc_two_paths (MC_RENAME, a, b);
- }
- static int
- mcfs_chdir (struct vfs_class *me, const char *path)
- {
- char *remote_dir;
- mcfs_connection *mc;
- int status, error;
- (void) me;
- remote_dir = mcfs_get_path (&mc, path);
- if (remote_dir == NULL)
- return -1;
- rpc_send (mc->sock, RPC_INT, MC_CHDIR, RPC_STRING, remote_dir,
- RPC_END);
- g_free (remote_dir);
- if (!rpc_get (mc->sock, RPC_INT, &status, RPC_INT, &error, RPC_END))
- return mcfs_set_error (-1, EIO);
- if (mcfs_is_error (status, error))
- return -1;
- return 0;
- }
- static off_t
- mcfs_lseek (void *data, off_t offset, int whence)
- {
- mcfs_handle *info = (mcfs_handle *) data;
- int handle, sock;
- sock = info->conn->sock;
- handle = info->handle;
- /* FIXME: off_t may be too long to fit */
- rpc_send (sock, RPC_INT, MC_LSEEK, RPC_INT, handle, RPC_INT,
- (int) offset, RPC_INT, whence, RPC_END);
- return mcfs_handle_simple_error (sock, 1);
- }
- static int
- mcfs_mknod (struct vfs_class *me, const char *path, int mode, int dev)
- {
- (void) me;
- return mcfs_rpc_path_int_int (MC_MKNOD, path, mode, dev);
- }
- static int
- mcfs_mkdir (struct vfs_class *me, const char *path, mode_t mode)
- {
- (void) me;
- return mcfs_rpc_path_int (MC_MKDIR, path, mode);
- }
- static int
- mcfs_rmdir (struct vfs_class *me, const char *path)
- {
- (void) me;
- return mcfs_rpc_path (MC_RMDIR, path);
- }
- static int
- mcfs_link (struct vfs_class *me, const char *p1, const char *p2)
- {
- (void) me;
- return mcfs_rpc_two_paths (MC_LINK, p1, p2);
- }
- /* Gives up on a socket and reopens the connection, the child own the socket
- * now
- */
- static void
- mcfs_forget (const char *path)
- {
- char *host, *user, *pass, *p;
- int port, i, vers;
- if (strncmp (path, "/#mc:", 5))
- return;
- path += 5;
- if ((path[0] == '/') && (path[1] == '/'))
- path += 2;
- p = mcfs_get_host_and_username (path, &host, &user, &port, &pass);
- if (p == NULL) {
- g_free (host);
- g_free (user);
- if (pass)
- wipe_password (pass);
- return;
- }
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++) {
- if ((strcmp (host, mcfs_connections[i].host) == 0) &&
- (strcmp (user, mcfs_connections[i].user) == 0) &&
- (port == mcfs_connections[i].port)) {
- /* close socket: the child owns it now */
- close (mcfs_connections[i].sock);
- /* reopen the connection */
- mcfs_connections[i].sock =
- mcfs_open_tcp_link (host, user, &port, pass, &vers);
- }
- }
- g_free (p);
- g_free (host);
- g_free (user);
- if (pass)
- wipe_password (pass);
- }
- static int
- mcfs_setctl (struct vfs_class *me, const char *path, int ctlop, void *arg)
- {
- (void) me;
- (void) arg;
- switch (ctlop) {
- case VFS_SETCTL_FORGET:
- mcfs_forget (path);
- return 0;
- }
- return 0;
- }
- void
- init_mcfs (void)
- {
- tcp_init();
- vfs_mcfs_ops.name = "mcfs";
- vfs_mcfs_ops.prefix = "mc:";
- vfs_mcfs_ops.fill_names = mcfs_fill_names;
- vfs_mcfs_ops.open = mcfs_open;
- vfs_mcfs_ops.close = mcfs_close;
- vfs_mcfs_ops.read = mcfs_read;
- vfs_mcfs_ops.write = mcfs_write;
- vfs_mcfs_ops.opendir = mcfs_opendir;
- vfs_mcfs_ops.readdir = mcfs_readdir;
- vfs_mcfs_ops.closedir = mcfs_closedir;
- vfs_mcfs_ops.stat = mcfs_stat;
- vfs_mcfs_ops.lstat = mcfs_lstat;
- vfs_mcfs_ops.fstat = mcfs_fstat;
- vfs_mcfs_ops.chmod = mcfs_chmod;
- vfs_mcfs_ops.chown = mcfs_chown;
- vfs_mcfs_ops.utime = mcfs_utime;
- vfs_mcfs_ops.readlink = mcfs_readlink;
- vfs_mcfs_ops.symlink = mcfs_symlink;
- vfs_mcfs_ops.link = mcfs_link;
- vfs_mcfs_ops.unlink = mcfs_unlink;
- vfs_mcfs_ops.rename = mcfs_rename;
- vfs_mcfs_ops.chdir = mcfs_chdir;
- vfs_mcfs_ops.ferrno = mcfs_errno;
- vfs_mcfs_ops.lseek = mcfs_lseek;
- vfs_mcfs_ops.mknod = mcfs_mknod;
- vfs_mcfs_ops.mkdir = mcfs_mkdir;
- vfs_mcfs_ops.rmdir = mcfs_rmdir;
- vfs_mcfs_ops.setctl = mcfs_setctl;
- vfs_register_class (&vfs_mcfs_ops);
- }
- static void
- mcfs_free_bucket (int bucket)
- {
- g_free (mcfs_connections[bucket].host);
- g_free (mcfs_connections[bucket].user);
- g_free (mcfs_connections[bucket].home);
- /* Set all the fields to zero */
- mcfs_connections[bucket].host =
- mcfs_connections[bucket].user = mcfs_connections[bucket].home = 0;
- mcfs_connections[bucket].sock = mcfs_connections[bucket].version = 0;
- }
- static int
- mcfs_invalidate_socket (int sock)
- {
- int i, j = -1;
- for (i = 0; i < MCFS_MAX_CONNECTIONS; i++)
- if (mcfs_connections[i].sock == sock) {
- mcfs_free_bucket (i);
- j = 0;
- }
- if (j == -1)
- return -1; /* It was not our sock */
- /* Break from any possible loop */
- mc_chdir ("/");
- return 0;
- }
- void
- tcp_invalidate_socket (int sock)
- {
- mcfs_invalidate_socket (sock);
- }
- #endif /* ENABLE_VFS_MCFS */
|