ŮͬÐÔÁµ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/varnishstat/varnishstat_curses.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
       * Author: Dag-Erling Sm?rgrav <des@des.no>
      7
       * Author: Martin Blix Grydeland <martin@varnish-software.com>
      8
       *
      9
       * SPDX-License-Identifier: BSD-2-Clause
      10
       *
      11
       * Redistribution and use in source and binary forms, with or without
      12
       * modification, are permitted provided that the following conditions
      13
       * are met:
      14
       * 1. Redistributions of source code must retain the above copyright
      15
       *    notice, this list of conditions and the following disclaimer.
      16
       * 2. Redistributions in binary form must reproduce the above copyright
      17
       *    notice, this list of conditions and the following disclaimer in the
      18
       *    documentation and/or other materials provided with the distribution.
      19
       *
      20
       * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
      21
       * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
      22
       * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      23
       * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
      24
       * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
      25
       * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
      26
       * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
      27
       * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
      28
       * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
      29
       * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
      30
       * SUCH DAMAGE.
      31
       *
      32
       * Statistics output program
      33
       */
      34
      35
      #include "config.h"
      36
      37
      #include <stdlib.h>
      38
      #include <unistd.h>
      39
      #include <string.h>
      40
      #include <stdint.h>
      41
      #include <math.h>
      42
      43
      #include "vdef.h"
      44
      #include "vas.h"
      45
      #include "miniobj.h"
      46
      #include "vqueue.h"
      47
      #include "vtim.h"
      48
      #include "vapi/vsig.h"
      49
      50
      #include "varnishstat.h"
      51
      #include "vcurses.h"
      52
      53
      #define LINES_STATUS            3
      54
      #define LINES_BAR_T             1
      55
      #define LINES_BAR_B             1
      56
      #define LINES_INFO              3
      57
      #define LINES_POINTS_MIN        3
      58
      59
      #define N_COL                   6
      60
      #define COLW                    14
      61
      #define COLW_NAME_MIN           24
      62
      63
      #define VALUE_MAX               999999999999
      64
      65
      #define REBUILD_NEXT            (1u << 0)
      66
      #define REBUILD_FIRST           (1u << 1)
      67
      68
      enum kb_e {
      69
      #define BINDING(name, desc) KB_ ## name,
      70
      #define BINDING_SIG
      71
      #include "varnishstat_bindings.h"
      72
      };
      73
      74
      struct ma {
      75
              unsigned n, nmax;
      76
              double acc;
      77
      };
      78
      79
      struct pt {
      80
              unsigned                magic;
      81
      #define PT_MAGIC                0x41698E4F
      82
              VTAILQ_ENTRY(pt)        list;
      83
      84
              const struct VSC_point  *vpt;
      85
      86
              char                    seen;
      87
      88
              uint64_t                cur, last;
      89
              double                  t_cur, t_last;
      90
              double                  chg, avg;
      91
      92
              struct ma               ma_10, ma_100, ma_1000;
      93
      };
      94
      95
      struct hitrate {
      96
              uint64_t lhit, lmiss;
      97
              struct ma hr_10;
      98
              struct ma hr_100;
      99
              struct ma hr_1000;
      100
      };
      101
      static struct hitrate hitrate;
      102
      103
      static VTAILQ_HEAD(, pt) ptlist = VTAILQ_HEAD_INITIALIZER(ptlist);
      104
      static int n_ptlist = 0;
      105
      static int n_ptarray = 0;
      106
      static struct pt **ptarray = NULL;
      107
      static const volatile uint64_t *mgt_uptime;
      108
      static const volatile uint64_t *main_uptime;
      109
      static const volatile uint64_t *main_cache_hit;
      110
      static const volatile uint64_t *main_cache_miss;
      111
      112
      static int l_status, l_bar_t, l_points, l_bar_b, l_info;
      113
      static unsigned colw_name = COLW_NAME_MIN;
      114
      static WINDOW *w_status = NULL;
      115
      static WINDOW *w_bar_t = NULL;
      116
      static WINDOW *w_points = NULL;
      117
      static WINDOW *w_bar_b = NULL;
      118
      static WINDOW *w_info = NULL;
      119
      120
      static const struct VSC_level_desc *verbosity;
      121
      static int show_help = 0;
      122
      static int help_line = 0;
      123
      static int keep_running = 1;
      124
      static int hide_unseen = 1;
      125
      static int raw_vsc = 0;
      126
      static int page_start = 0;
      127
      static int current = 0;
      128
      static int rebuild = 0;
      129
      static int redraw = 0;
      130
      static int sample = 0;
      131
      static int reset_averages = 0;
      132
      static int scale = 1;
      133
      static double t_sample = 0.;
      134
      static double interval = 1.;
      135
      static unsigned vsm_status = 0;
      136
      137
      #define NOTIF_MAXLEN 256
      138
      static char notification_message[NOTIF_MAXLEN] = "";
      139
      static vtim_mono notification_eol = 0.0;
      140
      141
      static void
      142 14
      init_hitrate(void)
      143
      {
      144 14
              memset(&hitrate, 0, sizeof (struct hitrate));
      145 14
              if (main_cache_hit != NULL) {
      146 14
                      hitrate.lhit = *main_cache_hit;
      147 14
                      hitrate.lmiss = *main_cache_miss;
      148 14
              }
      149 14
              hitrate.hr_10.nmax = 10;
      150 14
              hitrate.hr_100.nmax = 100;
      151 14
              hitrate.hr_1000.nmax = 1000;
      152 14
      }
      153
      154
      static void
      155 13554
      update_ma(struct ma *ma, double val)
      156
      {
      157 13554
              AN(ma);
      158 13554
              AN(ma->nmax);
      159 13554
              if (ma->n < ma->nmax)
      160 13554
                      ma->n++;
      161 13554
              ma->acc += (val - ma->acc) / (double)ma->n;
      162 13554
      }
      163
      164
      static void
      165 114
      update_position(void)
      166
      {
      167
              int old_current, old_page_start;
      168
      169 114
              old_current = current;
      170 114
              old_page_start = page_start;
      171
      172 114
              if (n_ptarray == 0) {
      173 52
                      current = 0;
      174 52
                      page_start = 0;
      175 52
              } else {
      176 62
                      current = vlimit_t(int, current, 0, n_ptarray - 1);
      177 62
                      page_start = vmin(page_start, current);
      178 62
                      if (current > page_start + (l_points - 1))
      179 4
                              page_start = current - (l_points - 1);
      180 62
                      page_start = vlimit_t(int, page_start, 0, n_ptarray - 1);
      181
              }
      182
      183 114
              if (current != old_current || page_start != old_page_start)
      184 22
                      redraw = 1;
      185 114
      }
      186
      187
      static void
      188 38
      delete_pt_array(void)
      189
      {
      190 38
              if (ptarray != NULL)
      191 38
                      free(ptarray);
      192 38
              ptarray = NULL;
      193 38
              n_ptarray = 0;
      194
      195 38
              update_position();
      196 38
      }
      197
      198
      static void
      199 52
      build_pt_array(void)
      200
      {
      201
              int i;
      202
              struct pt *pt;
      203 52
              struct pt *pt_current = NULL;
      204 52
              int current_line = 0;
      205
      206 52
              if (current < n_ptarray) {
      207 24
                      pt_current = ptarray[current];
      208 24
                      current_line = current - page_start;
      209 24
              }
      210
      211 52
              if (ptarray != NULL)
      212 38
                      delete_pt_array();
      213 52
              AZ(n_ptarray);
      214 52
              ptarray = calloc(n_ptlist, sizeof *ptarray);
      215 52
              AN(ptarray);
      216
      217 17482
              VTAILQ_FOREACH(pt, &ptlist, list) {
      218 17430
                      CHECK_OBJ_NOTNULL(pt, PT_MAGIC);
      219 17430
                      if (pt->vpt->level > verbosity) {
      220 10436
                              if (has_f && (rebuild & REBUILD_FIRST))
      221 12
                                      verbosity = VSC_ChangeLevel(verbosity,
      222 6
                                          pt->vpt->level - verbosity);
      223
                              else
      224 10430
                                      continue;
      225 6
                      }
      226 7000
                      if (!pt->seen && hide_unseen)
      227 5609
                              continue;
      228 1391
                      assert(n_ptarray < n_ptlist);
      229 1391
                      ptarray[n_ptarray++] = pt;
      230 1391
              }
      231 52
              assert(n_ptarray <= n_ptlist);
      232
      233 865
              for (i = 0; pt_current != NULL && i < n_ptarray; i++)
      234 837
                      if (ptarray[i] == pt_current)
      235 24
                              break;
      236 52
              current = i;
      237 52
              page_start = current - current_line;
      238 52
              update_position();
      239
      240 52
              rebuild = 0;
      241 52
              redraw = 1;
      242 52
      }
      243
      244
      static void
      245 61
      sample_points(void)
      246
      {
      247
              struct pt *pt;
      248
              uint64_t v;
      249
      250 20911
              VTAILQ_FOREACH(pt, &ptlist, list) {
      251 20850
                      AN(pt->vpt);
      252 20850
                      AN(pt->vpt->ptr);
      253 20850
                      v = VSC_Value(pt->vpt);
      254 20850
                      if (v == 0 && !pt->seen)
      255 15442
                              continue;
      256 5408
                      if (!pt->seen) {
      257 1236
                              pt->seen = 1;
      258 1236
                              rebuild = REBUILD_NEXT;
      259 1236
                      }
      260 5408
                      pt->last = pt->cur;
      261 5408
                      pt->cur = v;
      262 5408
                      pt->t_last = pt->t_cur;
      263 5408
                      pt->t_cur = VTIM_mono();
      264
      265 5408
                      if (reset_averages) {
      266 242
                              pt->chg = 0;
      267 242
                              pt->ma_10.n = 0;
      268 242
                              pt->ma_100.n = 0;
      269 242
                              pt->ma_1000.n = 0;
      270 242
                      }
      271 5408
                      if (pt->t_last)
      272 8344
                              pt->chg = ((int64_t)pt->cur - (int64_t)pt->last) /
      273 4172
                                  (pt->t_cur - pt->t_last);
      274
      275 5408
                      if (pt->vpt->semantics == 'g') {
      276 1471
                              pt->avg = 0.;
      277 1471
                              update_ma(&pt->ma_10, (int64_t)pt->cur);
      278 1471
                              update_ma(&pt->ma_100, (int64_t)pt->cur);
      279 1471
                              update_ma(&pt->ma_1000, (int64_t)pt->cur);
      280 5408
                      } else if (pt->vpt->semantics == 'c') {
      281 3886
                              if (main_uptime != NULL && *main_uptime)
      282 3352
                                      pt->avg = pt->cur / (double)*main_uptime;
      283
                              else
      284 534
                                      pt->avg = 0.;
      285 3886
                              if (pt->t_last) {
      286 2986
                                      update_ma(&pt->ma_10, pt->chg);
      287 2986
                                      update_ma(&pt->ma_100, pt->chg);
      288 2986
                                      update_ma(&pt->ma_1000, pt->chg);
      289 2986
                              }
      290 3886
                      }
      291 5408
              }
      292 61
      }
      293
      294
      static void
      295 61
      sample_hitrate(void)
      296
      {
      297
              double hr, mr, ratio;
      298
              uint64_t hit, miss;
      299
      300 61
              if (main_cache_hit == NULL)
      301 0
                      return;
      302
      303 61
              hit = *main_cache_hit;
      304 61
              miss = *main_cache_miss;
      305 61
              hr = hit - hitrate.lhit;
      306 61
              mr = miss - hitrate.lmiss;
      307 61
              hitrate.lhit = hit;
      308 61
              hitrate.lmiss = miss;
      309
      310 61
              if (hr + mr != 0)
      311 8
                      ratio = hr / (hr + mr);
      312
              else
      313 53
                      ratio = 0;
      314 61
              if (reset_averages) {
      315 2
                      hitrate.hr_10.n = 0;
      316 2
                      hitrate.hr_100.n = 0;
      317 2
                      hitrate.hr_1000.n = 0;
      318 2
              }
      319 61
              update_ma(&hitrate.hr_10, ratio);
      320 61
              update_ma(&hitrate.hr_100, ratio);
      321 61
              update_ma(&hitrate.hr_1000, ratio);
      322 61
      }
      323
      324
      static void
      325 61
      sample_data(void)
      326
      {
      327 61
              t_sample = VTIM_mono();
      328 61
              sample = 0;
      329 61
              redraw = 1;
      330 61
              sample_points();
      331 61
              sample_hitrate();
      332 61
              reset_averages = 0;
      333 61
      }
      334
      335
      static void
      336 80
      destroy_window(WINDOW **w)
      337
      {
      338
      339 80
              AN(w);
      340 80
              if (*w == NULL)
      341 70
                      return;
      342 10
              AC(delwin(*w));
      343 10
              *w = NULL;
      344 80
      }
      345
      346
      static void
      347 16
      make_windows(void)
      348
      {
      349
              int Y, X;
      350
              int y;
      351
              int y_status, y_bar_t, y_points, y_bar_b, y_info;
      352
      353 16
              destroy_window(&w_status);
      354 16
              destroy_window(&w_bar_t);
      355 16
              destroy_window(&w_points);
      356 16
              destroy_window(&w_bar_b);
      357 16
              destroy_window(&w_info);
      358
      359 16
              Y = LINES;
      360 16
              X = COLS;
      361
      362 16
              l_status = LINES_STATUS;
      363 16
              l_bar_t = LINES_BAR_T;
      364 16
              l_bar_b = LINES_BAR_B;
      365 16
              l_info = LINES_INFO;
      366 16
              l_points = Y - (l_status + l_bar_t + l_bar_b + l_info);
      367 16
              if (l_points < LINES_POINTS_MIN) {
      368 0
                      l_points += l_info;
      369 0
                      l_info = 0;
      370 0
              }
      371 16
              l_points = vmax(l_points, LINES_POINTS_MIN);
      372
      373 16
              y = 0;
      374 16
              y_status = y;
      375 16
              y += l_status;
      376 16
              y_bar_t = y;
      377 16
              y += l_bar_t;
      378 16
              y_points = y;
      379 16
              y += l_points;
      380 16
              y_bar_b = y;
      381 16
              y += l_bar_b;
      382 16
              y_info = y;
      383 16
              y += l_info;
      384 16
              assert(y >= Y);
      385
      386 16
              w_status = newwin(l_status, X, y_status, 0);
      387 16
              AN(w_status);
      388 16
              AC(nodelay(w_status, 1));
      389 16
              AC(keypad(w_status, 1));
      390 16
              AC(wnoutrefresh(w_status));
      391
      392 16
              w_bar_t = newwin(l_bar_t, X, y_bar_t, 0);
      393 16
              AN(w_bar_t);
      394 16
              wbkgd(w_bar_t, A_REVERSE);
      395 16
              AC(wnoutrefresh(w_bar_t));
      396
      397 16
              w_points = newwin(l_points, X, y_points, 0);
      398 16
              AN(w_points);
      399 16
              AC(wnoutrefresh(w_points));
      400
      401 16
              w_bar_b = newwin(l_bar_b, X, y_bar_b, 0);
      402 16
              AN(w_bar_b);
      403 16
              wbkgd(w_bar_b, A_REVERSE);
      404 16
              AC(wnoutrefresh(w_bar_b));
      405
      406 16
              if (l_info) {
      407 16
                      w_info = newwin(l_info, X, y_info, 0);
      408 16
                      AN(w_info);
      409 16
                      AC(wnoutrefresh(w_info));
      410 16
              }
      411
      412 16
              if (X - COLW_NAME_MIN > N_COL * COLW)
      413 2
                      colw_name = X - (N_COL * COLW);
      414
              else
      415 14
                      colw_name = COLW_NAME_MIN;
      416
      417 16
              redraw = 1;
      418 16
      }
      419
      420
      static void
      421 160
      print_duration(WINDOW *w, uint64_t t)
      422
      {
      423
      424 160
              IC(wprintw(w, "%4ju+%02ju:%02ju:%02ju",
      425
                  (uintmax_t)t / 86400, (uintmax_t)(t % 86400) / 3600,
      426
                  (uintmax_t)(t % 3600) / 60, (uintmax_t)t % 60));
      427 160
      }
      428
      429
      static void
      430 190
      running(WINDOW *w, uint64_t up, int flg)
      431
      {
      432 190
              if (vsm_status & flg) {
      433 158
                      print_duration(w_status, up);
      434 158
              } else {
      435 32
                      wattron(w, A_STANDOUT);
      436 32
                      IC(wprintw(w, "  Not Running"));
      437 32
                      wattroff(w, A_STANDOUT);
      438
              }
      439 190
      }
      440
      441
      static void
      442 95
      draw_status(void)
      443
      {
      444 95
              uint64_t up_mgt = 0;
      445 95
              uint64_t up_chld = 0;
      446
      447 95
              AN(w_status);
      448
      449 95
              AC(werase(w_status));
      450
      451 95
              if (mgt_uptime != NULL)
      452 95
                      up_mgt = *mgt_uptime;
      453 95
              if (main_uptime != NULL)
      454 95
                      up_chld = *main_uptime;
      455
      456 95
              IC(mvwprintw(w_status, 0, 0, "Uptime mgt:   "));
      457 95
              running(w_status, up_mgt, VSM_MGT_RUNNING);
      458 95
              IC(mvwprintw(w_status, 1, 0, "Uptime child: "));
      459 95
              running(w_status, up_chld, VSM_WRK_RUNNING);
      460 95
              IC(mvwprintw(w_status, 2, 0, "Press <h> to toggle help screen"));
      461
      462 95
              if (VTIM_mono() < notification_eol)
      463 12
                      mvwaddstr(w_status, 2, 0, notification_message);
      464
      465 95
              if (COLS > 70) {
      466 95
                      IC(mvwprintw(w_status, 0, getmaxx(w_status) - 37,
      467
                          "Hitrate n: %8u %8u %8u", hitrate.hr_10.n, hitrate.hr_100.n,
      468
                          hitrate.hr_1000.n));
      469 95
                      IC(mvwprintw(w_status, 1, getmaxx(w_status) - 37,
      470
                          "   avg(n): %8.4f %8.4f %8.4f", hitrate.hr_10.acc,
      471
                          hitrate.hr_100.acc, hitrate.hr_1000.acc));
      472 95
              }
      473
      474 95
              AC(wnoutrefresh(w_status));
      475 95
      }
      476
      477
      static void
      478 89
      draw_bar_t(void)
      479
      {
      480
              int X, x;
      481
              enum {
      482
                      COL_CUR,
      483
                      COL_CHG,
      484
                      COL_AVG,
      485
                      COL_MA10,
      486
                      COL_MA100,
      487
                      COL_MA1000,
      488
                      COL_LAST
      489
              } col;
      490
      491 89
              AN(w_bar_t);
      492
      493 89
              X = getmaxx(w_bar_t);
      494 89
              x = 0;
      495 89
              AC(werase(w_bar_t));
      496 89
              if (page_start > 0)
      497 57
                      IC(mvwprintw(w_bar_t, 0, x, "^^^"));
      498 89
              x += 4;
      499 89
              IC(mvwprintw(w_bar_t, 0, x, "%.*s", colw_name - 4, "NAME"));
      500 89
              x += colw_name - 4;
      501 89
              col = COL_CUR;
      502 465
              while (col < COL_LAST) {
      503 455
                      if (X - x < COLW)
      504 79
                              break;
      505 376
                      switch (col) {
      506
                      case COL_CUR:
      507 89
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "CURRENT"));
      508 89
                              break;
      509
                      case COL_CHG:
      510 89
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "CHANGE"));
      511 89
                              break;
      512
                      case COL_AVG:
      513 89
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVERAGE"));
      514 89
                              break;
      515
                      case COL_MA10:
      516 89
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_10"));
      517 89
                              break;
      518
                      case COL_MA100:
      519 10
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_100"));
      520 10
                              break;
      521
                      case COL_MA1000:
      522 10
                              IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_1000"));
      523 10
                              break;
      524
                      default:
      525 0
                              break;
      526
                      }
      527 376
                      x += COLW;
      528 376
                      col++;
      529
              }
      530
      531 89
              AC(wnoutrefresh(w_bar_t));
      532 89
      }
      533
      534
      static void
      535 649
      draw_line_default(WINDOW *w, int y, int x, int X, const struct pt *pt)
      536
      {
      537
              enum {
      538
                      COL_CUR,
      539
                      COL_CHG,
      540
                      COL_AVG,
      541
                      COL_MA10,
      542
                      COL_MA100,
      543
                      COL_MA1000,
      544
                      COL_LAST
      545
              } col;
      546
      547 649
              AN(w);
      548 649
              AN(pt);
      549
      550 649
              col = COL_CUR;
      551 3429
              while (col < COL_LAST) {
      552 3337
                      if (X - x < COLW)
      553 557
                              break;
      554 2780
                      switch (col) {
      555
                      case COL_CUR:
      556 649
                              IC(mvwprintw(w, y, x, " %12ju", (uintmax_t)pt->cur));
      557 649
                              break;
      558
                      case COL_CHG:
      559 649
                              if (pt->t_last)
      560 537
                                      IC(mvwprintw(w, y, x, " %12.2f", pt->chg));
      561
                              else
      562 112
                                      IC(mvwprintw(w, y, x, " %12s", ".  "));
      563 649
                              break;
      564
                      case COL_AVG:
      565 649
                              if (pt->avg)
      566 215
                                      IC(mvwprintw(w, y, x, " %12.2f", pt->avg));
      567
                              else
      568 434
                                      IC(mvwprintw(w, y, x, " %12s", ".  "));
      569 649
                              break;
      570
                      case COL_MA10:
      571 649
                              IC(mvwprintw(w, y, x, " %12.2f", pt->ma_10.acc));
      572 649
                              break;
      573
                      case COL_MA100:
      574 92
                              IC(mvwprintw(w, y, x, " %12.2f", pt->ma_100.acc));
      575 92
                              break;
      576
                      case COL_MA1000:
      577 92
                              IC(mvwprintw(w, y, x, " %12.2f", pt->ma_1000.acc));
      578 92
                              break;
      579
                      default:
      580 0
                              break;
      581
                      }
      582 2780
                      x += COLW;
      583 2780
                      col++;
      584
              }
      585 649
      }
      586
      587
      static double
      588 424
      scale_bytes(double val, char *q)
      589
      {
      590
              const char *p;
      591
      592 535
              for (p = " KMGTPEZY"; *p; p++) {
      593 535
                      if (fabs(val) < 1024.)
      594 424
                              break;
      595 111
                      val /= 1024.;
      596 111
              }
      597 424
              *q = *p;
      598 424
              return (val);
      599
      }
      600
      601
      static void
      602 726
      print_bytes(WINDOW *w, double val)
      603
      {
      604 726
              char q = ' ';
      605
      606 726
              if (scale)
      607 424
                      val = scale_bytes(val, &q);
      608 726
              IC(wprintw(w, " %12.2f%c", val, q));
      609 726
      }
      610
      611
      static void
      612 264
      print_trunc(WINDOW *w, uintmax_t val)
      613
      {
      614 264
              if (val > VALUE_MAX) {
      615 0
                      while (val > VALUE_MAX)
      616 0
                              val /= 1000;
      617 0
                      IC(wprintw(w, " %9ju...", val));
      618 0
              } else
      619 264
                      IC(wprintw(w, " %12ju", val));
      620 264
      }
      621
      622
      static void
      623 297
      draw_line_bytes(WINDOW *w, int y, int x, int X, const struct pt *pt)
      624
      {
      625
              enum {
      626
                      COL_CUR,
      627
                      COL_CHG,
      628
                      COL_AVG,
      629
                      COL_MA10,
      630
                      COL_MA100,
      631
                      COL_MA1000,
      632
                      COL_LAST
      633
              } col;
      634
      635 297
              AN(w);
      636 297
              AN(pt);
      637
      638 297
              col = COL_CUR;
      639 1593
              while (col < COL_LAST) {
      640 1539
                      if (X - x < COLW)
      641 243
                              break;
      642 1296
                      wmove(w, y, x);
      643 1296
                      switch (col) {
      644
                      case COL_CUR:
      645 297
                              if (scale && pt->cur > 1024)
      646 33
                                      print_bytes(w, (double)pt->cur);
      647
                              else
      648 264
                                      print_trunc(w, (uintmax_t)pt->cur);
      649 297
                              break;
      650
                      case COL_CHG:
      651 297
                              if (pt->t_last)
      652 163
                                      print_bytes(w, pt->chg);
      653
                              else
      654 134
                                      IC(wprintw(w, " %12s", ".  "));
      655 297
                              break;
      656
                      case COL_AVG:
      657 297
                              if (pt->avg)
      658 125
                                      print_bytes(w, pt->avg);
      659
                              else
      660 172
                                      IC(wprintw(w, " %12s", ".  "));
      661 297
                              break;
      662
                      case COL_MA10:
      663 297
                              print_bytes(w, pt->ma_10.acc);
      664 297
                              break;
      665
                      case COL_MA100:
      666 54
                              print_bytes(w, pt->ma_100.acc);
      667 54
                              break;
      668
                      case COL_MA1000:
      669 54
                              print_bytes(w, pt->ma_1000.acc);
      670 54
                              break;
      671
                      default:
      672 0
                              break;
      673
                      }
      674 1296
                      x += COLW;
      675 1296
                      col++;
      676
              }
      677 297
      }
      678
      679
      static void
      680 36
      draw_line_bitmap(WINDOW *w, int y, int x, int X, const struct pt *pt)
      681
      {
      682
              unsigned ch;
      683
              enum {
      684
                      COL_VAL,
      685
                      COL_MAP,
      686
                      COL_LAST
      687
              } col;
      688
      689 36
              AN(w);
      690 36
              AN(pt);
      691 36
              assert(pt->vpt->format == 'b');
      692
      693 36
              col = COL_VAL;
      694 108
              while (col < COL_LAST) {
      695 72
                      switch (col) {
      696
                      case COL_VAL:
      697 36
                              if (X - x < COLW)
      698 0
                                      return;
      699 36
                              IC(mvwprintw(w, y, x, "   %10.10jx",
      700
                                  (uintmax_t)((pt->cur >> 24) & 0xffffffffffLL)));
      701 36
                              x += COLW;
      702 36
                              break;
      703
                      case COL_MAP:
      704 36
                              if (X - x < 2 * COLW)
      705 0
                                      return;
      706 36
                              x += (2 * COLW) - 24;
      707 900
                              for (ch = 0x800000; ch; ch >>= 1) {
      708 864
                                      if (pt->cur & ch)
      709 192
                                              mvwaddch(w, y, x, 'V');
      710
                                      else
      711 672
                                              mvwaddch(w, y, x, '_');
      712 864
                                      x++;
      713 864
                              }
      714 36
                              break;
      715
                      default:
      716 0
                              break;
      717
                      }
      718 72
                      col++;
      719
              }
      720 36
      }
      721
      722
      static void
      723 6
      draw_line_duration(WINDOW *w, int y, int x, int X, const struct pt *pt)
      724
      {
      725
              enum {
      726
                      COL_DUR,
      727
                      COL_LAST
      728
              } col;
      729
      730 6
              AN(w);
      731 6
              AN(pt);
      732
      733 6
              col = COL_DUR;
      734 12
              while (col < COL_LAST) {
      735 6
                      if (X - x < COLW)
      736 0
                              break;
      737 6
                      switch (col) {
      738
                      case COL_DUR:
      739 6
                              wmove(w, y, x);
      740 6
                              if (scale)
      741 2
                                      print_duration(w, pt->cur);
      742
                              else
      743 4
                                      IC(wprintw(w, " %12ju", (uintmax_t)pt->cur));
      744 6
                              break;
      745
                      default:
      746 0
                              break;
      747
                      }
      748 6
                      x += COLW;
      749 6
                      col++;
      750
              }
      751 6
      }
      752
      753
      static void
      754 988
      draw_line(WINDOW *w, int y, const struct pt *pt)
      755
      {
      756
              int x, X;
      757
      758 988
              assert(colw_name >= COLW_NAME_MIN);
      759 988
              X = getmaxx(w);
      760 988
              x = 0;
      761 988
              if (strlen(pt->vpt->name) > colw_name)
      762 70
                      IC(mvwprintw(w, y, x, "%.*s...", colw_name - 3, pt->vpt->name));
      763
              else
      764 918
                      IC(mvwprintw(w, y, x, "%.*s", colw_name, pt->vpt->name));
      765 988
              x += colw_name;
      766
      767 988
              switch (pt->vpt->format) {
      768
              case 'b':
      769 36
                      draw_line_bitmap(w, y, x, X, pt);
      770 36
                      break;
      771
              case 'B':
      772 297
                      draw_line_bytes(w, y, x, X, pt);
      773 297
                      break;
      774
              case 'd':
      775 6
                      draw_line_duration(w, y, x, X, pt);
      776 6
                      break;
      777
              default:
      778 649
                      draw_line_default(w, y, x, X, pt);
      779 649
                      break;
      780
              }
      781 988
      }
      782
      783
      static void
      784 89
      draw_points(void)
      785
      {
      786
              int line;
      787
              int n;
      788
      789 89
              AN(w_points);
      790
      791 89
              AC(werase(w_points));
      792 89
              if (n_ptarray == 0) {
      793 14
                      AC(wnoutrefresh(w_points));
      794 14
                      return;
      795
              }
      796
      797 75
              assert(current >= 0);
      798 75
              assert(current < n_ptarray);
      799 75
              assert(page_start >= 0);
      800 75
              assert(page_start < n_ptarray);
      801 75
              assert(current >= page_start);
      802 75
              assert(current - page_start < l_points);
      803
      804 1063
              for (line = 0; line < l_points; line++) {
      805 1012
                      n = line + page_start;
      806 1012
                      if (n >= n_ptarray)
      807 24
                              break;
      808 988
                      if (n == current)
      809 75
                              wattron(w_points, A_BOLD);
      810 988
                      draw_line(w_points, line, ptarray[n]);
      811 988
                      if (n == current)
      812 75
                              wattroff(w_points, A_BOLD);
      813 988
              }
      814 75
              AC(wnoutrefresh(w_points));
      815 89
      }
      816
      817
      static void
      818 6
      draw_help(void)
      819
      {
      820
              const char *const *p;
      821
              int l, y, X;
      822
      823 6
              if (l_points >= bindings_help_len) {
      824 0
                      assert(help_line == 0);
      825 0
                      l = bindings_help_len;
      826 0
              } else {
      827 6
                      assert(help_line >= 0);
      828 6
                      assert(help_line <= bindings_help_len - l_points);
      829 6
                      l = l_points;
      830
              }
      831
      832 6
              X = getmaxx(w_points);
      833 6
              AC(werase(w_points));
      834
      835 102
              for (y = 0, p = bindings_help + help_line; y < l; y++, p++) {
      836 96
                      if (**p == '\t') {
      837 50
                              IC(mvwprintw(w_points, y, 0, "    %.*s", X - 4, *p + 1));
      838 50
                      } else {
      839 46
                              wattron(w_points, A_BOLD);
      840 46
                              IC(mvwprintw(w_points, y, 0, "%.*s", X, *p));
      841 46
                              wattroff(w_points, A_BOLD);
      842
                      }
      843 96
              }
      844
      845 6
              AC(wnoutrefresh(w_points));
      846 6
      }
      847
      848
      static void
      849 89
      draw_bar_b(void)
      850
      {
      851
              int x, X;
      852
              char buf[64];
      853
      854 89
              AN(w_bar_b);
      855
      856 89
              x = 0;
      857 89
              X = getmaxx(w_bar_b);
      858 89
              AC(werase(w_bar_b));
      859 89
              if (page_start + l_points < n_ptarray)
      860 43
                      IC(mvwprintw(w_bar_b, 0, x, "vvv"));
      861 89
              x += 4;
      862 89
              if (current < n_ptarray)
      863 75
                      IC(mvwprintw(w_bar_b, 0, x, "%s", ptarray[current]->vpt->name));
      864
      865 89
              bprintf(buf, "%d-%d/%d", page_start + 1,
      866
                  page_start + l_points < n_ptarray ?
      867
                      page_start + l_points : n_ptarray,
      868
                  n_ptarray);
      869 89
              IC(mvwprintw(w_bar_b, 0, X - strlen(buf), "%s", buf));
      870 89
              X -= strlen(buf) + 2;
      871
      872 89
              if (verbosity != NULL) {
      873 89
                      IC(mvwprintw(w_bar_b, 0, X - strlen(verbosity->label), "%s",
      874
                          verbosity->label));
      875 89
                      X -= strlen(verbosity->label) + 2;
      876 89
              }
      877 89
              if (!hide_unseen) {
      878 20
                      IC(mvwprintw(w_bar_b, 0, X - 6, "%s", "UNSEEN"));
      879 20
                      X -= 8;
      880 20
              }
      881 89
              if (raw_vsc)
      882 0
                      IC(mvwprintw(w_bar_b, 0, X - 3, "%s", "RAW"));
      883
      884 89
              AC(wnoutrefresh(w_bar_b));
      885 89
      }
      886
      887
      static void
      888 89
      draw_info(void)
      889
      {
      890
      891 89
              if (w_info == NULL)
      892 0
                      return;
      893
      894 89
              AC(werase(w_info));
      895 89
              if (current < n_ptarray) {
      896
                      /* XXX: Word wrapping, and overflow handling? */
      897 75
                      IC(mvwprintw(w_info, 0, 0, "%s:",
      898
                          ptarray[current]->vpt->sdesc));
      899 75
                      IC(mvwprintw(w_info, 1, 0, "%s",
      900
                          ptarray[current]->vpt->ldesc));
      901 75
              }
      902 89
              AC(wnoutrefresh(w_info));
      903 89
      }
      904
      905
      static void
      906 95
      draw_screen(void)
      907
      {
      908 95
              draw_status();
      909 95
              if (show_help) {
      910 6
                      AC(werase(w_bar_t));
      911 6
                      AC(werase(w_bar_b));
      912 6
                      AC(werase(w_info));
      913 6
                      AC(wnoutrefresh(w_bar_t));
      914 6
                      AC(wnoutrefresh(w_bar_b));
      915 6
                      AC(wnoutrefresh(w_info));
      916 6
                      draw_help();
      917 6
              } else {
      918 89
                      draw_bar_t();
      919 89
                      draw_points();
      920 89
                      draw_bar_b();
      921 89
                      draw_info();
      922
              }
      923 95
              AC(doupdate());
      924 95
              redraw = 0;
      925 95
      }
      926
      927
      static void
      928 4
      handle_common_keypress(enum kb_e kb)
      929
      {
      930
      931 4
              switch (kb) {
      932
              case KB_QUIT:
      933 4
                      keep_running = 0;
      934 4
                      return;
      935
              case KB_SIG_INT:
      936 0
                      AZ(raise(SIGINT));
      937 0
                      return;
      938
              case KB_SIG_TSTP:
      939 0
                      AZ(raise(SIGTSTP));
      940 0
                      return;
      941
              default:
      942 0
                      WRONG("unexpected key binding");
      943 0
              }
      944 4
      }
      945
      946
      static void
      947 32
      handle_points_keypress(struct vsc *vsc, enum kb_e kb)
      948
      {
      949
      950 32
              switch (kb) {
      951
              case KB_HELP:
      952 4
                      show_help = 1;
      953 4
                      help_line = 0;
      954 4
                      redraw = 1;
      955 4
                      return;
      956
              case KB_UP:
      957 2
                      if (current == 0)
      958 0
                              return;
      959 2
                      current--;
      960 2
                      break;
      961
              case KB_DOWN:
      962 0
                      if (current == n_ptarray - 1)
      963 0
                              return;
      964 0
                      current++;
      965 0
                      break;
      966
              case KB_PAGEUP:
      967 2
                      current -= l_points;
      968 2
                      page_start -= l_points;
      969 2
                      break;
      970
              case KB_PAGEDOWN:
      971 2
                      current += l_points;
      972 2
                      if (page_start + l_points < n_ptarray - 1)
      973 2
                              page_start += l_points;
      974 2
                      break;
      975
              case KB_TOP:
      976 2
                      current = 0;
      977 2
                      break;
      978
              case KB_BOTTOM:
      979 4
                      current = n_ptarray - 1;
      980 4
                      break;
      981
              case KB_UNSEEN:
      982 2
                      hide_unseen = 1 - hide_unseen;
      983 2
                      rebuild = REBUILD_NEXT;
      984 2
                      break;
      985
              case KB_RAW:
      986 0
                      AN(VSC_Arg(vsc, 'r', NULL));
      987 0
                      raw_vsc = VSC_IsRaw(vsc);
      988 0
                      rebuild = REBUILD_NEXT;
      989 0
                      break;
      990
              case KB_SCALE:
      991 2
                      scale = 1 - scale;
      992 2
                      rebuild = REBUILD_NEXT;
      993 2
                      break;
      994
              case KB_ACCEL:
      995 2
                      interval += 0.1;
      996 2
                      (void)snprintf(notification_message, NOTIF_MAXLEN,
      997 2
                          "Refresh interval set to %.1f seconds.", interval);
      998
      999 2
                      notification_eol = VTIM_mono() + 1.25;
      1000 2
                      break;
      1001
              case KB_DECEL:
      1002 2
                      interval -= 0.1;
      1003 2
                      if (interval < 0.1)
      1004 0
                              interval = 0.1;
      1005 2
                      (void)snprintf(notification_message, NOTIF_MAXLEN,
      1006 2
                          "Refresh interval set to %.1f seconds.", interval);
      1007
      1008 2
                      notification_eol = VTIM_mono() + 1.25;
      1009 2
                      break;
      1010
              case KB_VERBOSE:
      1011 2
                      verbosity = VSC_ChangeLevel(verbosity, 1);
      1012 2
                      rebuild = REBUILD_NEXT;
      1013 2
                      break;
      1014
              case KB_QUIET:
      1015 0
                      verbosity = VSC_ChangeLevel(verbosity, -1);
      1016 0
                      rebuild = REBUILD_NEXT;
      1017 0
                      break;
      1018
              case KB_SAMPLE:
      1019 0
                      sample = 1;
      1020 0
                      return;
      1021
              case KB_RESET_AVERAGES:
      1022 2
                      reset_averages = 1;
      1023 2
                      return;
      1024
              case KB_QUIT:
      1025
              case KB_SIG_INT:
      1026
              case KB_SIG_TSTP:
      1027 4
                      handle_common_keypress(kb);
      1028 4
                      return;
      1029
              default:
      1030 0
                      WRONG("unhandled key binding");
      1031 0
              }
      1032
      1033 22
              update_position();
      1034 22
              redraw = 1;
      1035 32
      }
      1036
      1037
      static void
      1038 6
      handle_help_keypress(enum kb_e kb)
      1039
      {
      1040 6
              int hl = help_line;
      1041
      1042 6
              switch (kb) {
      1043
              case KB_HELP:
      1044 4
                      show_help = 0;
      1045 4
                      redraw = 1;
      1046 4
                      return;
      1047
              case KB_UP:
      1048 0
                      help_line--;
      1049 0
                      break;
      1050
              case KB_DOWN:
      1051 0
                      help_line++;
      1052 0
                      break;
      1053
              case KB_PAGEUP:
      1054 0
                      help_line -= l_points;
      1055 0
                      break;
      1056
              case KB_PAGEDOWN:
      1057 0
                      help_line += l_points;
      1058 0
                      break;
      1059
              case KB_TOP:
      1060 0
                      help_line = 0;
      1061 0
                      break;
      1062
              case KB_BOTTOM:
      1063 2
                      help_line = bindings_help_len;
      1064 2
                      break;
      1065
              case KB_UNSEEN:
      1066
              case KB_RAW:
      1067
              case KB_SCALE:
      1068
              case KB_ACCEL:
      1069
              case KB_DECEL:
      1070
              case KB_VERBOSE:
      1071
              case KB_QUIET:
      1072
              case KB_SAMPLE:
      1073
              case KB_RESET_AVERAGES:
      1074 0
                      break;
      1075
              case KB_QUIT:
      1076
              case KB_SIG_INT:
      1077
              case KB_SIG_TSTP:
      1078 0
                      handle_common_keypress(kb);
      1079 0
                      return;
      1080
              default:
      1081 0
                      WRONG("unhandled key binding");
      1082 0
              }
      1083
      1084 2
              help_line = vlimit_t(int, help_line, 0, bindings_help_len - l_points);
      1085 2
              redraw = (help_line != hl);
      1086 6
      }
      1087
      1088
      static void
      1089 38
      handle_keypress(struct vsc *vsc, int ch)
      1090
      {
      1091
              enum kb_e kb;
      1092
      1093 38
              switch (ch) {
      1094
      #define BINDING_KEY(chr, name, or)      \
      1095
              case chr:
      1096
      #define BINDING(name, desc)             \
      1097
                      kb = KB_ ## name;       \
      1098
                      break;
      1099
      #define BINDING_SIG
      1100
      #include "varnishstat_bindings.h"
      1101
              default:
      1102
                      return;
      1103
              }
      1104
      1105 38
              if (show_help)
      1106 6
                      handle_help_keypress(kb);
      1107
              else
      1108 32
                      handle_points_keypress(vsc, kb);
      1109 38
      }
      1110
      1111
      static void * v_matchproto_(VSC_new_f)
      1112 4530
      newpt(void *priv, const struct VSC_point *const vpt)
      1113
      {
      1114
              struct pt *pt;
      1115
      1116 4530
              AZ(priv);
      1117 4530
              ALLOC_OBJ(pt, PT_MAGIC);
      1118 4530
              rebuild |= REBUILD_NEXT;
      1119 4530
              AN(pt);
      1120 4530
              pt->vpt = vpt;
      1121 4530
              pt->last = VSC_Value(vpt);
      1122 4530
              pt->ma_10.nmax = 10;
      1123 4530
              pt->ma_100.nmax = 100;
      1124 4530
              pt->ma_1000.nmax = 1000;
      1125
      1126 4530
              VTAILQ_INSERT_TAIL(&ptlist, pt, list);
      1127 4530
              n_ptlist++;
      1128
      1129 4530
              AZ(strcmp(vpt->ctype, "uint64_t"));
      1130
      1131 4530
              if (!strcmp(vpt->name, "MGT.uptime"))
      1132 14
                      mgt_uptime = vpt->ptr;
      1133 4530
              if (!strcmp(vpt->name, "MAIN.uptime"))
      1134 14
                      main_uptime = vpt->ptr;
      1135 4530
              if (!strcmp(vpt->name, "MAIN.cache_hit"))
      1136 14
                      main_cache_hit = vpt->ptr;
      1137 4530
              if (!strcmp(vpt->name, "MAIN.cache_miss"))
      1138 14
                      main_cache_miss = vpt->ptr;
      1139 4530
              return (pt);
      1140
      }
      1141
      1142
      static void v_matchproto_(VSC_destroy_f)
      1143 4530
      delpt(void *priv, const struct VSC_point *const vpt)
      1144
      {
      1145
              struct pt *pt;
      1146
      1147 4530
              AZ(priv);
      1148 4530
              CAST_OBJ_NOTNULL(pt, vpt->priv, PT_MAGIC);
      1149 4530
              rebuild |= REBUILD_NEXT;
      1150 4530
              VTAILQ_REMOVE(&ptlist, pt, list);
      1151 4530
              n_ptlist--;
      1152 4530
              FREE_OBJ(pt);
      1153 4530
              if (vpt->ptr == mgt_uptime)
      1154 14
                      mgt_uptime = NULL;
      1155 4530
              if (vpt->ptr == main_uptime)
      1156 14
                      main_uptime = NULL;
      1157 4530
              if (vpt->ptr == main_cache_hit)
      1158 14
                      main_cache_hit = NULL;
      1159 4530
              if (vpt->ptr == main_cache_miss)
      1160 14
                      main_cache_miss = NULL;
      1161 4530
      }
      1162
      1163
      void
      1164 14
      do_curses(struct vsm *vsm, struct vsc *vsc)
      1165
      {
      1166
              long t;
      1167
              int ch;
      1168
              double now;
      1169
      1170 14
              verbosity = VSC_ChangeLevel(NULL, 0);
      1171
      1172 14
              (void)initscr();
      1173 14
              AC(raw());
      1174 14
              AC(noecho());
      1175 14
              AC(nonl());
      1176 14
              IC(curs_set(0));
      1177
      1178 14
              make_windows();
      1179 14
              AC(doupdate());
      1180
      1181 14
              VSC_State(vsc, newpt, delpt, NULL);
      1182
      1183 14
              raw_vsc = VSC_IsRaw(vsc);
      1184 14
              rebuild |= REBUILD_FIRST;
      1185 14
              (void)VSC_Iter(vsc, vsm, NULL, NULL);
      1186 14
              build_pt_array();
      1187 14
              init_hitrate();
      1188
      1189 111
              while (keep_running && !VSIG_int && !VSIG_term && !VSIG_hup) {
      1190 97
                      (void)VSC_Iter(vsc, vsm, NULL, NULL);
      1191 97
                      vsm_status = VSM_Status(vsm);
      1192 97
                      if (vsm_status & (VSM_MGT_RESTARTED|VSM_WRK_RESTARTED))
      1193 0
                              init_hitrate();
      1194 97
                      if (rebuild)
      1195 38
                              build_pt_array();
      1196
      1197 97
                      now = VTIM_mono();
      1198 97
                      if (now - t_sample > interval)
      1199 61
                              sample = 1;
      1200 97
                      if (sample)
      1201 61
                              sample_data();
      1202 97
                      if (redraw)
      1203 95
                              draw_screen();
      1204
      1205 97
                      t = (long)((t_sample + interval - now) * 1000);
      1206 97
                      wtimeout(w_status, t);
      1207
      1208 97
                      ch = wgetch(w_status);
      1209 97
                      switch (ch) {
      1210
                      case ERR:
      1211 57
                              break;
      1212
      #ifdef KEY_RESIZE /* sigh, Solaris lacks this.. */
      1213
                      case KEY_RESIZE:
      1214 2
                              make_windows();
      1215 2
                              update_position();
      1216 2
                              break;
      1217
      #endif
      1218
                      default:
      1219 38
                              handle_keypress(vsc, ch);
      1220 38
                              break;
      1221
                      }
      1222
              }
      1223 14
              VSC_Destroy(&vsc, vsm);
      1224 14
              AN(VTAILQ_EMPTY(&ptlist));
      1225 14
              VSM_Destroy(&vsm);
      1226 14
              AZ(endwin());
      1227 14
      }
      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
      www.yunhe4.com.cn
      emmy.net.cn
      tudou.net.cn
      lufan8.net.cn
      jike4.net.cn
      yaole7.com.cn
      www.zecun5.net.cn
      www.manna8.net.cn
      www.xinye3.com.cn
      alkylsil.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 美女外拍全露出 亚洲蜜桃诱惑 爆插美女穴