1992-11-01 04:42:48 +08:00
|
|
|
/* modechange.c -- file mode manipulation
|
1999-03-28 13:44:33 +08:00
|
|
|
Copyright (C) 1989, 1990, 1997, 1998, 1999 Free Software Foundation, Inc.
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
1996-07-15 11:36:16 +08:00
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
|
|
/* Written by David MacKenzie <djm@ai.mit.edu> */
|
|
|
|
|
|
|
|
/* The ASCII mode string is compiled into a linked list of `struct
|
|
|
|
modechange', which can then be applied to each file to be changed.
|
|
|
|
We do this instead of re-parsing the ASCII string for each file
|
|
|
|
because the compiled form requires less computation to use; when
|
|
|
|
changing the mode of many files, this probably results in a
|
|
|
|
performance gain. */
|
|
|
|
|
1996-09-29 02:31:00 +08:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
1994-07-01 21:46:42 +08:00
|
|
|
#endif
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
#include "modechange.h"
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "xstrtol.h"
|
1992-11-01 04:42:48 +08:00
|
|
|
|
1996-09-29 02:31:00 +08:00
|
|
|
#if STDC_HEADERS
|
|
|
|
# include <stdlib.h>
|
1992-11-01 04:42:48 +08:00
|
|
|
#else
|
1998-09-19 21:11:23 +08:00
|
|
|
char *malloc ();
|
1992-11-01 04:42:48 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
1996-09-29 02:31:00 +08:00
|
|
|
# define NULL 0
|
1992-11-01 04:42:48 +08:00
|
|
|
#endif
|
|
|
|
|
1996-09-29 02:31:00 +08:00
|
|
|
#if STAT_MACROS_BROKEN
|
|
|
|
# undef S_ISDIR
|
1996-10-29 22:24:52 +08:00
|
|
|
#endif
|
1994-07-01 21:46:42 +08:00
|
|
|
|
|
|
|
#if !defined(S_ISDIR) && defined(S_IFDIR)
|
1996-09-29 02:31:00 +08:00
|
|
|
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
1992-11-01 04:42:48 +08:00
|
|
|
#endif
|
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
#ifndef S_ISUID
|
|
|
|
# define S_ISUID 04000
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISGID
|
|
|
|
# define S_ISGID 04000
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISVTX
|
|
|
|
# define S_ISVTX 01000
|
|
|
|
#endif
|
|
|
|
#ifndef S_IRUSR
|
|
|
|
# define S_IRUSR 0400
|
|
|
|
#endif
|
|
|
|
#ifndef S_IWUSR
|
|
|
|
# define S_IWUSR 0200
|
|
|
|
#endif
|
|
|
|
#ifndef S_IXUSR
|
|
|
|
# define S_IXUSR 0100
|
|
|
|
#endif
|
|
|
|
#ifndef S_IRGRP
|
|
|
|
# define S_IRGRP 0040
|
|
|
|
#endif
|
|
|
|
#ifndef S_IWGRP
|
|
|
|
# define S_IWGRP 0020
|
|
|
|
#endif
|
|
|
|
#ifndef S_IXGRP
|
|
|
|
# define S_IXGRP 0010
|
|
|
|
#endif
|
|
|
|
#ifndef S_IROTH
|
|
|
|
# define S_IROTH 0004
|
|
|
|
#endif
|
|
|
|
#ifndef S_IWOTH
|
|
|
|
# define S_IWOTH 0002
|
|
|
|
#endif
|
|
|
|
#ifndef S_IXOTH
|
|
|
|
# define S_IXOTH 0001
|
|
|
|
#endif
|
|
|
|
#ifndef S_IRWXU
|
|
|
|
# define S_IRWXU 0700
|
|
|
|
#endif
|
|
|
|
#ifndef S_IRWXG
|
|
|
|
# define S_IRWXG 0070
|
|
|
|
#endif
|
|
|
|
#ifndef S_IRWXO
|
|
|
|
# define S_IRWXO 0007
|
|
|
|
#endif
|
1992-11-01 04:42:48 +08:00
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
/* All the mode bits that can be affected by chmod. */
|
|
|
|
#define CHMOD_MODE_BITS \
|
|
|
|
(S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
|
1998-09-09 22:21:16 +08:00
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
/* Return newly allocated memory to hold one element of type TYPE. */
|
|
|
|
#define talloc(type) ((type *) malloc (sizeof (type)))
|
1992-11-01 04:42:48 +08:00
|
|
|
|
1999-03-30 12:51:08 +08:00
|
|
|
/* Create a mode_change entry with the specified `=ddd'-style
|
|
|
|
mode change operation, where NEW_MODE is `ddd'. Return the
|
|
|
|
new entry, or NULL upon failure. */
|
|
|
|
|
|
|
|
static struct mode_change *
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
make_node_op_equals (mode_t new_mode)
|
1999-03-30 12:51:08 +08:00
|
|
|
{
|
|
|
|
struct mode_change *p;
|
|
|
|
p = talloc (struct mode_change);
|
|
|
|
if (p == NULL)
|
|
|
|
return p;
|
|
|
|
p->next = NULL;
|
|
|
|
p->op = '=';
|
|
|
|
p->flags = 0;
|
|
|
|
p->value = new_mode;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
p->affected = CHMOD_MODE_BITS; /* Affect all permissions. */
|
1999-03-30 12:51:08 +08:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Append entry E to the end of the link list with the specified
|
|
|
|
HEAD and TAIL. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
mode_append_entry (struct mode_change **head,
|
|
|
|
struct mode_change **tail,
|
|
|
|
struct mode_change *e)
|
|
|
|
{
|
|
|
|
if (*head == NULL)
|
|
|
|
*head = *tail = e;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*tail)->next = e;
|
|
|
|
*tail = e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
/* Return a linked list of file mode change operations created from
|
|
|
|
MODE_STRING, an ASCII string that contains either an octal number
|
|
|
|
specifying an absolute mode, or symbolic mode change operations with
|
|
|
|
the form:
|
|
|
|
[ugoa...][[+-=][rwxXstugo...]...][,...]
|
|
|
|
MASKED_OPS is a bitmask indicating which symbolic mode operators (=+-)
|
|
|
|
should not affect bits set in the umask when no users are given.
|
|
|
|
Operators not selected in MASKED_OPS ignore the umask.
|
|
|
|
|
|
|
|
Return MODE_INVALID if `mode_string' does not contain a valid
|
|
|
|
representation of file mode change operations;
|
|
|
|
return MODE_MEMORY_EXHAUSTED if there is insufficient memory. */
|
|
|
|
|
|
|
|
struct mode_change *
|
1998-09-09 22:21:16 +08:00
|
|
|
mode_compile (const char *mode_string, unsigned int masked_ops)
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
|
|
|
struct mode_change *head; /* First element of the linked list. */
|
1999-03-30 12:51:08 +08:00
|
|
|
struct mode_change *tail; /* An element of the linked list. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
unsigned long mode_value; /* The mode value, if octal. */
|
|
|
|
char *string_end; /* Pointer to end of parsed value. */
|
|
|
|
mode_t umask_value; /* The umask value (surprise). */
|
1999-03-30 12:51:08 +08:00
|
|
|
|
|
|
|
head = NULL;
|
|
|
|
#ifdef lint
|
|
|
|
tail = NULL;
|
|
|
|
#endif
|
1992-11-01 04:42:48 +08:00
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
if (xstrtoul (mode_string, &string_end, 8, &mode_value, "") == LONGINT_OK)
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
1999-03-30 12:51:08 +08:00
|
|
|
struct mode_change *p;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
if (mode_value > CHMOD_MODE_BITS)
|
1992-11-01 04:42:48 +08:00
|
|
|
return MODE_INVALID;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
p = make_node_op_equals ((mode_t) mode_value);
|
1999-03-30 12:51:08 +08:00
|
|
|
if (p == NULL)
|
1992-11-01 04:42:48 +08:00
|
|
|
return MODE_MEMORY_EXHAUSTED;
|
1999-03-30 12:51:08 +08:00
|
|
|
mode_append_entry (&head, &tail, p);
|
1992-11-01 04:42:48 +08:00
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
|
|
|
umask_value = umask (0);
|
|
|
|
umask (umask_value); /* Restore the old value. */
|
|
|
|
--mode_string;
|
|
|
|
|
|
|
|
/* One loop iteration for each "ugoa...=+-rwxXstugo...[=+-rwxXstugo...]". */
|
|
|
|
do
|
|
|
|
{
|
1999-03-30 12:51:08 +08:00
|
|
|
/* Which bits in the mode are operated on. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
mode_t affected_bits = 0;
|
1999-03-30 12:51:08 +08:00
|
|
|
/* `affected_bits' modified by umask. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
mode_t affected_masked;
|
1999-03-30 12:51:08 +08:00
|
|
|
/* Operators to actually use umask on. */
|
|
|
|
unsigned ops_to_mask = 0;
|
|
|
|
|
|
|
|
int who_specified_p;
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
affected_bits = 0;
|
|
|
|
ops_to_mask = 0;
|
|
|
|
/* Turn on all the bits in `affected_bits' for each group given. */
|
|
|
|
for (++mode_string;; ++mode_string)
|
|
|
|
switch (*mode_string)
|
|
|
|
{
|
|
|
|
case 'u':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
affected_bits |= S_ISUID | S_IRWXU;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'g':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
affected_bits |= S_ISGID | S_IRWXG;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'o':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
affected_bits |= S_ISVTX | S_IRWXO;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'a':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
affected_bits |= CHMOD_MODE_BITS;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto no_more_affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
no_more_affected:
|
|
|
|
/* If none specified, affect all bits, except perhaps those
|
|
|
|
set in the umask. */
|
1999-03-30 12:51:08 +08:00
|
|
|
if (affected_bits)
|
|
|
|
who_specified_p = 1;
|
|
|
|
else
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
1999-03-30 12:51:08 +08:00
|
|
|
who_specified_p = 0;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
affected_bits = CHMOD_MODE_BITS;
|
1992-11-01 04:42:48 +08:00
|
|
|
ops_to_mask = masked_ops;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*mode_string == '=' || *mode_string == '+' || *mode_string == '-')
|
|
|
|
{
|
1999-03-30 12:51:08 +08:00
|
|
|
struct mode_change *change = talloc (struct mode_change);
|
|
|
|
if (change == NULL)
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
1999-03-30 12:51:08 +08:00
|
|
|
mode_free (head);
|
|
|
|
return MODE_MEMORY_EXHAUSTED;
|
1992-11-01 04:42:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
change->next = NULL;
|
|
|
|
change->op = *mode_string; /* One of "=+-". */
|
|
|
|
affected_masked = affected_bits;
|
1999-03-30 12:51:08 +08:00
|
|
|
|
|
|
|
/* Per the Single Unix Spec, if `who' is not specified and the
|
|
|
|
`=' operator is used, then clear all the bits first. */
|
|
|
|
if (!who_specified_p &&
|
|
|
|
ops_to_mask & (*mode_string == '=' ? MODE_MASK_EQUALS : 0))
|
|
|
|
{
|
|
|
|
struct mode_change *p = make_node_op_equals (0);
|
|
|
|
if (p == NULL)
|
|
|
|
return MODE_MEMORY_EXHAUSTED;
|
|
|
|
mode_append_entry (&head, &tail, p);
|
|
|
|
}
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
if (ops_to_mask & (*mode_string == '=' ? MODE_MASK_EQUALS
|
|
|
|
: *mode_string == '+' ? MODE_MASK_PLUS
|
|
|
|
: MODE_MASK_MINUS))
|
|
|
|
affected_masked &= ~umask_value;
|
|
|
|
change->affected = affected_masked;
|
|
|
|
change->value = 0;
|
|
|
|
change->flags = 0;
|
|
|
|
|
1999-03-30 12:51:08 +08:00
|
|
|
/* Add the element to the tail of the list, so the operations
|
|
|
|
are performed in the correct order. */
|
|
|
|
mode_append_entry (&head, &tail, change);
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
/* Set `value' according to the bits set in `affected_masked'. */
|
|
|
|
for (++mode_string;; ++mode_string)
|
|
|
|
switch (*mode_string)
|
|
|
|
{
|
|
|
|
case 'r':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value |= ((S_IRUSR | S_IRGRP | S_IROTH)
|
|
|
|
& affected_masked);
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'w':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value |= ((S_IWUSR | S_IWGRP | S_IWOTH)
|
|
|
|
& affected_masked);
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'X':
|
|
|
|
change->flags |= MODE_X_IF_ANY_X;
|
|
|
|
/* Fall through. */
|
|
|
|
case 'x':
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value |= ((S_IXUSR | S_IXGRP | S_IXOTH)
|
|
|
|
& affected_masked);
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
/* Set the setuid/gid bits if `u' or `g' is selected. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value |= (S_ISUID | S_ISGID) & affected_masked;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
/* Set the "save text image" bit if `o' is selected. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value |= S_ISVTX & affected_masked;
|
1992-11-01 04:42:48 +08:00
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
/* Set the affected bits to the value of the `u' bits
|
|
|
|
on the same file. */
|
|
|
|
if (change->value)
|
|
|
|
goto invalid;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value = S_IRWXU;
|
1992-11-01 04:42:48 +08:00
|
|
|
change->flags |= MODE_COPY_EXISTING;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
/* Set the affected bits to the value of the `g' bits
|
|
|
|
on the same file. */
|
|
|
|
if (change->value)
|
|
|
|
goto invalid;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value = S_IRWXG;
|
1992-11-01 04:42:48 +08:00
|
|
|
change->flags |= MODE_COPY_EXISTING;
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
/* Set the affected bits to the value of the `o' bits
|
|
|
|
on the same file. */
|
|
|
|
if (change->value)
|
|
|
|
goto invalid;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->value = S_IRWXO;
|
1992-11-01 04:42:48 +08:00
|
|
|
change->flags |= MODE_COPY_EXISTING;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto no_more_values;
|
|
|
|
}
|
|
|
|
no_more_values:;
|
|
|
|
}
|
|
|
|
} while (*mode_string == ',');
|
|
|
|
if (*mode_string == 0)
|
|
|
|
return head;
|
|
|
|
invalid:
|
|
|
|
mode_free (head);
|
|
|
|
return MODE_INVALID;
|
|
|
|
}
|
|
|
|
|
1997-07-29 11:03:49 +08:00
|
|
|
/* Return a file mode change operation that sets permissions to match those
|
|
|
|
of REF_FILE. Return MODE_BAD_REFERENCE if REF_FILE can't be accessed. */
|
1997-07-07 05:28:04 +08:00
|
|
|
|
|
|
|
struct mode_change *
|
1998-09-09 22:21:16 +08:00
|
|
|
mode_create_from_ref (const char *ref_file)
|
1997-07-07 05:28:04 +08:00
|
|
|
{
|
|
|
|
struct mode_change *change; /* the only change element */
|
|
|
|
struct stat ref_stats;
|
|
|
|
|
|
|
|
if (stat (ref_file, &ref_stats))
|
|
|
|
return MODE_BAD_REFERENCE;
|
|
|
|
|
|
|
|
change = talloc (struct mode_change);
|
|
|
|
|
|
|
|
if (change == NULL)
|
|
|
|
return MODE_MEMORY_EXHAUSTED;
|
|
|
|
|
|
|
|
change->op = '=';
|
1997-07-29 11:03:49 +08:00
|
|
|
change->flags = 0;
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
change->affected = CHMOD_MODE_BITS;
|
1997-07-07 05:28:04 +08:00
|
|
|
change->value = ref_stats.st_mode;
|
|
|
|
change->next = NULL;
|
|
|
|
|
|
|
|
return change;
|
|
|
|
}
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
/* Return file mode OLDMODE, adjusted as indicated by the list of change
|
|
|
|
operations CHANGES. If OLDMODE is a directory, the type `X'
|
|
|
|
change affects it even if no execute bits were set in OLDMODE.
|
|
|
|
The returned value has the S_IFMT bits cleared. */
|
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
mode_t
|
|
|
|
mode_adjust (mode_t oldmode, const struct mode_change *changes)
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
mode_t newmode; /* The adjusted mode and one operand. */
|
|
|
|
mode_t value; /* The other operand. */
|
1992-11-01 04:42:48 +08:00
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
newmode = oldmode & CHMOD_MODE_BITS;
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
|
|
for (; changes; changes = changes->next)
|
|
|
|
{
|
|
|
|
if (changes->flags & MODE_COPY_EXISTING)
|
|
|
|
{
|
|
|
|
/* Isolate in `value' the bits in `newmode' to copy, given in
|
|
|
|
the mask `changes->value'. */
|
|
|
|
value = newmode & changes->value;
|
|
|
|
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
if (changes->value & S_IRWXU)
|
1992-11-01 04:42:48 +08:00
|
|
|
/* Copy `u' permissions onto `g' and `o'. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
value |= ((value & S_IRUSR ? S_IRGRP | S_IROTH : 0)
|
|
|
|
| (value & S_IWUSR ? S_IWGRP | S_IROTH : 0)
|
|
|
|
| (value & S_IXUSR ? S_IXGRP | S_IXOTH : 0));
|
|
|
|
else if (changes->value & S_IRWXG)
|
1992-11-01 04:42:48 +08:00
|
|
|
/* Copy `g' permissions onto `u' and `o'. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
value |= ((value & S_IRGRP ? S_IRUSR | S_IROTH : 0)
|
|
|
|
| (value & S_IWGRP ? S_IWUSR | S_IROTH : 0)
|
|
|
|
| (value & S_IXGRP ? S_IXUSR | S_IXOTH : 0));
|
1992-11-01 04:42:48 +08:00
|
|
|
else
|
|
|
|
/* Copy `o' permissions onto `u' and `g'. */
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
value |= ((value & S_IROTH ? S_IRUSR | S_IRGRP : 0)
|
|
|
|
| (value & S_IWOTH ? S_IWUSR | S_IRGRP : 0)
|
|
|
|
| (value & S_IXOTH ? S_IXUSR | S_IXGRP : 0));
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
|
|
/* In order to change only `u', `g', or `o' permissions,
|
|
|
|
or some combination thereof, clear unselected bits.
|
|
|
|
This can not be done in mode_compile because the value
|
|
|
|
to which the `changes->affected' mask is applied depends
|
|
|
|
on the old mode of each file. */
|
|
|
|
value &= changes->affected;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
value = changes->value;
|
|
|
|
/* If `X', do not affect the execute bits if the file is not a
|
|
|
|
directory and no execute bits are already set. */
|
|
|
|
if ((changes->flags & MODE_X_IF_ANY_X)
|
|
|
|
&& !S_ISDIR (oldmode)
|
(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):
Use proper mode_t types and macros.
Don't assume the traditional Unix values for mode bits.
modechange.h now includes sys/types.h.
Include xstrtol.h.
(isodigit, oatoi): Remove.
(S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP,
S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG,
S_IRWXO): Define if not defined.
(CHMOD_MODE_BITS): New macro.
(mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26 21:19:37 +08:00
|
|
|
&& (newmode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0)
|
|
|
|
/* Clear the execute bits. */
|
|
|
|
value &= ~ (S_IXUSR | S_IXGRP | S_IXOTH);
|
1992-11-01 04:42:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (changes->op)
|
|
|
|
{
|
|
|
|
case '=':
|
|
|
|
/* Preserve the previous values in `newmode' of bits that are
|
|
|
|
not affected by this change operation. */
|
|
|
|
newmode = (newmode & ~changes->affected) | value;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
newmode |= value;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
newmode &= ~value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newmode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free the memory used by the list of file mode change operations
|
|
|
|
CHANGES. */
|
|
|
|
|
|
|
|
void
|
1998-09-09 22:21:16 +08:00
|
|
|
mode_free (register struct mode_change *changes)
|
1992-11-01 04:42:48 +08:00
|
|
|
{
|
|
|
|
register struct mode_change *next;
|
|
|
|
|
|
|
|
while (changes)
|
|
|
|
{
|
|
|
|
next = changes->next;
|
|
|
|
free (changes);
|
|
|
|
changes = next;
|
|
|
|
}
|
|
|
|
}
|