OSDN Git Service

android-x86/bionic.git
14 years agomerge from open-source master
The Android Open Source Project [Thu, 13 May 2010 21:31:02 +0000 (14:31 -0700)]
merge from open-source master

Change-Id: I2be62bce462ee53fe9519f433523bd7a44a73d40

14 years agoSet SA_RESTORER in sigaction()
Matt Fischer [Mon, 11 Jan 2010 02:02:06 +0000 (10:02 +0800)]
Set SA_RESTORER in sigaction()

GDB looks for specific opcode sequences when trying to recognize a stack
frame as a signal trampoline.  The sequences it looks for happen to be those
created when SA_RESTORER is set, since glibc always sets a restorer.  This
patch does the same here, so that the trampolines can be correctly identified.

Change-Id: I0ac574a68818cb24d939c3527f3aaeb04b853d04

14 years agofix build
Jean-Baptiste Queru [Wed, 12 May 2010 17:05:59 +0000 (10:05 -0700)]
fix build

Change-Id: I243c98e20a250e0d40d481f16af481ff070219fd

14 years agomerge from open-source master
The Android Open Source Project [Wed, 12 May 2010 16:22:50 +0000 (09:22 -0700)]
merge from open-source master

Change-Id: Iecfd2bd3069f70bbe508042cc249fcf7ff24800d

14 years agoMerge "Sometimes the compiler is very right! Found bug in bessel routines for float."
Jean-Baptiste Queru [Tue, 11 May 2010 17:43:56 +0000 (10:43 -0700)]
Merge "Sometimes the compiler is very right! Found bug in bessel routines for float."

14 years agoMerge "Reduce compiler anxiety."
David Turner [Tue, 11 May 2010 17:20:15 +0000 (10:20 -0700)]
Merge "Reduce compiler anxiety."

14 years agoMerge "Added support for LD_PRELOAD"
David Turner [Tue, 11 May 2010 17:17:00 +0000 (10:17 -0700)]
Merge "Added support for LD_PRELOAD"

14 years agoMerge "stdio: simplify __fremovelock()"
David Turner [Mon, 10 May 2010 23:04:02 +0000 (16:04 -0700)]
Merge "stdio: simplify __fremovelock()"

14 years agoMerge "Reversed order of const and static to hush warning from compiler."
Jean-Baptiste Queru [Mon, 10 May 2010 23:00:22 +0000 (16:00 -0700)]
Merge "Reversed order of const and static to hush warning from compiler."

14 years agostdio: simplify __fremovelock()
André Goddard Rosa [Sun, 31 Jan 2010 00:45:07 +0000 (22:45 -0200)]
stdio: simplify __fremovelock()

... by removing extraneous NULL check, as free() already does it.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Change-Id: I0445f35c7ad0a049a0e4aee1fbe002ed2f13b94b

14 years agoAdded support for LD_PRELOAD
Matt Fischer [Thu, 31 Dec 2009 18:09:10 +0000 (12:09 -0600)]
Added support for LD_PRELOAD

The LD_PRELOAD environment variable allows the user to specify a list of
libraries which should be unconditionally loaded before any others.  This
makes possible some useful tricks, such as library interposers.

Change-Id: I433d775ab08ef63a5fbe7b21f87a5642954fc32f

14 years agoMerge "string: tidy up strndup()"
David Turner [Mon, 10 May 2010 21:52:02 +0000 (14:52 -0700)]
Merge "string: tidy up strndup()"

14 years agoSometimes the compiler is very right! Found bug in bessel routines for float.
Scott Turner [Sat, 16 Jan 2010 16:30:44 +0000 (11:30 -0500)]
Sometimes the compiler is very right! Found bug in bessel routines for float.

Original compiler error:

target arm C: libm <= bionic/libm/src/e_j0f.c
bionic/libm/src/e_j0f.c: In function 'j0f':
bionic/libm/src/e_j0f.c:66: warning: comparison between signed and unsigned integer expressions
bionic/libm/src/e_j0f.c: In function 'y0f':
bionic/libm/src/e_j0f.c:140: warning: comparison between signed and unsigned integer expressions
target arm C: libm <= bionic/libm/src/e_j1.c

It's subtle but ix is masked with 0x7f000000 so it can never ever have a value
greater than 0x80000000. So I switched to using the unmasked hx and added a
cast as a reward to the compiler for being right.

I checked the original routines that e_j0f.c was ported from (in e_j0.c) and
the double's don't use 0x80000000 so this issue didn't exist there.

Let that be a warning to those that just slap on casts to shut up the compiler,
sometimes it's sniffed out a bug for you. :-)

Similar fixes in the other functions.

Change-Id: I7a776e5d4721fc3a9e3bd89179b67e9af3a2ebfa

14 years agomerge from open-source master
The Android Open Source Project [Mon, 3 May 2010 22:33:05 +0000 (15:33 -0700)]
merge from open-source master

Change-Id: If02d33af51017dbd85e91c79ac2e848eda6cf253

14 years agoMerge "Fix log channel initialization at bionic/logd_write.c."
David Turner [Sat, 1 May 2010 22:31:39 +0000 (15:31 -0700)]
Merge "Fix log channel initialization at bionic/logd_write.c."

14 years agoMerge "added headers for SuperH which automatically generate by update_all.py"
Jean-Baptiste Queru [Thu, 29 Apr 2010 15:01:50 +0000 (08:01 -0700)]
Merge "added headers for SuperH which automatically generate by update_all.py"

14 years agolinker: fix the undefined weak symbols issue
Yi Sun [Wed, 2 Dec 2009 08:08:14 +0000 (00:08 -0800)]
linker: fix the undefined weak symbols issue

I'm not sure if this is a correct fix or not.
Also need to find out why 1.6 does not have this issue.

Change-Id: If46c844834bda1e2cbf084a1a45a1832119b3ae3

14 years agobionic: add missing NULL check from memory allocation on record_backtrace()
André Goddard Rosa [Fri, 5 Feb 2010 18:03:09 +0000 (16:03 -0200)]
bionic: add missing NULL check from memory allocation on record_backtrace()

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Change-Id: I739c63c5a7344fff1775580044dc647edf246ebf

14 years agostdio: simplify vasprintf()
André Goddard Rosa [Sun, 31 Jan 2010 00:40:45 +0000 (22:40 -0200)]
stdio: simplify vasprintf()

... by removing unneeded NULL check, as free() already does it.
By the way, we don't need to set a stack variable back to NULL.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Change-Id: Id90eb8f042b5c922c5ff139b11ff8366fb404566

14 years agostdio: simplify asprintf()
André Goddard Rosa [Sun, 31 Jan 2010 00:39:00 +0000 (22:39 -0200)]
stdio: simplify asprintf()

... by removing unneeded NULL check, as free() already does it.
By the way, we don't need to set a stack variable back to NULL.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Change-Id: Id1f72e872f73366dddcea4abc75885a3d9a318c6

14 years agoimprove readability of stdlib: fix indentation and remove trailing spaces
André Goddard Rosa [Fri, 5 Feb 2010 20:32:52 +0000 (18:32 -0200)]
improve readability of stdlib: fix indentation and remove trailing spaces

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Change-Id: I7dd90a0816b5376ffc1de4499d56935e0bd574a1

14 years agomerge from open-source master
The Android Open Source Project [Wed, 21 Apr 2010 16:10:08 +0000 (09:10 -0700)]
merge from open-source master

Change-Id: I518bb4ae9d7269957365561d4d609f22cde519db

14 years agomerge from open-source master
The Android Open Source Project [Thu, 8 Apr 2010 18:11:53 +0000 (11:11 -0700)]
merge from open-source master

Change-Id: If77618a329fc7b497c44c2585e644bc50e7e1406

14 years agoFixed support for RTLD_NEXT in dlsym()
Matt Fischer [Thu, 31 Dec 2009 18:17:56 +0000 (12:17 -0600)]
Fixed support for RTLD_NEXT in dlsym()

The previous implementation of this flag was broken--it behaved identically
to RTLD_DEFAULT.  This adds a proper implementation, which examines the address
of the calling function, and uses it to determine which library to use to begin
the symbol search process.

Change-Id: I2ad2b46363f68932af63a3828a22f9c7987eea67

14 years agoam 91638721: kernel_headers: Update rtnetlink/pkt_sched headers for 2.6.32
San Mehat [Wed, 7 Apr 2010 05:02:48 +0000 (22:02 -0700)]
am 91638721: kernel_headers: Update rtnetlink/pkt_sched headers for 2.6.32

Merge commit '9163872132a3e92f986b1d684badb1dd4482ad8e' into froyo-plus-aosp

* commit '9163872132a3e92f986b1d684badb1dd4482ad8e':
  kernel_headers: Update rtnetlink/pkt_sched headers for 2.6.32

14 years agokernel_headers: Update rtnetlink/pkt_sched headers for 2.6.32
San Mehat [Wed, 7 Apr 2010 01:49:49 +0000 (18:49 -0700)]
kernel_headers: Update rtnetlink/pkt_sched headers for 2.6.32

For: For http://b/issue?id=2576057

Change-Id: I553ca14974aaec4434e384979e0bb7007dcf6033
Signed-off-by: San Mehat <san@google.com>
14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:24:25 +0000 (14:24 -0700)]
merge from open-source master

Change-Id: I950e9aca87cbb0c35099b1d53cff6378bd0f26f4

14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:19:51 +0000 (14:19 -0700)]
merge from open-source master

Change-Id: I483fedf77d978b1c6e52d73eebc14f011bb9f809

14 years agomerge from open-source master
The Android Open Source Project [Wed, 31 Mar 2010 21:15:30 +0000 (14:15 -0700)]
merge from open-source master

Change-Id: I076e0df8656fdf58c229cc9a168cd6d8e16b6d8e

14 years agobionic: fix memory leak in get_malloc_leak_info() error path
André Goddard Rosa [Fri, 5 Feb 2010 18:01:05 +0000 (16:01 -0200)]
bionic: fix memory leak in get_malloc_leak_info() error path

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agoMerge "bionic: clear only the part of the buffer which is not overwritten afterward"
David Turner [Tue, 30 Mar 2010 21:52:14 +0000 (14:52 -0700)]
Merge "bionic: clear only the part of the buffer which is not overwritten afterward"

14 years agoMerge "linker: fix the undefined weak symbols issue"
David Turner [Mon, 29 Mar 2010 22:49:42 +0000 (15:49 -0700)]
Merge "linker: fix the undefined weak symbols issue"

14 years agolinker: fix the undefined weak symbols issue
Min-su, Kim [Tue, 19 Jan 2010 01:05:33 +0000 (10:05 +0900)]
linker: fix the undefined weak symbols issue

14 years agoMerge changes Ibdc6e3c8,I9bcb91a2
David Turner [Mon, 29 Mar 2010 22:05:47 +0000 (15:05 -0700)]
Merge changes Ibdc6e3c8,I9bcb91a2

* changes:
  Correct generic memset implementation
  Generic memcpy should define MEMCOPY before including bcopy.c

14 years agoMerge "Atom optimized string and memory routines"
David Turner [Mon, 29 Mar 2010 21:40:05 +0000 (14:40 -0700)]
Merge "Atom optimized string and memory routines"

14 years agomerge from open-source master
The Android Open Source Project [Mon, 29 Mar 2010 18:01:59 +0000 (11:01 -0700)]
merge from open-source master

Change-Id: I96d2cd063f084fd17116bf7ee08fa7109a3c1ceb

14 years agobionic: clear only the part of the buffer which is not overwritten afterward
André Goddard Rosa [Mon, 29 Mar 2010 00:32:36 +0000 (21:32 -0300)]
bionic: clear only the part of the buffer which is not overwritten afterward

Change-Id: I5ddd93f0557e5a7401460dc9fc8a55b330a79c3a
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agostdlib: optimize bsearch()
André Goddard Rosa [Mon, 29 Mar 2010 00:18:56 +0000 (21:18 -0300)]
stdlib: optimize bsearch()

... by checking most probable condition first (elements do differ)

Change-Id: I424eab9c32a6d9eb82b686ca04025ec8c9097035
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agoAtom optimized string and memory routines
Bruce Beare [Thu, 4 Mar 2010 19:03:37 +0000 (11:03 -0800)]
Atom optimized string and memory routines

Change-Id: I27b68bb28551c75c9ac84bb9730e2cd8254d8991

14 years agoAndroid hack for size_t
Bruce Beare [Wed, 10 Mar 2010 23:52:42 +0000 (15:52 -0800)]
Android hack for size_t

Change-Id: I3c967fca60f542459dc17be84da47b3b6a26242b

14 years agoFix comparison of IPv6 prefixes
Kenny Root [Thu, 25 Mar 2010 01:06:20 +0000 (18:06 -0700)]
Fix comparison of IPv6 prefixes

Typo assigned prefixlen1 twice instead of to the two different variables
for comparison and difference computation.

Change-Id: I6631b8269ca6aae264c8d7d414127b756838df96

14 years agolibc: kernel: update msm_kgsl.h
Dima Zavin [Tue, 9 Mar 2010 01:34:52 +0000 (17:34 -0800)]
libc: kernel: update msm_kgsl.h

Change-Id: I8cd5a186071892bdc2b2b29061dd6c1fd927c0f5
Signed-off-by: Dima Zavin <dima@android.com>
14 years agoFix typo that broke recursive mutexes implementation.
David 'Digit' Turner [Tue, 23 Mar 2010 12:30:55 +0000 (05:30 -0700)]
Fix typo that broke recursive mutexes implementation.

Change-Id: I832901604b487c6a50304c311b5ba135e153530d

14 years agopthread: Use private futexes by default in condition variables
David 'Digit' Turner [Sat, 20 Mar 2010 00:59:23 +0000 (17:59 -0700)]
pthread: Use private futexes by default in condition variables

Now that the system properly uses shared condvars when needed, we
can enable the use of private futexes for them too.

Change-Id: Icf8351fc0a2309f764cba45c65bc3af047720cdf

14 years agomerge from open-source master
The Android Open Source Project [Mon, 22 Mar 2010 22:55:09 +0000 (15:55 -0700)]
merge from open-source master

Change-Id: I70266ee8c520b216773f267e46c8273d2334c31d

14 years agoMerge "Fix strtod security bug."
David 'Digit' Turner [Mon, 22 Mar 2010 22:45:32 +0000 (15:45 -0700)]
Merge "Fix strtod security bug."

14 years agoUse private futexes for pthread_mutex_t.
David 'Digit' Turner [Fri, 19 Mar 2010 00:13:41 +0000 (17:13 -0700)]
Use private futexes for pthread_mutex_t.

This does not change the implementation of conditional variables
since we're waiting for other system components to properly use
pthread_condattr_init/setpshared before that.

Also remove an obsolete x86 source file.

Change-Id: Ia3e3fbac35b87a534fb04d4381c3c66b975bc8f7

14 years agoMerge "bionic: on pthread_join(), avoid extra check in case we find the thread"
David Turner [Thu, 18 Mar 2010 23:42:49 +0000 (16:42 -0700)]
Merge "bionic: on pthread_join(), avoid extra check in case we find the thread"

14 years agoMerge "bionic: ftell() returns a long, not an int"
David Turner [Thu, 18 Mar 2010 23:35:42 +0000 (16:35 -0700)]
Merge "bionic: ftell() returns a long, not an int"

14 years agoAdd pthread_condattr_init/destroy/setpshared/getpshared
David 'Digit' Turner [Thu, 18 Mar 2010 21:07:42 +0000 (14:07 -0700)]
Add pthread_condattr_init/destroy/setpshared/getpshared

Note that this does not change the implementation of conditional variables
which still use shared futexes, independent on the flags being selected.

This will be fixed in a later patch, once our system is modified to use
pthread_condattr_setpshared(attr, PTHREAD_PROCESS_SHARED) properly.

Change-Id: I935de50964cd41f97a13dbfd6626d3407b0406c3

14 years agoAdded support for dladdr()
Matt Fischer [Thu, 31 Dec 2009 18:17:40 +0000 (12:17 -0600)]
Added support for dladdr()

dladdr() is a GNU extension function, which allows the caller to retrieve
symbol information for a specified memory address.  It is useful for things
like generating backtrace information at runtime.

Change-Id: I3a1def1a6c9c666d93e1e97b7d260dfa5b9b79a9

14 years agoMerge "x86 syscall system call implementation"
David Turner [Wed, 17 Mar 2010 21:07:27 +0000 (14:07 -0700)]
Merge "x86 syscall system call implementation"

14 years agoMerge "Fix pread()/pwrite() stubs"
David Turner [Wed, 17 Mar 2010 21:00:20 +0000 (14:00 -0700)]
Merge "Fix pread()/pwrite() stubs"

14 years agoFix indentation in pthread mutex implementation.
David 'Digit' Turner [Wed, 17 Mar 2010 18:25:46 +0000 (11:25 -0700)]
Fix indentation in pthread mutex implementation.

This is preliminary work to simplify later changes to support
private futexes.

Change-Id: I06750936a93747a5e3f5a10228cbdc29e39c528c

14 years agoMerge "bionic: remove unneeded variable from chk_realloc()"
David Turner [Wed, 17 Mar 2010 00:26:44 +0000 (17:26 -0700)]
Merge "bionic: remove unneeded variable from chk_realloc()"

14 years agoMerge "bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c"
David Turner [Wed, 17 Mar 2010 00:25:53 +0000 (17:25 -0700)]
Merge "bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c"

14 years agoMerge "improve readability of string: fix indentation and remove trailing spaces"
David Turner [Wed, 17 Mar 2010 00:25:04 +0000 (17:25 -0700)]
Merge "improve readability of string: fix indentation and remove trailing spaces"

14 years agoMerge "optimize delete/delete[] operators by removing unneeded branch"
David Turner [Wed, 17 Mar 2010 00:21:52 +0000 (17:21 -0700)]
Merge "optimize delete/delete[] operators by removing unneeded branch"

14 years agoRevert "bionic: pthread: use private futexes by default for mutexes and condvars"
Fabrice Di Meglio [Thu, 11 Mar 2010 22:47:47 +0000 (14:47 -0800)]
Revert "bionic: pthread: use private futexes by default for mutexes and condvars"

This reverts commit ba9c6f0989ae94778ba2b9f597adc827c9dc81e8.

14 years agobionic: pthread: use private futexes by default for mutexes and condvars
David 'Digit' Turner [Thu, 11 Mar 2010 00:44:08 +0000 (16:44 -0800)]
bionic: pthread: use private futexes by default for mutexes and condvars

Private futexes are a recent kernel addition: faster futexes that cannot be
shared between processes. This patch uses them by default, unless the PROCESS_SHARED
attribute flag is used when creating a mutex and/or conditional variable.

Also introduces pthread_condattr_init/destroy/setpshared/getpshared.

Change-Id: I3a0e2116f467072b046524cb5babc00e41057a53

14 years agoMerge "Only use NEON memcpy if __ARM_NEON__ is defined"
Colin Cross [Thu, 11 Mar 2010 02:14:25 +0000 (18:14 -0800)]
Merge "Only use NEON memcpy if __ARM_NEON__ is defined"

14 years agoOnly use NEON memcpy if __ARM_NEON__ is defined
Colin Cross [Wed, 10 Mar 2010 00:23:51 +0000 (16:23 -0800)]
Only use NEON memcpy if __ARM_NEON__ is defined

Change-Id: I32e6b9385d46efeec15dee8e395a82eef24ba3ea

14 years agoFix strtod security bug.
David 'Digit' Turner [Thu, 4 Mar 2010 19:51:42 +0000 (11:51 -0800)]
Fix strtod security bug.

To avoid introducing NULL checks everytime a Bigint computation
is performed, introduce a special value (BIGINT_INVALID) and only
check for it when absolutely needed (which means when the code
needs to access the Bigint's internal structure fields).

Change-Id: Ie3954523b0985b6a8cb62340802d8dcf63cbf16f

14 years agoMerge "Fix spurious DNS lookups in the C library."
David 'Digit' Turner [Tue, 9 Mar 2010 19:13:35 +0000 (11:13 -0800)]
Merge "Fix spurious DNS lookups in the C library."

14 years agoAdd an empty CleanSpec.mk
Jean-Baptiste Queru [Tue, 9 Mar 2010 02:04:02 +0000 (18:04 -0800)]
Add an empty CleanSpec.mk

Change-Id: Id233ea6f854253776f57e64196e262c5a057e654

14 years agoFix spurious DNS lookups in the C library.
David 'Digit' Turner [Mon, 8 Mar 2010 23:13:04 +0000 (15:13 -0800)]
Fix spurious DNS lookups in the C library.

The problem was that the 'defdname' field of res_state structure
was not properly initialized in __res_vinit(). This field is used
to store the default domain name, which is normally build from
calling gethostname() (see line 549 of res_init.c).

Unfortunately, in the typical Android case, gethostname() returns
an error (the hostname is configured) and a random stack string is
used later to build the DNS search list (see lines 556+ in res_init.c)

For the sake of illustration, let's say the search list is set to
a random value like 'xWLK'.

The end result is that when trying to result an unknown domain name
(e.g. 'www.ptn'), the query fails then the resolver tries to make a
new query with the DNS search list path(s) appended (e.g. 'www.ptn.xWLK').

The patch simply initializes 'defdname' to an empty string to avoid
this when the net.dns.search system property is not set.

Also contains whitespace/formatting fixes

14 years agoFix timezone management in the C library
David 'Digit' Turner [Fri, 5 Mar 2010 22:17:35 +0000 (14:17 -0800)]
Fix timezone management in the C library

Define 'timezone' and 'daylight' global variables that are already
defined in <time.h>

Properly update the 'tm_gmtoff' field in 'struct tm' values.

14 years agox86 syscall system call implementation
Bruce Beare [Thu, 4 Mar 2010 18:29:38 +0000 (10:29 -0800)]
x86 syscall system call implementation

14 years agoMerge "QUalcomm H.264 encoder support."
Gloria Wang [Thu, 4 Mar 2010 02:02:33 +0000 (18:02 -0800)]
Merge "QUalcomm H.264 encoder support."

14 years agoQUalcomm H.264 encoder support.
Gloria Wang [Thu, 4 Mar 2010 00:26:26 +0000 (16:26 -0800)]
QUalcomm H.264 encoder support.

14 years agoam 71fbeecd: (-s ours) am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs...
Dan Bornstein [Wed, 3 Mar 2010 19:07:09 +0000 (11:07 -0800)]
am 71fbeecd: (-s ours) am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

Merge commit '71fbeecdbd7bcf2282e4b032ceb2f6ead13dc9cb'

* commit '71fbeecdbd7bcf2282e4b032ceb2f6ead13dc9cb':
  Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

14 years agoam fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.
Dan Bornstein [Wed, 3 Mar 2010 18:51:34 +0000 (10:51 -0800)]
am fd5b1bb8: Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

Merge commit 'fd5b1bb85d0a971fd8469112a157380c4d3a146f' into eclair-mr2-plus-aosp

* commit 'fd5b1bb85d0a971fd8469112a157380c4d3a146f':
  Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

14 years agoAdd stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.
Dan Bornstein [Tue, 10 Nov 2009 20:15:33 +0000 (12:15 -0800)]
Add stdlib functions mbstowcs() and wcstombs(). DO NOT MERGE.

As with the other wchar functions in Bionic, these are really
minimally functional stubs.

14 years agobonic: libc: cpuacct support for setuid functions
Mike Chan [Tue, 2 Mar 2010 18:55:58 +0000 (10:55 -0800)]
bonic: libc: cpuacct support for setuid functions

Any of the setuid functions now updates /acct/uid/ with its own tid
before changing users. This is so we can properly account for cpu time
per uid.

Change-Id: I34186cf4d5228cac8439e582a9e26c01ef3011e4
Signed-off-by: Mike Chan <mike@android.com>
14 years agolibc: kernel: update pmem header with cache flush ioctl
Dima Zavin [Wed, 3 Mar 2010 00:10:21 +0000 (16:10 -0800)]
libc: kernel: update pmem header with cache flush ioctl

Change-Id: Ied08844035d4526175dcdcb7f219f9f90c4679d2
Signed-off-by: Dima Zavin <dima@android.com>
14 years agoadd sigaltstack syscall
Andrei Popescu [Thu, 25 Feb 2010 13:27:46 +0000 (13:27 +0000)]
add sigaltstack syscall

14 years agoFix pthread_sigmask() to return correct error values.
David 'Digit' Turner [Mon, 1 Mar 2010 19:30:40 +0000 (11:30 -0800)]
Fix pthread_sigmask() to return correct error values.

Before that, it returned -1 on error and set errno (not Posix)
After the patch, it returns the error code and leaves errno untouched.

14 years agoMerge "Implement support for RFC 3484 (address selection/sorting) in bionic. (The...
David Turner [Wed, 24 Feb 2010 18:04:09 +0000 (10:04 -0800)]
Merge "Implement support for RFC 3484 (address selection/sorting) in bionic.  (The Java changes required not to mess up the ordering from bionic will arrive in a later commit.) In particular, this will give us more correct behavior when on a 6to4 network, in that IPv4 will usually be preferred over 6to4."

14 years agoImplement support for RFC 3484 (address selection/sorting) in bionic. (The
Steinar H. Gunderson [Thu, 11 Feb 2010 14:44:55 +0000 (15:44 +0100)]
Implement support for RFC 3484 (address selection/sorting) in bionic.  (The
Java changes required not to mess up the ordering from bionic will arrive in a
later commit.) In particular, this will give us more correct behavior when on a
6to4 network, in that IPv4 will usually be preferred over 6to4.

Most of RFC 3484 is implemented -- what's not is rule 3 (avoid deprecated
addresses), 4 (prefer home addresses) and 7 (prefer native transport) as they
require low-level access to the kernel routing table via netlink. (glibc also
started out this way, and these rules are primarily useful in pretty obscure
circumstances, so we should be fine for the time being.)

Also, rule 9 (use longest matching prefix) has been modified so it does not try
to sort IPv4 addresses; given current IPv4 addressing practice these rules are
pretty much meaningless. Finally, I've added support for Teredo as a separate
label, with slightly lower preference than 6to4. (Vista puts the preference
below IPv4 by default. glibc puts the preference together with non-tunneled
IPv6.)

Note that this patch removes support for the "sortlist" directive in
resolv.conf; I've never seen it in actual use, it's irrelevant for Android
(since we don't use resolv.conf anyway), and it's not clear how it would be
implemented alongside RFC 3484.

14 years agobionic: syscalls: Add ioprio_set/ioprio_get syscall wrappers
San Mehat [Tue, 23 Feb 2010 23:55:29 +0000 (15:55 -0800)]
bionic: syscalls: Add ioprio_set/ioprio_get syscall wrappers

Signed-off-by: San Mehat <san@google.com>
14 years agoMerge "Merge memory checking functionality from sandbox"
Vladimir Chtchetkine [Wed, 17 Feb 2010 21:43:15 +0000 (13:43 -0800)]
Merge "Merge memory checking functionality from sandbox"

14 years agoMerge memory checking functionality from sandbox
Vladimir Chtchetkine [Fri, 12 Feb 2010 16:59:58 +0000 (08:59 -0800)]
Merge memory checking functionality from sandbox

Change-Id: I304c789a752c9f4af4944ca14b9bf1e7644da15a

14 years agoFix pread()/pwrite() stubs
Matt Fischer [Fri, 21 Aug 2009 20:45:17 +0000 (15:45 -0500)]
Fix pread()/pwrite() stubs

On ARM EABI, 64-bit function parameters must be aligned
to an even/odd register pair.  The weird way these stubs
were written (using separate lo/hi parameters) prevented
this alignment from being enforced by the compiler.

14 years agoMerge "Changed __get_h_errno linkage to "C"."
Niko Catania [Fri, 12 Feb 2010 21:46:31 +0000 (13:46 -0800)]
Merge "Changed __get_h_errno linkage to "C"."

14 years agoFix sem_post() behaviour to wake up multiple waiting threads.
David 'Digit' Turner [Fri, 12 Feb 2010 20:50:32 +0000 (12:50 -0800)]
Fix sem_post() behaviour to wake up multiple waiting threads.

14 years agoFix sem_trywait() implementation + update changelog.
David 'Digit' Turner [Fri, 12 Feb 2010 20:18:37 +0000 (12:18 -0800)]
Fix sem_trywait() implementation + update changelog.

14 years agoChanged __get_h_errno linkage to "C".
Nicolas Catania [Fri, 12 Feb 2010 19:33:53 +0000 (11:33 -0800)]
Changed __get_h_errno linkage to "C".

Bug:2441631

14 years agoFix android_id_from_name to accept "app_0" as a valid ID.
David 'Digit' Turner [Fri, 12 Feb 2010 19:35:38 +0000 (11:35 -0800)]
Fix android_id_from_name to accept "app_0" as a valid ID.

This fixes getpwnam and getpwgrp which returned NULL for "app_0".
"app_0" corresponds to uid/gid 10000 and is perfectly valid.

14 years agoFix debug output in the dynamic linker.
David 'Digit' Turner [Wed, 20 Jan 2010 20:36:51 +0000 (12:36 -0800)]
Fix debug output in the dynamic linker.

This provides a mini-printf implementation that reduces the
size of the dynamic linker by 25 KB, by preventing the drag of
formatting-related routines from the C library.

Also allow traces to be sent to the log, instead of stdout.

NOTE: You now need to modify Android.mk to enable/disable debug
      output.

14 years agobionic/linker: rename ba_prelink to ba_nonprelink
Iliyan Malchev [Wed, 10 Feb 2010 23:19:37 +0000 (15:19 -0800)]
bionic/linker: rename ba_prelink to ba_nonprelink

-- fixes b/2432550
-- ba_prelink is used to manage non-prelinked libraries, hence ba_nonprelink is
   a more appropriate name for it

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agoMerge "Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusio...
David Turner [Tue, 9 Feb 2010 22:50:57 +0000 (14:50 -0800)]
Merge "Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards"

14 years agoFix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards
David 'Digit' Turner [Tue, 9 Feb 2010 22:05:43 +0000 (14:05 -0800)]
Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards

14 years agoam 58060c50: am ee424e23: bionic: update processed kernel header a1026.h
Iliyan Malchev [Tue, 9 Feb 2010 17:32:25 +0000 (09:32 -0800)]
am 58060c50: am ee424e23: bionic: update processed kernel header a1026.h

Merge commit '58060c50bc4228a7d0253338cae0437211759959'

* commit '58060c50bc4228a7d0253338cae0437211759959':
  bionic: update processed kernel header a1026.h

14 years agoam ee424e23: bionic: update processed kernel header a1026.h
Iliyan Malchev [Tue, 9 Feb 2010 17:25:57 +0000 (09:25 -0800)]
am ee424e23: bionic: update processed kernel header a1026.h

Merge commit 'ee424e23c10c051ee4760177c85f6003ff20108c' into eclair-plus-aosp

* commit 'ee424e23c10c051ee4760177c85f6003ff20108c':
  bionic: update processed kernel header a1026.h

14 years agobionic: update processed kernel header a1026.h
Iliyan Malchev [Mon, 8 Feb 2010 23:57:09 +0000 (15:57 -0800)]
bionic: update processed kernel header a1026.h

Signed-off-by: Iliyan Malchev <malchev@google.com>
14 years agoCorrect generic memset implementation
Chris Dearman [Fri, 5 Feb 2010 23:13:55 +0000 (15:13 -0800)]
Correct generic memset implementation

Signed-off-by: Chris Dearman <chris@mips.com>
14 years agoGeneric memcpy should define MEMCOPY before including bcopy.c
Chris Dearman [Fri, 5 Feb 2010 23:13:55 +0000 (15:13 -0800)]
Generic memcpy should define MEMCOPY before including bcopy.c

Signed-off-by: Chris Dearman <chris@mips.com>
14 years agoam 1db87472: am ba8bfedd: reconcile main tree with open-source eclair
The Android Open Source Project [Fri, 5 Feb 2010 22:14:46 +0000 (14:14 -0800)]
am 1db87472: am ba8bfedd: reconcile main tree with open-source eclair

Merge commit '1db874720a58ff7e3684116d59ad08bc73db26d9'

* commit '1db874720a58ff7e3684116d59ad08bc73db26d9':
  android-2.1_r1 snapshot

14 years agobionic: equalize the <unknown> program name between ssp.c and libc_init_common.c
André Goddard Rosa [Fri, 5 Feb 2010 19:48:07 +0000 (17:48 -0200)]
bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c

... for the consistency sake.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
14 years agobionic: remove unneeded variable from chk_realloc()
André Goddard Rosa [Fri, 5 Feb 2010 18:32:56 +0000 (16:32 -0200)]
bionic: remove unneeded variable from chk_realloc()

... and simplify the generated code.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>