blob: 16c36b02bdf85964d6f75adfe0c32c1c776f5485 [file] [log] [blame]
Rob Landleyd3904932013-07-16 00:04:56 -05001/* lib.c - various reusable stuff.
landley09ea7ac2006-10-30 01:38:00 -05002 *
3 * Copyright 2006 Rob Landley <rob@landley.net>
landley4f344e32006-10-05 16:18:03 -04004 */
5
6#include "toys.h"
7
landley09ea7ac2006-10-30 01:38:00 -05008void verror_msg(char *msg, int err, va_list va)
9{
Rob Landley7aa651a2012-11-13 17:14:08 -060010 char *s = ": %s";
Rob Landley12138e42008-01-27 15:26:08 -060011
Rob Landley7aa651a2012-11-13 17:14:08 -060012 fprintf(stderr, "%s: ", toys.which->name);
13 if (msg) vfprintf(stderr, msg, va);
14 else s+=2;
15 if (err) fprintf(stderr, s, strerror(err));
16 putc('\n', stderr);
Rob Landley662a2672013-01-02 02:00:35 -060017 if (!toys.exitval) toys.exitval++;
landley09ea7ac2006-10-30 01:38:00 -050018}
19
20void error_msg(char *msg, ...)
21{
Rob Landley7aa651a2012-11-13 17:14:08 -060022 va_list va;
landley09ea7ac2006-10-30 01:38:00 -050023
Rob Landley7aa651a2012-11-13 17:14:08 -060024 va_start(va, msg);
25 verror_msg(msg, 0, va);
26 va_end(va);
landley09ea7ac2006-10-30 01:38:00 -050027}
28
29void perror_msg(char *msg, ...)
30{
Rob Landley7aa651a2012-11-13 17:14:08 -060031 va_list va;
landley09ea7ac2006-10-30 01:38:00 -050032
Rob Landley7aa651a2012-11-13 17:14:08 -060033 va_start(va, msg);
34 verror_msg(msg, errno, va);
35 va_end(va);
landley09ea7ac2006-10-30 01:38:00 -050036}
37
landley4f344e32006-10-05 16:18:03 -040038// Die with an error message.
39void error_exit(char *msg, ...)
40{
Rob Landley7aa651a2012-11-13 17:14:08 -060041 va_list va;
landley4f344e32006-10-05 16:18:03 -040042
Rob Landley36ffc5a2013-04-14 21:43:22 -050043 if (CFG_TOYBOX_HELP && toys.exithelp) show_help();
Rob Landleyd06c58d2007-10-11 15:36:36 -050044
Rob Landley7aa651a2012-11-13 17:14:08 -060045 va_start(va, msg);
46 verror_msg(msg, 0, va);
47 va_end(va);
landley09ea7ac2006-10-30 01:38:00 -050048
Rob Landley55830302013-06-16 19:59:51 -050049 xexit();
landley09ea7ac2006-10-30 01:38:00 -050050}
51
52// Die with an error message and strerror(errno)
53void perror_exit(char *msg, ...)
54{
Rob Landley7aa651a2012-11-13 17:14:08 -060055 va_list va;
landley09ea7ac2006-10-30 01:38:00 -050056
Rob Landley7aa651a2012-11-13 17:14:08 -060057 va_start(va, msg);
58 verror_msg(msg, errno, va);
59 va_end(va);
landley09ea7ac2006-10-30 01:38:00 -050060
Rob Landley55830302013-06-16 19:59:51 -050061 xexit();
landley4f344e32006-10-05 16:18:03 -040062}
63
landley64b2e232006-10-30 10:01:19 -050064// Keep reading until full or EOF
Rob Landley90163772007-01-18 21:54:08 -050065ssize_t readall(int fd, void *buf, size_t len)
landley64b2e232006-10-30 10:01:19 -050066{
Rob Landley7aa651a2012-11-13 17:14:08 -060067 size_t count = 0;
Rob Landley15b23152008-07-18 04:15:59 -050068
Rob Landley7aa651a2012-11-13 17:14:08 -060069 while (count<len) {
Rob Landleydbbd3d62013-12-08 13:26:05 -060070 int i = read(fd, (char *)buf+count, len-count);
Rob Landley7aa651a2012-11-13 17:14:08 -060071 if (!i) break;
72 if (i<0) return i;
73 count += i;
74 }
landley64b2e232006-10-30 10:01:19 -050075
Rob Landley7aa651a2012-11-13 17:14:08 -060076 return count;
landley64b2e232006-10-30 10:01:19 -050077}
78
Rob Landleyf3e452a2007-01-08 02:49:39 -050079// Keep writing until done or EOF
Rob Landley90163772007-01-18 21:54:08 -050080ssize_t writeall(int fd, void *buf, size_t len)
Rob Landleyf3e452a2007-01-08 02:49:39 -050081{
Rob Landley7aa651a2012-11-13 17:14:08 -060082 size_t count = 0;
83 while (count<len) {
84 int i = write(fd, buf+count, len-count);
85 if (i<1) return i;
86 count += i;
87 }
Rob Landleyf3e452a2007-01-08 02:49:39 -050088
Rob Landley7aa651a2012-11-13 17:14:08 -060089 return count;
Rob Landleyf3e452a2007-01-08 02:49:39 -050090}
91
Rob Landleybc382be2013-09-16 23:41:51 -050092// skip this many bytes of input. Return 0 for success, >0 means this much
93// left after input skipped.
Rob Landley2037b832012-07-15 16:56:20 -050094off_t lskip(int fd, off_t offset)
95{
Rob Landleybc382be2013-09-16 23:41:51 -050096 off_t cur = lseek(fd, 0, SEEK_CUR);
Rob Landley2037b832012-07-15 16:56:20 -050097
Rob Landleybc382be2013-09-16 23:41:51 -050098 if (cur != -1) {
99 off_t end = lseek(fd, 0, SEEK_END) - cur;
Rob Landley2037b832012-07-15 16:56:20 -0500100
Rob Landleybc382be2013-09-16 23:41:51 -0500101 if (end > 0 && end < offset) return offset - end;
102 end = offset+cur;
103 if (end == lseek(fd, end, SEEK_SET)) return 0;
104 perror_exit("lseek");
Rob Landley7aa651a2012-11-13 17:14:08 -0600105 }
Rob Landleybc382be2013-09-16 23:41:51 -0500106
107 while (offset>0) {
108 int try = offset>sizeof(libbuf) ? sizeof(libbuf) : offset, or;
109
110 or = readall(fd, libbuf, try);
111 if (or < 0) perror_exit("lskip to %lld", (long long)offset);
112 else offset -= try;
113 if (or < try) break;
114 }
115
116 return offset;
Rob Landley2037b832012-07-15 16:56:20 -0500117}
118
Rob Landleyfe91e682012-11-22 21:18:09 -0600119// Split a path into linked list of components, tracking head and tail of list.
120// Filters out // entries with no contents.
121struct string_list **splitpath(char *path, struct string_list **list)
landley00f87f12006-10-25 18:38:37 -0400122{
Rob Landleyfe91e682012-11-22 21:18:09 -0600123 char *new = path;
landley00f87f12006-10-25 18:38:37 -0400124
Rob Landleyfe91e682012-11-22 21:18:09 -0600125 *list = 0;
126 do {
127 int len;
landley00f87f12006-10-25 18:38:37 -0400128
Rob Landleyfe91e682012-11-22 21:18:09 -0600129 if (*path && *path != '/') continue;
130 len = path-new;
131 if (len > 0) {
132 *list = xmalloc(sizeof(struct string_list) + len + 1);
133 (*list)->next = 0;
134 strncpy((*list)->str, new, len);
135 (*list)->str[len] = 0;
136 list = &(*list)->next;
137 }
138 new = path+1;
139 } while (*path++);
140
141 return list;
142}
143
Rob Landley0a04b3e2006-11-03 00:05:52 -0500144// Find all file in a colon-separated path with access type "type" (generally
145// X_OK or R_OK). Returns a list of absolute paths to each file found, in
146// order.
147
148struct string_list *find_in_path(char *path, char *filename)
Rob Landleyfa98d012006-11-02 02:57:27 -0500149{
Rob Landley7aa651a2012-11-13 17:14:08 -0600150 struct string_list *rlist = NULL, **prlist=&rlist;
151 char *cwd = xgetcwd();
Rob Landleyfa98d012006-11-02 02:57:27 -0500152
Rob Landley7aa651a2012-11-13 17:14:08 -0600153 for (;;) {
154 char *next = path ? strchr(path, ':') : NULL;
155 int len = next ? next-path : strlen(path);
156 struct string_list *rnext;
157 struct stat st;
Rob Landleyfa98d012006-11-02 02:57:27 -0500158
Rob Landley7aa651a2012-11-13 17:14:08 -0600159 rnext = xmalloc(sizeof(void *) + strlen(filename)
160 + (len ? len : strlen(cwd)) + 2);
161 if (!len) sprintf(rnext->str, "%s/%s", cwd, filename);
162 else {
163 char *res = rnext->str;
164 strncpy(res, path, len);
165 res += len;
166 *(res++) = '/';
167 strcpy(res, filename);
168 }
Rob Landleyfa98d012006-11-02 02:57:27 -0500169
Rob Landley7aa651a2012-11-13 17:14:08 -0600170 // Confirm it's not a directory.
171 if (!stat(rnext->str, &st) && S_ISREG(st.st_mode)) {
172 *prlist = rnext;
173 rnext->next = NULL;
174 prlist = &(rnext->next);
175 } else free(rnext);
Rob Landleyfa98d012006-11-02 02:57:27 -0500176
Rob Landley7aa651a2012-11-13 17:14:08 -0600177 if (!next) break;
178 path += len;
179 path++;
180 }
181 free(cwd);
landley00f87f12006-10-25 18:38:37 -0400182
Rob Landley7aa651a2012-11-13 17:14:08 -0600183 return rlist;
landley00f87f12006-10-25 18:38:37 -0400184}
landley09ea7ac2006-10-30 01:38:00 -0500185
Rob Landleyf5757162007-02-16 21:08:22 -0500186// atol() with the kilo/mega/giga/tera/peta/exa extensions.
187// (zetta and yotta don't fit in 64 bits.)
Rob Landley5e6dca62012-02-09 06:09:27 -0600188long atolx(char *numstr)
Rob Landleyf5757162007-02-16 21:08:22 -0500189{
Rob Landley7aa651a2012-11-13 17:14:08 -0600190 char *c, *suffixes="bkmgtpe", *end;
191 long val = strtol(numstr, &c, 0);
Rob Landleyf5757162007-02-16 21:08:22 -0500192
Rob Landley7aa651a2012-11-13 17:14:08 -0600193 if (*c) {
194 if (c != numstr && (end = strchr(suffixes, tolower(*c)))) {
195 int shift = end-suffixes;
196 if (shift--) val *= 1024L<<(shift*10);
197 } else {
198 while (isspace(*c)) c++;
199 if (*c) error_exit("not integer: %s", numstr);
200 }
201 }
Rob Landleyad63f4b2011-12-12 15:19:52 -0600202
Rob Landley7aa651a2012-11-13 17:14:08 -0600203 return val;
Rob Landleyf5757162007-02-16 21:08:22 -0500204}
205
Rob Landleyb5e74162013-11-28 21:11:34 -0600206long atolx_range(char *numstr, long low, long high)
207{
208 long val = atolx(numstr);
209
210 if (val < low) error_exit("%ld < %ld", val, low);
211 if (val > high) error_exit("%ld > %ld", val, high);
212
213 return val;
214}
215
Rob Landleyeb7ea222012-04-14 22:30:41 -0500216int numlen(long l)
217{
Rob Landley7aa651a2012-11-13 17:14:08 -0600218 int len = 0;
219 while (l) {
220 l /= 10;
221 len++;
222 }
223 return len;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500224}
225
Rob Landley2037b832012-07-15 16:56:20 -0500226int stridx(char *haystack, char needle)
227{
Rob Landley7aa651a2012-11-13 17:14:08 -0600228 char *off;
Rob Landley2037b832012-07-15 16:56:20 -0500229
Rob Landley7aa651a2012-11-13 17:14:08 -0600230 if (!needle) return -1;
231 off = strchr(haystack, needle);
232 if (!off) return -1;
Rob Landley2037b832012-07-15 16:56:20 -0500233
Rob Landley7aa651a2012-11-13 17:14:08 -0600234 return off-haystack;
Rob Landley2037b832012-07-15 16:56:20 -0500235}
236
Rob Landley055cfcb2007-01-14 20:20:06 -0500237// Return how long the file at fd is, if there's any way to determine it.
238off_t fdlength(int fd)
239{
Rob Landley035f27a2013-08-08 02:46:45 -0500240 struct stat st;
241 off_t base = 0, range = 1, expand = 1, old;
242
243 if (!fstat(fd, &st) && S_ISREG(st.st_mode)) return st.st_size;
Rob Landley055cfcb2007-01-14 20:20:06 -0500244
Rob Landley7aa651a2012-11-13 17:14:08 -0600245 // If the ioctl works for this, return it.
Rob Landley035f27a2013-08-08 02:46:45 -0500246 // TODO: is blocksize still always 512, or do we stat for it?
247 // unsigned int size;
248 // if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512L;
Rob Landley055cfcb2007-01-14 20:20:06 -0500249
Rob Landley7aa651a2012-11-13 17:14:08 -0600250 // If not, do a binary search for the last location we can read. (Some
251 // block devices don't do BLKGETSIZE right.) This should probably have
252 // a CONFIG option...
Rob Landley055cfcb2007-01-14 20:20:06 -0500253
Rob Landley035f27a2013-08-08 02:46:45 -0500254 // If not, do a binary search for the last location we can read.
255
Rob Landley7aa651a2012-11-13 17:14:08 -0600256 old = lseek(fd, 0, SEEK_CUR);
257 do {
258 char temp;
Rob Landley035f27a2013-08-08 02:46:45 -0500259 off_t pos = base + range / 2;
Rob Landley055cfcb2007-01-14 20:20:06 -0500260
Rob Landley7aa651a2012-11-13 17:14:08 -0600261 if (lseek(fd, pos, 0)>=0 && read(fd, &temp, 1)==1) {
Rob Landley035f27a2013-08-08 02:46:45 -0500262 off_t delta = (pos + 1) - base;
Rob Landley055cfcb2007-01-14 20:20:06 -0500263
Rob Landley035f27a2013-08-08 02:46:45 -0500264 base += delta;
265 if (expand) range = (expand <<= 1) - base;
266 else range -= delta;
Rob Landley7aa651a2012-11-13 17:14:08 -0600267 } else {
Rob Landley035f27a2013-08-08 02:46:45 -0500268 expand = 0;
269 range = pos - base;
Rob Landley7aa651a2012-11-13 17:14:08 -0600270 }
Rob Landley035f27a2013-08-08 02:46:45 -0500271 } while (range > 0);
Rob Landley055cfcb2007-01-14 20:20:06 -0500272
Rob Landley7aa651a2012-11-13 17:14:08 -0600273 lseek(fd, old, SEEK_SET);
Rob Landleyf15387d2008-07-18 05:43:44 -0500274
Rob Landley035f27a2013-08-08 02:46:45 -0500275 return base;
Rob Landley055cfcb2007-01-14 20:20:06 -0500276}
277
Rob Landley8fdcfdb2013-09-03 17:56:28 -0500278// Read contents of file as a single nul-terminated string.
279// malloc new one if buf=len=0
280char *readfile(char *name, char *buf, off_t len)
Rob Landley055cfcb2007-01-14 20:20:06 -0500281{
Rob Landley7aa651a2012-11-13 17:14:08 -0600282 int fd;
Rob Landley055cfcb2007-01-14 20:20:06 -0500283
Rob Landley7aa651a2012-11-13 17:14:08 -0600284 fd = open(name, O_RDONLY);
285 if (fd == -1) return 0;
Rob Landley8fdcfdb2013-09-03 17:56:28 -0500286
287 if (len<1) {
288 len = fdlength(fd);
289 // proc files don't report a length, so try 1 page minimum.
290 if (len<4096) len = 4096;
291 }
292 if (!buf) buf = xmalloc(len+1);
293
294 len = readall(fd, buf, len-1);
295 close(fd);
296 if (len<0) {
297 free(buf);
298 buf = 0;
299 } else buf[len] = 0;
Rob Landley055cfcb2007-01-14 20:20:06 -0500300
Rob Landley7aa651a2012-11-13 17:14:08 -0600301 return buf;
Rob Landley055cfcb2007-01-14 20:20:06 -0500302}
303
Rob Landleyf0153442013-04-26 02:41:05 -0500304// Sleep for this many thousandths of a second
305void msleep(long miliseconds)
306{
307 struct timespec ts;
308
309 ts.tv_sec = miliseconds/1000;
310 ts.tv_nsec = (miliseconds%1000)*1000000;
311 nanosleep(&ts, &ts);
312}
313
Rob Landley6b283412013-06-01 20:41:35 -0500314int64_t peek(void *ptr, int size)
315{
316 if (size & 8) {
317 int64_t *p = (int64_t *)ptr;
318 return *p;
319 } else if (size & 4) {
320 int *p = (int *)ptr;
321 return *p;
322 } else if (size & 2) {
323 short *p = (short *)ptr;
324 return *p;
325 } else {
326 char *p = (char *)ptr;
327 return *p;
328 }
329}
330
331void poke(void *ptr, uint64_t val, int size)
332{
333 if (size & 8) {
334 uint64_t *p = (uint64_t *)ptr;
335 *p = val;
336 } else if (size & 4) {
337 int *p = (int *)ptr;
338 *p = val;
339 } else if (size & 2) {
340 short *p = (short *)ptr;
341 *p = val;
342 } else {
343 char *p = (char *)ptr;
344 *p = val;
345 }
346}
347
Rob Landley2bfaaf22008-07-03 19:19:00 -0500348// Iterate through an array of files, opening each one and calling a function
349// on that filehandle and name. The special filename "-" means stdin if
350// flags is O_RDONLY, stdout otherwise. An empty argument list calls
351// function() on just stdin/stdout.
352//
353// Note: read only filehandles are automatically closed when function()
354// returns, but writeable filehandles must be close by function()
Rob Landleyad63f4b2011-12-12 15:19:52 -0600355void loopfiles_rw(char **argv, int flags, int permissions, int failok,
Rob Landley7aa651a2012-11-13 17:14:08 -0600356 void (*function)(int fd, char *name))
Rob Landley7634b552007-11-29 17:49:50 -0600357{
Rob Landley7aa651a2012-11-13 17:14:08 -0600358 int fd;
Rob Landley7634b552007-11-29 17:49:50 -0600359
Rob Landley7aa651a2012-11-13 17:14:08 -0600360 // If no arguments, read from stdin.
361 if (!*argv) function(flags ? 1 : 0, "-");
362 else do {
363 // Filename "-" means read from stdin.
364 // Inability to open a file prints a warning, but doesn't exit.
Rob Landley7634b552007-11-29 17:49:50 -0600365
Rob Landley7aa651a2012-11-13 17:14:08 -0600366 if (!strcmp(*argv,"-")) fd=0;
367 else if (0>(fd = open(*argv, flags, permissions)) && !failok) {
368 perror_msg("%s", *argv);
369 toys.exitval = 1;
370 continue;
371 }
372 function(fd, *argv);
373 if (flags == O_RDONLY) close(fd);
374 } while (*++argv);
Rob Landley7634b552007-11-29 17:49:50 -0600375}
Rob Landleybc078652007-12-15 21:47:25 -0600376
Rob Landleyad63f4b2011-12-12 15:19:52 -0600377// Call loopfiles_rw with O_RDONLY and !failok (common case).
Rob Landley2bfaaf22008-07-03 19:19:00 -0500378void loopfiles(char **argv, void (*function)(int fd, char *name))
379{
Rob Landley7aa651a2012-11-13 17:14:08 -0600380 loopfiles_rw(argv, O_RDONLY, 0, 0, function);
Rob Landley2bfaaf22008-07-03 19:19:00 -0500381}
382
Rob Landleybc078652007-12-15 21:47:25 -0600383// Slow, but small.
384
Rob Landley3fc4e0f2008-04-13 00:29:00 -0500385char *get_rawline(int fd, long *plen, char end)
Rob Landleybc078652007-12-15 21:47:25 -0600386{
Rob Landley7aa651a2012-11-13 17:14:08 -0600387 char c, *buf = NULL;
388 long len = 0;
Rob Landleybc078652007-12-15 21:47:25 -0600389
Rob Landley7aa651a2012-11-13 17:14:08 -0600390 for (;;) {
391 if (1>read(fd, &c, 1)) break;
392 if (!(len & 63)) buf=xrealloc(buf, len+65);
393 if ((buf[len++]=c) == end) break;
394 }
395 if (buf) buf[len]=0;
396 if (plen) *plen = len;
Rob Landleybc078652007-12-15 21:47:25 -0600397
Rob Landley7aa651a2012-11-13 17:14:08 -0600398 return buf;
Rob Landleybc078652007-12-15 21:47:25 -0600399}
400
401char *get_line(int fd)
402{
Rob Landley7aa651a2012-11-13 17:14:08 -0600403 long len;
404 char *buf = get_rawline(fd, &len, '\n');
Rob Landleybc078652007-12-15 21:47:25 -0600405
Rob Landley7aa651a2012-11-13 17:14:08 -0600406 if (buf && buf[--len]=='\n') buf[len]=0;
Rob Landleybc078652007-12-15 21:47:25 -0600407
Rob Landley7aa651a2012-11-13 17:14:08 -0600408 return buf;
Rob Landleybc078652007-12-15 21:47:25 -0600409}
410
Rob Landley67a069d2012-06-03 00:32:12 -0500411int wfchmodat(int fd, char *name, mode_t mode)
412{
Rob Landley7aa651a2012-11-13 17:14:08 -0600413 int rc = fchmodat(fd, name, mode, 0);
Rob Landley67a069d2012-06-03 00:32:12 -0500414
Rob Landley7aa651a2012-11-13 17:14:08 -0600415 if (rc) {
416 perror_msg("chmod '%s' to %04o", name, mode);
417 toys.exitval=1;
418 }
419 return rc;
Rob Landley67a069d2012-06-03 00:32:12 -0500420}
421
Rob Landleyc52db602012-07-30 01:01:33 -0500422static char *tempfile2zap;
423static void tempfile_handler(int i)
424{
Rob Landley7aa651a2012-11-13 17:14:08 -0600425 if (1 < (long)tempfile2zap) unlink(tempfile2zap);
426 _exit(1);
Rob Landleyc52db602012-07-30 01:01:33 -0500427}
428
Rob Landley42ecbab2007-12-18 02:02:21 -0600429// Open a temporary file to copy an existing file into.
430int copy_tempfile(int fdin, char *name, char **tempname)
431{
Rob Landley7aa651a2012-11-13 17:14:08 -0600432 struct stat statbuf;
433 int fd;
Rob Landley42ecbab2007-12-18 02:02:21 -0600434
Rob Landley7aa651a2012-11-13 17:14:08 -0600435 *tempname = xstrndup(name, strlen(name)+6);
436 strcat(*tempname,"XXXXXX");
437 if(-1 == (fd = mkstemp(*tempname))) error_exit("no temp file");
438 if (!tempfile2zap) sigatexit(tempfile_handler);
439 tempfile2zap = *tempname;
Rob Landley42ecbab2007-12-18 02:02:21 -0600440
Rob Landley7aa651a2012-11-13 17:14:08 -0600441 // Set permissions of output file
Rob Landley42ecbab2007-12-18 02:02:21 -0600442
Rob Landley7aa651a2012-11-13 17:14:08 -0600443 fstat(fdin, &statbuf);
444 fchmod(fd, statbuf.st_mode);
Rob Landley42ecbab2007-12-18 02:02:21 -0600445
Rob Landley7aa651a2012-11-13 17:14:08 -0600446 return fd;
Rob Landley42ecbab2007-12-18 02:02:21 -0600447}
448
449// Abort the copy and delete the temporary file.
450void delete_tempfile(int fdin, int fdout, char **tempname)
451{
Rob Landley7aa651a2012-11-13 17:14:08 -0600452 close(fdin);
453 close(fdout);
454 unlink(*tempname);
455 tempfile2zap = (char *)1;
456 free(*tempname);
457 *tempname = NULL;
Rob Landley42ecbab2007-12-18 02:02:21 -0600458}
459
460// Copy the rest of the data and replace the original with the copy.
461void replace_tempfile(int fdin, int fdout, char **tempname)
462{
Rob Landley7aa651a2012-11-13 17:14:08 -0600463 char *temp = xstrdup(*tempname);
Rob Landley42ecbab2007-12-18 02:02:21 -0600464
Rob Landley7aa651a2012-11-13 17:14:08 -0600465 temp[strlen(temp)-6]=0;
466 if (fdin != -1) {
467 xsendfile(fdin, fdout);
468 xclose(fdin);
469 }
470 xclose(fdout);
471 rename(*tempname, temp);
472 tempfile2zap = (char *)1;
473 free(*tempname);
474 free(temp);
475 *tempname = NULL;
Rob Landleybc078652007-12-15 21:47:25 -0600476}
Rob Landley7e849c52009-01-03 18:15:18 -0600477
478// Create a 256 entry CRC32 lookup table.
479
Rob Landleyb15b8fa2009-01-05 01:05:43 -0600480void crc_init(unsigned int *crc_table, int little_endian)
Rob Landley7e849c52009-01-03 18:15:18 -0600481{
Rob Landley7aa651a2012-11-13 17:14:08 -0600482 unsigned int i;
Rob Landley7e849c52009-01-03 18:15:18 -0600483
Rob Landley7aa651a2012-11-13 17:14:08 -0600484 // Init the CRC32 table (big endian)
485 for (i=0; i<256; i++) {
486 unsigned int j, c = little_endian ? i : i<<24;
487 for (j=8; j; j--)
488 if (little_endian) c = (c&1) ? (c>>1)^0xEDB88320 : c>>1;
489 else c=c&0x80000000 ? (c<<1)^0x04c11db7 : (c<<1);
490 crc_table[i] = c;
491 }
Rob Landley7e849c52009-01-03 18:15:18 -0600492}
Rob Landley26e7b5e2012-02-02 07:27:35 -0600493
494// Quick and dirty query size of terminal, doesn't do ANSI probe fallback.
Rob Landley10bdaa42013-11-07 09:04:50 -0600495// set x=80 y=25 before calling to provide defaults. Returns 0 if couldn't
496// determine size.
Rob Landley26e7b5e2012-02-02 07:27:35 -0600497
Rob Landley10bdaa42013-11-07 09:04:50 -0600498int terminal_size(unsigned *xx, unsigned *yy)
Rob Landley26e7b5e2012-02-02 07:27:35 -0600499{
Rob Landley7aa651a2012-11-13 17:14:08 -0600500 struct winsize ws;
Rob Landley10bdaa42013-11-07 09:04:50 -0600501 unsigned i, x = 0, y = 0;
Rob Landleyc9cc5302013-10-27 00:02:56 -0500502 char *s;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600503
Rob Landley10bdaa42013-11-07 09:04:50 -0600504 // stdin, stdout, stderr
Rob Landley7aa651a2012-11-13 17:14:08 -0600505 for (i=0; i<3; i++) {
Rob Landleyc9cc5302013-10-27 00:02:56 -0500506 memset(&ws, 0, sizeof(ws));
507 if (!ioctl(i, TIOCGWINSZ, &ws)) {
508 if (ws.ws_col) x = ws.ws_col;
509 if (ws.ws_row) y = ws.ws_row;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600510
Rob Landleyc9cc5302013-10-27 00:02:56 -0500511 break;
512 }
Rob Landley7aa651a2012-11-13 17:14:08 -0600513 }
Rob Landleyc9cc5302013-10-27 00:02:56 -0500514 s = getenv("COLUMNS");
515 if (s) sscanf(s, "%u", &x);
516 s = getenv("ROWS");
517 if (s) sscanf(s, "%u", &y);
Rob Landley26e7b5e2012-02-02 07:27:35 -0600518
Rob Landley10bdaa42013-11-07 09:04:50 -0600519 // Never return 0 for either value, leave it at default instead.
520 if (xx && x) *xx = x;
521 if (yy && y) *yy = y;
522
523 return x || y;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600524}
525
Rob Landleyf793d532012-02-27 21:56:49 -0600526int yesno(char *prompt, int def)
Rob Landley26e7b5e2012-02-02 07:27:35 -0600527{
Rob Landley7aa651a2012-11-13 17:14:08 -0600528 char buf;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600529
Rob Landleydb8eb322012-12-08 02:25:32 -0600530 fprintf(stderr, "%s (%c/%c):", prompt, def ? 'Y' : 'y', def ? 'n' : 'N');
531 fflush(stderr);
532 while (fread(&buf, 1, 1, stdin)) {
533 int new;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600534
Rob Landley22791082013-01-31 04:13:07 -0600535 // The letter changes the value, the newline (or space) returns it.
Rob Landleydb8eb322012-12-08 02:25:32 -0600536 if (isspace(buf)) break;
537 if (-1 != (new = stridx("ny", tolower(buf)))) def = new;
Rob Landley7aa651a2012-11-13 17:14:08 -0600538 }
Rob Landleyee00a7f2012-03-19 19:19:21 -0500539
Rob Landley7aa651a2012-11-13 17:14:08 -0600540 return def;
Rob Landley26e7b5e2012-02-02 07:27:35 -0600541}
Rob Landleyff9ee8f2012-02-18 15:12:41 -0600542
Rob Landley2dd50ad2012-02-26 13:48:00 -0600543struct signame {
Rob Landley7aa651a2012-11-13 17:14:08 -0600544 int num;
545 char *name;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600546};
547
548// Signals required by POSIX 2008:
549// http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html
550
551#define SIGNIFY(x) {SIG##x, #x}
552
553static struct signame signames[] = {
Rob Landley7aa651a2012-11-13 17:14:08 -0600554 SIGNIFY(ABRT), SIGNIFY(ALRM), SIGNIFY(BUS),
555 SIGNIFY(FPE), SIGNIFY(HUP), SIGNIFY(ILL), SIGNIFY(INT), SIGNIFY(KILL),
556 SIGNIFY(PIPE), SIGNIFY(QUIT), SIGNIFY(SEGV), SIGNIFY(TERM),
557 SIGNIFY(USR1), SIGNIFY(USR2), SIGNIFY(SYS), SIGNIFY(TRAP),
558 SIGNIFY(VTALRM), SIGNIFY(XCPU), SIGNIFY(XFSZ),
Rob Landleyc52db602012-07-30 01:01:33 -0500559
Rob Landley7aa651a2012-11-13 17:14:08 -0600560 // Start of non-terminal signals
Rob Landleyc52db602012-07-30 01:01:33 -0500561
Rob Landley7aa651a2012-11-13 17:14:08 -0600562 SIGNIFY(CHLD), SIGNIFY(CONT), SIGNIFY(STOP), SIGNIFY(TSTP),
563 SIGNIFY(TTIN), SIGNIFY(TTOU), SIGNIFY(URG)
Rob Landley2dd50ad2012-02-26 13:48:00 -0600564};
565
566// not in posix: SIGNIFY(STKFLT), SIGNIFY(WINCH), SIGNIFY(IO), SIGNIFY(PWR)
567// obsolete: SIGNIFY(PROF) SIGNIFY(POLL)
568
Rob Landleyc52db602012-07-30 01:01:33 -0500569// Install the same handler on every signal that defaults to killing the process
570void sigatexit(void *handler)
571{
Rob Landley7aa651a2012-11-13 17:14:08 -0600572 int i;
573 for (i=0; signames[i].num != SIGCHLD; i++) signal(signames[i].num, handler);
Rob Landleyc52db602012-07-30 01:01:33 -0500574}
Rob Landley2dd50ad2012-02-26 13:48:00 -0600575// Convert name to signal number. If name == NULL print names.
576int sig_to_num(char *pidstr)
577{
Rob Landley7aa651a2012-11-13 17:14:08 -0600578 int i;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600579
Rob Landley7aa651a2012-11-13 17:14:08 -0600580 if (pidstr) {
581 char *s;
582 i = strtol(pidstr, &s, 10);
583 if (!*s) return i;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600584
Rob Landley7aa651a2012-11-13 17:14:08 -0600585 if (!strncasecmp(pidstr, "sig", 3)) pidstr+=3;
586 }
587 for (i = 0; i < sizeof(signames)/sizeof(struct signame); i++)
588 if (!pidstr) xputs(signames[i].name);
589 else if (!strcasecmp(pidstr, signames[i].name)) return signames[i].num;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600590
Rob Landley7aa651a2012-11-13 17:14:08 -0600591 return -1;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600592}
593
594char *num_to_sig(int sig)
595{
Rob Landley7aa651a2012-11-13 17:14:08 -0600596 int i;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600597
Rob Landley7aa651a2012-11-13 17:14:08 -0600598 for (i=0; i<sizeof(signames)/sizeof(struct signame); i++)
599 if (signames[i].num == sig) return signames[i].name;
600 return NULL;
Rob Landley2dd50ad2012-02-26 13:48:00 -0600601}
Daniel Walter05744b32012-03-19 19:57:56 -0500602
Rob Landleyc52db602012-07-30 01:01:33 -0500603// premute mode bits based on posix mode strings.
Rob Landleyb6f601e2012-05-16 21:11:43 -0500604mode_t string_to_mode(char *modestr, mode_t mode)
Daniel Walter05744b32012-03-19 19:57:56 -0500605{
Rob Landley7aa651a2012-11-13 17:14:08 -0600606 char *whos = "ogua", *hows = "=+-", *whats = "xwrstX", *whys = "ogu";
607 char *s, *str = modestr;
Rob Landleycf6bcb22012-03-19 20:56:18 -0500608
Rob Landley7aa651a2012-11-13 17:14:08 -0600609 // Handle octal mode
610 if (isdigit(*str)) {
611 mode = strtol(str, &s, 8);
612 if (*s || (mode & ~(07777))) goto barf;
Rob Landleyb6f601e2012-05-16 21:11:43 -0500613
Rob Landley7aa651a2012-11-13 17:14:08 -0600614 return mode;
615 }
Rob Landleycf6bcb22012-03-19 20:56:18 -0500616
Rob Landley7aa651a2012-11-13 17:14:08 -0600617 // Gaze into the bin of permission...
618 for (;;) {
619 int i, j, dowho, dohow, dowhat, amask;
Rob Landleycf6bcb22012-03-19 20:56:18 -0500620
Rob Landley7aa651a2012-11-13 17:14:08 -0600621 dowho = dohow = dowhat = amask = 0;
Daniel Walter05744b32012-03-19 19:57:56 -0500622
Rob Landley7aa651a2012-11-13 17:14:08 -0600623 // Find the who, how, and what stanzas, in that order
624 while (*str && (s = strchr(whos, *str))) {
625 dowho |= 1<<(s-whos);
626 str++;
627 }
628 // If who isn't specified, like "a" but honoring umask.
629 if (!dowho) {
630 dowho = 8;
631 umask(amask=umask(0));
632 }
633 if (!*str || !(s = strchr(hows, *str))) goto barf;
634 dohow = *(str++);
Rob Landley67a069d2012-06-03 00:32:12 -0500635
Rob Landley7aa651a2012-11-13 17:14:08 -0600636 if (!dohow) goto barf;
637 while (*str && (s = strchr(whats, *str))) {
638 dowhat |= 1<<(s-whats);
639 str++;
640 }
Rob Landleyb6f601e2012-05-16 21:11:43 -0500641
Rob Landley7aa651a2012-11-13 17:14:08 -0600642 // Convert X to x for directory or if already executable somewhere
643 if ((dowhat&32) && (S_ISDIR(mode) || (mode&0111))) dowhat |= 1;
Rob Landleyb6f601e2012-05-16 21:11:43 -0500644
Rob Landley7aa651a2012-11-13 17:14:08 -0600645 // Copy mode from another category?
646 if (!dowhat && *str && (s = strchr(whys, *str))) {
647 dowhat = (mode>>(3*(s-whys)))&7;
648 str++;
649 }
Rob Landleyb6f601e2012-05-16 21:11:43 -0500650
Rob Landley7aa651a2012-11-13 17:14:08 -0600651 // Are we ready to do a thing yet?
652 if (*str && *(str++) != ',') goto barf;
Rob Landleyb6f601e2012-05-16 21:11:43 -0500653
Rob Landley7aa651a2012-11-13 17:14:08 -0600654 // Ok, apply the bits to the mode.
655 for (i=0; i<4; i++) {
656 for (j=0; j<3; j++) {
657 mode_t bit = 0;
658 int where = 1<<((3*i)+j);
Rob Landley31f49e72012-07-21 22:45:05 -0500659
Rob Landley7aa651a2012-11-13 17:14:08 -0600660 if (amask & where) continue;
Rob Landleyb6f601e2012-05-16 21:11:43 -0500661
Rob Landley7aa651a2012-11-13 17:14:08 -0600662 // Figure out new value at this location
663 if (i == 3) {
664 // suid/sticky bit.
665 if (j) {
666 if ((dowhat & 8) && (dowho&(8|(1<<i)))) bit++;
667 } else if (dowhat & 16) bit++;
668 } else {
669 if (!(dowho&(8|(1<<i)))) continue;
670 if (dowhat&(1<<j)) bit++;
671 }
Rob Landleyb6f601e2012-05-16 21:11:43 -0500672
Rob Landley7aa651a2012-11-13 17:14:08 -0600673 // When selection active, modify bit
Rob Landleyb6f601e2012-05-16 21:11:43 -0500674
Rob Landley7aa651a2012-11-13 17:14:08 -0600675 if (dohow == '=' || (bit && dohow == '-')) mode &= ~where;
676 if (bit && dohow != '-') mode |= where;
677 }
678 }
Rob Landleyb6f601e2012-05-16 21:11:43 -0500679
Rob Landley7aa651a2012-11-13 17:14:08 -0600680 if (!*str) break;
681 }
682 return mode;
Rob Landleyb6f601e2012-05-16 21:11:43 -0500683barf:
Rob Landley7aa651a2012-11-13 17:14:08 -0600684 error_exit("bad mode '%s'", modestr);
Daniel Walter05744b32012-03-19 19:57:56 -0500685}
Ashwini Kumar1a0eedf2012-08-26 21:17:00 -0500686
Rob Landley5a26a862013-06-02 00:24:24 -0500687// Format access mode into a drwxrwxrwx string
688void mode_to_string(mode_t mode, char *buf)
Felix Janda5a221e62013-04-22 22:29:43 +0200689{
690 char c, d;
691 int i, bit;
692
Rob Landley5a26a862013-06-02 00:24:24 -0500693 buf[10]=0;
Felix Janda5a221e62013-04-22 22:29:43 +0200694 for (i=0; i<9; i++) {
695 bit = mode & (1<<i);
696 c = i%3;
697 if (!c && (mode & (1<<((d=i/3)+9)))) {
698 c = "tss"[d];
699 if (!bit) c &= ~0x20;
700 } else c = bit ? "xwr"[c] : '-';
Rob Landley5a26a862013-06-02 00:24:24 -0500701 buf[9-i] = c;
Felix Janda5a221e62013-04-22 22:29:43 +0200702 }
703
704 if (S_ISDIR(mode)) c = 'd';
705 else if (S_ISBLK(mode)) c = 'b';
706 else if (S_ISCHR(mode)) c = 'c';
707 else if (S_ISLNK(mode)) c = 'l';
708 else if (S_ISFIFO(mode)) c = 'p';
709 else if (S_ISSOCK(mode)) c = 's';
710 else c = '-';
Rob Landley5a26a862013-06-02 00:24:24 -0500711 *buf = c;
Felix Janda5a221e62013-04-22 22:29:43 +0200712}