blob: e3fd4db671b5207e07eeebfc91fee307fa87648f [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2008, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
Glenn Kasten33df5292011-12-19 14:09:14 -080018#define LOG_TAG "mediaserver"
Glenn Kastenb4d30742012-03-13 14:46:23 -070019//#define LOG_NDEBUG 0
Glenn Kasten33df5292011-12-19 14:09:14 -080020
Glenn Kasten6f1c1912013-01-18 15:31:41 -080021#include <fcntl.h>
22#include <sys/prctl.h>
23#include <sys/wait.h>
Mathias Agopian75624082009-05-19 19:08:10 -070024#include <binder/IPCThreadState.h>
25#include <binder/ProcessState.h>
26#include <binder/IServiceManager.h>
Glenn Kasten6f1c1912013-01-18 15:31:41 -080027#include <cutils/properties.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080028#include <utils/Log.h>
Glenn Kastenfeb21792013-02-20 16:47:28 -080029#include "RegisterExtensions.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080030
Glenn Kastenb4d30742012-03-13 14:46:23 -070031// from LOCAL_C_INCLUDES
32#include "AudioFlinger.h"
33#include "CameraService.h"
Glenn Kasten6f1c1912013-01-18 15:31:41 -080034#include "MediaLogService.h"
Glenn Kastenb4d30742012-03-13 14:46:23 -070035#include "MediaPlayerService.h"
Marco Nelissen1438f0b2016-05-13 10:43:19 -070036#include "MediaUtils.h"
Glenn Kastenb4d30742012-03-13 14:46:23 -070037#include "AudioPolicyService.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080038
39using namespace android;
40
Marco Nelissen1438f0b2016-05-13 10:43:19 -070041int main(int argc __unused, char** argv)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080042{
Marco Nelissen1438f0b2016-05-13 10:43:19 -070043 limitProcessMemory(
44 "ro.media.maxmem", /* property that defines limit */
45 SIZE_MAX, /* upper limit in bytes */
46 65 /* upper limit as percentage of physical RAM */);
47
Glenn Kasten879d5032012-10-17 12:16:50 -070048 signal(SIGPIPE, SIG_IGN);
Glenn Kasten6f1c1912013-01-18 15:31:41 -080049 char value[PROPERTY_VALUE_MAX];
50 bool doLog = (property_get("ro.test_harness", value, "0") > 0) && (atoi(value) == 1);
51 pid_t childPid;
52 // FIXME The advantage of making the process containing media.log service the parent process of
53 // the process that contains all the other real services, is that it allows us to collect more
54 // detailed information such as signal numbers, stop and continue, resource usage, etc.
55 // But it is also more complex. Consider replacing this by independent processes, and using
56 // binder on death notification instead.
57 if (doLog && (childPid = fork()) != 0) {
58 // media.log service
59 //prctl(PR_SET_NAME, (unsigned long) "media.log", 0, 0, 0);
60 // unfortunately ps ignores PR_SET_NAME for the main thread, so use this ugly hack
61 strcpy(argv[0], "media.log");
62 sp<ProcessState> proc(ProcessState::self());
63 MediaLogService::instantiate();
64 ProcessState::self()->startThreadPool();
65 for (;;) {
66 siginfo_t info;
67 int ret = waitid(P_PID, childPid, &info, WEXITED | WSTOPPED | WCONTINUED);
68 if (ret == EINTR) {
69 continue;
70 }
71 if (ret < 0) {
72 break;
73 }
74 char buffer[32];
75 const char *code;
76 switch (info.si_code) {
77 case CLD_EXITED:
78 code = "CLD_EXITED";
79 break;
80 case CLD_KILLED:
81 code = "CLD_KILLED";
82 break;
83 case CLD_DUMPED:
84 code = "CLD_DUMPED";
85 break;
86 case CLD_STOPPED:
87 code = "CLD_STOPPED";
88 break;
89 case CLD_TRAPPED:
90 code = "CLD_TRAPPED";
91 break;
92 case CLD_CONTINUED:
93 code = "CLD_CONTINUED";
94 break;
95 default:
96 snprintf(buffer, sizeof(buffer), "unknown (%d)", info.si_code);
97 code = buffer;
98 break;
99 }
100 struct rusage usage;
101 getrusage(RUSAGE_CHILDREN, &usage);
102 ALOG(LOG_ERROR, "media.log", "pid %d status %d code %s user %ld.%03lds sys %ld.%03lds",
103 info.si_pid, info.si_status, code,
104 usage.ru_utime.tv_sec, usage.ru_utime.tv_usec / 1000,
105 usage.ru_stime.tv_sec, usage.ru_stime.tv_usec / 1000);
106 sp<IServiceManager> sm = defaultServiceManager();
107 sp<IBinder> binder = sm->getService(String16("media.log"));
108 if (binder != 0) {
109 Vector<String16> args;
110 binder->dump(-1, args);
111 }
112 switch (info.si_code) {
113 case CLD_EXITED:
114 case CLD_KILLED:
115 case CLD_DUMPED: {
116 ALOG(LOG_INFO, "media.log", "exiting");
117 _exit(0);
118 // not reached
119 }
120 default:
121 break;
122 }
123 }
124 } else {
125 // all other services
126 if (doLog) {
127 prctl(PR_SET_PDEATHSIG, SIGKILL); // if parent media.log dies before me, kill me also
128 setpgid(0, 0); // but if I die first, don't kill my parent
129 }
130 sp<ProcessState> proc(ProcessState::self());
131 sp<IServiceManager> sm = defaultServiceManager();
132 ALOGI("ServiceManager: %p", sm.get());
133 AudioFlinger::instantiate();
134 MediaPlayerService::instantiate();
135 CameraService::instantiate();
136 AudioPolicyService::instantiate();
Glenn Kastenfeb21792013-02-20 16:47:28 -0800137 registerExtensions();
Glenn Kasten6f1c1912013-01-18 15:31:41 -0800138 ProcessState::self()->startThreadPool();
139 IPCThreadState::self()->joinThreadPool();
140 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800141}