|  | varnish-cache/lib/libvcc/vcc_var.c | 
| 0 | 
   | 
  /*-  | 
| 1 | 
   | 
   * Copyright (c) 2006 Verdens Gang AS  | 
| 2 | 
   | 
   * Copyright (c) 2006-2011 Varnish Software AS  | 
| 3 | 
   | 
   * All rights reserved.  | 
| 4 | 
   | 
   *  | 
| 5 | 
   | 
   * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>  | 
| 6 | 
   | 
   *  | 
| 7 | 
   | 
   * SPDX-License-Identifier: BSD-2-Clause  | 
| 8 | 
   | 
   *  | 
| 9 | 
   | 
   * Redistribution and use in source and binary forms, with or without  | 
| 10 | 
   | 
   * modification, are permitted provided that the following conditions  | 
| 11 | 
   | 
   * are met:  | 
| 12 | 
   | 
   * 1. Redistributions of source code must retain the above copyright  | 
| 13 | 
   | 
   *    notice, this list of conditions and the following disclaimer.  | 
| 14 | 
   | 
   * 2. Redistributions in binary form must reproduce the above copyright  | 
| 15 | 
   | 
   *    notice, this list of conditions and the following disclaimer in the  | 
| 16 | 
   | 
   *    documentation and/or other materials provided with the distribution.  | 
| 17 | 
   | 
   *  | 
| 18 | 
   | 
   * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND  | 
| 19 | 
   | 
   * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE  | 
| 20 | 
   | 
   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE  | 
| 21 | 
   | 
   * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE  | 
| 22 | 
   | 
   * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL  | 
| 23 | 
   | 
   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS  | 
| 24 | 
   | 
   * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)  | 
| 25 | 
   | 
   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT  | 
| 26 | 
   | 
   * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY  | 
| 27 | 
   | 
   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  | 
| 28 | 
   | 
   * SUCH DAMAGE.  | 
| 29 | 
   | 
   */  | 
| 30 | 
   | 
   | 
| 31 | 
   | 
  #include "config.h"  | 
| 32 | 
   | 
   | 
| 33 | 
   | 
  #include <stdlib.h>  | 
| 34 | 
   | 
  #include <string.h>  | 
| 35 | 
   | 
   | 
| 36 | 
   | 
  #include "vcc_compile.h"  | 
| 37 | 
   | 
   | 
| 38 | 
   | 
  #include "vct.h"  | 
| 39 | 
   | 
   | 
| 40 | 
   | 
  /*--------------------------------------------------------------------*/  | 
| 41 | 
   | 
   | 
| 42 | 
   | 
  void  | 
| 43 | 
  1800520 | 
  vcc_Header_Fh(const struct vcc *tl, const struct symbol *sym)  | 
| 44 | 
   | 
  { | 
| 45 | 
   | 
          const struct symbol *parent;  | 
| 46 | 
   | 
   | 
| 47 | 
  1800520 | 
          AN(tl);  | 
| 48 | 
  1800520 | 
          AN(sym);  | 
| 49 | 
  1800520 | 
          AZ(sym->wildcard);  | 
| 50 | 
  1800520 | 
          assert(sym->type == HEADER);  | 
| 51 | 
   | 
   | 
| 52 | 
  1800520 | 
          parent = sym->eval_priv;  | 
| 53 | 
  1800520 | 
          AN(parent);  | 
| 54 | 
  1800520 | 
          AN(parent->wildcard);  | 
| 55 | 
  1800520 | 
          assert(parent->type == HEADER);  | 
| 56 | 
   | 
   | 
| 57 | 
   | 
          /* Create the static identifier */  | 
| 58 | 
  1800520 | 
          Fh(tl, 0, "static const struct gethdr_s %s =\n", sym->rname + 1);  | 
| 59 | 
  1800520 | 
          Fh(tl, 0, "    { %s, HDR(\"%s\")};\n", parent->rname, sym->name); | 
| 60 | 
  1800520 | 
  }  | 
| 61 | 
   | 
   | 
| 62 | 
   | 
  /*--------------------------------------------------------------------*/  | 
| 63 | 
   | 
   | 
| 64 | 
   | 
  void v_matchproto_(sym_wildcard_t)  | 
| 65 | 
  2791200 | 
  vcc_Var_Wildcard(struct vcc *tl, struct symbol *parent, struct symbol *sym)  | 
| 66 | 
   | 
  { | 
| 67 | 
   | 
          struct vsb *vsb;  | 
| 68 | 
   | 
          const char *p;  | 
| 69 | 
   | 
   | 
| 70 | 
  2791200 | 
          AN(sym);  | 
| 71 | 
  2791200 | 
          assert(parent->type == HEADER);  | 
| 72 | 
   | 
   | 
| 73 | 
  2791200 | 
          if (strlen(sym->name) >= 127) { | 
| 74 | 
  80 | 
                  VSB_printf(tl->sb, "HTTP header (%.20s..) is too long.\n",  | 
| 75 | 
  40 | 
                      sym->name);  | 
| 76 | 
  40 | 
                  tl->err = 1;  | 
| 77 | 
  40 | 
                  return;  | 
| 78 | 
   | 
          }  | 
| 79 | 
   | 
   | 
| 80 | 
  37760240 | 
          for (p = sym->name; *p != '\0'; p++) { | 
| 81 | 
  34969120 | 
                  if (!vct_istchar(*p)) { | 
| 82 | 
  40 | 
                          VSB_cat(tl->sb, "Invalid character '");  | 
| 83 | 
  40 | 
                          VSB_quote(tl->sb, p, 1, VSB_QUOTE_PLAIN);  | 
| 84 | 
  40 | 
                          VSB_cat(tl->sb, "' in header name.\n");  | 
| 85 | 
  40 | 
                          tl->err = 1;  | 
| 86 | 
  40 | 
                          return;  | 
| 87 | 
   | 
                  }  | 
| 88 | 
  34969080 | 
          }  | 
| 89 | 
   | 
   | 
| 90 | 
  2791120 | 
          sym->noref = 1;  | 
| 91 | 
  2791120 | 
          sym->kind = SYM_VAR;  | 
| 92 | 
  2791120 | 
          sym->type = parent->type;  | 
| 93 | 
  2791120 | 
          sym->eval = vcc_Eval_Var;  | 
| 94 | 
  2791120 | 
          sym->eval_priv = parent;  | 
| 95 | 
  2791120 | 
          sym->r_methods = parent->r_methods;  | 
| 96 | 
  2791120 | 
          sym->w_methods = parent->w_methods;  | 
| 97 | 
  2791120 | 
          sym->u_methods = parent->u_methods;  | 
| 98 | 
   | 
   | 
| 99 | 
   | 
          /* Create a C-name version of the header name */  | 
| 100 | 
  2791120 | 
          vsb = VSB_new_auto();  | 
| 101 | 
  2791120 | 
          AN(vsb);  | 
| 102 | 
  2791120 | 
          VSB_printf(vsb, "&VGC_%s_", parent->rname);  | 
| 103 | 
  2791120 | 
          VCC_PrintCName(vsb, sym->name, NULL);  | 
| 104 | 
  2791120 | 
          AZ(VSB_finish(vsb));  | 
| 105 | 
   | 
   | 
| 106 | 
   | 
          /* Create the symbol r/l values */  | 
| 107 | 
  2791120 | 
          sym->rname = TlDup(tl, VSB_data(vsb));  | 
| 108 | 
   | 
   | 
| 109 | 
  2791120 | 
          if (sym->w_methods) { | 
| 110 | 
  2790760 | 
                  VSB_clear(vsb);  | 
| 111 | 
  2790760 | 
                  VSB_printf(vsb, "VRT_SetHdr(ctx, %s,", sym->rname);  | 
| 112 | 
  2790760 | 
                  AZ(VSB_finish(vsb));  | 
| 113 | 
  2790760 | 
                  sym->lname = TlDup(tl, VSB_data(vsb));  | 
| 114 | 
  2790760 | 
          }  | 
| 115 | 
   | 
   | 
| 116 | 
  2791120 | 
          if (sym->u_methods) { | 
| 117 | 
  2790760 | 
                  VSB_clear(vsb);  | 
| 118 | 
  2790760 | 
                  VSB_printf(vsb, "VRT_UnsetHdr(ctx, %s)", sym->rname);  | 
| 119 | 
  2790760 | 
                  AZ(VSB_finish(vsb));  | 
| 120 | 
  2790760 | 
                  sym->uname = TlDup(tl, VSB_data(vsb));  | 
| 121 | 
  2790760 | 
          }  | 
| 122 | 
  2791120 | 
          VSB_destroy(&vsb);  | 
| 123 | 
   | 
   | 
| 124 | 
  2791120 | 
          if (sym->lorev > 0)  | 
| 125 | 
  1800080 | 
                  vcc_Header_Fh(tl, sym);  | 
| 126 | 
  2791200 | 
  }  |