[BACK]Return to sudo.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/sudo.h between version 1.17 and 1.18

version 1.17, 2004/11/29 17:29:05 version 1.18, 2007/07/26 16:10:16
Line 1 
Line 1 
 /*  /*
  * Copyright (c) 1993-1996,1998-2004 Todd C. Miller <Todd.Miller@courtesan.com>   * Copyright (c) 1993-1996,1998-2007 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
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 17 
Line 17 
  * Agency (DARPA) and Air Force Research Laboratory, Air Force   * Agency (DARPA) and Air Force Research Laboratory, Air Force
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.   * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  *   *
  * $Sudo: sudo.h,v 1.213 2004/09/08 15:48:23 millert Exp $   * $Sudo: sudo.h,v 1.209.2.10 2007/07/06 14:14:34 millert Exp $
  */   */
   
 #ifndef _SUDO_SUDO_H  #ifndef _SUDO_SUDO_H
Line 49 
Line 49 
     char *cmnd_base;      char *cmnd_base;
     char *cmnd_safe;      char *cmnd_safe;
     char *class_name;      char *class_name;
       int ngroups;
       gid_t *groups;
       struct list_member *env_vars;
 };  };
   
 /*  /*
Line 65 
Line 68 
 #define FLAG_NO_HOST            0x080  #define FLAG_NO_HOST            0x080
 #define FLAG_NO_CHECK           0x100  #define FLAG_NO_CHECK           0x100
 #define FLAG_NOEXEC             0x200  #define FLAG_NOEXEC             0x200
   #define FLAG_SETENV             0x400
   
 /*  /*
  * Pseudo-boolean values   * Pseudo-boolean values
Line 86 
Line 90 
 #define NOT_FOUND_DOT           -1  #define NOT_FOUND_DOT           -1
   
 /*  /*
  * Various modes sudo can be in (based on arguments) in octal   * Various modes sudo can be in (based on arguments) in hex
  */   */
 #define MODE_RUN                 000001  #define MODE_RUN                0x0001
 #define MODE_VALIDATE            000002  #define MODE_EDIT               0x0002
 #define MODE_INVALIDATE          000004  #define MODE_VALIDATE           0x0004
 #define MODE_KILL                000010  #define MODE_INVALIDATE         0x0008
 #define MODE_VERSION             000020  #define MODE_KILL               0x0010
 #define MODE_HELP                000040  #define MODE_VERSION            0x0020
 #define MODE_LIST                000100  #define MODE_HELP               0x0040
 #define MODE_LISTDEFS            000200  #define MODE_LIST               0x0080
 #define MODE_BACKGROUND          000400  #define MODE_LISTDEFS           0x0100
 #define MODE_SHELL               001000  #define MODE_BACKGROUND         0x0200
 #define MODE_LOGIN_SHELL         002000  #define MODE_SHELL              0x0400
 #define MODE_IMPLIED_SHELL       004000  #define MODE_LOGIN_SHELL        0x0800
 #define MODE_RESET_HOME          010000  #define MODE_IMPLIED_SHELL      0x1000
 #define MODE_PRESERVE_GROUPS     020000  #define MODE_RESET_HOME         0x2000
 #define MODE_EDIT                040000  #define MODE_PRESERVE_GROUPS    0x4000
   #define MODE_PRESERVE_ENV       0x8000
   
 /*  /*
  * Used with set_perms()   * Used with set_perms()
  */   */
 #define PERM_ROOT                0x00  #define PERM_ROOT                0x00
 #define PERM_FULL_ROOT           0x01  #define PERM_USER                0x01
 #define PERM_USER                0x02  #define PERM_FULL_USER           0x02
 #define PERM_FULL_USER           0x03  #define PERM_SUDOERS             0x03
 #define PERM_SUDOERS             0x04  #define PERM_RUNAS               0x04
 #define PERM_RUNAS               0x05  #define PERM_FULL_RUNAS          0x05
 #define PERM_FULL_RUNAS          0x06  #define PERM_TIMESTAMP           0x06
 #define PERM_TIMESTAMP           0x07  
   
 /*  /*
  * Shortcuts for sudo_user contents.   * Shortcuts for sudo_user contents.
Line 125 
Line 129 
 #define user_gid                (sudo_user.pw->pw_gid)  #define user_gid                (sudo_user.pw->pw_gid)
 #define user_dir                (sudo_user.pw->pw_dir)  #define user_dir                (sudo_user.pw->pw_dir)
 #define user_shell              (sudo_user.shell)  #define user_shell              (sudo_user.shell)
   #define user_ngroups            (sudo_user.ngroups)
   #define user_groups             (sudo_user.groups)
 #define user_tty                (sudo_user.tty)  #define user_tty                (sudo_user.tty)
 #define user_cwd                (sudo_user.cwd)  #define user_cwd                (sudo_user.cwd)
 #define user_runas              (sudo_user.runas)  #define user_runas              (sudo_user.runas)
Line 183 
Line 189 
 int futimes             __P((int, const struct timeval *));  int futimes             __P((int, const struct timeval *));
 #endif  #endif
 #ifndef HAVE_SNPRINTF  #ifndef HAVE_SNPRINTF
 int snprintf            __P((char *, size_t, const char *, ...));  int snprintf            __P((char *, size_t, const char *, ...))
                               __printflike(3, 4);
 #endif  #endif
 #ifndef HAVE_VSNPRINTF  #ifndef HAVE_VSNPRINTF
 int vsnprintf           __P((char *, size_t, const char *, va_list));  int vsnprintf           __P((char *, size_t, const char *, va_list))
                               __printflike(3, 0);
 #endif  #endif
 #ifndef HAVE_ASPRINTF  #ifndef HAVE_ASPRINTF
 int asprintf            __P((char **, const char *, ...));  int asprintf            __P((char **, const char *, ...))
                               __printflike(2, 3);
 #endif  #endif
 #ifndef HAVE_VASPRINTF  #ifndef HAVE_VASPRINTF
 int vasprintf           __P((char **, const char *, va_list));  int vasprintf           __P((char **, const char *, va_list))
                               __printflike(2, 0);
 #endif  #endif
 #ifndef HAVE_STRCASECMP  #ifndef HAVE_STRCASECMP
 int strcasecmp          __P((const char *, const char *));  int strcasecmp          __P((const char *, const char *));
Line 203 
Line 213 
 #ifndef HAVE_STRLCPY  #ifndef HAVE_STRLCPY
 size_t strlcpy          __P((char *, const char *, size_t));  size_t strlcpy          __P((char *, const char *, size_t));
 #endif  #endif
   #ifndef HAVE_MEMRCHR
   VOID *memrchr           __P((const VOID *, int, size_t));
   #endif
   #ifndef HAVE_MKSTEMP
   int mkstemp             __P((char *));
   #endif
 char *sudo_goodpath     __P((const char *, struct stat *));  char *sudo_goodpath     __P((const char *, struct stat *));
 char *tgetpass          __P((const char *, int, int));  char *tgetpass          __P((const char *, int, int));
 int find_path           __P((char *, char **, struct stat *, char *));  int find_path           __P((char *, char **, struct stat *, char *));
Line 213 
Line 229 
 int sudo_ldap_check     __P((int));  int sudo_ldap_check     __P((int));
 void sudo_ldap_list_matches __P((void));  void sudo_ldap_list_matches __P((void));
 #endif  #endif
 void set_perms_nosuid   __P((int));  void set_perms          __P((int));
 void set_perms_posix    __P((int));  
 void set_perms_suid     __P((int));  
 void remove_timestamp   __P((int));  void remove_timestamp   __P((int));
 int check_secureware    __P((char *));  int check_secureware    __P((char *));
 void sia_attempt_auth   __P((void));  void sia_attempt_auth   __P((void));
Line 227 
Line 241 
 VOID *erealloc          __P((VOID *, size_t));  VOID *erealloc          __P((VOID *, size_t));
 VOID *erealloc3         __P((VOID *, size_t, size_t));  VOID *erealloc3         __P((VOID *, size_t, size_t));
 char *estrdup           __P((const char *));  char *estrdup           __P((const char *));
 int easprintf           __P((char **, const char *, ...));  int easprintf           __P((char **, const char *, ...))
 int evasprintf          __P((char **, const char *, va_list));                              __printflike(2, 3);
   int evasprintf          __P((char **, const char *, va_list))
                               __printflike(2, 0);
   void efree              __P((VOID *));
 void dump_defaults      __P((void));  void dump_defaults      __P((void));
 void dump_auth_methods  __P((void));  void dump_auth_methods  __P((void));
 void init_envtables     __P((void));  void init_envtables     __P((void));
Line 251 
Line 268 
 extern FILE *sudoers_fp;  extern FILE *sudoers_fp;
 extern int tgetpass_flags;  extern int tgetpass_flags;
 extern uid_t timestamp_uid;  extern uid_t timestamp_uid;
   
 extern void (*set_perms) __P((int));  
 #endif  #endif
 #ifndef errno  #ifndef errno
 extern int errno;  extern int errno;

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18