File: dirs.c

package info (click to toggle)
reprepro 5.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,792 kB
  • sloc: ansic: 52,309; sh: 1,875; python: 1,625; makefile: 167
file content (230 lines) | stat: -rw-r--r-- 5,374 bytes parent folder | download | duplicates (8)
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
223
224
225
226
227
228
229
230
/*  This file is part of "reprepro"
 *  Copyright (C) 2003 Bernhard R. Link
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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., 51 Franklin St, Fifth Floor, Boston, MA  02111-1301  USA
 */
#include <config.h>

#include <errno.h>
#include <assert.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "error.h"
#include "strlist.h"
#include "dirs.h"
#include "names.h"

/* create directory dirname. */
retvalue dirs_create(const char *dirname) {
	int ret, e;

	ret = mkdir(dirname, 0775);
	if (ret == 0) {
		if (verbose > 1)
			printf("Created directory \"%s\"\n", dirname);
		return RET_OK;
	} else if (ret < 0 && (e = errno) != EEXIST) {
		fprintf(stderr, "Error %d creating directory \"%s\": %s\n",
				e, dirname, strerror(e));
		return RET_ERROR;
	}
	return RET_NOTHING;
}

/* create recursively all parent directories before the last '/' */
retvalue dirs_make_parent(const char *filename) {
	const char *p;
	char *h;
	int i;
	retvalue r;

	for (p = filename+1, i = 1 ; *p != '\0' ; p++, i++) {
		if (*p == '/') {
			h = strndup(filename, i);
			if (FAILEDTOALLOC(h))
				return RET_ERROR_OOM;
			r = dirs_create(h);
			if (RET_WAS_ERROR(r)) {
				free(h);
				return r;
			}
			free(h);
		}
	}
	return RET_OK;
}

/* create dirname and any '/'-separated part of it */
retvalue dirs_make_recursive(const char *directory) {
	retvalue r, result;

	if (interrupted()) {
		return RET_ERROR_INTERRUPTED;
	}
	r = dirs_make_parent(directory);
	result = dirs_create(directory);
	RET_UPDATE(result, r);
	return result;
}

/* create directory and return the number of created directoried */
retvalue dir_create_needed(const char *directory, int *createddepth) {
	retvalue r;
	int ret;
	size_t len = strlen(directory);
	int check, depth = 0;
	char *this;
	int e;

	if (interrupted()) {
		return RET_ERROR_INTERRUPTED;
	}
	while (len > 0 && directory[len-1] == '/')
		len--;
	while (len > 0) {
		this = strndup(directory, len);
		if (FAILEDTOALLOC(this))
			return RET_ERROR_OOM;
		ret = mkdir(this, 0777);
		e = errno;
		if (ret == 0) {
			if (verbose > 1)
				printf("Created directory \"%s\"\n", this);
		} else if (e == EEXIST) {
			free(this);
			break;
		/* normally ENOENT should be the only problem,
		 * but check the others to be nice to annoying filesystems */
		} else if (e != ENOENT && e != EACCES && e != EPERM) {
			fprintf(stderr,
"Cannot create directory \"%s\": %s(%d)\n",
					this, strerror(e), e);
			free(this);
			return RET_ERRNO(e);
		}
		free(this);
		depth++;
		while (len > 0 && directory[len-1] != '/')
			len--;
		while (len > 0 && directory[len-1] == '/')
			len--;
	}
	check = depth;
	while (directory[len] == '/')
		len++;
	while (directory[len] != '\0') {
		while (directory[len] != '\0' && directory[len] != '/')
			len++;
		this = strndup(directory, len);
		if (FAILEDTOALLOC(this))
			return RET_ERROR_OOM;
		r = dirs_create(this);
		free(this);
		if (RET_WAS_ERROR(r))
			return r;
		// TODO: if we get RET_NOTHING here, reduce depth?
		check--;
		while (directory[len] == '/')
			len++;
	}
	assert(check == 0);
	*createddepth = depth;
	return RET_OK;
}

void dir_remove_new(const char *directory, int created) {
	size_t len = strlen(directory);
	char *this;
	int ret;

	while (len > 0 && directory[len-1] == '/')
		len--;
	while (created > 0 && len > 0) {
		this = strndup(directory, len);
		if (FAILEDTOALLOC(this))
			return;
		ret = rmdir(this);
		if (ret == 0) {
			if (verbose > 1)
				printf(
"Removed empty directory \"%s\"\n",
					this);
		} else {
			int e = errno;
			if (e != ENOTEMPTY) {
				fprintf(stderr,
"Error removing directory \"%s\": %s(%d)\n",
						this, strerror(e), e);
			}
			free(this);
			return;
		}
		free(this);
		created--;
		while (len > 0 && directory[len-1] != '/')
			len--;
		while (len > 0 && directory[len-1] == '/')
			len--;
	}
	return;
}

retvalue dirs_getdirectory(const char *filename, char **directory) {
	size_t len;

	assert (filename != NULL && *filename != '\0');

	len = strlen(filename);
	while (len > 1 && filename[len-1] == '/') {
		len--;
	}
	while (len > 0 && filename[len-1] != '/') {
		len--;
	}
	if (len == 0) {
		*directory = strdup(".");
	} else {
		if (len == 1)
			*directory = strdup("/");
		else
			*directory = strndup(filename, len-1);
	}
	if (FAILEDTOALLOC(*directory))
		return RET_ERROR_OOM;
	else
		return RET_OK;

}
const char *dirs_basename(const char *filename) {
	const char *bn;

	bn = strrchr(filename, '/');
	if (bn == NULL)
		return filename;
	// not really suited for the basename of directories,
	// things like /bla/blub/ will give empty string...
	return bn+1;
}

bool isdir(const char *fullfilename) {
	struct stat s;
	int i;

	assert(fullfilename != NULL);
	i = stat(fullfilename, &s);
	return i == 0 && S_ISDIR(s.st_mode);
}