]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/tracker.ts
add client overrides to nginx configuration (#3297)
[github/Chocobozzz/PeerTube.git] / server / controllers / tracker.ts
1 import * as bitTorrentTracker from 'bittorrent-tracker'
2 import * as express from 'express'
3 import * as http from 'http'
4 import * as proxyAddr from 'proxy-addr'
5 import { Server as WebSocketServer } from 'ws'
6 import { Redis } from '@server/lib/redis'
7 import { logger } from '../helpers/logger'
8 import { CONFIG } from '../initializers/config'
9 import { TRACKER_RATE_LIMITS } from '../initializers/constants'
10 import { VideoFileModel } from '../models/video/video-file'
11 import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
12
13 const TrackerServer = bitTorrentTracker.Server
14
15 const trackerRouter = express.Router()
16
17 let peersIps = {}
18 let peersIpInfoHash = {}
19 runPeersChecker()
20
21 const trackerServer = new TrackerServer({
22 http: false,
23 udp: false,
24 ws: false,
25 dht: false,
26 filter: async function (infoHash, params, cb) {
27 if (CONFIG.TRACKER.ENABLED === false) {
28 return cb(new Error('Tracker is disabled on this instance.'))
29 }
30
31 let ip: string
32
33 if (params.type === 'ws') {
34 ip = params.socket.ip
35 } else {
36 ip = params.httpReq.ip
37 }
38
39 const key = ip + '-' + infoHash
40
41 peersIps[ip] = peersIps[ip] ? peersIps[ip] + 1 : 1
42 peersIpInfoHash[key] = peersIpInfoHash[key] ? peersIpInfoHash[key] + 1 : 1
43
44 if (CONFIG.TRACKER.REJECT_TOO_MANY_ANNOUNCES && peersIpInfoHash[key] > TRACKER_RATE_LIMITS.ANNOUNCES_PER_IP_PER_INFOHASH) {
45 return cb(new Error(`Too many requests (${peersIpInfoHash[key]} of ip ${ip} for torrent ${infoHash}`))
46 }
47
48 try {
49 if (CONFIG.TRACKER.PRIVATE === false) return cb()
50
51 const videoFileExists = await VideoFileModel.doesInfohashExistCached(infoHash)
52 if (videoFileExists === true) return cb()
53
54 const playlistExists = await VideoStreamingPlaylistModel.doesInfohashExistCached(infoHash)
55 if (playlistExists === true) return cb()
56
57 cb(new Error(`Unknown infoHash ${infoHash} requested by ip ${ip}`))
58
59 // Close socket connection and block IP for a few time
60 if (params.type === 'ws') {
61 Redis.Instance.setTrackerBlockIP(ip)
62 .catch(err => logger.error('Cannot set tracker block ip.', { err }))
63
64 // setTimeout to wait filter response
65 setTimeout(() => params.socket.close(), 0)
66 }
67 } catch (err) {
68 logger.error('Error in tracker filter.', { err })
69 return cb(err)
70 }
71 }
72 })
73
74 if (CONFIG.TRACKER.ENABLED !== false) {
75
76 trackerServer.on('error', function (err) {
77 logger.error('Error in tracker.', { err })
78 })
79
80 trackerServer.on('warning', function (err) {
81 logger.warn('Warning in tracker.', { err })
82 })
83 }
84
85 const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
86 trackerRouter.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
87 trackerRouter.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
88
89 function createWebsocketTrackerServer (app: express.Application) {
90 const server = http.createServer(app)
91 const wss = new WebSocketServer({ noServer: true })
92
93 wss.on('connection', function (ws, req) {
94 ws['ip'] = proxyAddr(req, CONFIG.TRUST_PROXY)
95
96 trackerServer.onWebSocketConnection(ws)
97 })
98
99 server.on('upgrade', (request: express.Request, socket, head) => {
100 if (request.url === '/tracker/socket') {
101 const ip = proxyAddr(request, CONFIG.TRUST_PROXY)
102
103 Redis.Instance.doesTrackerBlockIPExist(ip)
104 .then(result => {
105 if (result === true) {
106 logger.debug('Blocking IP %s from tracker.', ip)
107
108 socket.write('HTTP/1.1 403 Forbidden\r\n\r\n')
109 socket.destroy()
110 return
111 }
112
113 return wss.handleUpgrade(request, socket, head, ws => wss.emit('connection', ws, request))
114 })
115 .catch(err => logger.error('Cannot check if tracker block ip exists.', { err }))
116 }
117
118 // Don't destroy socket, we have Socket.IO too
119 })
120
121 return server
122 }
123
124 // ---------------------------------------------------------------------------
125
126 export {
127 trackerRouter,
128 createWebsocketTrackerServer
129 }
130
131 // ---------------------------------------------------------------------------
132
133 function runPeersChecker () {
134 setInterval(() => {
135 logger.debug('Checking peers.')
136
137 for (const ip of Object.keys(peersIpInfoHash)) {
138 if (peersIps[ip] > TRACKER_RATE_LIMITS.ANNOUNCES_PER_IP) {
139 logger.warn('Peer %s made abnormal requests (%d).', ip, peersIps[ip])
140 }
141 }
142
143 peersIpInfoHash = {}
144 peersIps = {}
145 }, TRACKER_RATE_LIMITS.INTERVAL)
146 }