OSDN Git Service

android-x86/bionic.git
11 years agoam f246ae98: am 5496bbf6: Merge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""
Nick Kralevich [Fri, 18 Jan 2013 21:11:13 +0000 (13:11 -0800)]
am f246ae98: am 5496bbf6: Merge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""

* commit 'f246ae984baa133b93af4e14f94ba35990b43dbb':
  Revert "Filter ANDROID_PROPERTY_WORKSPACE"

11 years agoam 5496bbf6: Merge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""
Nick Kralevich [Fri, 18 Jan 2013 21:10:04 +0000 (13:10 -0800)]
am 5496bbf6: Merge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""

* commit '5496bbf6a3592fd99cee6b8c20c8624c2aeea0c1':
  Revert "Filter ANDROID_PROPERTY_WORKSPACE"

11 years agoMerge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""
Nick Kralevich [Fri, 18 Jan 2013 20:50:40 +0000 (20:50 +0000)]
Merge "Revert "Filter ANDROID_PROPERTY_WORKSPACE""

11 years agoRevert "Filter ANDROID_PROPERTY_WORKSPACE"
Guang Zhu [Fri, 18 Jan 2013 07:25:24 +0000 (23:25 -0800)]
Revert "Filter ANDROID_PROPERTY_WORKSPACE"

Temporarily revert the change since DNS resolution seems
broken right now in ping util.

Bug: 8029617

This reverts commit a0f64756a4a55ab48b2b5511d4e7c45583dac44b.

11 years agoam 0a0c2321: am 4bfaf1e5: Merge "FORTIFY_SOURCE: optimize"
Nick Kralevich [Fri, 18 Jan 2013 01:06:11 +0000 (17:06 -0800)]
am 0a0c2321: am 4bfaf1e5: Merge "FORTIFY_SOURCE: optimize"

* commit '0a0c23216766adf76739dc38dcb45934105cd41c':
  FORTIFY_SOURCE: optimize

11 years agoam 4bfaf1e5: Merge "FORTIFY_SOURCE: optimize"
Nick Kralevich [Fri, 18 Jan 2013 01:04:33 +0000 (17:04 -0800)]
am 4bfaf1e5: Merge "FORTIFY_SOURCE: optimize"

* commit '4bfaf1e5f62748b305406ff4ceebd5f4b750038c':
  FORTIFY_SOURCE: optimize

11 years agoam 261e9d08: am e4ca88d9: Merge "Add functionlity to the scripts to replace tokens...
Elliott Hughes [Fri, 18 Jan 2013 00:51:09 +0000 (16:51 -0800)]
am 261e9d08: am e4ca88d9: Merge "Add functionlity to the scripts to replace tokens in kernel headers based on architecture."

* commit '261e9d08dbf1cd7fea7e1799338238d11d18cb7c':
  Add functionlity to the scripts to replace tokens in kernel headers based on architecture.

11 years agoMerge "FORTIFY_SOURCE: optimize"
Nick Kralevich [Fri, 18 Jan 2013 00:49:35 +0000 (00:49 +0000)]
Merge "FORTIFY_SOURCE: optimize"

11 years agoam e4ca88d9: Merge "Add functionlity to the scripts to replace tokens in kernel heade...
Elliott Hughes [Fri, 18 Jan 2013 00:48:45 +0000 (16:48 -0800)]
am e4ca88d9: Merge "Add functionlity to the scripts to replace tokens in kernel headers based on architecture."

* commit 'e4ca88d9fa8757e4fb4056fcafa5bc15b406a2fd':
  Add functionlity to the scripts to replace tokens in kernel headers based on architecture.

11 years agoMerge "Add functionlity to the scripts to replace tokens in kernel headers based...
Elliott Hughes [Fri, 18 Jan 2013 00:34:13 +0000 (00:34 +0000)]
Merge "Add functionlity to the scripts to replace tokens in kernel headers based on architecture."

11 years agoFORTIFY_SOURCE: optimize
Nick Kralevich [Thu, 17 Jan 2013 23:41:33 +0000 (15:41 -0800)]
FORTIFY_SOURCE: optimize

Don't do the fortify_source checks if we can determine, at
compile time, that the provided operation is safe.

This avoids silliness like calling fortify source on things like:

  size_t len = strlen("asdf");
  printf("%d\n", len);

and allows the compiler to optimize this code to:

  printf("%d\n", 4);

Defer to gcc's builtin functions instead of pointing our code
to the libc implementation.

Change-Id: I5e1dcb61946461c4afaaaa983e39f07c7a0df0ae

11 years agoAdd functionlity to the scripts to replace tokens in kernel headers
Raghu Gandham [Thu, 17 Jan 2013 00:42:47 +0000 (16:42 -0800)]
Add functionlity to the scripts to replace tokens in kernel headers
based on architecture.

11 years agoam 3a72fe58: am f3fe1945: Merge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"
Nick Kralevich [Thu, 17 Jan 2013 17:01:14 +0000 (09:01 -0800)]
am 3a72fe58: am f3fe1945: Merge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"

* commit '3a72fe587f454a2eea79b5564e4ab1d3880b51c8':
  linker: add -Wl,--exclude-libs,ALL to LDFLAGS

11 years agoam f3fe1945: Merge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"
Nick Kralevich [Thu, 17 Jan 2013 16:58:27 +0000 (08:58 -0800)]
am f3fe1945: Merge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"

* commit 'f3fe19459fd9263e8cc8a413a5313b1ec3cf3975':
  linker: add -Wl,--exclude-libs,ALL to LDFLAGS

11 years agoMerge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"
Nick Kralevich [Thu, 17 Jan 2013 16:41:31 +0000 (16:41 +0000)]
Merge "linker: add -Wl,--exclude-libs,ALL to LDFLAGS"

11 years agolinker: add -Wl,--exclude-libs,ALL to LDFLAGS
Nick Kralevich [Thu, 17 Jan 2013 00:43:15 +0000 (16:43 -0800)]
linker: add -Wl,--exclude-libs,ALL to LDFLAGS

The linker is essentially a shared library, and incorporates
it's own copy of libc. Even though it's unnecessary, currently
/system/bin/linker is exporting various libc symbols (only to
apps which explicitly dlopen /system/bin/linker)

Add --exclude-libs,ALL, which tells the static linker to mark
all of the imported libc symbols as hidden. This reduces the
size of /system/bin/linker from 92K to 67K with no obvious
loss in functionality.

  $ adb shell ls -l /system/bin/linker
  -rwxrwxrwx root     root        92260 2013-01-16 16:52 linker

  $ adb shell ls -l /system/bin/linker
  -rwxrwxrwx root     root        67660 2013-01-16 16:49 linker

Documentation on exclude-libs can be found at
http://sourceware.org/binutils/docs-2.21/ld/Options.html

Change-Id: I4508287770e4b7a845def2e6b4af969f9c866c6a

11 years agoam 8d01c055: am 1271cdc1: Merge "Revert "stack protector: use AT_RANDOM""
Nick Kralevich [Wed, 16 Jan 2013 21:55:55 +0000 (13:55 -0800)]
am 8d01c055: am 1271cdc1: Merge "Revert "stack protector: use AT_RANDOM""

* commit '8d01c0557bb2b7ea30f4038b6c84b816800073a7':
  Revert "stack protector: use AT_RANDOM"

11 years agoam 1271cdc1: Merge "Revert "stack protector: use AT_RANDOM""
Nick Kralevich [Wed, 16 Jan 2013 21:53:25 +0000 (13:53 -0800)]
am 1271cdc1: Merge "Revert "stack protector: use AT_RANDOM""

* commit '1271cdc1c91c6ae688917bc8f4ae59d2a97b3e99':
  Revert "stack protector: use AT_RANDOM"

11 years agoMerge "Revert "stack protector: use AT_RANDOM""
Nick Kralevich [Wed, 16 Jan 2013 21:36:53 +0000 (21:36 +0000)]
Merge "Revert "stack protector: use AT_RANDOM""

11 years agoam de666485: am ba117e41: Merge "stack protector: use AT_RANDOM"
Nick Kralevich [Wed, 16 Jan 2013 21:31:24 +0000 (13:31 -0800)]
am de666485: am ba117e41: Merge "stack protector: use AT_RANDOM"

* commit 'de666485b8123ac35be94109336f7c56a7e9e3c2':
  stack protector: use AT_RANDOM

11 years agoam 30894bdf: am 1b34228b: Merge "Filter ANDROID_PROPERTY_WORKSPACE"
Nick Kralevich [Wed, 16 Jan 2013 21:31:23 +0000 (13:31 -0800)]
am 30894bdf: am 1b34228b: Merge "Filter ANDROID_PROPERTY_WORKSPACE"

* commit '30894bdfd6e4c74ab673d47391e62fb14fb51381':
  Filter ANDROID_PROPERTY_WORKSPACE

11 years agoRevert "stack protector: use AT_RANDOM"
Nick Kralevich [Wed, 16 Jan 2013 21:13:22 +0000 (13:13 -0800)]
Revert "stack protector: use AT_RANDOM"

The AT_RANDOM changes broke setuid / setgid executables
such as "ping". When the linker executes a setuid program,
it cleans the environment, removing any invalid environment
entries, and adding "NULL"s to the end of the environment
array for each removed variable. Later on, we try to determine
the location of the aux environment variable, and get tripped
up by these extra NULLs.

Reverting this patch will get setuid executables working again,
but getauxval() is still broken for setuid programs because of
this bug.

This reverts commit e3a49a8661125f24aec8a1453e54b3b78005e21e.

Change-Id: I05c58a896b1fe32cfb5d95d43b096045cda0aa4a

11 years agoam ba117e41: Merge "stack protector: use AT_RANDOM"
Nick Kralevich [Wed, 16 Jan 2013 19:31:00 +0000 (11:31 -0800)]
am ba117e41: Merge "stack protector: use AT_RANDOM"

* commit 'ba117e4172fe6f160bf5f4d58b37e12c08c34245':
  stack protector: use AT_RANDOM

11 years agoMerge "stack protector: use AT_RANDOM"
Nick Kralevich [Wed, 16 Jan 2013 19:23:25 +0000 (11:23 -0800)]
Merge "stack protector: use AT_RANDOM"

11 years agoam 1b34228b: Merge "Filter ANDROID_PROPERTY_WORKSPACE"
Nick Kralevich [Wed, 16 Jan 2013 19:14:01 +0000 (11:14 -0800)]
am 1b34228b: Merge "Filter ANDROID_PROPERTY_WORKSPACE"

* commit '1b34228bb289723c4ba0534eae57d0d085a3d0fa':
  Filter ANDROID_PROPERTY_WORKSPACE

11 years agoMerge "Filter ANDROID_PROPERTY_WORKSPACE"
Nick Kralevich [Wed, 16 Jan 2013 19:11:17 +0000 (11:11 -0800)]
Merge "Filter ANDROID_PROPERTY_WORKSPACE"

11 years agoRevert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions...
Elliott Hughes [Wed, 16 Jan 2013 18:34:33 +0000 (10:34 -0800)]
Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic.""

This reverts commit f4b34b6c3942be273ad7298a40be0d312b183aab.

11 years agostack protector: use AT_RANDOM
Nick Kralevich [Mon, 14 Jan 2013 22:46:26 +0000 (14:46 -0800)]
stack protector: use AT_RANDOM

Populate the stack canaries from the kernel supplied
AT_RANDOM value, which doesn't involve any system calls.
This is slightly faster (6 fewer syscalls) and avoids
unnecessarily reading /dev/urandom, which depletes entropy.

Bug: 7959813

Change-Id: If2b43100a2a9929666df3de56b6139fed969e0f1

11 years agoam e611fad0: am 14e1975e: Merge "Fix signalfd for MIPS."
Elliott Hughes [Wed, 16 Jan 2013 17:48:04 +0000 (09:48 -0800)]
am e611fad0: am 14e1975e: Merge "Fix signalfd for MIPS."

* commit 'e611fad0d055f2d869981136e5e51b7a01d525fc':
  Fix signalfd for MIPS.

11 years agoam 14e1975e: Merge "Fix signalfd for MIPS."
Elliott Hughes [Wed, 16 Jan 2013 17:45:57 +0000 (09:45 -0800)]
am 14e1975e: Merge "Fix signalfd for MIPS."

* commit '14e1975e13c197180ed0481f305f83a362b16a24':
  Fix signalfd for MIPS.

11 years agoMerge "Fix signalfd for MIPS."
Elliott Hughes [Wed, 16 Jan 2013 17:42:51 +0000 (09:42 -0800)]
Merge "Fix signalfd for MIPS."

11 years agoFix signalfd for MIPS.
Elliott Hughes [Wed, 16 Jan 2013 17:34:16 +0000 (09:34 -0800)]
Fix signalfd for MIPS.

Also mark signalfd's sigset_t* argument as non-nullable.

Change-Id: I466e09cdf3fb92480744c496da92274a97f99dd1

11 years agoFilter ANDROID_PROPERTY_WORKSPACE
Nick Kralevich [Wed, 16 Jan 2013 00:02:03 +0000 (16:02 -0800)]
Filter ANDROID_PROPERTY_WORKSPACE

When executing a setuid executable, filter out ANDROID_PROPERTY_WORKSPACE
from the environment. Some applications implicitly trust the property
space and don't realize that it's passed by an environment variable
which can be modified by the caller.

Change-Id: I3e3a98941f0a1f249a2ff983ecbcfe1278aa9159

11 years agoam 42c5847d: (-s ours) am 791e26d9: (-s ours) Merge "Revert "DO NOT MERGE Revert...
Elliott Hughes [Tue, 15 Jan 2013 21:37:56 +0000 (13:37 -0800)]
am 42c5847d: (-s ours) am 791e26d9: (-s ours) Merge "Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic."""

* commit '42c5847d65d3e50a3efc4e32bb913dc66c9d0e4d':
  Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic.""

11 years agoam 791e26d9: (-s ours) Merge "Revert "DO NOT MERGE Revert "Add the libcutils localtim...
Elliott Hughes [Tue, 15 Jan 2013 21:35:58 +0000 (13:35 -0800)]
am 791e26d9: (-s ours) Merge "Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic."""

* commit '791e26d9598a72376b8a16a5ccfb5d1ae0010965':
  Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic.""

11 years agoMerge "Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t exten...
Elliott Hughes [Tue, 15 Jan 2013 21:21:51 +0000 (13:21 -0800)]
Merge "Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic."""

11 years agoam b59e358b: Merge "fix strerror_r test"
Nick Kralevich [Tue, 15 Jan 2013 19:15:21 +0000 (11:15 -0800)]
am b59e358b: Merge "fix strerror_r test"

* commit 'b59e358bb902124cc7d648266a97f96beefc8142':
  fix strerror_r test

11 years agoRevert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions...
Elliott Hughes [Tue, 15 Jan 2013 19:12:18 +0000 (11:12 -0800)]
Revert "DO NOT MERGE Revert "Add the libcutils localtime_tz and mktime_t extensions to bionic.""

This reverts commit f4b34b6c3942be273ad7298a40be0d312b183aab.

The revert was only meant to apply to the jb-mr1 branch, but accidentally
leaked out into AOSP. This revert-revert gets AOSP master and internal
master back in sync.

11 years agoMerge "fix strerror_r test"
Nick Kralevich [Tue, 15 Jan 2013 18:56:06 +0000 (10:56 -0800)]
Merge "fix strerror_r test"

11 years agofix strerror_r test
Nick Kralevich [Tue, 15 Jan 2013 18:35:09 +0000 (10:35 -0800)]
fix strerror_r test

e6e60065ff093ff8c859ab146cf543531cb1967c modified strerror_r to
treat errno as signed. However, the change to the test code
modified the "strerror" test, not the "strerror_r" test.

Make the same change for the strerror_r code.

Change-Id: Ia236a53df5745935e229a4446a74da8bed0cfd7b

11 years agoam b09d7d86: Merge "Add __aeabi_idiv to the dummy reference list."
Ben Cheng [Mon, 14 Jan 2013 23:44:01 +0000 (15:44 -0800)]
am b09d7d86: Merge "Add __aeabi_idiv to the dummy reference list."

* commit 'b09d7d86004ab75b774358454d8ee261987af96b':
  Add __aeabi_idiv to the dummy reference list.

11 years agoMerge "Add __aeabi_idiv to the dummy reference list."
Ben Cheng [Mon, 14 Jan 2013 23:35:03 +0000 (15:35 -0800)]
Merge "Add __aeabi_idiv to the dummy reference list."

11 years agoAdd __aeabi_idiv to the dummy reference list.
Ben Cheng [Mon, 14 Jan 2013 19:26:51 +0000 (11:26 -0800)]
Add __aeabi_idiv to the dummy reference list.

If the platform code is compiled with -mcpu=cortex-a15, then without this
change prebuilt libraries built against -march=armv7 cannot resolve the
dependency on __aeabi_idiv (provided by libgcc.a).

Bug: 7961327

cherry-picked from internal master.

Change-Id: I8fe59a98eb53d641518b882523c1d6a724fb7e55

11 years agoam 29fe857e: Merge "headers: update auxvec.h from Linux kernel"
Nick Kralevich [Mon, 14 Jan 2013 22:31:28 +0000 (14:31 -0800)]
am 29fe857e: Merge "headers: update auxvec.h from Linux kernel"

* commit '29fe857ec80e59347e28458a5396eb68d1cba0e4':
  headers: update auxvec.h from Linux kernel

11 years agoMerge "headers: update auxvec.h from Linux kernel"
Nick Kralevich [Mon, 14 Jan 2013 22:14:49 +0000 (14:14 -0800)]
Merge "headers: update auxvec.h from Linux kernel"

11 years agoheaders: update auxvec.h from Linux kernel
Nick Kralevich [Mon, 14 Jan 2013 19:28:26 +0000 (11:28 -0800)]
headers: update auxvec.h from Linux kernel

Pull a new version of auxvec.h from the upstream Linux
kernel at commit b719f43059903820c31edb30f4663a2818836e7f

These files were generated using the following commands:

cd bionic/libc/kernel
./tools/clean_header.py -u ../../../external/kernel-headers/original/uapi/linux/auxvec.h
./tools/clean_header.py -u ../../../external/kernel-headers/original/linux/auxvec.h
./tools/clean_header.py -u ../../../external/kernel-headers/original/asm-x86/auxvec.h

This change is needed to get AT_RANDOM defined.

Change-Id: Ib064649684b17af6ff4b1a31d501a05f78bb81d0

11 years agoam 68fa57f0: Merge "Name anonymous mmap mallocs."
Ian Rogers [Mon, 14 Jan 2013 19:19:00 +0000 (11:19 -0800)]
am 68fa57f0: Merge "Name anonymous mmap mallocs."

* commit '68fa57f000285af20100c00db3d2bc143ad32294':
  Name anonymous mmap mallocs.

11 years agoMerge "Name anonymous mmap mallocs."
Ian Rogers [Mon, 14 Jan 2013 18:54:44 +0000 (10:54 -0800)]
Merge "Name anonymous mmap mallocs."

11 years agoam bb897fa9: Merge "libc_init_static: apply relro earlier."
Nick Kralevich [Mon, 14 Jan 2013 18:25:16 +0000 (10:25 -0800)]
am bb897fa9: Merge "libc_init_static: apply relro earlier."

* commit 'bb897fa9f79d25e4445fe3ab46b86657d6660c10':
  libc_init_static: apply relro earlier.

11 years agoMerge "libc_init_static: apply relro earlier."
Nick Kralevich [Mon, 14 Jan 2013 18:21:23 +0000 (10:21 -0800)]
Merge "libc_init_static: apply relro earlier."

11 years agoam 09d13c39: Merge "Fix my git mistake."
Elliott Hughes [Mon, 14 Jan 2013 18:08:56 +0000 (10:08 -0800)]
am 09d13c39: Merge "Fix my git mistake."

* commit '09d13c393e7b6a77cc33e5ef87e5c92ccd13fe63':
  Fix my git mistake.

11 years agoMerge "Fix my git mistake."
Elliott Hughes [Mon, 14 Jan 2013 17:57:45 +0000 (09:57 -0800)]
Merge "Fix my git mistake."

11 years agoFix my git mistake.
Elliott Hughes [Mon, 14 Jan 2013 17:56:21 +0000 (09:56 -0800)]
Fix my git mistake.

This was the formatting change that was supposed to be in
cf23905a4bcc7bfdd109be5b6d69ad06877aa217.

Change-Id: Ib79fa031b68f6f541f532507eb589afeaedb831f

11 years agoam 48c632a3: Merge "[MIPS] Set DT_DEBUG dyntab entry if it is writable"
Elliott Hughes [Mon, 14 Jan 2013 17:46:19 +0000 (09:46 -0800)]
am 48c632a3: Merge "[MIPS] Set DT_DEBUG dyntab entry if it is writable"

* commit '48c632a381b10996ec72a53cc95b009b06785d09':
  [MIPS] Set DT_DEBUG dyntab entry if it is writable

11 years agoMerge "[MIPS] Set DT_DEBUG dyntab entry if it is writable"
Elliott Hughes [Mon, 14 Jan 2013 17:31:04 +0000 (09:31 -0800)]
Merge "[MIPS] Set DT_DEBUG dyntab entry if it is writable"

11 years ago[MIPS] Set DT_DEBUG dyntab entry if it is writable
Chris Dearman [Fri, 11 Jan 2013 23:32:20 +0000 (15:32 -0800)]
[MIPS] Set DT_DEBUG dyntab entry if it is writable

This is primarily for MIPS exutables that do not have a
DT_MIPS_RLD_MAP entry.

Change-Id: I4c221d92debcfed961eeee2515123f3fb21ec8e6
Signed-off-by: Chris Dearman <chris@mips.com>
11 years agolibc_init_static: apply relro earlier.
Nick Kralevich [Sat, 12 Jan 2013 02:38:26 +0000 (18:38 -0800)]
libc_init_static: apply relro earlier.

The dynamic linker applies relro before the preinit and init
arrays are executed, so we should be consistent for statically
linked executables.

Change-Id: Ia0a49d0e981a6e8791f74eed00280edf576ba139

11 years agoName anonymous mmap mallocs.
Ian Rogers [Fri, 11 Jan 2013 23:25:44 +0000 (15:25 -0800)]
Name anonymous mmap mallocs.

Change-Id: Icc53ba1eecb8445210623826d8e99a611d686f7f

11 years agoam 2c5153b0: libc: add getauxval()
Nick Kralevich [Sat, 12 Jan 2013 00:59:57 +0000 (16:59 -0800)]
am 2c5153b0: libc: add getauxval()

* commit '2c5153b043b44e9935a334ae9b2d5a4bc5258b40':
  libc: add getauxval()

11 years agolibc: add getauxval()
Nick Kralevich [Fri, 11 Jan 2013 22:43:05 +0000 (14:43 -0800)]
libc: add getauxval()

Add support for getauxval().  This method allows a program an easy way
to retrieve information from the kernel auxiliary vector, and will
hopefully replace other clumsy ways of accessing this same information.

This particular function was also added to glibc in glibc 2.16.
See the following URLs for more details.

  * http://lwn.net/Articles/519085/
  * http://www.gnu.org/software/libc/manual/html_node/Auxiliary-Vector.html

This change is a prerequisite for bug 7959813.

Bug: http://code.google.com/p/android/issues/detail?id=38441
Change-Id: Iba19d899df334bddc6f4899077ece2fc87564ea8

11 years agoam 69c89942: Merge "Add stack canaries / strcpy tests."
Nick Kralevich [Fri, 11 Jan 2013 19:26:54 +0000 (11:26 -0800)]
am 69c89942: Merge "Add stack canaries / strcpy tests."

* commit '69c89942db2ed472c71aa84903d0259cc84aa074':
  Add stack canaries / strcpy tests.

11 years agoMerge "Add stack canaries / strcpy tests."
Nick Kralevich [Fri, 11 Jan 2013 19:03:40 +0000 (11:03 -0800)]
Merge "Add stack canaries / strcpy tests."

11 years agoAdd stack canaries / strcpy tests.
Nick Kralevich [Fri, 11 Jan 2013 01:12:29 +0000 (17:12 -0800)]
Add stack canaries / strcpy tests.

Add a test to ensure that stack canaries are working
correctly. Since stack canaries aren't normally generated
on non-string functions, we have to enable stack-protector-all.

Add a test to ensure that an out of bounds strcpy generates
a runtime failure.

Change-Id: Id0d3e59fc4b9602da019e4d35c5c653e1a57fae4

11 years agoam a12c5445: Fix unused warnings in pthread.c
Wink Saville [Fri, 11 Jan 2013 18:12:12 +0000 (10:12 -0800)]
am a12c5445: Fix unused warnings in pthread.c

* commit 'a12c54454f3a6132988b68873903f6e9eed7f384':
  Fix unused warnings in pthread.c

11 years agoFix unused warnings in pthread.c
Wink Saville [Tue, 8 Jan 2013 23:15:45 +0000 (15:15 -0800)]
Fix unused warnings in pthread.c

Change-Id: I0287aadb825fd8cda29dc976bce55d75a1279fc5

11 years agoam bfde0b6f: Merge "glibc 2.15 treats errno as signed in strerror(3)."
Elliott Hughes [Fri, 11 Jan 2013 00:27:26 +0000 (16:27 -0800)]
am bfde0b6f: Merge "glibc 2.15 treats errno as signed in strerror(3)."

* commit 'bfde0b6fd9e5de545746ab963d3a05ed2a8014f6':
  glibc 2.15 treats errno as signed in strerror(3).

11 years agoMerge "glibc 2.15 treats errno as signed in strerror(3)."
Elliott Hughes [Fri, 11 Jan 2013 00:24:36 +0000 (16:24 -0800)]
Merge "glibc 2.15 treats errno as signed in strerror(3)."

11 years agoglibc 2.15 treats errno as signed in strerror(3).
Elliott Hughes [Fri, 11 Jan 2013 00:01:59 +0000 (16:01 -0800)]
glibc 2.15 treats errno as signed in strerror(3).

And the only reason I hadn't done that in bionic is because I wanted to behave
the same as glibc.

Change-Id: I2cf1bf0aac82a748cd6305a2cabbac0790058570

11 years agoam 0d3700d9: Merge "Only have one copy of the kernel_sigset_t hack, and add more...
Elliott Hughes [Thu, 10 Jan 2013 23:28:46 +0000 (15:28 -0800)]
am 0d3700d9: Merge "Only have one copy of the kernel_sigset_t hack, and add more tests."

* commit '0d3700d957debe841c385f66a8026ca8b3755815':
  Only have one copy of the kernel_sigset_t hack, and add more tests.

11 years agoMerge "Only have one copy of the kernel_sigset_t hack, and add more tests."
Elliott Hughes [Thu, 10 Jan 2013 23:12:46 +0000 (15:12 -0800)]
Merge "Only have one copy of the kernel_sigset_t hack, and add more tests."

11 years agoOnly have one copy of the kernel_sigset_t hack, and add more tests.
Elliott Hughes [Thu, 10 Jan 2013 22:42:14 +0000 (14:42 -0800)]
Only have one copy of the kernel_sigset_t hack, and add more tests.

Change-Id: I377522fcba6fb4b5fd2754ab15b091014bd7c16f

11 years agoam 2bbb8fac: Merge "Add signalfd call to bionic"
Elliott Hughes [Thu, 10 Jan 2013 21:30:16 +0000 (13:30 -0800)]
am 2bbb8fac: Merge "Add signalfd call to bionic"

* commit '2bbb8fac61e482dd96386620cc6f7f193e9c6840':
  Add signalfd call to bionic

11 years agoMerge "Add signalfd call to bionic"
Elliott Hughes [Thu, 10 Jan 2013 21:17:26 +0000 (13:17 -0800)]
Merge "Add signalfd call to bionic"

11 years agoAdd signalfd call to bionic
Rom Lemarchand [Wed, 9 Jan 2013 23:46:06 +0000 (15:46 -0800)]
Add signalfd call to bionic

Add signalfd() call to bionic.

Adding the signalfd call was done in 3 steps:
- add signalfd4 system call (function name and syscall
  number) to libc/SYSCALLS.TXT
- generate all necessary headers by calling
  libc/tools/gensyscalls.py. This patch is adding
  the generated files since the build system
  does not call gensyscalls.py.
- create the signalfd wrapper in signalfd.cpp and add
  the function prototype to sys/signalfd.h

(cherry-pick of 0c11611c11f4dc1b6d43587b72c3ccbe8c51a51c, modified to
work with older versions of GCC still in use on some branches.)

Change-Id: I4c6c3f12199559af8be63f93a5336851b7e63355

11 years agoam 364d9ee6: Merge "Don\'t test GNU-style ELF hashes on MIPS."
Elliott Hughes [Mon, 7 Jan 2013 23:00:28 +0000 (15:00 -0800)]
am 364d9ee6: Merge "Don\'t test GNU-style ELF hashes on MIPS."

* commit '364d9ee62f583bca795a2b40f71a04e272c80389':
  Don't test GNU-style ELF hashes on MIPS.

11 years agoMerge "Don't test GNU-style ELF hashes on MIPS."
Elliott Hughes [Mon, 7 Jan 2013 22:46:13 +0000 (14:46 -0800)]
Merge "Don't test GNU-style ELF hashes on MIPS."

11 years agoDon't test GNU-style ELF hashes on MIPS.
Elliott Hughes [Mon, 7 Jan 2013 22:18:22 +0000 (14:18 -0800)]
Don't test GNU-style ELF hashes on MIPS.

The MIPS toolchain can't generate them because they're incompatible
with the MIPS ABI (which requires .dynsym match the GOT, while GNU-style
requires .dynsym to be sorted by hash code), so there's nothing to test.

Change-Id: I2220f452fe6fe595ec1312544cc741dd390a36a5

11 years agoam 7e22db03: Merge "Fix an off-by-one error in the sigset_t function error handling."
Elliott Hughes [Mon, 7 Jan 2013 22:21:26 +0000 (14:21 -0800)]
am 7e22db03: Merge "Fix an off-by-one error in the sigset_t function error handling."

* commit '7e22db037e6d9ab117bf5d50c7aca85fe74941a0':
  Fix an off-by-one error in the sigset_t function error handling.

11 years agoMerge "Fix an off-by-one error in the sigset_t function error handling."
Elliott Hughes [Mon, 7 Jan 2013 22:11:43 +0000 (14:11 -0800)]
Merge "Fix an off-by-one error in the sigset_t function error handling."

11 years agoFix an off-by-one error in the sigset_t function error handling.
Elliott Hughes [Mon, 7 Jan 2013 21:58:49 +0000 (13:58 -0800)]
Fix an off-by-one error in the sigset_t function error handling.

Spotted while running the tests on MIPS, where sigset_t is
actually large enough. The bits in sigset_t are used such that
signal 1 is represented by bit 0, so the range of signals is
actually [1, 8*sizeof(sigset_t)]; it seems clearer to reword
the code in terms of valid bit offsets [0, 8*sizeof(sigset_t)),
which leads to the usual bounds checking idiom.

Change-Id: Id899c288e15ff71c85dd2fd33c47f8e97aa1956f

11 years agoam 26c5b2d4: Merge "[MIPS] Rewrite fenv.h for Android"
Elliott Hughes [Mon, 7 Jan 2013 21:48:55 +0000 (13:48 -0800)]
am 26c5b2d4: Merge "[MIPS] Rewrite fenv.h for Android"

* commit '26c5b2d460e3b2595eb7f0605edcd02753a13594':
  [MIPS] Rewrite fenv.h for Android

11 years agoMerge "[MIPS] Rewrite fenv.h for Android"
Elliott Hughes [Mon, 7 Jan 2013 21:30:58 +0000 (13:30 -0800)]
Merge "[MIPS] Rewrite fenv.h for Android"

11 years ago[MIPS] Rewrite fenv.h for Android
Raghu Gandham [Sat, 5 Jan 2013 00:29:14 +0000 (16:29 -0800)]
[MIPS] Rewrite fenv.h for Android

Change-Id: I4d1e2f0b37b587426ccc9f26c525ec0d36637c7d

11 years agoam 63dc5927: Merge "Add AF_CAN and PF_CAN (and other missing families)."
Elliott Hughes [Fri, 4 Jan 2013 00:59:39 +0000 (16:59 -0800)]
am 63dc5927: Merge "Add AF_CAN and PF_CAN (and other missing families)."

* commit '63dc592789e386ba2cd4e748090ba71d449a1e7c':
  Add AF_CAN and PF_CAN (and other missing families).

11 years agoMerge "Add AF_CAN and PF_CAN (and other missing families)."
Elliott Hughes [Fri, 4 Jan 2013 00:55:30 +0000 (16:55 -0800)]
Merge "Add AF_CAN and PF_CAN (and other missing families)."

11 years agoam f0036944: Merge "Fix debug malloc."
Elliott Hughes [Fri, 4 Jan 2013 00:42:42 +0000 (16:42 -0800)]
am f0036944: Merge "Fix debug malloc."

* commit 'f0036944a13a76dddda70347032128d4a27081d6':
  Fix debug malloc.

11 years agoAdd AF_CAN and PF_CAN (and other missing families).
Elliott Hughes [Fri, 4 Jan 2013 00:25:47 +0000 (16:25 -0800)]
Add AF_CAN and PF_CAN (and other missing families).

Change-Id: I2c183a6f5f7a7e81e87dad85d8c9aff9c43ed33a

11 years agoMerge "Fix debug malloc."
Elliott Hughes [Fri, 4 Jan 2013 00:20:01 +0000 (16:20 -0800)]
Merge "Fix debug malloc."

11 years agoFix debug malloc.
Elliott Hughes [Thu, 3 Jan 2013 23:44:03 +0000 (15:44 -0800)]
Fix debug malloc.

...which has been broken since the linker data structures went read-only.

Bug: 7941716
Change-Id: If28f6bac0fcb13e371e4d85b064544f561c8d692

11 years agoam b1b53177: Merge "sysconf.c was renamed to sysconf.cpp (and modified)..."
Elliott Hughes [Thu, 3 Jan 2013 20:04:48 +0000 (12:04 -0800)]
am b1b53177: Merge "sysconf.c was renamed to sysconf.cpp (and modified)..."

* commit 'b1b5317799a34ac9e93f568af82952e52a9e9a13':
  sysconf.c was renamed to sysconf.cpp (and modified)...

11 years agoMerge "sysconf.c was renamed to sysconf.cpp (and modified)..."
Elliott Hughes [Thu, 3 Jan 2013 19:54:56 +0000 (11:54 -0800)]
Merge "sysconf.c was renamed to sysconf.cpp (and modified)..."

11 years agosysconf.c was renamed to sysconf.cpp (and modified)...
Elliott Hughes [Thu, 3 Jan 2013 19:53:35 +0000 (11:53 -0800)]
sysconf.c was renamed to sysconf.cpp (and modified)...

...but sysconf.c still lingers on due to some git/repo accident. Kill it.

Change-Id: Iae354ecb21abf03a3f718cc45cfdddb7a9347778

11 years agoam fb62558b: Merge "Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC...
Elliott Hughes [Wed, 2 Jan 2013 23:55:42 +0000 (15:55 -0800)]
am fb62558b: Merge "Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK)."

* commit 'fb62558bb4c25c8f71e0b949ba8552c674578674':
  Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK).

11 years agoMerge "Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK)."
Elliott Hughes [Wed, 2 Jan 2013 23:51:15 +0000 (15:51 -0800)]
Merge "Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK)."

11 years agoDefine _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK).
Elliott Hughes [Wed, 2 Jan 2013 22:23:43 +0000 (14:23 -0800)]
Define _POSIX_MONOTONIC_CLOCK and implement sysconf(_SC_MONOTONIC_CLOCK).

Bug: http://code.google.com/p/android/issues/detail?id=39680
Change-Id: I11cf10a66f9d305868a725f04f581099fb88bbfc

11 years agoam 918d776f: Merge "Support System.loadLibrary for libraries with transitive dependen...
Elliott Hughes [Sat, 22 Dec 2012 01:54:07 +0000 (17:54 -0800)]
am 918d776f: Merge "Support System.loadLibrary for libraries with transitive dependencies."

* commit '918d776f7edf1a9c4209ada4c2401ef0ea0bf660':
  Support System.loadLibrary for libraries with transitive dependencies.

11 years agoMerge "Support System.loadLibrary for libraries with transitive dependencies."
Elliott Hughes [Sat, 22 Dec 2012 01:46:22 +0000 (17:46 -0800)]
Merge "Support System.loadLibrary for libraries with transitive dependencies."

11 years agoam f6524f8b: Merge "Fix format_number."
Elliott Hughes [Fri, 21 Dec 2012 18:04:27 +0000 (10:04 -0800)]
am f6524f8b: Merge "Fix format_number."

* commit 'f6524f8bda87f7d25dad7bed7091a93f3de58728':
  Fix format_number.

11 years agoMerge "Fix format_number."
Elliott Hughes [Fri, 21 Dec 2012 03:08:17 +0000 (19:08 -0800)]
Merge "Fix format_number."

11 years agoFix format_number.
Elliott Hughes [Fri, 21 Dec 2012 02:59:05 +0000 (18:59 -0800)]
Fix format_number.

I broke this the other day when silencing x86 gcc warnings.

Bug: 7904160
Change-Id: I8e60cc1f8cbaff95248c8738d84e515413d839e4