]> git.ipfire.org Git - thirdparty/squid.git/blame - src/wccp2.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / wccp2.cc
CommitLineData
0b0cfcf2 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
0b0cfcf2 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
0b0cfcf2 7 */
bf8fe701 8
bbc27441
AJ
9/* DEBUG: section 80 WCCP Support */
10
582c2af2 11#include "squid.h"
c898ced1
AJ
12
13#if USE_WCCPv2
14
8a01b99e 15#include "cache_cf.h"
0b0cfcf2 16#include "comm.h"
f9b72e0c 17#include "comm/Connection.h"
d841c88d 18#include "comm/Loops.h"
2eceb328 19#include "ConfigParser.h"
a553a5a3 20#include "event.h"
96d89ea0 21#include "ip/Address.h"
582c2af2 22#include "md5.h"
0b0cfcf2 23#include "Parsing.h"
2745fea5 24#include "SquidConfig.h"
a553a5a3 25#include "Store.h"
0b0cfcf2 26
5fefeec1 27#if HAVE_NETDB_H
0b0cfcf2 28#include <netdb.h>
5fefeec1 29#endif
0b0cfcf2 30
31#define WCCP_PORT 2048
0b0cfcf2 32#define WCCP_RESPONSE_SIZE 12448
0b0cfcf2 33#define WCCP_BUCKETS 256
34
0b0cfcf2 35static int theWccp2Connection = -1;
36static int wccp2_connected = 0;
37
38static PF wccp2HandleUdp;
39static EVH wccp2HereIam;
40static EVH wccp2AssignBuckets;
41
42/* KDW WCCP V2 */
c1f55201 43
f53969cc
SM
44#define WCCP2_HASH_ASSIGNMENT 0x00
45#define WCCP2_MASK_ASSIGNMENT 0x01
0b0cfcf2 46
f53969cc
SM
47#define WCCP2_NONE_SECURITY_LEN 0
48#define WCCP2_MD5_SECURITY_LEN SQUID_MD5_DIGEST_LENGTH // 16
0b0cfcf2 49
c898ced1 50/* Useful defines */
f53969cc
SM
51#define WCCP2_NUMPORTS 8
52#define WCCP2_PASSWORD_LEN 8
0b0cfcf2 53
c898ced1
AJ
54/* WCCPv2 Pakcet format structures */
55/* Defined in draft-wilson-wccp-v2-12-oct-2001.txt */
0b0cfcf2 56
c898ced1
AJ
57/** \interface WCCPv2_Protocol
58 * Generic header struct
59 */
60struct wccp2_item_header_t {
61 uint16_t type;
62 uint16_t length;
63};
0b0cfcf2 64
c898ced1 65/* item type values */
f53969cc
SM
66#define WCCP2_SECURITY_INFO 0
67#define WCCP2_SERVICE_INFO 1
68#define WCCP2_ROUTER_ID_INFO 2
69#define WCCP2_WC_ID_INFO 3
70#define WCCP2_RTR_VIEW_INFO 4
71#define WCCP2_WC_VIEW_INFO 5
72#define WCCP2_REDIRECT_ASSIGNMENT 6
73#define WCCP2_QUERY_INFO 7
74#define WCCP2_CAPABILITY_INFO 8
75#define WCCP2_ALT_ASSIGNMENT 13
76#define WCCP2_ASSIGN_MAP 14
77#define WCCP2_COMMAND_EXTENSION 15
b7d249f9 78
c898ced1
AJ
79/** \interface WCCPv2_Protocol
80 * Sect 5.5 WCCP Message Header
81 */
82struct wccp2_message_header_t {
0b0cfcf2 83 uint32_t type;
84 uint16_t version;
c898ced1
AJ
85#define WCCP2_VERSION 0x200
86
0b0cfcf2 87 uint16_t length;
88};
c898ced1 89static struct wccp2_message_header_t wccp2_here_i_am_header;
0b0cfcf2 90
c898ced1
AJ
91/* message types */
92#define WCCP2_HERE_I_AM 10
93#define WCCP2_I_SEE_YOU 11
94#define WCCP2_REDIRECT_ASSIGN 12
95#define WCCP2_REMOVAL_QUERY 13
0b0cfcf2 96
c898ced1
AJ
97/** \interface WCCPv2_Protocol
98 * Sect 5.6.1 Security Info Component
99 *
100 * Basic security Header. Matches "no security" case exactly.
101 */
26ac0430 102struct wccp2_security_none_t {
0b0cfcf2 103 uint16_t security_type;
104 uint16_t security_length;
105 uint32_t security_option;
106};
107
c898ced1 108/* security options */
f53969cc
SM
109#define WCCP2_NO_SECURITY 0
110#define WCCP2_MD5_SECURITY 1
c898ced1 111
c898ced1
AJ
112/** \interface WCCPv2_Protocol
113 * Sect 5.6.1 Security Info Component
114 *
115 * Extended security section. Matches "MD5 security" type exactly.
116 * Including the security header.
117 */
26ac0430 118struct wccp2_security_md5_t {
0b0cfcf2 119 uint16_t security_type;
120 uint16_t security_length;
121 uint32_t security_option;
122 uint8_t security_implementation[WCCP2_MD5_SECURITY_LEN];
123};
124
125/* Service info struct */
126
c898ced1
AJ
127/** \interface WCCPv2_Protocol
128 * Sect 5.6.2 Service Info Component
129 */
26ac0430 130struct wccp2_service_info_t {
0b0cfcf2 131 uint16_t service_type;
132 uint16_t service_length;
133 uint8_t service;
134 uint8_t service_id;
135 uint8_t service_priority;
136 uint8_t service_protocol;
137 uint32_t service_flags;
138 uint16_t port0;
139 uint16_t port1;
140 uint16_t port2;
141 uint16_t port3;
142 uint16_t port4;
143 uint16_t port5;
144 uint16_t port6;
145 uint16_t port7;
146};
c898ced1 147/* services */
f53969cc
SM
148#define WCCP2_SERVICE_STANDARD 0
149#define WCCP2_SERVICE_DYNAMIC 1
0b0cfcf2 150
c898ced1 151/* service IDs */
f53969cc 152#define WCCP2_SERVICE_ID_HTTP 0x00
c898ced1
AJ
153
154/* service flags */
f53969cc
SM
155#define WCCP2_SERVICE_SRC_IP_HASH 0x1
156#define WCCP2_SERVICE_DST_IP_HASH 0x2
157#define WCCP2_SERVICE_SRC_PORT_HASH 0x4
158#define WCCP2_SERVICE_DST_PORT_HASH 0x8
159#define WCCP2_SERVICE_PORTS_DEFINED 0x10
160#define WCCP2_SERVICE_PORTS_SOURCE 0x20
161#define WCCP2_SERVICE_SRC_IP_ALT_HASH 0x100
162#define WCCP2_SERVICE_DST_IP_ALT_HASH 0x200
163#define WCCP2_SERVICE_SRC_PORT_ALT_HASH 0x400
164#define WCCP2_SERVICE_DST_PORT_ALT_HASH 0x800
c898ced1 165
c898ced1
AJ
166/* TODO the following structures need to be re-defined for correct full operation.
167 wccp2_cache_identity_element needs to be merged as a sub-struct of
168 wccp2_identity_info_t (identity_type); which frees up the identifty info
169 structures so mask_assigment_data_element can become variable length
170 and cope with multiple fail-over caches hanging off one router.
171 */
172
173/** \interface WCCPv2_Protocol
174 * Sect 5.7.2 Web-Cache Identity Element
175 */
26ac0430 176struct wccp2_cache_identity_info_t {
cc192b50 177 struct in_addr addr;
0b0cfcf2 178 uint16_t hash_revision;
85442144 179 uint16_t bits;
c898ced1
AJ
180//#define WCCP2_HASH_ASSIGNMENT_DATA 0x0
181
af6a12ee 182 /* 5.7.2 Hash Assignment Data Element */
c898ced1 183 char buckets[32]; /* Draft indicates 8x 32-bit buckets but it's just a mask so doesn't matter how we define. */
0b0cfcf2 184 uint16_t weight;
185 uint16_t status;
186};
187
c898ced1
AJ
188/** \interface WCCPv2_Protocol
189 * Sect 5.6.4 Web-Cache Identity Info Component
190 */
26ac0430 191struct wccp2_identity_info_t {
0b0cfcf2 192 uint16_t cache_identity_type;
193 uint16_t cache_identity_length;
194
195 struct wccp2_cache_identity_info_t cache_identity;
196};
197
198static struct wccp2_identity_info_t wccp2_identity_info;
199
c898ced1
AJ
200/** \interface WCCPv2_Protocol
201 * Sect 5.7.7 Mask Element
202 */
203struct wccp2_mask_element_t {
b7d249f9 204 uint32_t source_ip_mask;
205 uint32_t dest_ip_mask;
206 uint16_t source_port_mask;
207 uint16_t dest_port_mask;
c898ced1 208 uint32_t number_values;
b7d249f9 209};
210
c898ced1
AJ
211/** \interface WCCPv2_Protocol
212 * Sect 5.7.2 Web-Cache Identity Element
213 */
214struct wccp2_cache_mask_identity_info_t {
215 struct in_addr addr;
216 uint16_t hash_revision;
217 uint16_t bits;
85442144 218#define WCCP2_MASK_ASSIGNMENT_DATA (0x2)
c898ced1 219
af6a12ee
AJ
220 /* Sect 5.7.2 Mask Assignment Data Element
221 *
222 * NP: draft specifies a variable-length set of keys here.
223 * the following fields only matche the special case Squid sends outbound (single-cache).
224 */
225 uint32_t mask_element_count;
c898ced1 226
af6a12ee
AJ
227 /* Sect 5.7.6 Mask/Value Set Element */
228 /* special case: single mask element. no values. */
c898ced1
AJ
229 struct wccp2_mask_element_t mask;
230
af6a12ee 231 /* Sect 5.7.2 Mask Assignment Data Element */
c898ced1
AJ
232 uint16_t weight;
233 uint16_t status;
234};
235
236/** \interface WCCPv2_Protocol
237 * Sect 5.6.4 Web-Cache Identity Info Component
238 */
26ac0430 239struct wccp2_mask_identity_info_t {
b7d249f9 240 uint16_t cache_identity_type;
241 uint16_t cache_identity_length;
242
243 struct wccp2_cache_mask_identity_info_t cache_identity;
244};
245
246static struct wccp2_mask_identity_info_t wccp2_mask_identity_info;
247
c898ced1
AJ
248/** \interface WCCPv2_Protocol
249 * Sect 5.6.5 Router View Info Component
250 * Sect 5.6.6 Web Cache View Info Component
251 *
252 * first three fields. (shared by both view components)
253 */
26ac0430 254struct wccp2_cache_view_header_t {
0b0cfcf2 255 uint16_t cache_view_type;
256 uint16_t cache_view_length;
257 uint32_t cache_view_version;
258};
259
260static struct wccp2_cache_view_header_t wccp2_cache_view_header;
261
e041b6d2 262/// \interface WCCPv2_Protocol
c898ced1 263/* NP: special-case 5.6.5 or 5.6.6 * View Info when no routers or caches are advertised? */
26ac0430 264struct wccp2_cache_view_info_t {
0b0cfcf2 265 uint32_t num_routers;
266 uint32_t num_caches;
267};
268
269static struct wccp2_cache_view_info_t wccp2_cache_view_info;
270
c898ced1
AJ
271/** \interface WCCPv2_Protocol
272 * Sect 5.7.1 Router ID Element
273 */
26ac0430 274struct wccp2_router_id_element_t {
cc192b50 275 struct in_addr router_address;
0b0cfcf2 276 uint32_t received_id;
277};
278
279static struct wccp2_router_id_element_t wccp2_router_id_element;
280
bd8d3feb 281/** \interface WCCPv2_Protocol
c898ced1
AJ
282 * Sect 5.6.9 Capabilities Info Component
283 */
26ac0430 284struct wccp2_capability_info_header_t {
0b0cfcf2 285 uint16_t capability_info_type;
286 uint16_t capability_info_length;
c898ced1 287 /* dynamic length capabilities list */
0b0cfcf2 288};
289
290static struct wccp2_capability_info_header_t wccp2_capability_info_header;
291
c898ced1
AJ
292/** \interface WCCPv2_Protocol
293 * 5.7.5 Capability Element
294 */
26ac0430 295struct wccp2_capability_element_t {
0b0cfcf2 296 uint16_t capability_type;
297 uint16_t capability_length;
298 uint32_t capability_value;
299};
0b0cfcf2 300static struct wccp2_capability_element_t wccp2_capability_element;
301
c898ced1 302/* capability types */
f53969cc
SM
303#define WCCP2_CAPABILITY_FORWARDING_METHOD 0x01
304#define WCCP2_CAPABILITY_ASSIGNMENT_METHOD 0x02
305#define WCCP2_CAPABILITY_RETURN_METHOD 0x03
43f3d687
AJ
306// 0x04 ?? - advertised by a 4507 (ios v15.1) Cisco switch
307// 0x05 ?? - advertised by a 4507 (ios v15.1) Cisco switch
b7d249f9 308
c898ced1 309/* capability values */
f53969cc
SM
310#define WCCP2_METHOD_GRE 0x00000001
311#define WCCP2_METHOD_L2 0x00000002
af6a12ee 312/* when type=WCCP2_CAPABILITY_FORWARDING_METHOD */
f53969cc
SM
313#define WCCP2_FORWARDING_METHOD_GRE WCCP2_METHOD_GRE
314#define WCCP2_FORWARDING_METHOD_L2 WCCP2_METHOD_L2
af6a12ee 315/* when type=WCCP2_CAPABILITY_ASSIGNMENT_METHOD */
f53969cc
SM
316#define WCCP2_ASSIGNMENT_METHOD_HASH 0x00000001
317#define WCCP2_ASSIGNMENT_METHOD_MASK 0x00000002
af6a12ee 318/* when type=WCCP2_CAPABILITY_RETURN_METHOD */
f53969cc
SM
319#define WCCP2_PACKET_RETURN_METHOD_GRE WCCP2_METHOD_GRE
320#define WCCP2_PACKET_RETURN_METHOD_L2 WCCP2_METHOD_L2
b7d249f9 321
c898ced1
AJ
322/** \interface WCCPv2_Protocol
323 * 5.7.8 Value Element
324 */
26ac0430 325struct wccp2_value_element_t {
b7d249f9 326 uint32_t source_ip_value;
327 uint32_t dest_ip_value;
328 uint16_t source_port_value;
329 uint16_t dest_port_value;
330
cc192b50 331 struct in_addr cache_ip;
b7d249f9 332};
0b0cfcf2 333
334/* RECEIVED PACKET STRUCTURE */
335
c898ced1
AJ
336/** \interface WCCPv2_Protocol
337 * 5.2 'I See You' Message
338 */
26ac0430 339struct wccp2_i_see_you_t {
0b0cfcf2 340 uint32_t type;
341 uint16_t version;
342 uint16_t length;
343 char data[WCCP_RESPONSE_SIZE];
344};
345
346static struct wccp2_i_see_you_t wccp2_i_see_you;
347
c898ced1
AJ
348/** \interface WCCPv2_Protocol
349 * 5.7.4 Router Assignment Element
350 */
26ac0430 351struct wccp2_router_assign_element_t {
cc192b50 352 struct in_addr router_address;
0b0cfcf2 353 uint32_t received_id;
354 uint32_t change_number;
355};
356
0b0cfcf2 357/* Router identity struct */
358
c898ced1
AJ
359/** \interface WCCPv2_Protocol
360 * 5.6.3 Router Identity Info Component (partial)
361 */
26ac0430 362struct router_identity_info_t {
0b0cfcf2 363
364 struct wccp2_item_header_t header;
365
366 struct wccp2_router_id_element_t router_id_element;
367
2adffc6f 368 struct in_addr router_address;
0b0cfcf2 369 uint32_t number_caches;
c898ced1 370 /* dynamic list of cache IP addresses */
0b0cfcf2 371};
372
b7d249f9 373/* The received packet for a mask assignment is unusual */
374
c898ced1
AJ
375/** \interface WCCPv2_Protocol
376 * Sect 5.7.7 Mask Element ???
377 * see code below. apparently the supposed IP address at position num1 can be equal to 3.
378 */
26ac0430 379struct cache_mask_info_t {
cc192b50 380 struct in_addr addr;
b7d249f9 381 uint32_t num1;
382 uint32_t num2;
383 uint32_t num3;
384};
385
c898ced1
AJ
386/** \interface WCCPv2_Protocol
387 * 5.7.3 Assignment Key Element
388 */
26ac0430 389struct assignment_key_t {
cc192b50 390 struct in_addr master_ip;
0b0cfcf2 391 uint32_t master_number;
392};
393
c898ced1
AJ
394/** \interface WCCPv2_Protocol
395 * 5.6.5 Router View Info Component (first three fields)
396 */
26ac0430 397struct router_view_t {
0b0cfcf2 398 struct wccp2_item_header_t header;
399 uint32_t change_number;
0b0cfcf2 400 struct assignment_key_t assignment_key;
c898ced1 401 /* dynamic lists of routers and caches elided */
0b0cfcf2 402};
403
0b0cfcf2 404/* Lists used to keep track of caches, routers and services */
405
e041b6d2 406/// \interface WCCPv2_Protocol
26ac0430 407struct wccp2_cache_list_t {
0b0cfcf2 408
cc192b50 409 struct in_addr cache_ip;
0b0cfcf2 410
f16fbc82 411 int weight;
412
0b0cfcf2 413 struct wccp2_cache_list_t *next;
414};
415
e041b6d2 416/// \interface WCCPv2_Protocol
26ac0430 417struct wccp2_router_list_t {
0b0cfcf2 418
419 struct wccp2_router_id_element_t *info;
420
cc192b50 421 struct in_addr local_ip;
0b0cfcf2 422
cc192b50 423 struct in_addr router_sendto_address;
0b0cfcf2 424 uint32_t member_change;
425 uint32_t num_caches;
426
427 struct wccp2_cache_list_t cache_list_head;
428
429 struct wccp2_router_list_t *next;
430};
431
432static int wccp2_numrouters;
433
e041b6d2 434/// \interface WCCPv2_Protocol
26ac0430 435struct wccp2_service_list_t {
0b0cfcf2 436
437 struct wccp2_service_info_t info;
438 uint32_t num_routers;
439
440 struct wccp2_router_list_t router_list_head;
441 int lowest_ip;
442 uint32_t change_num;
443
b7d249f9 444 char *wccp2_identity_info_ptr;
0b0cfcf2 445
446 struct wccp2_security_md5_t *security_info;
447
448 struct wccp2_service_info_t *service_info;
449 char wccp_packet[WCCP_RESPONSE_SIZE];
450 size_t wccp_packet_size;
451
452 struct wccp2_service_list_t *next;
f53969cc 453 char wccp_password[WCCP2_PASSWORD_LEN + 1]; /* hold the trailing C-string NUL */
0b0cfcf2 454 uint32_t wccp2_security_type;
455};
456
457static struct wccp2_service_list_t *wccp2_service_list_head = NULL;
458
26ac0430 459int empty_portlist[WCCP2_NUMPORTS] = {0, 0, 0, 0, 0, 0, 0, 0};
0b0cfcf2 460
c898ced1
AJ
461/* END WCCP V2 PROTOCL TYPES DEFINITION */
462
0b0cfcf2 463void wccp2_add_service_list(int service, int service_id, int service_priority,
464 int service_proto, int service_flags, int ports[], int security_type, char *password);
264096e2 465static void wccp2SortCacheList(struct wccp2_cache_list_t *head);
0b0cfcf2 466
467/*
468 * The functions used during startup:
469 * wccp2Init
470 * wccp2ConnectionOpen
471 * wccp2ConnectionClose
472 */
473
474static void
475wccp2InitServices(void)
476{
bf8fe701 477 debugs(80, 5, "wccp2InitServices: called");
0b0cfcf2 478}
479
480static void
0b0cfcf2 481wccp2_update_service(struct wccp2_service_list_t *srv, int service,
482 int service_id, int service_priority, int service_proto, int service_flags,
483 int ports[])
484{
485 /* XXX check what needs to be wrapped in htons()! */
486 srv->info.service = service;
487 srv->info.service_id = service_id;
488 srv->info.service_priority = service_priority;
489 srv->info.service_protocol = service_proto;
490 srv->info.service_flags = htonl(service_flags);
491 srv->info.port0 = htons(ports[0]);
492 srv->info.port1 = htons(ports[1]);
493 srv->info.port2 = htons(ports[2]);
494 srv->info.port3 = htons(ports[3]);
495 srv->info.port4 = htons(ports[4]);
496 srv->info.port5 = htons(ports[5]);
497 srv->info.port6 = htons(ports[6]);
498 srv->info.port7 = htons(ports[7]);
499}
500
501void
502wccp2_add_service_list(int service, int service_id, int service_priority,
503 int service_proto, int service_flags, int ports[], int security_type,
504 char *password)
505{
506
507 struct wccp2_service_list_t *wccp2_service_list_ptr;
508
509 wccp2_service_list_ptr = (wccp2_service_list_t *) xcalloc(1, sizeof(struct wccp2_service_list_t));
510
bf8fe701 511 debugs(80, 5, "wccp2_add_service_list: added service id " << service_id);
0b0cfcf2 512
513 /* XXX check what needs to be wrapped in htons()! */
514 wccp2_service_list_ptr->info.service_type = htons(WCCP2_SERVICE_INFO);
515
516 wccp2_service_list_ptr->info.service_length = htons(sizeof(struct wccp2_service_info_t) - 4);
517 wccp2_service_list_ptr->change_num = 0;
518 wccp2_update_service(wccp2_service_list_ptr, service, service_id,
519 service_priority, service_proto, service_flags, ports);
520 wccp2_service_list_ptr->wccp2_security_type = security_type;
a302ad3c 521 memset(wccp2_service_list_ptr->wccp_password, 0, WCCP2_PASSWORD_LEN + 1);
0b0cfcf2 522 strncpy(wccp2_service_list_ptr->wccp_password, password, WCCP2_PASSWORD_LEN);
523 /* add to linked list - XXX this should use the Squid dlink* routines! */
524 wccp2_service_list_ptr->next = wccp2_service_list_head;
525 wccp2_service_list_head = wccp2_service_list_ptr;
526}
527
528static struct wccp2_service_list_t *
e1381638 529wccp2_get_service_by_id(int service, int service_id) {
0b0cfcf2 530
531 struct wccp2_service_list_t *p;
532
533 p = wccp2_service_list_head;
534
26ac0430 535 while (p != NULL) {
0b0cfcf2 536 if (p->info.service == service && p->info.service_id == service_id) {
537 return p;
538 }
539
540 p = p->next;
541 }
542
543 return NULL;
544}
545
546/*
547 * Update the md5 security header, if possible
548 *
549 * Returns: 1 if we set it, 0 if not (eg, no security section, or non-md5)
550 */
551static char
552wccp2_update_md5_security(char *password, char *ptr, char *packet, int len)
553{
09cd7204 554 uint8_t md5Digest[SQUID_MD5_DIGEST_LENGTH];
0b0cfcf2 555 char pwd[WCCP2_PASSWORD_LEN];
c3031d67 556 SquidMD5_CTX M;
0b0cfcf2 557
558 struct wccp2_security_md5_t *ws;
559
bf8fe701 560 debugs(80, 5, "wccp2_update_md5_security: called");
0b0cfcf2 561
562 /* The password field, for the MD5 hash, needs to be 8 bytes and NUL padded. */
a302ad3c 563 memset(pwd, 0, sizeof(pwd));
0b0cfcf2 564 strncpy(pwd, password, sizeof(pwd));
85494816 565 pwd[sizeof(pwd) - 1] = '\0';
0b0cfcf2 566
567 ws = (struct wccp2_security_md5_t *) ptr;
568 assert(ntohs(ws->security_type) == WCCP2_SECURITY_INFO);
569 /* Its the security part */
570
571 if (ntohl(ws->security_option) != WCCP2_MD5_SECURITY) {
bf8fe701 572 debugs(80, 5, "wccp2_update_md5_security: this service ain't md5'ing, abort");
0b0cfcf2 573 return 0;
574 }
575
576 /* And now its the MD5 section! */
577 /* According to the draft, the MD5 security hash is the combination of
578 * the 8-octet password (padded w/ NUL bytes) and the entire WCCP packet,
579 * including the WCCP message header. The WCCP security implementation
580 * area should be zero'ed before calculating the MD5 hash.
581 */
09cd7204 582 /* XXX eventually we should be able to kill md5Digest and blit it directly in */
a302ad3c 583 memset(ws->security_implementation, 0, sizeof(ws->security_implementation));
0b0cfcf2 584
c3031d67 585 SquidMD5Init(&M);
0b0cfcf2 586
0a84e4fb 587 SquidMD5Update(&M, pwd, sizeof(pwd));
0b0cfcf2 588
c3031d67 589 SquidMD5Update(&M, packet, len);
0b0cfcf2 590
09cd7204 591 SquidMD5Final(md5Digest, &M);
0b0cfcf2 592
09cd7204 593 memcpy(ws->security_implementation, md5Digest, sizeof(md5Digest));
0b0cfcf2 594
595 /* Finished! */
596 return 1;
597}
598
0b0cfcf2 599/*
600 * Check the given WCCP2 packet against the given password.
601 */
602static char
603
604wccp2_check_security(struct wccp2_service_list_t *srv, char *security, char *packet, int len)
605{
606
607 struct wccp2_security_md5_t *ws = (struct wccp2_security_md5_t *) security;
09cd7204 608 uint8_t md5Digest[SQUID_MD5_DIGEST_LENGTH], md5_challenge[SQUID_MD5_DIGEST_LENGTH];
0b0cfcf2 609 char pwd[WCCP2_PASSWORD_LEN];
c3031d67 610 SquidMD5_CTX M;
0b0cfcf2 611
612 /* Make sure the security type matches what we expect */
613
26ac0430 614 if (ntohl(ws->security_option) != srv->wccp2_security_type) {
e0236918 615 debugs(80, DBG_IMPORTANT, "wccp2_check_security: received packet has the wrong security option");
0b0cfcf2 616 return 0;
617 }
618
26ac0430 619 if (srv->wccp2_security_type == WCCP2_NO_SECURITY) {
0b0cfcf2 620 return 1;
621 }
622
26ac0430 623 if (srv->wccp2_security_type != WCCP2_MD5_SECURITY) {
e0236918 624 debugs(80, DBG_IMPORTANT, "wccp2_check_security: invalid security option");
0b0cfcf2 625 return 0;
626 }
627
628 /* If execution makes it here then we have an MD5 security */
629
630 /* The password field, for the MD5 hash, needs to be 8 bytes and NUL padded. */
a302ad3c 631 memset(pwd, 0, sizeof(pwd));
0b0cfcf2 632 strncpy(pwd, srv->wccp_password, sizeof(pwd));
85494816 633 pwd[sizeof(pwd) - 1] = '\0';
0b0cfcf2 634
635 /* Take a copy of the challenge: we need to NUL it before comparing */
09cd7204 636 memcpy(md5_challenge, ws->security_implementation, sizeof(md5_challenge));
0b0cfcf2 637
a302ad3c 638 memset(ws->security_implementation, 0, sizeof(ws->security_implementation));
0b0cfcf2 639
c3031d67 640 SquidMD5Init(&M);
0b0cfcf2 641
0a84e4fb 642 SquidMD5Update(&M, pwd, sizeof(pwd));
0b0cfcf2 643
c3031d67 644 SquidMD5Update(&M, packet, len);
0b0cfcf2 645
09cd7204 646 SquidMD5Final(md5Digest, &M);
0b0cfcf2 647
09cd7204 648 return (memcmp(md5Digest, md5_challenge, SQUID_MD5_DIGEST_LENGTH) == 0);
0b0cfcf2 649}
650
0b0cfcf2 651void
652wccp2Init(void)
653{
b7ac5457 654 Ip::Address_list *s;
0b0cfcf2 655 char *ptr;
b7d249f9 656 uint32_t service_flags;
0b0cfcf2 657
658 struct wccp2_service_list_t *service_list_ptr;
659
660 struct wccp2_router_list_t *router_list_ptr;
661
bf8fe701 662 debugs(80, 5, "wccp2Init: Called");
0b0cfcf2 663
664 if (wccp2_connected == 1)
665 return;
666
667 wccp2_numrouters = 0;
668
669 /* Calculate the number of routers configured in the config file */
670 for (s = Config.Wccp2.router; s; s = s->next) {
4dd643d5 671 if (!s->s.isAnyAddr()) {
0b0cfcf2 672 /* Increment the counter */
14942edd 673 ++wccp2_numrouters;
0b0cfcf2 674 }
675 }
676
677 if (wccp2_numrouters == 0) {
678 return;
679 }
680
883dcc9c
AJ
681 struct wccp2_security_md5_t wccp2_security_md5;
682 memset(&wccp2_security_md5, 0, sizeof(wccp2_security_md5));
683
0b0cfcf2 684 /* Initialise the list of services */
685 wccp2InitServices();
686
687 service_list_ptr = wccp2_service_list_head;
688
689 while (service_list_ptr != NULL) {
690 /* Set up our list pointers */
691 router_list_ptr = &service_list_ptr->router_list_head;
692
693 /* start the wccp header */
694 wccp2_here_i_am_header.type = htonl(WCCP2_HERE_I_AM);
695 wccp2_here_i_am_header.version = htons(WCCP2_VERSION);
696 wccp2_here_i_am_header.length = 0;
697 ptr = service_list_ptr->wccp_packet + sizeof(wccp2_here_i_am_header);
698
699 /* add the security section */
700 /* XXX this is ugly */
701
702 if (service_list_ptr->wccp2_security_type == WCCP2_MD5_SECURITY) {
703 wccp2_security_md5.security_option = htonl(WCCP2_MD5_SECURITY);
704
705 wccp2_security_md5.security_length = htons(sizeof(struct wccp2_security_md5_t) - 4);
706 } else if (service_list_ptr->wccp2_security_type == WCCP2_NO_SECURITY) {
707 wccp2_security_md5.security_option = htonl(WCCP2_NO_SECURITY);
708 /* XXX I hate magic length numbers! */
709 wccp2_security_md5.security_length = htons(4);
710 } else {
711 fatalf("Bad WCCP2 security type\n");
712 }
713
714 wccp2_here_i_am_header.length += ntohs(wccp2_security_md5.security_length) + 4;
715 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
716 wccp2_security_md5.security_type = htons(WCCP2_SECURITY_INFO);
717
718 service_list_ptr->security_info = (struct wccp2_security_md5_t *) ptr;
719
720 if (service_list_ptr->wccp2_security_type == WCCP2_MD5_SECURITY) {
41d00cd3 721 memcpy(ptr, &wccp2_security_md5, sizeof(struct wccp2_security_md5_t));
0b0cfcf2 722 ptr += sizeof(struct wccp2_security_md5_t);
723 } else {
724 /* assume NONE, and XXX I hate magic length numbers */
41d00cd3 725 memcpy(ptr, &wccp2_security_md5, 8);
0b0cfcf2 726 ptr += 8;
727 }
728
729 /* Add the service info section */
730
731 wccp2_here_i_am_header.length += sizeof(struct wccp2_service_info_t);
732
733 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
734
41d00cd3 735 memcpy(ptr, &service_list_ptr->info, sizeof(struct wccp2_service_info_t));
0b0cfcf2 736
737 service_list_ptr->service_info = (struct wccp2_service_info_t *) ptr;
738
739 ptr += sizeof(struct wccp2_service_info_t);
740
741 /* Add the cache identity section */
742
b7d249f9 743 switch (Config.Wccp2.assignment_method) {
0b0cfcf2 744
b7d249f9 745 case WCCP2_ASSIGNMENT_METHOD_HASH:
0b0cfcf2 746
b7d249f9 747 wccp2_here_i_am_header.length += sizeof(struct wccp2_identity_info_t);
748 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
749 wccp2_identity_info.cache_identity_type = htons(WCCP2_WC_ID_INFO);
750 wccp2_identity_info.cache_identity_length = htons(sizeof(wccp2_identity_info.cache_identity));
cc192b50 751 memset(&wccp2_identity_info.cache_identity.addr, '\0', sizeof(struct in_addr));
b7d249f9 752 memset(&wccp2_identity_info.cache_identity.hash_revision, '\0', sizeof(wccp2_identity_info.cache_identity.hash_revision));
753 memset(&wccp2_identity_info.cache_identity.bits, '\0', sizeof(wccp2_identity_info.cache_identity.bits));
754 memset(&wccp2_identity_info.cache_identity.buckets, '\0', sizeof(wccp2_identity_info.cache_identity.buckets));
755 wccp2_identity_info.cache_identity.weight = htons(Config.Wccp2.weight);
756 memset(&wccp2_identity_info.cache_identity.status, '\0', sizeof(wccp2_identity_info.cache_identity.status));
0b0cfcf2 757
41d00cd3 758 memcpy(ptr, &wccp2_identity_info, sizeof(struct wccp2_identity_info_t));
b7d249f9 759 service_list_ptr->wccp2_identity_info_ptr = ptr;
0b0cfcf2 760
b7d249f9 761 ptr += sizeof(struct wccp2_identity_info_t);
762 break;
0b0cfcf2 763
b7d249f9 764 case WCCP2_ASSIGNMENT_METHOD_MASK:
765
766 wccp2_here_i_am_header.length += sizeof(struct wccp2_mask_identity_info_t);
767 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
768 wccp2_mask_identity_info.cache_identity_type = htons(WCCP2_WC_ID_INFO);
769 wccp2_mask_identity_info.cache_identity_length = htons(sizeof(wccp2_mask_identity_info.cache_identity));
cc192b50 770 memset(&wccp2_mask_identity_info.cache_identity.addr, '\0', sizeof(struct in_addr));
85442144 771 wccp2_mask_identity_info.cache_identity.bits = htons(WCCP2_MASK_ASSIGNMENT_DATA);
c898ced1 772 wccp2_mask_identity_info.cache_identity.mask_element_count = htonl(1);
b7d249f9 773 service_flags = ntohl(service_list_ptr->service_info->service_flags);
774
c898ced1
AJ
775 memset(&wccp2_mask_identity_info.cache_identity.mask, 0, sizeof(struct wccp2_mask_element_t));
776
b7d249f9 777 if ((service_flags & WCCP2_SERVICE_SRC_IP_HASH) || (service_flags & WCCP2_SERVICE_SRC_IP_ALT_HASH)) {
c898ced1 778 wccp2_mask_identity_info.cache_identity.mask.source_ip_mask = htonl(0x00001741);
b7d249f9 779 } else if ((service_list_ptr->info.service == WCCP2_SERVICE_STANDARD) || (service_flags & WCCP2_SERVICE_DST_IP_HASH) || (service_flags & WCCP2_SERVICE_DST_IP_ALT_HASH)) {
c898ced1 780 wccp2_mask_identity_info.cache_identity.mask.dest_ip_mask = htonl(0x00001741);
b7d249f9 781 } else if ((service_flags & WCCP2_SERVICE_SRC_PORT_HASH) || (service_flags & WCCP2_SERVICE_SRC_PORT_ALT_HASH)) {
c898ced1 782 wccp2_mask_identity_info.cache_identity.mask.source_port_mask = htons(0x1741);
b7d249f9 783 } else if ((service_flags & WCCP2_SERVICE_DST_PORT_HASH) || (service_flags & WCCP2_SERVICE_DST_PORT_ALT_HASH)) {
c898ced1 784 wccp2_mask_identity_info.cache_identity.mask.dest_port_mask = htons(0x1741);
b7d249f9 785 } else {
786 fatalf("Unknown service hash method\n");
787 }
0b0cfcf2 788
c898ced1
AJ
789 wccp2_mask_identity_info.cache_identity.weight = 0;
790 wccp2_mask_identity_info.cache_identity.status = 0;
0b0cfcf2 791
41d00cd3 792 memcpy(ptr, &wccp2_mask_identity_info, sizeof(struct wccp2_mask_identity_info_t));
b7d249f9 793 service_list_ptr->wccp2_identity_info_ptr = ptr;
0b0cfcf2 794
b7d249f9 795 ptr += sizeof(struct wccp2_mask_identity_info_t);
796 break;
0b0cfcf2 797
b7d249f9 798 default:
799 fatalf("Unknown Wccp2 assignment method\n");
800 }
0b0cfcf2 801
802 /* Add the cache view section */
803 wccp2_here_i_am_header.length += sizeof(wccp2_cache_view_header);
804
805 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
806
807 wccp2_cache_view_header.cache_view_type = htons(WCCP2_WC_VIEW_INFO);
808
809 wccp2_cache_view_header.cache_view_length = htons(sizeof(wccp2_cache_view_header) - 4 +
810 sizeof(wccp2_cache_view_info) + (wccp2_numrouters * sizeof(wccp2_router_id_element)));
811
812 wccp2_cache_view_header.cache_view_version = htonl(1);
813
41d00cd3 814 memcpy(ptr, &wccp2_cache_view_header, sizeof(wccp2_cache_view_header));
0b0cfcf2 815
816 ptr += sizeof(wccp2_cache_view_header);
817
818 /* Add the number of routers to the packet */
819 wccp2_here_i_am_header.length += sizeof(service_list_ptr->num_routers);
820
821 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
822
823 service_list_ptr->num_routers = htonl(wccp2_numrouters);
824
41d00cd3 825 memcpy(ptr, &service_list_ptr->num_routers, sizeof(service_list_ptr->num_routers));
0b0cfcf2 826
827 ptr += sizeof(service_list_ptr->num_routers);
828
829 /* Add each router. Keep this functionality here to make sure the received_id can be updated in the packet */
830 for (s = Config.Wccp2.router; s; s = s->next) {
4dd643d5 831 if (!s->s.isAnyAddr()) {
0b0cfcf2 832
833 wccp2_here_i_am_header.length += sizeof(struct wccp2_router_id_element_t);
834 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
835
836 /* Add a pointer to the router list for this router */
837
838 router_list_ptr->info = (struct wccp2_router_id_element_t *) ptr;
4dd643d5 839 s->s.getInAddr(router_list_ptr->info->router_address);
0b0cfcf2 840 router_list_ptr->info->received_id = htonl(0);
4dd643d5 841 s->s.getInAddr(router_list_ptr->router_sendto_address);
0b0cfcf2 842 router_list_ptr->member_change = htonl(0);
843
844 /* Build the next struct */
845
846 router_list_ptr->next = (wccp2_router_list_t*) xcalloc(1, sizeof(struct wccp2_router_list_t));
847
848 /* update the pointer */
849 router_list_ptr = router_list_ptr->next;
850 router_list_ptr->next = NULL;
851
852 /* no need to copy memory - we've just set the values directly in the packet above */
853
854 ptr += sizeof(struct wccp2_router_id_element_t);
855 }
856 }
857
858 /* Add the number of caches (0) */
859 wccp2_here_i_am_header.length += sizeof(wccp2_cache_view_info.num_caches);
860
861 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
862
863 wccp2_cache_view_info.num_caches = htonl(0);
864
41d00cd3 865 memcpy(ptr, &wccp2_cache_view_info.num_caches, sizeof(wccp2_cache_view_info.num_caches));
0b0cfcf2 866
867 ptr += sizeof(wccp2_cache_view_info.num_caches);
868
869 /* Add the extra capability header */
870 wccp2_here_i_am_header.length += sizeof(wccp2_capability_info_header);
871
872 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
873
874 wccp2_capability_info_header.capability_info_type = htons(WCCP2_CAPABILITY_INFO);
875
c1f55201 876 wccp2_capability_info_header.capability_info_length = htons(3 * sizeof(wccp2_capability_element));
0b0cfcf2 877
41d00cd3 878 memcpy(ptr, &wccp2_capability_info_header, sizeof(wccp2_capability_info_header));
0b0cfcf2 879
880 ptr += sizeof(wccp2_capability_info_header);
881
882 /* Add the forwarding method */
883 wccp2_here_i_am_header.length += sizeof(wccp2_capability_element);
884
885 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
886
887 wccp2_capability_element.capability_type = htons(WCCP2_CAPABILITY_FORWARDING_METHOD);
888
889 wccp2_capability_element.capability_length = htons(sizeof(wccp2_capability_element.capability_value));
890
891 wccp2_capability_element.capability_value = htonl(Config.Wccp2.forwarding_method);
892
41d00cd3 893 memcpy(ptr, &wccp2_capability_element, sizeof(wccp2_capability_element));
0b0cfcf2 894
895 ptr += sizeof(wccp2_capability_element);
896
c1f55201 897 /* Add the assignment method */
898 wccp2_here_i_am_header.length += sizeof(wccp2_capability_element);
899
900 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
901
902 wccp2_capability_element.capability_type = htons(WCCP2_CAPABILITY_ASSIGNMENT_METHOD);
903
904 wccp2_capability_element.capability_length = htons(sizeof(wccp2_capability_element.capability_value));
905
b7d249f9 906 wccp2_capability_element.capability_value = htonl(Config.Wccp2.assignment_method);
c1f55201 907
41d00cd3 908 memcpy(ptr, &wccp2_capability_element, sizeof(wccp2_capability_element));
c1f55201 909
910 ptr += sizeof(wccp2_capability_element);
911
0b0cfcf2 912 /* Add the return method */
913 wccp2_here_i_am_header.length += sizeof(wccp2_capability_element);
914
915 assert(wccp2_here_i_am_header.length <= WCCP_RESPONSE_SIZE);
916
917 wccp2_capability_element.capability_type = htons(WCCP2_CAPABILITY_RETURN_METHOD);
918
919 wccp2_capability_element.capability_length = htons(sizeof(wccp2_capability_element.capability_value));
920
921 wccp2_capability_element.capability_value = htonl(Config.Wccp2.return_method);
922
41d00cd3 923 memcpy(ptr, &wccp2_capability_element, sizeof(wccp2_capability_element));
0b0cfcf2 924
925 ptr += sizeof(wccp2_capability_element);
926
927 /* Finally, fix the total length to network order, and copy to the appropriate memory blob */
928 wccp2_here_i_am_header.length = htons(wccp2_here_i_am_header.length);
929
930 memcpy(&service_list_ptr->wccp_packet, &wccp2_here_i_am_header, sizeof(wccp2_here_i_am_header));
931
932 service_list_ptr->wccp_packet_size = ntohs(wccp2_here_i_am_header.length) + sizeof(wccp2_here_i_am_header);
933
934 /* Add the event if everything initialised correctly */
51676485 935 debugs(80,3,"wccp2Init: scheduled 'HERE_I_AM' message to " << wccp2_numrouters << "routers.");
0b0cfcf2 936 if (wccp2_numrouters) {
937 if (!eventFind(wccp2HereIam, NULL)) {
938 eventAdd("wccp2HereIam", wccp2HereIam, NULL, 1, 1);
af6a12ee 939 } else
51676485 940 debugs(80,3,"wccp2Init: skip duplicate 'HERE_I_AM'.");
0b0cfcf2 941 }
942
943 service_list_ptr = service_list_ptr->next;
944 }
945}
946
947void
948wccp2ConnectionOpen(void)
949{
c1f55201 950 struct sockaddr_in router, local, null;
0b0cfcf2 951 socklen_t local_len, router_len;
952
953 struct wccp2_service_list_t *service_list_ptr;
954
955 struct wccp2_router_list_t *router_list_ptr;
956
bf8fe701 957 debugs(80, 5, "wccp2ConnectionOpen: Called");
0b0cfcf2 958
959 if (wccp2_numrouters == 0 || !wccp2_service_list_head) {
30c48b1a 960 debugs(80, 2, "WCCPv2 Disabled. No IPv4 Router(s) configured.");
0b0cfcf2 961 return;
962 }
963
4dd643d5 964 if ( !Config.Wccp2.address.setIPv4() ) {
30c48b1a 965 debugs(80, DBG_CRITICAL, "WCCPv2 Disabled. Local address " << Config.Wccp2.address << " is not an IPv4 address.");
cc192b50 966 return;
967 }
968
4dd643d5 969 Config.Wccp2.address.port(WCCP_PORT);
31be869c 970 theWccp2Connection = comm_open_listener(SOCK_DGRAM,
04f7fd38
AJ
971 0,
972 Config.Wccp2.address,
973 COMM_NONBLOCKING,
974 "WCCPv2 Socket");
0b0cfcf2 975
976 if (theWccp2Connection < 0)
977 fatal("Cannot open WCCP Port");
978
85d25b95 979#if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
980 {
981 int i = IP_PMTUDISC_DONT;
b69e9ffa
AJ
982 if (setsockopt(theWccp2Connection, SOL_IP, IP_MTU_DISCOVER, &i, sizeof i) < 0) {
983 int xerrno = errno;
984 debugs(80, 2, "WARNING: Path MTU discovery could not be disabled on FD " << theWccp2Connection << ": " << xstrerr(xerrno));
985 }
85d25b95 986 }
987
988#endif
d841c88d 989 Comm::SetSelect(theWccp2Connection, COMM_SELECT_READ, wccp2HandleUdp, NULL, 0);
0b0cfcf2 990
e0236918
FC
991 debugs(80, DBG_IMPORTANT, "Accepting WCCPv2 messages on port " << WCCP_PORT << ", FD " << theWccp2Connection << ".");
992 debugs(80, DBG_IMPORTANT, "Initialising all WCCPv2 lists");
0b0cfcf2 993
994 /* Initialise all routers on all services */
c1f55201 995 memset(&null, 0, sizeof(null));
996
997 null.sin_family = AF_UNSPEC;
998
0b0cfcf2 999 service_list_ptr = wccp2_service_list_head;
1000
1001 while (service_list_ptr != NULL) {
1002 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr->next != NULL; router_list_ptr = router_list_ptr->next) {
1003 router_len = sizeof(router);
1004 memset(&router, '\0', router_len);
1005 router.sin_family = AF_INET;
cc192b50 1006 router.sin_port = htons(WCCP_PORT);
0b0cfcf2 1007 router.sin_addr = router_list_ptr->router_sendto_address;
1008
1009 if (connect(theWccp2Connection, (struct sockaddr *) &router, router_len))
1010 fatal("Unable to connect WCCP out socket");
1011
1012 local_len = sizeof(local);
1013
1014 memset(&local, '\0', local_len);
1015
1016 if (getsockname(theWccp2Connection, (struct sockaddr *) &local, &local_len))
1017 fatal("Unable to getsockname on WCCP out socket");
1018
1019 router_list_ptr->local_ip = local.sin_addr;
1020
c1f55201 1021 /* Disconnect the sending socket. Note: FreeBSD returns error
1022 * but disconnects anyway so we have to just assume it worked
1023 */
182106f3
AJ
1024 if (wccp2_numrouters > 1) {
1025 (void)connect(theWccp2Connection, (struct sockaddr *) &null, router_len);
1026 }
0b0cfcf2 1027 }
1028
1029 service_list_ptr = service_list_ptr->next;
1030 }
1031
0b0cfcf2 1032 wccp2_connected = 1;
1033}
1034
1035void
1036wccp2ConnectionClose(void)
1037{
1038
1039 struct wccp2_service_list_t *service_list_ptr;
1040
1041 struct wccp2_service_list_t *service_list_ptr_next;
1042
1043 struct wccp2_router_list_t *router_list_ptr;
1044
1045 struct wccp2_router_list_t *router_list_next;
1046
1047 struct wccp2_cache_list_t *cache_list_ptr;
1048
1049 struct wccp2_cache_list_t *cache_list_ptr_next;
1050
1051 if (wccp2_connected == 0) {
1052 return;
1053 }
1054
a527a95c
AJ
1055 /* TODO A shutting-down cache should generate a removal query, informing the router
1056 * (and therefore the caches in the group) that this cache is going
1057 * away and no new traffic should be forwarded to it.
1058 */
1059
0b0cfcf2 1060 if (theWccp2Connection > -1) {
e0236918 1061 debugs(80, DBG_IMPORTANT, "FD " << theWccp2Connection << " Closing WCCPv2 socket");
0b0cfcf2 1062 comm_close(theWccp2Connection);
1063 theWccp2Connection = -1;
1064 }
1065
a527a95c 1066 /* free all stored router state */
0b0cfcf2 1067 service_list_ptr = wccp2_service_list_head;
1068
1069 while (service_list_ptr != NULL) {
1070 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr != NULL; router_list_ptr = router_list_next) {
1071 for (cache_list_ptr = &router_list_ptr->cache_list_head; cache_list_ptr; cache_list_ptr = cache_list_ptr_next) {
1072 cache_list_ptr_next = cache_list_ptr->next;
1073
1074 if (cache_list_ptr != &router_list_ptr->cache_list_head) {
1075 xfree(cache_list_ptr);
1076 } else {
1077
1078 memset(cache_list_ptr, '\0', sizeof(struct wccp2_cache_list_t));
1079 }
1080 }
1081
1082 router_list_next = router_list_ptr->next;
1083
1084 if (router_list_ptr != &service_list_ptr->router_list_head) {
1085 xfree(router_list_ptr);
1086 } else {
1087
1088 memset(router_list_ptr, '\0', sizeof(struct wccp2_router_list_t));
1089 }
1090 }
1091
1092 service_list_ptr_next = service_list_ptr->next;
1093 xfree(service_list_ptr);
1094 service_list_ptr = service_list_ptr_next;
1095 }
1096
1097 wccp2_service_list_head = NULL;
1098 eventDelete(wccp2HereIam, NULL);
1099 eventDelete(wccp2AssignBuckets, NULL);
1100 eventDelete(wccp2HereIam, NULL);
1101 wccp2_connected = 0;
1102}
1103
1104/*
1105 * Functions for handling the requests.
1106 */
1107
1108/*
1109 * Accept the UDP packet
1110 */
1111static void
ced8def3 1112wccp2HandleUdp(int sock, void *)
0b0cfcf2 1113{
0b0cfcf2 1114 struct wccp2_service_list_t *service_list_ptr;
1115
1116 struct wccp2_router_list_t *router_list_ptr;
1117
1118 struct wccp2_cache_list_t *cache_list_ptr;
1119
1120 struct wccp2_cache_list_t *cache_list_ptr_next;
1121
1122 /* These structs form the parts of the packet */
1123
1124 struct wccp2_item_header_t *header = NULL;
1125
1126 struct wccp2_security_none_t *security_info = NULL;
1127
1128 struct wccp2_service_info_t *service_info = NULL;
1129
1130 struct router_identity_info_t *router_identity_info = NULL;
1131
1132 struct router_view_t *router_view_header = NULL;
1133
b7d249f9 1134 struct wccp2_cache_mask_identity_info_t *cache_mask_identity = NULL;
1135
1136 struct cache_mask_info_t *cache_mask_info = NULL;
1137
0b0cfcf2 1138 struct wccp2_cache_identity_info_t *cache_identity = NULL;
1139
1140 struct wccp2_capability_info_header_t *router_capability_header = NULL;
1141
1142 struct wccp2_capability_element_t *router_capability_element;
1143
1144 struct sockaddr_in from;
1145
2adffc6f 1146 struct in_addr cache_address;
0b0cfcf2 1147 int len, found;
1148 short int data_length, offset;
1149 uint32_t tmp;
1150 char *ptr;
1151 int num_caches;
0b0cfcf2 1152
bf8fe701 1153 debugs(80, 6, "wccp2HandleUdp: Called.");
0b0cfcf2 1154
d841c88d 1155 Comm::SetSelect(sock, COMM_SELECT_READ, wccp2HandleUdp, NULL, 0);
0b0cfcf2 1156
26ac0430 1157 /* FIXME INET6 : drop conversion boundary */
b7ac5457 1158 Ip::Address from_tmp;
cbd5aee3 1159 from_tmp.setIPv4();
0b0cfcf2 1160
1161 len = comm_udp_recvfrom(sock,
1162 &wccp2_i_see_you,
1163 WCCP_RESPONSE_SIZE,
1164 0,
cc192b50 1165 from_tmp);
0b0cfcf2 1166
1167 if (len < 0)
1168 return;
1169
1170 if (ntohs(wccp2_i_see_you.version) != WCCP2_VERSION)
1171 return;
1172
1173 if (ntohl(wccp2_i_see_you.type) != WCCP2_I_SEE_YOU)
1174 return;
1175
cbd5aee3
AJ
1176 /* FIXME INET6 : drop conversion boundary */
1177 from_tmp.getSockAddr(from);
1178
bf8fe701 1179 debugs(80, 3, "Incoming WCCPv2 I_SEE_YOU length " << ntohs(wccp2_i_see_you.length) << ".");
0b0cfcf2 1180
1181 /* Record the total data length */
1182 data_length = ntohs(wccp2_i_see_you.length);
1183
1184 offset = 0;
1185
1186 if (data_length > len) {
e0236918 1187 debugs(80, DBG_IMPORTANT, "ERROR: Malformed WCCPv2 packet claiming it's bigger than received data");
0b0cfcf2 1188 return;
1189 }
1190
1191 /* Go through the data structure */
1192 while (data_length > offset) {
1193
af6a12ee 1194 char *data = wccp2_i_see_you.data;
c6ba4504
HN
1195
1196 header = (struct wccp2_item_header_t *) &data[offset];
0b0cfcf2 1197
1198 switch (ntohs(header->type)) {
1199
1200 case WCCP2_SECURITY_INFO:
1201
1202 if (security_info != NULL) {
e0236918 1203 debugs(80, DBG_IMPORTANT, "Duplicate security definition");
0b0cfcf2 1204 return;
1205 }
1206
1207 security_info = (struct wccp2_security_none_t *) &wccp2_i_see_you.data[offset];
1208 break;
1209
1210 case WCCP2_SERVICE_INFO:
1211
1212 if (service_info != NULL) {
e0236918 1213 debugs(80, DBG_IMPORTANT, "Duplicate service_info definition");
0b0cfcf2 1214 return;
1215 }
1216
1217 service_info = (struct wccp2_service_info_t *) &wccp2_i_see_you.data[offset];
1218 break;
1219
1220 case WCCP2_ROUTER_ID_INFO:
1221
1222 if (router_identity_info != NULL) {
e0236918 1223 debugs(80, DBG_IMPORTANT, "Duplicate router_identity_info definition");
0b0cfcf2 1224 return;
1225 }
1226
1227 router_identity_info = (struct router_identity_info_t *) &wccp2_i_see_you.data[offset];
1228 break;
1229
1230 case WCCP2_RTR_VIEW_INFO:
1231
1232 if (router_view_header != NULL) {
e0236918 1233 debugs(80, DBG_IMPORTANT, "Duplicate router_view definition");
0b0cfcf2 1234 return;
1235 }
1236
1237 router_view_header = (struct router_view_t *) &wccp2_i_see_you.data[offset];
1238 break;
1239
1240 case WCCP2_CAPABILITY_INFO:
1241
1242 if (router_capability_header != NULL) {
e0236918 1243 debugs(80, DBG_IMPORTANT, "Duplicate router_capability definition");
0b0cfcf2 1244 return;
1245 }
1246
1247 router_capability_header = (struct wccp2_capability_info_header_t *) &wccp2_i_see_you.data[offset];
c1f55201 1248 break;
0b0cfcf2 1249
f53969cc 1250 /* Nothing to do for the types below */
b7d249f9 1251
1252 case WCCP2_ASSIGN_MAP:
40228366 1253 case WCCP2_REDIRECT_ASSIGNMENT:
b7d249f9 1254 break;
1255
0b0cfcf2 1256 default:
e0236918 1257 debugs(80, DBG_IMPORTANT, "Unknown record type in WCCPv2 Packet (" << ntohs(header->type) << ").");
0b0cfcf2 1258 }
1259
1260 offset += sizeof(struct wccp2_item_header_t);
1261 offset += ntohs(header->length);
1262
1263 if (offset > data_length) {
e0236918 1264 debugs(80, DBG_IMPORTANT, "Error: WCCPv2 packet tried to tell us there is data beyond the end of the packet");
0b0cfcf2 1265 return;
1266 }
1267 }
1268
1269 if ((security_info == NULL) || (service_info == NULL) || (router_identity_info == NULL) || (router_view_header == NULL)) {
e0236918 1270 debugs(80, DBG_IMPORTANT, "Incomplete WCCPv2 Packet");
0b0cfcf2 1271 return;
1272 }
1273
bf8fe701 1274 debugs(80, 5, "Complete packet received");
0b0cfcf2 1275
1276 /* Check that the service in the packet is configured on this router */
1277 service_list_ptr = wccp2_service_list_head;
1278
1279 while (service_list_ptr != NULL) {
1280 if (service_info->service_id == service_list_ptr->service_info->service_id) {
1281 break;
1282 }
1283
1284 service_list_ptr = service_list_ptr->next;
1285 }
1286
1287 if (service_list_ptr == NULL) {
e0236918 1288 debugs(80, DBG_IMPORTANT, "WCCPv2 Unknown service received from router (" << service_info->service_id << ")");
0b0cfcf2 1289 return;
1290 }
1291
1292 if (ntohl(security_info->security_option) != ntohl(service_list_ptr->security_info->security_option)) {
e0236918 1293 debugs(80, DBG_IMPORTANT, "Invalid security option in WCCPv2 Packet (" << ntohl(security_info->security_option) << " vs " << ntohl(service_list_ptr->security_info->security_option) << ").");
0b0cfcf2 1294 return;
1295 }
1296
1297 if (!wccp2_check_security(service_list_ptr, (char *) security_info, (char *) &wccp2_i_see_you, len)) {
e0236918 1298 debugs(80, DBG_IMPORTANT, "Received WCCPv2 Packet failed authentication");
0b0cfcf2 1299 return;
1300 }
1301
1302 /* Check that the router address is configured on this router */
1303 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr->next != NULL; router_list_ptr = router_list_ptr->next) {
1304 if (router_list_ptr->router_sendto_address.s_addr == from.sin_addr.s_addr)
1305 break;
1306 }
1307
1308 if (router_list_ptr->next == NULL) {
e0236918 1309 debugs(80, DBG_IMPORTANT, "WCCPv2 Packet received from unknown router");
0b0cfcf2 1310 return;
1311 }
1312
1313 /* Set the router id */
1314 router_list_ptr->info->router_address = router_identity_info->router_id_element.router_address;
1315
1316 /* Increment the received id in the packet */
1317 if (ntohl(router_list_ptr->info->received_id) != ntohl(router_identity_info->router_id_element.received_id)) {
6013702c 1318 debugs(80, 3, "Incoming WCCP2_I_SEE_YOU Received ID old=" << ntohl(router_list_ptr->info->received_id) << " new=" << ntohl(router_identity_info->router_id_element.received_id) << ".");
0b0cfcf2 1319 router_list_ptr->info->received_id = router_identity_info->router_id_element.received_id;
1320 }
1321
1322 /* TODO: check return/forwarding methods */
1323 if (router_capability_header == NULL) {
c1f55201 1324 if ((Config.Wccp2.return_method != WCCP2_PACKET_RETURN_METHOD_GRE) || (Config.Wccp2.forwarding_method != WCCP2_FORWARDING_METHOD_GRE)) {
e0236918 1325 debugs(80, DBG_IMPORTANT, "wccp2HandleUdp: fatal error - A WCCP router does not support the forwarding method specified, only GRE supported");
0b0cfcf2 1326 wccp2ConnectionClose();
1327 return;
1328 }
1329 } else {
0b0cfcf2 1330
c1f55201 1331 char *end = ((char *) router_capability_header) + sizeof(*router_capability_header) + ntohs(router_capability_header->capability_info_length) - sizeof(struct wccp2_capability_info_header_t);
1332
1333 router_capability_element = (struct wccp2_capability_element_t *) (((char *) router_capability_header) + sizeof(*router_capability_header));
0b0cfcf2 1334
c1f55201 1335 while ((char *) router_capability_element <= end) {
0b0cfcf2 1336
1337 switch (ntohs(router_capability_element->capability_type)) {
1338
1339 case WCCP2_CAPABILITY_FORWARDING_METHOD:
1340
c1f55201 1341 if (!(ntohl(router_capability_element->capability_value) & Config.Wccp2.forwarding_method)) {
e0236918 1342 debugs(80, DBG_IMPORTANT, "wccp2HandleUdp: fatal error - A WCCP router has specified a different forwarding method " << ntohl(router_capability_element->capability_value) << ", expected " << Config.Wccp2.forwarding_method);
0b0cfcf2 1343 wccp2ConnectionClose();
1344 return;
1345 }
1346
1347 break;
1348
1349 case WCCP2_CAPABILITY_ASSIGNMENT_METHOD:
c1f55201 1350
b7d249f9 1351 if (!(ntohl(router_capability_element->capability_value) & Config.Wccp2.assignment_method)) {
e0236918 1352 debugs(80, DBG_IMPORTANT, "wccp2HandleUdp: fatal error - A WCCP router has specified a different assignment method " << ntohl(router_capability_element->capability_value) << ", expected "<< Config.Wccp2.assignment_method);
c1f55201 1353 wccp2ConnectionClose();
1354 return;
1355 }
1356
0b0cfcf2 1357 break;
1358
1359 case WCCP2_CAPABILITY_RETURN_METHOD:
1360
c1f55201 1361 if (!(ntohl(router_capability_element->capability_value) & Config.Wccp2.return_method)) {
e0236918 1362 debugs(80, DBG_IMPORTANT, "wccp2HandleUdp: fatal error - A WCCP router has specified a different return method " << ntohl(router_capability_element->capability_value) << ", expected " << Config.Wccp2.return_method);
0b0cfcf2 1363 wccp2ConnectionClose();
1364 return;
1365 }
1366
1367 break;
1368
43f3d687
AJ
1369 case 4:
1370 case 5:
1371 break; // ignore silently for now
1372
0b0cfcf2 1373 default:
e0236918 1374 debugs(80, DBG_IMPORTANT, "Unknown capability type in WCCPv2 Packet (" << ntohs(router_capability_element->capability_type) << ").");
0b0cfcf2 1375 }
c1f55201 1376
c898ced1 1377 router_capability_element = (struct wccp2_capability_element_t *) (((char *) router_capability_element) + sizeof(struct wccp2_item_header_t) + ntohs(router_capability_element->capability_length));
0b0cfcf2 1378 }
1379 }
1380
bf8fe701 1381 debugs(80, 5, "Cleaning out cache list");
0b0cfcf2 1382 /* clean out the old cache list */
1383
1384 for (cache_list_ptr = &router_list_ptr->cache_list_head; cache_list_ptr; cache_list_ptr = cache_list_ptr_next) {
1385 cache_list_ptr_next = cache_list_ptr->next;
1386
1387 if (cache_list_ptr != &router_list_ptr->cache_list_head) {
1388 xfree(cache_list_ptr);
1389 }
1390 }
1391
1392 router_list_ptr->num_caches = htonl(0);
1393 num_caches = 0;
1394
1395 /* Check to see if we're the master cache and update the cache list */
1396 found = 0;
1397 service_list_ptr->lowest_ip = 1;
1398 cache_list_ptr = &router_list_ptr->cache_list_head;
1399
1400 /* to find the list of caches, we start at the end of the router view header */
1401
1402 ptr = (char *) (router_view_header) + sizeof(struct router_view_t);
1403
1404 /* Then we read the number of routers */
1405 memcpy(&tmp, ptr, sizeof(tmp));
1406
1407 /* skip the number plus all the ip's */
1408
2adffc6f 1409 ptr += sizeof(tmp) + (ntohl(tmp) * sizeof(struct in_addr));
0b0cfcf2 1410
1411 /* Then read the number of caches */
1412 memcpy(&tmp, ptr, sizeof(tmp));
1413 ptr += sizeof(tmp);
1414
1415 if (ntohl(tmp) != 0) {
1416 /* search through the list of received-from ip addresses */
1417
14942edd 1418 for (num_caches = 0; num_caches < (int) ntohl(tmp); ++num_caches) {
0b0cfcf2 1419 /* Get a copy of the ip */
af6a12ee 1420 memset(&cache_address, 0, sizeof(cache_address)); // Make GCC happy
0b0cfcf2 1421
b7d249f9 1422 switch (Config.Wccp2.assignment_method) {
1423
1424 case WCCP2_ASSIGNMENT_METHOD_HASH:
1425
1426 cache_identity = (struct wccp2_cache_identity_info_t *) ptr;
1427
1428 ptr += sizeof(struct wccp2_cache_identity_info_t);
1429
2adffc6f 1430 memcpy(&cache_address, &cache_identity->addr, sizeof(struct in_addr));
b7d249f9 1431
1432 cache_list_ptr->weight = ntohs(cache_identity->weight);
1433 break;
1434
1435 case WCCP2_ASSIGNMENT_METHOD_MASK:
1436
1437 cache_mask_info = (struct cache_mask_info_t *) ptr;
1438
1439 /* The mask assignment has an undocumented variable length entry here */
1440
1441 if (ntohl(cache_mask_info->num1) == 3) {
1442
1443 cache_mask_identity = (struct wccp2_cache_mask_identity_info_t *) ptr;
1444
1445 ptr += sizeof(struct wccp2_cache_mask_identity_info_t);
0b0cfcf2 1446
2adffc6f 1447 memcpy(&cache_address, &cache_mask_identity->addr, sizeof(struct in_addr));
b7d249f9 1448 } else {
1449
1450 ptr += sizeof(struct cache_mask_info_t);
1451
2adffc6f 1452 memcpy(&cache_address, &cache_mask_info->addr, sizeof(struct in_addr));
b7d249f9 1453 }
0b0cfcf2 1454
b7d249f9 1455 cache_list_ptr->weight = 0;
1456 break;
1457
1458 default:
1459 fatalf("Unknown Wccp2 assignment method\n");
1460 }
0b0cfcf2 1461
1462 /* Update the cache list */
1463 cache_list_ptr->cache_ip = cache_address;
b7d249f9 1464
0b0cfcf2 1465 cache_list_ptr->next = (wccp2_cache_list_t*) xcalloc(1, sizeof(struct wccp2_cache_list_t));
b7d249f9 1466
0b0cfcf2 1467 cache_list_ptr = cache_list_ptr->next;
b7d249f9 1468
0b0cfcf2 1469 cache_list_ptr->next = NULL;
1470
bf8fe701 1471 debugs (80, 5, "checking cache list: (" << std::hex << cache_address.s_addr << ":" << router_list_ptr->local_ip.s_addr << ")");
b7d249f9 1472
0b0cfcf2 1473 /* Check to see if it's the master, or us */
1474
1475 if (cache_address.s_addr == router_list_ptr->local_ip.s_addr) {
1476 found = 1;
1477 }
1478
1479 if (cache_address.s_addr < router_list_ptr->local_ip.s_addr) {
1480 service_list_ptr->lowest_ip = 0;
1481 }
1482 }
1483 } else {
bf8fe701 1484 debugs(80, 5, "Adding ourselves as the only cache");
0b0cfcf2 1485
1486 /* Update the cache list */
1487 cache_list_ptr->cache_ip = router_list_ptr->local_ip;
1488
1489 cache_list_ptr->next = (wccp2_cache_list_t*) xcalloc(1, sizeof(struct wccp2_cache_list_t));
1490 cache_list_ptr = cache_list_ptr->next;
1491 cache_list_ptr->next = NULL;
1492
b7d249f9 1493 service_list_ptr->lowest_ip = 1;
0b0cfcf2 1494 found = 1;
1495 num_caches = 1;
1496 }
1497
264096e2 1498 wccp2SortCacheList(&router_list_ptr->cache_list_head);
1499
0b0cfcf2 1500 router_list_ptr->num_caches = htonl(num_caches);
1501
1502 if ((found == 1) && (service_list_ptr->lowest_ip == 1)) {
1503 if (ntohl(router_view_header->change_number) != router_list_ptr->member_change) {
bf8fe701 1504 debugs(80, 4, "Change detected - queueing up new assignment");
0b0cfcf2 1505 router_list_ptr->member_change = ntohl(router_view_header->change_number);
c1f55201 1506 eventDelete(wccp2AssignBuckets, NULL);
1507 eventAdd("wccp2AssignBuckets", wccp2AssignBuckets, NULL, 15.0, 1);
b7d249f9 1508 } else {
4a7a3d56 1509 debugs(80, 5, "Change not detected (" << ntohl(router_view_header->change_number) << " = " << router_list_ptr->member_change << ")");
0b0cfcf2 1510 }
1511 } else {
b7d249f9 1512 eventDelete(wccp2AssignBuckets, NULL);
bf8fe701 1513 debugs(80, 5, "I am not the lowest ip cache - not assigning buckets");
0b0cfcf2 1514 }
1515}
1516
1517static void
ced8def3 1518wccp2HereIam(void *)
0b0cfcf2 1519{
0b0cfcf2 1520 struct wccp2_service_list_t *service_list_ptr;
1521
1522 struct wccp2_router_list_t *router_list_ptr;
1523
b7d249f9 1524 struct wccp2_identity_info_t *wccp2_identity_info_ptr;
1525
1526 struct wccp2_mask_identity_info_t *wccp2_mask_identity_info_ptr;
1527
b7ac5457 1528 Ip::Address router;
0b0cfcf2 1529
bf8fe701 1530 debugs(80, 6, "wccp2HereIam: Called");
0b0cfcf2 1531
1532 if (wccp2_connected == 0) {
e0236918 1533 debugs(80, DBG_IMPORTANT, "wccp2HereIam: wccp2 socket closed. Shutting down WCCP2");
0b0cfcf2 1534 return;
1535 }
1536
bef81ea5 1537 /* Wait if store dirs are rebuilding */
1538 if (StoreController::store_dirs_rebuilding && Config.Wccp2.rebuildwait) {
f67332d3 1539 eventAdd("wccp2HereIam", wccp2HereIam, NULL, 1.0, 1);
1540 return;
1541 }
1542
4dd643d5 1543 router.port(WCCP_PORT);
0b0cfcf2 1544
1545 /* for each router on each service send a packet */
1546 service_list_ptr = wccp2_service_list_head;
1547
1548 while (service_list_ptr != NULL) {
bf8fe701 1549 debugs(80, 5, "wccp2HereIam: sending to service id " << service_list_ptr->info.service_id);
0b0cfcf2 1550
1551 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr->next != NULL; router_list_ptr = router_list_ptr->next) {
cc192b50 1552 router = router_list_ptr->router_sendto_address;
0b0cfcf2 1553
1554 /* Set the cache id (ip) */
b7d249f9 1555
1556 switch (Config.Wccp2.assignment_method) {
1557
1558 case WCCP2_ASSIGNMENT_METHOD_HASH:
1559
1560 wccp2_identity_info_ptr = (struct wccp2_identity_info_t *) service_list_ptr->wccp2_identity_info_ptr;
1561 wccp2_identity_info_ptr->cache_identity.addr = router_list_ptr->local_ip;
1562 break;
1563
1564 case WCCP2_ASSIGNMENT_METHOD_MASK:
1565
1566 wccp2_mask_identity_info_ptr = (struct wccp2_mask_identity_info_t *) service_list_ptr->wccp2_identity_info_ptr;
1567 wccp2_mask_identity_info_ptr->cache_identity.addr = router_list_ptr->local_ip;
1568 break;
1569
1570 default:
1571 fatalf("Unknown Wccp2 assignment method\n");
1572 }
1573
0b0cfcf2 1574 /* Security update, if needed */
1575
1576 if (service_list_ptr->wccp2_security_type == WCCP2_MD5_SECURITY) {
1577 wccp2_update_md5_security(service_list_ptr->wccp_password, (char *) service_list_ptr->security_info, service_list_ptr->wccp_packet, service_list_ptr->wccp_packet_size);
1578 }
1579
4a7a3d56 1580 debugs(80, 3, "Sending HereIam packet size " << service_list_ptr->wccp_packet_size);
0b0cfcf2 1581 /* Send the packet */
0b0cfcf2 1582
c1f55201 1583 if (wccp2_numrouters > 1) {
1584 comm_udp_sendto(theWccp2Connection,
cc192b50 1585 router,
c1f55201 1586 &service_list_ptr->wccp_packet,
1587 service_list_ptr->wccp_packet_size);
1588 } else {
b69e9ffa
AJ
1589 if (send(theWccp2Connection, &service_list_ptr->wccp_packet, service_list_ptr->wccp_packet_size, 0) < static_cast<int>(service_list_ptr->wccp_packet_size)) {
1590 int xerrno = errno;
1591 debugs(80, 2, "ERROR: failed to send WCCPv2 HERE_I_AM packet to " << router << " : " << xstrerr(xerrno));
1592 }
c1f55201 1593 }
0b0cfcf2 1594 }
1595
1596 service_list_ptr = service_list_ptr->next;
1597 }
1598
f67332d3 1599 eventAdd("wccp2HereIam", wccp2HereIam, NULL, 10.0, 1);
0b0cfcf2 1600}
1601
1602static void
ced8def3 1603wccp2AssignBuckets(void *)
0b0cfcf2 1604{
0b0cfcf2 1605 struct wccp2_service_list_t *service_list_ptr;
1606
1607 struct wccp2_router_list_t *router_list_ptr;
1608
1609 struct wccp2_cache_list_t *cache_list_ptr;
1610 char wccp_packet[WCCP_RESPONSE_SIZE];
b7d249f9 1611 short int offset, saved_offset, assignment_offset, alt_assignment_offset;
0b0cfcf2 1612
1613 struct sockaddr_in router;
1614 int router_len;
1615 int bucket_counter;
b7d249f9 1616 uint32_t service_flags;
f45dd259 1617 unsigned short port = WCCP_PORT;
0b0cfcf2 1618
1619 /* Packet segments */
1620
c898ced1 1621 struct wccp2_message_header_t *main_header;
0b0cfcf2 1622
1623 struct wccp2_security_md5_t *security = NULL;
1624 /* service from service struct */
1625
1626 struct wccp2_item_header_t *assignment_header;
1627
b7d249f9 1628 struct wccp2_item_header_t *alt_assignment_type_header = NULL;
1629
0b0cfcf2 1630 struct assignment_key_t *assignment_key;
1631 /* number of routers */
1632
1633 struct wccp2_router_assign_element_t *router_assign;
1634 /* number of caches */
1635
2adffc6f 1636 struct in_addr *cache_address;
b7d249f9 1637 /* Alternative assignement mask/values */
1638 int num_maskval;
1639
1640 struct wccp2_mask_element_t *mask_element;
1641
1642 struct wccp2_value_element_t *value_element;
1643 int valuecounter, value;
0b0cfcf2 1644 char *buckets;
1645
b7d249f9 1646 assignment_offset = alt_assignment_offset = 0;
1647
0b0cfcf2 1648 router_len = sizeof(router);
1649 memset(&router, '\0', router_len);
1650 router.sin_family = AF_INET;
1651 router.sin_port = htons(port);
1652
1653 /* Start main header - fill in length later */
1654 offset = 0;
1655
c898ced1 1656 main_header = (struct wccp2_message_header_t *) &wccp_packet[offset];
0b0cfcf2 1657 main_header->type = htonl(WCCP2_REDIRECT_ASSIGN);
1658 main_header->version = htons(WCCP2_VERSION);
1659
bf8fe701 1660 debugs(80, 2, "Running wccp2AssignBuckets");
0b0cfcf2 1661 service_list_ptr = wccp2_service_list_head;
1662
1663 while (service_list_ptr != NULL) {
1664 /* If we're not the lowest, we don't need to worry */
1665
1666 if (service_list_ptr->lowest_ip == 0) {
1667 /* XXX eww */
1668 service_list_ptr = service_list_ptr->next;
1669 continue;
1670 }
1671
1672 /* reset the offset */
1673
c898ced1 1674 offset = sizeof(struct wccp2_message_header_t);
0b0cfcf2 1675
1676 /* build packet header from hereIam packet */
1677 /* Security info */
1678 /* XXX this should be made more generic! */
1679 /* XXX and I hate magic numbers! */
1680 switch (service_list_ptr->wccp2_security_type) {
1681
1682 case WCCP2_NO_SECURITY:
1683
1684 security = (struct wccp2_security_md5_t *) &wccp_packet[offset];
1685 memcpy(security, service_list_ptr->security_info, 8);
1686 offset += 8;
1687 break;
1688
1689 case WCCP2_MD5_SECURITY:
1690
1691 security = (struct wccp2_security_md5_t *) &wccp_packet[offset];
1692
1693 memcpy(security, service_list_ptr->security_info, sizeof(struct wccp2_security_md5_t));
1694
1695 offset += sizeof(struct wccp2_security_md5_t);
1696 break;
1697
1698 default:
1699 fatalf("Unknown Wccp2 security type\n");
1700 }
1701
1702 /* Service info */
1703
1704 memcpy(&wccp_packet[offset], service_list_ptr->service_info, sizeof(struct wccp2_service_info_t));
1705
1706 offset += sizeof(struct wccp2_service_info_t);
1707
1708 /* assignment header - fill in length later */
1709
1710 assignment_header = (struct wccp2_item_header_t *) &wccp_packet[offset];
1711
b7d249f9 1712 switch (Config.Wccp2.assignment_method) {
0b0cfcf2 1713
b7d249f9 1714 case WCCP2_ASSIGNMENT_METHOD_HASH:
1715 assignment_header->type = htons(WCCP2_REDIRECT_ASSIGNMENT);
1716
1717 offset += sizeof(struct wccp2_item_header_t);
1718 assignment_offset = offset;
1719 break;
1720
1721 case WCCP2_ASSIGNMENT_METHOD_MASK:
1722 assignment_header->type = htons(WCCP2_ALT_ASSIGNMENT);
1723
1724 offset += sizeof(struct wccp2_item_header_t);
1725 assignment_offset = offset;
1726
1727 /* The alternative assignment has an extra header, fill in length later */
1728
1729 alt_assignment_type_header = (struct wccp2_item_header_t *) &wccp_packet[offset];
1730 alt_assignment_type_header->type = htons(WCCP2_MASK_ASSIGNMENT);
1731
1732 offset += sizeof(struct wccp2_item_header_t);
1733 alt_assignment_offset = offset;
1734
1735 break;
1736
1737 default:
1738 fatalf("Unknown Wccp2 assignment method\n");
1739 }
0b0cfcf2 1740
1741 /* Assignment key - fill in master ip later */
1742
1743 assignment_key = (struct assignment_key_t *) &wccp_packet[offset];
1744
1745 assignment_key->master_number = htonl(++service_list_ptr->change_num);
1746
1747 offset += sizeof(struct assignment_key_t);
1748
1749 /* Number of routers */
41d00cd3 1750 memcpy(&wccp_packet[offset], &service_list_ptr->num_routers, sizeof(service_list_ptr->num_routers));
0b0cfcf2 1751
1752 offset += sizeof(service_list_ptr->num_routers);
1753
1754 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr->next != NULL; router_list_ptr = router_list_ptr->next) {
1755
1756 /* Add routers */
1757
1758 router_assign = (struct wccp2_router_assign_element_t *) &wccp_packet[offset];
1759 router_assign->router_address = router_list_ptr->info->router_address;
1760 router_assign->received_id = router_list_ptr->info->received_id;
1761 router_assign->change_number = htonl(router_list_ptr->member_change);
1762
1763 offset += sizeof(struct wccp2_router_assign_element_t);
1764 }
1765
1766 saved_offset = offset;
1767
1768 for (router_list_ptr = &service_list_ptr->router_list_head; router_list_ptr->next != NULL; router_list_ptr = router_list_ptr->next) {
b7d249f9 1769 unsigned long *weight = (unsigned long *)xcalloc(sizeof(*weight), ntohl(router_list_ptr->num_caches));
1770 unsigned long total_weight = 0;
1771 int num_caches = ntohl(router_list_ptr->num_caches);
f16fbc82 1772
0b0cfcf2 1773 offset = saved_offset;
1774
b7d249f9 1775 switch (Config.Wccp2.assignment_method) {
1776
1777 case WCCP2_ASSIGNMENT_METHOD_HASH:
1778 /* Number of caches */
41d00cd3 1779 memcpy(&wccp_packet[offset], &router_list_ptr->num_caches, sizeof(router_list_ptr->num_caches));
b7d249f9 1780 offset += sizeof(router_list_ptr->num_caches);
1781
1782 if (num_caches) {
1783 int cache;
1784
14942edd 1785 for (cache = 0, cache_list_ptr = &router_list_ptr->cache_list_head; cache_list_ptr->next; cache_list_ptr = cache_list_ptr->next, ++cache) {
b7d249f9 1786 /* add caches */
0b0cfcf2 1787
2adffc6f 1788 cache_address = (struct in_addr *) &wccp_packet[offset];
0b0cfcf2 1789
41d00cd3 1790 memcpy(cache_address, &cache_list_ptr->cache_ip, sizeof(struct in_addr));
b7d249f9 1791 total_weight += cache_list_ptr->weight << 12;
1792 weight[cache] = cache_list_ptr->weight << 12;
0b0cfcf2 1793
2adffc6f 1794 offset += sizeof(struct in_addr);
b7d249f9 1795 }
0b0cfcf2 1796 }
0b0cfcf2 1797
b7d249f9 1798 /* Add buckets */
1799 buckets = (char *) &wccp_packet[offset];
1800
1801 memset(buckets, '\0', WCCP_BUCKETS);
1802
1803 if (num_caches != 0) {
1804 if (total_weight == 0) {
14942edd 1805 for (bucket_counter = 0; bucket_counter < WCCP_BUCKETS; ++bucket_counter) {
b7d249f9 1806 buckets[bucket_counter] = (char) (bucket_counter % num_caches);
1807 }
1808 } else {
1809 unsigned long *assigned = (unsigned long *)xcalloc(sizeof(*assigned), num_caches);
1810 unsigned long done = 0;
1811 int cache = -1;
1812 unsigned long per_bucket = total_weight / WCCP_BUCKETS;
1813
14942edd 1814 for (bucket_counter = 0; bucket_counter < WCCP_BUCKETS; ++bucket_counter) {
b7d249f9 1815 int n;
1816 unsigned long step;
1817
5e263176 1818 for (n = num_caches; n; --n) {
14942edd 1819 ++cache;
b7d249f9 1820
1821 if (cache >= num_caches)
1822 cache = 0;
1823
1824 if (!weight[cache]) {
14942edd 1825 ++n;
b7d249f9 1826 continue;
1827 }
1828
1829 if (assigned[cache] <= done)
1830 break;
1831 }
1832
1833 buckets[bucket_counter] = (char) cache;
1834 step = per_bucket * total_weight / weight[cache];
1835 assigned[cache] += step;
1836 done += per_bucket;
1837 }
1838
1839 safe_free(assigned);
1840 }
1841 }
0b0cfcf2 1842
b7d249f9 1843 offset += (WCCP_BUCKETS * sizeof(char));
1844 safe_free(weight);
1845 break;
0b0cfcf2 1846
b7d249f9 1847 case WCCP2_ASSIGNMENT_METHOD_MASK:
1848 num_maskval = htonl(1);
41d00cd3 1849 memcpy(&wccp_packet[offset], &num_maskval, sizeof(int));
b7d249f9 1850 offset += sizeof(int);
1851
1852 mask_element = (struct wccp2_mask_element_t *) &wccp_packet[offset];
1853 service_flags = ntohl(service_list_ptr->service_info->service_flags);
1854
1855 if ((service_flags & WCCP2_SERVICE_SRC_IP_HASH) || (service_flags & WCCP2_SERVICE_SRC_IP_ALT_HASH)) {
1856 mask_element->source_ip_mask = htonl(0x00001741);
1857 mask_element->dest_ip_mask = 0;
1858 mask_element->source_port_mask = 0;
1859 mask_element->dest_port_mask = 0;
1860 } else if ((service_list_ptr->info.service == WCCP2_SERVICE_STANDARD) || (service_flags & WCCP2_SERVICE_DST_IP_HASH) || (service_flags & WCCP2_SERVICE_DST_IP_ALT_HASH)) {
1861 mask_element->source_ip_mask = 0;
1862 mask_element->dest_ip_mask = htonl(0x00001741);
1863 mask_element->source_port_mask = 0;
1864 mask_element->dest_port_mask = 0;
1865 } else if ((service_flags & WCCP2_SERVICE_SRC_PORT_HASH) || (service_flags & WCCP2_SERVICE_SRC_PORT_ALT_HASH)) {
1866 mask_element->source_ip_mask = 0;
1867 mask_element->dest_ip_mask = 0;
1868 mask_element->source_port_mask = htons(0x1741);
1869 mask_element->dest_port_mask = 0;
1870 } else if ((service_flags & WCCP2_SERVICE_DST_PORT_HASH) || (service_flags & WCCP2_SERVICE_DST_PORT_ALT_HASH)) {
1871 mask_element->source_ip_mask = 0;
1872 mask_element->dest_ip_mask = 0;
1873 mask_element->source_port_mask = 0;
1874 mask_element->dest_port_mask = htons(0x1741);
1875 } else {
1876 fatalf("Unknown service hash method\n");
1877 }
1878
1879 mask_element->number_values = htonl(64);
1880
1881 offset += sizeof(struct wccp2_mask_element_t);
1882
1883 cache_list_ptr = &router_list_ptr->cache_list_head;
1884 value = 0;
1885
14942edd 1886 for (valuecounter = 0; valuecounter < 64; ++valuecounter) {
b7d249f9 1887
1888 value_element = (struct wccp2_value_element_t *) &wccp_packet[offset];
1889
25e26086 1890 /* Update the value according the the "correct" formula */
1891
14942edd 1892 for (; (value & 0x1741) != value; ++value) {
25e26086 1893 assert(value <= 0x1741);
1894 }
1895
b7d249f9 1896 if ((service_flags & WCCP2_SERVICE_SRC_IP_HASH) || (service_flags & WCCP2_SERVICE_SRC_IP_ALT_HASH)) {
1897 value_element->source_ip_value = htonl(value);
1898 value_element->dest_ip_value = 0;
1899 value_element->source_port_value = 0;
1900 value_element->dest_port_value = 0;
1901 } else if ((service_list_ptr->info.service == WCCP2_SERVICE_STANDARD) || (service_flags & WCCP2_SERVICE_DST_IP_HASH) || (service_flags & WCCP2_SERVICE_DST_IP_ALT_HASH)) {
1902 value_element->source_ip_value = 0;
1903 value_element->dest_ip_value = htonl(value);
1904 value_element->source_port_value = 0;
1905 value_element->dest_port_value = 0;
1906 } else if ((service_flags & WCCP2_SERVICE_SRC_PORT_HASH) || (service_flags & WCCP2_SERVICE_SRC_PORT_ALT_HASH)) {
1907 value_element->source_ip_value = 0;
1908 value_element->dest_ip_value = 0;
1909 value_element->source_port_value = htons(value);
1910 value_element->dest_port_value = 0;
1911 } else if ((service_flags & WCCP2_SERVICE_DST_PORT_HASH) || (service_flags & WCCP2_SERVICE_DST_PORT_ALT_HASH)) {
1912 value_element->source_ip_value = 0;
1913 value_element->dest_ip_value = 0;
1914 value_element->source_port_value = 0;
1915 value_element->dest_port_value = htons(value);
1916 } else {
1917 fatalf("Unknown service hash method\n");
1918 }
1919
1920 value_element->cache_ip = cache_list_ptr->cache_ip;
1921
1922 offset += sizeof(struct wccp2_value_element_t);
14942edd 1923 ++value;
b7d249f9 1924
1925 /* Assign the next value to the next cache */
25e26086 1926
b7d249f9 1927 if ((cache_list_ptr->next) && (cache_list_ptr->next->next))
1928 cache_list_ptr = cache_list_ptr->next;
1929 else
1930 cache_list_ptr = &router_list_ptr->cache_list_head;
1931 }
0b0cfcf2 1932
b7d249f9 1933 /* Fill in length */
1934 alt_assignment_type_header->length = htons(offset - alt_assignment_offset);
1935
1936 break;
1937
1938 default:
1939 fatalf("Unknown Wccp2 assignment method\n");
1940 }
1941
1942 /* Fill in length */
0b0cfcf2 1943
b7d249f9 1944 assignment_header->length = htons(offset - assignment_offset);
0b0cfcf2 1945
1946 /* Fill in assignment key */
1947 assignment_key->master_ip = router_list_ptr->local_ip;
1948
1949 /* finish length */
1950
c898ced1 1951 main_header->length = htons(offset - sizeof(struct wccp2_message_header_t));
0b0cfcf2 1952
1953 /* set the destination address */
1954 router.sin_addr = router_list_ptr->router_sendto_address;
1955
1956 /* Security update, if needed */
1957
1958 if (service_list_ptr->wccp2_security_type == WCCP2_MD5_SECURITY) {
1959 wccp2_update_md5_security(service_list_ptr->wccp_password, (char *) security, wccp_packet, offset);
1960 }
1961
1962 if (ntohl(router_list_ptr->num_caches)) {
1963 /* send packet */
c1f55201 1964
182106f3
AJ
1965 /* FIXME INET6 : drop temp conversion */
1966 Ip::Address tmp_rtr(router);
1967
c1f55201 1968 if (wccp2_numrouters > 1) {
1969 comm_udp_sendto(theWccp2Connection,
cc192b50 1970 tmp_rtr,
c1f55201 1971 &wccp_packet,
1972 offset);
1973 } else {
b69e9ffa
AJ
1974 if (send(theWccp2Connection, &wccp_packet, offset, 0) < static_cast<int>(offset)) {
1975 int xerrno = errno;
1976 debugs(80, 2, "ERROR: failed to send WCCPv2 HERE_I_AM packet to " << tmp_rtr << " : " << xstrerr(xerrno));
1977 }
c1f55201 1978 }
0b0cfcf2 1979 }
182106f3 1980 safe_free(weight);
0b0cfcf2 1981 }
1982
1983 service_list_ptr = service_list_ptr->next;
1984 }
1985}
1986
0b0cfcf2 1987/*
1988 * Configuration option parsing code
1989 */
1990
e313ab0a
AJ
1991/**
1992 * Parse wccp2_return_method and wccp2_forwarding_method options
72e2b394 1993 * they can be '1' aka 'gre' or '2' aka 'l2'
e313ab0a
AJ
1994 * repesenting the integer numeric of the same.
1995 */
1996void
1997parse_wccp2_method(int *method)
1998{
1999 char *t;
2000
2001 /* Snarf the method */
2eceb328 2002 if ((t = ConfigParser::NextToken()) == NULL) {
21ec1b94 2003 debugs(80, DBG_CRITICAL, "wccp2_*_method: missing setting.");
e313ab0a 2004 self_destruct();
337eb476 2005 return;
e313ab0a
AJ
2006 }
2007
2008 /* update configuration if its valid */
451c4786 2009 if (strcmp(t, "gre") == 0 || strcmp(t, "1") == 0) {
21ec1b94 2010 *method = WCCP2_METHOD_GRE;
451c4786 2011 } else if (strcmp(t, "l2") == 0 || strcmp(t, "2") == 0) {
21ec1b94 2012 *method = WCCP2_METHOD_L2;
e313ab0a 2013 } else {
21ec1b94 2014 debugs(80, DBG_CRITICAL, "wccp2_*_method: unknown setting, got " << t );
e313ab0a
AJ
2015 self_destruct();
2016 }
2017}
2018
2019void
2020dump_wccp2_method(StoreEntry * e, const char *label, int v)
2021{
26ac0430 2022 switch (v) {
451c4786
AJ
2023 case WCCP2_METHOD_GRE:
2024 storeAppendPrintf(e, "%s gre\n", label);
e313ab0a 2025 break;
451c4786
AJ
2026 case WCCP2_METHOD_L2:
2027 storeAppendPrintf(e, "%s l2\n", label);
e313ab0a
AJ
2028 break;
2029 default:
21ec1b94 2030 debugs(80, DBG_CRITICAL, "FATAL: WCCPv2 configured method (" << v << ") is not valid.");
e313ab0a
AJ
2031 self_destruct();
2032 }
2033}
2034
2035void
ced8def3 2036free_wccp2_method(int *)
e313ab0a
AJ
2037{ }
2038
451c4786
AJ
2039/**
2040 * Parse wccp2_assignment_method option
2041 * they can be '1' aka 'hash' or '2' aka 'mask'
2042 * repesenting the integer numeric of the same.
2043 */
2044void
72e2b394 2045parse_wccp2_amethod(int *method)
451c4786
AJ
2046{
2047 char *t;
2048
2049 /* Snarf the method */
2eceb328 2050 if ((t = ConfigParser::NextToken()) == NULL) {
451c4786
AJ
2051 debugs(80, DBG_CRITICAL, "wccp2_assignment_method: missing setting.");
2052 self_destruct();
337eb476 2053 return;
451c4786
AJ
2054 }
2055
2056 /* update configuration if its valid */
2057 if (strcmp(t, "hash") == 0 || strcmp(t, "1") == 0) {
2058 *method = WCCP2_ASSIGNMENT_METHOD_HASH;
2059 } else if (strcmp(t, "mask") == 0 || strcmp(t, "2") == 0) {
2060 *method = WCCP2_ASSIGNMENT_METHOD_MASK;
2061 } else {
2062 debugs(80, DBG_CRITICAL, "wccp2_assignment_method: unknown setting, got " << t );
2063 self_destruct();
2064 }
2065}
2066
2067void
2068dump_wccp2_amethod(StoreEntry * e, const char *label, int v)
2069{
26ac0430 2070 switch (v) {
451c4786
AJ
2071 case WCCP2_ASSIGNMENT_METHOD_HASH:
2072 storeAppendPrintf(e, "%s hash\n", label);
2073 break;
2074 case WCCP2_ASSIGNMENT_METHOD_MASK:
2075 storeAppendPrintf(e, "%s mask\n", label);
2076 break;
2077 default:
2078 debugs(80, DBG_CRITICAL, "FATAL: WCCPv2 configured " << label << " (" << v << ") is not valid.");
2079 self_destruct();
2080 }
2081}
2082
2083void
ced8def3
AJ
2084free_wccp2_amethod(int *)
2085{}
451c4786 2086
0b0cfcf2 2087/*
2088 * Format:
2089 *
2090 * wccp2_service {standard|dynamic} {id} (password=password)
2091 */
2092void
ced8def3 2093parse_wccp2_service(void *)
0b0cfcf2 2094{
2095 char *t;
2096 int service = 0;
2097 int service_id = 0;
2098 int security_type = WCCP2_NO_SECURITY;
2099 char wccp_password[WCCP2_PASSWORD_LEN + 1];
2100
2101 if (wccp2_connected == 1) {
e0236918 2102 debugs(80, DBG_IMPORTANT, "WCCPv2: Somehow reparsing the configuration without having shut down WCCP! Try reloading squid again.");
0b0cfcf2 2103 return;
2104 }
2105
2106 /* Snarf the type */
2eceb328 2107 if ((t = ConfigParser::NextToken()) == NULL) {
fa84c01d 2108 debugs(80, DBG_CRITICAL, "wccp2ParseServiceInfo: missing service info type (standard|dynamic)");
0b0cfcf2 2109 self_destruct();
337eb476 2110 return;
0b0cfcf2 2111 }
2112
2113 if (strcmp(t, "standard") == 0) {
2114 service = WCCP2_SERVICE_STANDARD;
2115 } else if (strcmp(t, "dynamic") == 0) {
2116 service = WCCP2_SERVICE_DYNAMIC;
2117 } else {
fa84c01d 2118 debugs(80, DBG_CRITICAL, "wccp2ParseServiceInfo: bad service info type (expected standard|dynamic, got " << t << ")");
0b0cfcf2 2119 self_destruct();
337eb476 2120 return;
0b0cfcf2 2121 }
2122
2123 /* Snarf the ID */
2124 service_id = GetInteger();
2125
2126 if (service_id < 0 || service_id > 255) {
30c48b1a 2127 debugs(80, DBG_CRITICAL, "ERROR: invalid WCCP service id " << service_id << " (must be between 0 .. 255)");
0b0cfcf2 2128 self_destruct();
337eb476 2129 return;
0b0cfcf2 2130 }
2131
2132 memset(wccp_password, 0, sizeof(wccp_password));
2133 /* Handle password, if any */
2134
2eceb328 2135 if ((t = ConfigParser::NextToken()) != NULL) {
0b0cfcf2 2136 if (strncmp(t, "password=", 9) == 0) {
2137 security_type = WCCP2_MD5_SECURITY;
2138 strncpy(wccp_password, t + 9, WCCP2_PASSWORD_LEN);
2139 }
2140 }
2141
2142 /* Create a placeholder service record */
2143 wccp2_add_service_list(service, service_id, 0, 0, 0, empty_portlist, security_type, wccp_password);
2144}
2145
2146void
ced8def3 2147dump_wccp2_service(StoreEntry * e, const char *label, void *)
0b0cfcf2 2148{
0b0cfcf2 2149 struct wccp2_service_list_t *srv;
2150 srv = wccp2_service_list_head;
2151
2152 while (srv != NULL) {
bf8fe701 2153 debugs(80, 3, "dump_wccp2_service: id " << srv->info.service_id << ", type " << srv->info.service);
0b0cfcf2 2154 storeAppendPrintf(e, "%s %s %d", label,
2155 (srv->info.service == WCCP2_SERVICE_DYNAMIC) ? "dynamic" : "standard",
2156 srv->info.service_id);
2157
2158 if (srv->wccp2_security_type == WCCP2_MD5_SECURITY) {
2159 storeAppendPrintf(e, " %s", srv->wccp_password);
2160 }
2161
c208fd0e 2162 storeAppendPrintf(e, "\n");
2163
0b0cfcf2 2164 srv = srv->next;
2165 }
2166}
2167
2168void
ced8def3 2169free_wccp2_service(void *)
0b0cfcf2 2170{}
2171
2172int
ced8def3 2173check_null_wccp2_service(void *)
0b0cfcf2 2174{
2175 return !wccp2_service_list_head;
2176}
2177
2178/*
2179 * Format:
2180 *
2181 * wccp2_service_info {id} stuff..
2182 *
2183 * Where stuff is:
2184 *
2185 * + flags=flag,flag,flag..
2186 * + proto=protocol (tcp|udp)
2187 * + ports=port,port,port (up to a max of 8)
2188 * + priority=priority (0->255)
2189 *
2190 * The flags here are:
2191 * src_ip_hash, dst_ip_hash, source_port_hash, dst_port_hash, ports_defined,
2192 * ports_source, src_ip_alt_hash, dst_ip_alt_hash, src_port_alt_hash, dst_port_alt_hash
2193 */
2194static int
2195parse_wccp2_service_flags(char *flags)
2196{
5a429fae 2197 if (!flags)
0b0cfcf2 2198 return 0;
0b0cfcf2 2199
5a429fae
AJ
2200 char *flag = flags;
2201 int retflag = 0;
0b0cfcf2 2202
5a429fae 2203 while (size_t len = strcspn(flag, ",")) {
0b0cfcf2 2204
5a429fae 2205 if (strncmp(flag, "src_ip_hash", len) == 0) {
0b0cfcf2 2206 retflag |= WCCP2_SERVICE_SRC_IP_HASH;
5a429fae 2207 } else if (strncmp(flag, "dst_ip_hash", len) == 0) {
0b0cfcf2 2208 retflag |= WCCP2_SERVICE_DST_IP_HASH;
5a429fae 2209 } else if (strncmp(flag, "source_port_hash", len) == 0) {
b7d249f9 2210 retflag |= WCCP2_SERVICE_SRC_PORT_HASH;
5a429fae 2211 } else if (strncmp(flag, "dst_port_hash", len) == 0) {
0b0cfcf2 2212 retflag |= WCCP2_SERVICE_DST_PORT_HASH;
5a429fae 2213 } else if (strncmp(flag, "ports_source", len) == 0) {
0b0cfcf2 2214 retflag |= WCCP2_SERVICE_PORTS_SOURCE;
5a429fae 2215 } else if (strncmp(flag, "src_ip_alt_hash", len) == 0) {
0b0cfcf2 2216 retflag |= WCCP2_SERVICE_SRC_IP_ALT_HASH;
5a429fae 2217 } else if (strncmp(flag, "dst_ip_alt_hash", len) == 0) {
0b0cfcf2 2218 retflag |= WCCP2_SERVICE_DST_IP_ALT_HASH;
5a429fae 2219 } else if (strncmp(flag, "src_port_alt_hash", len) == 0) {
0b0cfcf2 2220 retflag |= WCCP2_SERVICE_SRC_PORT_ALT_HASH;
5a429fae 2221 } else if (strncmp(flag, "dst_port_alt_hash", len) == 0) {
0b0cfcf2 2222 retflag |= WCCP2_SERVICE_DST_PORT_ALT_HASH;
2223 } else {
5a429fae 2224 flag[len] = '\0';
0b0cfcf2 2225 fatalf("Unknown wccp2 service flag: %s\n", flag);
2226 }
2227
5a429fae
AJ
2228 if (flag[len] == '\0')
2229 break;
2230
2231 flag += len+1;
0b0cfcf2 2232 }
2233
0b0cfcf2 2234 return retflag;
2235}
2236
2237static void
2238parse_wccp2_service_ports(char *options, int portlist[])
2239{
0b0cfcf2 2240 if (!options) {
2241 return;
2242 }
2243
5a429fae
AJ
2244 int i = 0;
2245 char *tmp = options;
342e1833 2246 static char copy[10];
af3adcba 2247
5a429fae
AJ
2248 while (size_t len = strcspn(tmp, ",")) {
2249 if (i >= WCCP2_NUMPORTS) {
2250 fatalf("parse_wccp2_service_ports: too many ports (maximum: 8) in list '%s'\n", options);
2251 }
342e1833
GH
2252 if (len > 6) { // 6 because "65535,"
2253 fatalf("parse_wccp2_service_ports: port value '%s' isn't valid (1..65535)\n", tmp);
2254 }
2255
2256 memcpy(copy, tmp, len);
2257 copy[len] = '\0';
2258 int p = xatoi(copy);
0b0cfcf2 2259
2260 if (p < 1 || p > 65535) {
5a429fae 2261 fatalf("parse_wccp2_service_ports: port value '%s' isn't valid (1..65535)\n", tmp);
0b0cfcf2 2262 }
2263
2264 portlist[i] = p;
14942edd 2265 ++i;
5a429fae
AJ
2266 if (tmp[len] == '\0')
2267 return;
2268 tmp += len+1;
af3adcba 2269 }
0b0cfcf2 2270}
2271
2272void
ced8def3 2273parse_wccp2_service_info(void *)
0b0cfcf2 2274{
2275 char *t, *end;
2276 int service_id = 0;
2277 int flags = 0;
2278 int portlist[WCCP2_NUMPORTS];
f53969cc 2279 int protocol = -1; /* IPPROTO_TCP | IPPROTO_UDP */
0b0cfcf2 2280
2281 struct wccp2_service_list_t *srv;
2282 int priority = -1;
2283
2284 if (wccp2_connected == 1) {
e0236918 2285 debugs(80, DBG_IMPORTANT, "WCCPv2: Somehow reparsing the configuration without having shut down WCCP! Try reloading squid again.");
0b0cfcf2 2286 return;
2287 }
2288
bf8fe701 2289 debugs(80, 5, "parse_wccp2_service_info: called");
a302ad3c 2290 memset(portlist, 0, sizeof(portlist));
0b0cfcf2 2291 /* First argument: id */
2292 service_id = GetInteger();
2293
2294 if (service_id < 0 || service_id > 255) {
30c48b1a 2295 debugs(80, DBG_CRITICAL, "ERROR: invalid WCCP service id " << service_id << " (must be between 0 .. 255)");
0b0cfcf2 2296 self_destruct();
337eb476 2297 return;
0b0cfcf2 2298 }
2299
2300 /* Next: find the (hopefully!) existing service */
2301 srv = wccp2_get_service_by_id(WCCP2_SERVICE_DYNAMIC, service_id);
2302
2303 if (srv == NULL) {
2304 fatalf("parse_wccp2_service_info: unknown dynamic service id %d: you need to define it using wccp2_service (and make sure you wish to configure it as a dynamic service.)\n", service_id);
2305 }
2306
2307 /* Next: loop until we don't have any more tokens */
2eceb328 2308 while ((t = ConfigParser::NextToken()) != NULL) {
0b0cfcf2 2309 if (strncmp(t, "flags=", 6) == 0) {
2310 /* XXX eww, string pointer math */
2311 flags = parse_wccp2_service_flags(t + 6);
2312 } else if (strncmp(t, "ports=", 6) == 0) {
2313 parse_wccp2_service_ports(t + 6, portlist);
2314 flags |= WCCP2_SERVICE_PORTS_DEFINED;
2315 } else if (strncmp(t, "protocol=tcp", 12) == 0) {
2316 protocol = IPPROTO_TCP;
2317 } else if (strncmp(t, "protocol=udp", 12) == 0) {
2318 protocol = IPPROTO_UDP;
2319 } else if (strncmp(t, "protocol=", 9) == 0) {
2320 fatalf("parse_wccp2_service_info: id %d: unknown protocol (%s) - must be tcp or udp!\n", service_id, t);
2321 } else if (strncmp(t, "priority=", 9) == 0) {
2322 priority = strtol(t + 9, &end, 0);
2323
2324 if (priority < 0 || priority > 255) {
2325 fatalf("parse_wccp2_service_info: id %d: %s out of range (0..255)!\n", service_id, t);
2326 }
2327 } else {
2328 fatalf("parse_wccp2_service_info: id %d: unknown option '%s'\n", service_id, t);
2329 }
2330 }
2331
2332 /* Check everything is set */
2333 if (priority == -1) {
2334 fatalf("parse_wccp2_service_info: service %d: no priority defined (valid: 0..255)!\n", service_id);
2335 }
2336
2337 if (protocol == -1) {
2338 fatalf("parse_wccp2_service_info: service %d: no protocol defined (valid: tcp or udp)!\n", service_id);
2339 }
2340
2341 if (!(flags & WCCP2_SERVICE_PORTS_DEFINED)) {
2342 fatalf("parse_wccp2_service_info: service %d: no ports defined!\n", service_id);
2343 }
2344
2345 /* rightio! now we can update */
2346 wccp2_update_service(srv, WCCP2_SERVICE_DYNAMIC, service_id, priority,
2347 protocol, flags, portlist);
2348
2349 /* Done! */
2350}
2351
2352void
ced8def3 2353dump_wccp2_service_info(StoreEntry * e, const char *label, void *)
0b0cfcf2 2354{
0b0cfcf2 2355 struct wccp2_service_list_t *srv;
2356 int flags;
2357 srv = wccp2_service_list_head;
2358
2359 while (srv != NULL) {
bf8fe701 2360 debugs(80, 3, "dump_wccp2_service_info: id " << srv->info.service_id << " (type " << srv->info.service << ")");
0b0cfcf2 2361
2362 /* We don't need to spit out information for standard services */
2363
2364 if (srv->info.service == WCCP2_SERVICE_STANDARD) {
bf8fe701 2365 debugs(80, 3, "dump_wccp2_service_info: id " << srv->info.service_id << ": standard service, not dumping info");
2366
0b0cfcf2 2367 /* XXX eww */
2368 srv = srv->next;
2369 continue;
2370 }
2371
2372 storeAppendPrintf(e, "%s %d", label, srv->info.service_id);
2373
2374 /* priority */
2375 storeAppendPrintf(e, " priority=%d", srv->info.service_priority);
2376
2377 /* flags */
2378 flags = ntohl(srv->info.service_flags);
2379
cfd861ab 2380 bool comma = false;
0b0cfcf2 2381 if (flags != 0) {
0b0cfcf2 2382 storeAppendPrintf(e, " flags=");
2383
2384 if (flags & WCCP2_SERVICE_SRC_IP_HASH) {
cfd861ab
AJ
2385 storeAppendPrintf(e, "src_ip_hash");
2386 comma = true;
0b0cfcf2 2387 }
2388
2389 if (flags & WCCP2_SERVICE_DST_IP_HASH) {
2390 storeAppendPrintf(e, "%sdst_ip_hash", comma ? "," : "");
cfd861ab 2391 comma = true;
0b0cfcf2 2392 }
2393
b7d249f9 2394 if (flags & WCCP2_SERVICE_SRC_PORT_HASH) {
0b0cfcf2 2395 storeAppendPrintf(e, "%ssource_port_hash", comma ? "," : "");
cfd861ab 2396 comma = true;
0b0cfcf2 2397 }
2398
2399 if (flags & WCCP2_SERVICE_DST_PORT_HASH) {
2400 storeAppendPrintf(e, "%sdst_port_hash", comma ? "," : "");
cfd861ab 2401 comma = true;
0b0cfcf2 2402 }
2403
2404 if (flags & WCCP2_SERVICE_PORTS_DEFINED) {
2405 storeAppendPrintf(e, "%sports_defined", comma ? "," : "");
cfd861ab 2406 comma = true;
0b0cfcf2 2407 }
2408
2409 if (flags & WCCP2_SERVICE_PORTS_SOURCE) {
2410 storeAppendPrintf(e, "%sports_source", comma ? "," : "");
cfd861ab 2411 comma = true;
0b0cfcf2 2412 }
2413
2414 if (flags & WCCP2_SERVICE_SRC_IP_ALT_HASH) {
2415 storeAppendPrintf(e, "%ssrc_ip_alt_hash", comma ? "," : "");
cfd861ab 2416 comma = true;
0b0cfcf2 2417 }
2418
2419 if (flags & WCCP2_SERVICE_DST_IP_ALT_HASH) {
2420 storeAppendPrintf(e, "%ssrc_ip_alt_hash", comma ? "," : "");
cfd861ab 2421 comma = true;
0b0cfcf2 2422 }
2423
2424 if (flags & WCCP2_SERVICE_SRC_PORT_ALT_HASH) {
2425 storeAppendPrintf(e, "%ssrc_port_alt_hash", comma ? "," : "");
cfd861ab 2426 comma = true;
0b0cfcf2 2427 }
2428
2429 if (flags & WCCP2_SERVICE_DST_PORT_ALT_HASH) {
2430 storeAppendPrintf(e, "%sdst_port_alt_hash", comma ? "," : "");
cfd861ab 2431 //comma = true; // uncomment if more options added
0b0cfcf2 2432 }
2433 }
2434
2435 /* ports */
cfd861ab 2436 comma = false;
0b0cfcf2 2437
2438 if (srv->info.port0 != 0) {
cfd861ab
AJ
2439 storeAppendPrintf(e, " ports=%d", ntohs(srv->info.port0));
2440 comma = true;
0b0cfcf2 2441 }
2442
2443 if (srv->info.port1 != 0) {
2444 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port1));
cfd861ab 2445 comma = true;
0b0cfcf2 2446 }
2447
2448 if (srv->info.port2 != 0) {
2449 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port2));
cfd861ab 2450 comma = true;
0b0cfcf2 2451 }
2452
2453 if (srv->info.port3 != 0) {
2454 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port3));
cfd861ab 2455 comma = true;
0b0cfcf2 2456 }
2457
2458 if (srv->info.port4 != 0) {
2459 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port4));
cfd861ab 2460 comma = true;
0b0cfcf2 2461 }
2462
2463 if (srv->info.port5 != 0) {
2464 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port5));
cfd861ab 2465 comma = true;
0b0cfcf2 2466 }
2467
2468 if (srv->info.port6 != 0) {
2469 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port6));
cfd861ab 2470 comma = true;
0b0cfcf2 2471 }
2472
2473 if (srv->info.port7 != 0) {
2474 storeAppendPrintf(e, "%s%d", comma ? "," : "ports=", ntohs(srv->info.port7));
cfd861ab 2475 // comma = true; // uncomment if more options are added
0b0cfcf2 2476 }
2477
2478 /* protocol */
2479 storeAppendPrintf(e, " protocol=%s", (srv->info.service_protocol == IPPROTO_TCP) ? "tcp" : "udp");
2480
2481 storeAppendPrintf(e, "\n");
2482
2483 srv = srv->next;
2484 }
2485}
2486
264096e2 2487/* Sort the cache list by doing a "selection sort" by IP address */
2488static void
2489wccp2SortCacheList(struct wccp2_cache_list_t *head)
2490{
2491 struct wccp2_cache_list_t tmp;
2492 struct wccp2_cache_list_t *this_item;
2493 struct wccp2_cache_list_t *find_item;
2494 struct wccp2_cache_list_t *next_lowest;
2495
2496 /* Go through each position in the list one at a time */
2497 for (this_item = head; this_item->next; this_item = this_item->next) {
26ac0430
AJ
2498 /* Find the item with the lowest IP */
2499 next_lowest = this_item;
2500
2501 for (find_item = this_item; find_item->next; find_item = find_item->next) {
2502 if (find_item->cache_ip.s_addr < next_lowest->cache_ip.s_addr) {
2503 next_lowest = find_item;
2504 }
2505 }
2506 /* Swap if we need to */
2507 if (next_lowest != this_item) {
2508 /* First make a copy of the current item */
2509 memcpy(&tmp, this_item, sizeof(struct wccp2_cache_list_t));
2510
2511 /* Next update the pointers to maintain the linked list */
2512 tmp.next = next_lowest->next;
2513 next_lowest->next = this_item->next;
2514
2515 /* Finally copy the updated items to their correct location */
2516 memcpy(this_item, next_lowest, sizeof(struct wccp2_cache_list_t));
2517 memcpy(next_lowest, &tmp, sizeof(struct wccp2_cache_list_t));
2518 }
264096e2 2519 }
2520}
2521
0b0cfcf2 2522void
ced8def3 2523free_wccp2_service_info(void *)
0b0cfcf2 2524{}
2525
2526#endif /* USE_WCCPv2 */
f53969cc 2527