|
| 1 | +'use strict'; |
| 2 | +const common = require('../common'); |
| 3 | +const assert = require('assert'); |
| 4 | +const dgram = require('dgram'); |
| 5 | +const util = require('util'); |
| 6 | + |
| 7 | +if (common.inFreeBSDJail) { |
| 8 | + common.skip('in a FreeBSD jail'); |
| 9 | + return; |
| 10 | +} |
| 11 | + |
| 12 | +// All SunOS systems must be able to pass this manual test before the |
| 13 | +// following barrier can be removed: |
| 14 | +// $ socat UDP-RECVFROM:12356,ip-add-membership=224.0.0.115:127.0.0.1,fork \ |
| 15 | +// EXEC:hostname & |
| 16 | +// $ echo hi |socat STDIO \ |
| 17 | +// UDP4-DATAGRAM:224.0.0.115:12356,ip-multicast-if=127.0.0.1 |
| 18 | + |
| 19 | +if (common.isSunOS) { |
| 20 | + common.skip('SunOs is not correctly delivering to loopback multicast.'); |
| 21 | + return; |
| 22 | +} |
| 23 | + |
| 24 | +const networkInterfaces = require('os').networkInterfaces(); |
| 25 | +const Buffer = require('buffer').Buffer; |
| 26 | +const fork = require('child_process').fork; |
| 27 | +const MULTICASTS = { |
| 28 | + IPv4: ['224.0.0.115', '224.0.0.116', '224.0.0.117'], |
| 29 | + IPv6: ['ff02::1:115', 'ff02::1:116', 'ff02::1:117'] |
| 30 | +}; |
| 31 | +const LOOPBACK = { IPv4: '127.0.0.1', IPv6: '::1' }; |
| 32 | +const ANY = { IPv4: '0.0.0.0', IPv6: '::' }; |
| 33 | +const FAM = 'IPv4'; |
| 34 | + |
| 35 | +// Windows wont bind on multicasts so its filtering is by port. |
| 36 | +const PORTS = {}; |
| 37 | +for (let i = 0; i < MULTICASTS[FAM].length; i++) { |
| 38 | + PORTS[MULTICASTS[FAM][i]] = common.PORT + (common.isWindows ? i : 0); |
| 39 | +} |
| 40 | + |
| 41 | +const UDP = { IPv4: 'udp4', IPv6: 'udp6' }; |
| 42 | + |
| 43 | +const TIMEOUT = common.platformTimeout(5000); |
| 44 | +const NOW = Date.now(); |
| 45 | +const TMPL = (tail) => `${NOW} - ${tail}`; |
| 46 | + |
| 47 | +// Take the first non-internal interface as the other interface to isolate |
| 48 | +// from loopback. Ideally, this should check for whether or not this interface |
| 49 | +// and the loopback have the MULTICAST flag. |
| 50 | +const interfaceAddress = ((networkInterfaces) => { |
| 51 | + for (const name in networkInterfaces) { |
| 52 | + for (const localInterface of networkInterfaces[name]) { |
| 53 | + if (!localInterface.internal && localInterface.family === FAM) { |
| 54 | + let interfaceAddress = localInterface.address; |
| 55 | + // On Windows, IPv6 would need: `%${localInterface.scopeid}` |
| 56 | + if (FAM === 'IPv6') |
| 57 | + interfaceAddress += `${interfaceAddress}%${name}`; |
| 58 | + return interfaceAddress; |
| 59 | + } |
| 60 | + } |
| 61 | + } |
| 62 | +})(networkInterfaces); |
| 63 | + |
| 64 | +assert.ok(interfaceAddress); |
| 65 | + |
| 66 | +const messages = [ |
| 67 | + { tail: 'First message to send', mcast: MULTICASTS[FAM][0], rcv: true }, |
| 68 | + { tail: 'Second message to send', mcast: MULTICASTS[FAM][0], rcv: true }, |
| 69 | + { tail: 'Third message to send', mcast: MULTICASTS[FAM][1], rcv: true, |
| 70 | + newAddr: interfaceAddress }, |
| 71 | + { tail: 'Fourth message to send', mcast: MULTICASTS[FAM][2] }, |
| 72 | + { tail: 'Fifth message to send', mcast: MULTICASTS[FAM][1], rcv: true }, |
| 73 | + { tail: 'Sixth message to send', mcast: MULTICASTS[FAM][2], rcv: true, |
| 74 | + newAddr: LOOPBACK[FAM] } |
| 75 | +]; |
| 76 | + |
| 77 | + |
| 78 | +if (process.argv[2] !== 'child') { |
| 79 | + const IFACES = [ANY[FAM], interfaceAddress, LOOPBACK[FAM]]; |
| 80 | + const workers = {}; |
| 81 | + const listeners = MULTICASTS[FAM].length * 2; |
| 82 | + let listening = 0; |
| 83 | + let dead = 0; |
| 84 | + let i = 0; |
| 85 | + let done = 0; |
| 86 | + let timer = null; |
| 87 | + // Exit the test if it doesn't succeed within the TIMEOUT. |
| 88 | + timer = setTimeout(function() { |
| 89 | + console.error('[PARENT] Responses were not received within %d ms.', |
| 90 | + TIMEOUT); |
| 91 | + console.error('[PARENT] Skip'); |
| 92 | + |
| 93 | + killChildren(workers); |
| 94 | + common.skip('Check filter policy'); |
| 95 | + |
| 96 | + process.exit(1); |
| 97 | + }, TIMEOUT); |
| 98 | + |
| 99 | + // Launch the child processes. |
| 100 | + for (let i = 0; i < listeners; i++) { |
| 101 | + const IFACE = IFACES[i % IFACES.length]; |
| 102 | + const MULTICAST = MULTICASTS[FAM][i % MULTICASTS[FAM].length]; |
| 103 | + |
| 104 | + const messagesNeeded = messages.filter((m) => m.rcv && |
| 105 | + m.mcast === MULTICAST) |
| 106 | + .map((m) => TMPL(m.tail)); |
| 107 | + const worker = fork(process.argv[1], |
| 108 | + ['child', |
| 109 | + IFACE, |
| 110 | + MULTICAST, |
| 111 | + messagesNeeded.length, |
| 112 | + NOW]); |
| 113 | + workers[worker.pid] = worker; |
| 114 | + |
| 115 | + worker.messagesReceived = []; |
| 116 | + worker.messagesNeeded = messagesNeeded; |
| 117 | + |
| 118 | + // Handle the death of workers. |
| 119 | + worker.on('exit', function(code, signal) { |
| 120 | + // Don't consider this a true death if the worker has finished |
| 121 | + // successfully or if the exit code is 0. |
| 122 | + if (worker.isDone || code === 0) { |
| 123 | + return; |
| 124 | + } |
| 125 | + |
| 126 | + dead += 1; |
| 127 | + console.error('[PARENT] Worker %d died. %d dead of %d', |
| 128 | + worker.pid, |
| 129 | + dead, |
| 130 | + listeners); |
| 131 | + |
| 132 | + if (dead === listeners) { |
| 133 | + console.error('[PARENT] All workers have died.'); |
| 134 | + console.error('[PARENT] Fail'); |
| 135 | + |
| 136 | + killChildren(workers); |
| 137 | + |
| 138 | + process.exit(1); |
| 139 | + } |
| 140 | + }); |
| 141 | + |
| 142 | + worker.on('message', function(msg) { |
| 143 | + if (msg.listening) { |
| 144 | + listening += 1; |
| 145 | + |
| 146 | + if (listening === listeners) { |
| 147 | + // All child process are listening, so start sending. |
| 148 | + sendSocket.sendNext(); |
| 149 | + } |
| 150 | + } else if (msg.message) { |
| 151 | + worker.messagesReceived.push(msg.message); |
| 152 | + |
| 153 | + if (worker.messagesReceived.length === worker.messagesNeeded.length) { |
| 154 | + done += 1; |
| 155 | + worker.isDone = true; |
| 156 | + console.error('[PARENT] %d received %d messages total.', |
| 157 | + worker.pid, |
| 158 | + worker.messagesReceived.length); |
| 159 | + } |
| 160 | + |
| 161 | + if (done === listeners) { |
| 162 | + console.error('[PARENT] All workers have received the ' + |
| 163 | + 'required number of ' + |
| 164 | + 'messages. Will now compare.'); |
| 165 | + |
| 166 | + Object.keys(workers).forEach(function(pid) { |
| 167 | + const worker = workers[pid]; |
| 168 | + |
| 169 | + let count = 0; |
| 170 | + |
| 171 | + worker.messagesReceived.forEach(function(buf) { |
| 172 | + for (let i = 0; i < worker.messagesNeeded.length; ++i) { |
| 173 | + if (buf.toString() === worker.messagesNeeded[i]) { |
| 174 | + count++; |
| 175 | + break; |
| 176 | + } |
| 177 | + } |
| 178 | + }); |
| 179 | + |
| 180 | + console.error('[PARENT] %d received %d matching messages.', |
| 181 | + worker.pid, |
| 182 | + count); |
| 183 | + |
| 184 | + assert.strictEqual(count, worker.messagesNeeded.length, |
| 185 | + 'A worker received ' + |
| 186 | + 'an invalid multicast message'); |
| 187 | + }); |
| 188 | + |
| 189 | + clearTimeout(timer); |
| 190 | + console.error('[PARENT] Success'); |
| 191 | + killChildren(workers); |
| 192 | + } |
| 193 | + } |
| 194 | + }); |
| 195 | + } |
| 196 | + |
| 197 | + const sendSocket = dgram.createSocket({ |
| 198 | + type: UDP[FAM], |
| 199 | + reuseAddr: true |
| 200 | + }); |
| 201 | + |
| 202 | + // Don't bind the address explicitly when sending and start with |
| 203 | + // the OSes default multicast interface selection. |
| 204 | + sendSocket.bind(common.PORT, ANY[FAM]); |
| 205 | + sendSocket.on('listening', function() { |
| 206 | + console.error(`outgoing iface ${interfaceAddress}`); |
| 207 | + }); |
| 208 | + |
| 209 | + sendSocket.on('close', function() { |
| 210 | + console.error('[PARENT] sendSocket closed'); |
| 211 | + }); |
| 212 | + |
| 213 | + sendSocket.sendNext = function() { |
| 214 | + const msg = messages[i++]; |
| 215 | + |
| 216 | + if (!msg) { |
| 217 | + sendSocket.close(); |
| 218 | + return; |
| 219 | + } |
| 220 | + console.error(TMPL(NOW, msg.tail)); |
| 221 | + const buf = Buffer.from(TMPL(msg.tail)); |
| 222 | + if (msg.newAddr) { |
| 223 | + console.error(`changing outgoing multicast ${msg.newAddr}`); |
| 224 | + sendSocket.setMulticastInterface(msg.newAddr); |
| 225 | + } |
| 226 | + sendSocket.send( |
| 227 | + buf, |
| 228 | + 0, |
| 229 | + buf.length, |
| 230 | + PORTS[msg.mcast], |
| 231 | + msg.mcast, |
| 232 | + function(err) { |
| 233 | + assert.ifError(err); |
| 234 | + console.error('[PARENT] sent %s to %s:%s', |
| 235 | + util.inspect(buf.toString()), |
| 236 | + msg.mcast, PORTS[msg.mcast]); |
| 237 | + |
| 238 | + process.nextTick(sendSocket.sendNext); |
| 239 | + } |
| 240 | + ); |
| 241 | + }; |
| 242 | + |
| 243 | + function killChildren(children) { |
| 244 | + for (const i in children) |
| 245 | + children[i].kill(); |
| 246 | + } |
| 247 | +} |
| 248 | + |
| 249 | +if (process.argv[2] === 'child') { |
| 250 | + const IFACE = process.argv[3]; |
| 251 | + const MULTICAST = process.argv[4]; |
| 252 | + const NEEDEDMSGS = Number(process.argv[5]); |
| 253 | + const SESSION = Number(process.argv[6]); |
| 254 | + const receivedMessages = []; |
| 255 | + |
| 256 | + console.error(`pid ${process.pid} iface ${IFACE} MULTICAST ${MULTICAST}`); |
| 257 | + const listenSocket = dgram.createSocket({ |
| 258 | + type: UDP[FAM], |
| 259 | + reuseAddr: true |
| 260 | + }); |
| 261 | + |
| 262 | + listenSocket.on('message', function(buf, rinfo) { |
| 263 | + // Examine udp messages only when they were sent by the parent. |
| 264 | + if (!buf.toString().startsWith(SESSION)) return; |
| 265 | + |
| 266 | + console.error('[CHILD] %s received %s from %j', |
| 267 | + process.pid, |
| 268 | + util.inspect(buf.toString()), |
| 269 | + rinfo); |
| 270 | + |
| 271 | + receivedMessages.push(buf); |
| 272 | + |
| 273 | + let closecb; |
| 274 | + |
| 275 | + if (receivedMessages.length === NEEDEDMSGS) { |
| 276 | + listenSocket.close(); |
| 277 | + closecb = () => process.exit(); |
| 278 | + } |
| 279 | + |
| 280 | + process.send({ message: buf.toString() }, closecb); |
| 281 | + }); |
| 282 | + |
| 283 | + |
| 284 | + listenSocket.on('listening', function() { |
| 285 | + listenSocket.addMembership(MULTICAST, IFACE); |
| 286 | + process.send({ listening: true }); |
| 287 | + }); |
| 288 | + |
| 289 | + if (common.isWindows) |
| 290 | + listenSocket.bind(PORTS[MULTICAST], ANY[FAM]); |
| 291 | + else |
| 292 | + listenSocket.bind(common.PORT, MULTICAST); |
| 293 | +} |
0 commit comments