]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/ftpd/ftpd.8
This commit was generated by cvs2svn to compensate for changes in r168616,
[FreeBSD/FreeBSD.git] / libexec / ftpd / ftpd.8
1 .\" Copyright (c) 1985, 1988, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)ftpd.8      8.2 (Berkeley) 4/19/94
33 .\" $FreeBSD$
34 .\"
35 .Dd January 21, 2006
36 .Dt FTPD 8
37 .Os
38 .Sh NAME
39 .Nm ftpd
40 .Nd Internet File Transfer Protocol server
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl 46ADdEhMmOoRrSUvW
44 .Op Fl l Op Fl l
45 .Op Fl a Ar address
46 .Op Fl P Ar port
47 .Op Fl p Ar file
48 .Op Fl T Ar maxtimeout
49 .Op Fl t Ar timeout
50 .Op Fl u Ar umask
51 .Sh DESCRIPTION
52 The
53 .Nm
54 utility is the
55 Internet File Transfer Protocol
56 server process.
57 The server uses the
58 .Tn TCP
59 protocol
60 and listens at the port specified with the
61 .Fl P
62 option or in the
63 .Dq ftp
64 service specification; see
65 .Xr services 5 .
66 .Pp
67 Available options:
68 .Bl -tag -width indent
69 .It Fl 4
70 When
71 .Fl D
72 is specified, accept connections via
73 .Dv AF_INET
74 socket.
75 .It Fl 6
76 When
77 .Fl D
78 is specified, accept connections via
79 .Dv AF_INET6
80 socket.
81 .It Fl A
82 Allow only anonymous ftp access.
83 .It Fl a
84 When
85 .Fl D
86 is specified, accept connections only on the specified
87 .Ar address .
88 .It Fl D
89 With this option set,
90 .Nm
91 will detach and become a daemon, accepting connections on the FTP port and
92 forking children processes to handle them.
93 This is lower overhead than starting
94 .Nm
95 from
96 .Xr inetd 8
97 and is thus useful on busy servers to reduce load.
98 .It Fl d
99 Debugging information is written to the syslog using
100 .Dv LOG_FTP .
101 .It Fl E
102 Disable the EPSV command.
103 This is useful for servers behind older firewalls.
104 .It Fl h
105 Disable printing host-specific information, such as the
106 server software version or hostname, in server messages.
107 .It Fl l
108 Each successful and failed
109 .Xr ftp 1
110 session is logged using syslog with a facility of
111 .Dv LOG_FTP .
112 If this option is specified twice, the retrieve (get), store (put), append,
113 delete, make directory, remove directory and rename operations and
114 their filename arguments are also logged.
115 By default,
116 .Xr syslogd 8
117 logs these to
118 .Pa /var/log/xferlog .
119 .It Fl M
120 Prevent anonymous users from creating directories.
121 .It Fl m
122 Permit anonymous users to overwrite or modify
123 existing files if allowed by file system permissions.
124 By default, anonymous users cannot modify existing files;
125 in particular, files to upload will be created under a unique name.
126 .It Fl O
127 Put server in write-only mode for anonymous users only.
128 RETR is disabled for anonymous users, preventing anonymous downloads.
129 This has no effect if
130 .Fl o
131 is also specified.
132 .It Fl o
133 Put server in write-only mode.
134 RETR is disabled, preventing downloads.
135 .It Fl P
136 When
137 .Fl D
138 is specified, accept connections at
139 .Ar port ,
140 specified as a numeric value or service name, instead of at the default
141 .Dq ftp
142 port.
143 .It Fl p
144 When
145 .Fl D
146 is specified, write the daemon's process ID to
147 .Ar file
148 instead of the default pid file,
149 .Pa /var/run/ftpd.pid .
150 .It Fl R
151 With this option set,
152 .Nm
153 will revert to historical behavior with regard to security checks on
154 user operations and restrictions on PORT requests.
155 Currently,
156 .Nm
157 will only honor PORT commands directed to unprivileged ports on the
158 remote user's host (which violates the FTP protocol specification but
159 closes some security holes).
160 .It Fl r
161 Put server in read-only mode.
162 All commands which may modify the local file system are disabled.
163 .It Fl S
164 With this option set,
165 .Nm
166 logs all anonymous file downloads to the file
167 .Pa /var/log/ftpd
168 when this file exists.
169 .It Fl T
170 A client may also request a different timeout period;
171 the maximum period allowed may be set to
172 .Ar timeout
173 seconds with the
174 .Fl T
175 option.
176 The default limit is 2 hours.
177 .It Fl t
178 The inactivity timeout period is set to
179 .Ar timeout
180 seconds (the default is 15 minutes).
181 .It Fl U
182 This option instructs ftpd to use data ports in the range of
183 .Dv IP_PORTRANGE_DEFAULT
184 instead of in the range of
185 .Dv IP_PORTRANGE_HIGH .
186 Such a change may be useful for some specific firewall configurations;
187 see
188 .Xr ip 4
189 for more information.
190 .Pp
191 Note that option is a virtual no-op in
192 .Fx 5.0
193 and above; both port
194 ranges are indentical by default.
195 .It Fl u
196 The default file creation mode mask is set to
197 .Ar umask ,
198 which is expected to be an octal numeric value.
199 Refer to
200 .Xr umask 2
201 for details.
202 This option may be overridden by
203 .Xr login.conf 5 .
204 .It Fl v
205 A synonym for
206 .Fl d .
207 .It Fl W
208 Do not log FTP sessions to
209 .Pa /var/log/wtmp .
210 .El
211 .Pp
212 The file
213 .Pa /var/run/nologin
214 can be used to disable ftp access.
215 If the file exists,
216 .Nm
217 displays it and exits.
218 If the file
219 .Pa /etc/ftpwelcome
220 exists,
221 .Nm
222 prints it before issuing the
223 .Dq ready
224 message.
225 If the file
226 .Pa /etc/ftpmotd
227 exists,
228 .Nm
229 prints it after a successful login.
230 Note the motd file used is the one
231 relative to the login environment.
232 This means the one in
233 .Pa ~ftp/etc
234 in the anonymous user's case.
235 .Pp
236 The ftp server currently supports the following ftp requests.
237 The case of the requests is ignored.
238 Requests marked [RW] are
239 disabled if
240 .Fl r
241 is specified.
242 .Bl -column "Request" -offset indent
243 .It Sy Request Ta Sy "Description"
244 .It ABOR Ta "abort previous command"
245 .It ACCT Ta "specify account (ignored)"
246 .It ALLO Ta "allocate storage (vacuously)"
247 .It APPE Ta "append to a file [RW]"
248 .It CDUP Ta "change to parent of current working directory"
249 .It CWD Ta "change working directory"
250 .It DELE Ta "delete a file [RW]"
251 .It EPRT Ta "specify data connection port, multiprotocol"
252 .It EPSV Ta "prepare for server-to-server transfer, multiprotocol"
253 .It HELP Ta "give help information"
254 .It LIST Ta "give list files in a directory" Pq Dq Li "ls -lgA"
255 .It LPRT Ta "specify data connection port, multiprotocol"
256 .It LPSV Ta "prepare for server-to-server transfer, multiprotocol"
257 .It MDTM Ta "show last modification time of file"
258 .It MKD Ta "make a directory [RW]"
259 .It MODE Ta "specify data transfer" Em mode
260 .It NLST Ta "give name list of files in directory"
261 .It NOOP Ta "do nothing"
262 .It PASS Ta "specify password"
263 .It PASV Ta "prepare for server-to-server transfer"
264 .It PORT Ta "specify data connection port"
265 .It PWD Ta "print the current working directory"
266 .It QUIT Ta "terminate session"
267 .It REST Ta "restart incomplete transfer"
268 .It RETR Ta "retrieve a file"
269 .It RMD Ta "remove a directory [RW]"
270 .It RNFR Ta "specify rename-from file name [RW]"
271 .It RNTO Ta "specify rename-to file name [RW]"
272 .It SITE Ta "non-standard commands (see next section)"
273 .It SIZE Ta "return size of file"
274 .It STAT Ta "return status of server"
275 .It STOR Ta "store a file [RW]"
276 .It STOU Ta "store a file with a unique name [RW]"
277 .It STRU Ta "specify data transfer" Em structure
278 .It SYST Ta "show operating system type of server system"
279 .It TYPE Ta "specify data transfer" Em type
280 .It USER Ta "specify user name"
281 .It XCUP Ta "change to parent of current working directory (deprecated)"
282 .It XCWD Ta "change working directory (deprecated)"
283 .It XMKD Ta "make a directory (deprecated) [RW]"
284 .It XPWD Ta "print the current working directory (deprecated)"
285 .It XRMD Ta "remove a directory (deprecated) [RW]"
286 .El
287 .Pp
288 The following non-standard or
289 .Ux
290 specific commands are supported
291 by the
292 SITE request.
293 .Pp
294 .Bl -column Request -offset indent
295 .It Sy Request Ta Sy Description
296 .It UMASK Ta change umask, e.g. ``SITE UMASK 002''
297 .It IDLE Ta set idle-timer, e.g. ``SITE IDLE 60''
298 .It CHMOD Ta "change mode of a file [RW], e.g. ``SITE CHMOD 755 filename''"
299 .It MD5 Ta "report the files MD5 checksum, e.g. ``SITE MD5 filename''"
300 .It HELP Ta give help information
301 .El
302 .Pp
303 Note: SITE requests are disabled in case of anonymous logins.
304 .Pp
305 The remaining ftp requests specified in Internet RFC 959
306 are
307 recognized, but not implemented.
308 MDTM and SIZE are not specified in RFC 959, but will appear in the
309 next updated FTP RFC.
310 To avoid possible denial-of-service attacks, SIZE requests against
311 files larger than 10240 bytes will be denied if the current transfer
312 type is ASCII.
313 .Pp
314 The ftp server will abort an active file transfer only when the
315 ABOR
316 command is preceded by a Telnet "Interrupt Process" (IP)
317 signal and a Telnet "Synch" signal in the command Telnet stream,
318 as described in Internet RFC 959.
319 If a
320 STAT
321 command is received during a data transfer, preceded by a Telnet IP
322 and Synch, transfer status will be returned.
323 .Pp
324 The
325 .Nm
326 utility interprets file names according to the
327 .Dq globbing
328 conventions used by
329 .Xr csh 1 .
330 This allows users to utilize the metacharacters
331 .Dq Li \&*?[]{}~ .
332 .Pp
333 The
334 .Nm
335 utility authenticates users according to six rules.
336 .Pp
337 .Bl -enum -offset indent
338 .It
339 The login name must be in the password data base
340 and not have a null password.
341 In this case a password must be provided by the client before any
342 file operations may be performed.
343 If the user has an S/Key key, the response from a successful USER
344 command will include an S/Key challenge.
345 The client may choose to respond with a PASS command giving either
346 a standard password or an S/Key one-time password.
347 The server will automatically determine which type of
348 password it has been given and attempt to authenticate accordingly.
349 See
350 .Xr key 1
351 for more information on S/Key authentication.
352 S/Key is a Trademark of Bellcore.
353 .It
354 The login name must not appear in the file
355 .Pa /etc/ftpusers .
356 .It
357 The login name must not be a member of a group specified in the file
358 .Pa /etc/ftpusers .
359 Entries in this file interpreted as group names are prefixed by an "at"
360 .Ql \&@
361 sign.
362 .It
363 The user must have a standard shell returned by
364 .Xr getusershell 3 .
365 .It
366 If the user name appears in the file
367 .Pa /etc/ftpchroot ,
368 or the user is a member of a group with a group entry in this file,
369 i.e., one prefixed with
370 .Ql \&@ ,
371 the session's root will be changed to the directory specified
372 in this file or to the user's login directory by
373 .Xr chroot 2
374 as for an
375 .Dq anonymous
376 or
377 .Dq ftp
378 account (see next item).
379 See
380 .Xr ftpchroot 5
381 for a detailed description of the format of this file.
382 This facility may also be triggered by enabling the boolean "ftp-chroot"
383 capability in
384 .Xr login.conf 5 .
385 However, the user must still supply a password.
386 This feature is intended as a compromise between a fully anonymous
387 account and a fully privileged account.
388 The account should also be set up as for an anonymous account.
389 .It
390 If the user name is
391 .Dq anonymous
392 or
393 .Dq ftp ,
394 an
395 anonymous ftp account must be present in the password
396 file (user
397 .Dq ftp ) .
398 In this case the user is allowed
399 to log in by specifying any password (by convention an email address for
400 the user should be used as the password).
401 When the
402 .Fl S
403 option is set, all transfers are logged as well.
404 .El
405 .Pp
406 In the last case,
407 .Nm
408 takes special measures to restrict the client's access privileges.
409 The server performs a
410 .Xr chroot 2
411 to the home directory of the
412 .Dq ftp
413 user.
414 As a special case if the
415 .Dq ftp
416 user's home directory pathname contains the
417 .Pa /./
418 separator,
419 .Nm
420 uses its left-hand side as the name of the directory to do
421 .Xr chroot 2
422 to, and its right-hand side to change the current directory to afterwards.
423 A typical example for this case would be
424 .Pa /usr/local/ftp/./pub .
425 In order that system security is not breached, it is recommended
426 that the
427 .Dq ftp
428 subtree be constructed with care, following these rules:
429 .Bl -tag -width "~ftp/pub" -offset indent
430 .It Pa ~ftp
431 Make the home directory owned by
432 .Dq root
433 and unwritable by anyone.
434 .It Pa ~ftp/etc
435 Make this directory owned by
436 .Dq root
437 and unwritable by anyone (mode 555).
438 The files pwd.db (see
439 .Xr passwd 5 )
440 and
441 .Xr group 5
442 must be present for the
443 .Xr ls 1
444 command to be able to produce owner names rather than numbers.
445 The password field in
446 .Xr passwd 5
447 is not used, and should not contain real passwords.
448 The file
449 .Pa ftpmotd ,
450 if present, will be printed after a successful login.
451 These files should be mode 444.
452 .It Pa ~ftp/pub
453 This directory and the subdirectories beneath it should be owned
454 by the users and groups responsible for placing files in them,
455 and be writable only by them (mode 755 or 775).
456 They should
457 .Em not
458 be owned or writable by
459 .Dq ftp
460 or its group, otherwise guest users
461 can fill the drive with unwanted files.
462 .El
463 .Pp
464 If the system has multiple IP addresses,
465 .Nm
466 supports the idea of virtual hosts, which provides the ability to
467 define multiple anonymous ftp areas, each one allocated to a different
468 internet address.
469 The file
470 .Pa /etc/ftphosts
471 contains information pertaining to each of the virtual hosts.
472 Each host is defined on its own line which contains a number of
473 fields separated by whitespace:
474 .Bl -tag -offset indent -width hostname
475 .It hostname
476 Contains the hostname or IP address of the virtual host.
477 .It user
478 Contains a user record in the system password file.
479 As with normal anonymous ftp, this user's access uid, gid and group
480 memberships determine file access to the anonymous ftp area.
481 The anonymous ftp area (to which any user is chrooted on login)
482 is determined by the home directory defined for the account.
483 User id and group for any ftp account may be the same as for the
484 standard ftp user.
485 .It statfile
486 File to which all file transfers are logged, which
487 defaults to
488 .Pa /var/log/ftpd .
489 .It welcome
490 This file is the welcome message displayed before the server ready
491 prompt.
492 It defaults to
493 .Pa /etc/ftpwelcome .
494 .It motd
495 This file is displayed after the user logs in.
496 It defaults to
497 .Pa /etc/ftpmotd .
498 .El
499 .Pp
500 Lines beginning with a '#' are ignored and can be used to include
501 comments.
502 .Pp
503 Defining a virtual host for the primary IP address or hostname
504 changes the default for ftp logins to that address.
505 The 'user', 'statfile', 'welcome' and 'motd' fields may be left
506 blank, or a single hyphen '-' used to indicate that the default
507 value is to be used.
508 .Pp
509 As with any anonymous login configuration, due care must be given
510 to setup and maintenance to guard against security related problems.
511 .Pp
512 The
513 .Nm
514 utility has internal support for handling remote requests to list
515 files, and will not execute
516 .Pa /bin/ls
517 in either a chrooted or non-chrooted environment.
518 The
519 .Pa ~/bin/ls
520 executable need not be placed into the chrooted tree, nor need the
521 .Pa ~/bin
522 directory exist.
523 .Sh FILES
524 .Bl -tag -width ".Pa /var/run/ftpd.pid" -compact
525 .It Pa /etc/ftpusers
526 List of unwelcome/restricted users.
527 .It Pa /etc/ftpchroot
528 List of normal users who should be chroot'd.
529 .It Pa /etc/ftphosts
530 Virtual hosting configuration file.
531 .It Pa /etc/ftpwelcome
532 Welcome notice.
533 .It Pa /etc/ftpmotd
534 Welcome notice after login.
535 .It Pa /var/run/ftpd.pid
536 Default pid file for daemon mode.
537 .It Pa /var/run/nologin
538 Displayed and access refused.
539 .It Pa /var/log/ftpd
540 Log file for anonymous transfers.
541 .It Pa /var/log/xferlog
542 Default place for session logs.
543 .El
544 .Sh SEE ALSO
545 .Xr ftp 1 ,
546 .Xr key 1 ,
547 .Xr umask 2 ,
548 .Xr getusershell 3 ,
549 .Xr ftpchroot 5 ,
550 .Xr login.conf 5 ,
551 .Xr inetd 8 ,
552 .Xr syslogd 8
553 .Sh HISTORY
554 The
555 .Nm
556 utility appeared in
557 .Bx 4.2 .
558 IPv6 support was added in WIDE Hydrangea IPv6 stack kit.
559 .Sh BUGS
560 The server must run as the super-user
561 to create sockets with privileged port numbers.
562 It maintains
563 an effective user id of the logged in user, reverting to
564 the super-user only when binding addresses to sockets.
565 The
566 possible security holes have been extensively
567 scrutinized, but are possibly incomplete.