summaryrefslogtreecommitdiffstats
path: root/libcutils
Commit message (Collapse)AuthorAgeFilesLines
* Support full 32 bits for socket tags.Jeff Sharkey2012-05-021-3/+1
| | | | | Bug: 5321184 Change-Id: Iabd668674e60626caafc9b66b29fdbddc3724f58
* Add more SP_ constantsGlenn Kasten2012-04-231-14/+80
| | | | Change-Id: I52c8ea33b9b915fc08546f2ca0b191391f58506b
* Scheduling group cleanup - add comment, SP_DEFAULTGlenn Kasten2012-04-201-0/+21
| | | | | | | | Also tid == 0 maps to gettid() on platforms that support it. This is needed by mediaserver code that was formerly using the old C++ API. Change-Id: I8baaa3e42315c9b924cec26b6da01e7cb69e0078
* cutils: return the remote uid on netlink recv failureGeremy Condra2012-03-291-6/+25
| | | | | | | | This change adds a layer of indirection to uevent's uevent_kernel_multicast_recv, allowing dependent code to get the remote endpoint if desired. Change-Id: If2f00708a1dd6196c415b1ebc2a7eeb72399a90e
* Provide portable wrapper for qsort_r.Jeff Brown2012-03-192-0/+85
| | | | | | | | | qsort_r() is declared differently on BSD and GNU libc and may be absent on other platforms. Provide qsort_r_compat() which should work everywhere. Change-Id: I17a9026573b1ed971ff7d79895e7eb41ba108807
* Add missing includes.Jeff Brown2012-03-192-0/+2
| | | | | | Caused warnings about implicitly defined malloc() and sprintf(). Change-Id: Ia56309adc11caf5801ffd88e374c512b785cfd93
* Merge "cutils: str_parms: when deleting entry, need to also remove key"Dima Zavin2012-03-191-9/+44
|\
| * cutils: str_parms: when deleting entry, need to also remove keyDima Zavin2012-03-141-9/+44
| | | | | | | | | | | | | | | | | | | | When removing one entry, we can't just remove it from the map since key will not be freed. So, instead, search through the map for the key and free it once it is found. Change-Id: Id745c166a4acc5ea25f6d6cdbfe4f8fbc21cbbb3 Reported-by: Xin Qian <xqian@marvell.com> Signed-off-by: Dima Zavin <dima@android.com>
* | Merge "Add get_sched_policy_name() and use in ps and top"Glenn Kasten2012-03-151-0/+12
|\ \ | |/ |/|
| * Add get_sched_policy_name() and use in ps and topGlenn Kasten2012-03-151-0/+12
| | | | | | | | | | | | | | This will make it easier to add additional policies (cgroups) if needed. Also added comments to the sched_policy APIs. Change-Id: I33ce1cc4deae10983241f7391294b7a512d2c47c
* | cutils: str_parms: free the key if the value was replaced during create/addDima Zavin2012-03-141-1/+5
|/ | | | | | Change-Id: I9f31da62f10f78ed11693a7c04e2be29b0790c93 Reported-by: Xin Qian <xqian@marvell.com> Signed-off-by: Dima Zavin <dima@android.com>
* Merge "Added rules to build 64-bit libraries: lib64cutils.a and lib64log.a"Andrew Hsieh2012-03-131-0/+11
|\
| * Added rules to build 64-bit libraries: lib64cutils.a and lib64log.aAndrew Hsieh2012-03-011-0/+11
| | | | | | | | | | | | | | | | | | | | | | Both libraries are needed to build four shared libraries in 64-bit for 64-bit emulator with "-gpu on" lib64OpenglRender.so lib64EGL_translator.so lib64GLES_CM_translator.so lib64GLES_V2_translator.so Change-Id: If57f72d4661a74f1d5e537568881f39132e0b43d
* | Revert "cutils: str_parms: make test executable build for host instead"Dima Zavin2012-03-121-2/+2
| | | | | | | | This reverts commit 7d31e6e53392ca6ce7fbe8f17efbeda8b0e91ccf.
* | cutils: str_parms: make test executable build for host insteadDima Zavin2012-03-121-2/+2
| | | | | | | | | | Change-Id: I711e03aaf859107c697c6dcb82e0ab83e94570ba Signed-off-by: Dima Zavin <dima@android.com>
* | cutils: str_parms: test str_parms_add_str tooDima Zavin2012-03-121-0/+1
| | | | | | | | | | Change-Id: I93f0e577aff6b8ff23a44e29f9942a26545b6dc8 Signed-off-by: Dima Zavin <dima@android.com>
* | cutils: str_parms: need to also dup the key when adding to hashDima Zavin2012-03-121-4/+7
|/ | | | | Change-Id: Iabdd2061cbc36c6f4d4eb6e46bd757b5b52e0027 Signed-off-by: Dima Zavin <dima@android.com>
* libcutils: Use proper private header to access C library's <time.h> extensionDavid 'Digit' Turner2012-01-131-1/+8
| | | | | | | | The strftime_tz() function is not a standard C library function and should not appear in <time.h>. Instead, it is being moved to <bionic_time.h>, a private header only available to platform libraries. Change-Id: I4dc18939b9380725dfaa20c9e417296363bc52f4
* Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGESteve Block2012-01-085-7/+7
| | | | | Bug: 5449033 Change-Id: Ibcffdcf620ebae1c389446ce8e9d908f11ac039c
* Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGESteve Block2012-01-053-23/+23
| | | | | Bug: 5449033 Change-Id: I1e070511b6a538e9f1c94657356437a457d58882
* Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGESteve Block2012-01-045-15/+15
| | | | | Bug: 5449033 Change-Id: I4951baa981f09a84ce483e3d1bd0f9ebe009035f
* Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGESteve Block2012-01-034-28/+28
| | | | | Bug: 5449033 Change-Id: I9244d927f14c750cd359ebffb1fc1c355a755d5a
* Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGESteve Block2011-10-264-18/+18
| | | | | Bug: 5449033 Change-Id: Ib453f869977a6e909095a578bbf0420851f887d2
* qtaguid: shhhh. LOGI -> LOGVJP Abgrall2011-09-221-5/+7
| | | | | | | Less verbose output. Bug: 5360129 Change-Id: Id32a7c61d51b6a16f50a5c8bcc75a2feaa0e34b1
* libcutils: qtaguid: Support new functions, add tag resource tracking.JP Abgrall2011-09-141-22/+132
| | | | | | | | | | | | | | | | | | | | | | | * Add support for deleteTagData(tag, uid) setCounterSet(counterSetNum, uid) setPacifier(on) * Add resource tracking (If only kernel process termination had a hook) Because the xt_qtaguid netfilter module needs to keep track of tagged sockets, it needs a way to know when the process owning the socket has died. Normally the app will untag the sockets. But not on crash. So the process opens the qtaguid misc dev, which is closed on crash, at which point the xt_qtaguid can force-untag the processes sockets, and thus allowing their refcount to go down and release them. * Add pacifier support Add function to enable/disable pacification of the xt_qtaguid kernel module. (mostly for debugging) Change-Id: I7f2228e65208046dd37ec1c7407ee307d5ba9b99
* cutils: only build klog for targetDima Zavin2011-09-041-2/+1
| | | | | Change-Id: Id524753ca5e7271a498fdf03179bba3fdaed5729 Signed-off-by: Dima Zavin <dima@android.com>
* init/cutils: move list utility code to cutils from initDima Zavin2011-09-022-0/+38
| | | | | Change-Id: I357ceee813700297d8343159f22a07659e768d41 Signed-off-by: Dima Zavin <dima@android.com>
* init/cutils: move kernel logging interface to libcutils from initDima Zavin2011-09-022-0/+61
| | | | | Change-Id: Ia0f91b1fcd6cae69d76bf3dd841340958db938a8 Signed-off-by: Dima Zavin <dima@android.com>
* libcutils/init: move uevent socket opening code to libcutilsDima Zavin2011-09-021-0/+31
| | | | | Change-Id: I90adf78c0eb6185505f2bf7b62e96e25ab918345 Signed-off-by: Dima Zavin <dima@android.com>
* libcutils: qtaguid: support socket untagging, return errors.Ashish Sharma2011-08-071-13/+36
| | | | | | | | | - Enable and rename qtaguid_tagSocket() - Add qtaguid_untagSocket() - Return kernel errors to caller Change-Id: I8e33c8832b7f6b24ed9081f36ce1ea9ae6b099c0 Signed-off-by: Ashish Sharma <ashishsharma@google.com>
* Remove the simulator target from all makefiles.Jeff Brown2011-07-111-16/+0
| | | | | | Bug: 5010576 Change-Id: I2fcf31af681d92880e5d31a46d5f6777f7ca1977
* Move qtaguid.c from common sources in Android.mk to fix windows build.Ashish Sharma2011-07-101-3/+2
| | | | Change-Id: I0a2d1615108b6c10064b3635d05699748a1341a4
* Add communication support for xt_qtaguid(network traffic accounting) kernel ↵Ashish Sharma2011-07-082-1/+46
| | | | | | module. Change-Id: Ie0fb5b593987c53ee6f906fe6e0caab5a581d5a1
* Merge "Config utils improvement"Eric Laurent2011-05-271-0/+12
|\
| * Config utils improvementEric Laurent2011-05-261-0/+12
| | | | | | | | | | | | Added a function to free resources allocated by config node tree. Change-Id: I2ee8ae642899ec4501fa6e490c5be7efaa2d738e
* | Tracking merge of dalvik-dev to masterjeffhao2011-05-272-0/+45
| | | | | | | | | | | | | | | | | | | | Reordered bootclasspath to allow verification of all framework methods. git cherry-pick --no-commit ec164a0170955fe63106c2576a65bc4ffb1df425 Address CVE-2011-1090. git cherry-pick --no-commit 3365288d3c00072689cd9d733e055561cadc87b5 Change-Id: I6a89bc600ced06a0cb84ae1670cb7a6ea39de9c8
* | Merge "Crypto changes for devices that don't write ext4 fs on wipe"Ken Sumrall2011-05-262-1/+68
|\ \ | |/ |/|
| * Crypto changes for devices that don't write ext4 fs on wipeKen Sumrall2011-05-262-1/+68
| | | | | | | | | | | | | | This adds a new function to libcutils, partition_wiped(). This is used to determine if a partition is wiped. Change-Id: Ibb388976c6b5bd3923b62d8f79b2b97748abf6c1
* | rename uevent_checked_recv to uevent_kernel_multicast_recvNick Kralevich2011-05-111-1/+1
|/ | | | Change-Id: I1839627490080efcbb7269699709064856312f8b
* libcutils: build str_parms test for target instead of hostDima Zavin2011-04-271-2/+2
| | | | | Change-Id: Ic1cd1c26b86b051c25db2521bd90b58731e29135 Signed-off-by: Dima Zavin <dima@android.com>
* Merge "libcutils: add a simple string parameter parsing ("a=b;c=d;") helper ↵Dima Zavin2011-04-272-1/+339
|\ | | | | | | utils"
| * libcutils: add a simple string parameter parsing ("a=b;c=d;") helper utilsDima Zavin2011-04-202-1/+339
| | | | | | | | | | Change-Id: Ifabeb75550fa6e351434e6e6d036b19331daf6c1 Signed-off-by: Dima Zavin <dima@android.com>
* | Merge "libcutils: hashmap: save next pointer in forEach before calling callback"Dima Zavin2011-04-271-1/+2
|\ \ | |/
| * libcutils: hashmap: save next pointer in forEach before calling callbackDima Zavin2011-04-191-1/+2
| | | | | | | | | | | | | | | | If the callback passed to forEach tries to remove the element it was passed, there's a use-after-free of the entry pointer in forEach. Change-Id: Ia364b4775c9c55780b23f683b30cbff511b7f944 Signed-off-by: Dima Zavin <dima@android.com>
| * Merge "Fix a race in system properties."Brad Fitzpatrick2011-03-141-39/+1
| |\
| | * Fix a race in system properties.Brad Fitzpatrick2011-03-101-39/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This now passes: $ adb shell am instrument -w -e class android.os.SystemPropertiesTest \ com.android.frameworks.coretests.systemproperties/android.test.InstrumentationTestRunner (which tests setting and re-reading back system properties in a loop) This patch depends on I110b653a which moves property setting from libcutils into bionic. Bug: 3511230 Change-Id: Iee1ca9b7defd6060510a01f40fbe63ba4c96eb8d
* | | resolved conflicts for merge of 2baeb898 to honeycomb-plus-aospNick Kralevich2011-04-272-1/+71
|\ \ \ | | | | | | | | | | | | Change-Id: Ib3169b3a36aa13ef413da624355b1737e9b76fd9
| * | | Fold uevent message origin checking from init into libcutils.Vernon Tang2011-04-282-1/+71
| | | | | | | | | | | | | | | | Change-Id: I7cbc0cb840d1b4962e6c360fdad9a9c0ce20e87b
* | | | am 03752be0: am 0c297f5e: Merge "Revert "Fold uevent message origin checking ↵Nick Kralevich2011-04-272-71/+0
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | from init into libcutils."" * commit '03752be0a437d12e19ac73ebe23385fe6f756e2c': Revert "Fold uevent message origin checking from init into libcutils."
| * | | Revert "Fold uevent message origin checking from init into libcutils."Nick Kralevich2011-04-272-71/+0
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 8405ec0e7562a370174d9973dd94984c47e49c36. The original change does not compile.