1 | /****************************************************************************** |
---|
2 | * $Id: transmission.c 2985 2007-09-07 20:55:38Z charles $ |
---|
3 | * |
---|
4 | * Copyright (c) 2005-2007 Transmission authors and contributors |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #include <assert.h> |
---|
26 | #include <stdio.h> |
---|
27 | #include <stdlib.h> |
---|
28 | #include <string.h> |
---|
29 | |
---|
30 | #include <signal.h> |
---|
31 | #include <sys/types.h> /* stat */ |
---|
32 | #include <sys/stat.h> /* stat */ |
---|
33 | #include <unistd.h> /* stat */ |
---|
34 | #include <dirent.h> /* opendir */ |
---|
35 | |
---|
36 | #include "transmission.h" |
---|
37 | #include "fdlimit.h" |
---|
38 | #include "list.h" |
---|
39 | #include "net.h" |
---|
40 | #include "peer-mgr.h" |
---|
41 | #include "platform.h" |
---|
42 | #include "ratecontrol.h" |
---|
43 | #include "shared.h" |
---|
44 | #include "trevent.h" |
---|
45 | #include "utils.h" |
---|
46 | |
---|
47 | /* Generate a peer id : "-TRxyzb-" + 12 random alphanumeric |
---|
48 | characters, where x is the major version number, y is the |
---|
49 | minor version number, z is the maintenance number, and b |
---|
50 | designates beta (Azureus-style) */ |
---|
51 | void |
---|
52 | tr_peerIdNew ( char * buf, int buflen ) |
---|
53 | { |
---|
54 | int i; |
---|
55 | assert( buflen == TR_ID_LEN + 1 ); |
---|
56 | |
---|
57 | snprintf( buf, TR_ID_LEN, "%s", PEERID_PREFIX ); |
---|
58 | assert( strlen(buf) == 8 ); |
---|
59 | for( i=8; i<TR_ID_LEN; ++i ) { |
---|
60 | const int r = tr_rand( 36 ); |
---|
61 | buf[i] = ( r < 26 ) ? ( 'a' + r ) : ( '0' + r - 26 ) ; |
---|
62 | } |
---|
63 | buf[TR_ID_LEN] = '\0'; |
---|
64 | } |
---|
65 | |
---|
66 | const char* |
---|
67 | getPeerId( void ) |
---|
68 | { |
---|
69 | static char * peerId = NULL; |
---|
70 | if( !peerId ) { |
---|
71 | peerId = tr_new0( char, TR_ID_LEN + 1 ); |
---|
72 | tr_peerIdNew( peerId, TR_ID_LEN + 1 ); |
---|
73 | } |
---|
74 | return peerId; |
---|
75 | } |
---|
76 | |
---|
77 | /*** |
---|
78 | **** |
---|
79 | ***/ |
---|
80 | |
---|
81 | |
---|
82 | /*********************************************************************** |
---|
83 | * tr_init |
---|
84 | *********************************************************************** |
---|
85 | * Allocates a tr_handle_t structure and initializes a few things |
---|
86 | **********************************************************************/ |
---|
87 | tr_handle_t * tr_init( const char * tag ) |
---|
88 | { |
---|
89 | tr_handle_t * h; |
---|
90 | int i; |
---|
91 | |
---|
92 | #ifndef WIN32 |
---|
93 | /* Don't exit when writing on a broken socket */ |
---|
94 | signal( SIGPIPE, SIG_IGN ); |
---|
95 | #endif |
---|
96 | |
---|
97 | tr_msgInit(); |
---|
98 | |
---|
99 | h = tr_new0( tr_handle_t, 1 ); |
---|
100 | if( !h ) |
---|
101 | return NULL; |
---|
102 | |
---|
103 | tr_eventInit( h ); |
---|
104 | tr_netInit(); |
---|
105 | tr_netResolveThreadInit(); |
---|
106 | |
---|
107 | h->tag = strdup( tag ); |
---|
108 | if( !h->tag ) { |
---|
109 | free( h ); |
---|
110 | return NULL; |
---|
111 | } |
---|
112 | |
---|
113 | h->peerMgr = tr_peerMgrNew( h ); |
---|
114 | |
---|
115 | /* Azureus identity */ |
---|
116 | for( i=0; i < TR_AZ_ID_LEN; ++i ) |
---|
117 | h->azId[i] = tr_rand( 0xff ); |
---|
118 | |
---|
119 | /* Initialize rate and file descripts controls */ |
---|
120 | h->upload = tr_rcInit(); |
---|
121 | h->download = tr_rcInit(); |
---|
122 | |
---|
123 | tr_fdInit(); |
---|
124 | h->shared = tr_sharedInit( h ); |
---|
125 | |
---|
126 | tr_inf( TR_NAME " " LONG_VERSION_STRING " started" ); |
---|
127 | |
---|
128 | return h; |
---|
129 | } |
---|
130 | |
---|
131 | /*********************************************************************** |
---|
132 | * tr_setBindPort |
---|
133 | *********************************************************************** |
---|
134 | * |
---|
135 | **********************************************************************/ |
---|
136 | void tr_setBindPort( tr_handle_t * h, int port ) |
---|
137 | { |
---|
138 | h->isPortSet = 1; |
---|
139 | tr_sharedSetPort( h->shared, port ); |
---|
140 | } |
---|
141 | |
---|
142 | int |
---|
143 | tr_getPublicPort( const tr_handle_t * h ) |
---|
144 | { |
---|
145 | assert( h != NULL ); |
---|
146 | return tr_sharedGetPublicPort( h->shared ); |
---|
147 | } |
---|
148 | |
---|
149 | void tr_natTraversalEnable( tr_handle_t * h, int enable ) |
---|
150 | { |
---|
151 | tr_sharedLock( h->shared ); |
---|
152 | tr_sharedTraversalEnable( h->shared, enable ); |
---|
153 | tr_sharedUnlock( h->shared ); |
---|
154 | } |
---|
155 | |
---|
156 | tr_handle_status * tr_handleStatus( tr_handle_t * h ) |
---|
157 | { |
---|
158 | tr_handle_status * s; |
---|
159 | |
---|
160 | h->statCur = ( h->statCur + 1 ) % 2; |
---|
161 | s = &h->stats[h->statCur]; |
---|
162 | |
---|
163 | tr_sharedLock( h->shared ); |
---|
164 | |
---|
165 | s->natTraversalStatus = tr_sharedTraversalStatus( h->shared ); |
---|
166 | s->publicPort = tr_sharedGetPublicPort( h->shared ); |
---|
167 | |
---|
168 | tr_sharedUnlock( h->shared ); |
---|
169 | |
---|
170 | return s; |
---|
171 | } |
---|
172 | |
---|
173 | /*** |
---|
174 | **** |
---|
175 | ***/ |
---|
176 | |
---|
177 | void |
---|
178 | tr_setUseGlobalSpeedLimit( tr_handle_t * h, |
---|
179 | int up_or_down, |
---|
180 | int use_flag ) |
---|
181 | { |
---|
182 | char * ch = up_or_down==TR_UP ? &h->useUploadLimit |
---|
183 | : &h->useDownloadLimit; |
---|
184 | *ch = use_flag; |
---|
185 | } |
---|
186 | |
---|
187 | void |
---|
188 | tr_setGlobalSpeedLimit( tr_handle_t * h, |
---|
189 | int up_or_down, |
---|
190 | int KiB_sec ) |
---|
191 | { |
---|
192 | if( up_or_down == TR_DOWN ) |
---|
193 | tr_rcSetLimit( h->download, KiB_sec ); |
---|
194 | else |
---|
195 | tr_rcSetLimit( h->upload, KiB_sec ); |
---|
196 | } |
---|
197 | |
---|
198 | void |
---|
199 | tr_getGlobalSpeedLimit( tr_handle_t * h, |
---|
200 | int up_or_down, |
---|
201 | int * setme_enabled, |
---|
202 | int * setme_KiBsec ) |
---|
203 | { |
---|
204 | if( setme_enabled != NULL ) |
---|
205 | *setme_enabled = up_or_down==TR_UP ? h->useUploadLimit |
---|
206 | : h->useDownloadLimit; |
---|
207 | if( setme_KiBsec != NULL ) |
---|
208 | *setme_KiBsec = tr_rcGetLimit( up_or_down==TR_UP ? h->upload |
---|
209 | : h->download ); |
---|
210 | } |
---|
211 | |
---|
212 | |
---|
213 | void tr_torrentRates( tr_handle_t * h, float * dl, float * ul ) |
---|
214 | { |
---|
215 | tr_torrent * tor; |
---|
216 | |
---|
217 | *dl = 0.0; |
---|
218 | *ul = 0.0; |
---|
219 | tr_sharedLock( h->shared ); |
---|
220 | for( tor = h->torrentList; tor; tor = tor->next ) |
---|
221 | { |
---|
222 | tr_torrentReaderLock( tor ); |
---|
223 | if( tor->cpStatus == TR_CP_INCOMPLETE ) |
---|
224 | *dl += tr_rcRate( tor->download ); |
---|
225 | *ul += tr_rcRate( tor->upload ); |
---|
226 | tr_torrentReaderUnlock( tor ); |
---|
227 | } |
---|
228 | tr_sharedUnlock( h->shared ); |
---|
229 | } |
---|
230 | |
---|
231 | int tr_torrentCount( tr_handle_t * h ) |
---|
232 | { |
---|
233 | return h->torrentCount; |
---|
234 | } |
---|
235 | |
---|
236 | void tr_torrentIterate( tr_handle_t * h, tr_callback_t func, void * d ) |
---|
237 | { |
---|
238 | tr_torrent * tor, * next; |
---|
239 | |
---|
240 | for( tor = h->torrentList; tor; tor = next ) |
---|
241 | { |
---|
242 | next = tor->next; |
---|
243 | func( tor, d ); |
---|
244 | } |
---|
245 | } |
---|
246 | |
---|
247 | void tr_close( tr_handle_t * h ) |
---|
248 | { |
---|
249 | tr_rcClose( h->upload ); |
---|
250 | tr_rcClose( h->download ); |
---|
251 | |
---|
252 | tr_peerMgrFree( h->peerMgr ); |
---|
253 | tr_sharedClose( h->shared ); |
---|
254 | tr_fdClose(); |
---|
255 | tr_eventClose( h ); |
---|
256 | free( h->tag ); |
---|
257 | free( h ); |
---|
258 | |
---|
259 | tr_netResolveThreadClose(); |
---|
260 | } |
---|
261 | |
---|
262 | tr_torrent ** |
---|
263 | tr_loadTorrents ( tr_handle_t * h, |
---|
264 | const char * destination, |
---|
265 | int flags, |
---|
266 | int * setmeCount ) |
---|
267 | { |
---|
268 | int i, n = 0; |
---|
269 | struct stat sb; |
---|
270 | DIR * odir = NULL; |
---|
271 | const char * torrentDir = tr_getTorrentsDirectory( ); |
---|
272 | tr_torrent ** torrents; |
---|
273 | tr_list *l=NULL, *list=NULL; |
---|
274 | |
---|
275 | if( !stat( torrentDir, &sb ) |
---|
276 | && S_ISDIR( sb.st_mode ) |
---|
277 | && (( odir = opendir ( torrentDir ) )) ) |
---|
278 | { |
---|
279 | struct dirent *d; |
---|
280 | for (d = readdir( odir ); d!=NULL; d=readdir( odir ) ) |
---|
281 | { |
---|
282 | if( d->d_name && d->d_name[0]!='.' ) /* skip dotfiles, ., and .. */ |
---|
283 | { |
---|
284 | tr_torrent * tor; |
---|
285 | char path[MAX_PATH_LENGTH]; |
---|
286 | tr_buildPath( path, sizeof(path), torrentDir, d->d_name, NULL ); |
---|
287 | tor = tr_torrentInit( h, path, destination, flags, NULL ); |
---|
288 | if( tor != NULL ) { |
---|
289 | tr_list_append( &list, tor ); |
---|
290 | //fprintf (stderr, "#%d - %s\n", n, tor->info.name ); |
---|
291 | n++; |
---|
292 | } |
---|
293 | } |
---|
294 | } |
---|
295 | closedir( odir ); |
---|
296 | } |
---|
297 | |
---|
298 | torrents = tr_new( tr_torrent*, n ); |
---|
299 | for( i=0, l=list; l!=NULL; l=l->next ) |
---|
300 | torrents[i++] = (tr_torrent*) l->data; |
---|
301 | assert( i==n ); |
---|
302 | |
---|
303 | tr_list_free( &list ); |
---|
304 | |
---|
305 | *setmeCount = n; |
---|
306 | tr_inf( "Loaded %d torrents from disk", *setmeCount ); |
---|
307 | return torrents; |
---|
308 | } |
---|