summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mount_portalfs
Commit message (Collapse)AuthorAgeFilesLines
* Actually rename FDESC, PORTAL, UMAP and UNION file systems.ru2001-05-241-5/+5
| | | | OK'ed by: bp
* Rename (after a repo-copy) some mount(8) programs:ru2001-05-233-7/+7
| | | | | | | | mount_fdesc -> mount_fdescfs mount_null -> mount_nullfs mount_portal -> mount_portalfs mount_umap -> mount_umapfs mount_union -> mount_unionfs
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileru2001-05-232-2/+2
| | | | | | | | | | | | | | | systems were repo-copied from sys/miscfs to sys/fs. - Renamed the following file systems and their modules: fdesc -> fdescfs, portal -> portalfs, union -> unionfs. - Renamed corresponding kernel options: FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS. - Install header files for the above file systems. - Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland Makefiles.
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for sbin/ to 8.ru2001-03-201-1/+0
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-3/+6
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* 10 X's for mktemp(). This seems to be free from race conditions.kris2000-01-101-1/+1
|
* mount* fixes from Martin Blapp <mb@imp.ch>:phk1999-10-091-2/+4
| | | | | | | | | | | | | | | | | Made mount more userfriendly (bad slashes are now filtered out) and we remove in mount_nfs trailing slashes if there are any. Fixed mount_xxx binarys to resolve with realpath(3) the mountpoint. Translate the deprecated nfs-syntax with '@' to ':' . The ':' syntax has now precedence, but '@' still works. Notify the user that the '@' syntax should not be used. PR: 7846 PR: 13692 Submitted by: Martin Blapp <mb@imp.ch> Reviewed by: phk
* $Id$ -> $FreeBSD$peter1999-08-2812-12/+12
|
* Bad reference getsockname(8) -> getsockname(2)chris1999-08-141-2/+2
|
* Typo police. 'Acknowledgement' is spelled correctly so it was left untouched.dwhite1999-08-061-2/+2
| | | | | PR: docs/12986 Submitted by: Seth <seth@freebie.dp.ny.frb.org>
* Add pt_tcplisten.c functionality, fix a few minor bugsdillon1998-12-157-11/+234
| | | | | PR: kern/8793, misc/8796, kern/8797, kern/8798, kern/8050, kern/6758 Submitted by: Duncan Barclay <dmlb@ragnet.demon.co.uk>
* sendmsg() didn't like the MSG_EOR flag and returned an error. Removing thedillon1998-12-121-2/+2
| | | | flag makes portal tcp operation work.
* Fixed printf format errors.bde1998-08-021-2/+2
|
* Correct use of .Nm. Spelling. Add rcsid and remove unused #includes.charnier1998-07-068-42/+48
|
* Removed definition of _NEW_VFSCONF. The new vfsconf interface is nowbde1998-01-201-2/+1
| | | | the default.
* change s_port to ntohs(s_port) for printf in DEBUG.darrenr1998-01-111-2/+2
|
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-2/+2
| | | | posix standard on the topic.
* Fix small race window when creating portal socket.imp1997-03-241-1/+4
| | | | Obtained from: OpenBSD
* Merge from Lite2 (use new getvfsbyname() and mount(2) interface)peter1997-03-115-32/+32
|
* Revert $FreeBSD$ to $Id$peter1997-02-2211-11/+11
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-1411-11/+11
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Don't use __dead or __pure in user code. They were obfuscationsbde1996-09-141-2/+2
| | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong.
* Use the .Bx macro where appropriate.mpp1996-08-231-1/+2
|
* Get rid of the last vestiges of the old MOUNT_* constants in thewollman1996-05-131-9/+14
| | | | | | | | | mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links to a new mount_std(8) which can mount any really generic filesystem such as these when called with the appropriate argv[0]. Also, convert the mount programs to use sysexits.h.
* Remove trailing whitespace.rgrimes1995-05-302-3/+3
|
* Bugfixes :gpalmer1995-04-193-9/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - in mount_portal.c: included catching of SIGHUP to get portald to re-read the config file. - in mount_portal.c: in SIGCHLD handler the return values checked from waitpid were wrong. Note. this routine was written correclty according to the manual page for 4.4BSD, but waitpid does not exhibit this behaviour. It is not returning 0 when WNOHANG is specified. I havent checked this properly. - in mount_portal.c: initialized the fdset for the select properly. - in mount_portal.c: corrected poor casting in the select. - in mount_portal.c: changed a break; to exit (0); so that the children die after doing the hard work, this stops the select: bad file descriptor messages. - in pt_file.c: the kernel passes kernel style open flags to the portal code which aren't compatible with "normal" O_ flags. I have adjusted these in pt_file.c. In general I think the portal fs code and portal_cred structure need changing to pass to the portald the right style of flags _and_ the permissions. - in pt_tcp.c: a few mistakes in typing of the socket structures, getservbyname returns the port number as an int but sockaddr wants the port number as an u_short. - in pt_tcp.c: someone wrote this on a VAX/Sun whatever and forget about byte ordering!! I've included a few htons about the place. - in all the above I have sprinkled a few more debugging printf's. Submitted by: "Duncan McL Barclay" <dmlb@ohm.york.ac.uk
* Use POSIX.2 regular expressions, get rid of libcompat.wollman1995-02-212-20/+26
|
* And another absolute path -I :-<phk1994-11-201-1/+1
|
* Add support for filesystem-specific `-o' options, and re-implement thewollman1994-11-011-1/+1
| | | | | | | | | | | | | | | | most common cd9660 and nfs options like God intended them. (It is now possible to say mount -o ro,soft,bg,intr there:/foo/bar /foo/bar again.) This whole getmntopt() business is an incredible botch; it never should have been anything more than a wrapper around getsubopt(3). Because if the way the current hackaround is implemented, options which take arguments (like the old `rsize' and `wsize') are still unavailable, and must be accessed the new, broken way. (It's unimaginable how Berkeley managed to screw up one of the few things about NFS that Sun actually got right to begin with!)
* Automatically load NFS and a bevy of other filesystems.wollman1994-09-221-1/+10
|
* bugfix: change gidset[] type from int to gid_tache1994-09-191-2/+2
|
* Convert to our man installation style. Also fixed long-standing bugwollman1994-08-051-1/+1
| | | | | in `fastboot'/`fasthalt' in which the interpreter would hang around after `reboot' or `halt' is run, causing an irritating ``Killed'' message.
* BSD 4.4 Lite sbin Sourcesrgrimes1994-05-2612-0/+1465
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
OpenPOWER on IntegriCloud