blob: f94d6fdfef8dcb1b792efde77e5a8270967f3bdf [file] [log] [blame]
landleycd9dfc32006-10-18 18:38:16 -04001/* vi: set sw=4 ts=4 :*/
Charlie Shepherd54524c92008-01-25 12:36:24 +00002/* lib.c - reusable stuff.
landley4f344e32006-10-05 16:18:03 -04003 *
landleycd9dfc32006-10-18 18:38:16 -04004 * Functions with the x prefix are wrappers for library functions. They either
5 * succeed or kill the program with an error message, but never return failure.
6 * They usually have the same arguments and return value as the function they
7 * wrap.
landley09ea7ac2006-10-30 01:38:00 -05008 *
9 * Copyright 2006 Rob Landley <rob@landley.net>
landley4f344e32006-10-05 16:18:03 -040010 */
11
12#include "toys.h"
13
Rob Landleye15850a2007-11-19 01:51:00 -060014// Strcpy with size checking: exit if there's not enough space for the string.
15void xstrcpy(char *dest, char *src, size_t size)
Rob Landley18d43ff2007-06-07 15:19:44 -040016{
Rob Landleye15850a2007-11-19 01:51:00 -060017 if (strlen(src)+1 > size) error_exit("xstrcpy");
18 strcpy(dest, src);
Rob Landley18d43ff2007-06-07 15:19:44 -040019}
Rob Landley18d43ff2007-06-07 15:19:44 -040020
landley09ea7ac2006-10-30 01:38:00 -050021void verror_msg(char *msg, int err, va_list va)
22{
Rob Landley12138e42008-01-27 15:26:08 -060023 char *s = ": %s";
24
landley09ea7ac2006-10-30 01:38:00 -050025 fprintf(stderr, "%s: ", toys.which->name);
Rob Landley12138e42008-01-27 15:26:08 -060026 if (msg) vfprintf(stderr, msg, va);
27 else s+=2;
28 if (err) fprintf(stderr, s, strerror(err));
landley09ea7ac2006-10-30 01:38:00 -050029 putc('\n', stderr);
30}
31
32void error_msg(char *msg, ...)
33{
34 va_list va;
35
36 va_start(va, msg);
37 verror_msg(msg, 0, va);
38 va_end(va);
39}
40
41void perror_msg(char *msg, ...)
42{
43 va_list va;
44
45 va_start(va, msg);
46 verror_msg(msg, errno, va);
47 va_end(va);
48}
49
landley4f344e32006-10-05 16:18:03 -040050// Die with an error message.
51void error_exit(char *msg, ...)
52{
landley09ea7ac2006-10-30 01:38:00 -050053 va_list va;
landley4f344e32006-10-05 16:18:03 -040054
Rob Landleyd06c58d2007-10-11 15:36:36 -050055 if (CFG_HELP && toys.exithelp) {
56 *toys.optargs=*toys.argv;
Rob Landley55928b12008-01-19 17:43:27 -060057 USE_HELP(help_main();) // dear gcc: shut up.
Rob Landleyd06c58d2007-10-11 15:36:36 -050058 fprintf(stderr,"\n");
59 }
60
landley09ea7ac2006-10-30 01:38:00 -050061 va_start(va, msg);
62 verror_msg(msg, 0, va);
63 va_end(va);
64
Rob Landleyaaffc072007-12-09 15:35:42 -060065 exit(!toys.exitval ? 1 : toys.exitval);
landley09ea7ac2006-10-30 01:38:00 -050066}
67
Rob Landley055cfcb2007-01-14 20:20:06 -050068
landley09ea7ac2006-10-30 01:38:00 -050069// Die with an error message and strerror(errno)
70void perror_exit(char *msg, ...)
71{
72 va_list va;
73
74 va_start(va, msg);
75 verror_msg(msg, errno, va);
76 va_end(va);
77
Rob Landleyaaffc072007-12-09 15:35:42 -060078 exit(!toys.exitval ? 1 : toys.exitval);
landley4f344e32006-10-05 16:18:03 -040079}
80
landley4f344e32006-10-05 16:18:03 -040081// Die unless we can allocate memory.
82void *xmalloc(size_t size)
83{
84 void *ret = malloc(size);
85 if (!ret) error_exit("xmalloc");
landleycd9dfc32006-10-18 18:38:16 -040086
87 return ret;
landley4f344e32006-10-05 16:18:03 -040088}
89
landleycd9dfc32006-10-18 18:38:16 -040090// Die unless we can allocate prezeroed memory.
91void *xzalloc(size_t size)
92{
93 void *ret = xmalloc(size);
Rob Landleyf6418542008-01-27 16:22:41 -060094 bzero(ret, size);
landleycd9dfc32006-10-18 18:38:16 -040095 return ret;
96}
97
98// Die unless we can change the size of an existing allocation, possibly
99// moving it. (Notice different arguments from libc function.)
Rob Landley0c93f6c2007-04-29 19:55:21 -0400100void *xrealloc(void *ptr, size_t size)
landleycd9dfc32006-10-18 18:38:16 -0400101{
Rob Landley0c93f6c2007-04-29 19:55:21 -0400102 ptr = realloc(ptr, size);
103 if (!ptr) error_exit("xrealloc");
104
105 return ptr;
landleycd9dfc32006-10-18 18:38:16 -0400106}
107
Rob Landleyfa98d012006-11-02 02:57:27 -0500108// Die unless we can allocate a copy of this many bytes of string.
landley4f344e32006-10-05 16:18:03 -0400109void *xstrndup(char *s, size_t n)
110{
Rob Landley3fc4e0f2008-04-13 00:29:00 -0500111 char *ret = xmalloc(++n);
112 strncpy(ret, s, n);
113 ret[--n]=0;
Rob Landley2c226852007-11-15 18:30:30 -0600114
landley4f344e32006-10-05 16:18:03 -0400115 return ret;
116}
117
Rob Landleyfa98d012006-11-02 02:57:27 -0500118// Die unless we can allocate a copy of this string.
119void *xstrdup(char *s)
120{
Rob Landleyf6418542008-01-27 16:22:41 -0600121 return xstrndup(s, strlen(s));
Rob Landleyfa98d012006-11-02 02:57:27 -0500122}
123
landley00f87f12006-10-25 18:38:37 -0400124// Die unless we can allocate enough space to sprintf() into.
125char *xmsprintf(char *format, ...)
126{
Rob Landley0d8dfb22007-06-15 15:16:46 -0400127 va_list va, va2;
landley00f87f12006-10-25 18:38:37 -0400128 int len;
129 char *ret;
Rob Landley2c226852007-11-15 18:30:30 -0600130
landley00f87f12006-10-25 18:38:37 -0400131 va_start(va, format);
Rob Landley0d8dfb22007-06-15 15:16:46 -0400132 va_copy(va2, va);
133
134 // How long is it?
landley00f87f12006-10-25 18:38:37 -0400135 len = vsnprintf(0, 0, format, va);
136 len++;
137 va_end(va);
138
139 // Allocate and do the sprintf()
140 ret = xmalloc(len);
Rob Landley2c226852007-11-15 18:30:30 -0600141 vsnprintf(ret, len, format, va2);
Rob Landley0d8dfb22007-06-15 15:16:46 -0400142 va_end(va2);
landley00f87f12006-10-25 18:38:37 -0400143
144 return ret;
145}
146
Rob Landley24d1d452007-01-20 18:04:20 -0500147void xprintf(char *format, ...)
148{
149 va_list va;
150 va_start(va, format);
151
152 vprintf(format, va);
153 if (ferror(stdout)) perror_exit("write");
154}
155
Rob Landley5084fea2007-06-18 00:14:03 -0400156void xputs(char *s)
157{
158 if (EOF == puts(s)) perror_exit("write");
159}
160
Rob Landley24d1d452007-01-20 18:04:20 -0500161void xputc(char c)
162{
163 if (EOF == fputc(c, stdout)) perror_exit("write");
164}
165
166void xflush(void)
167{
168 if (fflush(stdout)) perror_exit("write");;
169}
170
landleycd9dfc32006-10-18 18:38:16 -0400171// Die unless we can exec argv[] (or run builtin command). Note that anything
172// with a path isn't a builtin, so /bin/sh won't match the builtin sh.
landley09ea7ac2006-10-30 01:38:00 -0500173void xexec(char **argv)
landley4f344e32006-10-05 16:18:03 -0400174{
landleycd9dfc32006-10-18 18:38:16 -0400175 toy_exec(argv);
landley4f344e32006-10-05 16:18:03 -0400176 execvp(argv[0], argv);
177 error_exit("No %s", argv[0]);
178}
179
Rob Landleyd3e9d642007-01-08 03:25:47 -0500180void xaccess(char *path, int flags)
181{
Charlie Shepherd94dd3e72008-01-25 12:54:31 +0000182 if (access(path, flags)) perror_exit("Can't access '%s'", path);
Rob Landleyd3e9d642007-01-08 03:25:47 -0500183}
184
Rob Landleye745d8e2007-12-20 06:30:19 -0600185// Die unless we can delete a file. (File must exist to be deleted.)
186void xunlink(char *path)
187{
188 if (unlink(path)) perror_exit("unlink '%s'", path);
189}
190
landley4f344e32006-10-05 16:18:03 -0400191// Die unless we can open/create a file, returning file descriptor.
Rob Landley1322beb2007-01-07 22:51:12 -0500192int xcreate(char *path, int flags, int mode)
landley4f344e32006-10-05 16:18:03 -0400193{
194 int fd = open(path, flags, mode);
Rob Landley961e1712007-11-04 15:31:06 -0600195 if (fd == -1) perror_exit("%s", path);
landley4f344e32006-10-05 16:18:03 -0400196 return fd;
197}
198
Rob Landley1322beb2007-01-07 22:51:12 -0500199// Die unless we can open a file, returning file descriptor.
200int xopen(char *path, int flags)
201{
202 return xcreate(path, flags, 0);
203}
204
Rob Landleybc078652007-12-15 21:47:25 -0600205void xclose(int fd)
206{
207 if (close(fd)) perror_exit("xclose");
208}
209
landley4f344e32006-10-05 16:18:03 -0400210// Die unless we can open/create a file, returning FILE *.
211FILE *xfopen(char *path, char *mode)
212{
213 FILE *f = fopen(path, mode);
Charlie Shepherd94dd3e72008-01-25 12:54:31 +0000214 if (!f) perror_exit("No file %s", path);
landley4f344e32006-10-05 16:18:03 -0400215 return f;
216}
landley00f87f12006-10-25 18:38:37 -0400217
landley64b2e232006-10-30 10:01:19 -0500218// Keep reading until full or EOF
Rob Landley90163772007-01-18 21:54:08 -0500219ssize_t readall(int fd, void *buf, size_t len)
landley64b2e232006-10-30 10:01:19 -0500220{
Rob Landley90163772007-01-18 21:54:08 -0500221 size_t count = 0;
Rob Landley15b23152008-07-18 04:15:59 -0500222
Rob Landley90163772007-01-18 21:54:08 -0500223 while (count<len) {
224 int i = read(fd, buf+count, len-count);
Rob Landley15b23152008-07-18 04:15:59 -0500225 if (!i) break;
landley64b2e232006-10-30 10:01:19 -0500226 if (i<0) return i;
227 count += i;
228 }
229
230 return count;
231}
232
Rob Landleyf3e452a2007-01-08 02:49:39 -0500233// Keep writing until done or EOF
Rob Landley90163772007-01-18 21:54:08 -0500234ssize_t writeall(int fd, void *buf, size_t len)
Rob Landleyf3e452a2007-01-08 02:49:39 -0500235{
Rob Landley90163772007-01-18 21:54:08 -0500236 size_t count = 0;
237 while (count<len) {
238 int i = write(fd, buf+count, len-count);
239 if (i<1) return i;
Rob Landleyf3e452a2007-01-08 02:49:39 -0500240 count += i;
241 }
242
243 return count;
244}
245
Rob Landley055cfcb2007-01-14 20:20:06 -0500246// Die if there's an error other than EOF.
Rob Landley90163772007-01-18 21:54:08 -0500247size_t xread(int fd, void *buf, size_t len)
landley64b2e232006-10-30 10:01:19 -0500248{
Rob Landley90163772007-01-18 21:54:08 -0500249 len = read(fd, buf, len);
250 if (len < 0) perror_exit("xread");
Rob Landley055cfcb2007-01-14 20:20:06 -0500251
Rob Landley90163772007-01-18 21:54:08 -0500252 return len;
Rob Landley055cfcb2007-01-14 20:20:06 -0500253}
254
Rob Landley90163772007-01-18 21:54:08 -0500255void xreadall(int fd, void *buf, size_t len)
Rob Landley055cfcb2007-01-14 20:20:06 -0500256{
Rob Landley90163772007-01-18 21:54:08 -0500257 if (len != readall(fd, buf, len)) perror_exit("xreadall");
Rob Landley055cfcb2007-01-14 20:20:06 -0500258}
landley00f87f12006-10-25 18:38:37 -0400259
Rob Landley90163772007-01-18 21:54:08 -0500260// There's no xwriteall(), just xwrite(). When we read, there may or may not
261// be more data waiting. When we write, there is data and it had better go
262// somewhere.
263
264void xwrite(int fd, void *buf, size_t len)
Rob Landleyf3e452a2007-01-08 02:49:39 -0500265{
Rob Landley90163772007-01-18 21:54:08 -0500266 if (len != writeall(fd, buf, len)) perror_exit("xwrite");
Rob Landleyf3e452a2007-01-08 02:49:39 -0500267}
268
landley00f87f12006-10-25 18:38:37 -0400269char *xgetcwd(void)
270{
271 char *buf = getcwd(NULL, 0);
Rob Landley24d1d452007-01-20 18:04:20 -0500272 if (!buf) perror_exit("xgetcwd");
landley09ea7ac2006-10-30 01:38:00 -0500273
274 return buf;
landley00f87f12006-10-25 18:38:37 -0400275}
276
Rob Landleyd25f7e42007-02-03 14:11:26 -0500277void xstat(char *path, struct stat *st)
278{
Rob Landleyf6418542008-01-27 16:22:41 -0600279 if(stat(path, st)) perror_exit("Can't stat %s", path);
Rob Landleyd25f7e42007-02-03 14:11:26 -0500280}
281
Rob Landleyfa98d012006-11-02 02:57:27 -0500282// Cannonicalizes path by removing ".", "..", and "//" elements. This is not
Rob Landleyc6f481c2006-12-30 22:01:47 -0500283// the same as realpath(), where "dir/.." could wind up somewhere else by
284// following symlinks.
Rob Landleyfa98d012006-11-02 02:57:27 -0500285char *xabspath(char *path)
landley00f87f12006-10-25 18:38:37 -0400286{
Rob Landleyfa98d012006-11-02 02:57:27 -0500287 char *from, *to;
landley00f87f12006-10-25 18:38:37 -0400288
Rob Landleyfa98d012006-11-02 02:57:27 -0500289 // If this isn't an absolute path, make it one with cwd.
290 if (path[0]!='/') {
291 char *cwd=xgetcwd();
Rob Landleyf6418542008-01-27 16:22:41 -0600292 path = xmsprintf("%s/%s", cwd, path);
Rob Landleyfa98d012006-11-02 02:57:27 -0500293 free(cwd);
294 } else path = xstrdup(path);
landley00f87f12006-10-25 18:38:37 -0400295
Rob Landleyfa98d012006-11-02 02:57:27 -0500296 // Loop through path elements
297 from = to = path;
298 while (*from) {
299
300 // Continue any current path component.
301 if (*from!='/') {
302 *(to++) = *(from++);
303 continue;
landley00f87f12006-10-25 18:38:37 -0400304 }
Rob Landleyfa98d012006-11-02 02:57:27 -0500305
306 // Skip duplicate slashes.
307 while (*from=='/') from++;
Rob Landley2c226852007-11-15 18:30:30 -0600308
Rob Landleyfa98d012006-11-02 02:57:27 -0500309 // Start of a new filename. Handle . and ..
310 while (*from=='.') {
311 // Skip .
312 if (from[1]=='/') from += 2;
313 else if (!from[1]) from++;
314 // Back up for ..
315 else if (from[1]=='.') {
316 if (from[2]=='/') from +=3;
317 else if(!from[2]) from+=2;
318 else break;
319 while (to>path && *(--to)!='/');
320 } else break;
321 }
322 // Add directory separator slash.
323 *(to++) = '/';
324 }
325 *to = 0;
326
327 return path;
328}
329
Rob Landley988abb32008-05-12 00:52:27 -0500330void xchdir(char *path)
331{
332 if (chdir(path)) error_exit("chdir '%s'");
333}
334
Rob Landley35483412007-12-27 21:36:33 -0600335// Ensure entire path exists.
336// If mode != -1 set permissions on newly created dirs.
337// Requires that path string be writable (for temporary null terminators).
338void xmkpath(char *path, int mode)
339{
340 char *p, old;
341 mode_t mask;
342 int rc;
343 struct stat st;
344
345 for (p = path; ; p++) {
346 if (!*p || *p == '/') {
347 old = *p;
348 *p = rc = 0;
349 if (stat(path, &st) || !S_ISDIR(st.st_mode)) {
350 if (mode != -1) {
351 mask=umask(0);
352 rc = mkdir(path, mode);
353 umask(mask);
354 } else rc = mkdir(path, 0777);
355 }
356 *p = old;
Rob Landleyf6418542008-01-27 16:22:41 -0600357 if(rc) perror_exit("mkpath '%s'", path);
Rob Landley35483412007-12-27 21:36:33 -0600358 }
359 if (!*p) break;
360 }
361}
Rob Landley0a04b3e2006-11-03 00:05:52 -0500362// Find all file in a colon-separated path with access type "type" (generally
363// X_OK or R_OK). Returns a list of absolute paths to each file found, in
364// order.
365
366struct string_list *find_in_path(char *path, char *filename)
Rob Landleyfa98d012006-11-02 02:57:27 -0500367{
Rob Landley59f490c2008-05-17 17:52:51 -0500368 struct string_list *rlist = NULL, **prlist=&rlist;
Rob Landley0a04b3e2006-11-03 00:05:52 -0500369 char *cwd = xgetcwd();
Rob Landleyfa98d012006-11-02 02:57:27 -0500370
371 for (;;) {
372 char *next = path ? index(path, ':') : NULL;
373 int len = next ? next-path : strlen(path);
Rob Landley0a04b3e2006-11-03 00:05:52 -0500374 struct string_list *rnext;
375 struct stat st;
Rob Landleyfa98d012006-11-02 02:57:27 -0500376
Rob Landley0a04b3e2006-11-03 00:05:52 -0500377 rnext = xmalloc(sizeof(void *) + strlen(filename)
378 + (len ? len : strlen(cwd)) + 2);
379 if (!len) sprintf(rnext->str, "%s/%s", cwd, filename);
Rob Landleyfa98d012006-11-02 02:57:27 -0500380 else {
Rob Landley0a04b3e2006-11-03 00:05:52 -0500381 char *res = rnext->str;
Rob Landleyfa98d012006-11-02 02:57:27 -0500382 strncpy(res, path, len);
Rob Landley0a04b3e2006-11-03 00:05:52 -0500383 res += len;
384 *(res++) = '/';
385 strcpy(res, filename);
Rob Landleyfa98d012006-11-02 02:57:27 -0500386 }
387
Rob Landley0a04b3e2006-11-03 00:05:52 -0500388 // Confirm it's not a directory.
389 if (!stat(rnext->str, &st) && S_ISREG(st.st_mode)) {
Rob Landley59f490c2008-05-17 17:52:51 -0500390 *prlist = rnext;
391 rnext->next = NULL;
392 prlist = &(rnext->next);
Rob Landley0a04b3e2006-11-03 00:05:52 -0500393 } else free(rnext);
Rob Landleyfa98d012006-11-02 02:57:27 -0500394
Rob Landleyfa98d012006-11-02 02:57:27 -0500395 if (!next) break;
396 path += len;
397 path++;
landley00f87f12006-10-25 18:38:37 -0400398 }
399 free(cwd);
400
Rob Landley0a04b3e2006-11-03 00:05:52 -0500401 return rlist;
landley00f87f12006-10-25 18:38:37 -0400402}
landley09ea7ac2006-10-30 01:38:00 -0500403
404// Convert unsigned int to ascii, writing into supplied buffer. A truncated
405// result contains the first few digits of the result ala strncpy, and is
406// always null terminated (unless buflen is 0).
407void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
408{
409 int i, out = 0;
410
411 if (buflen) {
412 for (i=1000000000; i; i/=10) {
413 int res = n/i;
414
415 if ((res || out || i == 1) && --buflen>0) {
416 out++;
417 n -= res*i;
418 *buf++ = '0' + res;
419 }
420 }
421 *buf = 0;
422 }
423}
424
425// Convert signed integer to ascii, using utoa_to_buf()
426void itoa_to_buf(int n, char *buf, unsigned buflen)
427{
428 if (buflen && n<0) {
429 n = -n;
430 *buf++ = '-';
431 buflen--;
432 }
433 utoa_to_buf((unsigned)n, buf, buflen);
434}
435
436// This static buffer is used by both utoa() and itoa(), calling either one a
437// second time will overwrite the previous results.
438//
439// The longest 32 bit integer is -2 billion plus a null terminator: 12 bytes.
440// Note that int is always 32 bits on any remotely unix-like system, see
441// http://www.unix.org/whitepapers/64bit.html for details.
442
443static char itoa_buf[12];
444
445// Convert unsigned integer to ascii, returning a static buffer.
446char *utoa(unsigned n)
447{
448 utoa_to_buf(n, itoa_buf, sizeof(itoa_buf));
449
450 return itoa_buf;
451}
452
453char *itoa(int n)
454{
455 itoa_to_buf(n, itoa_buf, sizeof(itoa_buf));
456
457 return itoa_buf;
458}
Rob Landley055cfcb2007-01-14 20:20:06 -0500459
Rob Landleyf5757162007-02-16 21:08:22 -0500460// atol() with the kilo/mega/giga/tera/peta/exa extensions.
461// (zetta and yotta don't fit in 64 bits.)
462long atolx(char *c)
463{
464 char *suffixes="kmgtpe", *end;
465 long val = strtol(c, &c, 0);
466
Rob Landley6a6dee32007-11-04 15:32:59 -0600467 if (*c) {
468 end = strchr(suffixes, tolower(*c));
469 if (end) val *= 1024L<<((end-suffixes)*10);
470 }
Rob Landleyf5757162007-02-16 21:08:22 -0500471 return val;
472}
473
Rob Landley055cfcb2007-01-14 20:20:06 -0500474// Return how long the file at fd is, if there's any way to determine it.
475off_t fdlength(int fd)
476{
Rob Landleyf15387d2008-07-18 05:43:44 -0500477 off_t bottom = 0, top = 0, pos, old;
Rob Landleye2580db2007-01-23 13:20:38 -0500478 int size;
Rob Landley055cfcb2007-01-14 20:20:06 -0500479
480 // If the ioctl works for this, return it.
481
Rob Landleye2580db2007-01-23 13:20:38 -0500482 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512L;
Rob Landley055cfcb2007-01-14 20:20:06 -0500483
484 // If not, do a binary search for the last location we can read. (Some
485 // block devices don't do BLKGETSIZE right.) This should probably have
486 // a CONFIG option...
487
Rob Landleyf15387d2008-07-18 05:43:44 -0500488 old = lseek(fd, 0, SEEK_CUR);
Rob Landley055cfcb2007-01-14 20:20:06 -0500489 do {
490 char temp;
491
492 pos = bottom + (top - bottom) / 2;
493
494 // If we can read from the current location, it's bigger.
495
Rob Landleyb3a33822007-01-25 16:10:37 -0500496 if (lseek(fd, pos, 0)>=0 && read(fd, &temp, 1)==1) {
Rob Landley055cfcb2007-01-14 20:20:06 -0500497 if (bottom == top) bottom = top = (top+1) * 2;
498 else bottom = pos;
499
500 // If we can't, it's smaller.
501
502 } else {
503 if (bottom == top) {
504 if (!top) return 0;
505 bottom = top/2;
506 } else top = pos;
507 }
508 } while (bottom + 1 != top);
509
Rob Landleyf15387d2008-07-18 05:43:44 -0500510 lseek(fd, old, SEEK_SET);
511
Rob Landley055cfcb2007-01-14 20:20:06 -0500512 return pos + 1;
513}
514
Rob Landley0c93f6c2007-04-29 19:55:21 -0400515// This can return null (meaning file not found). It just won't return null
516// for memory allocation reasons.
517char *xreadlink(char *name)
518{
519 int len, size = 0;
520 char *buf = 0;
521
522 // Grow by 64 byte chunks until it's big enough.
523 for(;;) {
524 size +=64;
525 buf = xrealloc(buf, size);
526 len = readlink(name, buf, size);
527
528 if (len<0) {
529 free(buf);
530 return 0;
531 }
532 if (len<size) {
533 buf[len]=0;
534 return buf;
535 }
536 }
537}
538
Rob Landleyb3a33822007-01-25 16:10:37 -0500539/*
540 This might be of use or might not. Unknown yet...
541
Rob Landley055cfcb2007-01-14 20:20:06 -0500542// Read contents of file as a single freshly allocated nul-terminated string.
543char *readfile(char *name)
544{
545 off_t len;
546 int fd;
547 char *buf;
548
Rob Landley2c226852007-11-15 18:30:30 -0600549 fd = open(name, O_RDONLY);
Rob Landley055cfcb2007-01-14 20:20:06 -0500550 if (fd == -1) return 0;
551 len = fdlength(fd);
552 buf = xmalloc(len+1);
Rob Landleye824ed12008-07-18 08:43:18 -0500553 buf[xreadall(fd, buf, len)] = 0;
Rob Landley055cfcb2007-01-14 20:20:06 -0500554
555 return buf;
556}
557
558char *xreadfile(char *name)
559{
560 char *buf = readfile(name);
Rob Landley24d1d452007-01-20 18:04:20 -0500561 if (!buf) perror_exit("xreadfile %s", name);
Rob Landley055cfcb2007-01-14 20:20:06 -0500562 return buf;
563}
564
565*/
566
567// Open a /var/run/NAME.pid file, dying if we can't write it or if it currently
568// exists and is this executable.
569void xpidfile(char *name)
570{
571 char pidfile[256], spid[32];
572 int i, fd;
573 pid_t pid;
574
575 sprintf(pidfile, "/var/run/%s.pid", name);
576 // Try three times to open the sucker.
577 for (i=0; i<3; i++) {
578 fd = open(pidfile, O_CREAT|O_EXCL, 0644);
579 if (fd != -1) break;
580
581 // If it already existed, read it. Loop for race condition.
582 fd = open(pidfile, O_RDONLY);
583 if (fd == -1) continue;
584
585 // Is the old program still there?
586 spid[xread(fd, spid, sizeof(spid)-1)] = 0;
587 close(fd);
588 pid = atoi(spid);
589 if (fd < 1 || kill(pid, 0) == ESRCH) unlink(pidfile);
590
591 // An else with more sanity checking might be nice here.
592 }
Rob Landley2c226852007-11-15 18:30:30 -0600593
Rob Landley055cfcb2007-01-14 20:20:06 -0500594 if (i == 3) error_exit("xpidfile %s", name);
595
596 xwrite(fd, spid, sprintf(spid, "%ld\n", (long)getpid()));
597 close(fd);
598}
Rob Landley7634b552007-11-29 17:49:50 -0600599
Rob Landley2bfaaf22008-07-03 19:19:00 -0500600// Iterate through an array of files, opening each one and calling a function
601// on that filehandle and name. The special filename "-" means stdin if
602// flags is O_RDONLY, stdout otherwise. An empty argument list calls
603// function() on just stdin/stdout.
604//
605// Note: read only filehandles are automatically closed when function()
606// returns, but writeable filehandles must be close by function()
607void loopfiles_rw(char **argv, int flags, void (*function)(int fd, char *name))
Rob Landley7634b552007-11-29 17:49:50 -0600608{
609 int fd;
610
611 // If no arguments, read from stdin.
Rob Landley2bfaaf22008-07-03 19:19:00 -0500612 if (!*argv) function(flags ? 1 : 0, "-");
Rob Landley7634b552007-11-29 17:49:50 -0600613 else do {
614 // Filename "-" means read from stdin.
615 // Inability to open a file prints a warning, but doesn't exit.
616
617 if (!strcmp(*argv,"-")) fd=0;
Rob Landley2bfaaf22008-07-03 19:19:00 -0500618 else if (0>(fd = open(*argv, flags, 0666))) {
Rob Landleyf6418542008-01-27 16:22:41 -0600619 perror_msg("%s", *argv);
Rob Landley7634b552007-11-29 17:49:50 -0600620 toys.exitval = 1;
Rob Landley3632d5d2008-01-01 02:39:29 -0600621 continue;
Rob Landley7634b552007-11-29 17:49:50 -0600622 }
623 function(fd, *argv);
Rob Landley2bfaaf22008-07-03 19:19:00 -0500624 if (!flags) close(fd);
Rob Landley7634b552007-11-29 17:49:50 -0600625 } while (*++argv);
626}
Rob Landleybc078652007-12-15 21:47:25 -0600627
Rob Landley2bfaaf22008-07-03 19:19:00 -0500628// Call loopfiles_rw with O_RDONLY (common case).
629void loopfiles(char **argv, void (*function)(int fd, char *name))
630{
631 loopfiles_rw(argv, O_RDONLY, function);
632}
633
Rob Landleybc078652007-12-15 21:47:25 -0600634// Slow, but small.
635
Rob Landley3fc4e0f2008-04-13 00:29:00 -0500636char *get_rawline(int fd, long *plen, char end)
Rob Landleybc078652007-12-15 21:47:25 -0600637{
638 char c, *buf = NULL;
639 long len = 0;
640
641 for (;;) {
642 if (1>read(fd, &c, 1)) break;
643 if (!(len & 63)) buf=xrealloc(buf, len+64);
Rob Landley3fc4e0f2008-04-13 00:29:00 -0500644 if ((buf[len++]=c) == end) break;
Rob Landleybc078652007-12-15 21:47:25 -0600645 }
646 if (buf) buf[len]=0;
647 if (plen) *plen = len;
648
649 return buf;
650}
651
652char *get_line(int fd)
653{
654 long len;
Rob Landley3fc4e0f2008-04-13 00:29:00 -0500655 char *buf = get_rawline(fd, &len, '\n');
Rob Landleybc078652007-12-15 21:47:25 -0600656
657 if (buf && buf[--len]=='\n') buf[len]=0;
658
659 return buf;
660}
661
662// Copy the rest of in to out and close both files.
663
664void xsendfile(int in, int out)
665{
666 long len;
Rob Landley42ecbab2007-12-18 02:02:21 -0600667 char buf[4096];
Rob Landleybc078652007-12-15 21:47:25 -0600668
669 if (in<0) return;
670 for (;;) {
Rob Landley42ecbab2007-12-18 02:02:21 -0600671 len = xread(in, buf, 4096);
Rob Landleybc078652007-12-15 21:47:25 -0600672 if (len<1) break;
Rob Landley42ecbab2007-12-18 02:02:21 -0600673 xwrite(out, buf, len);
Rob Landleybc078652007-12-15 21:47:25 -0600674 }
Rob Landley42ecbab2007-12-18 02:02:21 -0600675}
676
677// Open a temporary file to copy an existing file into.
678int copy_tempfile(int fdin, char *name, char **tempname)
679{
680 struct stat statbuf;
681 int fd;
682
683 *tempname = xstrndup(name, strlen(name)+6);
684 strcat(*tempname,"XXXXXX");
685 if(-1 == (fd = mkstemp(*tempname))) error_exit("no temp file");
686
687 // Set permissions of output file
688
689 fstat(fdin, &statbuf);
690 fchmod(fd, statbuf.st_mode);
691
692 return fd;
693}
694
695// Abort the copy and delete the temporary file.
696void delete_tempfile(int fdin, int fdout, char **tempname)
697{
698 close(fdin);
699 close(fdout);
700 unlink(*tempname);
701 free(*tempname);
702 *tempname = NULL;
703}
704
705// Copy the rest of the data and replace the original with the copy.
706void replace_tempfile(int fdin, int fdout, char **tempname)
707{
708 char *temp = xstrdup(*tempname);
709
710 temp[strlen(temp)-6]=0;
711 if (fdin != -1) {
712 xsendfile(fdin, fdout);
713 xclose(fdin);
714 }
715 xclose(fdout);
716 rename(*tempname, temp);
717 free(*tempname);
718 free(temp);
719 *tempname = NULL;
Rob Landleybc078652007-12-15 21:47:25 -0600720}
Rob Landley7e849c52009-01-03 18:15:18 -0600721
722// Create a 256 entry CRC32 lookup table.
723
724void crc_init(unsigned int *crc_table)
725{
726 unsigned int i;
727
728 // Init the CRC32 table (big endian)
729 for (i=0; i<256; i++) {
730 unsigned int j, c = i<<24;
731 for (j=8; j; j--)
732 c=c&0x80000000 ? (c<<1)^0x04c11db7 : (c<<1);
733 crc_table[i] = c;
734 }
735}