OSDN Git Service

android-x86/bionic.git
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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

11 years agoSupport System.loadLibrary for libraries with transitive dependencies.
Elliott Hughes [Thu, 20 Dec 2012 22:42:14 +0000 (14:42 -0800)]
Support System.loadLibrary for libraries with transitive dependencies.

Also fix the FLAG_ERROR annoyance --- it's not helpful to cache failures.

Bug: 7896159
Bug: http://code.google.com/p/android/issues/detail?id=34416
Bug: http://code.google.com/p/android/issues/detail?id=22143
Change-Id: I60f235edb4ea4756e1f7ce56f7739f18e8a50789

11 years agoMerge "Fix x86 dynamic linker build."
Elliott Hughes [Wed, 19 Dec 2012 02:16:09 +0000 (18:16 -0800)]
Merge "Fix x86 dynamic linker build."

11 years agoFix x86 dynamic linker build.
Elliott Hughes [Wed, 19 Dec 2012 02:13:19 +0000 (18:13 -0800)]
Fix x86 dynamic linker build.

Change-Id: Ia9fc6342e3d409de86dcd187c7402e8ac2ae96c8

11 years agoMerge "Check for unknown flags passed to dlopen(3)."
Elliott Hughes [Wed, 19 Dec 2012 00:38:37 +0000 (16:38 -0800)]
Merge "Check for unknown flags passed to dlopen(3)."

11 years agoCheck for unknown flags passed to dlopen(3).
Elliott Hughes [Tue, 18 Dec 2012 23:57:55 +0000 (15:57 -0800)]
Check for unknown flags passed to dlopen(3).

Change-Id: I56f4aab0e5a1487bc32d2c4d231e8bd15c4ac8da

11 years agoMerge "Fix <endian.h> and <sys/endian.h>."
Elliott Hughes [Wed, 12 Dec 2012 01:18:58 +0000 (17:18 -0800)]
Merge "Fix <endian.h> and <sys/endian.h>."

11 years agoFix <endian.h> and <sys/endian.h>.
Elliott Hughes [Wed, 12 Dec 2012 00:14:54 +0000 (16:14 -0800)]
Fix <endian.h> and <sys/endian.h>.

Previously we'd been relying on getting the machine-specific <endian.h>
instead of the top-level <endian.h>, and <sys/endian.h> was basically broken.
Now, with this patch and the previous patch we should have <endian.h>
and <sys/endian.h> behaving the same. This is basically how NetBSD's endian.h
works, and was probably how ours was originally intended to work.

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

11 years agoMerge "Use pthread_kill() in raise()"
Elliott Hughes [Mon, 10 Dec 2012 19:21:42 +0000 (11:21 -0800)]
Merge "Use pthread_kill() in raise()"

11 years agoUse pthread_kill() in raise()
Chris Dearman [Sat, 8 Dec 2012 02:41:10 +0000 (18:41 -0800)]
Use pthread_kill() in raise()

raise() should use pthread_kill() in a pthreads environment.
For bionic this means it should always be used.

Change-Id: Ic679272b664d2b8a7068b628fb83a9f7395c441f

11 years agoMerge "Added audit.h from the kernel."
Geremy Condra [Fri, 7 Dec 2012 22:21:16 +0000 (14:21 -0800)]
Merge "Added audit.h from the kernel."

11 years agoAdded audit.h from the kernel.
Geremy Condra [Thu, 6 Dec 2012 21:02:46 +0000 (13:02 -0800)]
Added audit.h from the kernel.

Just followed the recipe in I1ca996541d05b0d5927ab828a6ce49c09877ea01

Change-Id: I5713d9ce5ff62e310a694ecfbe21cad6577bcb4d

11 years agoMerge "FORTIFY_SOURCE: remove memcpy overlap checks"
Nick Kralevich [Fri, 7 Dec 2012 18:10:49 +0000 (10:10 -0800)]
Merge "FORTIFY_SOURCE: remove memcpy overlap checks"

11 years agoFORTIFY_SOURCE: remove memcpy overlap checks
Nick Kralevich [Fri, 7 Dec 2012 17:57:01 +0000 (09:57 -0800)]
FORTIFY_SOURCE: remove memcpy overlap checks

These checks haven't been as useful as I hoped, and it's
causing a false positive finding.  Remove the overlap
compile time checks.

Change-Id: I5d45dde10ae4663d728230d41fa904adf20acaea

11 years agoMerge "FORTIFY_SOURCE: fix up previous commit"
Nick Kralevich [Thu, 6 Dec 2012 22:48:24 +0000 (14:48 -0800)]
Merge "FORTIFY_SOURCE: fix up previous commit"

11 years agoFORTIFY_SOURCE: fix up previous commit
Nick Kralevich [Wed, 5 Dec 2012 23:26:54 +0000 (15:26 -0800)]
FORTIFY_SOURCE: fix up previous commit

I forgot two files in 326ea5413d18ea019cd1bda415ce428f7bdcafd2.

Change-Id: I30430f65bfafad4274193fc5b973959eac0791a7

11 years agoMerge "clean up FORTIFY_SOURCE handling."
Nick Kralevich [Tue, 4 Dec 2012 23:44:22 +0000 (15:44 -0800)]
Merge "clean up FORTIFY_SOURCE handling."

11 years agoclean up FORTIFY_SOURCE handling.
Nick Kralevich [Tue, 4 Dec 2012 21:55:19 +0000 (13:55 -0800)]
clean up FORTIFY_SOURCE handling.

Avoid duplicating huge chunks of code.

Change-Id: Id6145cdfce781c5ffba2abaaa79681d25a7ab28f

11 years agoMerge "FORTIFY_SOURCE: fortify strrchr"
Nick Kralevich [Tue, 4 Dec 2012 19:30:18 +0000 (11:30 -0800)]
Merge "FORTIFY_SOURCE: fortify strrchr"

11 years agoFORTIFY_SOURCE: fortify strrchr
Nick Kralevich [Mon, 3 Dec 2012 18:36:13 +0000 (10:36 -0800)]
FORTIFY_SOURCE: fortify strrchr

This change compliments 049e58369c37fdeacd0380a6bf1e078d9baf819f

Change-Id: I27d015d70a520713c7472558a3c427f546d36ee4

11 years agoMerge "mmap: Remove madvise() workaround"
Elliott Hughes [Mon, 3 Dec 2012 17:13:20 +0000 (09:13 -0800)]
Merge "mmap: Remove madvise() workaround"

11 years agoMerge "Add argument checking to sigemptyset(3) and friends."
Elliott Hughes [Mon, 3 Dec 2012 15:45:45 +0000 (07:45 -0800)]
Merge "Add argument checking to sigemptyset(3) and friends."

11 years agoMerge "FORTIFY_SOURCE: fortify strchr"
Nick Kralevich [Sat, 1 Dec 2012 00:50:59 +0000 (16:50 -0800)]
Merge "FORTIFY_SOURCE: fortify strchr"

11 years agoAdd argument checking to sigemptyset(3) and friends.
Elliott Hughes [Sat, 1 Dec 2012 00:40:55 +0000 (16:40 -0800)]
Add argument checking to sigemptyset(3) and friends.

You could argue that this is hurting people smart enough to have manually
allocated a large-enough sigset_t, but those people are smart enough to
implement their own sigset functions too.

I wonder whether our least unpleasant way out of our self-inflicted 32-bit
cesspool is to have equivalents of _FILE_OFFSET_BITS such as _SIGSET_T_BITS,
so calling code could opt in? You'd have to be careful passing sigset_t
arguments between code compiled with different options.

Bug: 5828899
Change-Id: I0ae60ee8544835b069a2b20568f38ec142e0737b

11 years agoFORTIFY_SOURCE: fortify strchr
Nick Kralevich [Fri, 30 Nov 2012 23:15:58 +0000 (15:15 -0800)]
FORTIFY_SOURCE: fortify strchr

Detect when strchr reads off the end of a buffer.

Change-Id: I0e952eedcff5c36d646a9c3bc4e1337b959224f2

11 years agoMerge "Reduce the exposure of the __set_errno implementation detail."
Elliott Hughes [Fri, 30 Nov 2012 22:41:07 +0000 (14:41 -0800)]
Merge "Reduce the exposure of the __set_errno implementation detail."

11 years agoReduce the exposure of the __set_errno implementation detail.
Elliott Hughes [Fri, 30 Nov 2012 19:58:57 +0000 (11:58 -0800)]
Reduce the exposure of the __set_errno implementation detail.

Change-Id: I395e1b46a9491e34fc53e71853e932ea90b3d1cc

11 years agoMerge "Replace .S version of x86 crtfiles with .c version"
Elliott Hughes [Fri, 30 Nov 2012 18:06:53 +0000 (10:06 -0800)]
Merge "Replace .S version of x86 crtfiles with .c version"

11 years agoReplace .S version of x86 crtfiles with .c version
Pavel Chupin [Wed, 28 Nov 2012 14:31:14 +0000 (18:31 +0400)]
Replace .S version of x86 crtfiles with .c version

This patch replaces .S versions of x86 crtfiles with .c which are much
easier to support. Some of the files are matching .c version of Arm
crtfiles. x86 files required some cleanup anyway and this cleanup actually
led to matching Arm files.

I didn't change anything to share the same crt*.c between x86 and Arm. I
prefer to keep them separate for a while in case any change is required
for one of the arch, but it's good thing to do in the following patches.

Change-Id: Ibcf033f8d15aa5b10c05c879fd4b79a64dfc70f3
Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
11 years agoMerge "Remove (near-)duplicate definitions of size_t and ssize_t."
Elliott Hughes [Fri, 30 Nov 2012 03:33:01 +0000 (19:33 -0800)]
Merge "Remove (near-)duplicate definitions of size_t and ssize_t."

11 years agoRemove (near-)duplicate definitions of size_t and ssize_t.
Elliott Hughes [Fri, 30 Nov 2012 01:25:23 +0000 (17:25 -0800)]
Remove (near-)duplicate definitions of size_t and ssize_t.

The near duplicates upset fussier compilers that insist that
typedefs be exactly the same, but the fix isn't to make all
copies identical...

Change-Id: Icfdace41726f36ec33c9ae919dbb5a54d3529cc9

11 years agoMerge "Bug: __WINT_TYPE__ and wint_t reference to different types"
Elliott Hughes [Thu, 29 Nov 2012 23:51:57 +0000 (15:51 -0800)]
Merge "Bug: __WINT_TYPE__ and wint_t reference to different types"

11 years agoMerge "[MIPS] Fix the MIPS getsid system call"
Elliott Hughes [Thu, 29 Nov 2012 22:37:13 +0000 (14:37 -0800)]
Merge "[MIPS] Fix the MIPS getsid system call"

11 years agoMerge "Verify architecture neutral syscall numbers"
Elliott Hughes [Thu, 29 Nov 2012 22:34:19 +0000 (14:34 -0800)]
Merge "Verify architecture neutral syscall numbers"

11 years agoMerge "Define DEFFILEMODE and friends"
Elliott Hughes [Thu, 29 Nov 2012 22:31:19 +0000 (14:31 -0800)]
Merge "Define DEFFILEMODE and friends"

11 years ago[MIPS] Fix the MIPS getsid system call
Chris Dearman [Thu, 29 Nov 2012 19:23:31 +0000 (11:23 -0800)]
[MIPS] Fix the MIPS getsid system call

Change-Id: I30a27941125bccb35d73a572a729ecf7dd555389
Signed-off-by: Chris Dearman <chris@mips.com>
11 years agoVerify architecture neutral syscall numbers
Chris Dearman [Thu, 29 Nov 2012 19:22:11 +0000 (11:22 -0800)]
Verify architecture neutral syscall numbers

Also removed some dead code and fixed comment

Change-Id: I5d6a04b4af3d95e34368136cf2eeb3c9b6f99769
Signed-off-by: Chris Dearman <chris@mips.com>
11 years agoDefine DEFFILEMODE and friends
Hakan Kvist [Wed, 10 Oct 2012 06:32:52 +0000 (08:32 +0200)]
Define DEFFILEMODE and friends

Define the macros ACCESSPERMS, ALLPERMS and DEFFILEMODE.
These macros originates from BSD but has been available in glibc
for quite some time.

Change-Id: I429cd30aa4e73f53b153ee7740070cebba166c57

11 years agoMerge "Clean up _BYTE_ORDER definitions for better x86 portability."
Elliott Hughes [Wed, 28 Nov 2012 01:34:52 +0000 (17:34 -0800)]
Merge "Clean up _BYTE_ORDER definitions for better x86 portability."

11 years agoClean up _BYTE_ORDER definitions for better x86 portability.
Elliott Hughes [Tue, 27 Nov 2012 22:18:04 +0000 (14:18 -0800)]
Clean up _BYTE_ORDER definitions for better x86 portability.

We'd manually hacked _BYTE_ORDER into the arm and mips "_types.h" headers,
but not into the x86 one. Judging by upstream, _BYTE_ORDER should be in
the "endian.h" headers instead, so let's uniformly do that.

I've also ironed out some of the other differences between the different
architectures' header files too.

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

11 years agoMerge "Do not include '\0' when writing error messages to stderr"
Elliott Hughes [Mon, 26 Nov 2012 23:44:58 +0000 (15:44 -0800)]
Merge "Do not include '\0' when writing error messages to stderr"

11 years agoDo not include '\0' when writing error messages to stderr
Chris Dearman [Wed, 31 Oct 2012 12:39:27 +0000 (05:39 -0700)]
Do not include '\0' when writing error messages to stderr

Change-Id: I6adc806c3920e5a4ae61ca55c40613fcf338b18c
Signed-off-by: Chris Dearman <chris@mips.com>
11 years agoMerge "Upgrade to tzdata2012j."
Elliott Hughes [Mon, 26 Nov 2012 22:52:07 +0000 (14:52 -0800)]
Merge "Upgrade to tzdata2012j."

11 years agoUpgrade to tzdata2012j.
Elliott Hughes [Mon, 26 Nov 2012 21:44:49 +0000 (13:44 -0800)]
Upgrade to tzdata2012j.

This reflects the following changes recently circulated on the tz mailing list:

  Libya moved to CET [2012-11-11], but with DST planned [2013].
  (Thanks to Even Scharning, Steffen Thorsen, and Tim Parenti.)

I also had to change the script to cope with:

  Signatures now have the extension .asc, not .sign, as that's more
  standard.  (Thanks to Phil Pennock.)

Change-Id: Ie9711c5c796b3c122daea9690929edcc3ddd32da

11 years agoBug: __WINT_TYPE__ and wint_t reference to different types
Sergey Melnikov [Wed, 21 Nov 2012 15:42:19 +0000 (19:42 +0400)]
Bug: __WINT_TYPE__ and wint_t reference to different types

__WINT_TYPE__ type provided by gcc. It references to unsigned int
type for android and linux. Patch corrects wint_t typedef to
__WINT_TYPE__.

Signed-off-by: Sergey Melnikov <sergey.melnikov@intel.com>
Change-Id: Iabeb9fcb0b7bb303a8b220043e339126f125dd68

11 years agommap: Remove madvise() workaround
Nick Kralevich [Mon, 19 Nov 2012 19:23:10 +0000 (11:23 -0800)]
mmap: Remove madvise() workaround

Remove mmap() calling madvise(MADV_MERGEABLE) added
in b8e1e9685efc82d6ac112b9aa316e7f6bf5186ca

Change-Id: I80dbf6afe750348964d83097f993ea6cb8a065d5