blob: b466e423b18a6b9eec06cfbeab1f8b7c40d91911 [file] [log] [blame]
San Mehatd1830422010-01-15 08:02:39 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
San Mehat5c1b8af2010-01-21 15:37:10 -080019#include <signal.h>
San Mehatd1830422010-01-15 08:02:39 -080020#include <errno.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/types.h>
San Mehat5c1b8af2010-01-21 15:37:10 -080024#include <sys/wait.h>
San Mehatd1830422010-01-15 08:02:39 -080025
26#include <fcntl.h>
27#include <dirent.h>
28
29#define LOG_TAG "Netd"
30
31#include "cutils/log.h"
32
33#include "CommandListener.h"
34#include "NetlinkManager.h"
Brad Fitzpatrick007e9872010-10-27 11:39:52 -070035#include "DnsProxyListener.h"
Robert Greenwalt745e09f2012-03-29 14:45:54 -070036#include "MDnsSdListener.h"
San Mehatd1830422010-01-15 08:02:39 -080037
38static void coldboot(const char *path);
San Mehat5c1b8af2010-01-21 15:37:10 -080039static void sigchld_handler(int sig);
Selim Gurunc1044d42012-03-09 08:59:28 -080040static void blockSigpipe();
San Mehatd1830422010-01-15 08:02:39 -080041
42int main() {
43
44 CommandListener *cl;
45 NetlinkManager *nm;
Brad Fitzpatrick007e9872010-10-27 11:39:52 -070046 DnsProxyListener *dpl;
Robert Greenwalt745e09f2012-03-29 14:45:54 -070047 MDnsSdListener *mdnsl;
San Mehatd1830422010-01-15 08:02:39 -080048
Steve Block08b58b62012-01-04 20:05:11 +000049 ALOGI("Netd 1.0 starting");
San Mehatd1830422010-01-15 08:02:39 -080050
San Mehatf1c368a2010-01-27 17:13:32 -080051// signal(SIGCHLD, sigchld_handler);
Selim Gurunc1044d42012-03-09 08:59:28 -080052 blockSigpipe();
San Mehat5c1b8af2010-01-21 15:37:10 -080053
San Mehatd1830422010-01-15 08:02:39 -080054 if (!(nm = NetlinkManager::Instance())) {
Steve Block5ea0c052012-01-06 19:18:11 +000055 ALOGE("Unable to create NetlinkManager");
San Mehatd1830422010-01-15 08:02:39 -080056 exit(1);
57 };
58
59
60 cl = new CommandListener();
61 nm->setBroadcaster((SocketListener *) cl);
62
63 if (nm->start()) {
Steve Block5ea0c052012-01-06 19:18:11 +000064 ALOGE("Unable to start NetlinkManager (%s)", strerror(errno));
San Mehatd1830422010-01-15 08:02:39 -080065 exit(1);
66 }
67
Brad Fitzpatrick007e9872010-10-27 11:39:52 -070068 // Set local DNS mode, to prevent bionic from proxying
69 // back to this service, recursively.
70 setenv("ANDROID_DNS_MODE", "local", 1);
71 dpl = new DnsProxyListener();
72 if (dpl->startListener()) {
Steve Block5ea0c052012-01-06 19:18:11 +000073 ALOGE("Unable to start DnsProxyListener (%s)", strerror(errno));
Brad Fitzpatrick007e9872010-10-27 11:39:52 -070074 exit(1);
75 }
76
Robert Greenwalt745e09f2012-03-29 14:45:54 -070077 mdnsl = new MDnsSdListener();
78 if (mdnsl->startListener()) {
79 ALOGE("Unable to start MDnsSdListener (%s)", strerror(errno));
80 exit(1);
81 }
San Mehatd1830422010-01-15 08:02:39 -080082 /*
83 * Now that we're up, we can respond to commands
84 */
85 if (cl->startListener()) {
Steve Block5ea0c052012-01-06 19:18:11 +000086 ALOGE("Unable to start CommandListener (%s)", strerror(errno));
San Mehatd1830422010-01-15 08:02:39 -080087 exit(1);
88 }
89
90 // Eventually we'll become the monitoring thread
91 while(1) {
92 sleep(1000);
93 }
94
Steve Block08b58b62012-01-04 20:05:11 +000095 ALOGI("Netd exiting");
San Mehatd1830422010-01-15 08:02:39 -080096 exit(0);
97}
98
99static void do_coldboot(DIR *d, int lvl)
100{
101 struct dirent *de;
102 int dfd, fd;
103
104 dfd = dirfd(d);
105
106 fd = openat(dfd, "uevent", O_WRONLY);
107 if(fd >= 0) {
108 write(fd, "add\n", 4);
109 close(fd);
110 }
111
112 while((de = readdir(d))) {
113 DIR *d2;
114
115 if (de->d_name[0] == '.')
116 continue;
117
118 if (de->d_type != DT_DIR && lvl > 0)
119 continue;
120
121 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
122 if(fd < 0)
123 continue;
124
125 d2 = fdopendir(fd);
126 if(d2 == 0)
127 close(fd);
128 else {
129 do_coldboot(d2, lvl + 1);
130 closedir(d2);
131 }
132 }
133}
134
135static void coldboot(const char *path)
136{
137 DIR *d = opendir(path);
138 if(d) {
139 do_coldboot(d, 0);
140 closedir(d);
141 }
142}
San Mehat5c1b8af2010-01-21 15:37:10 -0800143
144static void sigchld_handler(int sig) {
145 pid_t pid = wait(NULL);
Steve Block7b984e32011-12-20 16:22:42 +0000146 ALOGD("Child process %d exited", pid);
San Mehat5c1b8af2010-01-21 15:37:10 -0800147}
Selim Gurunc1044d42012-03-09 08:59:28 -0800148
149static void blockSigpipe()
150{
151 sigset_t mask;
152
153 sigemptyset(&mask);
154 sigaddset(&mask, SIGPIPE);
155 if (sigprocmask(SIG_BLOCK, &mask, NULL) != 0)
156 ALOGW("WARNING: SIGPIPE not blocked\n");
157}