Print this page
2989 Eliminate use of LOGNAME_MAX in ON
1166 useradd have warning with name more 8 chars

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/pwck/pwck.c
          +++ new/usr/src/cmd/pwck/pwck.c
↓ open down ↓ 11 lines elided ↑ open up ↑
  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]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
       22 + * Copyright (c) 2013 Gary Mills
       23 + *
  22   24   * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23   25   * Use is subject to license terms.
  24   26   */
  25   27  
  26   28  /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
  27   29  /*        All Rights Reserved   */
  28   30  
  29   31  
  30      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  31      -
  32   32  #include <sys/types.h>
  33   33  #include <sys/param.h>
  34   34  #include <sys/signal.h>
  35   35  #include <sys/sysmacros.h>
  36   36  #include <sys/stat.h>
  37   37  #include <stdio.h>
  38   38  #include <stdlib.h>
  39   39  #include <string.h>
  40   40  #include <ctype.h>
  41   41  #include <locale.h>
  42   42  #include <errno.h>
  43   43  #include <unistd.h>
       44 +#include <limits.h>
  44   45  
       46 +#ifdef  LOGNAME_MAX_ILLUMOS
       47 +#define _LOGNAME_MAX    LOGNAME_MAX_ILLUMOS
       48 +#else /* LOGNAME_MAX_ILLUMOS */
       49 +#define _LOGNAME_MAX    LOGNAME_MAX
       50 +#endif /* LOGNAME_MAX_ILLUMOS */
       51 +
  45   52  #define ERROR1  "Too many/few fields"
  46   53  #define ERROR2  "Bad character(s) in logname"
  47   54  #define ERROR2a "First char in logname not alphabetic"
  48   55  #define ERROR2b "Logname field NULL"
  49   56  #define ERROR2c "Logname contains no lower-case letters"
  50   57  #define ERROR3  "Logname too long/short"
  51   58  #define ERROR4  "Invalid UID"
  52   59  #define ERROR5  "Invalid GID"
  53   60  #define ERROR6  "Login directory not found"
  54   61  #define ERROR6a "Login directory null"
↓ open down ↓ 101 lines elided ↑ open up ↑
 156  163                          else if (islower(buf[i]))
 157  164                                  lc++;
 158  165                  }
 159  166                  if (lc == 0)
 160  167                          error(ERROR2c);
 161  168                  if (badc > 0)
 162  169                          error(ERROR2);
 163  170  
 164  171                  /* Check for valid number of characters in logname */
 165  172  
 166      -                if (i <= 0 || i > 8)
      173 +                if (i <= 0 || i > _LOGNAME_MAX)
 167  174                          error(ERROR3);
 168  175  
 169  176                  /* Check that UID is numeric and <= MAXUID */
 170  177  
 171  178                  errno = 0;
 172  179                  str = &buf[delim[1] + 1];
 173  180                  uid = strtol(str, &lastc, 10);
 174  181                  if (lastc != str + (delim[2] - delim[1]) - 1 ||
 175  182                      uid > MAXUID || errno == ERANGE)
 176  183                          error(ERROR4);
↓ open down ↓ 60 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX