Displaying 7 results from an estimated 7 matches for "ssh_fxp_extended".
2024 Nov 07
1
ssh compat information
On Fri, 8 Nov 2024 at 03:16, Darren Tucker <dtucker at dtucker.net> wrote:
>
> On Thu, 7 Nov 2024 at 07:55, Chris Rapier <rapier at psc.edu> wrote:
> >[...]I had been using
> > Blake2b512 for the hashing algorithm but I want to put in a path to use
> > xxhash instead. Maintaining backward compatibility means I need to know
> > something about the remote.
2006 Aug 17
0
[RFC] proposed extensions for SFTP
...ike to propose the following extensions to the SFTP protocol.
- statvfs operation
- atomic rename (just plain POSIX rename() without the existence check)
These are the most requested features in SSHFS, which need support in
sftp-server too.
They could be added to the current protocol with the SSH_FXP_EXTENDED
message type.
Here's a patch implementing the statvfs operation. It looks like
OpenBSD current doesn't have statvfs(), but it works on Linux, and
should be pretty trivial to port to OBSD, although it would be even
nicer to add a statvfs (defined by SUS) impementation.
Comments are welcom...
2006 Aug 19
0
[PATCH] add statfs extension to sftp-server
This is needed to be able to support statfs operation on an SSH
filesystem (http://fuse.sourceforge.net/sshfs.html).
It uses and sends only those fields of struct statfs which are common
with struct statvfs as defined by POSIX, and which are shared among
most UNIX-like systems.
The SSH_FXP_EXTENDED message type is used, so this change is backward
compatible and conforms to the protocol specification.
Please comment on whether this change is acceptable or what is needed
for it's acceptance into the openssh tree.
Thanks,
Miklos
Index: ssh/sftp-server.c
===================================...
2007 Dec 07
2
[PATCH] add statfs extension to sftp-server
...Miklos
-----
This is needed to be able to support statfs operation on an SSH
filesystem (http://fuse.sourceforge.net/sshfs.html).
It uses and sends only those fields of struct statfs which are common
with struct statvfs as defined by POSIX, and which are shared among
most UNIX-like systems.
The SSH_FXP_EXTENDED message type is used, so this change is backward
compatible and conforms to the protocol specification.
Index: ssh/sftp-server.c
===================================================================
--- ssh.orig/sftp-server.c 2006-08-19 16:24:17.000000000 +0200
+++ ssh/sftp-server.c 2006-08-19 16:49...
2007 Feb 18
2
SFTP: a new command to get filesystem size/free space
I am using sshfs with FUSE to mount a remote directory over ssh/sftp (on linux).
It would be nice if df could be able to show the total size/free space
of the mounted directory.
I am aware that returning size/free space would have some limitations.
For example, if a subdir of the mounted directory has another
filesystem mounted on the remote server, this can not be represented
simply.
However,
2007 Dec 10
9
[Bug 1399] New: add statfs extension to sftp-server
...t szeredi.hu
This is needed to be able to support statfs operation on an SSH
filesystem (http://fuse.sourceforge.net/sshfs.html).
It uses and sends only those fields of struct statfs which are common
with struct statvfs as defined by POSIX, and which are shared among
most UNIX-like systems.
The SSH_FXP_EXTENDED message type is used, so this change is backward
compatible and conforms to the protocol specification.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...enssh.com" and "fstatvfs at openssh.com" extensions are
advertised in the SSH_FXP_VERSION hello with version "2".
+10. sftp: Extension request "link at openssh.com"
+
+This request is for creating a hard link to a regular file. This
+request is implemented as a SSH_FXP_EXTENDED request with the
+following format:
+
+ uint32 id
+ string "link at openssh.com"
+ string oldpath
+ string newpath
+
+On receiving this request the server will perform the operation
+link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
+This extension is advertised i...