ŮͬÐÔÁµcbcb

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

      varnish-cache/bin/varnishtest/vtest2/src/vtc_misc.c
      0
      /*-
      1
       * Copyright (c) 2008-2011 Varnish Software AS
      2
       * All rights reserved.
      3
       *
      4
       * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
      5
       *
      6
       * SPDX-License-Identifier: BSD-2-Clause
      7
       *
      8
       * Redistribution and use in source and binary forms, with or without
      9
       * modification, are permitted provided that the following conditions
      10
       * are met:
      11
       * 1. Redistributions of source code must retain the above copyright
      12
       *    notice, this list of conditions and the following disclaimer.
      13
       * 2. Redistributions in binary form must reproduce the above copyright
      14
       *    notice, this list of conditions and the following disclaimer in the
      15
       *    documentation and/or other materials provided with the distribution.
      16
       *
      17
       * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
      18
       * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
      19
       * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      20
       * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
      21
       * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
      22
       * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
      23
       * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
      24
       * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
      25
       * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
      26
       * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
      27
       * SUCH DAMAGE.
      28
       */
      29
      30
      #include "config.h"
      31
      32
      #include <sys/wait.h>
      33
      #include <sys/socket.h>
      34
      35
      #include <grp.h>
      36 2
      #include <math.h>
      37 2
      #include <pwd.h>
      38 2
      #include <stdio.h>
      39 2
      #include <stdlib.h>
      40
      #include <string.h>
      41
      #include <sys/un.h>
      42
      #include <unistd.h>
      43
      44
      #ifdef HAVE_SYS_PERSONALITY_H
      45 2
      #  include <sys/personality.h>
      46 2
      #endif
      47 2
      48 2
      #include "vtc.h"
      49
      50 2
      #include "vfil.h"
      51
      #include "vnum.h"
      52 2
      #include "vre.h"
      53 2
      #include "vtcp.h"
      54 2
      #include "vsa.h"
      55 2
      #include "vss.h"
      56 2
      #include "vtim.h"
      57
      #include "vus.h"
      58 2
      59
      /* SECTION: vtest vtest
      60 2
       *
      61
       * This should be the first command in your vtc as it will identify the test
      62 2
       * case with a short yet descriptive sentence. It takes exactly one argument, a
      63
       * string, eg::
      64 2
       *
      65
       *         vtest "Check that vtest is actually a valid command"
      66
       *
      67
       * It will also print that string in the log.
      68
       */
      69
      70
      void v_matchproto_(cmd_f)
      71 1083
      cmd_vtest(CMD_ARGS)
      72
      {
      73
      74 1083
              (void)priv;
      75 1083
              (void)vl;
      76
      77 1083
              if (av == NULL)
      78 1025
                      return;
      79 58
              AZ(strcmp(av[0], "vtest"));
      80
      81 58
              vtc_log(vl, 1, "VTEST %s", av[1]);
      82 58
              AZ(av[2]);
      83 1083
      }
      84
      85
      /* SECTION: varnishtest varnishtest
      86
       *
      87
       * Alternate name for 'vtest', see above.
      88
       *
      89
       */
      90
      91
      void v_matchproto_(cmd_f)
      92 1992
      cmd_varnishtest(CMD_ARGS)
      93
      {
      94
      95 1992
              (void)priv;
      96 1992
              (void)vl;
      97
      98 1992
              if (av == NULL)
      99 1025
                      return;
      100 967
              AZ(strcmp(av[0], "varnishtest"));
      101
      102 967
              vtc_log(vl, 1, "VTEST %s", av[1]);
      103 967
              AZ(av[2]);
      104 1992
      }
      105
      106
      /* SECTION: shell shell
      107
       *
      108
       * NOTE: This command is available everywhere commands are given.
      109
       *
      110
       * Pass the string given as argument to a shell. If you have multiple
      111
       * commands to run, you can use curly brackets to describe a multi-lines
      112
       * script, eg::
      113
       *
      114
       *         shell {
      115
       *                 echo begin
      116
       *                 cat /etc/fstab
      117
       *                 echo end
      118
       *         }
      119
       *
      120
       * By default a zero exit code is expected, otherwise the vtc will fail.
      121
       *
      122
       * Notice that the commandstring is prefixed with "exec 2>&1;" to combine
      123
       * stderr and stdout back to the test process.
      124
       *
      125
       * Optional arguments:
      126
       *
      127
       * \-err
      128
       *      Expect non-zero exit code.
      129
       *
      130
       * \-exit N
      131
       *      Expect exit code N instead of zero.
      132
       *
      133
       * \-expect STRING
      134
       *      Expect string to be found in stdout+err.
      135
       *
      136
       * \-match REGEXP
      137
       *      Expect regexp to match the stdout+err output.
      138
       */
      139
      /* SECTION: client-server.spec.shell
      140
       *
      141
       * shell
      142
       *      Same as for the top-level shell.
      143
       */
      144
      145
      static void
      146 467
      cmd_shell_engine(struct vtclog *vl, int ok, const char *cmd,
      147
          const char *expect, const char *re)
      148
      {
      149
              struct vsb *vsb, re_vsb[1];
      150
              FILE *fp;
      151 467
              vre_t *vre = NULL;
      152
              int r, c;
      153
              int err, erroff;
      154
              char errbuf[VRE_ERROR_LEN];
      155
      156 467
              AN(vl);
      157 467
              AN(cmd);
      158 467
              vsb = VSB_new_auto();
      159 467
              AN(vsb);
      160 467
              if (re != NULL) {
      161 71
                      vre = VRE_compile(re, 0, &err, &erroff, 1);
      162 71
                      if (vre == NULL) {
      163 0
                              AN(VSB_init(re_vsb, errbuf, sizeof errbuf));
      164 0
                              AZ(VRE_error(re_vsb, err));
      165 0
                              AZ(VSB_finish(re_vsb));
      166 0
                              VSB_fini(re_vsb);
      167 0
                              vtc_fatal(vl,
      168
                                  "shell_match invalid regexp (\"%s\" at %d)",
      169 0
                                  errbuf, erroff);
      170
                      }
      171 71
              }
      172 467
              VSB_printf(vsb, "set -e ;");
      173 467
              VSB_printf(vsb, "exec 2>&1 ; %s", cmd);
      174 467
              AZ(VSB_finish(vsb));
      175 467
              vtc_dump(vl, 4, "shell_cmd", VSB_data(vsb), -1);
      176 467
              fp = popen(VSB_data(vsb), "r");
      177 467
              if (fp == NULL)
      178 0
                      vtc_fatal(vl, "popen fails: %s", strerror(errno));
      179 467
              VSB_clear(vsb);
      180 467
              do {
      181 608067
                      c = getc(fp);
      182 608067
                      if (c != EOF)
      183 607600
                              VSB_putc(vsb, c);
      184 608067
              } while (c != EOF);
      185 467
              r = pclose(fp);
      186 467
              AZ(VSB_finish(vsb));
      187 467
              vtc_dump(vl, 4, "shell_out", VSB_data(vsb), VSB_len(vsb));
      188 467
              vtc_log(vl, 4, "shell_status = 0x%04x", WEXITSTATUS(r));
      189 467
              if (WIFSIGNALED(r))
      190 0
                      vtc_log(vl, 4, "shell_signal = %d", WTERMSIG(r));
      191
      192 467
              if (ok < 0 && !WEXITSTATUS(r) && !WIFSIGNALED(r))
      193 0
                      vtc_fatal(vl, "shell did not fail as expected");
      194 467
              else if (ok >= 0 && WEXITSTATUS(r) != ok)
      195 2
                      vtc_fatal(vl, "shell_exit not as expected: "
      196 1
                          "got 0x%04x wanted 0x%04x", WEXITSTATUS(r), ok);
      197
      198 466
              if (expect != NULL) {
      199 227
                      if (strstr(VSB_data(vsb), expect) == NULL)
      200 0
                              vtc_fatal(vl,
      201 0
                                  "shell_expect not found: (\"%s\")", expect);
      202
                      else
      203 227
                              vtc_log(vl, 4, "shell_expect found");
      204 466
              } else if (vre != NULL) {
      205 71
                      if (VRE_match(vre, VSB_data(vsb), VSB_len(vsb), 0, NULL) < 1)
      206 0
                              vtc_fatal(vl, "shell_match failed: (\"%s\")", re);
      207
                      else
      208 71
                              vtc_log(vl, 4, "shell_match succeeded");
      209 71
                      VRE_free(&vre);
      210 71
              }
      211 466
              VSB_destroy(&vsb);
      212 466
      }
      213
      214
      215
      void
      216 1492
      cmd_shell(CMD_ARGS)
      217
      {
      218 1492
              const char *expect = NULL;
      219 1492
              const char *re = NULL;
      220
              int n;
      221 1492
              int ok = 0;
      222
      223 1492
              (void)priv;
      224
      225 1492
              if (av == NULL)
      226 1025
                      return;
      227 984
              for (n = 1; av[n] != NULL; n++) {
      228 984
                      if (!strcmp(av[n], "-err")) {
      229 209
                              ok = -1;
      230 984
                      } else if (!strcmp(av[n], "-exit")) {
      231 10
                              n += 1;
      232 10
                              ok = atoi(av[n]);
      233 775
                      } else if (!strcmp(av[n], "-expect")) {
      234 227
                              if (re != NULL)
      235 0
                                      vtc_fatal(vl,
      236
                                          "Cannot use -expect with -match");
      237 227
                              n += 1;
      238 227
                              expect = av[n];
      239 765
                      } else if (!strcmp(av[n], "-match")) {
      240 71
                              if (expect != NULL)
      241 0
                                      vtc_fatal(vl,
      242
                                          "Cannot use -match with -expect");
      243 71
                              n += 1;
      244 71
                              re = av[n];
      245 71
                      } else {
      246 467
                              break;
      247
                      }
      248 517
              }
      249 467
              AN(av[n]);
      250 467
              cmd_shell_engine(vl, ok, av[n], expect, re);
      251 1492
      }
      252
      253
      /* SECTION: filewrite filewrite
      254
       *
      255
       * Write strings to file
      256
       *
      257
       *         filewrite [-a] /somefile "Hello" " " "World\n"
      258
       *
      259
       * The -a flag opens the file in append mode.
      260
       *
      261
       */
      262
      263
      void v_matchproto_(cmd_f)
      264 1057
      cmd_filewrite(CMD_ARGS)
      265
      {
      266
              FILE *fo;
      267
              int n;
      268 1057
              const char *mode = "w";
      269
      270 1057
              (void)priv;
      271
      272 1057
              if (av == NULL)
      273 1025
                      return;
      274 32
              if (av[1] != NULL && !strcmp(av[1], "-a")) {
      275 14
                      av++;
      276 14
                      mode = "a";
      277 14
              }
      278 32
              if (av[1] == NULL)
      279 0
                      vtc_fatal(vl, "Need filename");
      280 32
              fo = fopen(av[1], mode);
      281 32
              if (fo == NULL)
      282 0
                      vtc_fatal(vl, "Cannot open %s: %s", av[1], strerror(errno));
      283 78
              for (n = 2; av[n] != NULL; n++)
      284 46
                      (void)fputs(av[n], fo);
      285 32
              AZ(fclose(fo));
      286 1057
      }
      287
      288
      /* SECTION: setenv setenv
      289
       *
      290
       * Set or change an environment variable::
      291
       *
      292
       *         setenv FOO "bar baz"
      293
       *
      294
       * The above will set the environment variable $FOO to the value
      295
       * provided. There is also an ``-ifunset`` argument which will only
      296
       * set the value if the environment variable does not already
      297
       * exist::
      298
       *
      299
       *        setenv -ifunset FOO quux
      300
       */
      301
      302
      void v_matchproto_(cmd_f)
      303 1029
      cmd_setenv(CMD_ARGS)
      304
      {
      305
              int r;
      306
              int force;
      307
      308 1029
              (void)priv;
      309
      310 1029
              if (av == NULL)
      311 1025
                      return;
      312 4
              AN(av[1]);
      313 4
              AN(av[2]);
      314
      315 4
              force = 1;
      316 4
              if (strcmp("-ifunset", av[1]) == 0) {
      317 1
                      force = 0;
      318 1
                      av++;
      319 1
                      AN(av[2]);
      320 1
              }
      321 4
              if (av[3] != NULL)
      322 0
                      vtc_fatal(vl, "CMD setenv: Unexpected argument '%s'", av[3]);
      323 4
              r = setenv(av[1], av[2], force);
      324 4
              if (r != 0)
      325 0
                      vtc_log(vl, 0, "CMD setenv %s=\"%s\" failed: %s",
      326 0
                          av[1], av[2], strerror(errno));
      327 1029
      }
      328
      329
      /* SECTION: delay delay
      330
       *
      331
       * NOTE: This command is available everywhere commands are given.
      332
       *
      333
       * Sleep for the number of seconds specified in the argument. The number
      334
       * can include a fractional part, e.g. 1.5.
      335
       */
      336
      void
      337 1642
      cmd_delay(CMD_ARGS)
      338
      {
      339
              double f;
      340
      341 1642
              (void)priv;
      342 1642
              if (av == NULL)
      343 1025
                      return;
      344 617
              AN(av[1]);
      345 617
              AZ(av[2]);
      346 617
              f = VNUM(av[1]);
      347 617
              if (isnan(f))
      348 0
                      vtc_fatal(vl, "Syntax error in number (%s)", av[1]);
      349 617
              vtc_log(vl, 3, "delaying %g second(s)", f);
      350 617
              VTIM_sleep(f);
      351 1642
      }
      352
      353
      /* SECTION: include include
      354
       *
      355
       * Executes a vtc fragment::
      356
       *
      357
       *         include FILE [...]
      358
       *
      359
       * Open a file and execute it as a VTC fragment. This command is available
      360
       * everywhere commands are given.
      361
       *
      362
       */
      363
      void
      364 1027
      cmd_include(CMD_ARGS)
      365
      {
      366
              char *spec;
      367
              unsigned i;
      368
      369 1027
              if (av == NULL)
      370 1025
                      return;
      371
      372 2
              if (av[1] == NULL)
      373 0
                      vtc_fatal(vl, "CMD include: At least 1 argument required");
      374
      375 5
              for (i = 1; av[i] != NULL; i++) {
      376 3
                      spec = VFIL_readfile(NULL, av[i], NULL);
      377 3
                      if (spec == NULL)
      378 0
                              vtc_fatal(vl, "CMD include: Unable to read file '%s' "
      379 0
                                  "(%s)", av[i], strerror(errno));
      380 3
                      vtc_log(vl, 2, "Begin include '%s'", av[i]);
      381 3
                      parse_string(vl, priv, spec);
      382 3
                      vtc_log(vl, 2, "End include '%s'", av[i]);
      383 3
                      free(spec);
      384 3
              }
      385 1027
      }
      386
      387
      /**********************************************************************
      388
       * Most test-cases use only numeric IP#'s but a few requires non-demented
      389
       * DNS services.  This is a basic sanity check for those.
      390
       */
      391
      392
      static int
      393 1
      dns_works(void)
      394
      {
      395
              const struct suckaddr *sa;
      396
              char abuf[VTCP_ADDRBUFSIZE];
      397
              char pbuf[VTCP_PORTBUFSIZE];
      398
      399 1
              sa = VSS_ResolveOne(NULL, "dns-canary.varnish-cache.org", NULL,
      400
                  AF_INET, SOCK_STREAM, 0);
      401 1
              if (sa == NULL)
      402 0
                      return (0);
      403 1
              VTCP_name(sa, abuf, sizeof abuf, pbuf, sizeof pbuf);
      404 1
              VSA_free(&sa);
      405 1
              if (strcmp(abuf, "192.0.2.255"))
      406 0
                      return (0);
      407
      408 1
              sa = VSS_ResolveOne(NULL, "dns-canary.varnish-cache.org", NULL,
      409
                  AF_INET6, SOCK_STREAM, 0);
      410 1
              if (sa == NULL)
      411 1
                      return (1); /* the canary is ipv4 only */
      412 0
              VSA_free(&sa);
      413 0
              return (0);
      414 1
      }
      415
      416
      /**********************************************************************
      417
       * Test if IPv4/IPv6 works
      418
       */
      419
      420
      static int
      421 7
      ipvx_works(const char *target)
      422
      {
      423
              const struct suckaddr *sa;
      424
              int fd;
      425
      426 7
              sa = VSS_ResolveOne(NULL, target, "0", 0, SOCK_STREAM, 0);
      427 7
              if (sa == NULL)
      428 0
                      return (0);
      429 7
              fd = VTCP_bind(sa, NULL);
      430 7
              VSA_free(&sa);
      431 7
              if (fd >= 0) {
      432 7
                      VTCP_close(&fd);
      433 7
                      return (1);
      434
              }
      435 0
              return (0);
      436 7
      }
      437
      438
      /**********************************************************************/
      439
      440
      static int
      441 1
      addr_no_randomize_works(void)
      442
      {
      443 1
              int r = 0;
      444
      445
      #ifdef HAVE_SYS_PERSONALITY_H
      446
              r = personality(0xffffffff);
      447
              r = personality(r | ADDR_NO_RANDOMIZE);
      448
      #endif
      449 1
              return (r >= 0);
      450
      }
      451
      452
      /**********************************************************************/
      453
      454
      static int
      455 1
      uds_socket(void *priv, const struct sockaddr_un *uds)
      456
      {
      457
      458 1
              return (VUS_bind(uds, priv));
      459
      }
      460
      static int
      461 1
      abstract_uds_works(void)
      462
      {
      463
              const char *err;
      464
              int fd;
      465
      466 1
              fd = VUS_resolver("@vtc.feature.abstract_uds", uds_socket, NULL, &err);
      467 1
              if (fd < 0)
      468 1
                      return (0);
      469 0
              AZ(close(fd));
      470 0
              return (1);
      471 1
      }
      472
      473
      /* SECTION: feature feature
      474
       *
      475
       * Test that the required feature(s) for a test are available, and skip
      476
       * the test otherwise; or change the interpretation of the test, as
      477
       * documented below. feature takes any number of arguments from this list:
      478
       *
      479
       * 64bit
      480
       *        The environment is 64 bits
      481
       * ipv4
      482
       *        127.0.0.1 works
      483
       * ipv6
      484
       *        [::1] works
      485
       * dns
      486
       *        DNS lookups are working
      487
       * topbuild
      488
       *        The test has been started with '-i'
      489
       * root
      490
       *        The test has been invoked by the root user
      491
       * user_varnish
      492
       *        The varnish user is present
      493
       * user_vcache
      494
       *        The vcache user is present
      495
       * group_varnish
      496
       *        The varnish group is present
      497
       * cmd <command-line>
      498
       *        A command line that should execute with a zero exit status
      499
       * ignore_unknown_macro
      500
       *        Do not fail the test if a string of the form ${...} is not
      501
       *        recognized as a macro.
      502
       * persistent_storage
      503
       *        Varnish was built with the deprecated persistent storage.
      504
       * coverage
      505
       *        Varnish was built with code coverage enabled.
      506
       * asan
      507
       *        Varnish was built with the address sanitizer.
      508
       * msan
      509
       *        Varnish was built with the memory sanitizer.
      510
       * tsan
      511
       *        Varnish was built with the thread sanitizer.
      512
       * ubsan
      513
       *        Varnish was built with the undefined behavior sanitizer.
      514
       * sanitizer
      515
       *        Varnish was built with a sanitizer.
      516
       * workspace_emulator
      517
       *        Varnish was built with its workspace emulator.
      518
       * abstract_uds
      519
       *        Creation of an abstract unix domain socket succeeded.
      520
       * disable_aslr
      521
       *        ASLR can be disabled.
      522
       * vtest_cmd <command>
      523
       *        vtest command <command> is available
      524
       *
      525
       * A feature name can be prefixed with an exclamation mark (!) to skip a
      526
       * test if the feature is present.
      527
       *
      528
       * Be careful with ignore_unknown_macro, because it may cause a test with a
      529
       * misspelled macro to fail silently. You should only need it if you must
      530
       * run a test with strings of the form "${...}".
      531
       */
      532
      533
      #if ENABLE_COVERAGE
      534
      static const unsigned coverage = 1;
      535
      #else
      536
      static const unsigned coverage = 0;
      537
      #endif
      538
      539
      #if ENABLE_ASAN
      540
      static const unsigned asan = 1;
      541
      #else
      542
      static const unsigned asan = 0;
      543
      #endif
      544
      545
      #if ENABLE_MSAN
      546
      static const unsigned msan = 1;
      547
      #else
      548
      static const unsigned msan = 0;
      549
      #endif
      550
      551
      #if ENABLE_TSAN
      552
      static const unsigned tsan = 1;
      553
      #else
      554
      static const unsigned tsan = 0;
      555
      #endif
      556
      557
      #if ENABLE_UBSAN
      558
      static const unsigned ubsan = 1;
      559
      #else
      560
      static const unsigned ubsan = 0;
      561
      #endif
      562
      563
      #if ENABLE_SANITIZER
      564
      static const unsigned sanitizer = 1;
      565
      #else
      566
      static const unsigned sanitizer = 0;
      567
      #endif
      568
      569
      #if ENABLE_WORKSPACE_EMULATOR
      570
      static const unsigned workspace_emulator = 1;
      571
      #else
      572
      static const unsigned workspace_emulator = 0;
      573
      #endif
      574
      575
      #if WITH_PERSISTENT_STORAGE
      576
      static const unsigned with_persistent_storage = 1;
      577
      #else
      578
      static const unsigned with_persistent_storage = 0;
      579
      #endif
      580
      581
      void v_matchproto_(cmd_f)
      582 1143
      cmd_feature(CMD_ARGS)
      583
      {
      584
              const char *feat;
      585
              int r, good, skip, neg;
      586
      587 1143
              (void)priv;
      588
      589 1143
              if (av == NULL)
      590 1025
                      return;
      591
      592
      #define FEATURE(nm, tst)                                \
      593
              do {                                            \
      594
                      if (!strcmp(feat, nm)) {                \
      595
                              good = 1;                       \
      596
                              if (tst) {                      \
      597
                                      skip = neg;             \
      598
                              } else {                        \
      599
                                      skip = !neg;            \
      600
                              }                               \
      601
                      }                                       \
      602
              } while (0)
      603
      604 118
              skip = 0;
      605
      606 222
              for (av++; *av != NULL; av++) {
      607 119
                      good = 0;
      608 119
                      neg = 0;
      609 119
                      feat = *av;
      610
      611 119
                      if (feat[0] == '!') {
      612 9
                              neg = 1;
      613 9
                              feat++;
      614 9
                      }
      615
      616 119
                      FEATURE("ipv4", ipvx_works("127.0.0.1"));
      617 119
                      FEATURE("ipv6", ipvx_works("[::1]"));
      618 119
                      FEATURE("64bit", sizeof(void*) == 8);
      619 119
                      FEATURE("disable_aslr", addr_no_randomize_works());
      620 119
                      FEATURE("dns", dns_works());
      621 119
                      FEATURE("topbuild", iflg);
      622 119
                      FEATURE("root", !geteuid());
      623 119
                      FEATURE("user_varnish", getpwnam("varnish") != NULL);
      624 119
                      FEATURE("user_vcache", getpwnam("vcache") != NULL);
      625 119
                      FEATURE("group_varnish", getgrnam("varnish") != NULL);
      626 119
                      FEATURE("persistent_storage", with_persistent_storage);
      627 119
                      FEATURE("coverage", coverage);
      628 119
                      FEATURE("asan", asan);
      629 119
                      FEATURE("msan", msan);
      630 119
                      FEATURE("tsan", tsan);
      631 119
                      FEATURE("ubsan", ubsan);
      632 119
                      FEATURE("sanitizer", sanitizer);
      633 119
                      FEATURE("workspace_emulator", workspace_emulator);
      634 119
                      FEATURE("abstract_uds", abstract_uds_works());
      635
      636 119
                      if (!strcmp(feat, "cmd")) {
      637 39
                              good = 1;
      638 39
                              skip = neg;
      639 39
                              av++;
      640 39
                              if (*av == NULL)
      641 0
                                      vtc_fatal(vl, "Missing the command-line");
      642 39
                              r = system(*av);
      643 39
                              if (WEXITSTATUS(r) != 0)
      644 8
                                      skip = !neg;
      645 119
                      } else if (!strcmp(feat, "ignore_unknown_macro")) {
      646 12
                              ign_unknown_macro = 1;
      647 12
                              good = 1;
      648 80
                      } else if (!strcmp(feat, "vtest_cmd")) {
      649 2
                              good = 1;
      650 2
                              skip = !neg;
      651 2
                              av++;
      652 2
                              if (*av == NULL)
      653 0
                                      vtc_fatal(vl, "vtest_cmd needs the command name");
      654
      #define CMD_TOP(n)                              \
      655
                              if (!strcmp(*av, #n))   \
      656
                                      skip = neg;
      657
      #define CMD_GLOBAL(n) CMD_TOP(n)
      658
      #include "cmds.h"
      659
                      }
      660 119
                      if (!good)
      661 0
                              vtc_fatal(vl, "FAIL test, unknown feature: %s", feat);
      662
      663 119
                      if (!skip)
      664 104
                              continue;
      665
      666 15
                      vtc_stop = 2;
      667 15
                      if (neg)
      668 2
                              vtc_log(vl, 1,
      669 1
                                  "SKIPPING test, conflicting feature: %s", feat);
      670
                      else
      671 28
                              vtc_log(vl, 1,
      672 14
                                  "SKIPPING test, lacking feature: %s", feat);
      673 15
                      return;
      674
              }
      675 1143
      }
      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
      soleyama.com.cn
      www.fuba7.net.cn
      www.qqbtc.com.cn
      luze3.com.cn
      www.askwiy.net.cn
      jiuqu6.net.cn
      lashu2.net.cn
      www.525525.com.cn
      sujue3.com.cn
      jiata1.net.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 美女外拍全露出 亚洲蜜桃诱惑 爆插美女穴