Be more careful about catching errors.
Add a few log statements.
This commit is contained in:
parent
24214819dc
commit
001f9a511b
65
ftpd.scm
65
ftpd.scm
|
@ -154,16 +154,10 @@
|
||||||
(lambda (exit)
|
(lambda (exit)
|
||||||
(with-errno-handler*
|
(with-errno-handler*
|
||||||
(lambda (errno packet)
|
(lambda (errno packet)
|
||||||
(cond
|
(log (syslog-level notice)
|
||||||
;; I dunno why SHUTDOWN-SOCKET can die this way, but it
|
"error with connection to ~A (~A)"
|
||||||
;; can and does
|
remote-address (car packet))
|
||||||
((or (= errno errno/notconn)
|
(exit 'fick-dich-ins-knie))
|
||||||
;; this one can come out of SOCKET->STRING
|
|
||||||
(= errno errno/inval))
|
|
||||||
(log (syslog-level notice)
|
|
||||||
"socket to ~A not connected any more - exiting thread"
|
|
||||||
remote-address)
|
|
||||||
(exit 'fick-dich-ins-knie))))
|
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(let ((socket-string (socket->string socket)))
|
(let ((socket-string (socket->string socket)))
|
||||||
|
|
||||||
|
@ -173,20 +167,31 @@
|
||||||
|
|
||||||
(log (syslog-level debug) "socket: ~S" socket-string)
|
(log (syslog-level debug) "socket: ~S" socket-string)
|
||||||
|
|
||||||
(handle-connection (socket:inport socket)
|
(dynamic-wind
|
||||||
(socket:outport socket)
|
(lambda () 'fick-dich-ins-knie)
|
||||||
(file-name-as-directory anonymous-home))
|
(lambda ()
|
||||||
|
(handle-connection (socket:inport socket)
|
||||||
(log (syslog-level debug)
|
(socket:outport socket)
|
||||||
"shutting down socket ~S"
|
(file-name-as-directory anonymous-home)))
|
||||||
socket-string)
|
(lambda ()
|
||||||
(shutdown-socket socket shutdown/sends+receives)
|
(log (syslog-level debug)
|
||||||
|
"shutting down socket ~S"
|
||||||
(log (syslog-level notice)
|
socket-string)
|
||||||
"closing connection to ~A and finishing thread" remote-address)
|
(call-with-current-continuation
|
||||||
(log (syslog-level debug)
|
(lambda (exit)
|
||||||
"closing socket ~S" socket-string)
|
(with-errno-handler*
|
||||||
(close-socket socket))))))))
|
(lambda (errno packet)
|
||||||
|
(log (syslog-level notice)
|
||||||
|
"error shutting down socket to ~A (~A)"
|
||||||
|
remote-address (car packet))
|
||||||
|
(exit 'fick-dich-ins-knie))
|
||||||
|
(lambda ()
|
||||||
|
(shutdown-socket socket shutdown/sends+receives)))))
|
||||||
|
(log (syslog-level notice)
|
||||||
|
"closing connection to ~A and finishing thread" remote-address)
|
||||||
|
(log (syslog-level debug)
|
||||||
|
"closing socket ~S" socket-string)
|
||||||
|
(close-socket socket))))))))))
|
||||||
|
|
||||||
(define (ftpd-inetd anonymous-home)
|
(define (ftpd-inetd anonymous-home)
|
||||||
(with-syslog-destination
|
(with-syslog-destination
|
||||||
|
@ -218,7 +223,7 @@
|
||||||
|
|
||||||
(define (handle-connection input-port output-port anonymous-home)
|
(define (handle-connection input-port output-port anonymous-home)
|
||||||
(log (syslog-level debug)
|
(log (syslog-level debug)
|
||||||
"handling connection with input-port ~A, outputport ~A and home ~A"
|
"handling connection with input port ~A, output port ~A and home ~A"
|
||||||
input-port
|
input-port
|
||||||
output-port
|
output-port
|
||||||
anonymous-home)
|
anonymous-home)
|
||||||
|
@ -226,8 +231,8 @@
|
||||||
(lambda (escape)
|
(lambda (escape)
|
||||||
(with-handler
|
(with-handler
|
||||||
(lambda (condition more)
|
(lambda (condition more)
|
||||||
(log (syslog-level debug)
|
(log (syslog-level notice)
|
||||||
"hit error condition ~A (maybe reason (maybe Netscape?): ~S) -- exiting"
|
"hit error condition ~A (~S) -- exiting"
|
||||||
(condition-type condition)
|
(condition-type condition)
|
||||||
(condition-stuff condition))
|
(condition-stuff condition))
|
||||||
(escape 'fick-dich-ins-knie))
|
(escape 'fick-dich-ins-knie))
|
||||||
|
@ -1109,12 +1114,12 @@
|
||||||
|
|
||||||
(define (write-final-reply line)
|
(define (write-final-reply line)
|
||||||
(format (session-control-output-port) "~D ~A" (session-reply-code) line)
|
(format (session-control-output-port) "~D ~A" (session-reply-code) line)
|
||||||
;; (format #t "Reply: ~D ~A~%" (session-reply-code) line)
|
(log (syslog-level debug) "Reply: ~D ~A~%" (session-reply-code) line)
|
||||||
(write-crlf (session-control-output-port)))
|
(write-crlf (session-control-output-port)))
|
||||||
|
|
||||||
(define (write-nonfinal-reply line)
|
(define (write-nonfinal-reply line)
|
||||||
(format (session-control-output-port) "~D-~A" (session-reply-code) line)
|
(format (session-control-output-port) "~D-~A" (session-reply-code) line)
|
||||||
;; (format #t "Reply: ~D-~A~%" (session-reply-code) line)
|
(log (syslog-level debug) "Reply: ~D-~A~%" (session-reply-code) line)
|
||||||
(write-crlf (session-control-output-port)))
|
(write-crlf (session-control-output-port)))
|
||||||
|
|
||||||
(define (signal-error! code message)
|
(define (signal-error! code message)
|
||||||
|
@ -1128,7 +1133,7 @@
|
||||||
|
|
||||||
; Version
|
; Version
|
||||||
|
|
||||||
(define *ftpd-version* "$Revision: 1.31 $")
|
(define *ftpd-version* "$Revision: 1.32 $")
|
||||||
|
|
||||||
(define (copy-port->port-binary input-port output-port)
|
(define (copy-port->port-binary input-port output-port)
|
||||||
(let ((buffer (make-string *window-size*)))
|
(let ((buffer (make-string *window-size*)))
|
||||||
|
|
Loading…
Reference in New Issue