summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypserv
Commit message (Collapse)AuthorAgeFilesLines
* Enable inadvertantly disabled "securenet" access controls in ypserv. [1]cperciva2006-05-311-15/+22
| | | | | | | | Correct a bug in the handling of backslash characters in smbfs which can allow an attacker to escape from a chroot(2). [2] Security: FreeBSD-SA-06:15.ypserv [1] Security: FreeBSD-SA-06:16.smbfs [2]
* - Let make(1) track dependencies and regen netid map when needed.ru2006-04-131-8/+1
| | | | - Add missing dependency for netid.byname.
* Remove unused variables. int -> size_t for lenghts.charnier2005-05-202-3/+2
|
* add targets for ipnodes.byname and ipnodes.byaddr which carriesume2005-05-021-0/+38
| | | | | IPv6 addresses. these targets are off by default, and these are built when there is /var/yp/ipnodes.
* fix typo in previos commit.ume2005-05-021-2/+2
|
* teach IPv6 to async DNS resolver in ypserv:ume2005-05-023-27/+61
| | | | | - query AAAA RR on ipnodes.byname query. - query .ip6.arpa. on ipnodes.byaddr query.
* Use socklen_t where appropriate.stefanf2005-03-112-6/+10
|
* Expand contractions.ru2005-02-131-1/+1
|
* Expand *n't contractions.ru2005-02-131-3/+3
|
* Sort sections.ru2005-01-181-2/+2
|
* Utilize FILES, SCRIPTS, and SYMLINKS. While here, fixed a bug inru2004-10-181-9/+8
| | | | | | | | | | | the implementation of the following feature in revision 1.4: - Install Makefile.yp as /var/yp/Makefile.dist and link it to /var/yp/Makefile only if /var/yp/Makefile doesn't already exist. Suggested by Peter Wemm. The actual code was only symlinking when no /var/yp/Makefile.dist existed, i.e., never.
* Sort SEE ALSO references (in dictionary order, ignoring case).ru2004-07-041-2/+2
|
* Mechanically kill hard sentence breaks.ru2004-07-021-1/+2
|
* Eliminated two dozens of superfluous cats and two r-cats (sorry, Jordan).ru2003-06-131-73/+51
| | | | Suggested by: Dan Nelson
* Use __FBSDID over rcsid[]. Protect copyright[] where needed.obrien2003-05-037-28/+14
|
* style.Makefile(5)obrien2003-04-041-2/+2
|
* Add a target for the creation of a /etc/shells map and add it torobert2003-03-211-2/+12
| | | | the maps which are built by default.
* ypserv(8) is now started from rc.dmtm2003-01-231-1/+1
| | | | Approved by: markm (mentor)(implicit)
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/schweikh2002-12-301-10/+6
| | | | Add FreeBSD Id tag where missing.
* english(4) police.schweikh2002-12-271-1/+1
|
* Uniformly refer to a file system as "file system".ru2002-12-121-1/+1
| | | | Approved by: re
* The resolver library does a pretty acceptable set of domainmarkm2002-09-201-19/+2
| | | | | | | | | | suffix attempts before failing. No need to try again by hand, particularly when it fills your log with failures because localhost.example.com..example.com fails to resolve. Also improve the log message that helped find this error. There is still (maybe) an uninitialised pointer problem here, but in a month of testing I haven't triggered it.
* mdoc(7) police: Removed redundant .Ns calls.ru2002-08-131-1/+1
|
* Drop support for COPY, -c has been the default mode of install(1)ru2002-07-291-2/+2
| | | | | | for a long time now. Approved by: bde
* s/${INSTALL} -c/${INSTALL} ${COPY}/ru2002-07-181-2/+2
|
* The .Nm utilitycharnier2002-07-142-16/+24
|
* Fix a boatload of format errors and constness violations.des2002-05-082-36/+40
| | | | Sponsored by: DARPA, NAI Labs
* Spell void * as void * rather than caddr_t. This is complicated by thedes2002-04-282-28/+24
| | | | | | fact that caddr_t is often misspelled as char *. Sponsored by: DARPA, NAI Labs
* Sort out the documentation WRT TCP_WRAPPERs, which is now enabled.markm2002-02-061-12/+2
|
* Fix an inconsistency between what FreeBSD NIS and AMD think themarkm2002-02-061-3/+3
| | | | AMD map name should be.
* Enable TCP_WRAPPERs for the NIS server. The protection afforded ismarkm2002-02-061-1/+4
| | | | not massive, but usable.
* ANSIfy and remove some dead code.des2002-02-067-140/+93
| | | | Sponsored by: DARPA, NAI Labs
* Apply the following mechanical transformations in preparation fordes2002-02-066-53/+53
| | | | | | | | | | | | | | | | | ansification and constification: s{\s+__P\((\(.*?\))\)}{$1}g; s{\(\s+}{\(}g; s{\s+\)}{\)}g; s{\s+,}{,}g; s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g; s{return ([^\(].*?);}{return ($1);}g; s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g; s{\s+$}{\n};g Also add $FreeBSD$ where needed. MFC after: 1 week
* yp(4) -> yp(8).ru2002-01-142-2/+2
| | | | PR: docs/30797
* mdoc(7) police: join split punctuation to macro calls.ru2001-08-101-2/+2
|
* can not -> cannotsheldonh2001-08-081-1/+1
|
* sprintf -> snprintfkris2001-07-231-4/+4
|
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-5/+4
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove whitespace at EOL.dd2001-07-151-2/+2
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Fix the type of the NULL arg to execl()brian2001-07-091-2/+2
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-2/+2
|
* Mark some functions as __printflike()kris2001-07-052-1/+4
| | | | MFC After: 1 week
* The aliases file now lives in /etc/mail/.gshapiro2001-05-151-1/+1
| | | | | PR: misc/26648 MFC after: 3 days
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-1/+1
| | | | - MAN[1-9] -> MAN.
* ypserv has intimate knowledge of the server transport handle which iswpaul2001-03-211-17/+4
| | | | | | | | needed to make the asynchronous DNS lookup mechanism work. (It needs to be able to get/set the transaction ID in the trasport handle so it can deliver a delayed UDP response when a reply is received from a DNS server.) With TI-TPC, the transport handle has changed slightly (what used to be an int is now a size_t) so we need to account for this.
* Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) andalfred2001-03-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | associated changes that had to happen to make this possible as well as bugs fixed along the way. Bring in required TLI library routines to support this. Since we don't support TLI we've essentially copied what NetBSD has done, adding a thin layer to emulate direct the TLI calls into BSD socket calls. This is mostly from Sun's tirpc release that was made in 1994, however some fixes were backported from the 1999 release (supposedly only made available after this porting effort was underway). The submitter has agreed to continue on and bring us up to the 1999 release. Several key features are introduced with this update: Client calls are thread safe. (1999 code has server side thread safe) Updated, a more modern interface. Many userland updates were done to bring the code up to par with the recent RPC API. There is an update to the pthreads library, a function pthread_main_np() was added to emulate a function of Sun's threads library. While we're at it, bring in NetBSD's lockd, it's been far too long of a wait. New rpcbind(8) replaces portmap(8) (supporting communication over an authenticated Unix-domain socket, and by default only allowing set and unset requests over that channel). It's much more secure than the old portmapper. Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded to support TI-RPC and to support IPV6. Umount(8) is also fixed to unmount pathnames longer than 80 chars, which are currently truncated by the Kernel statfs structure. Submitted by: Martin Blapp <mb@imp.ch> Manpage review: ru Secure RPC implemented by: wpaul
* Fix typo: seperate -> separate.asmodai2001-02-062-2/+2
| | | | Seperate does not exist in the english language.
* Convert from CIRCLEQ to TAILQ.phk2000-12-292-46/+44
|
OpenPOWER on IntegriCloud