1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
|
/*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2021 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* SPDX-License-Identifier: BSD-2-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Runtime support for compiled VCL programs and VMODs.
*
* NB: When this file is changed, lib/libvcc/generate.py *MUST* be rerun.
*/
#ifdef CACHE_H_INCLUDED
# error "vrt.h included after cache.h - they are inclusive"
#endif
#ifdef VRT_H_INCLUDED
# error "vrt.h included multiple times"
#endif
#define VRT_H_INCLUDED
#ifndef VDEF_H_INCLUDED
# error "include vdef.h before vrt.h"
#endif
#define VRT_MAJOR_VERSION 21U
#define VRT_MINOR_VERSION 0U
/***********************************************************************
* Major and minor VRT API versions.
*
* Whenever something is added, increment MINOR version
* Whenever something is deleted or changed in a way which is not
* binary/load-time compatible, increment MAJOR version
*
* 21.0 (2025-03-17)
* VRT_u_req_grace() added
* VRT_u_req_ttl() added
* VRT_r_req_filters() added
* VRT_l_req_filters() added
* VRT_r_bereq_filters() added
* VRT_l_bereq_filters() added
* 20.1 (2024-11-08 7.6.1)
* VDI_EVENT_SICK added to enum vcl_event_e
* 20.0 (2024-09-13)
* struct vrt_backend.backend_wait_timeout added
* struct vrt_backend.backend_wait_limit added
* 19.1 (2024-05-27)
* [cache_varnishd.h] ObjWaitExtend() gained statep argument
* 19.0 (2024-03-18)
* [cache.h] (struct req).filter_list renamed to vdp_filter_list
* order of vcl/vmod and director COLD events reversed to directors first
* VRT_u_sess_idle_send_timeout() added
* VRT_u_sess_send_timeout() added
* VRT_u_sess_timeout_idle() added
* VRT_u_sess_timeout_linger() added
* (struct vrt_backend).*_timeout must be initialized to a negative value
* VRT_BACKEND_INIT() helper macro added
* VRT_l_bereq_task_deadline() added
* VRT_r_bereq_task_deadline() added
* VRT_u_bereq_task_deadline() added
* VRT_u_bereq_between_bytes_timeout() added
* VRT_u_bereq_connect_timeout() added
* VRT_u_bereq_first_byte_timeout() added
* 18.1 (2023-12-05)
* vbf_objiterate() implementation changed #4013
* 18.0 (2023-09-15)
* [cache_filter.h] struct vdp gained priv1 member
* VRT_trace() added
* 17.0 (2023-03-15)
* VXID is 64 bit
* [cache.h] http_GetRange() changed
* exp_close added to struct vrt_backend_probe
* VRT_new_backend() signature changed
* VRT_new_backend_clustered() signature changed
* authority field added to struct vrt_backend
* release field added to struct vdi_methods
* 16.0 (2022-09-15)
* VMOD C-prototypes moved into JSON
* VRT_AddVDP() deprecated
* VRT_AddVFP() deprecated
* VRT_RemoveVDP() deprecated
* VRT_RemoveVFP() deprecated
* 15.0 (2022-03-15)
* VRT_r_req_transport() added
* VRT_Assign_Backend() added
* VRT_StaticDirector() added
* enum lbody_e changed
* - previous enum lbody_e values are defined as macros
* The following functions changed to take `const char *, BODY`:
* - VRT_l_beresp_body()
* - VRT_l_resp_body()
* BODY can either be a BLOB or a STRANDS, but only a STRANDS
* can take a non-NULL const char * prefix. The changes to BODY
* assignments doesn't break the ABI or the API.
* TOSTRAND() and TOSTRANDS() macros added
* [cache.h] enum sess_close replaced by struct stream_close
* [cache.h] http_IsHdr() added
* [cache_filter.h] vfp_init_f() changed to take a VRT_CTX
* [cache_filter.h] vdp_init_f() changed to take a VRT_CTX
* [cache_filter.h] VRT_AddFilter() added
* [cache_filter.h] VRT_RemoveFilter() added
* 14.0 (2021-09-15)
* VIN_n_Arg() no directly returns the directory name.
* VSB_new() and VSB_delete() removed
* VCL_STRINGLIST, vrt_magic_string_end removed
* VRT_String(), VRT_StringList(), VRT_CollectString() removed
* VRT_CollectStrands() renamed to VRT_STRANDS_string()
* The following functions changed to take `const char *, STRANDS`:
* - VRT_l_client_identity()
* - VRT_l_req_method()
* - VRT_l_req_url()
* - VRT_l_req_proto()
* - VRT_l_bereq_method()
* - VRT_l_bereq_url()
* - VRT_l_bereq_proto()
* - VRT_l_beresp_body()
* - VRT_l_beresp_proto()
* - VRT_l_beresp_reason()
* - VRT_l_beresp_storage_hint()
* - VRT_l_beresp_filters()
* - VRT_l_resp_body()
* - VRT_l_resp_proto()
* - VRT_l_resp_reason()
* - VRT_l_resp_filters()
* - VRT_SetHdr()
* VRT_UnsetHdr() added
* vrt_magic_string_unset removed (use VRT_UnsetHdr() instead)
* VNUMpfx() removed, SF_Parse_{Integer|Decimal|Number} added
* vrt_null_strands added
* vrt_null_blob added
* VRT_NULL_BLOB_TYPE added as the .type of vrt_null_blob
* VRT_blob() changed to return vrt_null_blob for
* len == 0 or src == NULL arguments
* [cache.h] WS_Front() removed
* [cache.h] WS_Inside() removed
* [cache.h] WS_Assert_Allocated() removed
* [cache.h] WS_Allocated() added
* [cache.h] WS_Dump() added
* 13.0 (2021-03-15)
* Move VRT_synth_page() to deprecated status
* Add VRT_synth_strands() and VRT_synth_blob()
* struct vrt_type now produced by generate.py
* VRT_acl_log() moved to VPI_acl_log()
* VRT_Endpoint_Clone() added.
* Calling convention for VDP implementation changed
* VRT_ValidHdr() added.
* struct vmod_priv_methods added
* struct vmod_priv free member replaced with methods
* VRT_CTX_Assert() added
* VRT_ban_string() signature changed
* VRT_priv_task_get() added
* VRT_priv_top_get() added
* VRT_re_init removed
* VRT_re_fini removed
* VRT_re_match signature changed
* VRT_regsub signature changed
* VRT_call() added
* VRT_check_call() added
* VRT_handled() added
* 12.0 (2020-09-15)
* Added VRT_DirectorResolve()
* Added VCL_STRING VRT_BLOB_string(VRT_CTX, VCL_BLOB)
* [cache.h] WS_Reserve() removed
* [cache.h] WS_Printf() changed
* [cache.h] WS_ReservationSize() added
* [cache.h] WS_Front() deprecated
* [cache.h] WS_Reservation() added
* 11.0 (2020-03-16)
* Changed type of vsa_suckaddr_len from int to size_t
* New prefix_{ptr|len} fields in vrt_backend
* VRT_HashStrands32() added
* VRT_l_resp_body() changed
* VRT_l_beresp_body() changed
* VRT_Format_Proxy() added // transitional interface
* VRT_AllocStrandsWS() added
* 10.0 (2019-09-15)
* VRT_UpperLowerStrands added.
* VRT_synth_page now takes STRANDS argument
* VRT_hashdata() now takes STRANDS argument
* VCL_BOOL VRT_Strands2Bool(VCL_STRANDS) added.
* VRT_BundleStrands() moved to vcc_interface.h
* VRT_VCL_{Busy|Unbusy} changed to VRT_VCL_{Prevent|Allow}_Cold
* VRT_re[fl]_vcl changed to VRT_VCL_{Prevent|Allow}_Discard
* VRT_Vmod_{Init|Unload} moved to vcc_interface.h
* VRT_count moved to vcc_interface.h
* VRT_VCL_Prevent_Cold() and VRT_VCL_Allow_Cold() added.
* VRT_vcl_get moved to vcc_interface.h
* VRT_vcl_rel moved to vcc_interface.h
* VRT_vcl_select moved to vcc_interface.h
* VRT_VSA_GetPtr() changed
* VRT_ipcmp() changed
* VRT_Stv_*() functions renamed to VRT_stevedore_*()
* [cache.h] WS_ReserveAll() added
* [cache.h] WS_Reserve(ws, 0) deprecated
* 9.0 (2019-03-15)
* Make 'len' in vmod_priv 'long'
* HTTP_Copy() removed
* HTTP_Dup() added
* HTTP_Clone() added
* VCL_BLOB changed to newly introduced struct vrt_blob *
* VRT_blob() changed
* req->req_bodybytes removed
* use: AZ(ObjGetU64(req->wrk, req->body_oc, OA_LEN, &u));
* struct vdi_methods .list callback signature changed
* VRT_LookupDirector() added
* VRT_SetChanged() added
* VRT_SetHealth() removed
* // in cache_filter.h:
* VRT_AddVDP() added
* VRT_RemoveVDP() added
* 8.0 (2018-09-15)
* VRT_Strands() added
* VRT_StrandsWS() added
* VRT_CollectStrands() added
* VRT_STRANDS_string() removed from vrt.h (never implemented)
* VRT_Vmod_Init signature changed
* VRT_Vmod_Fini changed to VRT_Vmod_Unload
* // directors
* VRT_backend_healthy() removed
* VRT_Healthy() changed prototype
* struct vdi_methods and callback prototypes added
* struct director added;
* VRT_AddDirector() added
* VRT_SetHealth() added
* VRT_DisableDirector() added
* VRT_DelDirector() added
* // in cache_filter.h:
* VRT_AddVFP() added
* VRT_RemoveVFP() added
* 7.0 (2018-03-15)
* lots of stuff moved from cache.h to cache_varnishd.h
* (ie: from "$Abi vrt" to "$Abi strict")
* VCL_INT and VCL_BYTES are always 64 bits.
* path field added to struct vrt_backend
* VRT_Healthy() added
* VRT_VSC_Alloc() added
* VRT_VSC_Destroy() added
* VRT_VSC_Hide() added
* VRT_VSC_Reveal() added
* VRT_VSC_Overhead() added
* struct director.event added
* struct director.destroy added
* VRT_r_beresp_storage_hint() VCL <= 4.0 #2509
* VRT_l_beresp_storage_hint() VCL <= 4.0 #2509
* VRT_blob() added
* VCL_STRANDS added
* 6.1 (2017-09-15 aka 5.2)
* http_CollectHdrSep added
* VRT_purge modified (may fail a transaction, signature changed)
* VRT_r_req_hash() added
* VRT_r_bereq_hash() added
* 6.0 (2017-03-15):
* VRT_hit_for_pass added
* VRT_ipcmp added
* VRT_Vmod_Init signature changed
* VRT_vcl_lookup removed
* VRT_fail added
* [cache.h] WS_Reset and WS_Snapshot signatures changed
* [cache.h] WS_Front added
* [cache.h] WS_ReserveLumps added
* [cache.h] WS_Inside added
* [cache.h] WS_Assert_Allocated added
* 5.0:
* Varnish 5.0 release "better safe than sorry" bump
* 4.0:
* VCL_BYTES changed to long long
* VRT_CacheReqBody changed signature
* 3.2:
* vrt_backend grew .proxy_header field
* vrt_ctx grew .sp field.
* vrt_acl type added
*/
/***********************************************************************/
#include <stddef.h> // NULL, size_t
#include <stdint.h> // [u]int%d_t
struct busyobj;
struct director;
struct http;
struct lock;
struct req;
struct stevedore;
struct stream_close;
struct suckaddr;
struct vcl;
struct vcldir;
struct VCL_conf;
struct vcl_sub;
struct vmod;
struct vmod_priv;
struct vrt_acl;
struct vsb;
struct VSC_main;
struct vsc_seg;
struct vsl_log;
struct vsmw_cluster;
struct wrk_vpi;
struct ws;
typedef const struct stream_close *stream_close_t;
/***********************************************************************
* VCL_STRANDS:
*
* An argc+argv type of data structure where n indicates the number of
* strings in the p array. Individual components of a strands may be null.
*
* A STRANDS allows you to work on a strings concatenation with the
* option to collect it into a single STRING, or if possible work
* directly on individual parts.
*
* The memory management is very strict: a VMOD function receiving a
* STRANDS argument should keep no reference after the function returns.
* Retention of a STRANDS further in the ongoing task is undefined
* behavior and may result in a panic or data corruption.
*/
struct strands {
int n;
const char **p;
};
/*
* A VCL_STRANDS return value must never be NULL. Use this instead
*/
extern const struct strands *vrt_null_strands;
/*
* Macros for VCL_STRANDS creation
*/
#define TOSTRAND(s)(&(struct strands){.n=1,.p=(const char *[1]){(s)}})
#define TOSTRANDS(x, ...)(&(struct strands){.n=x,.p=(const char *[x]){__VA_ARGS__}})
/***********************************************************************
* VCL_BLOB:
*
* Opaque, immutable data (pointer + length), minimum lifetime is the
* VCL task.
*
* Type (optional) is owned by the creator of the blob. blob consumers
* may use it for checks, but should not assert on it.
*
* The data behind the blob pointer is assumed to be immutable for the
* blob's lifetime.
*
* - memory for shortlived blobs can be put on the tasks workspace
*
* - management of memory for longer lived blobs is up to the vmod
* (in which case the blob will probably be embedded in an object or
* referenced by other state with vcl lifetime)
*/
struct vrt_blob {
unsigned type;
size_t len;
const void *blob;
};
#define VRT_NULL_BLOB_TYPE 0xfade4fa0
extern const struct vrt_blob *vrt_null_blob;
/***********************************************************************
* This is the central definition of the mapping from VCL types to
* C-types. The python scripts read these from here.
* (keep alphabetic order)
*/
typedef const struct vrt_acl * VCL_ACL;
typedef const struct director * VCL_BACKEND;
typedef const struct vrt_blob * VCL_BLOB;
typedef const void * VCL_BODY;
typedef unsigned VCL_BOOL;
typedef int64_t VCL_BYTES;
typedef vtim_dur VCL_DURATION;
typedef const char * VCL_ENUM;
typedef const struct gethdr_s * VCL_HEADER;
typedef struct http * VCL_HTTP;
typedef void VCL_INSTANCE;
typedef int64_t VCL_INT;
typedef const struct suckaddr * VCL_IP;
typedef const struct vrt_backend_probe * VCL_PROBE;
typedef double VCL_REAL;
typedef const struct vre * VCL_REGEX;
typedef const struct stevedore * VCL_STEVEDORE;
typedef const struct strands * VCL_STRANDS;
typedef const char * VCL_STRING;
typedef const struct vcl_sub * VCL_SUB;
typedef vtim_real VCL_TIME;
typedef struct vcl * VCL_VCL;
typedef void VCL_VOID;
/***********************************************************************
* This is the composite "context" argument for compiled VCL, VRT and
* VMOD functions.
*/
struct vrt_ctx {
unsigned magic;
#define VRT_CTX_MAGIC 0x6bb8f0db
unsigned syntax;
unsigned vclver;
unsigned method;
struct wrk_vpi *vpi;
/*
* msg is for error messages and exists only for
* VCL_EVENT_LOAD
* VCL_EVENT_WARM
*/
struct vsb *msg;
struct vsl_log *vsl;
VCL_VCL vcl;
struct ws *ws;
struct sess *sp;
struct req *req;
VCL_HTTP http_req;
VCL_HTTP http_req_top;
VCL_HTTP http_resp;
struct busyobj *bo;
VCL_HTTP http_bereq;
VCL_HTTP http_beresp;
vtim_real now;
/*
* method specific argument:
* hash: struct VSHA256Context
* synth+error: struct vsb *
*/
void *specific;
/* if present, vbitmap of called subs */
void *called;
};
#define VRT_CTX const struct vrt_ctx *ctx
void VRT_CTX_Assert(VRT_CTX);
enum vcl_func_call_e {
VSUB_STATIC, // VCL "call" action, only allowed from VCC
VSUB_DYNAMIC, // VRT_call()
VSUB_CHECK // VRT_check_call()
};
enum vcl_func_fail_e {
VSUB_E_OK,
VSUB_E_RECURSE, // call would recurse
VSUB_E_METHOD // cannot be called from this method
};
typedef void vcl_func_f(VRT_CTX, enum vcl_func_call_e, enum vcl_func_fail_e *);
/***********************************************************************
* This is the interface structure to a compiled VMOD
* (produced by vmodtool.py)
*/
struct vmod_data {
/* The version/id fields must be first, they protect the rest */
unsigned vrt_major;
unsigned vrt_minor;
const char *file_id;
const char *name;
const char *func_name;
const void *func;
int func_len;
const char *proto;
const char *json;
const char *abi;
const char *vcs;
const char *version;
};
/***********************************************************************
* Events sent to VMODs and directors:
* - VCL: VCL temperature events
* - VDI: director events
*/
enum vcl_event_e {
VCL_EVENT_LOAD,
VCL_EVENT_WARM,
VCL_EVENT_COLD,
VCL_EVENT_DISCARD,
VDI_EVENT_SICK,
};
typedef int vmod_event_f(VRT_CTX, struct vmod_priv *, enum vcl_event_e);
/***********************************************************************
* Utility functions operating on VCL_types
* (alphabetic by type-ish)
*/
/* VCL_ACL */
int VRT_acl_match(VRT_CTX, VCL_ACL, VCL_IP);
/* VCL_BACKEND */
VCL_BACKEND VRT_DirectorResolve(VRT_CTX, VCL_BACKEND);
/* VCL_BLOB */
VCL_BLOB VRT_blob(VRT_CTX, const char *, const void *, size_t, unsigned);
/* VCL_INT */
int VRT_INT_is_valid(VCL_INT);
/* VCL_IP */
int VRT_VSA_GetPtr(VRT_CTX, VCL_IP sua, const unsigned char ** dst);
VCL_BOOL VRT_ipcmp(VRT_CTX, VCL_IP, VCL_IP);
void VRT_Format_Proxy(struct vsb *, VCL_INT, VCL_IP, VCL_IP, VCL_STRING);
/* VCL_REAL */
int VRT_REAL_is_valid(VCL_REAL);
/* VCL_REGEX */
VCL_BOOL VRT_re_match(VRT_CTX, VCL_STRING, VCL_REGEX);
VCL_STRING VRT_regsub(VRT_CTX, int all, VCL_STRING, VCL_REGEX, VCL_STRING);
/* VCL_STEVEDORE */
VCL_STEVEDORE VRT_stevedore(const char *nm);
/* VCL_STRANDS */
struct strands * VRT_AllocStrandsWS(struct ws *, int);
int VRT_CompareStrands(VCL_STRANDS a, VCL_STRANDS b);
VCL_BOOL VRT_Strands2Bool(VCL_STRANDS);
uint32_t VRT_HashStrands32(VCL_STRANDS);
char *VRT_Strands(char *, size_t, VCL_STRANDS);
VCL_STRING VRT_StrandsWS(struct ws *, const char *, VCL_STRANDS);
VCL_STRING VRT_UpperLowerStrands(VRT_CTX, VCL_STRANDS s, int up);
/* VCL_SUB */
VCL_STRING VRT_check_call(VRT_CTX, VCL_SUB);
VCL_VOID VRT_call(VRT_CTX, VCL_SUB);
/* Functions to turn types into canonical strings */
VCL_STRING VRT_BACKEND_string(VCL_BACKEND);
VCL_STRING VRT_BOOL_string(VCL_BOOL);
VCL_STRING VRT_BLOB_string(VRT_CTX, VCL_BLOB);
VCL_STRING VRT_INT_string(VRT_CTX, VCL_INT);
VCL_STRING VRT_IP_string(VRT_CTX, VCL_IP);
VCL_STRING VRT_REAL_string(VRT_CTX, VCL_REAL);
VCL_STRING VRT_STEVEDORE_string(VCL_STEVEDORE);
VCL_STRING VRT_STRANDS_string(VRT_CTX, VCL_STRANDS);
VCL_STRING VRT_TIME_string(VRT_CTX, VCL_TIME);
/* historical */
int VRT_strcmp(const char *s1, const char *s2);
void VRT_memmove(void *dst, const void *src, unsigned len);
/***********************************************************************
* We want the VCC to spit this structs out as const, but when VMODs
* come up with them we want to clone them into malloc'ed space which
* we can free again.
* We collect all the knowledge here by macroizing the fields and make
* a macro for handling them all.
* See also: cache_backend.h & cache_backend_cfg.c
* One of those things...
*/
struct vrt_endpoint {
unsigned magic;
#define VRT_ENDPOINT_MAGIC 0xcc419347
VCL_IP ipv4;
VCL_IP ipv6;
const char *uds_path;
const struct vrt_blob *preamble;
};
#define VRT_BACKEND_FIELDS(rigid) \
rigid char *vcl_name; \
rigid char *hosthdr; \
rigid char *authority; \
vtim_dur connect_timeout; \
vtim_dur first_byte_timeout; \
vtim_dur between_bytes_timeout; \
vtim_dur backend_wait_timeout; \
unsigned max_connections; \
unsigned proxy_header; \
unsigned backend_wait_limit;
#define VRT_BACKEND_INIT(be) \
do { \
INIT_OBJ(be, VRT_BACKEND_MAGIC); \
(be)->connect_timeout = -1.0; \
(be)->first_byte_timeout = -1.0; \
(be)->between_bytes_timeout = -1.0; \
(be)->backend_wait_timeout = -1.0; \
} while(0)
#define VRT_BACKEND_HANDLE() \
do { \
DA(vcl_name); \
DA(hosthdr); \
DA(authority); \
DN(connect_timeout); \
DN(first_byte_timeout); \
DN(between_bytes_timeout); \
DN(backend_wait_timeout); \
DN(max_connections); \
DN(proxy_header); \
DN(backend_wait_limit); \
} while(0)
struct vrt_backend {
unsigned magic;
#define VRT_BACKEND_MAGIC 0x4799ce6c
const struct vrt_endpoint *endpoint;
VRT_BACKEND_FIELDS(const)
VCL_PROBE probe;
};
#define VRT_BACKEND_PROBE_FIELDS(rigid) \
vtim_dur timeout; \
vtim_dur interval; \
unsigned exp_status; \
unsigned window; \
unsigned threshold; \
unsigned initial; \
unsigned exp_close;
#define VRT_BACKEND_PROBE_HANDLE() \
do { \
DN(timeout); \
DN(interval); \
DN(exp_status); \
DN(window); \
DN(threshold); \
DN(initial); \
DN(exp_close); \
} while (0)
struct vrt_backend_probe {
unsigned magic;
#define VRT_BACKEND_PROBE_MAGIC 0x84998490
const char *url;
const char *request;
VRT_BACKEND_PROBE_FIELDS(const)
};
/* Backend related */
VCL_BACKEND VRT_new_backend(VRT_CTX, const struct vrt_backend *, VCL_BACKEND);
VCL_BACKEND VRT_new_backend_clustered(VRT_CTX,
struct vsmw_cluster *, const struct vrt_backend *, VCL_BACKEND);
size_t VRT_backend_vsm_need(VRT_CTX);
void VRT_delete_backend(VRT_CTX, VCL_BACKEND *);
struct vrt_endpoint *VRT_Endpoint_Clone(const struct vrt_endpoint *vep);
/***********************************************************************
* Getting hold of the various struct http
*/
enum gethdr_e {
HDR_REQ,
HDR_REQ_TOP,
HDR_RESP,
HDR_OBJ,
HDR_BEREQ,
HDR_BERESP
};
struct gethdr_s {
enum gethdr_e where;
const char *what;
};
VCL_HTTP VRT_selecthttp(VRT_CTX, enum gethdr_e);
VCL_STRING VRT_GetHdr(VRT_CTX, VCL_HEADER);
/***********************************************************************
* req related
*/
enum lbody_e {
LBODY_SET_STRING,
LBODY_ADD_STRING,
LBODY_SET_BLOB,
LBODY_ADD_BLOB,
};
#define LBODY_SET LBODY_SET_STRING
#define LBODY_ADD LBODY_ADD_STRING
VCL_BYTES VRT_CacheReqBody(VRT_CTX, VCL_BYTES maxsize);
VCL_STRING VRT_ban_string(VRT_CTX, VCL_STRING);
VCL_INT VRT_purge(VRT_CTX, VCL_DURATION, VCL_DURATION, VCL_DURATION);
VCL_VOID VRT_synth(VRT_CTX, VCL_INT, VCL_STRING);
VCL_VOID VRT_hit_for_pass(VRT_CTX, VCL_DURATION);
VCL_BOOL VRT_ValidHdr(VRT_CTX, VCL_STRANDS);
VCL_VOID VRT_UnsetHdr(VRT_CTX, VCL_HEADER);
VCL_VOID VRT_SetHdr(VRT_CTX, VCL_HEADER, const char *pfx, VCL_STRANDS);
VCL_VOID VRT_handling(VRT_CTX, unsigned hand);
unsigned VRT_handled(VRT_CTX);
VCL_VOID VRT_trace(VRT_CTX, VCL_BOOL);
VCL_VOID VRT_fail(VRT_CTX, const char *fmt, ...) v_printflike_(2,3) v_cold_;
VCL_VOID VRT_hashdata(VRT_CTX, VCL_STRANDS);
VCL_VOID VRT_Rollback(VRT_CTX, VCL_HTTP);
/* Synthetic pages */
VCL_VOID VRT_synth_strands(VRT_CTX, VCL_STRANDS);
VCL_VOID VRT_synth_blob(VRT_CTX, VCL_BLOB);
/***********************************************************************
* VDI - Director API
*/
typedef VCL_BOOL vdi_healthy_f(VRT_CTX, VCL_BACKEND, VCL_TIME *);
typedef VCL_BACKEND vdi_resolve_f(VRT_CTX, VCL_BACKEND);
typedef int vdi_gethdrs_f(VRT_CTX, VCL_BACKEND);
typedef VCL_IP vdi_getip_f(VRT_CTX, VCL_BACKEND);
typedef void vdi_finish_f(VRT_CTX, VCL_BACKEND);
typedef stream_close_t vdi_http1pipe_f(VRT_CTX, VCL_BACKEND);
typedef void vdi_event_f(VCL_BACKEND, enum vcl_event_e);
typedef void vdi_release_f(VCL_BACKEND);
typedef void vdi_destroy_f(VCL_BACKEND);
typedef void vdi_panic_f(VCL_BACKEND, struct vsb *);
typedef void vdi_list_f(VRT_CTX, VCL_BACKEND, struct vsb *, int, int);
struct vdi_methods {
unsigned magic;
#define VDI_METHODS_MAGIC 0x4ec0c4bb
const char *type;
vdi_http1pipe_f *http1pipe;
vdi_healthy_f *healthy;
vdi_resolve_f *resolve;
vdi_gethdrs_f *gethdrs;
vdi_getip_f *getip;
vdi_finish_f *finish;
vdi_event_f *event;
// called by VRT_DelDirector: deref all backends
vdi_release_f *release;
// when refcount goes 0
vdi_destroy_f *destroy;
vdi_panic_f *panic;
vdi_list_f *list;
};
struct director {
unsigned magic;
#define DIRECTOR_MAGIC 0x3336351d
void *priv;
char *vcl_name;
struct vcldir *vdir;
struct lock *mtx;
};
VCL_BOOL VRT_Healthy(VRT_CTX, VCL_BACKEND, VCL_TIME *);
VCL_VOID VRT_SetChanged(VCL_BACKEND, VCL_TIME);
VCL_BACKEND VRT_AddDirector(VRT_CTX, const struct vdi_methods *,
void *, const char *, ...) v_printflike_(4, 5);
void VRT_DisableDirector(VCL_BACKEND);
void VRT_StaticDirector(VCL_BACKEND);
VCL_BACKEND VRT_LookupDirector(VRT_CTX, VCL_STRING);
void VRT_DelDirector(VCL_BACKEND *);
void VRT_Assign_Backend(VCL_BACKEND *dst, VCL_BACKEND src);
/***********************************************************************
* vmod_priv related
*/
typedef void vmod_priv_fini_f(VRT_CTX, void *);
struct vmod_priv_methods {
unsigned magic;
#define VMOD_PRIV_METHODS_MAGIC 0xcea5ff99
const char *type;
vmod_priv_fini_f *fini;
};
struct vmod_priv {
void *priv;
long len;
const struct vmod_priv_methods *methods;
};
void VRT_priv_fini(VRT_CTX, const struct vmod_priv *p);
struct vmod_priv *VRT_priv_task(VRT_CTX, const void *vmod_id);
struct vmod_priv *VRT_priv_task_get(VRT_CTX, const void *vmod_id);
struct vmod_priv *VRT_priv_top(VRT_CTX, const void *vmod_id);
struct vmod_priv *VRT_priv_top_get(VRT_CTX, const void *vmod_id);
/***********************************************************************
* VSM and VSC
*/
struct vsmw_cluster *VRT_VSM_Cluster_New(VRT_CTX, size_t);
void VRT_VSM_Cluster_Destroy(VRT_CTX, struct vsmw_cluster **);
#ifdef va_start // XXX: hackish
void *VRT_VSC_Alloc(struct vsmw_cluster *, struct vsc_seg **,
const char *, size_t, const unsigned char *, size_t, const char *, va_list);
#endif
void VRT_VSC_Destroy(const char *, struct vsc_seg *);
void VRT_VSC_Hide(const struct vsc_seg *);
void VRT_VSC_Reveal(const struct vsc_seg *);
size_t VRT_VSC_Overhead(size_t);
/***********************************************************************
* API to restrict the VCL in various ways
*/
struct vclref;
struct vclref * VRT_VCL_Prevent_Cold(VRT_CTX, const char *);
void VRT_VCL_Allow_Cold(struct vclref **);
struct vclref * VRT_VCL_Prevent_Discard(VRT_CTX, const char *);
void VRT_VCL_Allow_Discard(struct vclref **);
/***********************************************************************
* Deprecated interfaces, do not use, they will disappear at some point.
*/
VCL_VOID VRT_synth_page(VRT_CTX, VCL_STRANDS);
int VRT_Stv(const char *nm);
|