Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
a4dfa4ef
Commit
a4dfa4ef
authored
24 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
Rev: ChangeLog:1.348 Rev: doc/TODO:1.115 Rev: src/unix_random.c:1.9
parent
f6e7c7cc
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+11
-0
11 additions, 0 deletions
ChangeLog
doc/TODO
+27
-0
27 additions, 0 deletions
doc/TODO
src/unix_random.c
+2
-1
2 additions, 1 deletion
src/unix_random.c
with
40 additions
and
1 deletion
ChangeLog
+
11
−
0
View file @
a4dfa4ef
2001-04-25 Niels Mller <nisse@ehand.com>
* src/keyexchange.c (do_handle_newkeys): Added verbose message
when receiving NEWKEYS.
(do_handle_kexinit): Added verbose message when receiving KEXINIT
message.
* src/parse.c (parse_next_atom): Tolerate empty atoms, for
compatibility with "SSH-1.99-2.0.13 (non-commercial)". XXX Fix in
1.2 branch?
2001-04-17 Niels Mller <nisse@cuckoo.hack.org>
2001-04-17 Niels Mller <nisse@cuckoo.hack.org>
* src/testsuite/Makefile.am (TS_MORE_SH): Added tests
* src/testsuite/Makefile.am (TS_MORE_SH): Added tests
...
...
This diff is collapsed.
Click to expand it.
doc/TODO
+
27
−
0
View file @
a4dfa4ef
...
@@ -152,6 +152,10 @@ PROTOCOL ISSUES
...
@@ -152,6 +152,10 @@ PROTOCOL ISSUES
Update the signal-related messages to conform to
Update the signal-related messages to conform to
draft-ietf-secsh-connect-08.txt.
draft-ietf-secsh-connect-08.txt.
Some SSH Inc sshd server sends USERAUTH_FAILURE messages with a
trailing ",", like "publickey,password,". Consider hacking
parse.c:parse_next_atom to allow that.
USER INTERFACE ISSUES
USER INTERFACE ISSUES
...
@@ -401,3 +405,26 @@ problems. So we need to avoid setting stderr into non-blocking mode.
...
@@ -401,3 +405,26 @@ problems. So we need to avoid setting stderr into non-blocking mode.
Add a keep-alive option, which sends SSH_MSG_IGNORE at regular
Add a keep-alive option, which sends SSH_MSG_IGNORE at regular
intervals.
intervals.
The lshd --daemonic option doesn't work with the
RANDOM_POLL_BACKGROUND.
: loic@gnu.org writes:
:
: > When I run
: >
: > lshd --daemonic --ssh1-fallback=/usr/sbin/sshd
: >
: > It dies on first connection and says :
: >
: > Apr 25 04:49:02 subversions lshd[25773]: Background randomness poll failed.
: > Apr 25 04:49:02 subversions lshd[25773]: lshd: Could not get enough entropy from the environment.
:
: Strange. A guess on what's happening:
:
: 1. lshd starts a background process for collecting randomness,
:
: 2. next it forks and exits to get into the background,
:
: 3. it tries to waitpid the process created in 1, but it's no longer
: the parent of that process, so waiting fails.
This diff is collapsed.
Click to expand it.
src/unix_random.c
+
2
−
1
View file @
a4dfa4ef
...
@@ -691,6 +691,7 @@ wait_background_poll(struct unix_random *self)
...
@@ -691,6 +691,7 @@ wait_background_poll(struct unix_random *self)
trace
(
"unix_random.c: wait_background_poll
\n
"
);
trace
(
"unix_random.c: wait_background_poll
\n
"
);
self
->
status
=
POLL_FAILED
;
self
->
status
=
POLL_FAILED
;
/* FIXME: Check error code. */
if
(
waitpid
(
self
->
pid
,
&
status
,
0
)
==
self
->
pid
)
if
(
waitpid
(
self
->
pid
,
&
status
,
0
)
==
self
->
pid
)
{
{
if
(
WIFEXITED
(
status
)
&&
!
WEXITSTATUS
(
status
))
if
(
WIFEXITED
(
status
)
&&
!
WEXITSTATUS
(
status
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment