]>
git.cameronkatri.com Git - pw-darwin.git/blob - pw/fileupd.c
3 * David L. Nugent. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 static const char rcsid
[] =
29 "$Id: fileupd.c,v 1.5 1997/10/10 06:23:31 charnier Exp $";
36 #include <sys/types.h>
38 #include <sys/param.h>
45 extendline(char **buf
, int * buflen
, int needed
)
47 if (needed
> *buflen
) {
48 char *tmp
= realloc(*buf
, needed
);
58 extendarray(char ***buf
, int * buflen
, int needed
)
60 if (needed
> *buflen
) {
61 char **tmp
= realloc(*buf
, needed
* sizeof(char *));
72 fileupdate(char const * filename
, mode_t fmode
, char const * newline
, char const * prefix
, int pfxlen
, int updmode
)
79 int infd
= open(filename
, O_RDWR
| O_CREAT
, fmode
);
82 FILE *infp
= fdopen(infd
, "r+");
88 char file
[MAXPATHLEN
];
90 strcpy(file
, filename
);
92 outfd
= open(file
, O_RDWR
| O_CREAT
| O_TRUNC
| O_EXLOCK
, fmode
);
94 FILE *outfp
= fdopen(outfd
, "w+");
99 int updated
= UPD_CREATE
;
100 int linesize
= PWBUFSZ
;
101 char *line
= malloc(linesize
);
104 while (fgets(line
, linesize
, infp
) != NULL
) {
105 char *p
= strchr(line
, '\n');
107 while ((p
= strchr(line
, '\n')) == NULL
) {
109 if (extendline(&line
, &linesize
, linesize
+ PWBUFSZ
) == -1) {
112 while ((ch
= fgetc(infp
)) != EOF
) {
120 if (fgets(line
+ l
, linesize
- l
, infp
) == NULL
)
123 if (*line
!= '#' && *line
!= '\n') {
124 if (!updated
&& strncmp(line
, prefix
, pfxlen
) == 0) {
125 updated
= updmode
== UPD_REPLACE
? UPD_REPLACE
: UPD_DELETE
;
128 * Only actually write changes if updating
130 if (updmode
== UPD_REPLACE
)
131 strcpy(line
, newline
);
132 else if (updmode
== UPD_DELETE
)
140 * Now, we need to decide what to do: If we are in
141 * update mode, and no record was updated, then error If
142 * we are in insert mode, and record already exists,
145 if (updmode
!= updated
)
146 errno
= (updmode
== UPD_CREATE
) ? EEXIST
: ENOENT
;
150 * If adding a new record, append it to the end
152 if (updmode
== UPD_CREATE
)
153 fputs(newline
, outfp
);
156 * Flush the file and check for the result
158 rc
= fflush(outfp
) != EOF
;
162 * Copy data back into the
163 * original file and truncate
167 while (fgets(line
, linesize
, outfp
) != NULL
)
171 * If there was a problem with copying
172 * we will just rename 'file.new'
174 * This is a gross hack, but we may have
175 * corrupted the original file
176 * Unfortunately, it will lose the inode
177 * and hence the lock.
179 * The implications of this is that this invocation of pw
180 * won't have the file locked and concurrent copies
181 * of pw, vipw etc could clobber what this one is doing.
183 * It should probably just return an error instead
184 * of going on like nothing is wrong.
186 if (fflush(infp
) == EOF
|| ferror(infp
))
187 rc
= rename(file
, filename
) == 0;
189 ftruncate(infd
, ftell(infp
));