Print this page
    
OS-4930 lxbrand ptrace should be more mindful of segregs
Reviewed by: Joshua M. Clulow <jmc@joyent.com>
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
OS-3561 lxbrand emulation library should execute on alternate stack
OS-3558 lxbrand add support for full in-kernel syscall handling
OS-3545 lx_syscall_regs should not walk stack
OS-3868 many LTP testcases now hang
OS-3901 lxbrand lx_recvmsg fails to translate control messages when 64-bit
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>
Reviewed by: Bryan Cantrill <bryan@joyent.com>
OS-2834 ship lx brand
    
      
        | Split | 
	Close | 
      
      | Expand all | 
      | Collapse all | 
    
    
          --- old/usr/src/uts/intel/ia32/os/archdep.c
          +++ new/usr/src/uts/intel/ia32/os/archdep.c
   1    1  /*
   2    2   * CDDL HEADER START
   3    3   *
   4    4   * The contents of this file are subject to the terms of the
   5    5   * Common Development and Distribution License (the "License").
   6    6   * You may not use this file except in compliance with the License.
   7    7   *
   8    8   * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9    9   * or http://www.opensolaris.org/os/licensing.
  10   10   * See the License for the specific language governing permissions
  11   11   * and limitations under the License.
  12   12   *
  13   13   * When distributing Covered Code, include this CDDL HEADER in each
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  
    | 
      ↓ open down ↓ | 
    17 lines elided | 
    
      ↑ open up ↑ | 
  
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
  23   23   */
  24   24  
  25   25  /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
  26   26  /*        All Rights Reserved   */
  27   27  /*
  28      - * Copyright (c) 2012, Joyent, Inc.  All rights reserved.
       28 + * Copyright 2015 Joyent, Inc.
  29   29   * Copyright 2012 Nexenta Systems, Inc.  All rights reserved.
  30   30   */
  31   31  
  32   32  #include <sys/param.h>
  33   33  #include <sys/types.h>
  34   34  #include <sys/vmparam.h>
  35   35  #include <sys/systm.h>
  36   36  #include <sys/signal.h>
  37   37  #include <sys/stack.h>
  38   38  #include <sys/regset.h>
  39   39  #include <sys/privregs.h>
  40   40  #include <sys/frame.h>
  41   41  #include <sys/proc.h>
  42   42  #include <sys/psw.h>
  43   43  #include <sys/siginfo.h>
  44   44  #include <sys/cpuvar.h>
  45   45  #include <sys/asm_linkage.h>
  46   46  #include <sys/kmem.h>
  47   47  #include <sys/errno.h>
  48   48  #include <sys/bootconf.h>
  49   49  #include <sys/archsystm.h>
  50   50  #include <sys/debug.h>
  51   51  #include <sys/elf.h>
  52   52  #include <sys/spl.h>
  53   53  #include <sys/time.h>
  54   54  #include <sys/atomic.h>
  55   55  #include <sys/sysmacros.h>
  56   56  #include <sys/cmn_err.h>
  57   57  #include <sys/modctl.h>
  58   58  #include <sys/kobj.h>
  59   59  #include <sys/panic.h>
  60   60  #include <sys/reboot.h>
  61   61  #include <sys/time.h>
  62   62  #include <sys/fp.h>
  63   63  #include <sys/x86_archext.h>
  64   64  #include <sys/auxv.h>
  65   65  #include <sys/auxv_386.h>
  66   66  #include <sys/dtrace.h>
  67   67  #include <sys/brand.h>
  68   68  #include <sys/machbrand.h>
  69   69  #include <sys/cmn_err.h>
  70   70  
  71   71  extern const struct fnsave_state x87_initial;
  72   72  extern const struct fxsave_state sse_initial;
  73   73  
  74   74  /*
  75   75   * Map an fnsave-formatted save area into an fxsave-formatted save area.
  76   76   *
  77   77   * Most fields are the same width, content and semantics.  However
  78   78   * the tag word is compressed.
  79   79   */
  80   80  static void
  81   81  fnsave_to_fxsave(const struct fnsave_state *fn, struct fxsave_state *fx)
  82   82  {
  83   83          uint_t i, tagbits;
  84   84  
  85   85          fx->fx_fcw = fn->f_fcw;
  86   86          fx->fx_fsw = fn->f_fsw;
  87   87  
  88   88          /*
  89   89           * copy element by element (because of holes)
  90   90           */
  91   91          for (i = 0; i < 8; i++)
  92   92                  bcopy(&fn->f_st[i].fpr_16[0], &fx->fx_st[i].fpr_16[0],
  93   93                      sizeof (fn->f_st[0].fpr_16)); /* 80-bit x87-style floats */
  94   94  
  95   95          /*
  96   96           * synthesize compressed tag bits
  97   97           */
  98   98          fx->fx_fctw = 0;
  99   99          for (tagbits = fn->f_ftw, i = 0; i < 8; i++, tagbits >>= 2)
 100  100                  if ((tagbits & 3) != 3)
 101  101                          fx->fx_fctw |= (1 << i);
 102  102  
 103  103          fx->fx_fop = fn->f_fop;
 104  104  
 105  105  #if defined(__amd64)
 106  106          fx->fx_rip = (uint64_t)fn->f_eip;
 107  107          fx->fx_rdp = (uint64_t)fn->f_dp;
 108  108  #else
 109  109          fx->fx_eip = fn->f_eip;
 110  110          fx->fx_cs = fn->f_cs;
 111  111          fx->__fx_ign0 = 0;
 112  112          fx->fx_dp = fn->f_dp;
 113  113          fx->fx_ds = fn->f_ds;
 114  114          fx->__fx_ign1 = 0;
 115  115  #endif
 116  116  }
 117  117  
 118  118  /*
 119  119   * Map from an fxsave-format save area to an fnsave-format save area.
 120  120   */
 121  121  static void
 122  122  fxsave_to_fnsave(const struct fxsave_state *fx, struct fnsave_state *fn)
 123  123  {
 124  124          uint_t i, top, tagbits;
 125  125  
 126  126          fn->f_fcw = fx->fx_fcw;
 127  127          fn->__f_ign0 = 0;
 128  128          fn->f_fsw = fx->fx_fsw;
 129  129          fn->__f_ign1 = 0;
 130  130  
 131  131          top = (fx->fx_fsw & FPS_TOP) >> 11;
 132  132  
 133  133          /*
 134  134           * copy element by element (because of holes)
 135  135           */
 136  136          for (i = 0; i < 8; i++)
 137  137                  bcopy(&fx->fx_st[i].fpr_16[0], &fn->f_st[i].fpr_16[0],
 138  138                      sizeof (fn->f_st[0].fpr_16)); /* 80-bit x87-style floats */
 139  139  
 140  140          /*
 141  141           * synthesize uncompressed tag bits
 142  142           */
 143  143          fn->f_ftw = 0;
 144  144          for (tagbits = fx->fx_fctw, i = 0; i < 8; i++, tagbits >>= 1) {
 145  145                  uint_t ibit, expo;
 146  146                  const uint16_t *fpp;
 147  147                  static const uint16_t zero[5] = { 0, 0, 0, 0, 0 };
 148  148  
 149  149                  if ((tagbits & 1) == 0) {
 150  150                          fn->f_ftw |= 3 << (i << 1);     /* empty */
 151  151                          continue;
 152  152                  }
 153  153  
 154  154                  /*
 155  155                   * (tags refer to *physical* registers)
 156  156                   */
 157  157                  fpp = &fx->fx_st[(i - top + 8) & 7].fpr_16[0];
 158  158                  ibit = fpp[3] >> 15;
 159  159                  expo = fpp[4] & 0x7fff;
 160  160  
 161  161                  if (ibit && expo != 0 && expo != 0x7fff)
 162  162                          continue;                       /* valid fp number */
 163  163  
 164  164                  if (bcmp(fpp, &zero, sizeof (zero)))
 165  165                          fn->f_ftw |= 2 << (i << 1);     /* NaN */
 166  166                  else
 167  167                          fn->f_ftw |= 1 << (i << 1);     /* fp zero */
 168  168          }
 169  169  
 170  170          fn->f_fop = fx->fx_fop;
 171  171  
 172  172          fn->__f_ign2 = 0;
 173  173  #if defined(__amd64)
 174  174          fn->f_eip = (uint32_t)fx->fx_rip;
 175  175          fn->f_cs = U32CS_SEL;
 176  176          fn->f_dp = (uint32_t)fx->fx_rdp;
 177  177          fn->f_ds = UDS_SEL;
 178  178  #else
 179  179          fn->f_eip = fx->fx_eip;
 180  180          fn->f_cs = fx->fx_cs;
 181  181          fn->f_dp = fx->fx_dp;
 182  182          fn->f_ds = fx->fx_ds;
 183  183  #endif
 184  184          fn->__f_ign3 = 0;
 185  185  }
 186  186  
 187  187  /*
 188  188   * Map from an fpregset_t into an fxsave-format save area
 189  189   */
 190  190  static void
 191  191  fpregset_to_fxsave(const fpregset_t *fp, struct fxsave_state *fx)
 192  192  {
 193  193  #if defined(__amd64)
 194  194          bcopy(fp, fx, sizeof (*fx));
 195  195  #else
 196  196          const struct _fpchip_state *fc = &fp->fp_reg_set.fpchip_state;
 197  197  
 198  198          fnsave_to_fxsave((const struct fnsave_state *)fc, fx);
 199  199          fx->fx_mxcsr = fc->mxcsr;
 200  200          bcopy(&fc->xmm[0], &fx->fx_xmm[0], sizeof (fc->xmm));
 201  201  #endif
 202  202          /*
 203  203           * avoid useless #gp exceptions - mask reserved bits
 204  204           */
 205  205          fx->fx_mxcsr &= sse_mxcsr_mask;
 206  206  }
 207  207  
 208  208  /*
 209  209   * Map from an fxsave-format save area into a fpregset_t
 210  210   */
 211  211  static void
 212  212  fxsave_to_fpregset(const struct fxsave_state *fx, fpregset_t *fp)
 213  213  {
 214  214  #if defined(__amd64)
 215  215          bcopy(fx, fp, sizeof (*fx));
 216  216  #else
 217  217          struct _fpchip_state *fc = &fp->fp_reg_set.fpchip_state;
 218  218  
 219  219          fxsave_to_fnsave(fx, (struct fnsave_state *)fc);
 220  220          fc->mxcsr = fx->fx_mxcsr;
 221  221          bcopy(&fx->fx_xmm[0], &fc->xmm[0], sizeof (fc->xmm));
 222  222  #endif
 223  223  }
 224  224  
 225  225  #if defined(_SYSCALL32_IMPL)
 226  226  static void
 227  227  fpregset32_to_fxsave(const fpregset32_t *fp, struct fxsave_state *fx)
 228  228  {
 229  229          const struct fpchip32_state *fc = &fp->fp_reg_set.fpchip_state;
 230  230  
 231  231          fnsave_to_fxsave((const struct fnsave_state *)fc, fx);
 232  232          /*
 233  233           * avoid useless #gp exceptions - mask reserved bits
 234  234           */
 235  235          fx->fx_mxcsr = sse_mxcsr_mask & fc->mxcsr;
 236  236          bcopy(&fc->xmm[0], &fx->fx_xmm[0], sizeof (fc->xmm));
 237  237  }
 238  238  
 239  239  static void
 240  240  fxsave_to_fpregset32(const struct fxsave_state *fx, fpregset32_t *fp)
 241  241  {
 242  242          struct fpchip32_state *fc = &fp->fp_reg_set.fpchip_state;
 243  243  
 244  244          fxsave_to_fnsave(fx, (struct fnsave_state *)fc);
 245  245          fc->mxcsr = fx->fx_mxcsr;
 246  246          bcopy(&fx->fx_xmm[0], &fc->xmm[0], sizeof (fc->xmm));
 247  247  }
 248  248  
 249  249  static void
 250  250  fpregset_nto32(const fpregset_t *src, fpregset32_t *dst)
 251  251  {
 252  252          fxsave_to_fpregset32((struct fxsave_state *)src, dst);
 253  253          dst->fp_reg_set.fpchip_state.status =
 254  254              src->fp_reg_set.fpchip_state.status;
 255  255          dst->fp_reg_set.fpchip_state.xstatus =
 256  256              src->fp_reg_set.fpchip_state.xstatus;
 257  257  }
 258  258  
 259  259  static void
 260  260  fpregset_32ton(const fpregset32_t *src, fpregset_t *dst)
 261  261  {
 262  262          fpregset32_to_fxsave(src, (struct fxsave_state *)dst);
 263  263          dst->fp_reg_set.fpchip_state.status =
 264  264              src->fp_reg_set.fpchip_state.status;
 265  265          dst->fp_reg_set.fpchip_state.xstatus =
 266  266              src->fp_reg_set.fpchip_state.xstatus;
 267  267  }
 268  268  #endif
 269  269  
 270  270  /*
 271  271   * Set floating-point registers from a native fpregset_t.
 272  272   */
 273  273  void
 274  274  setfpregs(klwp_t *lwp, fpregset_t *fp)
 275  275  {
 276  276          struct fpu_ctx *fpu = &lwp->lwp_pcb.pcb_fpu;
 277  277  
 278  278          if (fpu->fpu_flags & FPU_EN) {
 279  279                  if (!(fpu->fpu_flags & FPU_VALID)) {
 280  280                          /*
 281  281                           * FPU context is still active, release the
 282  282                           * ownership.
 283  283                           */
 284  284                          fp_free(fpu, 0);
 285  285                  }
 286  286          }
 287  287          /*
 288  288           * Else: if we are trying to change the FPU state of a thread which
 289  289           * hasn't yet initialized floating point, store the state in
 290  290           * the pcb and indicate that the state is valid.  When the
 291  291           * thread enables floating point, it will use this state instead
 292  292           * of the default state.
 293  293           */
 294  294  
 295  295          switch (fp_save_mech) {
 296  296  #if defined(__i386)
 297  297          case FP_FNSAVE:
 298  298                  bcopy(fp, &fpu->fpu_regs.kfpu_u.kfpu_fn,
 299  299                      sizeof (fpu->fpu_regs.kfpu_u.kfpu_fn));
 300  300                  break;
 301  301  #endif
 302  302          case FP_FXSAVE:
 303  303                  fpregset_to_fxsave(fp, &fpu->fpu_regs.kfpu_u.kfpu_fx);
 304  304                  fpu->fpu_regs.kfpu_xstatus =
 305  305                      fp->fp_reg_set.fpchip_state.xstatus;
 306  306                  break;
 307  307  
 308  308          case FP_XSAVE:
 309  309                  fpregset_to_fxsave(fp,
 310  310                      &fpu->fpu_regs.kfpu_u.kfpu_xs.xs_fxsave);
 311  311                  fpu->fpu_regs.kfpu_xstatus =
 312  312                      fp->fp_reg_set.fpchip_state.xstatus;
 313  313                  fpu->fpu_regs.kfpu_u.kfpu_xs.xs_xstate_bv |=
 314  314                      (XFEATURE_LEGACY_FP | XFEATURE_SSE);
 315  315                  break;
 316  316          default:
 317  317                  panic("Invalid fp_save_mech");
 318  318                  /*NOTREACHED*/
 319  319          }
 320  320  
 321  321          fpu->fpu_regs.kfpu_status = fp->fp_reg_set.fpchip_state.status;
 322  322          fpu->fpu_flags |= FPU_VALID;
 323  323  }
 324  324  
 325  325  /*
 326  326   * Get floating-point registers into a native fpregset_t.
 327  327   */
 328  328  void
 329  329  getfpregs(klwp_t *lwp, fpregset_t *fp)
 330  330  {
 331  331          struct fpu_ctx *fpu = &lwp->lwp_pcb.pcb_fpu;
 332  332  
 333  333          kpreempt_disable();
 334  334          if (fpu->fpu_flags & FPU_EN) {
 335  335                  /*
 336  336                   * If we have FPU hw and the thread's pcb doesn't have
 337  337                   * a valid FPU state then get the state from the hw.
 338  338                   */
 339  339                  if (fpu_exists && ttolwp(curthread) == lwp &&
 340  340                      !(fpu->fpu_flags & FPU_VALID))
 341  341                          fp_save(fpu); /* get the current FPU state */
 342  342          }
 343  343  
 344  344          /*
 345  345           * There are 3 possible cases we have to be aware of here:
 346  346           *
 347  347           * 1. FPU is enabled.  FPU state is stored in the current LWP.
 348  348           *
 349  349           * 2. FPU is not enabled, and there have been no intervening /proc
 350  350           *    modifications.  Return initial FPU state.
 351  351           *
 352  352           * 3. FPU is not enabled, but a /proc consumer has modified FPU state.
 353  353           *    FPU state is stored in the current LWP.
 354  354           */
 355  355          if ((fpu->fpu_flags & FPU_EN) || (fpu->fpu_flags & FPU_VALID)) {
 356  356                  /*
 357  357                   * Cases 1 and 3.
 358  358                   */
 359  359                  switch (fp_save_mech) {
 360  360  #if defined(__i386)
 361  361                  case FP_FNSAVE:
 362  362                          bcopy(&fpu->fpu_regs.kfpu_u.kfpu_fn, fp,
 363  363                              sizeof (fpu->fpu_regs.kfpu_u.kfpu_fn));
 364  364                          break;
 365  365  #endif
 366  366                  case FP_FXSAVE:
 367  367                          fxsave_to_fpregset(&fpu->fpu_regs.kfpu_u.kfpu_fx, fp);
 368  368                          fp->fp_reg_set.fpchip_state.xstatus =
 369  369                              fpu->fpu_regs.kfpu_xstatus;
 370  370                          break;
 371  371                  case FP_XSAVE:
 372  372                          fxsave_to_fpregset(
 373  373                              &fpu->fpu_regs.kfpu_u.kfpu_xs.xs_fxsave, fp);
 374  374                          fp->fp_reg_set.fpchip_state.xstatus =
 375  375                              fpu->fpu_regs.kfpu_xstatus;
 376  376                          break;
 377  377                  default:
 378  378                          panic("Invalid fp_save_mech");
 379  379                          /*NOTREACHED*/
 380  380                  }
 381  381                  fp->fp_reg_set.fpchip_state.status = fpu->fpu_regs.kfpu_status;
 382  382          } else {
 383  383                  /*
 384  384                   * Case 2.
 385  385                   */
 386  386                  switch (fp_save_mech) {
 387  387  #if defined(__i386)
 388  388                  case FP_FNSAVE:
 389  389                          bcopy(&x87_initial, fp, sizeof (x87_initial));
 390  390                          break;
 391  391  #endif
 392  392                  case FP_FXSAVE:
 393  393                  case FP_XSAVE:
 394  394                          /*
 395  395                           * For now, we don't have any AVX specific field in ABI.
 396  396                           * If we add any in the future, we need to initial them
 397  397                           * as well.
 398  398                           */
 399  399                          fxsave_to_fpregset(&sse_initial, fp);
 400  400                          fp->fp_reg_set.fpchip_state.xstatus =
 401  401                              fpu->fpu_regs.kfpu_xstatus;
 402  402                          break;
 403  403                  default:
 404  404                          panic("Invalid fp_save_mech");
 405  405                          /*NOTREACHED*/
 406  406                  }
 407  407                  fp->fp_reg_set.fpchip_state.status = fpu->fpu_regs.kfpu_status;
 408  408          }
 409  409          kpreempt_enable();
 410  410  }
 411  411  
 412  412  #if defined(_SYSCALL32_IMPL)
 413  413  
 414  414  /*
 415  415   * Set floating-point registers from an fpregset32_t.
 416  416   */
 417  417  void
 418  418  setfpregs32(klwp_t *lwp, fpregset32_t *fp)
 419  419  {
 420  420          fpregset_t fpregs;
 421  421  
 422  422          fpregset_32ton(fp, &fpregs);
 423  423          setfpregs(lwp, &fpregs);
 424  424  }
 425  425  
 426  426  /*
 427  427   * Get floating-point registers into an fpregset32_t.
 428  428   */
 429  429  void
 430  430  getfpregs32(klwp_t *lwp, fpregset32_t *fp)
 431  431  {
 432  432          fpregset_t fpregs;
 433  433  
 434  434          getfpregs(lwp, &fpregs);
 435  435          fpregset_nto32(&fpregs, fp);
 436  436  }
 437  437  
 438  438  #endif  /* _SYSCALL32_IMPL */
 439  439  
 440  440  /*
 441  441   * Return the general registers
 442  442   */
 443  443  void
 444  444  getgregs(klwp_t *lwp, gregset_t grp)
 445  445  {
 446  446          struct regs *rp = lwptoregs(lwp);
 447  447  #if defined(__amd64)
 448  448          struct pcb *pcb = &lwp->lwp_pcb;
 449  449          int thisthread = lwptot(lwp) == curthread;
 450  450  
 451  451          grp[REG_RDI] = rp->r_rdi;
 452  452          grp[REG_RSI] = rp->r_rsi;
 453  453          grp[REG_RDX] = rp->r_rdx;
 454  454          grp[REG_RCX] = rp->r_rcx;
 455  455          grp[REG_R8] = rp->r_r8;
 456  456          grp[REG_R9] = rp->r_r9;
 457  457          grp[REG_RAX] = rp->r_rax;
 458  458          grp[REG_RBX] = rp->r_rbx;
 459  459          grp[REG_RBP] = rp->r_rbp;
 460  460          grp[REG_R10] = rp->r_r10;
 461  461          grp[REG_R11] = rp->r_r11;
 462  462          grp[REG_R12] = rp->r_r12;
 463  463          grp[REG_R13] = rp->r_r13;
 464  464          grp[REG_R14] = rp->r_r14;
 465  465          grp[REG_R15] = rp->r_r15;
 466  466          grp[REG_FSBASE] = pcb->pcb_fsbase;
 467  467          grp[REG_GSBASE] = pcb->pcb_gsbase;
 468  468          if (thisthread)
 469  469                  kpreempt_disable();
 470  470          if (pcb->pcb_rupdate == 1) {
 471  471                  grp[REG_DS] = pcb->pcb_ds;
 472  472                  grp[REG_ES] = pcb->pcb_es;
 473  473                  grp[REG_FS] = pcb->pcb_fs;
 474  474                  grp[REG_GS] = pcb->pcb_gs;
 475  475          } else {
 476  476                  grp[REG_DS] = rp->r_ds;
 477  477                  grp[REG_ES] = rp->r_es;
 478  478                  grp[REG_FS] = rp->r_fs;
 479  479                  grp[REG_GS] = rp->r_gs;
 480  480          }
 481  481          if (thisthread)
 482  482                  kpreempt_enable();
 483  483          grp[REG_TRAPNO] = rp->r_trapno;
 484  484          grp[REG_ERR] = rp->r_err;
 485  485          grp[REG_RIP] = rp->r_rip;
 486  486          grp[REG_CS] = rp->r_cs;
 487  487          grp[REG_SS] = rp->r_ss;
 488  488          grp[REG_RFL] = rp->r_rfl;
 489  489          grp[REG_RSP] = rp->r_rsp;
 490  490  #else
 491  491          bcopy(&rp->r_gs, grp, sizeof (gregset_t));
 492  492  #endif
 493  493  }
 494  494  
 495  495  #if defined(_SYSCALL32_IMPL)
 496  496  
 497  497  void
 498  498  getgregs32(klwp_t *lwp, gregset32_t grp)
 499  499  {
 500  500          struct regs *rp = lwptoregs(lwp);
 501  501          struct pcb *pcb = &lwp->lwp_pcb;
 502  502          int thisthread = lwptot(lwp) == curthread;
 503  503  
 504  504          if (thisthread)
 505  505                  kpreempt_disable();
 506  506          if (pcb->pcb_rupdate == 1) {
 507  507                  grp[GS] = (uint16_t)pcb->pcb_gs;
 508  508                  grp[FS] = (uint16_t)pcb->pcb_fs;
 509  509                  grp[DS] = (uint16_t)pcb->pcb_ds;
 510  510                  grp[ES] = (uint16_t)pcb->pcb_es;
 511  511          } else {
 512  512                  grp[GS] = (uint16_t)rp->r_gs;
 513  513                  grp[FS] = (uint16_t)rp->r_fs;
 514  514                  grp[DS] = (uint16_t)rp->r_ds;
 515  515                  grp[ES] = (uint16_t)rp->r_es;
 516  516          }
 517  517          if (thisthread)
 518  518                  kpreempt_enable();
 519  519          grp[EDI] = (greg32_t)rp->r_rdi;
 520  520          grp[ESI] = (greg32_t)rp->r_rsi;
 521  521          grp[EBP] = (greg32_t)rp->r_rbp;
 522  522          grp[ESP] = 0;
 523  523          grp[EBX] = (greg32_t)rp->r_rbx;
 524  524          grp[EDX] = (greg32_t)rp->r_rdx;
 525  525          grp[ECX] = (greg32_t)rp->r_rcx;
 526  526          grp[EAX] = (greg32_t)rp->r_rax;
 527  527          grp[TRAPNO] = (greg32_t)rp->r_trapno;
 528  528          grp[ERR] = (greg32_t)rp->r_err;
 529  529          grp[EIP] = (greg32_t)rp->r_rip;
 530  530          grp[CS] = (uint16_t)rp->r_cs;
 531  531          grp[EFL] = (greg32_t)rp->r_rfl;
 532  532          grp[UESP] = (greg32_t)rp->r_rsp;
 533  533          grp[SS] = (uint16_t)rp->r_ss;
 534  534  }
 535  535  
 536  536  void
 537  537  ucontext_32ton(const ucontext32_t *src, ucontext_t *dst)
 538  538  {
 539  539          mcontext_t *dmc = &dst->uc_mcontext;
 540  540          const mcontext32_t *smc = &src->uc_mcontext;
 541  541  
 542  542          bzero(dst, sizeof (*dst));
 543  543          dst->uc_flags = src->uc_flags;
 544  544          dst->uc_link = (ucontext_t *)(uintptr_t)src->uc_link;
 545  545  
 546  546          bcopy(&src->uc_sigmask, &dst->uc_sigmask, sizeof (dst->uc_sigmask));
 547  547  
 548  548          dst->uc_stack.ss_sp = (void *)(uintptr_t)src->uc_stack.ss_sp;
 549  549          dst->uc_stack.ss_size = (size_t)src->uc_stack.ss_size;
 550  550          dst->uc_stack.ss_flags = src->uc_stack.ss_flags;
 551  551  
 552  552          dmc->gregs[REG_GS] = (greg_t)(uint32_t)smc->gregs[GS];
 553  553          dmc->gregs[REG_FS] = (greg_t)(uint32_t)smc->gregs[FS];
 554  554          dmc->gregs[REG_ES] = (greg_t)(uint32_t)smc->gregs[ES];
 555  555          dmc->gregs[REG_DS] = (greg_t)(uint32_t)smc->gregs[DS];
 556  556          dmc->gregs[REG_RDI] = (greg_t)(uint32_t)smc->gregs[EDI];
 557  557          dmc->gregs[REG_RSI] = (greg_t)(uint32_t)smc->gregs[ESI];
 558  558          dmc->gregs[REG_RBP] = (greg_t)(uint32_t)smc->gregs[EBP];
 559  559          dmc->gregs[REG_RBX] = (greg_t)(uint32_t)smc->gregs[EBX];
 560  560          dmc->gregs[REG_RDX] = (greg_t)(uint32_t)smc->gregs[EDX];
 561  561          dmc->gregs[REG_RCX] = (greg_t)(uint32_t)smc->gregs[ECX];
 562  562          dmc->gregs[REG_RAX] = (greg_t)(uint32_t)smc->gregs[EAX];
 563  563          dmc->gregs[REG_TRAPNO] = (greg_t)(uint32_t)smc->gregs[TRAPNO];
 564  564          dmc->gregs[REG_ERR] = (greg_t)(uint32_t)smc->gregs[ERR];
 565  565          dmc->gregs[REG_RIP] = (greg_t)(uint32_t)smc->gregs[EIP];
 566  566          dmc->gregs[REG_CS] = (greg_t)(uint32_t)smc->gregs[CS];
 567  567          dmc->gregs[REG_RFL] = (greg_t)(uint32_t)smc->gregs[EFL];
  
    | 
      ↓ open down ↓ | 
    529 lines elided | 
    
      ↑ open up ↑ | 
  
 568  568          dmc->gregs[REG_RSP] = (greg_t)(uint32_t)smc->gregs[UESP];
 569  569          dmc->gregs[REG_SS] = (greg_t)(uint32_t)smc->gregs[SS];
 570  570  
 571  571          /*
 572  572           * A valid fpregs is only copied in if uc.uc_flags has UC_FPU set
 573  573           * otherwise there is no guarantee that anything in fpregs is valid.
 574  574           */
 575  575          if (src->uc_flags & UC_FPU)
 576  576                  fpregset_32ton(&src->uc_mcontext.fpregs,
 577  577                      &dst->uc_mcontext.fpregs);
      578 +
      579 +        /*
      580 +         * Copy the brand-private data:
      581 +         */
      582 +        dst->uc_brand_data[0] = (void *)(uintptr_t)src->uc_brand_data[0];
      583 +        dst->uc_brand_data[1] = (void *)(uintptr_t)src->uc_brand_data[1];
      584 +        dst->uc_brand_data[2] = (void *)(uintptr_t)src->uc_brand_data[2];
 578  585  }
 579  586  
 580  587  #endif  /* _SYSCALL32_IMPL */
 581  588  
 582  589  /*
 583  590   * Return the user-level PC.
 584  591   * If in a system call, return the address of the syscall trap.
 585  592   */
 586  593  greg_t
 587  594  getuserpc()
 588  595  {
 589  596          greg_t upc = lwptoregs(ttolwp(curthread))->r_pc;
 590  597          uint32_t insn;
 591  598  
 592  599          if (curthread->t_sysnum == 0)
 593  600                  return (upc);
 594  601  
 595  602          /*
 596  603           * We might've gotten here from sysenter (0xf 0x34),
 597  604           * syscall (0xf 0x5) or lcall (0x9a 0 0 0 0 0x27 0).
 598  605           *
 599  606           * Go peek at the binary to figure it out..
 600  607           */
 601  608          if (fuword32((void *)(upc - 2), &insn) != -1 &&
 602  609              (insn & 0xffff) == 0x340f || (insn & 0xffff) == 0x050f)
 603  610                  return (upc - 2);
 604  611          return (upc - 7);
 605  612  }
 606  613  
 607  614  /*
 608  615   * Protect segment registers from non-user privilege levels and GDT selectors
 609  616   * other than USER_CS, USER_DS and lwp FS and GS values.  If the segment
 610  617   * selector is non-null and not USER_CS/USER_DS, we make sure that the
 611  618   * TI bit is set to point into the LDT and that the RPL is set to 3.
 612  619   *
 613  620   * Since struct regs stores each 16-bit segment register as a 32-bit greg_t, we
 614  621   * also explicitly zero the top 16 bits since they may be coming from the
 615  622   * user's address space via setcontext(2) or /proc.
 616  623   *
 617  624   * Note about null selector. When running on the hypervisor if we allow a
 618  625   * process to set its %cs to null selector with RPL of 0 the hypervisor will
 619  626   * crash the domain. If running on bare metal we would get a #gp fault and
 620  627   * be able to kill the process and continue on. Therefore we make sure to
 621  628   * force RPL to SEL_UPL even for null selector when setting %cs.
  
    | 
      ↓ open down ↓ | 
    34 lines elided | 
    
      ↑ open up ↑ | 
  
 622  629   */
 623  630  
 624  631  #if defined(IS_CS) || defined(IS_NOT_CS)
 625  632  #error  "IS_CS and IS_NOT_CS already defined"
 626  633  #endif
 627  634  
 628  635  #define IS_CS           1
 629  636  #define IS_NOT_CS       0
 630  637  
 631  638  /*ARGSUSED*/
 632      -static greg_t
      639 +greg_t
 633  640  fix_segreg(greg_t sr, int iscs, model_t datamodel)
 634  641  {
      642 +        kthread_t *t = curthread;
      643 +
 635  644          switch (sr &= 0xffff) {
 636  645  
 637  646          case 0:
 638  647                  if (iscs == IS_CS)
 639  648                          return (0 | SEL_UPL);
 640  649                  else
 641  650                          return (0);
 642  651  
 643  652  #if defined(__amd64)
 644  653          /*
 645  654           * If lwp attempts to switch data model then force their
 646  655           * code selector to be null selector.
 647  656           */
 648  657          case U32CS_SEL:
 649  658                  if (datamodel == DATAMODEL_NATIVE)
 650  659                          return (0 | SEL_UPL);
 651  660                  else
 652  661                          return (sr);
 653  662  
 654  663          case UCS_SEL:
 655  664                  if (datamodel == DATAMODEL_ILP32)
 656  665                          return (0 | SEL_UPL);
 657  666  #elif defined(__i386)
 658  667          case UCS_SEL:
 659  668  #endif
  
    | 
      ↓ open down ↓ | 
    15 lines elided | 
    
      ↑ open up ↑ | 
  
 660  669          /*FALLTHROUGH*/
 661  670          case UDS_SEL:
 662  671          case LWPFS_SEL:
 663  672          case LWPGS_SEL:
 664  673          case SEL_UPL:
 665  674                  return (sr);
 666  675          default:
 667  676                  break;
 668  677          }
 669  678  
      679 +        /*
      680 +         * Allow this process's brand to do any necessary segment register
      681 +         * manipulation.
      682 +         */
      683 +        if (PROC_IS_BRANDED(t->t_procp) && BRMOP(t->t_procp)->b_fixsegreg) {
      684 +                greg_t bsr = BRMOP(t->t_procp)->b_fixsegreg(sr, datamodel);
      685 +
      686 +                if (bsr == 0 && iscs == IS_CS)
      687 +                        return (0 | SEL_UPL);
      688 +                else
      689 +                        return (bsr);
      690 +        }
      691 +
 670  692          /*
 671  693           * Force it into the LDT in ring 3 for 32-bit processes, which by
 672  694           * default do not have an LDT, so that any attempt to use an invalid
 673  695           * selector will reference the (non-existant) LDT, and cause a #gp
 674  696           * fault for the process.
 675  697           *
 676  698           * 64-bit processes get the null gdt selector since they
 677  699           * are not allowed to have a private LDT.
 678  700           */
 679  701  #if defined(__amd64)
 680  702          if (datamodel == DATAMODEL_ILP32) {
 681  703                  return (sr | SEL_TI_LDT | SEL_UPL);
 682  704          } else {
 683  705                  if (iscs == IS_CS)
 684  706                          return (0 | SEL_UPL);
 685  707                  else
 686  708                          return (0);
 687  709          }
 688  710  
 689  711  #elif defined(__i386)
 690  712          return (sr | SEL_TI_LDT | SEL_UPL);
 691  713  #endif
 692  714  }
 693  715  
 694  716  /*
 695  717   * Set general registers.
 696  718   */
 697  719  void
 698  720  setgregs(klwp_t *lwp, gregset_t grp)
 699  721  {
 700  722          struct regs *rp = lwptoregs(lwp);
 701  723          model_t datamodel = lwp_getdatamodel(lwp);
 702  724  
 703  725  #if defined(__amd64)
 704  726          struct pcb *pcb = &lwp->lwp_pcb;
 705  727          int thisthread = lwptot(lwp) == curthread;
 706  728  
 707  729          if (datamodel == DATAMODEL_NATIVE) {
 708  730  
 709  731                  if (thisthread)
 710  732                          (void) save_syscall_args();     /* copy the args */
 711  733  
 712  734                  rp->r_rdi = grp[REG_RDI];
 713  735                  rp->r_rsi = grp[REG_RSI];
 714  736                  rp->r_rdx = grp[REG_RDX];
 715  737                  rp->r_rcx = grp[REG_RCX];
 716  738                  rp->r_r8 = grp[REG_R8];
 717  739                  rp->r_r9 = grp[REG_R9];
 718  740                  rp->r_rax = grp[REG_RAX];
 719  741                  rp->r_rbx = grp[REG_RBX];
 720  742                  rp->r_rbp = grp[REG_RBP];
 721  743                  rp->r_r10 = grp[REG_R10];
 722  744                  rp->r_r11 = grp[REG_R11];
 723  745                  rp->r_r12 = grp[REG_R12];
 724  746                  rp->r_r13 = grp[REG_R13];
 725  747                  rp->r_r14 = grp[REG_R14];
 726  748                  rp->r_r15 = grp[REG_R15];
 727  749                  rp->r_trapno = grp[REG_TRAPNO];
 728  750                  rp->r_err = grp[REG_ERR];
 729  751                  rp->r_rip = grp[REG_RIP];
 730  752                  /*
 731  753                   * Setting %cs or %ss to anything else is quietly but
 732  754                   * quite definitely forbidden!
 733  755                   */
 734  756                  rp->r_cs = UCS_SEL;
 735  757                  rp->r_ss = UDS_SEL;
 736  758                  rp->r_rsp = grp[REG_RSP];
 737  759  
 738  760                  if (thisthread)
 739  761                          kpreempt_disable();
 740  762  
 741  763                  pcb->pcb_ds = UDS_SEL;
 742  764                  pcb->pcb_es = UDS_SEL;
 743  765  
 744  766                  /*
 745  767                   * 64-bit processes -are- allowed to set their fsbase/gsbase
 746  768                   * values directly, but only if they're using the segment
 747  769                   * selectors that allow that semantic.
 748  770                   *
 749  771                   * (32-bit processes must use lwp_set_private().)
 750  772                   */
 751  773                  pcb->pcb_fsbase = grp[REG_FSBASE];
 752  774                  pcb->pcb_gsbase = grp[REG_GSBASE];
 753  775                  pcb->pcb_fs = fix_segreg(grp[REG_FS], IS_NOT_CS, datamodel);
 754  776                  pcb->pcb_gs = fix_segreg(grp[REG_GS], IS_NOT_CS, datamodel);
 755  777  
 756  778                  /*
 757  779                   * Ensure that we go out via update_sregs
 758  780                   */
 759  781                  pcb->pcb_rupdate = 1;
 760  782                  lwptot(lwp)->t_post_sys = 1;
 761  783                  if (thisthread)
 762  784                          kpreempt_enable();
 763  785  #if defined(_SYSCALL32_IMPL)
 764  786          } else {
 765  787                  rp->r_rdi = (uint32_t)grp[REG_RDI];
 766  788                  rp->r_rsi = (uint32_t)grp[REG_RSI];
 767  789                  rp->r_rdx = (uint32_t)grp[REG_RDX];
 768  790                  rp->r_rcx = (uint32_t)grp[REG_RCX];
 769  791                  rp->r_rax = (uint32_t)grp[REG_RAX];
 770  792                  rp->r_rbx = (uint32_t)grp[REG_RBX];
 771  793                  rp->r_rbp = (uint32_t)grp[REG_RBP];
 772  794                  rp->r_trapno = (uint32_t)grp[REG_TRAPNO];
 773  795                  rp->r_err = (uint32_t)grp[REG_ERR];
 774  796                  rp->r_rip = (uint32_t)grp[REG_RIP];
 775  797  
 776  798                  rp->r_cs = fix_segreg(grp[REG_CS], IS_CS, datamodel);
 777  799                  rp->r_ss = fix_segreg(grp[REG_DS], IS_NOT_CS, datamodel);
 778  800  
 779  801                  rp->r_rsp = (uint32_t)grp[REG_RSP];
 780  802  
 781  803                  if (thisthread)
 782  804                          kpreempt_disable();
 783  805  
 784  806                  pcb->pcb_ds = fix_segreg(grp[REG_DS], IS_NOT_CS, datamodel);
 785  807                  pcb->pcb_es = fix_segreg(grp[REG_ES], IS_NOT_CS, datamodel);
 786  808  
 787  809                  /*
 788  810                   * (See fsbase/gsbase commentary above)
 789  811                   */
 790  812                  pcb->pcb_fs = fix_segreg(grp[REG_FS], IS_NOT_CS, datamodel);
 791  813                  pcb->pcb_gs = fix_segreg(grp[REG_GS], IS_NOT_CS, datamodel);
 792  814  
 793  815                  /*
 794  816                   * Ensure that we go out via update_sregs
 795  817                   */
 796  818                  pcb->pcb_rupdate = 1;
 797  819                  lwptot(lwp)->t_post_sys = 1;
 798  820                  if (thisthread)
 799  821                          kpreempt_enable();
 800  822  #endif
 801  823          }
 802  824  
 803  825          /*
 804  826           * Only certain bits of the flags register can be modified.
 805  827           */
 806  828          rp->r_rfl = (rp->r_rfl & ~PSL_USERMASK) |
 807  829              (grp[REG_RFL] & PSL_USERMASK);
 808  830  
 809  831  #elif defined(__i386)
 810  832  
 811  833          /*
 812  834           * Only certain bits of the flags register can be modified.
 813  835           */
 814  836          grp[EFL] = (rp->r_efl & ~PSL_USERMASK) | (grp[EFL] & PSL_USERMASK);
 815  837  
 816  838          /*
 817  839           * Copy saved registers from user stack.
 818  840           */
 819  841          bcopy(grp, &rp->r_gs, sizeof (gregset_t));
 820  842  
 821  843          rp->r_cs = fix_segreg(rp->r_cs, IS_CS, datamodel);
 822  844          rp->r_ss = fix_segreg(rp->r_ss, IS_NOT_CS, datamodel);
 823  845          rp->r_ds = fix_segreg(rp->r_ds, IS_NOT_CS, datamodel);
 824  846          rp->r_es = fix_segreg(rp->r_es, IS_NOT_CS, datamodel);
 825  847          rp->r_fs = fix_segreg(rp->r_fs, IS_NOT_CS, datamodel);
 826  848          rp->r_gs = fix_segreg(rp->r_gs, IS_NOT_CS, datamodel);
 827  849  
 828  850  #endif  /* __i386 */
 829  851  }
 830  852  
 831  853  /*
 832  854   * Determine whether eip is likely to have an interrupt frame
 833  855   * on the stack.  We do this by comparing the address to the
 834  856   * range of addresses spanned by several well-known routines.
 835  857   */
 836  858  extern void _interrupt();
 837  859  extern void _allsyscalls();
 838  860  extern void _cmntrap();
 839  861  extern void fakesoftint();
 840  862  
 841  863  extern size_t _interrupt_size;
 842  864  extern size_t _allsyscalls_size;
 843  865  extern size_t _cmntrap_size;
 844  866  extern size_t _fakesoftint_size;
 845  867  
 846  868  /*
 847  869   * Get a pc-only stacktrace.  Used for kmem_alloc() buffer ownership tracking.
 848  870   * Returns MIN(current stack depth, pcstack_limit).
 849  871   */
 850  872  int
 851  873  getpcstack(pc_t *pcstack, int pcstack_limit)
 852  874  {
 853  875          struct frame *fp = (struct frame *)getfp();
 854  876          struct frame *nextfp, *minfp, *stacktop;
 855  877          int depth = 0;
 856  878          int on_intr;
 857  879          uintptr_t pc;
 858  880  
 859  881          if ((on_intr = CPU_ON_INTR(CPU)) != 0)
 860  882                  stacktop = (struct frame *)(CPU->cpu_intr_stack + SA(MINFRAME));
 861  883          else
 862  884                  stacktop = (struct frame *)curthread->t_stk;
 863  885          minfp = fp;
 864  886  
 865  887          pc = ((struct regs *)fp)->r_pc;
 866  888  
 867  889          while (depth < pcstack_limit) {
 868  890                  nextfp = (struct frame *)fp->fr_savfp;
 869  891                  pc = fp->fr_savpc;
 870  892                  if (nextfp <= minfp || nextfp >= stacktop) {
 871  893                          if (on_intr) {
 872  894                                  /*
 873  895                                   * Hop from interrupt stack to thread stack.
 874  896                                   */
 875  897                                  stacktop = (struct frame *)curthread->t_stk;
 876  898                                  minfp = (struct frame *)curthread->t_stkbase;
 877  899                                  on_intr = 0;
 878  900                                  continue;
 879  901                          }
 880  902                          break;
 881  903                  }
 882  904                  pcstack[depth++] = (pc_t)pc;
 883  905                  fp = nextfp;
 884  906                  minfp = fp;
 885  907          }
 886  908          return (depth);
 887  909  }
 888  910  
 889  911  /*
 890  912   * The following ELF header fields are defined as processor-specific
 891  913   * in the V8 ABI:
 892  914   *
 893  915   *      e_ident[EI_DATA]        encoding of the processor-specific
 894  916   *                              data in the object file
 895  917   *      e_machine               processor identification
 896  918   *      e_flags                 processor-specific flags associated
 897  919   *                              with the file
 898  920   */
 899  921  
 900  922  /*
 901  923   * The value of at_flags reflects a platform's cpu module support.
 902  924   * at_flags is used to check for allowing a binary to execute and
 903  925   * is passed as the value of the AT_FLAGS auxiliary vector.
 904  926   */
 905  927  int at_flags = 0;
 906  928  
 907  929  /*
 908  930   * Check the processor-specific fields of an ELF header.
 909  931   *
 910  932   * returns 1 if the fields are valid, 0 otherwise
 911  933   */
 912  934  /*ARGSUSED2*/
 913  935  int
 914  936  elfheadcheck(
 915  937          unsigned char e_data,
 916  938          Elf32_Half e_machine,
 917  939          Elf32_Word e_flags)
 918  940  {
 919  941          if (e_data != ELFDATA2LSB)
 920  942                  return (0);
 921  943  #if defined(__amd64)
 922  944          if (e_machine == EM_AMD64)
 923  945                  return (1);
 924  946  #endif
 925  947          return (e_machine == EM_386);
 926  948  }
 927  949  
 928  950  uint_t auxv_hwcap_include = 0;  /* patch to enable unrecognized features */
 929  951  uint_t auxv_hwcap_include_2 = 0;        /* second word */
 930  952  uint_t auxv_hwcap_exclude = 0;  /* patch for broken cpus, debugging */
 931  953  uint_t auxv_hwcap_exclude_2 = 0;        /* second word */
 932  954  #if defined(_SYSCALL32_IMPL)
 933  955  uint_t auxv_hwcap32_include = 0;        /* ditto for 32-bit apps */
 934  956  uint_t auxv_hwcap32_include_2 = 0;      /* ditto for 32-bit apps */
 935  957  uint_t auxv_hwcap32_exclude = 0;        /* ditto for 32-bit apps */
 936  958  uint_t auxv_hwcap32_exclude_2 = 0;      /* ditto for 32-bit apps */
 937  959  #endif
 938  960  
 939  961  /*
 940  962   * Gather information about the processor and place it into auxv_hwcap
 941  963   * so that it can be exported to the linker via the aux vector.
 942  964   *
 943  965   * We use this seemingly complicated mechanism so that we can ensure
 944  966   * that /etc/system can be used to override what the system can or
 945  967   * cannot discover for itself.
 946  968   */
 947  969  void
 948  970  bind_hwcap(void)
 949  971  {
 950  972          uint_t cpu_hwcap_flags[2];
 951  973          cpuid_pass4(NULL, cpu_hwcap_flags);
 952  974  
 953  975          auxv_hwcap = (auxv_hwcap_include | cpu_hwcap_flags[0]) &
 954  976              ~auxv_hwcap_exclude;
 955  977          auxv_hwcap_2 = (auxv_hwcap_include_2 | cpu_hwcap_flags[1]) &
 956  978              ~auxv_hwcap_exclude_2;
 957  979  
 958  980  #if defined(__amd64)
 959  981          /*
 960  982           * On AMD processors, sysenter just doesn't work at all
 961  983           * when the kernel is in long mode.  On IA-32e processors
 962  984           * it does, but there's no real point in all the alternate
 963  985           * mechanism when syscall works on both.
 964  986           *
 965  987           * Besides, the kernel's sysenter handler is expecting a
 966  988           * 32-bit lwp ...
 967  989           */
 968  990          auxv_hwcap &= ~AV_386_SEP;
 969  991  #else
 970  992          /*
 971  993           * 32-bit processes can -always- use the lahf/sahf instructions
 972  994           */
 973  995          auxv_hwcap |= AV_386_AHF;
 974  996  #endif
 975  997  
 976  998          if (auxv_hwcap_include || auxv_hwcap_exclude || auxv_hwcap_include_2 ||
 977  999              auxv_hwcap_exclude_2) {
 978 1000                  /*
 979 1001                   * The below assignment is regrettably required to get lint
 980 1002                   * to accept the validity of our format string.  The format
 981 1003                   * string is in fact valid, but whatever intelligence in lint
 982 1004                   * understands the cmn_err()-specific %b appears to have an
 983 1005                   * off-by-one error:  it (mistakenly) complains about bit
 984 1006                   * number 32 (even though this is explicitly permitted).
 985 1007                   * Normally, one would will away such warnings with a "LINTED"
 986 1008                   * directive, but for reasons unclear and unknown, lint
 987 1009                   * refuses to be assuaged in this case.  Fortunately, lint
 988 1010                   * doesn't pretend to have solved the Halting Problem --
 989 1011                   * and as soon as the format string is programmatic, it
 990 1012                   * knows enough to shut up.
 991 1013                   */
 992 1014                  char *fmt = "?user ABI extensions: %b\n";
 993 1015                  cmn_err(CE_CONT, fmt, auxv_hwcap, FMT_AV_386);
 994 1016                  fmt = "?user ABI extensions (word 2): %b\n";
 995 1017                  cmn_err(CE_CONT, fmt, auxv_hwcap_2, FMT_AV_386_2);
 996 1018          }
 997 1019  
 998 1020  #if defined(_SYSCALL32_IMPL)
 999 1021          auxv_hwcap32 = (auxv_hwcap32_include | cpu_hwcap_flags[0]) &
1000 1022              ~auxv_hwcap32_exclude;
1001 1023          auxv_hwcap32_2 = (auxv_hwcap32_include_2 | cpu_hwcap_flags[1]) &
1002 1024              ~auxv_hwcap32_exclude_2;
1003 1025  
1004 1026  #if defined(__amd64)
1005 1027          /*
1006 1028           * If this is an amd64 architecture machine from Intel, then
1007 1029           * syscall -doesn't- work in compatibility mode, only sysenter does.
1008 1030           *
1009 1031           * Sigh.
1010 1032           */
1011 1033          if (!cpuid_syscall32_insn(NULL))
1012 1034                  auxv_hwcap32 &= ~AV_386_AMD_SYSC;
1013 1035  
1014 1036          /*
1015 1037           * 32-bit processes can -always- use the lahf/sahf instructions
1016 1038           */
1017 1039          auxv_hwcap32 |= AV_386_AHF;
1018 1040  #endif
1019 1041  
1020 1042          if (auxv_hwcap32_include || auxv_hwcap32_exclude ||
1021 1043              auxv_hwcap32_include_2 || auxv_hwcap32_exclude_2) {
1022 1044                  /*
1023 1045                   * See the block comment in the cmn_err() of auxv_hwcap, above.
1024 1046                   */
1025 1047                  char *fmt = "?32-bit user ABI extensions: %b\n";
1026 1048                  cmn_err(CE_CONT, fmt, auxv_hwcap32, FMT_AV_386);
1027 1049                  fmt = "?32-bit user ABI extensions (word 2): %b\n";
1028 1050                  cmn_err(CE_CONT, fmt, auxv_hwcap32_2, FMT_AV_386_2);
1029 1051          }
1030 1052  #endif
1031 1053  }
1032 1054  
1033 1055  /*
1034 1056   *      sync_icache() - this is called
1035 1057   *      in proc/fs/prusrio.c. x86 has an unified cache and therefore
1036 1058   *      this is a nop.
1037 1059   */
1038 1060  /* ARGSUSED */
1039 1061  void
1040 1062  sync_icache(caddr_t addr, uint_t len)
1041 1063  {
1042 1064          /* Do nothing for now */
1043 1065  }
1044 1066  
1045 1067  /*ARGSUSED*/
1046 1068  void
1047 1069  sync_data_memory(caddr_t va, size_t len)
1048 1070  {
1049 1071          /* Not implemented for this platform */
1050 1072  }
1051 1073  
1052 1074  int
1053 1075  __ipltospl(int ipl)
1054 1076  {
1055 1077          return (ipltospl(ipl));
1056 1078  }
1057 1079  
1058 1080  /*
1059 1081   * The panic code invokes panic_saveregs() to record the contents of a
1060 1082   * regs structure into the specified panic_data structure for debuggers.
1061 1083   */
1062 1084  void
1063 1085  panic_saveregs(panic_data_t *pdp, struct regs *rp)
1064 1086  {
1065 1087          panic_nv_t *pnv = PANICNVGET(pdp);
1066 1088  
1067 1089          struct cregs    creg;
1068 1090  
1069 1091          getcregs(&creg);
1070 1092  
1071 1093  #if defined(__amd64)
1072 1094          PANICNVADD(pnv, "rdi", rp->r_rdi);
1073 1095          PANICNVADD(pnv, "rsi", rp->r_rsi);
1074 1096          PANICNVADD(pnv, "rdx", rp->r_rdx);
1075 1097          PANICNVADD(pnv, "rcx", rp->r_rcx);
1076 1098          PANICNVADD(pnv, "r8", rp->r_r8);
1077 1099          PANICNVADD(pnv, "r9", rp->r_r9);
1078 1100          PANICNVADD(pnv, "rax", rp->r_rax);
1079 1101          PANICNVADD(pnv, "rbx", rp->r_rbx);
1080 1102          PANICNVADD(pnv, "rbp", rp->r_rbp);
1081 1103          PANICNVADD(pnv, "r10", rp->r_r10);
1082 1104          PANICNVADD(pnv, "r11", rp->r_r11);
1083 1105          PANICNVADD(pnv, "r12", rp->r_r12);
1084 1106          PANICNVADD(pnv, "r13", rp->r_r13);
1085 1107          PANICNVADD(pnv, "r14", rp->r_r14);
1086 1108          PANICNVADD(pnv, "r15", rp->r_r15);
1087 1109          PANICNVADD(pnv, "fsbase", rdmsr(MSR_AMD_FSBASE));
1088 1110          PANICNVADD(pnv, "gsbase", rdmsr(MSR_AMD_GSBASE));
1089 1111          PANICNVADD(pnv, "ds", rp->r_ds);
1090 1112          PANICNVADD(pnv, "es", rp->r_es);
1091 1113          PANICNVADD(pnv, "fs", rp->r_fs);
1092 1114          PANICNVADD(pnv, "gs", rp->r_gs);
1093 1115          PANICNVADD(pnv, "trapno", rp->r_trapno);
1094 1116          PANICNVADD(pnv, "err", rp->r_err);
1095 1117          PANICNVADD(pnv, "rip", rp->r_rip);
1096 1118          PANICNVADD(pnv, "cs", rp->r_cs);
1097 1119          PANICNVADD(pnv, "rflags", rp->r_rfl);
1098 1120          PANICNVADD(pnv, "rsp", rp->r_rsp);
1099 1121          PANICNVADD(pnv, "ss", rp->r_ss);
1100 1122          PANICNVADD(pnv, "gdt_hi", (uint64_t)(creg.cr_gdt._l[3]));
1101 1123          PANICNVADD(pnv, "gdt_lo", (uint64_t)(creg.cr_gdt._l[0]));
1102 1124          PANICNVADD(pnv, "idt_hi", (uint64_t)(creg.cr_idt._l[3]));
1103 1125          PANICNVADD(pnv, "idt_lo", (uint64_t)(creg.cr_idt._l[0]));
1104 1126  #elif defined(__i386)
1105 1127          PANICNVADD(pnv, "gs", (uint32_t)rp->r_gs);
1106 1128          PANICNVADD(pnv, "fs", (uint32_t)rp->r_fs);
1107 1129          PANICNVADD(pnv, "es", (uint32_t)rp->r_es);
1108 1130          PANICNVADD(pnv, "ds", (uint32_t)rp->r_ds);
1109 1131          PANICNVADD(pnv, "edi", (uint32_t)rp->r_edi);
1110 1132          PANICNVADD(pnv, "esi", (uint32_t)rp->r_esi);
1111 1133          PANICNVADD(pnv, "ebp", (uint32_t)rp->r_ebp);
1112 1134          PANICNVADD(pnv, "esp", (uint32_t)rp->r_esp);
1113 1135          PANICNVADD(pnv, "ebx", (uint32_t)rp->r_ebx);
1114 1136          PANICNVADD(pnv, "edx", (uint32_t)rp->r_edx);
1115 1137          PANICNVADD(pnv, "ecx", (uint32_t)rp->r_ecx);
1116 1138          PANICNVADD(pnv, "eax", (uint32_t)rp->r_eax);
1117 1139          PANICNVADD(pnv, "trapno", (uint32_t)rp->r_trapno);
1118 1140          PANICNVADD(pnv, "err", (uint32_t)rp->r_err);
1119 1141          PANICNVADD(pnv, "eip", (uint32_t)rp->r_eip);
1120 1142          PANICNVADD(pnv, "cs", (uint32_t)rp->r_cs);
1121 1143          PANICNVADD(pnv, "eflags", (uint32_t)rp->r_efl);
1122 1144          PANICNVADD(pnv, "uesp", (uint32_t)rp->r_uesp);
1123 1145          PANICNVADD(pnv, "ss", (uint32_t)rp->r_ss);
1124 1146          PANICNVADD(pnv, "gdt", creg.cr_gdt);
1125 1147          PANICNVADD(pnv, "idt", creg.cr_idt);
1126 1148  #endif  /* __i386 */
1127 1149  
1128 1150          PANICNVADD(pnv, "ldt", creg.cr_ldt);
1129 1151          PANICNVADD(pnv, "task", creg.cr_task);
1130 1152          PANICNVADD(pnv, "cr0", creg.cr_cr0);
1131 1153          PANICNVADD(pnv, "cr2", creg.cr_cr2);
1132 1154          PANICNVADD(pnv, "cr3", creg.cr_cr3);
1133 1155          if (creg.cr_cr4)
1134 1156                  PANICNVADD(pnv, "cr4", creg.cr_cr4);
1135 1157  
1136 1158          PANICNVSET(pdp, pnv);
1137 1159  }
1138 1160  
1139 1161  #define TR_ARG_MAX 6    /* Max args to print, same as SPARC */
1140 1162  
1141 1163  #if !defined(__amd64)
1142 1164  
1143 1165  /*
1144 1166   * Given a return address (%eip), determine the likely number of arguments
1145 1167   * that were pushed on the stack prior to its execution.  We do this by
1146 1168   * expecting that a typical call sequence consists of pushing arguments on
1147 1169   * the stack, executing a call instruction, and then performing an add
1148 1170   * on %esp to restore it to the value prior to pushing the arguments for
1149 1171   * the call.  We attempt to detect such an add, and divide the addend
1150 1172   * by the size of a word to determine the number of pushed arguments.
1151 1173   *
1152 1174   * If we do not find such an add, we punt and return TR_ARG_MAX. It is not
1153 1175   * possible to reliably determine if a function took no arguments (i.e. was
1154 1176   * void) because assembler routines do not reliably perform an add on %esp
1155 1177   * immediately upon returning (eg. _sys_call()), so returning TR_ARG_MAX is
1156 1178   * safer than returning 0.
1157 1179   */
1158 1180  static ulong_t
1159 1181  argcount(uintptr_t eip)
1160 1182  {
1161 1183          const uint8_t *ins = (const uint8_t *)eip;
1162 1184          ulong_t n;
1163 1185  
1164 1186          enum {
1165 1187                  M_MODRM_ESP = 0xc4,     /* Mod/RM byte indicates %esp */
1166 1188                  M_ADD_IMM32 = 0x81,     /* ADD imm32 to r/m32 */
1167 1189                  M_ADD_IMM8  = 0x83      /* ADD imm8 to r/m32 */
1168 1190          };
1169 1191  
1170 1192          if (eip < KERNELBASE || ins[1] != M_MODRM_ESP)
1171 1193                  return (TR_ARG_MAX);
1172 1194  
1173 1195          switch (ins[0]) {
1174 1196          case M_ADD_IMM32:
1175 1197                  n = ins[2] + (ins[3] << 8) + (ins[4] << 16) + (ins[5] << 24);
1176 1198                  break;
1177 1199  
1178 1200          case M_ADD_IMM8:
1179 1201                  n = ins[2];
1180 1202                  break;
1181 1203  
1182 1204          default:
1183 1205                  return (TR_ARG_MAX);
1184 1206          }
1185 1207  
1186 1208          n /= sizeof (long);
1187 1209          return (MIN(n, TR_ARG_MAX));
1188 1210  }
1189 1211  
1190 1212  #endif  /* !__amd64 */
1191 1213  
1192 1214  /*
1193 1215   * Print a stack backtrace using the specified frame pointer.  We delay two
1194 1216   * seconds before continuing, unless this is the panic traceback.
1195 1217   * If we are in the process of panicking, we also attempt to write the
1196 1218   * stack backtrace to a staticly assigned buffer, to allow the panic
1197 1219   * code to find it and write it in to uncompressed pages within the
1198 1220   * system crash dump.
1199 1221   * Note that the frame for the starting stack pointer value is omitted because
1200 1222   * the corresponding %eip is not known.
1201 1223   */
1202 1224  
1203 1225  extern char *dump_stack_scratch;
1204 1226  
1205 1227  #if defined(__amd64)
1206 1228  
1207 1229  void
1208 1230  traceback(caddr_t fpreg)
1209 1231  {
1210 1232          struct frame    *fp = (struct frame *)fpreg;
1211 1233          struct frame    *nextfp;
1212 1234          uintptr_t       pc, nextpc;
1213 1235          ulong_t         off;
1214 1236          char            args[TR_ARG_MAX * 2 + 16], *sym;
1215 1237          uint_t    offset = 0;
1216 1238          uint_t    next_offset = 0;
1217 1239          char        stack_buffer[1024];
1218 1240  
1219 1241          if (!panicstr)
1220 1242                  printf("traceback: %%fp = %p\n", (void *)fp);
1221 1243  
1222 1244          if (panicstr && !dump_stack_scratch) {
1223 1245                  printf("Warning - stack not written to the dump buffer\n");
1224 1246          }
1225 1247  
1226 1248          fp = (struct frame *)plat_traceback(fpreg);
1227 1249          if ((uintptr_t)fp < KERNELBASE)
1228 1250                  goto out;
1229 1251  
1230 1252          pc = fp->fr_savpc;
1231 1253          fp = (struct frame *)fp->fr_savfp;
1232 1254  
1233 1255          while ((uintptr_t)fp >= KERNELBASE) {
1234 1256                  /*
1235 1257                   * XX64 Until port is complete tolerate 8-byte aligned
1236 1258                   * frame pointers but flag with a warning so they can
1237 1259                   * be fixed.
1238 1260                   */
1239 1261                  if (((uintptr_t)fp & (STACK_ALIGN - 1)) != 0) {
1240 1262                          if (((uintptr_t)fp & (8 - 1)) == 0) {
1241 1263                                  printf("  >> warning! 8-byte"
1242 1264                                      " aligned %%fp = %p\n", (void *)fp);
1243 1265                          } else {
1244 1266                                  printf(
1245 1267                                      "  >> mis-aligned %%fp = %p\n", (void *)fp);
1246 1268                                  break;
1247 1269                          }
1248 1270                  }
1249 1271  
1250 1272                  args[0] = '\0';
1251 1273                  nextpc = (uintptr_t)fp->fr_savpc;
1252 1274                  nextfp = (struct frame *)fp->fr_savfp;
1253 1275                  if ((sym = kobj_getsymname(pc, &off)) != NULL) {
1254 1276                          printf("%016lx %s:%s+%lx (%s)\n", (uintptr_t)fp,
1255 1277                              mod_containing_pc((caddr_t)pc), sym, off, args);
1256 1278                          (void) snprintf(stack_buffer, sizeof (stack_buffer),
1257 1279                              "%s:%s+%lx (%s) | ",
1258 1280                              mod_containing_pc((caddr_t)pc), sym, off, args);
1259 1281                  } else {
1260 1282                          printf("%016lx %lx (%s)\n",
1261 1283                              (uintptr_t)fp, pc, args);
1262 1284                          (void) snprintf(stack_buffer, sizeof (stack_buffer),
1263 1285                              "%lx (%s) | ", pc, args);
1264 1286                  }
1265 1287  
1266 1288                  if (panicstr && dump_stack_scratch) {
1267 1289                          next_offset = offset + strlen(stack_buffer);
1268 1290                          if (next_offset < STACK_BUF_SIZE) {
1269 1291                                  bcopy(stack_buffer, dump_stack_scratch + offset,
1270 1292                                      strlen(stack_buffer));
1271 1293                                  offset = next_offset;
1272 1294                          } else {
1273 1295                                  /*
1274 1296                                   * In attempting to save the panic stack
1275 1297                                   * to the dumpbuf we have overflowed that area.
1276 1298                                   * Print a warning and continue to printf the
1277 1299                                   * stack to the msgbuf
1278 1300                                   */
1279 1301                                  printf("Warning: stack in the dump buffer"
1280 1302                                      " may be incomplete\n");
1281 1303                                  offset = next_offset;
1282 1304                          }
1283 1305                  }
1284 1306  
1285 1307                  pc = nextpc;
1286 1308                  fp = nextfp;
1287 1309          }
1288 1310  out:
1289 1311          if (!panicstr) {
1290 1312                  printf("end of traceback\n");
1291 1313                  DELAY(2 * MICROSEC);
1292 1314          } else if (dump_stack_scratch) {
1293 1315                  dump_stack_scratch[offset] = '\0';
1294 1316          }
1295 1317  }
1296 1318  
1297 1319  #elif defined(__i386)
1298 1320  
1299 1321  void
1300 1322  traceback(caddr_t fpreg)
1301 1323  {
1302 1324          struct frame *fp = (struct frame *)fpreg;
1303 1325          struct frame *nextfp, *minfp, *stacktop;
1304 1326          uintptr_t pc, nextpc;
1305 1327          uint_t    offset = 0;
1306 1328          uint_t    next_offset = 0;
1307 1329          char        stack_buffer[1024];
1308 1330  
1309 1331          cpu_t *cpu;
1310 1332  
1311 1333          /*
1312 1334           * args[] holds TR_ARG_MAX hex long args, plus ", " or '\0'.
1313 1335           */
1314 1336          char args[TR_ARG_MAX * 2 + 8], *p;
1315 1337  
1316 1338          int on_intr;
1317 1339          ulong_t off;
1318 1340          char *sym;
1319 1341  
1320 1342          if (!panicstr)
1321 1343                  printf("traceback: %%fp = %p\n", (void *)fp);
1322 1344  
1323 1345          if (panicstr && !dump_stack_scratch) {
1324 1346                  printf("Warning - stack not written to the dumpbuf\n");
1325 1347          }
1326 1348  
1327 1349          /*
1328 1350           * If we are panicking, all high-level interrupt information in
1329 1351           * CPU was overwritten.  panic_cpu has the correct values.
1330 1352           */
1331 1353          kpreempt_disable();                     /* prevent migration */
1332 1354  
1333 1355          cpu = (panicstr && CPU->cpu_id == panic_cpu.cpu_id)? &panic_cpu : CPU;
1334 1356  
1335 1357          if ((on_intr = CPU_ON_INTR(cpu)) != 0)
1336 1358                  stacktop = (struct frame *)(cpu->cpu_intr_stack + SA(MINFRAME));
1337 1359          else
1338 1360                  stacktop = (struct frame *)curthread->t_stk;
1339 1361  
1340 1362          kpreempt_enable();
1341 1363  
1342 1364          fp = (struct frame *)plat_traceback(fpreg);
1343 1365          if ((uintptr_t)fp < KERNELBASE)
1344 1366                  goto out;
1345 1367  
1346 1368          minfp = fp;     /* Baseline minimum frame pointer */
1347 1369          pc = fp->fr_savpc;
1348 1370          fp = (struct frame *)fp->fr_savfp;
1349 1371  
1350 1372          while ((uintptr_t)fp >= KERNELBASE) {
1351 1373                  ulong_t argc;
1352 1374                  long *argv;
1353 1375  
1354 1376                  if (fp <= minfp || fp >= stacktop) {
1355 1377                          if (on_intr) {
1356 1378                                  /*
1357 1379                                   * Hop from interrupt stack to thread stack.
1358 1380                                   */
1359 1381                                  stacktop = (struct frame *)curthread->t_stk;
1360 1382                                  minfp = (struct frame *)curthread->t_stkbase;
1361 1383                                  on_intr = 0;
1362 1384                                  continue;
1363 1385                          }
1364 1386                          break; /* we're outside of the expected range */
1365 1387                  }
1366 1388  
1367 1389                  if ((uintptr_t)fp & (STACK_ALIGN - 1)) {
1368 1390                          printf("  >> mis-aligned %%fp = %p\n", (void *)fp);
1369 1391                          break;
1370 1392                  }
1371 1393  
1372 1394                  nextpc = fp->fr_savpc;
1373 1395                  nextfp = (struct frame *)fp->fr_savfp;
1374 1396                  argc = argcount(nextpc);
1375 1397                  argv = (long *)((char *)fp + sizeof (struct frame));
1376 1398  
1377 1399                  args[0] = '\0';
1378 1400                  p = args;
1379 1401                  while (argc-- > 0 && argv < (long *)stacktop) {
1380 1402                          p += snprintf(p, args + sizeof (args) - p,
1381 1403                              "%s%lx", (p == args) ? "" : ", ", *argv++);
1382 1404                  }
1383 1405  
1384 1406                  if ((sym = kobj_getsymname(pc, &off)) != NULL) {
1385 1407                          printf("%08lx %s:%s+%lx (%s)\n", (uintptr_t)fp,
1386 1408                              mod_containing_pc((caddr_t)pc), sym, off, args);
1387 1409                          (void) snprintf(stack_buffer, sizeof (stack_buffer),
1388 1410                              "%s:%s+%lx (%s) | ",
1389 1411                              mod_containing_pc((caddr_t)pc), sym, off, args);
1390 1412  
1391 1413                  } else {
1392 1414                          printf("%08lx %lx (%s)\n",
1393 1415                              (uintptr_t)fp, pc, args);
1394 1416                          (void) snprintf(stack_buffer, sizeof (stack_buffer),
1395 1417                              "%lx (%s) | ", pc, args);
1396 1418  
1397 1419                  }
1398 1420  
1399 1421                  if (panicstr && dump_stack_scratch) {
1400 1422                          next_offset = offset + strlen(stack_buffer);
1401 1423                          if (next_offset < STACK_BUF_SIZE) {
1402 1424                                  bcopy(stack_buffer, dump_stack_scratch + offset,
1403 1425                                      strlen(stack_buffer));
1404 1426                                  offset = next_offset;
1405 1427                          } else {
1406 1428                                  /*
1407 1429                                   * In attempting to save the panic stack
1408 1430                                   * to the dumpbuf we have overflowed that area.
1409 1431                                   * Print a warning and continue to printf the
1410 1432                                   * stack to the msgbuf
1411 1433                                   */
1412 1434                                  printf("Warning: stack in the dumpbuf"
1413 1435                                      " may be incomplete\n");
1414 1436                                  offset = next_offset;
1415 1437                          }
1416 1438                  }
1417 1439  
1418 1440                  minfp = fp;
1419 1441                  pc = nextpc;
1420 1442                  fp = nextfp;
1421 1443          }
1422 1444  out:
1423 1445          if (!panicstr) {
1424 1446                  printf("end of traceback\n");
1425 1447                  DELAY(2 * MICROSEC);
1426 1448          } else if (dump_stack_scratch) {
1427 1449                  dump_stack_scratch[offset] = '\0';
1428 1450          }
1429 1451  
1430 1452  }
1431 1453  
1432 1454  #endif  /* __i386 */
1433 1455  
1434 1456  /*
1435 1457   * Generate a stack backtrace from a saved register set.
1436 1458   */
1437 1459  void
1438 1460  traceregs(struct regs *rp)
1439 1461  {
1440 1462          traceback((caddr_t)rp->r_fp);
1441 1463  }
1442 1464  
1443 1465  void
1444 1466  exec_set_sp(size_t stksize)
1445 1467  {
1446 1468          klwp_t *lwp = ttolwp(curthread);
1447 1469  
1448 1470          lwptoregs(lwp)->r_sp = (uintptr_t)curproc->p_usrstack - stksize;
1449 1471  }
1450 1472  
1451 1473  hrtime_t
1452 1474  gethrtime_waitfree(void)
1453 1475  {
1454 1476          return (dtrace_gethrtime());
1455 1477  }
1456 1478  
1457 1479  hrtime_t
1458 1480  gethrtime(void)
1459 1481  {
1460 1482          return (gethrtimef());
1461 1483  }
1462 1484  
1463 1485  hrtime_t
1464 1486  gethrtime_unscaled(void)
1465 1487  {
1466 1488          return (gethrtimeunscaledf());
1467 1489  }
1468 1490  
1469 1491  void
1470 1492  scalehrtime(hrtime_t *hrt)
1471 1493  {
1472 1494          scalehrtimef(hrt);
1473 1495  }
1474 1496  
1475 1497  uint64_t
1476 1498  unscalehrtime(hrtime_t nsecs)
1477 1499  {
1478 1500          return (unscalehrtimef(nsecs));
1479 1501  }
1480 1502  
1481 1503  void
1482 1504  gethrestime(timespec_t *tp)
1483 1505  {
1484 1506          gethrestimef(tp);
1485 1507  }
1486 1508  
1487 1509  #if defined(__amd64)
1488 1510  /*
1489 1511   * Part of the implementation of hres_tick(); this routine is
1490 1512   * easier in C than assembler .. called with the hres_lock held.
1491 1513   *
1492 1514   * XX64 Many of these timekeeping variables need to be extern'ed in a header
1493 1515   */
1494 1516  
1495 1517  #include <sys/time.h>
1496 1518  #include <sys/machlock.h>
1497 1519  
1498 1520  extern int one_sec;
1499 1521  extern int max_hres_adj;
1500 1522  
1501 1523  void
1502 1524  __adj_hrestime(void)
1503 1525  {
1504 1526          long long adj;
1505 1527  
1506 1528          if (hrestime_adj == 0)
1507 1529                  adj = 0;
1508 1530          else if (hrestime_adj > 0) {
1509 1531                  if (hrestime_adj < max_hres_adj)
1510 1532                          adj = hrestime_adj;
1511 1533                  else
1512 1534                          adj = max_hres_adj;
1513 1535          } else {
1514 1536                  if (hrestime_adj < -max_hres_adj)
1515 1537                          adj = -max_hres_adj;
1516 1538                  else
1517 1539                          adj = hrestime_adj;
1518 1540          }
1519 1541  
1520 1542          timedelta -= adj;
1521 1543          hrestime_adj = timedelta;
1522 1544          hrestime.tv_nsec += adj;
1523 1545  
1524 1546          while (hrestime.tv_nsec >= NANOSEC) {
1525 1547                  one_sec++;
1526 1548                  hrestime.tv_sec++;
1527 1549                  hrestime.tv_nsec -= NANOSEC;
1528 1550          }
1529 1551  }
1530 1552  #endif
1531 1553  
1532 1554  /*
1533 1555   * Wrapper functions to maintain backwards compability
1534 1556   */
1535 1557  int
1536 1558  xcopyin(const void *uaddr, void *kaddr, size_t count)
1537 1559  {
1538 1560          return (xcopyin_nta(uaddr, kaddr, count, UIO_COPY_CACHED));
1539 1561  }
1540 1562  
1541 1563  int
1542 1564  xcopyout(const void *kaddr, void *uaddr, size_t count)
1543 1565  {
1544 1566          return (xcopyout_nta(kaddr, uaddr, count, UIO_COPY_CACHED));
1545 1567  }
  
    | 
      ↓ open down ↓ | 
    866 lines elided | 
    
      ↑ open up ↑ | 
  
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX