ŮͬÐÔÁµcbcb

    1. <form id=BrWzaEuJE><nobr id=BrWzaEuJE></nobr></form>
      <address id=BrWzaEuJE><nobr id=BrWzaEuJE><nobr id=BrWzaEuJE></nobr></nobr></address>

      varnish-cache/lib/libvcc/vcc_backend.c
      0
      /*-
      1
       * Copyright (c) 2006 Verdens Gang AS
      2
       * Copyright (c) 2006-2015 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
      32
      #include "config.h"
      33
      34
      #include <math.h>
      35
      #include <stdlib.h>
      36
      #include <string.h>
      37
      #include <sys/stat.h>
      38
      #include <sys/types.h>
      39
      #include <sys/socket.h>
      40
      #include <netdb.h>
      41
      42
      43
      #include "vcc_compile.h"
      44
      #include "vsa.h"
      45
      #include "vss.h"
      46
      #include "vus.h"
      47
      48
      /*--------------------------------------------------------------------
      49
       * Struct sockaddr is not really designed to be a compile time
      50
       * initialized data structure, so we encode it as a byte-string
      51
       * and put it in an official sockaddr when we load the VCL.
      52
       */
      53
      54
      static void
      55 2742
      Emit_Sockaddr(struct vcc *tl, struct vsb *vsb1, const struct token *t_host,
      56
          const struct token *t_port)
      57
      {
      58
              const char *ipv4, *ipv4a, *ipv6, *ipv6a, *pa;
      59
              char buf[BUFSIZ];
      60
      61 2742
              AN(t_host->dec);
      62
      63 2742
              if (t_port != NULL)
      64 2094
                      bprintf(buf, "%s %s", t_host->dec, t_port->dec);
      65
              else
      66 648
                      bprintf(buf, "%s", t_host->dec);
      67 5484
              Resolve_Sockaddr(tl, buf, "80",
      68 2742
                  &ipv4, &ipv4a, &ipv6, &ipv6a, &pa, 2, t_host, "Backend host");
      69 2742
              ERRCHK(tl);
      70 2738
              if (ipv4 != NULL) {
      71 5452
                      VSB_printf(vsb1,
      72
                          "\t.ipv4 = (const struct suckaddr *)%s,\n",
      73 2726
                          ipv4);
      74 2726
              }
      75 2738
              if (ipv6 != NULL) {
      76 28
                      VSB_printf(vsb1,
      77
                          "\t.ipv6 = (const struct suckaddr *)%s,\n",
      78 14
                          ipv6);
      79 14
              }
      80 2738
              VSB_cat(vsb1, "\t.uds_path = (void *) 0,\n");
      81 2742
      }
      82
      83
      /*
      84
       * a string represents an IP address if getaddrinfo(AI_NUMERICHOST) succeeds
      85
       */
      86
      static int
      87 20
      isip(const char *addr)
      88
      {
      89 20
              char buf[vsa_suckaddr_len];
      90
      91 20
              return (VSS_ResolveOne(buf, addr, "80", AF_UNSPEC, SOCK_STREAM,
      92 20
                  AI_NUMERICHOST | AI_NUMERICSERV) != NULL);
      93 20
      }
      94
      95
      /*
      96
       * For UDS, we do not create a VSA. We run the VUS_resolver() checks and, if
      97
       * it's a path, can be accessed, and is a socket. If so, just emit the path
      98
       * field and set the IP suckaddrs to NULL.
      99
       */
      100
      101
      static int
      102 64
      uds_resolved(void *priv, const struct sockaddr_un *uds)
      103
      {
      104 64
              (void) priv;
      105 64
              (void) uds;
      106 64
              return (42);
      107
      }
      108
      109
      static void
      110 62
      emit_path(struct vsb *vsb1, char *path)
      111
      {
      112 62
              VSB_printf(vsb1, "\t.uds_path = \"%s\",\n", path);
      113 62
              VSB_cat(vsb1, "\t.ipv4 = (void *) 0,\n");
      114 62
              VSB_cat(vsb1, "\t.ipv6 = (void *) 0,\n");
      115 62
      }
      116
      117
      static void
      118 68
      Emit_UDS_Path(struct vcc *tl, struct vsb *vsb1,
      119
          const struct token *t_path, const char *errid)
      120
      {
      121
              struct stat st;
      122
              const char *vus_err;
      123
      124 68
              AN(t_path);
      125 68
              AN(t_path->dec);
      126
      127 68
              if (! VUS_is(t_path->dec)) {
      128 4
                      VSB_printf(tl->sb,
      129
                                 "%s: Must be a valid path or abstract socket:\n",
      130 2
                                 errid);
      131 2
                      vcc_ErrWhere(tl, t_path);
      132 2
                      return;
      133
              }
      134 66
              if (VUS_resolver(t_path->dec, uds_resolved, NULL, &vus_err) != 42) {
      135 2
                      VSB_printf(tl->sb, "%s: %s\n", errid, vus_err);
      136 2
                      vcc_ErrWhere(tl, t_path);
      137 2
                      return;
      138
              }
      139 64
              if (*t_path->dec == '@') {
      140 0
                      emit_path(vsb1, t_path->dec);
      141 0
                      return;
      142
              }
      143 64
              assert(*t_path->dec == '/');
      144 64
              errno = 0;
      145 64
              if (stat(t_path->dec, &st) != 0) {
      146 2
                      int err = errno;
      147 4
                      VSB_printf(tl->sb, "%s: Cannot stat: %s\n", errid,
      148 2
                                 strerror(errno));
      149 2
                      vcc_ErrWhere(tl, t_path);
      150 2
                      if (err == ENOENT || err == EACCES)
      151 2
                              vcc_Warn(tl);
      152
                      else
      153 0
                              return;
      154 64
              } else if (!S_ISSOCK(st.st_mode)) {
      155 2
                      VSB_printf(tl->sb, "%s: Not a socket:\n", errid);
      156 2
                      vcc_ErrWhere(tl, t_path);
      157 2
                      return;
      158
              }
      159 62
              emit_path(vsb1, t_path->dec);
      160 68
      }
      161
      162
      /*--------------------------------------------------------------------
      163
       * Disallow mutually exclusive field definitions
      164
       */
      165
      166
      static void
      167 2880
      vcc_Redef(struct vcc *tl, const char *redef, const struct token **t_did,
      168
          const struct token *t_field)
      169
      {
      170 2880
              if (*t_did != NULL) {
      171 6
                      VSB_printf(tl->sb, "%s redefinition at:\n", redef);
      172 6
                      vcc_ErrWhere(tl, t_field);
      173 6
                      VSB_cat(tl->sb, "Previous definition:\n");
      174 6
                      vcc_ErrWhere(tl, *t_did);
      175 6
                      return;
      176
              }
      177 2874
              *t_did = t_field;
      178 2880
      }
      179
      180
      /*--------------------------------------------------------------------
      181
       * Parse a backend probe specification
      182
       */
      183
      184
      static void
      185 94
      vcc_ParseProbeSpec(struct vcc *tl, const struct symbol *sym, char **namep)
      186
      {
      187
              struct fld_spec *fs;
      188
              const struct token *t_field;
      189 94
              const struct token *t_did = NULL, *t_window = NULL, *t_threshold = NULL;
      190 94
              struct token *t_initial = NULL;
      191
              unsigned window, threshold, initial, status, exp_close;
      192
              char buf[32];
      193
              const char *name;
      194
              double t;
      195
      196 94
              fs = vcc_FldSpec(tl,
      197
                  "?url",
      198
                  "?request",
      199
                  "?expected_response",
      200
                  "?timeout",
      201
                  "?interval",
      202
                  "?window",
      203
                  "?threshold",
      204
                  "?initial",
      205
                  "?expect_close",
      206
                  NULL);
      207
      208 94
              SkipToken(tl, '{');
      209
      210 94
              if (sym != NULL) {
      211 42
                      name = sym->rname;
      212 42
              } else {
      213 52
                      bprintf(buf, "vgc_probe__%d", tl->nprobe++);
      214 52
                      name = buf;
      215
              }
      216 94
              Fh(tl, 0, "static const struct vrt_backend_probe %s[] = {{\n", name);
      217 94
              Fh(tl, 0, "\t.magic = VRT_BACKEND_PROBE_MAGIC,\n");
      218 94
              if (namep != NULL)
      219 94
                      *namep = TlDup(tl, name);
      220
      221 94
              window = 0;
      222 94
              threshold = 0;
      223 94
              initial = 0;
      224 94
              status = 0;
      225 94
              exp_close = 1;
      226 314
              while (tl->t->tok != '}') {
      227
      228 232
                      vcc_IsField(tl, &t_field, fs);
      229 232
                      ERRCHK(tl);
      230 232
                      if (vcc_IdIs(t_field, "url")) {
      231 26
                              vcc_Redef(tl, "Probe request", &t_did, t_field);
      232 26
                              ERRCHK(tl);
      233 24
                              ExpectErr(tl, CSTR);
      234 24
                              Fh(tl, 0, "\t.url = ");
      235 24
                              EncToken(tl->fh, tl->t);
      236 24
                              Fh(tl, 0, ",\n");
      237 24
                              vcc_NextToken(tl);
      238 230
                      } else if (vcc_IdIs(t_field, "request")) {
      239 10
                              vcc_Redef(tl, "Probe request", &t_did, t_field);
      240 10
                              ERRCHK(tl);
      241 8
                              ExpectErr(tl, CSTR);
      242 8
                              Fh(tl, 0, "\t.request =\n");
      243 32
                              while (tl->t->tok == CSTR) {
      244 24
                                      Fh(tl, 0, "\t\t");
      245 24
                                      EncToken(tl->fh, tl->t);
      246 24
                                      Fh(tl, 0, " \"\\r\\n\"\n");
      247 24
                                      vcc_NextToken(tl);
      248
                              }
      249 8
                              Fh(tl, 0, "\t\t\"\\r\\n\",\n");
      250 204
                      } else if (vcc_IdIs(t_field, "timeout")) {
      251 20
                              Fh(tl, 0, "\t.timeout = ");
      252 20
                              vcc_Duration(tl, &t);
      253 20
                              ERRCHK(tl);
      254 18
                              Fh(tl, 0, "%g,\n", t);
      255 194
                      } else if (vcc_IdIs(t_field, "interval")) {
      256 52
                              Fh(tl, 0, "\t.interval = ");
      257 52
                              vcc_Duration(tl, &t);
      258 52
                              ERRCHK(tl);
      259 52
                              Fh(tl, 0, "%g,\n", t);
      260 176
                      } else if (vcc_IdIs(t_field, "window")) {
      261 40
                              t_window = tl->t;
      262 40
                              window = vcc_UintVal(tl);
      263 40
                              ERRCHK(tl);
      264 124
                      } else if (vcc_IdIs(t_field, "initial")) {
      265 28
                              t_initial = tl->t;
      266 28
                              initial = vcc_UintVal(tl);
      267 28
                              ERRCHK(tl);
      268 84
                      } else if (vcc_IdIs(t_field, "expected_response")) {
      269 4
                              status = vcc_UintVal(tl);
      270 4
                              if (status < 100 || status > 999) {
      271 2
                                      VSB_cat(tl->sb,
      272
                                          "Must specify .expected_response with "
      273
                                          "exactly three digits "
      274
                                          "(100 <= x <= 999)\n");
      275 2
                                      vcc_ErrWhere(tl, tl->t);
      276 2
                                      return;
      277
                              }
      278 2
                              ERRCHK(tl);
      279 54
                      } else if (vcc_IdIs(t_field, "threshold")) {
      280 44
                              t_threshold = tl->t;
      281 44
                              threshold = vcc_UintVal(tl);
      282 44
                              ERRCHK(tl);
      283 52
                      } else if (vcc_IdIs(t_field, "expect_close")) {
      284 8
                              exp_close = vcc_BoolVal(tl);
      285 8
                              ERRCHK(tl);
      286 4
                      } else {
      287 0
                              vcc_ErrToken(tl, t_field);
      288 0
                              vcc_ErrWhere(tl, t_field);
      289 0
                              ErrInternal(tl);
      290 0
                              return;
      291
                      }
      292
      293 220
                      SkipToken(tl, ';');
      294
              }
      295 82
              free(fs);
      296
      297 82
              if (t_threshold != NULL || t_window != NULL) {
      298 46
                      if (t_threshold == NULL && t_window != NULL) {
      299 2
                              VSB_cat(tl->sb,
      300
                                  "Must specify .threshold with .window\n");
      301 2
                              vcc_ErrWhere(tl, t_window);
      302 2
                              return;
      303 44
                      } else if (t_threshold != NULL && t_window == NULL) {
      304 6
                              if (threshold > 64) {
      305 2
                                      VSB_cat(tl->sb,
      306
                                          "Threshold must be 64 or less.\n");
      307 2
                                      vcc_ErrWhere(tl, t_threshold);
      308 2
                                      return;
      309
                              }
      310 4
                              window = threshold + 1;
      311 42
                      } else if (window > 64) {
      312 2
                              AN(t_window);
      313 2
                              VSB_cat(tl->sb, "Window must be 64 or less.\n");
      314 2
                              vcc_ErrWhere(tl, t_window);
      315 2
                              return;
      316
                      }
      317 40
                      if (threshold > window ) {
      318 2
                              VSB_cat(tl->sb,
      319
                                  "Threshold cannot be greater than window.\n");
      320 2
                              AN(t_threshold);
      321 2
                              vcc_ErrWhere(tl, t_threshold);
      322 2
                              AN(t_window);
      323 2
                              vcc_ErrWhere(tl, t_window);
      324 2
                      }
      325 40
                      Fh(tl, 0, "\t.window = %u,\n", window);
      326 40
                      Fh(tl, 0, "\t.threshold = %u,\n", threshold);
      327 40
              }
      328 76
              if (t_initial != NULL)
      329 28
                      Fh(tl, 0, "\t.initial = %u,\n", initial);
      330
              else
      331 48
                      Fh(tl, 0, "\t.initial = ~0U,\n");
      332 76
              if (status > 0)
      333 2
                      Fh(tl, 0, "\t.exp_status = %u,\n", status);
      334 76
              Fh(tl, 0, "\t.exp_close = %u,\n", exp_close);
      335 76
              Fh(tl, 0, "}};\n");
      336 76
              SkipToken(tl, '}');
      337 94
      }
      338
      339
      /*--------------------------------------------------------------------
      340
       * Parse and emit a probe definition
      341
       */
      342
      343
      void
      344 44
      vcc_ParseProbe(struct vcc *tl)
      345
      {
      346
              struct symbol *sym;
      347
              char *p;
      348
      349 44
              vcc_NextToken(tl);                      /* ID: probe */
      350
      351 44
              vcc_ExpectVid(tl, "backend probe");     /* ID: name */
      352 44
              ERRCHK(tl);
      353
      354 44
              sym = VCC_HandleSymbol(tl, PROBE);
      355 44
              ERRCHK(tl);
      356 42
              AN(sym);
      357 42
              vcc_ParseProbeSpec(tl, sym, &p);
      358
      359 42
              if (sym->type == DEFAULT)
      360 20
                      tl->default_probe = p;
      361
              else
      362 22
                      free(p);
      363 44
      }
      364
      365
      /*--------------------------------------------------------------------
      366
       * Parse and emit a backend host definition
      367
       *
      368
       * The struct vrt_backend is emitted to Fh().
      369
       */
      370
      371
      static void
      372 3344
      vcc_ParseHostDef(struct vcc *tl, struct symbol *sym,
      373
          const struct token *t_be, const char *vgcname)
      374
      {
      375
              const struct token *t_field;
      376
              const struct token *t_val;
      377
              const struct token *t_probe;
      378 3344
              const struct token *t_host = NULL;
      379 3344
              const struct token *t_port = NULL;
      380 3344
              const struct token *t_path = NULL;
      381 3344
              const struct token *t_hosthdr = NULL;
      382 3344
              const struct token *t_authority = NULL;
      383 3344
              const struct token *t_did = NULL;
      384 3344
              const struct token *t_preamble = NULL;
      385
              struct symbol *pb;
      386
              struct fld_spec *fs;
      387
              struct inifin *ifp;
      388
              struct vsb *vsb1;
      389 3344
              struct symbol *via = NULL;
      390 3344
              vtim_dur connect_timeout = NAN;
      391 3344
              vtim_dur first_byte_timeout = NAN;
      392 3344
              vtim_dur between_bytes_timeout = NAN;
      393 3344
              vtim_dur backend_wait_timeout = NAN;
      394
              char *p, *pp;
      395
              unsigned u;
      396
              int l;
      397
      398 3554
              if (tl->t->tok == ID &&
      399 492
                  (vcc_IdIs(tl->t, "none") || vcc_IdIs(tl->t, "None"))) {
      400 492
                      vcc_NextToken(tl);
      401 492
                      SkipToken(tl, ';');
      402 492
                      ifp = New_IniFin(tl);
      403 492
                      VSB_printf(ifp->ini, "\t(void)%s;", vgcname);
      404 492
                      VSB_printf(ifp->fin, "\t\t(void)%s;", vgcname);
      405 492
                      return;
      406
              }
      407
      408 2852
              SkipToken(tl, '{');
      409
      410
              /* Check for old syntax */
      411 2852
              if (tl->t->tok == ID && vcc_IdIs(tl->t, "set")) {
      412 2
                      VSB_cat(tl->sb,
      413
                          "NB: Backend Syntax has changed:\n"
      414
                          "Remove \"set\" and \"backend\" in front"
      415
                          " of backend fields.\n" );
      416 2
                      vcc_ErrToken(tl, tl->t);
      417 2
                      VSB_cat(tl->sb, " at ");
      418 2
                      vcc_ErrWhere(tl, tl->t);
      419 2
                      return;
      420
              }
      421
      422 2850
              fs = vcc_FldSpec(tl,
      423
                  "?host",
      424
                  "?port",
      425
                  "?path",
      426
                  "?host_header",
      427
                  "?connect_timeout",
      428
                  "?first_byte_timeout",
      429
                  "?between_bytes_timeout",
      430
                  "?probe",
      431
                  "?max_connections",
      432
                  "?proxy_header",
      433
                  "?preamble",
      434
                  "?via",
      435
                  "?authority",
      436
                  "?wait_timeout",
      437
                  "?wait_limit",
      438
                  NULL);
      439
      440 2850
              tl->fb = VSB_new_auto();
      441 2850
              AN(tl->fb);
      442
      443 5700
              Fb(tl, 0, "\nstatic const struct vrt_backend vgc_dir_priv_%s = {\n",
      444 2850
                  vgcname);
      445
      446 2850
              Fb(tl, 0, "\t.magic = VRT_BACKEND_MAGIC,\n");
      447 2850
              Fb(tl, 0, "\t.endpoint = &vgc_dir_ep_%s,\n", vgcname);
      448 2850
              Fb(tl, 0, "\t.vcl_name = \"%.*s", PF(t_be));
      449 2850
              Fb(tl, 0, "\",\n");
      450
      451 7956
              while (tl->t->tok != '}') {
      452
      453 5142
                      vcc_IsField(tl, &t_field, fs);
      454 5142
                      ERRCHK(tl);
      455 5138
                      if (vcc_IdIs(t_field, "host")) {
      456 2772
                              vcc_Redef(tl, "Address", &t_did, t_field);
      457 2772
                              ERRCHK(tl);
      458 2772
                              ExpectErr(tl, CSTR);
      459 2772
                              assert(tl->t->dec != NULL);
      460 2772
                              t_host = tl->t;
      461 2772
                              vcc_NextToken(tl);
      462 2772
                              SkipToken(tl, ';');
      463 5138
                      } else if (vcc_IdIs(t_field, "port")) {
      464 2098
                              ExpectErr(tl, CSTR);
      465 2098
                              assert(tl->t->dec != NULL);
      466 2098
                              t_port = tl->t;
      467 2098
                              vcc_NextToken(tl);
      468 2098
                              SkipToken(tl, ';');
      469 2366
                      } else if (vcc_IdIs(t_field, "path")) {
      470 74
                              if (tl->syntax < VCL_41) {
      471 2
                                      VSB_cat(tl->sb,
      472
                                          "Unix socket backends only supported"
      473
                                          " in VCL4.1 and higher.\n");
      474 2
                                      vcc_ErrToken(tl, tl->t);
      475 2
                                      VSB_cat(tl->sb, " at ");
      476 2
                                      vcc_ErrWhere(tl, tl->t);
      477 2
                                      VSB_destroy(&tl->fb);
      478 2
                                      return;
      479
                              }
      480 72
                              vcc_Redef(tl, "Address", &t_did, t_field);
      481 72
                              ERRCHK(tl);
      482 70
                              ExpectErr(tl, CSTR);
      483 70
                              assert(tl->t->dec != NULL);
      484 70
                              t_path = tl->t;
      485 70
                              vcc_NextToken(tl);
      486 70
                              SkipToken(tl, ';');
      487 264
                      } else if (vcc_IdIs(t_field, "host_header")) {
      488 12
                              ExpectErr(tl, CSTR);
      489 12
                              assert(tl->t->dec != NULL);
      490 12
                              t_hosthdr = tl->t;
      491 12
                              vcc_NextToken(tl);
      492 12
                              SkipToken(tl, ';');
      493 194
                      } else if (vcc_IdIs(t_field, "connect_timeout")) {
      494 6
                              Fb(tl, 0, "\t.connect_timeout = ");
      495 6
                              vcc_Duration(tl, &connect_timeout);
      496 6
                              ERRCHK(tl);
      497 6
                              Fb(tl, 0, "%g,\n", connect_timeout);
      498 6
                              SkipToken(tl, ';');
      499 182
                      } else if (vcc_IdIs(t_field, "first_byte_timeout")) {
      500 6
                              Fb(tl, 0, "\t.first_byte_timeout = ");
      501 6
                              vcc_Duration(tl, &first_byte_timeout);
      502 6
                              ERRCHK(tl);
      503 6
                              Fb(tl, 0, "%g,\n", first_byte_timeout);
      504 6
                              SkipToken(tl, ';');
      505 176
                      } else if (vcc_IdIs(t_field, "between_bytes_timeout")) {
      506 2
                              Fb(tl, 0, "\t.between_bytes_timeout = ");
      507 2
                              vcc_Duration(tl, &between_bytes_timeout);
      508 2
                              ERRCHK(tl);
      509 2
                              Fb(tl, 0, "%g,\n", between_bytes_timeout);
      510 2
                              SkipToken(tl, ';');
      511 170
                      } else if (vcc_IdIs(t_field, "max_connections")) {
      512 22
                              u = vcc_UintVal(tl);
      513 22
                              ERRCHK(tl);
      514 22
                              SkipToken(tl, ';');
      515 22
                              Fb(tl, 0, "\t.max_connections = %u,\n", u);
      516 168
                      } else if (vcc_IdIs(t_field, "proxy_header")) {
      517 12
                              t_val = tl->t;
      518 12
                              u = vcc_UintVal(tl);
      519 12
                              ERRCHK(tl);
      520 12
                              if (u != 1 && u != 2) {
      521 0
                                      VSB_cat(tl->sb,
      522
                                          ".proxy_header must be 1 or 2\n");
      523 0
                                      vcc_ErrWhere(tl, t_val);
      524 0
                                      VSB_destroy(&tl->fb);
      525 0
                                      return;
      526
                              }
      527 12
                              SkipToken(tl, ';');
      528 12
                              Fb(tl, 0, "\t.proxy_header = %u,\n", u);
      529 146
                      } else if (vcc_IdIs(t_field, "probe") && tl->t->tok == '{') {
      530 52
                              vcc_ParseProbeSpec(tl, NULL, &p);
      531 52
                              Fb(tl, 0, "\t.probe = %s,\n", p);
      532 52
                              free(p);
      533 52
                              ERRCHK(tl);
      534 114
                      } else if (vcc_IdIs(t_field, "probe") && tl->t->tok == ID) {
      535 22
                              t_probe = tl->t;
      536 22
                              pb = VCC_SymbolGet(tl, SYM_MAIN, SYM_PROBE,
      537
                                  SYMTAB_EXISTING, XREF_REF);
      538 22
                              ERRCHK(tl);
      539 20
                              AN(pb);
      540 20
                              if (pb->type == DEFAULT) {
      541 2
                                      if (tl->default_probe == NULL) {
      542 2
                                              VSB_cat(tl->sb,
      543
                                                  "No default probe defined\n");
      544 2
                                              vcc_ErrToken(tl, t_probe);
      545 2
                                              VSB_cat(tl->sb, " at\n");
      546 2
                                              vcc_ErrWhere(tl, t_probe);
      547 2
                                      }
      548 2
                                      pb = PROBE->default_sym;
      549 2
                              }
      550 20
                              ERRCHK(tl);
      551 18
                              Fb(tl, 0, "\t.probe = %s,\n", pb->rname);
      552 18
                              SkipToken(tl, ';');
      553 78
                      } else if (vcc_IdIs(t_field, "probe")) {
      554 2
                              VSB_cat(tl->sb, "Expected '{' or name of probe, got ");
      555 2
                              vcc_ErrToken(tl, tl->t);
      556 2
                              VSB_cat(tl->sb, " at\n");
      557 2
                              vcc_ErrWhere(tl, tl->t);
      558 2
                              VSB_destroy(&tl->fb);
      559 2
                              return;
      560 58
                      } else if (vcc_IdIs(t_field, "preamble")) {
      561 2
                              ExpectErr(tl, CBLOB);
      562 2
                              t_preamble = tl->t;
      563 2
                              vcc_NextToken(tl);
      564 2
                              SkipToken(tl, ';');
      565 58
                      } else if (vcc_IdIs(t_field, "via")) {
      566 24
                              via = VCC_SymbolGet(tl, SYM_MAIN, SYM_BACKEND,
      567
                                  SYMTAB_EXISTING, XREF_REF);
      568 24
                              ERRCHK(tl);
      569 24
                              AN(via);
      570 24
                              AN(via->rname);
      571
      572 24
                              if (via->extra != NULL) {
      573 2
                                      AZ(strcmp(via->extra, "via"));
      574 2
                                      VSB_cat(tl->sb,
      575
                                              "Cannot stack .via backends at\n");
      576 2
                                      vcc_ErrWhere(tl, tl->t);
      577 2
                                      VSB_destroy(&tl->fb);
      578 2
                                      return;
      579
                              }
      580
      581 22
                              AN(sym);
      582 22
                              AZ(sym->extra);
      583 22
                              sym->extra = "via";
      584 22
                              SkipToken(tl, ';');
      585 54
                      } else if (vcc_IdIs(t_field, "authority")) {
      586 12
                              ExpectErr(tl, CSTR);
      587 12
                              assert(tl->t->dec != NULL);
      588 12
                              t_authority = tl->t;
      589 12
                              vcc_NextToken(tl);
      590 12
                              SkipToken(tl, ';');
      591 32
                      } else if (vcc_IdIs(t_field, "wait_timeout")) {
      592 10
                              Fb(tl, 0, "\t.backend_wait_timeout = ");
      593 10
                              vcc_Duration(tl, &backend_wait_timeout);
      594 10
                              ERRCHK(tl);
      595 10
                              Fb(tl, 0, "%g,\n", backend_wait_timeout);
      596 10
                              SkipToken(tl, ';');
      597 20
                      } else if (vcc_IdIs(t_field, "wait_limit")) {
      598 10
                              u = vcc_UintVal(tl);
      599 10
                              ERRCHK(tl);
      600 10
                              SkipToken(tl, ';');
      601 10
                              Fb(tl, 0, "\t.backend_wait_limit = %u,\n", u);
      602 10
                      } else {
      603 0
                              ErrInternal(tl);
      604 0
                              VSB_destroy(&tl->fb);
      605 0
                              return;
      606
                      }
      607
      608
              }
      609
      610 2814
              vcc_FieldsOk(tl, fs);
      611 2814
              free(fs);
      612 2814
              ERRCHK(tl);
      613
      614 2814
              if (isnan(connect_timeout))
      615 2808
                      Fb(tl, 0, "\t.connect_timeout = -1.0,\n");
      616 2814
              if (isnan(first_byte_timeout))
      617 2808
                      Fb(tl, 0, "\t.first_byte_timeout = -1.0,\n");
      618 2814
              if (isnan(between_bytes_timeout))
      619 2812
                      Fb(tl, 0, "\t.between_bytes_timeout = -1.0,\n");
      620 2814
              if (isnan(backend_wait_timeout))
      621 2804
                      Fb(tl, 0, "\t.backend_wait_timeout = -1.0,\n");
      622
      623 2814
              ExpectErr(tl, '}');
      624
      625 2814
              if (t_host == NULL && t_path == NULL) {
      626 2
                      VSB_cat(tl->sb, "Expected .host or .path.\n");
      627 2
                      vcc_ErrWhere(tl, t_be);
      628 2
                      VSB_destroy(&tl->fb);
      629 2
                      return;
      630
              }
      631
      632 2812
              if (via != NULL && t_path != NULL) {
      633 2
                      VSB_cat(tl->sb, "Cannot set both .via and .path.\n");
      634 2
                      vcc_ErrWhere(tl, t_be);
      635 2
                      return;
      636
              }
      637
      638 2810
              if (via != NULL)
      639 20
                      AZ(via->extra);
      640
      641 2810
              vsb1 = VSB_new_auto();
      642 2810
              AN(vsb1);
      643 5620
              VSB_printf(vsb1,
      644
                  "\nstatic const struct vrt_endpoint vgc_dir_ep_%s = {\n",
      645 2810
                  vgcname);
      646 2810
              VSB_cat(vsb1, "\t.magic = VRT_ENDPOINT_MAGIC,\n");
      647
      648 2810
              assert(t_host != NULL || t_path != NULL);
      649 2810
              if (t_host != NULL)
      650
                      /* Check that the hostname makes sense */
      651 2742
                      Emit_Sockaddr(tl, vsb1, t_host, t_port);
      652
              else
      653
                      /* Check that the path can be a legal UDS */
      654 68
                      Emit_UDS_Path(tl, vsb1, t_path, "Backend path");
      655 2810
              ERRCHK(tl);
      656
      657 2800
              if (t_preamble != NULL)
      658 2
                      VSB_printf(vsb1, "\t.preamble = %s,\n", t_preamble->dec);
      659
      660 2800
              VSB_cat(vsb1, "};\n");
      661 2800
              AZ(VSB_finish(vsb1));
      662 2800
              Fh(tl, 0, "%s", VSB_data(vsb1));
      663 2800
              VSB_destroy(&vsb1);
      664
      665
              /* Emit the hosthdr field, fall back to .host if not specified */
      666
              /* If .path is specified, set "0.0.0.0". */
      667 2800
              Fb(tl, 0, "\t.hosthdr = ");
      668 2800
              if (t_hosthdr != NULL)
      669 12
                      EncToken(tl->fb, t_hosthdr);
      670 2788
              else if (t_host != NULL)
      671 2730
                      EncToken(tl->fb, t_host);
      672
              else
      673 58
                      Fb(tl, 0, "\"0.0.0.0\"");
      674 2800
              Fb(tl, 0, ",\n");
      675
      676
              /*
      677
               * Emit the authority field, falling back to hosthdr, then host.
      678
               *
      679
               * When authority is "", sending the TLV is disabled.
      680
               *
      681
               * authority must be a valid SNI HostName (RFC 4366 ch. 3.1), but the
      682
               * RFC does not define what that is and defers to "DNS hostname".
      683
               *
      684
               * So instead of trying to attempt a solution to that pandora's box, we
      685
               * just implement >>Literal IPv4 and IPv6 addresses are not permitted in
      686
               * "HostName".<<
      687
               */
      688 2800
              if (via != NULL) {
      689 20
                      AN(t_host);
      690 20
                      if (t_authority != NULL)
      691 12
                              t_val = t_authority;
      692 8
                      else if (t_hosthdr != NULL)
      693 6
                              t_val = t_hosthdr;
      694
                      else
      695 2
                              t_val = t_host;
      696 20
                      p = t_val->dec;
      697
      698 20
                      if (isip(p)) {
      699 4
                              if (t_val == t_authority)
      700 0
                                      VSB_cat(tl->sb, ".authority can not be an ip address with .via.\n");
      701
                              else {
      702 8
                                      VSB_printf(tl->sb, ".%s used as authority can not be an ip address with .via.\n",
      703 4
                                              t_val == t_hosthdr ? "host_header" : "host");
      704 4
                                      VSB_cat(tl->sb, "Hint: configure .authority explicitly\n");
      705
                              }
      706 4
                              vcc_ErrWhere(tl, t_val);
      707 4
                      }
      708
      709 20
                      pp = strchr(p, ':');
      710 20
                      l = (pp == NULL) ? -1 : (int)(pp - p);
      711
      712 20
                      Fb(tl, 0, "\t.authority = ");
      713 20
                      VSB_quote(tl->fb, p, l, VSB_QUOTE_CSTR);
      714 20
                      Fb(tl, 0, ",\n");
      715 20
              }
      716
      717
              /* Close the struct */
      718 2800
              Fb(tl, 0, "};\n");
      719
      720 2800
              vcc_NextToken(tl);
      721
      722 2800
              AZ(VSB_finish(tl->fb));
      723 2800
              Fh(tl, 0, "%s", VSB_data(tl->fb));
      724 2800
              VSB_destroy(&tl->fb);
      725
      726 2800
              ifp = New_IniFin(tl);
      727 5600
              VSB_printf(ifp->ini,
      728
                  "\t%s =\n\t    VRT_new_backend_clustered(ctx, vsc_cluster,\n"
      729
                  "\t\t&vgc_dir_priv_%s, %s);\n",
      730 2800
                  vgcname, vgcname, via ? via->rname : "NULL");
      731 5600
              VSB_printf(ifp->ini,
      732 2800
                  "\tif (%s)\n\t\tVRT_StaticDirector(%s);", vgcname, vgcname);
      733 2800
              VSB_printf(ifp->fin, "\t\tVRT_delete_backend(ctx, &%s);", vgcname);
      734 3344
      }
      735
      736
      /*--------------------------------------------------------------------
      737
       * Parse directors and backends
      738
       */
      739
      740
      void
      741 3354
      vcc_ParseBackend(struct vcc *tl)
      742
      {
      743
              struct token *t_first, *t_be;
      744
              struct symbol *sym;
      745
              const char *dn;
      746
      747 3354
              tl->ndirector++;
      748 3354
              t_first = tl->t;
      749 3354
              SkipToken(tl, ID);              /* ID: backend */
      750
      751 3354
              vcc_ExpectVid(tl, "backend");   /* ID: name */
      752 3354
              ERRCHK(tl);
      753
      754 3352
              t_be = tl->t;
      755
      756 3352
              sym = VCC_HandleSymbol(tl, BACKEND);
      757 3352
              ERRCHK(tl);
      758 3346
              AN(sym);
      759
      760 3346
              if (sym->type == DEFAULT) {
      761 150
                      if (tl->first_director != NULL) {
      762 8
                              tl->first_director->noref = 0;
      763 8
                              tl->first_director = NULL;
      764 8
                              tl->default_director = NULL;
      765 8
                      }
      766 150
                      if (tl->default_director != NULL) {
      767 2
                              VSB_cat(tl->sb,
      768
                                  "Only one default director possible.\n");
      769 2
                              vcc_ErrWhere(tl, t_first);
      770 2
                              return;
      771
                      }
      772 148
                      dn = "vgc_backend_default";
      773 148
                      tl->default_director = dn;
      774 148
              } else {
      775 3196
                      dn = sym->rname;
      776 3196
                      if (tl->default_director == NULL) {
      777 2662
                              tl->first_director = sym;
      778 2662
                              tl->default_director = dn;
      779 2662
                              sym->noref = 1;
      780 2662
                      }
      781
              }
      782
      783 3344
              Fh(tl, 0, "\nstatic VCL_BACKEND %s;\n", dn);
      784 3344
              vcc_ParseHostDef(tl, sym, t_be, dn);
      785 3344
              if (tl->err) {
      786 112
                      VSB_printf(tl->sb,
      787 56
                          "\nIn %.*s specification starting at:\n", PF(t_first));
      788 56
                      vcc_ErrWhere(tl, t_first);
      789 56
                      return;
      790
              }
      791 3354
      }
      792
      793
      void
      794 6170
      vcc_Backend_Init(struct vcc *tl)
      795
      {
      796
              struct inifin *ifp;
      797
      798 6170
              Fh(tl, 0, "\nstatic struct vsmw_cluster *vsc_cluster;\n");
      799 6170
              ifp = New_IniFin(tl);
      800 6170
              VSB_cat(ifp->ini, "\tvsc_cluster = VRT_VSM_Cluster_New(ctx,\n"
      801
                  "\t    ndirector * VRT_backend_vsm_need(ctx));\n");
      802 6170
              VSB_cat(ifp->ini, "\tif (vsc_cluster == 0)\n\t\treturn(1);");
      803 6170
              VSB_cat(ifp->fin, "\t\tVRT_VSM_Cluster_Destroy(ctx, &vsc_cluster);");
      804 6170
      }
      Henceforth, whatever our philosopher says about Matter will apply to extension and to extension alone. It cannot be apprehended by sight, nor by hearing, nor by smell, nor by taste, for it is neither colour, nor sound, nor odour, nor juice. Neither can it be touched, for it is not a body, but it becomes corporeal on being blended with sensible qualities. And, in a later essay, he describes it as receiving all things and letting them depart again without retaining the slightest trace of their presence.483 Why then, it may be asked, if Plotinus meant extension, could he not say so at once, and save us all this trouble in hunting out his meaning? There were very good reasons why he should not. In the first place, he wished to express himself, so far as possible, in Aristotelian phraseology, and this was incompatible with the reduction of Matter to extension. In the next place, the idea of an infinite void had been already appropriated by the Epicureans, to whose system he was bitterly opposed. And, finally, the extension of ordinary327 experience had not the absolute generality which was needed in order to bring Matter into relation with that ultimate abstraction whence, like everything else, it has now to be derived. That the millionaire was genuine, ¡°in person and not a caricature,¡± as Dick put it, was evident. Both the nurse, his relative, and his wife, were chatting with him as Jeff delivered the heavy packed ball made up of the gum. 233 "I guess not," said Landor, tolerantly, as he turned[Pg 106] his horse over to his orderly; "but, anyway," he added to Ellton, "we had a picnic¡ªof a sort." Si, unable to think of anything better, went with him. The train had stopped on a switch, and seemed likely to rust fast to the rails, from the way other trains were going by in both directions. The bridge gang, under charge of a burly, red-faced young Englishman, was in the rear car, with their tools, equipments, bedding and cooking utensils. THE DEACON HAS SOME EXPERIENCES WITH THE QUADRUPED. "You are not within a mile of the truth. I know it. Look here: I believe that is Gen. Rosecrans's own cow. She's gone, and I got an order to look around for her. I've never seen her, but from the description given me I believe that's she. Who brought her here?" "Deacon, these brothers and sisters who have come here with me to-night are, like myself, deeply interested in the moral condition of the army, where we all have sons or kinsmen. Now, can't you sit right there and tell us of your observations and experiences, as a Christian man and father, from day to day, of every day that you were down there? Tell us everything, just as it happened each day, that we may be able to judge for ourselves." HAS AN ENCOUNTER WITH THE PROVOST-MARSHAL. "Wonder which one o' them is the 200th Injianny's?" said Si to Shorty. "And your mother, and Harry?" The daughter must be the girl who was talking to him now. She sat on a little stool by the fire, and had brought out some sewing. "Over at Grandturzel¡ªcan't see wot's burning from here. Git buckets and come!" These things, however, gave little concern to the worthy who commanded the Kentish division. Tyler, though an excellent blacksmith, possessed few of the qualities requisite for forming a good general. Provided there was no very sensible diminution in the number of his followers, he cared not a straw for the score or two who, after quarrelling, or perhaps fighting, withdrew in such disgust that they vowed rather to pay the full tax for ever than submit to the insolence of the rebels. One man could fight as well as another, reasoned he; and, provided he was obeyed, what mattered it by whom. Dick went and Tom came¡ªit was sure to be all one in the end. But this burst of indignation soon passed away, and upon the suggestion of the prudent Sir Robert Hailes, he sent an evasive answer, with a command that the Commons should attend him at Windsor on the Sunday following. That it was a stratagem to gain entrance to the Tower, was the opinion of several, but, after much discussion, it was decided that the man should be admitted, and that the monk should be exhibited merely to intimidate the rebels, until the result of this promised communication should be known. HoMEŮͬÐÔÁµcbcb ENTER NUMBET 0017
      jijin9.com.cn
      jydsg.com.cn
      huomi2.com.cn
      gtavr.net.cn
      www.liti0.com.cn
      ylcn.net.cn
      www.yaozu2.net.cn
      nijia8.net.cn
      www.nanmu5.net.cn
      46webfind.com.cn
      张柏芝露b 尻逼逼影院 人体艺术avav 动漫黑人图 五月天欧美色图片 小妹妹人艺体艺术 三集片huaog WWW.JIJIZY.COM WWW.USQ6.COM WWW.85KKKK.COM WWW.QI-WEN.COM WWW.SE9992.COM WWW.09ZZZZ.COM WWW.HNLYTF.COM WWW.TJKPZX.COM WWW.ZXSP68.COM WWW.HHH840.COM WWW.MV94.COM WWW.114066.COM WWW.61PPS.COM WWW.313K.COM WWW.HHH131.COM WWW.CL611.COM WWW.WJJSOFT.COM WWW.976QQ.NET WWW.RE219.COM WWW.TTXUTZF.COM WWW.410R.COM ABU.OMAR WWW.74TGG.COM WWW.18AVDAY.COM WWW.BBB710.COM WWW.CWGRC.COM WWW.AA717.COM WWW.H9XR.COM gehentaiorg 哥哥姐姐综合社区 av毛片无码片 99re5久久热在线播放快 俄欧美妈妈与儿子乱伦 骚逼被操视频哥哥去哥哥色爱操逼 好好干亚洲老太太b WWW44rerecon www9696h wwwasw4444com 依依社区人妻图片 东京热苍井空QVOD www_东京热_com 意淫强奸人妻女友 真人性爱姿势电影 淫系列 有声书收听 免费av在线看 在我AV天堂 www日本黄片 日韩千部黄色电影 2012天堂伦理最新加勒比 唐山大兄 在线哥哥去 一木道福利 草榴社区2016 插我的小tube avtt2020 亚洲性爱-脱光干X网 WWW_ANQUYE789_COM 久久热集百万潮流 www5060lucom av999偷拍自拍 濑亚美莉磁力连接 成人美女游戏 色色网激情视频学生 手机版人与动物啪啪 清纯女友被轮奸调教 午夜网址大全 刺激撸的网站 久久影音手机版下载百度云 游戏人体艺术 q播自拍偷拍 wwwxxooluolicom 监狱里的大鸡巴 羞涩影院会员 www903sscom 石家庄少女的性爱视频 日本儿子五月天 黄色片xxx 熟女成人乱伦做爱免费视频 骚鸡鸡 2015狼人av综合 www7xpxpcomftp 全国黄色片子 美国新农夫综合 wwwmcc222com 岳母在线观看 日日射日一日fi79com 萝莉h在线看视频 港台美女 变态另类欧美性爱av天堂2014 wwwnn535c慰m Www331com 古墓丽影h版免费观看 国产父女乱伦小说 蔡依林纹身图案 女人17P 强奸乱伦最稳定网站 自偷自拍百度百度 日本激情点的床上男女 坠落色戒 凌辱女友mcc色站 亚洲男女淫秽乱伦性交色图 wwaisedizhicomcom 作者不详bt工厂 91porm手机端 新新影院若怒 人妖性爱高潮图片 CK在线看 日本阴户视频美国人曾交 熟女露逼口交 国产图片成人av小说wwwlsy2016com sm车神 www115cdcom 大奶娴的调教qk3pcom 爷爷和孙女乱伦影片 美女做爱自拍25P 亚洲欧美色片在线播放 日本丝袜熟妇乱伦 琪琪自拍偷拍 黑丝诱惑亚州性夜夜射 412vvcom www510ddc5cbiz 骚逼姐姐的大屁股 色色鸡巴图片 cluanlun 大肥婆性爱 尤娜种子 00后人体图片少女无毛掰开图片 快播人与马交配 全祼体女张筱雨 乐乐形式亚洲色图 偷拍自拍模特mb 成人在线骚逼女人 高清图片网站裸体丝袜熟妇 色 五月天 婷婷 快播 抽插逼图片 11xingjiao 拳交 am 人体艺术女人最大胆的高清阴道全裸图 好色猫欧亚色图 人与曽肏屄播放 baguacaobi 同志做爱视屏 2014吉吉影音三级片 成人美女贴图 人體圖片網 色色人导航 天天撸夜夜撸高清色图大图 插美人老师 WWW_JDMI_COM hp之报应来得快 天籁地球村 名字测 董文华儿子 鞋子大全 亚洲视频新 日本人体里美尤利娅 草比阴影先锋 张柏芝的黑木耳西瓜 美女老师光屁股 猛插青空小夏骚穴图 日本人口交图 熟女肛交30p wwwdd43com 少妇大胆阴部大bb图片 快播ay 张柏芝艳照门高清下载 sao8080c 美女美穴图片30p 乱伦大鸡吧操逼故事 五月天duppid1 mac版淫色网站 岸明日香ed2k 色撸撸色图 惊变激情戏在多少分钟 人体艺术大图下载 圣后骚货 高清无码母乱伦 8090色色网 美女图片大胸删除 明星性交合成骚图 大胆漏阴人体艺术 美女行爱视频 插娇艳欲滴片阴 光棍影院丫丫11111 超碰最新视频精品视频wwwjd993com 淫淫操淫淫逼 女人露全乳图片 久草在线资草免 暴露女友轮奸 美女骚穴值得一日15P 欧美阿v女星播放 曰本色惰 国产超级法在线 色狗成年综合伊人 俄罗斯成人免费视频gegequlucom 33连导航农夫十次了 日本丰满肉弹熟妇 大香蕉伊人Tv 搜索色色色生香 三浦敦子mp4 伊人香蕉网WWWtr668com 黄色视频播放器wwwyehaobo7com 学姐的卫生巾 wwwse青青草com 骚美女36D 村上理沙手机在线播放 胔死我了爽啊 麻椒直播百度百科 岛国肉戏片在线下载 色中色成人黄色影院 12p黄色 爸别舔了啊轻点 超碰视频在线am 外国人做爱爽图片 有没有不不需要播放器的毛片 shkd官网 狼人干综合在线视频久久14iycom 黄色录像同性恋口交 处女红舒淇 熟女您射 有声小说推荐 诗春色 小泽玛利亚成长 小泽玛利亚现在 没病毒的h网 www酷狗音乐com www小沈阳com 四方伯伯开心五月天 精彩电影 天然素人 我也去色 妹妹AV综合 强奸迷奸做爱 910668快播 色大姐 撸撸管 doa成人电影 天堂网014 男同chinese帅哥gav玄兵 牛叉b电影435yy 千人斩的电影天堂 乱伦视频app 亚洲AV外卖 migd-4188 白鸟寿美礼电影伦理片 水之声动漫 wwwes18 妹子被干B 性感女秘书肉丝超短裙加班时被经理扑倒操爽后说 我等下要喷潮了 好痒啊 你快点 办 心动网址你懂视频 曰韩后入视频 日本情爱电影 日韩AB首汉-尿色电影 人人干人人 ts 艾彩trample 轻轻搞m3u8 新视觉a 五月丁香综合缴情香蕉 2014Aⅴ天堂 色奶妈在线 4hu 1122 在线偷拍自拍图片 97视频日本一本道 强奸超碰视频 黄图女性全身照 haodiaoyin这里只有精 凹凸视频 youjiz 吾爱久草福利导航 超碰视频在线美女逼 bunnybunnylove福利 伦理片adfy 流氓医生和俏护士视频 欧美强奸视频在线网站 777福利导航 直播偷拍在线观看视频 i8宝马影院在线 做爱黄福利影院 嘬大鸡巴 五月青青草 国产夫妻找人玩3p漂亮媳妇被单男猛操连续高潮磁力 外国XⅩx在线 高清无码色欲迷墙 jufd_409在线观看 hu99 播菊网 人人看人人爱人人妻 欧美性爱网进口 成人caohub AVOP127无码 ftp 冯熙璇 (春夏女装) -(帆布鞋) 东北娇妻土豪视频 X 影片名:网红美女演绎学生看到老师穿着高跟丝袜很性感就尾随跟到家里和老 国产成人啪啪自拍 91免费免费视频在线观看噜噜 SD001丝袜电影 欧美图片自拍图片 111pdy最新地址 久久热在线视频国产91大神熊哥 色酷狠狠干 wwwAV手机 手机看片动图 色偷拍亚洲偷自拍在线视频 筋流在线播放 757午夜福利影视1000 米奇大香蕉在线视频 百度热搜推荐乱伦自拍 西瓜影音 k8经典邱淑贞 无影院码 将军肉公主成人漫画 av在线日本人妻无码 亚洲欧美中文日韩在线无码 av淘宝视频在线分类 拉风色国产 初中白丝自慰 SHIB-026 神山美羽 魅惑の縦スジ 绿茶导航国产 午夜福利236 超薄丝袜约炮 制服诱惑快播涩 日本高清无码美女视频 日本性乱交视频 丝袜在线观看综合 97起碰在线自拍 3344动画伦理片 在线拍 A级片互舔 2828sezy 学院女神 富二代三亚 萝莉学生视频 大象视频福利 香艳视频集锦 学生妹诱惑福利合集 magnet 邪恶里番肉番 香蕉视视频app 消失的说说日本伦理 日本一本道黄色视频在线播放 美国成人综艺节目磁力链接 里番无修手机在线看 松岛绫花步兵下载 亚洲 日韩 在线 制服 午夜高清自拍 狂胔美女空姐小说 大学生偷拍自拍 免费操逼黄片大全 rion 先锋在线 俄罗斯性爱茄视频 久播 福利 内射av小视频 主播 和 狗 交 配视频在线观看 福利小电影在线观看免费观看 干阴逼 MIAD-937 magnet 一本道,东京热第一页 abp561c 毛片激情直播网站 86手机在线看a片资源 国产偷拍 欧洲激情 操碰色区 999xdv 777影院 亚洲性直播live 红阁番影院 日本一本高清无码mv 22bbbb 亚洲人成网站在线播放图片 第一综合色站 real睿宝内部V8视频种子 国产真实偷拍啪视 在大街上穿着裙子没带自慰棒视频。 logdown永久地址 手机看黄片红楼梦 日本天天干 午夜11p 日本鲜肉gv百度云 啄木鸟在线观看免费 4tubesex deos曰本 a性交视频 成人手机福利,车上各种 俄罗斯美女裸体黄片 日本高清视频网页 爵迹2迅雷磁力链接 不用下载的免费操逼视频 综合色爱视频 黄色美女干黄色事 换妻性交真实影片 久久国产在线野战 AV淘宝2018在线 4438成人网(开心五月) 国产综合色 xo168惰色在线 南里美希泳装 手机自拍偷拍强奸乱伦 超碰成年人福利无码 日本女人女同视频 麻生千春视频 极品外围女模特拍摄时被摄影师勾引 拳脚周晓林在线播放 先锋影音:超模全裸大片 安全的免费av 沉香 性欲 邱县特级黄片 立川理惠七夕电影在线 美女被孼 国产自拍伦理电影 日韩理论大全视频 淫妻小说 爱丝小仙女思妍白丝 熊猫tv杜姗姗私人视频 和刚下班的白领在洗手间 好看的中文字幕色拍拍噜 92福利自拍 AEEN资源 迅雷 下载欧美女优 国外一级录像 熟女性生活视频在线观看 莲实克蕾儿 中文在线 91秦先生小明看看 冴岛香织在线av AV在线论坛 江疏影2分钟视频链接 那种女的虐女的番号 亚州福利电影 国产张飞跃在线播放 国产自拍第9页 韩国三级理论福利视频 色吧 春暖花开春暖花开 最新福利短视频在线 手机在线好吊草视频 国产超高级自拍 龙腾色狼 性交2018国产久久精采视频 网红h视频迅雷下载 magnet 国产a片作品 2017亚洲天堂在线av电影网 苍空 手机观看网哈 xⅩxSex 4438x 1成人网 奸轰片 国产自拍欧美视频 huangsedepian 亚洲成八综合视频 第四色先锋色色 国产熟妻女人在线视频 人妻生活前编在线观看 欧美爱爱插小 黄s网大全 少女水逼 色人党苍井空 俺也撸激情明星 在露沐浴和大奶子美女做爱 做爱黄色图片网站 优酷爱疯主播分成 和丝袜老师做爱 999色网 苍井空的色墙 被男友狠狠玩奶子骚穴 日本国模人体艺术图片 裸体性感欧洲帅哥 白虎裸体艺术 最新豚眠影音先锋 恋足舔脚视频 色99色 132renti 大学生援交50p 欧美色图很很lou 我把岳母操的狂叫 大胆人体组图 马六人体高贵美 妇 女人秘密处动态照 性感黑丝小骚逼 WWW_BBSTT86_COM 天堂岛男人的天堂 少妇爱大鸟【15p】怡春院百度 大战熟女记txt 日本漫画的人体艺术 哥哥射 p 操乡下熟鸡 夜射猫在线播放 岳母和女讯做爱 国产cenren 美女嫩逼50 谷歌大胆人体艺术图片 ed2k无码女同番号 空姐的秘密狠狠干 梦意杀机 北京函授大学 亚洲成人美女性交区 泰妹性交做爱 狠狠影院下载 WWW_WW945VV_COM 张筱雨棵体艺术写真集 不穿衣服的美浪妇 草别人媳妇 成人花花公子导航 日本美女裸体大全 xunleimianfeidianyingxiazai 妈妈操逼色色色视频 狠狠干meinurenti aiyishu 插老师导航 avhbocom 那英性爱1级片 欧美操屄上视频 我想和亲妈发生过关系 黑人干美女的的电影 国内丝袜大妈图片 美女大胆人体丝袜 400色色色 chabibiantai 国内乱妇乱伦 stoya图片裸照 黄色3及 色妹妹口交吃精 小明看看平台se7se7 熟女大姨 人与兽影音先锋播放 宫本由美淫 有人体色图 明星色图29 辽大bt 日韩孕妇做爱 乱伦文章天天色 我的妈妈是淫荡老师五十熟女 喷奶三级片 WWW777VFCOM 欧美与亚洲色片 换妻不要停快操我的屄 饭冈加奈子男人最喜欢的类型网传 最大胆亚洲裸体艺术 国产自拍土逼视屏 拍照做爱 我被两个老外抱着干 狂插白洁 强奸伦理片 逼图片第26p 亿性家社区视频 成人片最新狼友 733动漫网成人片影音先锋 姐妹妈妈阿姨日逼 综合插插a 日本A片899jjcom 岛国鲁炸天在线影院 欧美性交操b 2017丝袜少妇贴吧 好想要性生活 欧美成人教育片巨乳wwwmjlnihydbufcn savsopwcn 小说区视频区欧美时尚自拍偷拍 成人丽丽 亚洲性va在线观看百度 淫妻丝袜小说网 骚妻小莹 操性奴女 白虎人体艺术 亚州淫性片 中年操 佐山爱女友的姐姐下载 大香蕉之肥胖熟妇在线视频 古典武侠第四色色午夜 成濑心美2017人体 免下载偷拍黄色 风流少妇人体艺术图片 欧美桃在影院 性感丝袜漫画美女图片 免费看欧美黄色大片网站xxx 家庭老师姐姐的诱惑漫画 男孩操的女孩好爽视频播放 舔大学美脚微博 天津爆打桩系列在线 wwwcaoxiu184co 噜wwwav567net 日韩黄色女忧 欧美男女操逼图像 图片色姐妹 老岳母的肥乳 在线成人电影免播放器免下载2014成人视频免费在线观看 自拍丝袜欧美偷拍 美乳翘臀自拍偷拍 成人电影实战 少女手淫偷拍视频 奸入女儿 www图图成人站 表姐在车上让我插穴 超市强暴在线 亚洲巨乳少女色27p nass系列合集 偷拍自拍自拍一区在线观看 3p4p做爱 成人有声读物 上了个美女亚洲色图 metartvideosxxx av大腿夹射系列 能手机在线看的福利长片 爆乳美女无码15p 夜射猫精品乱伦 青楼社区免费观看 另类专区自慰在线wwwhhxxoo1com wwwzly99com 人人操色8 色网p 少妇激情综合站 熟女内裤艳照 成人偷拍自怕免费在线电影 逍遥牛牛官网 无毛小穴 7777avcom下载 妈妈撸狠狠干 wwwll777 大黑屄插插插 草榴社区2012网址 carporn欧美网站 顶破av片 黑老大插插 狠狠偷2016你懂得 aboutblank约炮 肉洞肉棍口交 撸管网址淫色帝国 中年同志叔叔的大老二 play视频资源 色尼姑色尼姑在线色尼姑图色尼姑影院 四房播狠狠撸 player亚洲有码 亚洲色图人妻乱伦手机版 jjaz_com黄色网 超碰羞羞 徐冬冬吃男人鸡巴视频 凌辱 武侠激情都市小说 大炮撸在线影院 清纯唯美激情五月姐姐 色阁第色季姐妹爱情 黄色片黄色视频黄色论理小说 长沙哪里有A片购买 美国妓院电影操我 色尼姑久久超碰视频在线 www五月天cm ttjh113dddcom 亚洲欧洲另类视频在线 极品日本熟女人妻 白领制服丝袜控在线视频 淫乱伦性爱电影 嫩女自拍 Xxoo88 114张悠雨魅惑图片色色看看色色看看主 老婆在我面前小说 真人性爱姿势动图 有什么外国人兽网站 wwwluluhetv女 和弟弟交尾 性交实拍舔鸡巴1000部 丝足交小说 美女明星的人体素像 www942tvcomwww942tvcom 看美女ys avdian126cmo 风暴AV天堂2015在线 褪色膏 大奶屄视频 ppypp影视天堂手机版 人人摸人人干888excom 成人动漫东方 性爱动漫在线免费 高清无码日本下载 小黄漫画书在线看 咪咪网络 苍井空人艺体图片大胆 裸体艺术爱人体ctrl十d ccc36色女孩 看兽性交 网友自拍暗暗撸 女人与兽做爱小说 人人色色成人专业操逼视频图 亚洲p炮综合图 熟了网 女优性交免费电影 鲁特特色中色影院先锋 caopiwangzhan 饭岛爱图片网 菠萝野结衣演过多少部电影 好看的电影特级黄色图片 兰桂坊人成在线视频 刑讯女小说 调教日本女优 wwwav777con 少年与熟妇爱图 女子与爱狗拔不出视频 哇嘎成个人社区米奇 熟女屄毛 风骚系2 小说 台湾强奸潮 操bi视频 美奶子 狠狠射狠狠操色妈妈色姐姐 激情乱伦口述 色狗中文字幕qvod 亚州偷拍自拍露奶子 女忧私处艺术 我在这里等你歌词 孤芳不自赏天天天影院 大学生做爱下载 丝袜内射吧 xxx大胆人体艺术 caoporen—在线视频 大胸长腿丝袜裸照美女 李宗瑞强奸mia 美女裸漏下阴 长泽锌胖瘦刚刚好的爆乳女吉吉 去撸吧社区亚洲视频 14岁儿子与母亲性交 大胆男人人体写真 WWWWWNNVCOM www844con 欧美色炮爱爱 做爱用品 妈妈再来一次波多野结衣快播 哪里有正规网站黄色小说 淫妻张敏阿红和公公乱伦 freefron快播 下一篇内射3p 真实的骚妇 欧美人妻肉射wwwqqqq68com 母婿口交乱伦 天天好逼百度影音 绝色贵妇丝袜小说 女厕所里熟女手淫视频 哥也色屄屄 舔阴蒂偷情 骚货操的你爽不爽 18岁以下禁止视频myoukucom 滛乱网www78iiiicom dizhi调教 日日夜夜鲁妈妈鲁播放人妖 狠狠射性感美女屁股图片 884aa在线wrsyioxjnlncn 琪怡红院 印度美女腋毛 中亚美女性爱图 电动抽插阳具下载 1314狠狠撸亚洲 jav女优网站 WWWKKKSSSC0m 欧美潮喷av网 wwwbbfulicomdianying AV群交游泳馆 咪咪爱网址最新百度 www优妓种子 黑屌曰幼女 黄色读书乱伦 明星av手机在线视频 春药催眠magnet 东京热淫乱人妻 裸体少妇阴道 另类有声小说 程蝶衣知春色 类似春色 樱井莉亚种子 小泽玛利亚av3gp 小泽玛利亚全片 求无毒h网 电脑能上的h网 色五月开心五月天 50268669东京热 手机可以看的黄片 黄网看黄片 黄色小说群 四房播 狼友之家 色既是空 高清做爱图 哥哥色在线 良人社导航 天天she app午夜快播免费1000 中国国产凤凰av 22 xhatmer 18 哥也色看不了 青青国产中文在线 轻吻也飘然 520少妇全集 全套服务在线云播 让人湿的文字 青草日日视频 讯雷哥云手机在线视频 人妻群p视频自拍 日韩 偷拍 自拍 在线 日本日日摸 女人天堂a视频区 茄子影院在线播放 手心影院黄色免费视频 乳交视频免费 f86080新视觉影院官网 259luxu日本线上资源 wwwsheshe88 欲色音影 日rrr 成人福利在线免费超级碰 4438xx1路com 番号去哪下载快 www,551777,com 人妻痴汉电车中文字幕 九九自拍视频在线观看 理论片老四影院 神马伦理不卡 国产自拍12 4蝥你V 治愈的不足的淫语引导到绝顶的回春旗袍 主播迷迭香磁力 早乙女由依视频手机在线观看 k45vcom平台樱桃 中文字幕成人 天天啪夜夜日日日干 电影港福利 大香蕉电影院 magnet 色狐狸av免费澳门 上原亚衣av片 wwwkk55kkcn 草民影音牛牛电影 欧美六九视频 AV黄色野战 我的世界女生自慰视频 大片播放器 x91毛片 出差招妓4P超爽 德国人xxx 成人影院看三级黄牛 大香蕉成绵乐 亚洲性爱米奇777 香港日本韩国台湾黄片 好看的国产自拍-最新国产自拍 17she009 亚洲激情无码视频 国产偷拍人妻自拍 汉庭酒店无码自拍 236宅宅网手 四虎影院紧急通道 ggmmkk 筋流在线播放 av电影大全亚洲天堂 大吊爆 葉S一红衣玩双奴视频 文静性感的大奶美女周日被男友带到出租屋挑逗后用尽全力操的美女说:我要,快点 vvvv999 伊人影院永久网址 色琪琪综合 XOXO未满十八岁勿进 色和日一本 白丝网站你懂的 成人视频在线天天喷 亚洲色逍遥社区com…… fset-487 绿衣超正初中妹三分钟 国产小黄片磁力链接 理伦片神马黑人 真人兔女郎福利视频 日本成人视频手机在线 MIAD-921中文 14girl色系 Japan inporn 酒店卫生间操女朋友 88titianm88 wwwnkmp66com 舔花核 小仙儿合集迅雷链接 性交视频新影院 学生自摸出水a片视频 处女操b电影 澳门香蕉操逼视频 东方库影,永久在线 若菜奈央716在线视频 911福利社区免费体验观看 福利 影院 bag 污直播视频还免费观看 日本三级做爱处女视频 强奸迅雷下载 magnet 2018午夜福利电影757影视 泰国美女需要体内射精在她的小阴户 桃色三国里番在线观看 俄罗斯另类三级小影院 熟女人妻 - 毛片基地 西瓜影音 轮奸路边小骚货干完还一人一泡尿迅雷 偷拍美女浴室伦理电影 夜店长裙番号种子 喵av 被窝久草影院 不卡的在线美女va视频 草榴影院中的黄色视频 被窝福利电影201 超碰超色超摸超操在线电影 太平天极jk 谁知道四虎影音最新地址 中文字幕rct-470在线 3d真人动漫xoxo漫画 十宗罪 ftp 喵喵AV网 彩色天堂网 操小逼出血视频 百人大战手机在线观看 成人逼b视频 vlc成人 操逼內射免费视屏 ssni209字幕网连接 siri自拍在线 有关很色的免费视频 在线视频播放你懂 华人play在线视频bbb kagp 019 丈夫不在家被肉棒操到红肿 喵了个咪av 蓝沢润 porn 珙琪影视在线观看 秋霞吧2017午夜电影 538在线精品牛牛 3手机激情在线成人影院 女主天地调教免费视频百度云 草莓在线视频免费观看e 不打码视频网 变形小雷 西瓜影音 国产偷拍第一页在线视频 下载黄片儿的。 mp4 视频里面看黄色与臀尖强奸情节故事视频里面看黄色录像强奸与通奸的故事 偷拍自拍第八十五 日本eeeex 一个美丽的嫩少妇15p 猫咪AV最新地址 成人影院官网 78福利影院伦理 无码xxxuom 俺来啦俺去啦新官网婷婷 国产自拍鸭子在线播放 怡红院依人香蕉 淫操初音女神 福利视频导航站 每日在线av免费视频每日更新 撸啵英视 裸体艺术广场舞资源在线播放 神马2018午夜影院 美国毛片基地A级e片 美国十次大公鸡 火山小黄福利视频 秋霞福利视频微拍 朴妮唛露私处完整视频 蚯蚓yy408 文在寅尻 99精品任你干 欧美日日B视频 抽插福利 偷拍广东情侣野战视频 jjzzseqing av福利资源 影豆网手机在线官网 二区每天更新不卡在线视频 花街在线AV 女人与狗ZOOXX 黄片男在上女在下视频免费 狠狠快点在线影视 小恶魔宇佐美奈奈 下载 亂倫文寃 白丝女主播自慰 德田重男作品迅雷种子全集资源 ibw619 影音先锋资源欧美啄木鸟剧情 律师娇妻之我妻只为他人淫 MSWD-10023 ftp 大屁股BT种子 色拍拍电影院 国内自拍在线偷拍大学色戒 嫩嫩影院 免费福利视频av 米歇尔贝瑞特 磁力下载 99y伦理 星野亚希校服 先锋 校园chunse tpzp 操心术在线观看 厚丝袜约炮 日本人口做爱姿势视频 美女午夜大片 15 H版暮光 开心激情网在线观看 乱伦儿媳妇大香蕉视频 迷干资源在线 gaonvnvnet 谁有艳照的网站 妈妈跟狗搞 欧美小姐120辣p图片 裸体后妈图 美女大尺度顶级图 小美女春暖花开亚洲 743vv 美女外拍全露出 亚洲蜜桃诱惑 爆插美女穴