yar
919470cf7d
Deny the SIZE command on large files when in ASCII mode.
...
This eliminates an opportunity for DoS attack.
Pointed out by: maxim
Inspired by: lukemftpd, OpenBSD
MFC after: 2 weeks
2002-07-31 10:55:31 +00:00
yar
856a7116df
Conform to RFC 959, Appendix II, when replying
...
to a successful MKD command.
MFC after: 1 week
2002-07-29 15:54:27 +00:00
yar
b0f2856844
Make the -v' option a synonym for
-d'
...
(as it was intended initially)
and document it in the manpage.
MFC after: 2 weeks
2002-07-26 16:07:19 +00:00
yar
ae142b4144
Document the -u (set umask) option
...
(which has been there at least since 4.4BSD-Lite!)
MFC after: 2 weeks
2002-07-26 16:01:24 +00:00
yar
11df7e3f6f
Sort command-line options according to the mostly used style:
...
alphabetical order, lower and upper case of the same letter
stick together, lower case first.
MFC after: 2 weeks
2002-07-26 15:46:08 +00:00
yar
01cbae6356
Use <arpa/ftp.h> stuff cleanly, without introducing
...
non-portable constants (in this case, hidden as offsets
to the "?AEIL" string.)
MFC after: 1 week
2002-07-25 17:41:47 +00:00
yar
90caf3dc00
Re-use passive data ports with the SO_REUSEADDR
...
socket option to avoid exausting the passive port
space by TIME_WAIT'ing connections.
PR: bin/36955
Submitted by: Maxim Konovalov <maxim@FreeBSD.org>
MFC after: 2 weeks
2002-07-24 16:11:34 +00:00
yar
b55ffaf6bb
Remove the outdated casts to "char *" from the setsockopt(2),
...
write(2), and getipnodebyaddr(3) calls. Now all the above functions
accept "void *" in that arguments and have prototypes. Thus, the
casts are useless under the normal circumstances (and would be harmful
if the functions had no prototypes.)
MFC after: 2 weeks
2002-07-24 15:30:53 +00:00
yar
d19478c57f
Clean up the syslog(3) messages on the setsockopt(2) errors:
...
o Always check a setsockopt(2) return value
o Use a consistent message format
o Don't abort if the failed setsockopt(2) was actually not vital
o Use LOG_WARNING, not LOG_ERR, in non-fatal cases
MFC after: 1 week
2002-07-24 14:50:17 +00:00
ume
9c2c51a1e6
use IPV6_V6ONLY instead of non standard IPV6_BINDV6ONLY.
...
MFC after: 1 week
2002-07-22 15:22:53 +00:00
yar
7825a53069
Fix one RFC 959 incompliance:
...
Double double-quotes in a PWD result
if they appear in the directory pathname.
PR: misc/18365
MFC after: 1 week
2002-07-22 07:41:14 +00:00
yar
81d786a9d6
Allow deleting and renaming stale symlinks and
...
deleting symlinks pointing to directories.
PR: bin/37250
Submitted by: Nino Dehne <TeCeEm@gmx.de>
MFC after: 1 week
2002-07-21 12:06:56 +00:00
yar
0e4b89607d
Avoid passing NULL to freehostent(3).
...
MFC after: 1 week
2002-07-17 19:29:25 +00:00
yar
ab8d11d3a9
Fix setting parameters for getipnodebyaddr(3):
...
o "struct addrinfo" contains a pointer to "struct sockaddr,"
not "struct sockaddr" itself
o the function takes a pointer to "struct in*_addr", not to
"struct sockaddr," so the address length must be corresponding
MFC after: 1 week
2002-07-17 19:07:07 +00:00
mikeh
1bf2662143
GLOB_QUOTE has been retired.
2002-07-17 05:47:49 +00:00
yar
4410d83dcc
Use the right indent for the closing brace: it belongs to `if',
...
not to `for'. The previous indent was reather misleading for
the code reader.
MFC after: 1 week
2002-07-16 16:48:15 +00:00
yar
c2dfbe8244
Replace the awkward hackery about strtok(3)
...
by conventional one-way parsing of ftphosts(5).
Don't let NULL hostname pointers into virtual
host records as well.
PR: bin/18410
MFC after: 1 month
2002-07-16 16:30:41 +00:00
yar
eba11c79d0
Use fgetln(3) to read lines from configuration files (ftpusers, ftphosts.)
...
Thus lines of any length can be handled, unlike before.
Don't assume that each line read from the files ends with a newline.
As a side effect in inithosts(), don't use automatic buffer at all,
utilize malloc(3) when getting local host name instead.
PR: misc/21494
Reviewed by: maxim, mikeh
MFC after: 1 month
2002-07-12 15:51:15 +00:00
charnier
9639b20db6
The .Nm utility
2002-07-06 19:19:48 +00:00
dan
2bdfbbf7e6
Make sure to reset transflag back to zero upon succesfully using sendfile()
...
to transfer a file.
PR: 39362
Submitted by: TANAKA Hiroyuki <kattyo@abk.nu>
MFC after: 1 week
2002-07-03 00:12:00 +00:00
ume
8530756499
Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attach
...
scope identifier).
MFC after: 3 weeks
2002-07-02 11:11:17 +00:00
maxim
2a203b39db
Remove trailing whitespaces.
2002-07-01 14:30:38 +00:00
maxim
53025a95ff
Move 'byte_count' calculation just before 'recvurg' check. It is a global
...
variable and used in myoob().
PR: bin/38928
Submitted by: Oliver Fromme <olli@secnetix.de>
MFC after: 1 month
2002-07-01 14:29:44 +00:00
mdodd
c8cc9e8e67
Implement a flag to disable directory creation for anonymous users.
...
PR: misc/38987
Submitted by: Peter da Silva <peter@abbnm.com>
MFC after: 1 week
2002-07-01 02:30:11 +00:00
markm
eaea972b25
Remove a GCC-specific command-line option. We should be using WARNS=n
...
for this stuff.
2002-06-28 10:36:14 +00:00
alfred
a7dd0de84a
Assume __STDC__, remove non-__STDC__ code.
2002-05-28 18:57:20 +00:00
maxim
fb79ef5523
Teach REST how to restart a file transfer after 2^31 bytes: now yylex()
...
returns off_t in yylval.u.o. REST is the only user of yylval.u.o at the
moment.
NB: seems lukemftpd has the same bug.
PR: misc/28629
Reviewed by: ru
Approved by: ru
MFC after: 1 month
2002-03-14 16:05:06 +00:00
maxim
1459c4fc94
Remove duplicated yacc nonterminals declarations, sort includes.
...
No functional changes from rev. 1.31.
Reviewed by: ru
Approved by: ru
MFC after: 1 week
2002-03-11 11:48:55 +00:00
obrien
ce9dcc8784
Put the last added source file in proper order.
...
(and dcc the committer a dictionary)
2002-02-27 18:29:11 +00:00
des
2b3e8246a1
Rewrite the part of the conversation function that allocates the reply array;
...
it was inelegant and neglected to check the return value from malloc(3).
Sponsored by: DARPA, NAI Labs
2002-02-25 16:39:34 +00:00
maxim
8b9c5f26cd
Fix infinite loop around sendfile(2) after sending >4GB file.
...
PR: bin/33770
Submitted by: Vladislav Shabanov <vs@rambler-co.ru>
Reviewed by: ru
Approved by: ru
MFC after: 1 month
2002-02-13 09:00:05 +00:00
kris
c60495e0de
Lock down with WFORMAT?=1, with overrides in the subdirectories which
...
are not yet warning-clean. Tested on i386 and alpha.
2002-02-04 02:33:51 +00:00
kris
94f0c44ca8
Silence some FORMAT_AUDIT warnings (one left)
2002-02-04 01:23:44 +00:00
imp
f15fa6acaf
o Eliminate __P
...
o Use new-style function definitions
o remove some !__STDC__ code
o eliminate register
2002-02-03 15:53:02 +00:00
yar
dc82fedb5a
Remove the setjmp/longjmp stuff completely. Use signal
...
handlers to set flags only (with exception for sigquit(),
which still seems to call some non-reentrant functions on
its way to _exit(2).) That must eliminate the possibility
of catching SIGSEGV from following non-reentrant paths from
signal handlers.
PR: bin/32740 bin/33846
Submitted by: Maxim Konovalov <maxim@macomnet.ru>
Obtained from: OpenBSD
2002-01-28 19:28:14 +00:00
ume
fd850072e8
Log wtmp according to an address family properly.
...
Reported by: matusita
Reviewed by: matusita
MFC after: 1 week
2002-01-28 14:50:07 +00:00
ache
09d8de9092
Remove my workaround fallback since PAM now do it properly.
2002-01-21 19:07:15 +00:00
des
6f44d9644f
Really back out ache's commits. These files are now precisely as they were
...
twentyfour hours ago, except for RCS ids.
2002-01-19 18:29:50 +00:00
ache
af75944084
Back out PAM_CRED_ERR addition
2002-01-19 18:06:05 +00:00
ache
46e8d91448
Add PAM_CRED_ERR as valid failure case
2002-01-19 09:01:17 +00:00
ache
86e7a84bd8
Call opieunlock() only if we skip opieverify() part
2002-01-19 05:59:24 +00:00
ache
5d0d99723d
Remove conditional 'pwok' fallback for PAM which now
...
is implemented in pam_opie module
For non-PAM variant rewrite empty password checking code to do the right thing
and not disallow empty passwords in all cases.
2002-01-19 03:18:33 +00:00
dwmalone
7bc655e785
Be more careful about freeing memory after parsing commands.
...
Hiroyuki YAMAMORI gave a patch for the EPRT command in the
PR below. Problems with the rest of the patch are my fault.
PR: 33268
Reviewed by: iedowse, sheldonh
2002-01-05 20:13:01 +00:00
ache
50483c2302
Fix OPIE auth
2002-01-01 13:14:25 +00:00
bde
4de262f554
Fixed missing DPADD in previous commit. Fixed most style bugs related to
...
DPADD and LDADD.
2001-12-29 12:06:59 +00:00
joe
6b4b04d210
Link with libm to take advantage of the -h flag to ls.
...
Submitted by: Mike Makonnen <mike_makonnen@yahoo.com>
2001-12-29 10:22:13 +00:00
green
2181f49061
Add lomac.c.
...
Found by: ken
2001-11-27 06:15:12 +00:00
yar
e2a8ecd17c
Eliminate another instance of the old and well-known
...
DoS bug that the select(2)/accept(2) pair is called on
a socket that is in the blocking I/O mode. The bug is
triggered if a selected connection dies before the accept(2)
leading to the accept(2) blocking virtually forever.
MFC after: 1 week
2001-11-19 21:52:03 +00:00
yar
bc2c059580
Don't let a user name in ftpd's proctitle
...
be mistaken for a status message.
PR: misc/25217
MFC after: 7 days
2001-10-12 13:16:34 +00:00
yar
090772b098
Be consistent about indent at least within one block of code.
2001-10-12 13:06:40 +00:00