mirror of
https://github.com/clearml/dropbear
synced 2025-04-06 13:45:06 +00:00
merge of 6ace12c71fc2773210f2f3d374c96622ca54fe48
and 84eb6fedc6df0666f8053b9018bf16635dbfb257 --HG-- extra : convert_revision : 11034278bd1917bebcbdc69cf53b1891ce9db121
This commit is contained in:
commit
3cee7b6378
@ -236,8 +236,8 @@ void recv_msg_userauth_success() {
|
|||||||
|
|
||||||
void cli_auth_try() {
|
void cli_auth_try() {
|
||||||
|
|
||||||
TRACE(("enter cli_auth_try"))
|
|
||||||
int finished = 0;
|
int finished = 0;
|
||||||
|
TRACE(("enter cli_auth_try"))
|
||||||
|
|
||||||
CHECKCLEARTOWRITE();
|
CHECKCLEARTOWRITE();
|
||||||
|
|
||||||
|
@ -162,14 +162,14 @@ void cli_tty_cleanup() {
|
|||||||
|
|
||||||
static void put_termcodes() {
|
static void put_termcodes() {
|
||||||
|
|
||||||
TRACE(("enter put_termcodes"))
|
|
||||||
|
|
||||||
struct termios tio;
|
struct termios tio;
|
||||||
unsigned int sshcode;
|
unsigned int sshcode;
|
||||||
const struct TermCode *termcode;
|
const struct TermCode *termcode;
|
||||||
unsigned int value;
|
unsigned int value;
|
||||||
unsigned int mapcode;
|
unsigned int mapcode;
|
||||||
|
|
||||||
|
TRACE(("enter put_termcodes"))
|
||||||
|
|
||||||
unsigned int bufpos1, bufpos2;
|
unsigned int bufpos1, bufpos2;
|
||||||
|
|
||||||
if (tcgetattr(STDIN_FILENO, &tio) == -1) {
|
if (tcgetattr(STDIN_FILENO, &tio) == -1) {
|
||||||
|
@ -236,7 +236,7 @@ static void checkclose(struct Channel *channel) {
|
|||||||
TRACE(("checkclose: writefd %d, readfd %d, errfd %d, sentclosed %d, recvclosed %d",
|
TRACE(("checkclose: writefd %d, readfd %d, errfd %d, sentclosed %d, recvclosed %d",
|
||||||
channel->writefd, channel->readfd,
|
channel->writefd, channel->readfd,
|
||||||
channel->errfd, channel->sentclosed, channel->recvclosed))
|
channel->errfd, channel->sentclosed, channel->recvclosed))
|
||||||
TRACE(("writebuf %d extrabuf %s extrabuf %d",
|
TRACE(("writebuf size %d extrabuf ptr 0x%x extrabuf size %d",
|
||||||
cbuf_getused(channel->writebuf),
|
cbuf_getused(channel->writebuf),
|
||||||
channel->writebuf,
|
channel->writebuf,
|
||||||
channel->writebuf ? 0 : cbuf_getused(channel->extrabuf)))
|
channel->writebuf ? 0 : cbuf_getused(channel->extrabuf)))
|
||||||
|
@ -315,14 +315,15 @@ void send_msg_userauth_failure(int partial, int incrfail) {
|
|||||||
buf_setpos(typebuf, 0);
|
buf_setpos(typebuf, 0);
|
||||||
buf_putstring(ses.writepayload, buf_getptr(typebuf, typebuf->len),
|
buf_putstring(ses.writepayload, buf_getptr(typebuf, typebuf->len),
|
||||||
typebuf->len);
|
typebuf->len);
|
||||||
|
|
||||||
|
TRACE(("auth fail: methods %d, '%s'", ses.authstate.authtypes,
|
||||||
|
buf_getptr(typebuf, typebuf->len)));
|
||||||
|
|
||||||
buf_free(typebuf);
|
buf_free(typebuf);
|
||||||
|
|
||||||
buf_putbyte(ses.writepayload, partial ? 1 : 0);
|
buf_putbyte(ses.writepayload, partial ? 1 : 0);
|
||||||
encrypt_packet();
|
encrypt_packet();
|
||||||
|
|
||||||
TRACE(("auth fail: methods %d, '%s'", ses.authstate.authtypes,
|
|
||||||
buf_getptr(typebuf, typebuf->len)));
|
|
||||||
|
|
||||||
if (incrfail) {
|
if (incrfail) {
|
||||||
usleep(300000); /* XXX improve this */
|
usleep(300000); /* XXX improve this */
|
||||||
ses.authstate.failcount++;
|
ses.authstate.failcount++;
|
||||||
|
Loading…
Reference in New Issue
Block a user