Line data Source code
1 : #include "burp.h"
2 : #include "alloc.h"
3 : #include "log.h"
4 : #include "prepend.h"
5 :
6 : /* This may be given binary data, of which we need to already know the length */
7 40454 : char *prepend_len(const char *prep, size_t plen, const char *fname,
8 : size_t flen, const char *sep, size_t slen, size_t *newlen)
9 : {
10 40454 : size_t l=0;
11 40454 : char *rpath=NULL;
12 :
13 40454 : l+=plen;
14 40454 : l+=flen;
15 40454 : l+=slen;
16 40454 : l+=1;
17 :
18 40454 : if(!(rpath=(char *)malloc_w(l, __func__)))
19 : return NULL;
20 40454 : if(plen) memcpy(rpath, prep, plen);
21 40454 : if(slen) memcpy(rpath+plen, sep, slen);
22 40454 : if(flen) memcpy(rpath+plen+slen, fname, flen);
23 40454 : rpath[plen+slen+flen]='\0';
24 :
25 40454 : if(newlen) (*newlen)+=slen+flen;
26 : return rpath;
27 : }
28 :
29 40446 : char *prepend_n(const char *prep, const char *fname,
30 : size_t len, const char *sep)
31 : {
32 75675 : return prepend_len(prep, prep?strlen(prep):0,
33 : fname, len,
34 40446 : sep, (sep && *fname)?strlen(sep):0, NULL);
35 : }
36 :
37 1543 : char *prepend(const char *prep, const char *fname)
38 : {
39 1543 : return prepend_n(prep, fname, strlen(fname), "");
40 : }
41 :
42 38816 : char *prepend_slash(const char *prep, const char *fname, size_t len)
43 : {
44 38816 : if(!prep || !*prep)
45 45 : return strdup_w(fname, __func__);
46 : // Try to avoid getting a double slash in the path.
47 38771 : if(fname && fname[0]=='/')
48 : {
49 7405 : fname++;
50 7405 : len--;
51 : }
52 38771 : return prepend_n(prep, fname, len, "/");
53 : }
54 :
55 38792 : char *prepend_s(const char *prep, const char *fname)
56 : {
57 38792 : return prepend_slash(prep, fname, strlen(fname));
58 : }
59 :
60 329266 : int astrcat(char **buf, const char *append, const char *func)
61 : {
62 329266 : int l=0;
63 329266 : char *copy=NULL;
64 329266 : if(append) l+=strlen(append);
65 329266 : if(*buf) l+=strlen(*buf);
66 329266 : l++;
67 329266 : if((*buf && !(copy=strdup_w(*buf, __func__)))
68 329266 : || !(*buf=(char *)realloc_w(*buf, l, __func__)))
69 : {
70 0 : log_oom_w(__func__, func);
71 0 : return -1;
72 : }
73 329266 : snprintf(*buf, l, "%s%s", copy?copy:"", append?append:"");
74 329266 : free_w(©);
75 329266 : return 0;
76 : }
|