Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | doAuthenticate() method doesn't need to be protected | David Ostrovsky | 2014-04-10 | 1 | -3/+2 | |
| | ||||||
* | Be more verbose on gathering plugin's extension points | David Ostrovsky | 2014-04-10 | 1 | -0/+9 | |
| | ||||||
* | DispatchCommand should be the ExtensionPoint | James Moger | 2014-04-10 | 4 | -34/+25 | |
| | ||||||
* | Hook-up comprensive command cleanup (destroy) | James Moger | 2014-04-10 | 6 | -35/+83 | |
| | ||||||
* | Get the command context with an accessor instead of direct field access | James Moger | 2014-04-10 | 10 | -24/+26 | |
| | ||||||
* | Expose SSH command as plugin extension point | David Ostrovsky | 2014-04-10 | 3 | -2/+26 | |
| | | | | | | Example plugin is provided [1]. [1] https://github.com/davido/gitblit-cookbook-plugin | |||||
* | Revise dispatchers and move command classes | James Moger | 2014-04-10 | 20 | -49/+79 | |
| | ||||||
* | Create a simple ls-users admin command | James Moger | 2014-04-10 | 2 | -0/+74 | |
| | ||||||
* | Elevate the public key manager to a top-level manager | James Moger | 2014-04-10 | 9 | -149/+124 | |
| | ||||||
* | Create git and gitblit dispatchers | James Moger | 2014-04-10 | 15 | -103/+217 | |
| | ||||||
* | Show root commands in welcome shell and improve command registration | James Moger | 2014-04-10 | 3 | -52/+99 | |
| | ||||||
* | Add a simple repository list command | James Moger | 2014-04-10 | 2 | -0/+74 | |
| | ||||||
* | Pass IGitblit into the SSH command context | James Moger | 2014-04-10 | 3 | -2/+11 | |
| | ||||||
* | Add a welcome shell | James Moger | 2014-04-10 | 2 | -2/+163 | |
| | | | | | Conflicts: src/main/java/com/gitblit/transport/ssh/SshDaemon.java | |||||
* | Add SSH daemon test | David Ostrovsky | 2014-04-10 | 3 | -4/+49 | |
| | ||||||
* | Prevent double authentication for the same public key | David Ostrovsky | 2014-04-10 | 5 | -23/+62 | |
| | | | | | | | | | | | | | | | | Openssh client sends two requests, one without a key signature to verify that the public key is acceptable and the second one with the signature after having loaded the private key and signed some data for actual verification. To prevent that the PublickeyAuthenticator#authenticate is called twice cache the authentication status for session and public key. Implement SessionListener to clean up the cache entry when session is destroyed. This is a workaround for SSHD bug [1]. Inspired-By: Guillaume Nodet <gnodet@apache.org> [1] https://issues.apache.org/jira/browse/SSHD-300 | |||||
* | Fix message formatting | David Ostrovsky | 2014-04-10 | 1 | -1/+1 | |
| | | | | Change-Id: I1ee1e4135525b7064c4f8e159ed9d8cbef510a81 | |||||
* | Move dispatcher creation to SshCommandFactory and revise permission | James Moger | 2014-04-10 | 4 | -450/+460 | |
| | | | | checks | |||||
* | Rename server session classes | James Moger | 2014-04-10 | 3 | -16/+10 | |
| | ||||||
* | Rename AbstractGitCommand->BaseGitCommand | James Moger | 2014-04-10 | 4 | -6/+6 | |
| | ||||||
* | Merge AbstractSshCommand and BaseCommand into a single class | James Moger | 2014-04-10 | 7 | -516/+469 | |
| | ||||||
* | Rename authenticators for clarity | James Moger | 2014-04-10 | 5 | -12/+12 | |
| | ||||||
* | Move cache to IKeyManager and implement isStale() in FileKeyManager | James Moger | 2014-04-10 | 7 | -68/+121 | |
| | ||||||
* | Support admin commands that respect user permissions | James Moger | 2014-04-10 | 4 | -2/+12 | |
| | ||||||
* | Support hidden commands and hide create-repo and review | James Moger | 2014-04-10 | 4 | -6/+11 | |
| | ||||||
* | Add add-key and rm-key commands that apply only to the current user | James Moger | 2014-04-10 | 6 | -42/+191 | |
| | ||||||
* | Renamed SshContext->SshCommandContext for clarity of purpose | James Moger | 2014-04-10 | 3 | -6/+6 | |
| | ||||||
* | Rename & simplify SshSession->SshDaemonClient | James Moger | 2014-04-10 | 12 | -148/+101 | |
| | ||||||
* | Revise SSH public key integration with AuthenticationManager | James Moger | 2014-04-10 | 2 | -19/+34 | |
| | ||||||
* | Simplify version command and output | James Moger | 2014-04-10 | 1 | -8/+2 | |
| | ||||||
* | Disregard comment/description for add/remove in FileKeyManager | James Moger | 2014-04-10 | 1 | -26/+78 | |
| | ||||||
* | Fix deleteAllKeys method signature | James Moger | 2014-04-10 | 4 | -4/+4 | |
| | ||||||
* | Remove unused idGenerator from the SshSessionFactory | James Moger | 2014-04-10 | 2 | -7/+2 | |
| | ||||||
* | Display the selected SSH backend in the daemon startup message | James Moger | 2014-04-10 | 1 | -5/+5 | |
| | ||||||
* | Add review SSH command | David Ostrovsky | 2014-04-10 | 2 | -0/+89 | |
| | | | | Change-Id: Ia03c15608814346522c548ff2439ee672ccb0d28 | |||||
* | Add set account SSH command | David Ostrovsky | 2014-04-10 | 7 | -2/+157 | |
| | | | | Change-Id: I33d343dd34f93eaff9581d54f825f8c486e7c17f | |||||
* | Add support for NIO2 IoSession | David Ostrovsky | 2014-04-10 | 1 | -0/+18 | |
| | | | | | | | | | | Starting from version 0.9.0 Apache SSHD project added support for NIO2 IoSession. To use the new NIO2 session the `backend` option must be set to `NIO2`. By default, `NIO2`. Change-Id: I06cf92b02e80ecf9e8bfbd9f6d6d623dfe3ccff3 | |||||
* | Bump SSHD version to 0.10.1 | David Ostrovsky | 2014-04-10 | 5 | -23/+70 | |
| | | | | Change-Id: Ic7e204fb7ee2eb172f4c8424fc3d4b7e6c631ddd | |||||
* | Extract key manager interface and implement a file-based key manager | James Moger | 2014-04-10 | 6 | -48/+332 | |
| | ||||||
* | Cleanup imports | James Moger | 2014-04-10 | 1 | -5/+0 | |
| | ||||||
* | Establish ssh keys folder, support multiple keys, revise key authenticator | James Moger | 2014-04-10 | 2 | -102/+76 | |
| | ||||||
* | Move Git daemon into different package | James Moger | 2014-04-10 | 1 | -1/+1 | |
| | ||||||
* | SSHD: Add support for git pack commands | David Ostrovsky | 2014-04-10 | 10 | -163/+321 | |
| | | | | | | | | | | | Add git-upload-pack and git-receive-pack commands. Conflicts: src/main/java/com/gitblit/manager/ServicesManager.java src/main/java/com/gitblit/transport/ssh/CommandDispatcher.java src/main/java/com/gitblit/transport/ssh/SshCommandFactory.java Change-Id: I8c057b41f1dfad6d004e6aa91f96c8c673be9be2 | |||||
* | Fix command dispatching | David Ostrovsky | 2014-04-10 | 2 | -16/+35 | |
| | | | | | | | | | | | | | DispatchCommand is supposed to be nested: ssh server gitblit version --verbose --format json means that first the command that is seen by dispatching process is "gitblit". Dispatch command look in its commands map for this command and dispatch the rest of the command and options and arguments to this command, version in this example. Change-Id: I8ef8e0e369922c793ca7ad36c1a8f76b0206baa7 | |||||
* | Eliminate use of Dagger and do not create inner classes | James Moger | 2014-04-10 | 8 | -294/+267 | |
| | | | | | | | | | | | This change outlines somethings I'd like to see in your latest code. 1. Elimination of Dagger 2. Less noise from inner class instantiation 3. Formalizing filesystem location for keys instead of Unix-y /tmp/ 4. Password authentication as alternative to Key authentication Change-Id: I7a76e1811ad7cd545444fd8b59bbe8c4f45ccfec | |||||
* | Convert SshDaemon to unix format | David Ostrovsky | 2014-04-10 | 1 | -331/+335 | |
| | | | | Change-Id: Icb415c2bc62321ddd0ae08445d97f1f8102adee8 | |||||
* | Factor out methods from SshCommandServer to SshDaemon | David Ostrovsky | 2014-04-10 | 2 | -308/+205 | |
| | | | | Change-Id: I02d545a8ab68b06d733ad8e7ed476767a34aa244 | |||||
* | SSHD: Add support for generic commands | David Ostrovsky | 2014-04-10 | 14 | -69/+1305 | |
| | | | | Change-Id: I5a60710323ca674d70e34f7451422ec167105429 | |||||
* | Support serving repositories over the SSH transport | Eric Myhre | 2014-04-10 | 6 | -0/+695 | |
Gitblit would greatly benefit from an integrated SSH server. This would complete the transport trifecta. Change-Id: I6fb95abe65655fa74d47ea71522d8d9a1541450c |