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