Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
ae3892e8
Commit
ae3892e8
authored
15 years ago
by
Yang Tse
Browse files
Options
Downloads
Patches
Plain Diff
Fix warnings
parent
c74875d9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/ftp.pm
+10
-11
10 additions, 11 deletions
tests/ftp.pm
tests/ftpserver.pl
+29
-14
29 additions, 14 deletions
tests/ftpserver.pl
with
39 additions
and
25 deletions
tests/ftp.pm
+
10
−
11
View file @
ae3892e8
...
...
@@ -87,7 +87,7 @@ sub killpid {
# Make 'requested' hold the non-duplicate pids from 'pidlist'.
@requested
=
split
('
',
$pidlist
);
return
if
(
not
defined
(
@requested
)
)
;
return
if
(
not
@requested
);
if
(
scalar
(
@requested
)
>
2
)
{
@requested
=
sort
({
$a
<=>
$b
}
@requested
);
}
...
...
@@ -121,7 +121,7 @@ sub killpid {
}
# Allow all signalled processes five seconds to gracefully die.
if
(
defined
(
@signalled
)
)
{
if
(
@signalled
)
{
my
$twentieths
=
5
*
20
;
while
(
$twentieths
--
)
{
for
(
my
$i
=
scalar
(
@signalled
)
-
1
;
$i
>=
0
;
$i
--
)
{
...
...
@@ -141,7 +141,7 @@ sub killpid {
}
# Mercilessly SIGKILL processes still alive.
if
(
defined
(
@signalled
)
)
{
if
(
@signalled
)
{
foreach
my
$pid
(
@signalled
)
{
if
(
$pid
>
0
)
{
print
("
RUN: Process with pid
$pid
forced to die with SIGKILL
\n
")
...
...
@@ -155,7 +155,7 @@ sub killpid {
}
# Reap processes dead children for sure.
if
(
defined
(
@reapchild
)
)
{
if
(
@reapchild
)
{
foreach
my
$pid
(
@reapchild
)
{
if
(
$pid
>
0
)
{
waitpid
(
$pid
,
0
);
...
...
@@ -169,13 +169,12 @@ sub killpid {
#
sub
ftpkillslave
{
my
(
$id
,
$ext
,
$verbose
)
=
@_
;
my
$base
;
for
$base
(('
filt
',
'
data
'))
{
for
my
$base
(('
filt
',
'
data
'))
{
my
$f
=
"
.sock
$base$id$ext
.pid
";
my
$pid
=
processexists
(
$f
);
if
(
$pid
>
0
)
{
printf
("
* kill pid for %s => %d
\n
",
"
ftp-
$base$id$ext
",
$pid
)
printf
("
* kill pid for %s => %d
\n
",
"
ftp-
$base$id$ext
",
$pid
)
if
(
$verbose
);
kill
(
9
,
$pid
);
waitpid
(
$pid
,
0
);
...
...
@@ -191,13 +190,13 @@ sub ftpkillslave {
sub
ftpkillslaves
{
my
(
$verbose
)
=
@_
;
for
$ext
(('',
'
ipv6
'))
{
for
$id
(('',
'
2
'))
{
for
$base
(('
filt
',
'
data
'))
{
for
my
$ext
(('',
'
ipv6
'))
{
for
my
$id
(('',
'
2
'))
{
for
my
$base
(('
filt
',
'
data
'))
{
my
$f
=
"
.sock
$base$id$ext
.pid
";
my
$pid
=
processexists
(
$f
);
if
(
$pid
>
0
)
{
printf
("
* kill pid for %s => %d
\n
",
"
ftp-
$base$id$ext
",
printf
("
* kill pid for %s => %d
\n
",
"
ftp-
$base$id$ext
",
$pid
)
if
(
$verbose
);
kill
(
9
,
$pid
);
waitpid
(
$pid
,
0
);
...
...
This diff is collapsed.
Click to expand it.
tests/ftpserver.pl
+
29
−
14
View file @
ae3892e8
...
...
@@ -157,7 +157,7 @@ sub ftpmsg {
# better on windows/cygwin
}
do
{
while
(
@ARGV
)
{
if
(
$ARGV
[
0
]
eq
"
-v
")
{
$verbose
=
1
;
}
...
...
@@ -192,7 +192,8 @@ do {
$listenaddr
=~
s/^\[(.*)\]$/$1/
;
shift
@ARGV
;
}
}
while
(
shift
@ARGV
);
shift
@ARGV
;
};
# a dedicated protocol has been selected, check that it's a fine one
if
(
$proto
!~
/^(ftp|imap|pop3|smtp)\z/
)
{
...
...
@@ -768,9 +769,11 @@ sub STOR_ftp {
my
$i
;
sysread
DREAD
,
$i
,
5
;
#print STDERR " GOT: $i";
my
$size
=
0
;
if
(
$i
=~
/^([0-9a-fA-F]{4})\n/
)
{
$size
=
hex
(
$
1
);
}
my
$size
=
hex
(
$i
);
sysread
DREAD
,
$line
,
$size
;
#print STDERR " GOT: $size bytes\n";
...
...
@@ -840,8 +843,11 @@ sub PASV_ftp {
# READ the response size
sysread_or_die
(
\
*DREAD
,
\
$i
,
5
);
my
$size
=
hex
(
$i
);
my
$size
=
0
;
if
(
$i
=~
/^([0-9a-fA-F]{4})\n/
)
{
$size
=
hex
(
$
1
);
}
# READ the response data
sysread_or_die
(
\
*DREAD
,
\
$i
,
$size
);
...
...
@@ -1111,7 +1117,10 @@ while(1) {
# SIZE of data
sysread_or_die
(
\
*SFREAD
,
\
$i
,
5
);
my
$size
=
hex
(
$i
);
my
$size
=
0
;
if
(
$i
=~
/^([0-9a-fA-F]{4})\n/
)
{
$size
=
hex
(
$
1
);
}
# data
sysread
SFREAD
,
$_
,
$size
;
...
...
@@ -1163,24 +1172,30 @@ while(1) {
my
$text
;
$text
=
$customreply
{
$FTPCMD
};
my
$fake
=
$text
;
if
(
$text
eq
"")
{
$text
=
$displaytext
{
$FTPCMD
};
}
else
{
if
(
$text
&&
(
$text
ne
""))
{
if
(
$customcount
{
$FTPCMD
}
&&
(
!--
$customcount
{
$FTPCMD
}))
{
# used enough number of times, now blank the customreply
$customreply
{
$FTPCMD
}
=
"";
}
}
else
{
$text
=
$displaytext
{
$FTPCMD
};
}
my
$check
;
if
(
$text
)
{
sendcontrol
"
$cmdid$text
\r\n
";
if
(
$text
&&
(
$text
ne
""))
{
if
(
$cmdid
&&
(
$cmdid
ne
""))
{
sendcontrol
"
$cmdid$text
\r\n
";
}
else
{
sendcontrol
"
$text
\r\n
";
}
}
else
{
$check
=
1
;
# no response yet
}
if
(
$fake
e
q
"")
{
unless
(
$fake
&&
(
$fake
n
e
"")
)
{
# only perform this if we're not faking a reply
my
$func
=
$commandfunc
{
$FTPCMD
};
if
(
$func
)
{
...
...
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