Diff for /embedaddon/sudo/plugins/sudoers/check.h between versions 1.1 and 1.1.1.2

version 1.1, 2013/07/22 00:51:38 version 1.1.1.2, 2014/06/15 16:12:54
Line 1 Line 1
 /*  /*
 * Copyright (c) 1993-1996,1998-2005, 2007-2013 * Copyright (c) 1993-1996,1998-2005, 2007-2014
  *      Todd C. Miller <Todd.Miller@courtesan.com>   *      Todd C. Miller <Todd.Miller@courtesan.com>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 29 Line 29
 #define TS_NOFILE               3  #define TS_NOFILE               3
 #define TS_ERROR                4  #define TS_ERROR                4
   
 /* This may be a function in some implementations. */  
 #define already_lectured(s)     (s != TS_MISSING && s != TS_ERROR)  
   
 /*  /*
 * Info stored in tty ticket from stat(2) to help with tty matching. * Time stamps are now stored in a single file which contains multiple
  * records.  Each record starts with a 16-bit version number and a 16-bit
  * record size.  Multiple record types can coexist in the same file.
  */   */
struct sudo_tty_info {#define TS_VERSION              1
    dev_t dev;                  /* ID of device tty resides on */
    dev_t rdev;                 /* tty device ID *//* Time stamp entry types */
    ino_t ino;                  /* tty inode number */#define TS_GLOBAL               0x01
    uid_t uid;                  /* tty owner */#define TS_TTY                  0x02
    gid_t gid;                  /* tty group */#define TS_PPID                 0x03
    pid_t sid;                  /* ID of session with controlling tty */
 /* Time stamp flags */
 #define TS_DISABLED             0x01        /* entry disabled */
 #define TS_ANYUID               0x02    /* ignore uid, only valid in the key */
 
 /* XXX - may also want to store uid/gid of tty device */
 struct timestamp_entry {
     unsigned short version;        /* version number */
     unsigned short size;     /* entry size */
     unsigned short type;        /* TS_GLOBAL, TS_TTY, TS_PPID */
     unsigned short flags;       /* TS_DISABLED, TS_ANYUID */
     uid_t auth_uid;            /* uid to authenticate as */
     pid_t sid;                  /* session ID associated with tty/ppid */
     struct timespec ts;         /* timestamp (CLOCK_MONOTONIC) */
     union {
         dev_t ttydev;           /* tty device number */
         pid_t ppid;             /* parent pid */
     } u;
 };  };
   
   bool  already_lectured(int status);
 bool  update_timestamp(struct passwd *pw);  bool  update_timestamp(struct passwd *pw);
 int   build_timestamp(struct passwd *pw);  int   build_timestamp(struct passwd *pw);
 int   timestamp_status(struct passwd *pw);  int   timestamp_status(struct passwd *pw);

Removed from v.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>