LCOV - code coverage report
Current view: top level - src - handy.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 166 406 40.9 %
Date: 2019-11-30 11:33:35 Functions: 17 29 58.6 %

          Line data    Source code
       1             : #include "burp.h"
       2             : #include "alloc.h"
       3             : #include "asfd.h"
       4             : #include "async.h"
       5             : #include "berrno.h"
       6             : #include "cmd.h"
       7             : #include "fsops.h"
       8             : #include "fzp.h"
       9             : #include "handy.h"
      10             : #include "hexmap.h"
      11             : #include "iobuf.h"
      12             : #include "log.h"
      13             : #include "msg.h"
      14             : #include "prepend.h"
      15             : #include "protocol1/handy.h"
      16             : #include "protocol2/blk.h"
      17             : 
      18             : #include <sys/types.h>
      19             : #include <sys/socket.h>
      20             : 
      21             : #ifdef HAVE_WIN32
      22             : #include <winsock2.h>
      23             : #include <ws2tcpip.h>
      24             : #endif
      25             : 
      26             : // return -1 for error, 0 for OK, 1 if the client wants to interrupt the
      27             : // transfer.
      28           6 : int do_quick_read(struct asfd *asfd, const char *datapth, struct cntr *cntr)
      29             : {
      30           6 :         int r=0;
      31             :         struct iobuf *rbuf;
      32           6 :         if(asfd->as->read_quick(asfd->as)) return -1;
      33           6 :         rbuf=asfd->rbuf;
      34             : 
      35           6 :         if(rbuf->buf)
      36             :         {
      37           0 :                 if(rbuf->cmd==CMD_MESSAGE
      38           0 :                   || rbuf->cmd==CMD_WARNING)
      39             :                 {
      40           0 :                         log_recvd(rbuf, cntr, 0);
      41             :                 }
      42           0 :                 else if(rbuf->cmd==CMD_INTERRUPT)
      43             :                 {
      44             :                         // Client wants to interrupt - double check that
      45             :                         // it is still talking about the file that we are
      46             :                         // sending.
      47           0 :                         if(datapth && !strcmp(rbuf->buf, datapth))
      48           0 :                                 r=1;
      49             :                 }
      50             :                 else
      51             :                 {
      52           0 :                         iobuf_log_unexpected(rbuf, __func__);
      53           0 :                         r=-1;
      54             :                 }
      55           0 :                 iobuf_free_content(rbuf);
      56             :         }
      57             :         return r;
      58             : }
      59             : 
      60           0 : static int send_whole_file_gz(struct asfd *asfd,
      61             :         const char *datapth, int quick_read,
      62             :         uint64_t *bytes, struct cntr *cntr,
      63             :         int compression, struct fzp *fzp)
      64             : {
      65           0 :         int ret=0;
      66           0 :         int zret=0;
      67             : 
      68             :         unsigned have;
      69             :         z_stream strm;
      70           0 :         int flush=Z_NO_FLUSH;
      71             :         uint8_t in[ZCHUNK];
      72             :         uint8_t out[ZCHUNK];
      73             : 
      74             :         struct iobuf wbuf;
      75             : 
      76             :         /* allocate deflate state */
      77           0 :         strm.zalloc = Z_NULL;
      78           0 :         strm.zfree = Z_NULL;
      79           0 :         strm.opaque = Z_NULL;
      80           0 :         if((zret=deflateInit2(&strm, compression, Z_DEFLATED, (15+16),
      81             :                 8, Z_DEFAULT_STRATEGY))!=Z_OK)
      82             :                         return -1;
      83             : 
      84             :         do
      85             :         {
      86           0 :                 strm.avail_in=fzp_read(fzp, in, ZCHUNK);
      87           0 :                 if(!compression && !strm.avail_in) break;
      88             : 
      89           0 :                 *bytes+=strm.avail_in;
      90             : 
      91           0 :                 if(strm.avail_in) flush=Z_NO_FLUSH;
      92           0 :                 else flush=Z_FINISH;
      93             : 
      94           0 :                 strm.next_in=in;
      95             : 
      96             :                 // Run deflate() on input until output buffer not full, finish
      97             :                 // compression if all of source has been read in.
      98             :                 do
      99             :                 {
     100           0 :                         if(compression)
     101             :                         {
     102           0 :                                 strm.avail_out=ZCHUNK;
     103           0 :                                 strm.next_out=out;
     104           0 :                                 zret=deflate(&strm, flush);
     105           0 :                                 if(zret==Z_STREAM_ERROR)
     106             :                                 {
     107           0 :                                         logp("z_stream_error\n");
     108           0 :                                         ret=-1;
     109           0 :                                         break;
     110             :                                 }
     111           0 :                                 have=ZCHUNK-strm.avail_out;
     112             :                         }
     113             :                         else
     114             :                         {
     115           0 :                                 have=strm.avail_in;
     116           0 :                                 memcpy(out, in, have);
     117             :                         }
     118             : 
     119           0 :                         wbuf.cmd=CMD_APPEND;
     120           0 :                         wbuf.buf=(char *)out;
     121           0 :                         wbuf.len=have;
     122           0 :                         if(asfd->write(asfd, &wbuf))
     123             :                         {
     124             :                                 ret=-1;
     125             :                                 break;
     126             :                         }
     127           0 :                         if(quick_read && datapth)
     128             :                         {
     129             :                                 int qr;
     130           0 :                                 if((qr=do_quick_read(asfd, datapth, cntr))<0)
     131             :                                 {
     132             :                                         ret=-1;
     133             :                                         break;
     134             :                                 }
     135           0 :                                 if(qr) // Client wants to interrupt.
     136             :                                 {
     137             :                                         goto cleanup;
     138             :                                 }
     139             :                         }
     140           0 :                         if(!compression) break;
     141           0 :                 } while(!strm.avail_out);
     142             : 
     143           0 :                 if(ret) break;
     144             : 
     145           0 :                 if(!compression) continue;
     146             : 
     147           0 :                 if(strm.avail_in) /* all input will be used */
     148             :                 {
     149           0 :                         ret=-1;
     150           0 :                         logp("strm.avail_in=%d\n", strm.avail_in);
     151           0 :                         break;
     152             :                 }
     153           0 :         } while(flush!=Z_FINISH);
     154             : 
     155           0 :         if(!ret)
     156             :         {
     157           0 :                 if(compression && zret!=Z_STREAM_END)
     158             :                 {
     159           0 :                         logp("ret OK, but zstream not finished: %d\n", zret);
     160           0 :                         ret=-1;
     161             :                 }
     162             :         }
     163             : 
     164             : cleanup:
     165           0 :         deflateEnd(&strm);
     166             : 
     167           0 :         if(!ret)
     168             :         {
     169           0 :                 return write_endfile(asfd, *bytes, NULL);
     170             :         }
     171             : //logp("end of send\n");
     172             :         return ret;
     173             : }
     174             : 
     175          11 : int set_non_blocking(int fd)
     176             : {
     177             :         int flags;
     178          11 :         if((flags = fcntl(fd, F_GETFL, 0))<0) flags = 0;
     179          11 :         return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
     180             : }
     181             :      
     182           1 : int set_blocking(int fd)
     183             : {
     184             :         int flags;
     185           1 :         if((flags = fcntl(fd, F_GETFL, 0))<0) flags = 0;
     186           1 :         return fcntl(fd, F_SETFL, flags | ~O_NONBLOCK);
     187             : }
     188             : 
     189           8 : char *get_tmp_filename(const char *basis)
     190             : {
     191           8 :         return prepend(basis, ".tmp");
     192             : }
     193             : 
     194           3 : void add_fd_to_sets(int fd, fd_set *read_set, fd_set *write_set, fd_set *err_set, int *max_fd)
     195             : {
     196           3 :         if(read_set) FD_SET((unsigned int) fd, read_set);
     197           3 :         if(write_set) FD_SET((unsigned int) fd, write_set);
     198           3 :         if(err_set) FD_SET((unsigned int) fd, err_set);
     199             : 
     200           3 :         if(fd > *max_fd) *max_fd = fd;
     201           3 : }
     202             : 
     203             : #ifndef HAVE_WIN32
     204           0 : int get_address_and_port(struct sockaddr_storage *addr,
     205             :         char *addrstr, size_t len, uint16_t *port)
     206             : {
     207             :         struct sockaddr_in *s4;
     208             :         struct sockaddr_in6 *s6;
     209             : 
     210           0 :         switch(addr->ss_family)
     211             :         {
     212             :                 case AF_INET:
     213           0 :                         s4=(struct sockaddr_in *)addr;
     214           0 :                         inet_ntop(AF_INET, &s4->sin_addr, addrstr, len);
     215           0 :                         *port=ntohs(s4->sin_port);
     216           0 :                         break;
     217             :                 case AF_INET6:
     218           0 :                         s6=(struct sockaddr_in6 *)addr;
     219           0 :                         inet_ntop(AF_INET6, &s6->sin6_addr, addrstr, len);
     220           0 :                         *port=ntohs(s6->sin6_port);
     221           0 :                         break;
     222             :                 default:
     223           0 :                         logp("unknown addr.ss_family: %d\n", addr->ss_family);
     224           0 :                         return -1;
     225             :         }
     226             :         return 0;
     227             : }
     228             : #endif
     229             : 
     230           0 : int set_peer_env_vars(struct sockaddr_storage *addr)
     231             : {
     232             : #ifndef HAVE_WIN32
     233           0 :         uint16_t port=0;
     234           0 :         char portstr[16]="";
     235           0 :         char addrstr[INET6_ADDRSTRLEN]="";
     236             : 
     237           0 :         if(get_address_and_port(addr, addrstr, INET6_ADDRSTRLEN, &port))
     238             :                 return -1;
     239             : 
     240           0 :         if(setenv("REMOTE_ADDR",  addrstr, 1))
     241             :         {
     242           0 :                 logp("setenv REMOTE_ADDR to %s failed: %s\n",
     243           0 :                                 addrstr, strerror(errno));
     244           0 :                 return -1;
     245             :         }
     246           0 :         snprintf(portstr, sizeof(portstr), "%d", port);
     247           0 :         if(setenv("REMOTE_PORT",  portstr, 1))
     248             :         {
     249           0 :                 logp("setenv REMOTE_PORT failed: %s\n", strerror(errno));
     250           0 :                 return -1;
     251             :         }
     252             : #endif
     253             :         return 0;
     254             : }
     255             : 
     256           0 : int set_keepalive(int fd, int value)
     257             : {
     258           0 :         int keepalive=value;
     259           0 :         if(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
     260             :                 (char *)&keepalive, sizeof(keepalive)))
     261             :         {
     262           0 :                 logp("setsockopt keepalive=%d failed: %s\n",
     263           0 :                         value, strerror(errno));
     264           0 :                 return -1;
     265             :         }
     266             :         return 0;
     267             : }
     268             : 
     269           0 : int init_client_socket(const char *host, const char *port)
     270             : {
     271           0 :         int rfd=-1;
     272             :         int gai_ret;
     273             :         struct addrinfo hints;
     274             :         struct addrinfo *result;
     275             :         struct addrinfo *rp;
     276             : 
     277           0 :         memset(&hints, 0, sizeof(struct addrinfo));
     278             :         hints.ai_family = AF_UNSPEC;
     279           0 :         hints.ai_socktype = SOCK_STREAM;
     280             :         hints.ai_flags = 0;
     281             :         hints.ai_protocol = 0;
     282             : 
     283           0 :         logp("Connecting to %s:%s\n", host?host:"loopback", port);
     284             : 
     285           0 :         if((gai_ret=getaddrinfo(host, port, &hints, &result)))
     286             :         {
     287           0 :                 logp("getaddrinfo: %s\n", gai_strerror(gai_ret));
     288           0 :                 return -1;
     289             :         }
     290             : 
     291           0 :         for(rp=result; rp; rp=rp->ai_next)
     292             :         {
     293           0 :                 rfd=socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
     294           0 :                 if(rfd<0) continue;
     295           0 :                 set_keepalive(rfd, 1);
     296           0 :                 if(connect(rfd, rp->ai_addr, rp->ai_addrlen) != -1) break;
     297           0 :                 close_fd(&rfd);
     298             :         }
     299           0 :         freeaddrinfo(result);
     300           0 :         if(!rp)
     301             :         {
     302             :                 // host==NULL and AI_PASSIVE not set -> loopback
     303           0 :                 logp("Could not connect to %s:%s\n",
     304             :                         host?host:"loopback", port);
     305           0 :                 close_fd(&rfd);
     306           0 :                 return -1;
     307             :         }
     308           0 :         reuseaddr(rfd);
     309             : 
     310             : #ifdef HAVE_WIN32
     311             :         setmode(rfd, O_BINARY);
     312             : #endif
     313           0 :         return rfd;
     314             : }
     315             : 
     316           0 : void reuseaddr(int fd)
     317             : {
     318           0 :         int optval=1;
     319             : #ifdef HAVE_OLD_SOCKOPT
     320             : #define sockopt_val_t char *
     321             : #else
     322             : #define sockopt_val_t void *
     323             : #endif
     324           0 :         if(setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
     325             :                 (sockopt_val_t)&optval, sizeof(optval))<0)
     326           0 :                         logp("Error: setsockopt SO_REUSEADDR: %s",
     327           0 :                                 strerror(errno));
     328           0 : }
     329             : 
     330           2 : void setup_signal(int sig, void handler(int sig))
     331             : {
     332             :         struct sigaction sa;
     333           2 :         memset(&sa, 0, sizeof(sa));
     334           2 :         sa.sa_handler=handler;
     335           2 :         sigaction(sig, &sa, NULL);
     336           2 : }
     337             : 
     338             : /* Function based on src/lib/priv.c from bacula. */
     339           0 : int chuser_and_or_chgrp(const char *user, const char *group, int readall)
     340             : {
     341             : #ifndef HAVE_WIN32
     342           0 :         struct passwd *passw = NULL;
     343           0 :         struct group *grp = NULL;
     344             :         gid_t gid;
     345             :         uid_t uid;
     346           0 :         char *username=NULL;
     347             : 
     348             :         // Allow setting readall=1 without setting user
     349           0 :         if(readall && !user)
     350           0 :                 user="nobody";
     351           0 :         if(!user && !group) return 0;
     352             : 
     353           0 :         if(user)
     354             :         {
     355           0 :                 if(!(passw=getpwnam(user)))
     356             :                 {
     357           0 :                         logp("could not find user '%s': %s\n",
     358           0 :                                 user, strerror(errno));
     359           0 :                         return -1;
     360             :                 }
     361             :         }
     362             :         else
     363             :         {
     364           0 :                 if(!(passw=getpwuid(getuid())))
     365             :                 {
     366           0 :                         logp("could not find password entry: %s\n",
     367           0 :                                 strerror(errno));
     368           0 :                         return -1;
     369             :                 }
     370           0 :                 user=passw->pw_name;
     371             :         }
     372             :         // Any OS uname pointer may get overwritten, so save name, uid, and gid
     373           0 :         if(!(username=strdup_w(user, __func__)))
     374             :                 return -1;
     375           0 :         uid=passw->pw_uid;
     376           0 :         gid=passw->pw_gid;
     377           0 :         if(group)
     378             :         {
     379           0 :                 if(!(grp=getgrnam(group)))
     380             :                 {
     381           0 :                         logp("could not find group '%s': %s\n", group,
     382           0 :                                 strerror(errno));
     383           0 :                         goto err;
     384             :                 }
     385           0 :                 gid=grp->gr_gid;
     386             :         } else {
     387             :                 // Resolve gid to group name for logp()
     388           0 :                 if (!(grp=getgrgid(gid)))
     389             :                 {
     390           0 :                         logp("could not find group for gid %d: %s\n", gid,
     391           0 :                                 strerror(errno));
     392           0 :                         goto err;
     393             :                 }
     394           0 :                 group=grp->gr_name;
     395           0 :                 grp=NULL;
     396             :         }
     397           0 :         if(gid!=getgid() // do not do it if we already have the same gid.
     398           0 :           && initgroups(username, gid))
     399             :         {
     400           0 :                 if(grp)
     401           0 :                         logp("could not initgroups for group '%s', user '%s': %s\n", group, username, strerror(errno));
     402             :                 else
     403           0 :                         logp("could not initgroups for user '%s': %s\n", username, strerror(errno));
     404             :                 goto err;
     405             :         }
     406           0 :         if(grp)
     407             :         {
     408           0 :                 if(gid!=getgid() // do not do it if we already have the same gid
     409           0 :                  && setgid(gid))
     410             :                 {
     411           0 :                         logp("could not set group '%s': %s\n", group,
     412           0 :                                 strerror(errno));
     413           0 :                         goto err;
     414             :                 }
     415             :         }
     416           0 :         if (readall)
     417             :         {
     418             : #ifdef ENABLE_KEEP_READALL_CAPS_SUPPORT
     419             :                 cap_t caps;
     420             :                 // Make capabilities pass through setreuid
     421             :                 if(prctl(PR_SET_KEEPCAPS, 1))
     422             :                 {
     423             :                         logp("prctl(PR_SET_KEEPCAPS) failed: %s\n", strerror(errno));
     424             :                         goto err;
     425             :                 }
     426             :                 if(setreuid(uid, uid))
     427             :                 {
     428             :                         logp("Could not switch to user=%s (uid=%u): %s\n", username, uid, strerror(errno));
     429             :                         goto err;
     430             :                 }
     431             :                 // `ep' is Effective and Permitted
     432             :                 caps=cap_from_text("cap_dac_read_search=ep");
     433             :                 if(!caps)
     434             :                 {
     435             :                         logp("cap_from_text() failed: %s\n", strerror(errno));
     436             :                         goto err;
     437             :                 }
     438             :                 if(cap_set_proc(caps) < 0)
     439             :                 {
     440             :                         logp("cap_set_proc() failed: %s\n", strerror(errno));
     441             :                         goto err;
     442             :                 }
     443             :                 cap_free(caps);
     444             :                 logp("Privileges switched to %s keeping readall capability.\n", username);
     445             : #else
     446           0 :                 logp("Keep readall capabilities is not implemented on this platform yet\n");
     447           0 :                 goto err;
     448             : #endif
     449           0 :         } else if(uid!=getuid() // do not do it if we already have the same uid
     450           0 :           && setuid(uid))
     451             :         {
     452           0 :                 logp("could not set specified user '%s': %s\n", username,
     453           0 :                         strerror(errno));
     454           0 :                 goto err;
     455             :         }
     456             : err:
     457           0 :         free_w(&username);
     458           0 :         return -1;
     459             : #endif
     460             :         return 0;
     461             : }
     462             : 
     463             : // Not in dpth.c so that Windows client can see it.
     464          14 : int dpth_protocol1_is_compressed(int compressed, const char *datapath)
     465             : {
     466          14 :         const char *dp=NULL;
     467             : 
     468          14 :         if(compressed>0) return compressed;
     469          12 :         if(compressed==0) return 0;
     470             : 
     471             :         /* Legacy - if the compressed value is -1 - that is, it is not set in
     472             :            the manifest, deduce the value from the datapath. */
     473           6 :         if((dp=strrchr(datapath, '.')) && !strcmp(dp, ".gz")) return 1;
     474           6 :         return 0;
     475             : }
     476             : 
     477         330 : long version_to_long(const char *version)
     478             : {
     479         330 :         long ret=0;
     480         330 :         char *copy=NULL;
     481         330 :         char *tok1=NULL;
     482         330 :         char *tok2=NULL;
     483         330 :         char *tok3=NULL;
     484         330 :         if(!version || !*version) return 0;
     485         327 :         if(!(copy=strdup_w(version, __func__)))
     486             :                 return -1;
     487         327 :         if(!(tok1=strtok(copy, "."))
     488         327 :           || !(tok2=strtok(NULL, "."))
     489         327 :           || !(tok3=strtok(NULL, ".")))
     490             :         {
     491           0 :                 free_w(&copy);
     492           0 :                 return -1;
     493             :         }
     494         327 :         ret+=atol(tok3);
     495         327 :         ret+=atol(tok2)*100;
     496         327 :         ret+=atol(tok1)*100*100;
     497         327 :         free_w(&copy);
     498         327 :         return ret;
     499             : }
     500             : 
     501             : /* These receive_a_file() and send_a_file() functions are for use by
     502             :    extra_comms and the CA stuff, rather than backups/restores. */
     503           0 : int receive_a_file(struct asfd *asfd, const char *path, struct cntr *cntr)
     504             : {
     505           0 :         int ret=-1;
     506           0 :         struct BFILE *bfd=NULL;
     507           0 :         uint64_t rcvdbytes=0;
     508           0 :         uint64_t sentbytes=0;
     509             : 
     510           0 :         if(!(bfd=bfile_alloc())) goto end;
     511           0 :         bfile_init(bfd, 0, cntr);
     512             : #ifdef HAVE_WIN32
     513             :         bfd->set_win32_api(bfd, 0);
     514             : #else
     515           0 :         bfd->set_vss_strip(bfd, 0);
     516             : #endif
     517           0 :         if(bfd->open(bfd, asfd, path,
     518             : #ifdef O_NOFOLLOW
     519             :                 O_NOFOLLOW |
     520             : #endif
     521             :                 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
     522             :                 S_IRUSR | S_IWUSR))
     523             :         {
     524             :                 struct berrno be;
     525           0 :                 berrno_init(&be);
     526           0 :                 logp("Could not open for writing %s: %s\n",
     527           0 :                         path, berrno_bstrerror(&be, errno));
     528             :                 goto end;
     529             :         }
     530             : 
     531           0 :         ret=transfer_gzfile_in(asfd, bfd, &rcvdbytes, &sentbytes);
     532           0 :         if(bfd->close(bfd, asfd))
     533             :         {
     534           0 :                 logp("error closing %s in %s\n", path, __func__);
     535           0 :                 goto end;
     536             :         }
     537           0 :         logp("Received: %s\n", path);
     538           0 :         ret=0;
     539             : end:
     540           0 :         bfd->close(bfd, asfd);
     541           0 :         bfile_free(&bfd);
     542           0 :         return ret;
     543             : }
     544             : 
     545             : /* Windows will use this function, when sending a certificate signing request.
     546             :    It is not using the Windows API stuff because it needs to arrive on the
     547             :    server side without any junk in it. */
     548           0 : int send_a_file(struct asfd *asfd, const char *path, struct cntr *cntr)
     549             : {
     550           0 :         int ret=0;
     551           0 :         struct fzp *fzp=NULL;
     552           0 :         uint64_t bytes=0;
     553           0 :         if(!(fzp=fzp_open(path, "rb"))
     554           0 :           || send_whole_file_gz(asfd, "datapth", 0, &bytes,
     555             :                 cntr, 9 /*compression*/, fzp))
     556             :         {
     557             :                 ret=-1;
     558             :                 goto end;
     559             :         }
     560           0 :         logp("Sent %s\n", path);
     561             : end:
     562           0 :         fzp_close(&fzp);
     563           0 :         return ret;
     564             : }
     565             : 
     566         238 : int strncmp_w(const char *s1, const char *s2)
     567             : {
     568         238 :         return strncmp(s1, s2, strlen(s2));
     569             : }
     570             : 
     571           0 : char *strreplace_w(char *orig, char *search, char *replace, const char *func)
     572             : {
     573           0 :         char *result=NULL; // the return string
     574             :         char *ins;         // the next insert point
     575             :         char *tmp;         // varies
     576             :         int len_rep;       // length of replace (the string to replace search with)
     577             :         int len_search;    // length of search (the string to look for)
     578             :         int len_front;     // distance between rep and end of last rep
     579             :         int count;         // number of replacements
     580             : 
     581             :         // sanity checks and initialization
     582           0 :         if(!orig || !search) goto end;
     583           0 :         len_search = strlen(search);
     584           0 :         if(len_search==0)
     585             :                 goto end;
     586           0 :         if(!replace)
     587             :                 len_rep=0;
     588             :         else
     589           0 :                 len_rep=strlen(replace);
     590             : 
     591             :         // count the number of replacements needed
     592           0 :         ins=orig;
     593           0 :         for(count=0; (tmp=strstr(ins, search)); ++count)
     594           0 :                 ins=tmp+len_search;
     595             : 
     596           0 :         tmp=result=(char *)malloc_w(strlen(orig)+(len_rep-len_search)*count+1, func);
     597             : 
     598           0 :         if(!result) goto end;
     599             : 
     600           0 :         while(count--)
     601             :         {
     602           0 :                 ins=strstr(orig, search);
     603           0 :                 len_front=ins-orig;
     604           0 :                 tmp=strncpy(tmp, orig, len_front)+len_front;
     605           0 :                 tmp=strcpy(tmp, replace)+len_rep;
     606           0 :                 orig+=len_front+len_search; // move to next "end of rep"
     607             :         }
     608           0 :         strcpy(tmp, orig);
     609             : end:
     610           0 :         return result;
     611             : }
     612             : 
     613          18 : static int charcount_noescaped(const char *orig, char search, int repeat)
     614             : {
     615          18 :         int count=0;
     616             :         int len;
     617             :         int i;
     618          18 :         char quote='\0';
     619          18 :         char prev='\0';
     620          18 :         if(!orig) return count;
     621          18 :         len=strlen(orig);
     622         860 :         for(count=0, i=0; i<len; i++)
     623             :         {
     624         842 :                 if(quote=='\0' && (orig[i]=='\'' || orig[i]=='"'))
     625             :                         quote=orig[i];
     626         839 :                 else if(quote!='\0' && orig[i]==quote)
     627             :                 {
     628             :                         // ignore escaped quote
     629           3 :                         if(i>0 && orig[i-1]=='\\')
     630             :                                 goto loop_tail;
     631           3 :                         quote='\0';
     632             :                 }
     633         836 :                 else if(quote=='\0' && orig[i]==search)
     634             :                 {
     635             :                         // ignore escaped char
     636          43 :                         if(i>0 && orig[i-1]=='\\')
     637             :                                 goto loop_tail;
     638          43 :                         if(repeat || prev!=orig[i])
     639          39 :                                 count++;
     640             :                 }
     641             : loop_tail:
     642         842 :                 prev=orig[i];
     643             :         }
     644             :         return count;
     645             : }
     646             : 
     647          12 : char *charreplace_noescaped_w(const char *orig, char search, const char *replace, int *count, const char *func)
     648             : {
     649          12 :         char *result=NULL;
     650             :         char *tmp;
     651          12 :         char quote='\0';
     652          12 :         int nb_repl=0;  // number of replacement
     653             :         int i;
     654             :         int len;
     655             :         int len_replace;
     656             :         int len_dest;
     657             : 
     658          12 :         if(!orig || !search) goto end;
     659             : 
     660          12 :         len=strlen(orig);
     661          12 :         len_replace=strlen(replace);
     662             : 
     663          12 :         if(!(nb_repl=charcount_noescaped(orig, search, 1)))
     664             :         {
     665           7 :                 result=strdup_w(orig, func);
     666           7 :                 goto end;
     667             :         }
     668             : 
     669           5 :         len_dest=len+((len_replace-1)*nb_repl)+1;
     670           5 :         tmp=result=(char *)malloc_w(len_dest, func);
     671           5 :         if(!result) goto end;
     672             : 
     673             :         quote='\0';
     674         363 :         for(i=0; i<len; i++)
     675             :         {
     676         363 :                 if(quote=='\0' && (orig[i]=='\'' || orig[i]=='"'))
     677             :                         quote=orig[i];
     678         361 :                 else if(quote!='\0' && orig[i]==quote)
     679             :                 {
     680           2 :                         if(i<=0 || orig[i-1]!='\\')
     681           2 :                                 quote='\0';
     682             :                 }
     683         359 :                 else if(quote=='\0' && orig[i]==search)
     684             :                 {
     685           9 :                         if(i<=0 || orig[i-1]!='\\')
     686             :                         {
     687           9 :                                 tmp=(char *)memcpy(tmp, replace, len_replace);
     688           9 :                                 tmp+=len_replace;
     689           9 :                                 continue;
     690             :                         }
     691             :                 }
     692         354 :                 *tmp=orig[i];
     693         354 :                 tmp++;
     694             :         }
     695           5 :         *tmp='\0';
     696             : end:
     697          12 :         *count=nb_repl;
     698          12 :         return result;
     699             : }
     700             : 
     701             : /*
     702             :  * Returns NULL-terminated list of tokens found in string src,
     703             :  * also sets *size to number of tokens found (list length without final NULL).
     704             :  * On failure returns NULL. List itself and tokens are dynamically allocated.
     705             :  * Calls to strtok with delimiters in second argument are used (see its docs),
     706             :  * but neither src nor delimiters arguments are altered.
     707             :  */
     708           0 : char **strsplit_w(const char *src, const char *delimiters, size_t *size, const char *func)
     709             : {
     710             :         size_t allocated;
     711           0 :         char *init=NULL;
     712           0 :         char **ret=NULL;
     713             : 
     714           0 :         *size=0;
     715           0 :         if(!(init=strdup_w(src, func))) goto end;
     716           0 :         if(!(ret=(char **)malloc_w((allocated=10)*sizeof(char *), func)))
     717             :                 goto end;
     718           0 :         for(char *tmp=strtok(init, delimiters); tmp; tmp=strtok(NULL, delimiters))
     719             :         {
     720             :                 // Check if space is present for another token and terminating NULL.
     721           0 :                 if(allocated<*size+2)
     722             :                 {
     723           0 :                         if(!(ret=(char **)realloc_w(ret,
     724           0 :                                 (allocated=*size+11)*sizeof(char *), func)))
     725             :                                         goto end;
     726             :                 }
     727           0 :                 if(!(ret[(*size)++]=strdup_w(tmp, func)))
     728             :                 {
     729             :                         ret=NULL;
     730             :                         goto end;
     731             :                 }
     732             :         }
     733           0 :         ret[*size]=NULL;
     734             : 
     735             : end:
     736           0 :         free_w(&init);
     737           0 :         return ret;
     738             : }
     739             : 
     740           6 : static char *strip_whitespace_w(const char *src, const char *func)
     741             : {
     742           6 :         char *ret=NULL;
     743           6 :         char *ptr=(char *)src;
     744           6 :         int len=strlen(src);
     745             :         int size;
     746           6 :         if(*ptr!=' ' && ptr[len-1]!=' ')
     747             :         {
     748           3 :                 if(!(ret=strdup_w(src, func))) goto end;
     749             :                 return ret;
     750             :         }
     751           3 :         for(; *ptr==' '; ptr++);
     752           3 :         size=strlen(ptr);
     753           3 :         for(; ptr[size-1]==' '; --size);
     754           3 :         if(!(ret=(char *)malloc_w(size+2, func))) goto end;
     755           3 :         ret=strncpy(ret, ptr, size);
     756           3 :         ret[size]='\0';
     757             : end:
     758             :         return ret;
     759             : }
     760             : 
     761             : // same as strsplit_w except the delimiter is a single char and if the delimiter
     762             : // is inside quotes or escaped with '\' it is ignored.
     763           6 : char **charsplit_noescaped_w(const char *src, char delimiter, size_t *size, const char *func)
     764             : {
     765           6 :         char **ret=NULL;
     766           6 :         char *ptr=NULL;
     767             :         char *buf;
     768             :         char *end;
     769           6 :         char quote='\0';
     770           6 :         char prev='\0';
     771             :         int count;
     772             :         int i, j, k;
     773             :         int len;
     774             : 
     775           6 :         if(!src) goto end;
     776           6 :         ptr=strip_whitespace_w(src, func);
     777           6 :         buf=ptr;
     778           6 :         len=strlen(ptr);
     779           6 :         if(!(count=charcount_noescaped(ptr, delimiter, 0)))
     780             :                 goto end;
     781             :         // need one more space than the number of delimiters
     782           6 :         count++;
     783           6 :         if(!(ret=(char **)malloc_w((count+1)*sizeof(char *), func)))
     784             :                 goto error;
     785           6 :         *size=(size_t)count;
     786         292 :         for(i=0, j=0, k=0; i<len; i++)
     787             :         {
     788         286 :                 if(quote=='\0' && (ptr[i]=='\'' || ptr[i]=='"'))
     789             :                         quote=ptr[i];
     790         285 :                 else if(quote!='\0' && ptr[i]==quote)
     791             :                 {
     792           1 :                         if(i<=0 || ptr[i-1]!='\\')
     793           1 :                                 quote='\0';
     794             :                 }
     795         284 :                 else if(quote=='\0' && ptr[i]==delimiter)
     796             :                 {
     797          34 :                         if(i<=0 || ptr[i-1]!='\\')
     798             :                         {
     799          34 :                                 if(prev==ptr[i])
     800           4 :                                         buf++;
     801             :                                 else
     802             :                                 {
     803             :                                         char *tmp;
     804          30 :                                         int tmp_len=j+1;
     805          30 :                                         if(k>0) buf++;
     806          30 :                                         if(!(tmp=(char *)malloc_w(
     807             :                                                 tmp_len, func)))
     808             :                                                         goto error;
     809          30 :                                         tmp=strncpy(tmp, buf, tmp_len);
     810          30 :                                         tmp[tmp_len-1]='\0';
     811          30 :                                         ret[k]=tmp;
     812          30 :                                         buf+=j;
     813          30 :                                         j=0;
     814          30 :                                         k++;
     815             :                                 }
     816             :                                 goto loop_tail;
     817             :                         }
     818             :                 }
     819         252 :                 j++;
     820             : loop_tail:
     821         286 :                 prev=ptr[i];
     822             :         }
     823           6 :         while(*buf==delimiter && *(buf-1)!='\\') buf++;
     824           6 :         if(!(end=(char *)malloc_w(j+1, func)))
     825             :                 goto error;
     826           6 :         end=strncpy(end, buf, j+1);
     827           6 :         end[j]='\0';
     828           6 :         ret[k]=end;
     829           6 :         ret[k+1]=NULL;
     830             : end:
     831           6 :         free_w(&ptr);
     832           6 :         return ret;
     833             : error:
     834           0 :         free_w(&ptr);
     835           0 :         free_list_w(&ret, *size);
     836           0 :         return NULL;
     837             : }
     838             : 
     839           6 : void free_list_w(char ***list, size_t size)
     840             : {
     841           6 :         char **l=*list;
     842           6 :         if(!l) return;
     843             :         size_t i;
     844          36 :         for(i=0; i<size; i++)
     845          36 :                 if(l[i]) free_w(&l[i]);
     846           6 :         free_v((void **)list);
     847             : }
     848             : 
     849             : // Strip any trailing slashes (unless it is '/').
     850          10 : void strip_trailing_slashes(char **str)
     851             : {
     852             :         size_t l;
     853             :         // FIX THIS: pretty crappy.
     854             :         while(1)
     855             :         {
     856          12 :                 if(!str || !*str
     857          11 :                   || !strcmp(*str, "/")
     858          11 :                   || !(l=strlen(*str))
     859          11 :                   || (*str)[l-1]!='/')
     860          10 :                         return;
     861           1 :                 (*str)[l-1]='\0';
     862             :         }
     863             : }
     864             : 
     865           0 : int breakpoint(int breakpoint, const char *func)
     866             : {
     867           0 :         logp("Breakpoint %d hit in %s\n", breakpoint, func);
     868           0 :         return -1;
     869             : }
     870             : 
     871             : /* Windows users have a nasty habit of putting in backslashes. Convert them. */
     872             : #ifdef HAVE_WIN32
     873             : void convert_backslashes(char **path)
     874             : {
     875             :         char *p=NULL;
     876             :         for(p=*path; *p; p++) if(*p=='\\') *p='/';
     877             : }
     878             : #endif
     879             : 
     880           3 : char *strlwr(char *s)
     881             : {
     882           3 :         char *tmp=s;
     883           3 :         for(;*tmp;++tmp) *tmp=tolower((unsigned char)*tmp);
     884           3 :         return s;
     885             : }
     886             : 
     887           1 : void strip_fqdn(char **fqdn)
     888             : {
     889             :         char *tmp;
     890           1 :         if(!fqdn || !*fqdn)
     891             :                 return;
     892           1 :         if((tmp=strchr(*fqdn, '.')))
     893           1 :                 *tmp='\0';
     894             : }

Generated by: LCOV version 1.13