1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
--- shadow-19990827.old/src/Makefile.am Tue Nov 2 21:36:43 1999
+++ shadow-19990827/src/Makefile.am Tue Nov 2 21:40:49 1999
@@ -32,7 +32,7 @@
usbin_PROGRAMS = chpasswd dpasswd groupadd groupdel groupmod \
logoutd mkpasswd newusers \
useradd userdel usermod grpck pwck vipw \
- grpconv grpunconv pwconv pwunconv
+ grpconv grpunconv pwconv pwunconv cppw
EXTRA_DIST = shadowconfig.sh
@@ -55,6 +55,7 @@
chmod 4755 $(DESTDIR)$(ubindir)/$$i; \
done
ln -s newgrp $(DESTDIR)$(ubindir)/sg
+ ln -s cpgr $(DESTDIR)$(ubindir)/cppw
noinst_PROGRAMS = groups id sulogin
--- shadow-19990827.old/src/cppw.c Wed Dec 31 19:00:00 1969
+++ shadow-19990827/src/cppw.c Tue Nov 2 21:37:09 1999
@@ -0,0 +1,200 @@
+/*
+ cppw, cpgr copy with locking given file over the password or group file
+ with -s will copy with locking given file over shadow or gshadow file
+
+ Copyright (C) 1999 Stephen Frost <sfrost@snowman.net>
+
+ Based on vipw, vigr by:
+ Copyright (C) 1997 Guy Maor <maor@ece.utexas.edu>
+
+ 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 of the License, 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
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ */
+
+#include <config.h>
+#include "defines.h"
+
+#include <errno.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <signal.h>
+#include <utime.h>
+#include "prototypes.h"
+#include "pwio.h"
+#include "shadowio.h"
+#include "groupio.h"
+#include "sgroupio.h"
+
+
+static const char *progname, *filename, *filenewname;
+static int filelocked = 0;
+static int (*unlock)();
+
+/* local function prototypes */
+static int create_backup_file P_((FILE *, const char *, struct stat *));
+static void cppwexit P_((const char *, int, int));
+static void cppwcopy P_((const char *, const char *, int (*) P_((void)), int (*) P_((void))));
+int main P_((int, char **));
+
+static int
+create_backup_file(FILE *fp, const char *backup, struct stat *sb)
+{
+ struct utimbuf ub;
+ FILE *bkfp;
+ int c;
+ mode_t mask;
+
+ mask = umask(077);
+ bkfp = fopen(backup, "w");
+ umask(mask);
+ if (!bkfp) return -1;
+
+ rewind(fp);
+ while ((c = getc(fp)) != EOF) {
+ if (putc(c, bkfp) == EOF) break;
+ }
+
+ if (c != EOF || fflush(bkfp)) {
+ fclose(bkfp);
+ unlink(backup);
+ return -1;
+ }
+ if (fclose(bkfp)) {
+ unlink(backup);
+ return -1;
+ }
+
+ ub.actime = sb->st_atime;
+ ub.modtime = sb->st_mtime;
+ if (utime(backup, &ub) ||
+ chmod(backup, sb->st_mode) ||
+ chown(backup, sb->st_uid, sb->st_gid)) {
+ unlink(backup);
+ return -1;
+ }
+ return 0;
+}
+
+static void
+cppwexit(const char *msg, int syserr, int ret)
+{
+ int err = errno;
+ if (filelocked) (*unlock)();
+ if (msg) fprintf(stderr, "%s: %s", progname, msg);
+ if (syserr) fprintf(stderr, ": %s", strerror(err));
+ fprintf(stderr, "\n%s: %s is unchanged\n", progname, filename);
+ exit(ret);
+}
+
+static void
+cppwcopy(const char *file, const char *in_file, int (*file_lock) P_((void)), int (*file_unlock) P_((void)))
+{
+ struct stat st1;
+ FILE *f;
+ char filenew[1024];
+
+ snprintf(filenew, sizeof filenew, "%s.new", file);
+ unlock = file_unlock;
+ filename = file;
+ filenewname = filenew;
+
+ if (access(file, F_OK)) cppwexit(file, 1, 1);
+ if (!file_lock()) cppwexit("Couldn't lock file", errno, 5);
+ filelocked = 1;
+
+ /* file to copy has same owners, perm */
+ if (stat(file, &st1)) cppwexit(file, 1, 1);
+ if (!(f = fopen(in_file, "r"))) cppwexit(file, 1, 1);
+ if (create_backup_file(f, filenew, &st1))
+ cppwexit("Couldn't make backup", errno, 1);
+
+ /* XXX - here we should check filenew for errors; if there are any,
+ fail w/ an appropriate error code and let the user manually fix
+ it. Use pwck or grpck to do the check. - Stephen (Shamelessly
+ stolen from '--marekm's comment) */
+
+ if (rename(filenew, file) == -1) {
+ fprintf(stderr, "%s: can't copy %s: %s)\n",
+ progname, filenew, strerror(errno));
+ cppwexit(0,0,1);
+ }
+
+ (*file_unlock)();
+}
+
+
+int
+main(int argc, char **argv)
+{
+ int flag;
+ int cpshadow = 0;
+ char *in_file;
+ char *c;
+ int e = 1;
+ int do_cppw;
+
+ progname = ((c = strrchr(*argv, '/')) ? c+1 : *argv);
+ do_cppw = (strcmp(progname, "cpgr") != 0);
+
+ while ((flag = getopt(argc, argv, "ghps")) != EOF) {
+ switch (flag) {
+ case 'p':
+ do_cppw = 1;
+ break;
+ case 'g':
+ do_cppw = 0;
+ break;
+ case 's':
+ cpshadow = 1;
+ break;
+ case 'h':
+ e = 0;
+ default:
+ printf("Usage:\n\
+`cppw <file>' copys over /etc/passwd `cppw -s <file>' copys over /etc/shadow\n\
+`cpgr <file>' copys over /etc/group `cpgr -s <file>' copys over /etc/gshadow\n\
+");
+ exit(e);
+ }
+ }
+
+ if (optind >= argc) {
+ cppwexit ("missing file argument, -h for usage",0,1);
+ }
+
+ in_file = argv[argc - 1];
+
+ if (do_cppw) {
+#ifdef SHADOWPWD
+ if (cpshadow)
+ cppwcopy(SHADOW_FILE, in_file, spw_lock, spw_unlock);
+ else
+#endif
+ cppwcopy(PASSWD_FILE, in_file, pw_lock, pw_unlock);
+ }
+ else {
+#ifdef SHADOWGRP
+ if (cpshadow)
+ cppwcopy(SGROUP_FILE, in_file, sgr_lock, sgr_unlock);
+ else
+#endif
+ cppwcopy(GROUP_FILE, in_file, gr_lock, gr_unlock);
+ }
+
+ return 0;
+}
|