]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/log
FreeBSD/stable/9.git
10 years agoMFH (r264691): merge upstream patch for EC calculation bug
des [Sun, 20 Apr 2014 13:12:32 +0000 (13:12 +0000)]
MFH (r264691): merge upstream patch for EC calculation bug

git-svn-id: svn://svn.freebsd.org/base/stable/9@264693 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264620:
kib [Sun, 20 Apr 2014 01:45:23 +0000 (01:45 +0000)]
MFC r264620:
Fix typo.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264685 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263244: find: When performing -quit, finish pending -exec ... + command
jilles [Fri, 18 Apr 2014 14:59:39 +0000 (14:59 +0000)]
MFC r263244: find: When performing -quit, finish pending -exec ... + command
lines.

This avoids unexpected partial processing when a find command uses both
-quit and -exec ... +.

GNU find does the same.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264647 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r260246: sh(1): Discourage use of -e.
jilles [Fri, 18 Apr 2014 12:51:30 +0000 (12:51 +0000)]
MFC r260246: sh(1): Discourage use of -e.

Also, do not say that ! before a pipeline is an operator, because it is
syntactically a keyword.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264645 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263847: sh: Fix memory leak with an assignment before a regular builtin
jilles [Fri, 18 Apr 2014 12:42:50 +0000 (12:42 +0000)]
MFC r263847: sh: Fix memory leak with an assignment before a regular builtin

git-svn-id: svn://svn.freebsd.org/base/stable/9@264644 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263846: sh: Fix memory leak when trying to set a read only variable.
jilles [Fri, 18 Apr 2014 12:34:10 +0000 (12:34 +0000)]
MFC r263846: sh: Fix memory leak when trying to set a read only variable.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264643 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264344:
hselasky [Fri, 18 Apr 2014 07:42:47 +0000 (07:42 +0000)]
MFC r264344:
Tune buffer sizes for SuperSpeed USB when using LibUSB v0.1 and v1.0
APIs to increase the maximum bandwidth limit.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264637 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264340:
hselasky [Fri, 18 Apr 2014 07:40:23 +0000 (07:40 +0000)]
MFC r264340:
Correct IMOD default value according to comment.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264636 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264488:
dteske [Fri, 18 Apr 2014 00:53:35 +0000 (00:53 +0000)]
MFC r264488:

When merging docsinstall and zfsboot updates to stable/9 it was discovered
that the slightly older dialog(1) requires --separate-output when using the
--checklist widget to force response to produce unquoted values (whereas in
stable/10 --checklist widget without --separate-output will only quote the
checklist labels in the response if the label is multi-word (contains any
whitespace).

Since these enhancements (see revisions 263956 and 264437) were developed
originally on 10, the --separate-output option was omitted. When merged to
stable/9, we (Allan Jude) and I found during testing that the "always-
quoting" of the response was causing things like struct interpolation to
fail (`f_struct device_$dev' would produce `f_struct device_\"da0\"' for
example -- literal quotes inherited from dialog(1) --checklist response).

To see the behavior, execute the following on stable/9 versus stable/10:

        dialog --checklist disks: 0 0 0 da0 "" off da1 "" off

Check both items and hit enter. On stable/10, the response is:

        da0 da1

On stable/9 the response is:

        "da0" "da1"

If you use the --separate-output option, the response is the same for both:

        da0
        da1

So applying --separate-output on every platform until either one of two
things occurs 1) dialog(1,3) gets synchronized between stable/9, higher or
2) we drop support for stable/9.

Reviewed by:    Allan Jude

git-svn-id: svn://svn.freebsd.org/base/stable/9@264633 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263777: sh: Fix possible memory leaks and double frees with unexpected
jilles [Thu, 17 Apr 2014 21:43:34 +0000 (21:43 +0000)]
MFC r263777: sh: Fix possible memory leaks and double frees with unexpected
SIGINT.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264629 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoCherry-pick OpenSSL changeset 5be1ae2:
delphij [Thu, 17 Apr 2014 20:09:41 +0000 (20:09 +0000)]
Cherry-pick OpenSSL changeset 5be1ae2:

====
Author: Dr. Stephen Henson <steve@openssl.org>

Treat a zero length passed to ssleay_rand_add a no op: the existing logic
zeroes the md value which is very bad. OpenSSL itself never does this
internally and the actual call doesn't make sense as it would be passing
zero bytes of entropy.

Thanks to Marcus Meissner <meissner@suse.de> for reporting this bug.
====

This is a direct commit to stable/8 and stable/9.  -HEAD and stable/10
already have this fix as part of OpenSSL 1.0.1g.

Noticed by: koobs
Reviewed by: benl (maintainer)

git-svn-id: svn://svn.freebsd.org/base/stable/9@264624 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264258
ray [Thu, 17 Apr 2014 14:19:32 +0000 (14:19 +0000)]
MFC r264258

Fix cursor color in reverse video mode.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264612 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFH (r262555): install the sntp(1) man page
des [Thu, 17 Apr 2014 12:16:51 +0000 (12:16 +0000)]
MFH (r262555): install the sntp(1) man page

git-svn-id: svn://svn.freebsd.org/base/stable/9@264599 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFH (r261511, r261542): add an example to the man page
des [Thu, 17 Apr 2014 12:11:00 +0000 (12:11 +0000)]
MFH (r261511, r261542): add an example to the man page

git-svn-id: svn://svn.freebsd.org/base/stable/9@264597 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC: r264315, r264316
brueffer [Thu, 17 Apr 2014 10:39:18 +0000 (10:39 +0000)]
MFC: r264315, r264316

Fix Xref order in SEE ALSO.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264587 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC all recent changes on -HEAD to dd(1).
delphij [Thu, 17 Apr 2014 00:34:49 +0000 (00:34 +0000)]
MFC all recent changes on -HEAD to dd(1).

git-svn-id: svn://svn.freebsd.org/base/stable/9@264579 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r249803:
eadler [Wed, 16 Apr 2014 18:09:11 +0000 (18:09 +0000)]
MFC r249803:

Add support for Intel C600/X79 Series Chipset KT Controller.

PR: kern/177072

git-svn-id: svn://svn.freebsd.org/base/stable/9@264547 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264354 but change the lock arg and implementation to fit the current state
sbruno [Tue, 15 Apr 2014 17:52:22 +0000 (17:52 +0000)]
MFC r264354 but change the lock arg and implementation to fit the current state
of CAM in stable/9

Fix insta-panic on assert of unlocked periph mtx in ciss(4) when
logical volume state changes.

I'm still setting the mergeinfo as done here as the intent of the MFC, if not
the EXACT code is being implemented.

Reviewed by: mav@
Sponsored by: Yahoo! Inc

git-svn-id: svn://svn.freebsd.org/base/stable/9@264511 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r237528:
tijl [Tue, 15 Apr 2014 16:10:47 +0000 (16:10 +0000)]
MFC r237528:

Create a symlink to sys/elf32.h, sys/elf64.h, and sys/elf_common.h.

When building libelf in the bootstrap stage this would include the tree
versions of, for example, sys/_types.h. This would work as long as the
tree's version of this file was close enough to the system's version of
the file. If, however, there was a change in the tree such that the location
of a typedef was moved this would cause problems. In this case the version
of sys/_types.h in the tree no longer defines __wchar_t and expects it to
to be defined in machine/_types.h, however we pick up machine/_types.h from
the system and find it is not defined there. The solution is to restrict the
parts of sys er include from the tree to those that are needed.

This fixes the recent Tinderbox failure.

MFC r237531:

Add the sys directory we create to the list of items to clean.

MFC r238741:

Don't ever build files depending on the directory where they are placed in.
It is obvious that its modification time will change with each such file
builded.
This bug cause whole libelf to rebuild itself each second make run
(and relink that files on each first make run) in the loop.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264506 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoDon't pass a timeout of 0 ticks to pause() for a delay of less than 1
jhb [Tue, 15 Apr 2014 15:58:06 +0000 (15:58 +0000)]
Don't pass a timeout of 0 ticks to pause() for a delay of less than 1
hz tick.  On 8.x this results in an infinite sleep as pause() does not
support a delay of 0 ticks.  Since all delay values are converted from
nanoseconds to ticks using a floor function, skipping the sleep for a
delay smaller than 1 tick is the more consistent than rounding up to a
single tick.

This is a direct commit to 8 and 9 as 10.x and later use pause_sbt()
instead.

Reviewed by: avg

git-svn-id: svn://svn.freebsd.org/base/stable/9@264505 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264420:
bdrewery [Tue, 15 Apr 2014 15:20:37 +0000 (15:20 +0000)]
MFC r264420:

  Always install pkg.conf. Don't depend on MK_PKGBOOTSTRAP.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264503 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263998:
tijl [Tue, 15 Apr 2014 09:40:45 +0000 (09:40 +0000)]
MFC r263998:

Rename __wchar_t so it no longer conflicts with __wchar_t from clang 3.4
-fms-extensions.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264495 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC: r264349
brueffer [Mon, 14 Apr 2014 21:10:10 +0000 (21:10 +0000)]
MFC: r264349

mdoc and spelling cleanup.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264476 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264345:
dim [Mon, 14 Apr 2014 17:54:01 +0000 (17:54 +0000)]
MFC r264345:

Amend r263891, by making clang default to DWARF2 debug info format for
all FreeBSD versions, not just 10.x and earlier.  Apparently too many
people seem to have trouble with post-1993 formats.

Also remove the related notes about messing with kernel configuration
files from UPDATING, which are now superfluous.

Requested by: many

git-svn-id: svn://svn.freebsd.org/base/stable/9@264464 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC 264242,264244,264259
ray [Mon, 14 Apr 2014 12:49:18 +0000 (12:49 +0000)]
MFC 264242,264244,264259

Fix panic on load new driver while vt(4) is in VGA textmode.
o Mute terminal while vt(4) driver change in progress.
o Reset VDF_TEXTMODE before init new driver.
o Assign default font, if new driver is not in TEXTMODE.
o Do not update screen while driver changing.
o Unmute terminal when done with driver replacement.
o Move init fonts to early point.
o Minor cleanup.
o Do not fill screen, while muted. (kern/subr_terminal.c)

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264456 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264448: Fix typo in debug/log statement.
dteske [Mon, 14 Apr 2014 05:38:50 +0000 (05:38 +0000)]
MFC r264448: Fix typo in debug/log statement.

Submitted by:   Rick Miller <vmiller@hostileadmin.com>

git-svn-id: svn://svn.freebsd.org/base/stable/9@264450 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r260429:
yongari [Mon, 14 Apr 2014 05:05:07 +0000 (05:05 +0000)]
MFC r260429:
  m_defrag(9) does not touch original mbuf chain when it can't
  allocate new mbuf.  Free original mbuf chain when driver is not
  able to send the packet.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264447 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r259543:
yongari [Mon, 14 Apr 2014 04:59:46 +0000 (04:59 +0000)]
MFC r259543:
  Failed m_devget(9) indicates lack of free mbuf cluster.  Update
  if_iqdrops counter for that case since the received frame is ok.
  While here, simplify updating counter logic.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264445 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263957:
yongari [Mon, 14 Apr 2014 04:53:34 +0000 (04:53 +0000)]
MFC r263957:
  Increase the number of TX DMA segments from 32 to 35.  It turned
  out 32 is not enough to support a full sized TSO packet.
  While I'm here fix a long standing bug introduced in r169632 in
  bce(4) where it didn't include L2 header length of TSO packet in
  the maximum DMA segment size calculation.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264443 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264343:
gjb [Mon, 14 Apr 2014 03:58:18 +0000 (03:58 +0000)]
MFC r264343:
  Add SRC_UPDATE_SKIP, DOC_UPDATE_SKIP, and PORTS_UPDATE_SKIP
  variables.  These are intended to allow bypassing the
  'svn co /usr/{src,doc,ports}' step in the chroot when the
  tree exists from external means.

  The use case here is that /usr/src, /usr/doc, and /usr/ports
  in the chroot exist as result of zfs dataset clones, so it
  is possible (and happens quite often) that the included
  distributions may not be consistent.  (This is not the case
  for -RELEASE builds, but does happen for snapshot builds.)

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264441 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264243:
dteske [Mon, 14 Apr 2014 01:49:26 +0000 (01:49 +0000)]
MFC r264243:

Loosen the processing of *_IF_aliasN vars to be less strict. Previously,
the first alias had to be _alias0 and processing stopped at the first non-
defined variable (preventing gaps). Allowing gaps gives the administrator
the ability to group aliases in an adhoc manner and also lifts the
requirement to renumber aliases simply to comment-out an existing one.
Aliases are processed in numerical ascending order.

NB: Also Patches mdconfig{,2} rc(8) boot scripts to loosen the numbering
scheme for mdconfig_mdN settings to be less strict in the same manner.

Discussed on:   -rc

git-svn-id: svn://svn.freebsd.org/base/stable/9@264439 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r256343,256540-256541,256544,256549,256551,256553,257939,258021,258927,
dteske [Mon, 14 Apr 2014 01:18:02 +0000 (01:18 +0000)]
MFC r256343,256540-256541,256544,256549,256551,256553,257939,258021,258927,
259144,259148,259470,259472,259474,259476-259478,259480-259481,259570,
259597-259598, and 261960 (24 revisions; summarized below)...
r256343: Add zfsboot module as an option for automatic configuration
r256540: Add zpool_cache_* variables to loader.conf(5)
r256541: Document BSDINSTALL_TMPBOOT in bsdinstall.8
r256544: Fix a typo when setting up loader.conf(5) GELI entries
r256549: Document zfsboot in bsdinstall.8
r256551: Bump .Dd date in bsdinstall.8
r256553: Align ZFSBOOT_BEROOT_NAME with sysutils/beadm + Solaris beadm
r257939: Validate scripted partition entry before acting on disks
r258021: Switch default MBR bootcode from /boot/boot0 to /boot/mbr
r258927: Fix early regression in enabling the Encryption feature
r259144: Fix early regression in entering passphrase for Encryption
r259148: Fix typo that broke booting from Encrypted setup
r259470: Add default /var/mail with atime=on for mail apps
r259472: Accept NULL input as also meaning zero swap
r259474: Bug fixes and debugging improvements
r259476: Improve default ZFS disk layout
r259477: fletcher4 is currently the default
r259478: De-uglify the geli(8)-setup infobox by adding a newline
r259480: Fix ghosted zroot pool issue
r259481: Auto-enable 4k alignment with Encryption
r259570: Fix "[: -eq: argument expected" error
r259597: Fix installation to 3-4+ disks
r259598: Set the cachefile property so bootpools get imported
r261960: Add zfsboot to scripted interface of bsdinstall

git-svn-id: svn://svn.freebsd.org/base/stable/9@264437 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r256331:
dteske [Sun, 13 Apr 2014 22:32:46 +0000 (22:32 +0000)]
MFC r256331:

Add $VAR_ZFSINTERACTIVE (zfsInteractive) and new f_zfsinteractive() for
determining when a script wants to be nonInteractive but selectively
wants ZFS operations to be *interactive* (this is analgous to already
existing $VAR_NETINTERACTIVE (netInteractive) and f_netinteractive()
used for the same purpose (script wants to be nonInteractive but wants
network operations to be *interactive*).

Approved by: re (glebius)

git-svn-id: svn://svn.freebsd.org/base/stable/9@264427 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r250243:
dteske [Sun, 13 Apr 2014 22:00:50 +0000 (22:00 +0000)]
MFC r250243:

If the kernel is compiled with VMIMAGE support, the first attempt of
mounting smbfs share will cause a panic. Fix setting/restoring vnet
context when needed.

PR: kern/168077
Submitted by: dteske

git-svn-id: svn://svn.freebsd.org/base/stable/9@264425 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r238468: sh: Expand assignment-like words specially for
jilles [Sun, 13 Apr 2014 21:49:44 +0000 (21:49 +0000)]
MFC r238468: sh: Expand assignment-like words specially for
export/readonly/local.

Examples:
  export x=~
now expands the tilde
  local y=$1
is now safe, even if $1 contains IFS characters or metacharacters.

For a word to "look like an assignment", it must start with a name followed
by an equals sign, none of which may be quoted.

The special treatment applies when the first word (potentially after
"command") is "export", "readonly" or "local". There may be quoting
characters but no expansions. If "local" is overridden with a function there
is no special treatment ("export" and "readonly" cannot be overridden with a
function).

If things like
  local arr=(1 2 3)
are ever allowed in the future, they cannot call a "local" function. This
would either be a run-time error or it would call the builtin.

This matches Austin Group bug #351, planned for the next issue of POSIX.1.

As for the MFC, it is easy to depend on this feature inadvertently, and
adding this fixes a regression from stable/8 that may be apparent in things
like
  local x=${y+a @}.

PR: bin/166771
Relnotes: yes

git-svn-id: svn://svn.freebsd.org/base/stable/9@264423 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r260610:
andreast [Sat, 12 Apr 2014 19:58:31 +0000 (19:58 +0000)]
MFC r260610:
Described in the man page but not implemented. Here it comes,
atomic_swap_32/64. The latter only for powerpc64.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264376 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264173:
kib [Sat, 12 Apr 2014 14:18:48 +0000 (14:18 +0000)]
MFC r264173:
Use realloc(9) instead of doing the reallocation inline.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264371 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264146:
kib [Sat, 12 Apr 2014 14:09:35 +0000 (14:09 +0000)]
MFC r264146:
Fix a race between kqueue_register() and kqueue_scan() setting KN_INFLUX
flag while knlist is not locked, which caused lost notifications from
parallel knote().

git-svn-id: svn://svn.freebsd.org/base/stable/9@264369 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264151:
dchagin [Sat, 12 Apr 2014 06:49:10 +0000 (06:49 +0000)]
MFC r264151:

Prevent alq from panic when the invalid alq_file path specified.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264365 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264294:
hselasky [Fri, 11 Apr 2014 06:15:58 +0000 (06:15 +0000)]
MFC r264294:
Fix for infinite XHCI reset loops when the set address USB request fails.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264337 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263879:
bdrewery [Fri, 11 Apr 2014 01:04:07 +0000 (01:04 +0000)]
MFC r263879:

  Add `-S' to display syscall numbers in the output as well.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264333 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264084: make the Dresden Elektronik "USB Level Shifter Stick Low Cost"
joerg [Thu, 10 Apr 2014 22:05:50 +0000 (22:05 +0000)]
MFC r264084: make the Dresden Elektronik "USB Level Shifter Stick Low Cost"
known to the FTDI driver.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264329 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263429
asomers [Thu, 10 Apr 2014 19:53:40 +0000 (19:53 +0000)]
MFC r263429

Fix kern/187712: config(8) does not respect KERNCONFDIR.
The impact of this bug is that you cannot build a kernel if both of the
following are true:
1) The kernel config file is in a non-default location
2) The kernel config file uses the "include" statement from config(5).

usr.sbin/config/main.c
usr.sbin/config/config.8
usr.sbin/config/config.h
usr.sbin/config/lang.l
Added a "-I path" option to config(8).  By analogy to cc(1), it adds
an extra path in which the "include" statement will search for
files.

Makefile.inc1
Pass "-I ${KERNCONFDIR}" to config(8).

git-svn-id: svn://svn.freebsd.org/base/stable/9@264326 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264238:
dim [Thu, 10 Apr 2014 07:00:24 +0000 (07:00 +0000)]
MFC r264238:

For GNU as, add two missing modes for each of the fcomip and fucomip
instructions.  Partially obtained from OpenBSD by Pedro Giffuni, while I
added the fcomip variants.

Apparently this should help with compiling certain variants of WebKit.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264312 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r261193: login: Clean up PAM and audit, then exit, on SIGHUP and SIGTERM
jilles [Wed, 9 Apr 2014 21:19:46 +0000 (21:19 +0000)]
MFC r261193: login: Clean up PAM and audit, then exit, on SIGHUP and SIGTERM

This avoids leaving stale entries in utmpx after the connection is closed on
an open login session. It also allows a clean way (SIGTERM) to forcibly
terminate a user's terminal session.

This does not affect the situation for "hung" processes after the connection
is closed. The foreground process group receives SIGHUP and the tty becomes
inaccessible.

Also replace all use of the obsolete signal() function with sigaction() (not
only the part where it is actually required: SIGHUP and SIGTERM must mask
the other as well when caught).

PR: misc/183495

git-svn-id: svn://svn.freebsd.org/base/stable/9@264309 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263778:
dim [Wed, 9 Apr 2014 18:16:58 +0000 (18:16 +0000)]
MFC r263778:

Add a SUBDIR_PARALLEL option to bsd.subdir.mk, to allow make to process
all the SUBDIR entries in parallel, instead of serially.  Apply this
option to a selected number of Makefiles, which can greatly speed up the
build on multi-core machines, when using make -j.

This can be extended to more Makefiles later on, whenever they are
verified to work correctly with parallel building.

I tested this on a 24-core machine, with make -j48 buildworld (N = 6):

before    stddev       after    stddev
=======   ======       =======  ======
real time        1741.1     16.5         959.8     2.7
user time       12468.7     16.4       14393.0    16.8
sys  time        1825.0     54.8        2110.6    22.8

(user+sys)/real     8.2                   17.1

E.g. the build was approximately 45% faster in real time.  On machines
with less cores, or with lower -j settings, the speedup will not be as
impressive.  But at least you can now almost max out a machine with
buildworld!

Submitted by: jilles

MFC r263833:

Enable parallel building for gnu/usr.bin and usr.bin/clang too.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264303 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264039:
ae [Wed, 9 Apr 2014 13:35:52 +0000 (13:35 +0000)]
MFC r264039:
  Document more parition types.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264301 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r257350:
gjb [Wed, 9 Apr 2014 03:39:57 +0000 (03:39 +0000)]
MFC r257350:
  In r257079, SRCDIR is pointed to ${.CURDIR} when not set.  However,
  Makefile.inc1 is being called in sub-make's where make(1) would,
  by default, implicitly chdir(2) to ${.OBJDIR} before executing any
  targets.  This would make some targets, like delete-old, when trying
  to derive various variables introduced by change r256921 using
  ``make -f Makefile.inc1'' that also rely on SRCDIR to fail.

  This changeset adds an explicit cd ${.CURDIR} before these unwrapped
  make calls, making them in line with the other ones that are already
  being wrapped with the explicit chdir's.

Submitted by: Jeremy Chadwick
Helped by: Ben Morrow
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264290 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoBump osreldate for tracking SA-14:06
peter [Wed, 9 Apr 2014 01:26:58 +0000 (01:26 +0000)]
Bump osreldate for tracking SA-14:06

git-svn-id: svn://svn.freebsd.org/base/stable/9@264289 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoCorrect description of SA-14:06.openssl for stable/9
gjb [Wed, 9 Apr 2014 00:46:12 +0000 (00:46 +0000)]
Correct description of SA-14:06.openssl for stable/9

Submitted by: delphij
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264288 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoDocument SA-14:05.nfsserver, SA-14:06.openssl.
gjb [Wed, 9 Apr 2014 00:40:21 +0000 (00:40 +0000)]
Document SA-14:05.nfsserver, SA-14:06.openssl.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264287 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoFix NFS deadlock vulnerability. [SA-14:05]
delphij [Tue, 8 Apr 2014 23:16:19 +0000 (23:16 +0000)]
Fix NFS deadlock vulnerability. [SA-14:05]

Fix ECDSA Cache Side-channel Attack in OpenSSL. [SA-14:06]

git-svn-id: svn://svn.freebsd.org/base/stable/9@264285 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMerge missing mergeinfo for SVN r258588
dteske [Tue, 8 Apr 2014 02:32:39 +0000 (02:32 +0000)]
Merge missing mergeinfo for SVN r258588

git-svn-id: svn://svn.freebsd.org/base/stable/9@264249 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC a modified version of r258588 (modification suggested by Mikolaj
dteske [Tue, 8 Apr 2014 01:04:23 +0000 (01:04 +0000)]
MFC a modified version of r258588 (modification suggested by Mikolaj
Golub; tested stable both original and modified versions) that fixes
kernel panic when starting/stopping VIMAGE jails.

Discussed with: rodrigc, Mikolaj Golub

git-svn-id: svn://svn.freebsd.org/base/stable/9@264247 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r264027, r264028, r264029, r264030, r264046, r264073:
gjb [Tue, 8 Apr 2014 00:54:11 +0000 (00:54 +0000)]
MFC r264027, r264028, r264029, r264030, r264046, r264073:

r264027:
  Add a new release build variable, WITH_COMPRESSED_IMAGES.

  When set to a non-empty value, the installation medium is
  compressed as part of the 'install' target in the release/
  directory.

r264028:
  Clean up trailing whitespace in release/Makefile.

r264029:
  Fix logic error.

r264030:
  If WITH_COMPRESSED_IMAGES is set, add the compressed images
  to the CLEANFILES list.

r264046:
  Use xz(1) instead of gzip(1) to compress release images
  when WITH_COMPRESSED_IMAGES is used.

r264073:
  Allow overriding xz(1) path.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264246 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263969,263971:
ae [Mon, 7 Apr 2014 12:59:17 +0000 (12:59 +0000)]
MFC r263969,263971:
  Don't generate an ICMPv6 error message if packet was consumed by filter.
  Remove unused label.

Sponsored by: Yandex LLC

git-svn-id: svn://svn.freebsd.org/base/stable/9@264225 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263966:
ae [Mon, 7 Apr 2014 12:50:34 +0000 (12:50 +0000)]
MFC r263966:
  Don't copy the MF flag from original IP header to ICMP error message.

PR: 188092
Sponsored by: Yandex LLC

git-svn-id: svn://svn.freebsd.org/base/stable/9@264222 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263973;
pfg [Mon, 7 Apr 2014 02:36:30 +0000 (02:36 +0000)]
MFC r263973;

ddb: Minor style cleanups.

#define should be followed by tab.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264217 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263912:
kib [Sat, 5 Apr 2014 14:24:45 +0000 (14:24 +0000)]
MFC r263912:
Clear the kernel grab of the FPU state on fork.

git-svn-id: svn://svn.freebsd.org/base/stable/9@264148 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r262810, r262862, r264105, r264107:
gjb [Fri, 4 Apr 2014 22:20:33 +0000 (22:20 +0000)]
MFC r262810, r262862, r264105, r264107:

r262810:
  Merge enabling building FreeBSD/arm images as part of the
  release build process.

r262862:
  Provide backwards-compatibility with release.conf SVNROOT
  entries that do not have a trailing '/'.

r264105:
  Add ZEDBOARD support for release builds.

r264107:
  Remove only-works-on-amd64 restriction.

* Local modifications to stable/9:
  - Set SRCBRANCH from head/ to stable/9/.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264141 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r261521 by antoine: Add files to remove WITHOUT_NIS
emaste [Fri, 4 Apr 2014 14:42:43 +0000 (14:42 +0000)]
MFC r261521 by antoine: Add files to remove WITHOUT_NIS

PR: misc/186412
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264117 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263885
ray [Fri, 4 Apr 2014 11:19:02 +0000 (11:19 +0000)]
MFC r263885

o Add new vd_driver method to do bitblt with mask, named vd_maskbitbltchr.
o Move vd_bitbltchr vga's driver method to vd_maskbitbltchr.
o Implement new vd_bitbltchr method for vga driver. (It do single write for 8
pixels, have to be a bit faster).

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264113 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263809
ray [Thu, 3 Apr 2014 12:03:30 +0000 (12:03 +0000)]
MFC r263809

Fix crash on resume in vt(9).
Statically allocated terminal window have not initialized callout handler, so we
have to initialize it even for existing window if it is console window.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264072 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263385:
delphij [Thu, 3 Apr 2014 01:02:14 +0000 (01:02 +0000)]
MFC r263385:

Remove unused option -r from zpool.

Submitted by: Richard Yao <ryao gentoo org>

git-svn-id: svn://svn.freebsd.org/base/stable/9@264061 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r251565:
jh [Wed, 2 Apr 2014 17:10:17 +0000 (17:10 +0000)]
MFC r251565:

Print file names without stdio buffering to avoid mixing buffered and
unbuffered ouput.

PR: bin/176886

git-svn-id: svn://svn.freebsd.org/base/stable/9@264047 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263775:
dim [Wed, 2 Apr 2014 06:17:57 +0000 (06:17 +0000)]
MFC r263775:

Avoid "cc1: warning: is shorter than expected" when using GNU cpp in
combination with dtrace scripts, which have "#!/usr/sbin/dtrace -Cs"
shebang lines.  This is because dtrace positions the file pointer after
the shebang line, before passing the file to GNU cpp.

To fix the warning, adjust the size downwards by the current position,
after a bit of sanity checking.

Suggested by: avg

git-svn-id: svn://svn.freebsd.org/base/stable/9@264032 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r250143, r257079, r258086, r262670:
gjb [Tue, 1 Apr 2014 17:57:45 +0000 (17:57 +0000)]
MFC r250143, r257079, r258086, r262670:

r250143 (benno):
  Optimize SUBDIR_OVERRIDE such that SUBDIR isn't automatically
  defined if SUBDIR_OVERRIDE is defined.

r257079:
  Fix build host pollution by avoiding calling 'uname -srp' to
  determine values for 'VERSION'.

r262670 (marcel):
  Use ${MAKE} so that we always use the same version/implementation
  of make.

r258086 (cperciva):
  Strip the -pN patch level from the VERSION string which gets
  encoded into CTF data.  Otherwise FreeBSD Update builds think every
  kernel file has changed every time there's a security advisory,
  since the FreeBSD Update build code isn't smart enough to look inside
  CTF data to ignore those changes.

Tested on: stable/9@r263881
Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@264014 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoDocument r263970, OpenSSH update.
gjb [Tue, 1 Apr 2014 14:48:10 +0000 (14:48 +0000)]
Document r263970, OpenSSH update.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263999 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263118:
mav [Tue, 1 Apr 2014 12:08:58 +0000 (12:08 +0000)]
MFC r263118:
Report ZVOL block size as GEOM stripesize.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263988 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263891:
dim [Tue, 1 Apr 2014 08:19:30 +0000 (08:19 +0000)]
MFC r263891:

Make clang default to DWARF2 debug info format for FreeBSD 10.x and
earlier.  For head, this commit does not change anything, but it is
purely meant to be MFC'd.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263984 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFH (r237568, r255422, r255460, r255766, r255767, r255774, r255829,
des [Mon, 31 Mar 2014 14:39:56 +0000 (14:39 +0000)]
MFH (r237568, r255422, r255460, r255766, r255767, r255774, r255829,
  r256126, r257954, r261320, r261499, r263691, r263712): upgrade to
  OpenSSH 6.6p1 via 6.3p1, 6.4p1 and 6.5p1.

Differences relative to head:

 - No DNSSEC support since stable/9 does not have LDNS
 - Sandboxing off by default, and uses rlimit instead of Capsicum
 - ED25519 moved to the bottom of the order of preference to avoid
   "new public key" warnings

git-svn-id: svn://svn.freebsd.org/base/stable/9@263970 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263468:
ae [Mon, 31 Mar 2014 09:37:11 +0000 (09:37 +0000)]
MFC r263468:
  When loader(8) inspects MBR, it chooses GPT as main partition table,
  when MBR contains only PMBR entry or it is bootcamp-compatible.
  If MBR has PMBR entry and some other, the loader rejects it.

  Make these checks to be less strict. If loader decided that PMBR
  isn't suitable for GPT, it will use MBR.

  Reported by: Paul Thornton

git-svn-id: svn://svn.freebsd.org/base/stable/9@263965 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC revisions 230804,254265,255908,256338,256345,256347-256348,256489,
dteske [Mon, 31 Mar 2014 01:04:40 +0000 (01:04 +0000)]
MFC revisions 230804,254265,255908,256338,256345,256347-256348,256489,
257842-257845,257872,259115,259143,259276,259468-259469,259572,259686,
260260-260262,260866, and 260900 (25 revisions; summarized below)...
r230804: Fix a whitespace nit (kevlo)
r254265: (recording mergeinfo only)
r255908: Remove the is (Iceland) mirror per mail from the admins (brd)
r256338: Dump 4096 bytes from /dev/random to /entropy (des)
r256345: Rewrite the keymap module
r256347: Detect when an interface is wireless (Warren Block)
r256348: Merge dumpdev into regular services; enable (Allan Jude)
r256489: Add executable bit to docsinstall and entropy scripts
r257842: Performance and debugging enhancements
r257843: Remove ttys(5) munging from previous commit
r257844: Copy install log to deployed /var/log for debugging
r257845: Fixup to last commit
r257872: Doc fixup -- add missing .El (joel)
r259115: Prevent log file from becoming truncated
r259143: Use sed(1) /i instead of /I (eadler)
r259276: Fix `local: Not in a function' error in logfile
r259468: Ignore mouse-release command from VMware
r259469: Mask error from newaliases(1) when hostname not fully qualified
r259572: Fix `rm: /tmp/bsdinstall_etc/fstab: ..." error in logfile
r259686: Move VMware mouse-release solution
r260260: Remove what appears to be a stray debugging printf
r260261: Lower priority of open wireless access policy (gavin)
r260262: Allow bsdinstall to use WPA-Enterprise networks (gavin)
r260866: Fix bad comparison and fix file comment (Christoph Mallon)
r260900: Whitespace and style nits

git-svn-id: svn://svn.freebsd.org/base/stable/9@263956 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r253252:
jh [Sun, 30 Mar 2014 17:59:32 +0000 (17:59 +0000)]
MFC r253252:

Clarify how "hide" and "unhide" commands work on directories.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263945 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263130:
bdrewery [Sun, 30 Mar 2014 16:56:36 +0000 (16:56 +0000)]
MFC r263130:

  Fix -o size less than PAGE_SIZE resulting in SIZE_MAX being used.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263944 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263129:
bdrewery [Sun, 30 Mar 2014 16:49:17 +0000 (16:49 +0000)]
MFC r263129:

  Combine similar code from vprintf(9) and log(9).

git-svn-id: svn://svn.freebsd.org/base/stable/9@263942 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263937:
bdrewery [Sun, 30 Mar 2014 15:30:33 +0000 (15:30 +0000)]
MFC r263937:

  Give hint on how to disable the default repository.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263939 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r260880 (by kaiw, from projects/elftoolchain):
dim [Sat, 29 Mar 2014 17:18:23 +0000 (17:18 +0000)]
MFC r260880 (by kaiw, from projects/elftoolchain):

  * Make die_mem_offset() be able to handle DW_AT_data_member_location
    attributes generated by Clang 3.4.
  * Document how different compilers generate DW_AT_data_member_location
    attributes differently.
  * Document the quirks about DW_FORM_data[48].

This is a slightly modified version, adapted to work with the old
libdwarf in stable/9 and stable/10.  It should fix DTrace on these
branches, when the kernel is compiled with clang 3.4.

Note that you have to build *and* install the CTF tools first, before
building the kernel.  Otherwise you can possibly still get error
messages similar to "failed to copy type of 'pr_uid': Type information
is in parent and unavailable", when attempting to run dtrace(1).

Submitted by: kaiw

git-svn-id: svn://svn.freebsd.org/base/stable/9@263915 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263774:
dim [Sat, 29 Mar 2014 11:33:52 +0000 (11:33 +0000)]
MFC r263774:

Revert r263694, and apply a better fix to squelch unnecessary warnings
from clang about possible keywords being treated as identifiers for the
remainder of the translation unit (a.k.a. -Wkeyword-compat), when using
libstdc++ in combination with -Wsystem-headers.  This will not only fix
devd, but any C++ program using libstdc++.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263911 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC of 263901, tzdata2014b
edwin [Sat, 29 Mar 2014 04:25:04 +0000 (04:25 +0000)]
MFC of 263901, tzdata2014b

 - Update antartica.
 - Comments about historical data for Hawaii.
 - Update details for Crimea on 30 March
 - Move location data Simferopol.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263905 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r262912
asomers [Fri, 28 Mar 2014 15:41:04 +0000 (15:41 +0000)]
MFC r262912

cddl/contrib/opensolaris/lib/libuutil/common/uu_avl.c
Fix a memory leak in uu_avl_pool_create: pthread_mutex_init without
a corresponding pthread_mutex_destroy.  It shows up, among other
places, when doing "zfs list

git-svn-id: svn://svn.freebsd.org/base/stable/9@263877 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263475:
kib [Fri, 28 Mar 2014 15:38:54 +0000 (15:38 +0000)]
MFC r263475:
Fix two issues with /dev/mem access on amd64, both causing kernel page
faults.

First, for accesses to direct map region should check for the limit by
which direct map is instantiated.

Second, for accesses to the kernel map, use a new thread private flag
TDP_DEVMEMIO, which instructs vm_fault() to return error when fault
happens on the MAP_ENTRY_NOFAULT entry, instead of panicing.

MFC r263498:
Add change forgotten in r263475.  Make dmaplimit accessible outside
amd64/pmap.c.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263876 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC: r263169
brueffer [Fri, 28 Mar 2014 08:58:51 +0000 (08:58 +0000)]
MFC: r263169

Add support for AMD Family 16h (Kabini) sensor devices.

PR:             186587
Submitted by:   David Rufino <david.rufino at gmail.com>

git-svn-id: svn://svn.freebsd.org/base/stable/9@263870 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263694:
dim [Thu, 27 Mar 2014 20:46:46 +0000 (20:46 +0000)]
MFC r263694:

Apply a temporary band-aid for building devd with clang 3.4, libstdc++
and -Wsystem-headers enabled (which is the default for any non-zero
WARNS level, crazily enough!).  This is primarily meant to be MFC'd as
soon as possible.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263839 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263692:
dim [Thu, 27 Mar 2014 20:32:58 +0000 (20:32 +0000)]
MFC r263692:

Add a note to UPDATING about customized kernel configuration files now
requiring -gdwarf-2 for debug info, when using clang 3.4.

Suggested by: adrian

git-svn-id: svn://svn.freebsd.org/base/stable/9@263838 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC: r262484
brueffer [Thu, 27 Mar 2014 20:20:20 +0000 (20:20 +0000)]
MFC: r262484

In puthdr(), start the ELF .data section on a new page, as this is
what btxldr expects (.set MEM_DATA,start+0x1000 in btxldr.S).

This makes resulting ELF binaries bootable with grub, gptboot and boot2.

PR:             153801
Submitted by:   Gleb Kurtsou <gleb.kurtsou at gmail.com>
Tested by:      Ruben Kerkhof <ruben at rubenkerkhof.com>
Glanced at by:  jhb, peter

git-svn-id: svn://svn.freebsd.org/base/stable/9@263836 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC: r263121
brueffer [Thu, 27 Mar 2014 20:14:50 +0000 (20:14 +0000)]
MFC: r263121

Re-format the license to conform to our BSD license template as much
as possible.  This does not change the wording in any way.

Remove the 3rd clause ("advertising clause") of the BSD license as
permitted by the University of Berkeley on July 22, 1999.  While the
clause itself mentions Lawrence Berkeley Laboratory, UCB is the sole
copyright holder of this file.

Reviewed by:    imp, emaste, eadler

git-svn-id: svn://svn.freebsd.org/base/stable/9@263832 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r258311
asomers [Thu, 27 Mar 2014 19:04:15 +0000 (19:04 +0000)]
MFC r258311

  opensolaris/uts/common/dtrace/fasttrap.c
          Fix several problems that can cause panics on kldload and kldunload.

          * kproc_create(fasttrap_pid_cleanup_cb, ...) gets called before
            fasttrap_provs.fth_table gets allocated.  This can lead to a panic
            on module load, because fasttrap_pid_cleanup_cb references
            fasttrap_provs.fth_table.  Move kproc_create down after the point
            that fasttrap_provs.fth_table gets allocated, and modify the error
            handling accordingly.

          * dtrace_fasttrap_{fork,exec,exit} weren't getting NULLed until
            after fasttrap_provs.fth_table got freed.  That caused panics on
            module unload because fasttrap_exec_exit calls
            fasttrap_provider_retire, which references
            fasttrap_provs.fth_table.  NULL those function pointers earlier.

          * There wasn't any code to destroy the
            fasttrap_{tpoints,provs,procs}.fth_table mutexes on module unload,
            leading to a resource leak when WITNESS is enabled.  Destroy those
            mutexes during fasttrap_unload().

Sponsored by: Spectra Logic Corporation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263823 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoPull in the VT kernel configuration files, missed in r263817
gjb [Thu, 27 Mar 2014 16:55:12 +0000 (16:55 +0000)]
Pull in the VT kernel configuration files, missed in r263817
(MFC r260888).

This is a direct commit to stable/9, and the original mergeinfo
already exists.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263821 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoDocument r263817, r263818.
gjb [Thu, 27 Mar 2014 16:28:46 +0000 (16:28 +0000)]
Document r263817, r263818.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263819 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoBump __FreeBSD_version to reflect presence ov vt(4).
ray [Thu, 27 Mar 2014 16:00:53 +0000 (16:00 +0000)]
Bump __FreeBSD_version to reflect presence ov vt(4).

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263818 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC 219886, 226100, 226111, 226341, 242529, 259015, 259016, 259019, 259049,
ray [Thu, 27 Mar 2014 15:58:18 +0000 (15:58 +0000)]
MFC 219886, 226100, 226111, 226341, 242529, 259015, 259016, 259019, 259049,
 259071, 259102, 259110, 259129, 259130, 259178, 259179, 259203, 259221,
 259261, 259532, 259615, 259650, 259651, 259667, 259680, 259727, 259761,
 259772, 259776, 259777, 259830, 259882, 259915, 260160, 260449, 260450,
 260688, 260888, 260953, 261269, 261547, 261551, 261552, 261553, 261585
o Merge vt(4) virtual terminal (a.k.a. newcons) to stable/9.
o Merge teken updates.
o Add few more tty methods required by vt(4).
o Update syscons(4) to work with fresh teken.

Sponsored by: The FreeBSD Foundation

git-svn-id: svn://svn.freebsd.org/base/stable/9@263817 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263423:
hselasky [Thu, 27 Mar 2014 07:03:50 +0000 (07:03 +0000)]
MFC r263423:
Try to resolve a possible deadlock when detaching USB devices which
create character devices. The deadlock can happen if an application is
issuing IOCTLs which require USB refcounting, at the same time the USB
device is detaching.

There is already a counter in place in the USB device structure to
detect this situation, but it was not always checked ahead of invoking
functions that might destroy character devices, like detach, set
configuration, set alternate interface or detach active kernel driver.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263800 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263291 and r263292:
hselasky [Thu, 27 Mar 2014 06:57:32 +0000 (06:57 +0000)]
MFC r263291 and r263292:
Update USB template manual page.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263798 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC revisions 253333,256181,256321-256323,256325,256330,256333,256335,
dteske [Thu, 27 Mar 2014 03:20:47 +0000 (03:20 +0000)]
MFC revisions 253333,256181,256321-256323,256325,256330,256333,256335,
256391,257755-257756,257780-257785,257787-257793,258029,258263,258266,
258355,258360,258400-258401,258406-258407,258418,258430,258439,258458,
258589-258590,258592,258727-258728,258785,259054,260894,260899,262895-
262902,262904,262908-262910,262982,262984,263133-263137,263139,263141,
263144-263150, and (partially) 263249 (76 revisions; summarized below)...
r253333: Re-implement $probe_only aspect of f_media_get_TYPE()
r256181: Centralized [X]dialog(1) exit codes added to `dialog.subr'
r256321: Add support for obtaining the capacity of disks.
r256322: Fix include statements in strings.subr
r256323: Add USE_DIALOG global
r256325: Add keymap.subr
r256330: Fix f_dialog_*_constrain() to support NULL variable arguments
r256333: Fixes and additions to `device.subr'
r256335: Add f_expand_number() (shadowing expand_number(3))
r256391: Fix signed integer overflow detection in f_expand_number()
r257755: Update f_host_lookup() to support SRV records
r257756: Fix spurious error message "f_media_shutdown_http: not found"
r257780: Whitespace
r257781: Make use of f_isset()
r257782: Add DEBUG_INITIALIZE_FILE global boolean
r257783: Add f_show_err() (like f_show_msg() but for errors)
r257784: Add f_eval_catch() for debug and displaying errors automatically
r257785: Fix dialog auto-sizing when running in a pipe-chain
r257787: Fix a silly bug
r257788: Add some helpful debugging
r257789: Comments
r257790: Fix a bug when using printf
r257791: Add f_sprintf() and f_vsprintf()
r257792: Comments
r257793: Fix an off-by-one error
r258029: Comments
r258263: Move function name declarations/usages
r258266: Always shutdown media and don't eject CDROM
r258355: "Tim trailing" -> "Trim Trailing"
r258360: Whitespace, style, sub-shells, and variable names
r258400: Add new `includes' module for exploring the API
r258401: Add `-d' flag [to includes module] for printing function descrs
r258406: Make `-d' flag [of include module] implicitly enable `-f'
r258407: Update function description for f_validate_hostname()
r258418: Quote the interface name for good measure [in device.subr]
r258430: Remove unused line [in device.subr] -- cruft from SVN r258360
r258439: Fix command-line only modules [dot, includes] to not use f_die()
r258458: Improve network device scanning
r258589: Add missing `$' before `pgm' in syscons_ttys module
r258590: Add missing newline [in includes module]
r258592: Sort messages
r258727: Fix display output issue with `includes' module
r258728: Fix [another] display output issue with `includes' module
r258785: Sort function output [from includes module] on name of function
r259054: Performance and debugging enhancements
r260894: Optimize f_expand_number() (submitted by Christoph Mallon)
r260899: Dummy commit
r262895: Allow dispatched reswords to carry arguments
r262896: Add missing local declaration [in common.subr]
r262897: Fix a type in a comment [in common.subr]
r262898: Fix incorrect return status [from f_getvar() in common.subr]
r262899: Make f_show_err() [of common.subr] non-fatal
r262900: Centralize function name [in f_script_load() of script.subr]
r262901: Prevent localization of __number in f_expand_number()
r262902: Add a comment above f_replaceall() [of strings.subr]
r262904: Rewrite groupmgmt -- hooking it into the scripting system
r262908: Change dispatch words from group* to *Group for backward compat
r262909: Fix copy/paste error in a comment [in goupadd module]
r262910: Take a group name on the command-line [of groupdel] if available
r262982: Whitespace [in group_input.subr]
r262984: Remove vestigial global [in group_input.subr]
r263133: Remove extraneous debug statement
r263134: Add debug statement just before attempting to exec a module
r263135: Comments [in device.subr]
r263136: Update copyright
r263137: Fix future namespace issues [in dialog.subr]
r263139: Remove useless NULL strings ('') in some compound strings
r263141: Fix broken f_isinteger() [of strings.subr]
r263144: Fix a code-type that prevented auto-sizing [in group_input.subr]
r263145: Fix comments and whitespace [in new group.subr]
r263146: Reduce dialog sleep cycle for confirmation dialogs [in group.subr]
r263147: Fix bug preventing pw(8) errors from appearing [in group.subr]
r263148: Check arguments when running non-interactive [in group.subr]
r263149: Add i18n input protection [to group.subr and group_input.subr]
r263150: Rewrite usermgmt -- hooking it into the scripting system
r263249: (partial) Add old group_input and user_input to ObsoleteFiles.inc

git-svn-id: svn://svn.freebsd.org/base/stable/9@263791 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r262501:
delphij [Thu, 27 Mar 2014 00:24:48 +0000 (00:24 +0000)]
MFC r262501:

Refresh our implementation of OpenBSD's Blowfish password format.

Notable changes:

 - Support of $2b$ password format to address a problem where very
   long passwords (more than 256 characters, when an integer
   overflow would happen and cause the length to wrap at 256).
 - Updated pseudo code in comments to reflect the reality.
 - Removed our local shortcut of processing magic string and rely
   on the centralized and tigntened validation.
 - Diff reduction from upstream.

For now we are still generating the older $2a$ format of password
but we will migrate to the new format once the format is formally
finalized.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263784 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r262991:
delphij [Wed, 26 Mar 2014 23:58:17 +0000 (23:58 +0000)]
MFC r262991:

Correct a typo in nlm_find_host_by_addr(): the intention of the
code is to give "<unknown>" rather than comparing the buffer
against it.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263782 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263349:
kib [Wed, 26 Mar 2014 17:00:37 +0000 (17:00 +0000)]
MFC r263349:
Make the array pointed to by AT_PAGESIZES auxv properly aligned.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263771 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r263312:
dim [Wed, 26 Mar 2014 07:42:43 +0000 (07:42 +0000)]
MFC r263312:

Pull in r196939 from upstream llvm trunk (by Reid Kleckner):

  Reland "Fix miscompile of MS inline assembly with stack realignment"

  This re-lands commit r196876, which was reverted in r196879.

  The tests have been fixed to pass on platforms with a stack alignment
  larger than 4.

  Update to clang side tests will land shortly.

Pull in r196986 from upstream llvm trunk (by Reid Kleckner):

  Revert the backend fatal error from r196939

  The combination of inline asm, stack realignment, and dynamic allocas
  turns out to be too common to reject out of hand.

  ASan inserts empy inline asm fragments and uses aligned allocas.
  Compiling any trivial function containing a dynamic alloca with ASan is
  enough to trigger the check.

  XFAIL the test cases that would be miscompiled and add one that uses the
  relevant functionality.

Pull in r202930 from upstream llvm trunk (by Hans Wennborg):

  Check for dynamic allocas and inline asm that clobbers sp before building
  selection dag (PR19012)

  In X86SelectionDagInfo::EmitTargetCodeForMemcpy we check with MachineFrameInfo
  to make sure that ESI isn't used as a base pointer register before we choose to
  emit rep movs (which clobbers esi).

  The problem is that MachineFrameInfo wouldn't know about dynamic allocas or
  inline asm that clobbers the stack pointer until SelectionDAGBuilder has
  encountered them.

  This patch fixes the problem by checking for such things when building the
  FunctionLoweringInfo.

  Differential Revision: http://llvm-reviews.chandlerc.com/D2954

Together, these commits fix the problem encountered in the devel/emacs
port on the i386 architecture, where a combination of stack realignment,
alloca() and memcpy() could incidentally clobber the %esi register,
leading to segfaults in the temacs build-time utility.

See also: http://llvm.org/PR18171 and http://llvm.org/PR19012

Reported by: ashish
PR: ports/183064

MFC r263313:

Pull in r203311 from upstream llvm trunk (by Arnold Schwaighofer):

  ISel: Make VSELECT selection terminate in cases where the condition type has to
  be split and the result type widened.

  When the condition of a vselect has to be split it makes no sense widening the
  vselect and thereby widening the condition. We end up in an endless loop of
  widening (vselect result type) and splitting (condition mask type) doing this.
  Instead, split both the condition and the vselect and widen the result.

  I ran this over the test suite with i686 and mattr=+sse and saw no regressions.

  Fixes PR18036.

With this fix the original problem case from the graphics/rawtherapee
port (posted in http://llvm.org/PR18036 ) now compiles within ~97MB RSS.

Reported by: mandree

MFC r263320:

Add separate patch files for all the customizations we have currently
applied to our copy of llvm/clang.  These can be applied in alphabetical
order to a pristine llvm/clang 3.4 release source tree, to result in the
same version used in FreeBSD.

This is intended to clearly document all the changes until now, which
mostly consist of cherry pickings from the respective upstream trunks,
plus a number of hand-written FreeBSD-specific ones.  Hopefully those
can eventually be cleaned up and sent upstream too.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263765 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

10 years agoMFC r262613:
dim [Wed, 26 Mar 2014 07:35:24 +0000 (07:35 +0000)]
MFC r262613:

Merge the projects/clang-sparc64 branch back to head.  This brings in
several updates from the llvm and clang trunks to make the sparc64
backend fully functional.

Apart from one patch to sys/sparc64/include/pcpu.h which is still under
discussion, this makes it possible to let clang fully build world and
kernel for sparc64.

Any assistance with testing this on actual sparc64 hardware is greatly
appreciated, as there will unavoidably be bugs left.

Many thanks go to Roman Divacky for his upstream work on getting the
sparc64 backend into shape.

MFC r262985:

Repair a few minor mismerges from r262261 in the clang-sparc64 project
branch.  This is also to minimize differences with upstream.

git-svn-id: svn://svn.freebsd.org/base/stable/9@263764 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f