LCOV - code coverage report
Current view: top level - src - handy.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 165 402 41.0 %
Date: 2018-09-29 15:42:53 Functions: 17 30 56.7 %

          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 : static 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 log_peer_address(struct sockaddr_storage *addr)
     231             : {
     232             : #ifndef HAVE_WIN32
     233           0 :         uint16_t port=0;
     234           0 :         char addrstr[INET6_ADDRSTRLEN]="";
     235           0 :         if(get_address_and_port(addr, addrstr, INET6_ADDRSTRLEN, &port))
     236             :                 return -1;
     237           0 :         logp("Connect from peer: %s:%d\n", addrstr, port);
     238             : #endif
     239           0 :         return 0;
     240             : }
     241             : 
     242           0 : int set_peer_env_vars(struct sockaddr_storage *addr)
     243             : {
     244             : #ifndef HAVE_WIN32
     245           0 :         uint16_t port=0;
     246           0 :         char portstr[16]="";
     247           0 :         char addrstr[INET6_ADDRSTRLEN]="";
     248             : 
     249           0 :         if(get_address_and_port(addr, addrstr, INET6_ADDRSTRLEN, &port))
     250             :                 return -1;
     251             : 
     252           0 :         if(setenv("REMOTE_ADDR",  addrstr, 1))
     253             :         {
     254           0 :                 logp("setenv REMOTE_ADDR to %s failed: %s\n",
     255           0 :                                 addrstr, strerror(errno));
     256           0 :                 return -1;
     257             :         }
     258           0 :         snprintf(portstr, sizeof(portstr), "%d", port);
     259           0 :         if(setenv("REMOTE_PORT",  portstr, 1))
     260             :         {
     261           0 :                 logp("setenv REMOTE_PORT failed: %s\n", strerror(errno));
     262           0 :                 return -1;
     263             :         }
     264             : #endif
     265             :         return 0;
     266             : }
     267             : 
     268           0 : int set_keepalive(int fd, int value)
     269             : {
     270           0 :         int keepalive=value;
     271           0 :         if(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
     272             :                 (char *)&keepalive, sizeof(keepalive)))
     273             :         {
     274           0 :                 logp("setsockopt keepalive=%d failed: %s\n",
     275           0 :                         value, strerror(errno));
     276           0 :                 return -1;
     277             :         }
     278             :         return 0;
     279             : }
     280             : 
     281           0 : int init_client_socket(const char *host, const char *port)
     282             : {
     283           0 :         int rfd=-1;
     284             :         int gai_ret;
     285             :         struct addrinfo hints;
     286             :         struct addrinfo *result;
     287             :         struct addrinfo *rp;
     288             : 
     289           0 :         memset(&hints, 0, sizeof(struct addrinfo));
     290             :         hints.ai_family = AF_UNSPEC;
     291           0 :         hints.ai_socktype = SOCK_STREAM;
     292             :         hints.ai_flags = 0;
     293             :         hints.ai_protocol = 0;
     294             : 
     295           0 :         logp("Connecting to %s:%s\n", host?host:"loopback", port);
     296             : 
     297           0 :         if((gai_ret=getaddrinfo(host, port, &hints, &result)))
     298             :         {
     299           0 :                 logp("getaddrinfo: %s\n", gai_strerror(gai_ret));
     300           0 :                 return -1;
     301             :         }
     302             : 
     303           0 :         for(rp=result; rp; rp=rp->ai_next)
     304             :         {
     305           0 :                 rfd=socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
     306           0 :                 if(rfd<0) continue;
     307           0 :                 set_keepalive(rfd, 1);
     308           0 :                 if(connect(rfd, rp->ai_addr, rp->ai_addrlen) != -1) break;
     309           0 :                 close_fd(&rfd);
     310             :         }
     311           0 :         freeaddrinfo(result);
     312           0 :         if(!rp)
     313             :         {
     314             :                 /* host==NULL and AI_PASSIVE not set -> loopback */
     315           0 :                 logp("could not connect to %s:%s\n",
     316             :                         host?host:"loopback", port);
     317           0 :                 close_fd(&rfd);
     318           0 :                 return -1;
     319             :         }
     320           0 :         reuseaddr(rfd);
     321             : 
     322             : #ifdef HAVE_WIN32
     323             :         setmode(rfd, O_BINARY);
     324             : #endif
     325           0 :         return rfd;
     326             : }
     327             : 
     328           0 : void reuseaddr(int fd)
     329             : {
     330           0 :         int optval=1;
     331             : #ifdef HAVE_OLD_SOCKOPT
     332             : #define sockopt_val_t char *
     333             : #else
     334             : #define sockopt_val_t void *
     335             : #endif
     336           0 :         if(setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
     337             :                 (sockopt_val_t)&optval, sizeof(optval))<0)
     338           0 :                         logp("Error: setsockopt SO_REUSEADDR: %s",
     339           0 :                                 strerror(errno));
     340           0 : }
     341             : 
     342           2 : void setup_signal(int sig, void handler(int sig))
     343             : {
     344             :         struct sigaction sa;
     345           2 :         memset(&sa, 0, sizeof(sa));
     346           2 :         sa.sa_handler=handler;
     347           2 :         sigaction(sig, &sa, NULL);
     348           2 : }
     349             : 
     350             : /* Function based on src/lib/priv.c from bacula. */
     351           0 : int chuser_and_or_chgrp(const char *user, const char *group)
     352             : {
     353             : #ifndef HAVE_WIN32
     354           0 :         struct passwd *passw = NULL;
     355           0 :         struct group *grp = NULL;
     356             :         gid_t gid;
     357             :         uid_t uid;
     358           0 :         char *username=NULL;
     359             : 
     360           0 :         if(!user && !group) return 0;
     361             : 
     362           0 :         if(user)
     363             :         {
     364           0 :                 if(!(passw=getpwnam(user)))
     365             :                 {
     366           0 :                         logp("could not find user '%s': %s\n",
     367           0 :                                 user, strerror(errno));
     368           0 :                         return -1;
     369             :                 }
     370             :         }
     371             :         else
     372             :         {
     373           0 :                 if(!(passw=getpwuid(getuid())))
     374             :                 {
     375           0 :                         logp("could not find password entry: %s\n",
     376           0 :                                 strerror(errno));
     377           0 :                         return -1;
     378             :                 }
     379           0 :                 user=passw->pw_name;
     380             :         }
     381             :         // Any OS uname pointer may get overwritten, so save name, uid, and gid
     382           0 :         if(!(username=strdup_w(user, __func__)))
     383             :                 return -1;
     384           0 :         uid=passw->pw_uid;
     385           0 :         gid=passw->pw_gid;
     386           0 :         if(group)
     387             :         {
     388           0 :                 if(!(grp=getgrnam(group)))
     389             :                 {
     390           0 :                         logp("could not find group '%s': %s\n", group,
     391           0 :                                 strerror(errno));
     392           0 :                         free_w(&username);
     393           0 :                         return -1;
     394             :                 }
     395           0 :                 gid=grp->gr_gid;
     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, user, strerror(errno));
     402             :                 else
     403           0 :                         logp("could not initgroups for user '%s': %s\n", user, strerror(errno));
     404           0 :                 free_w(&username);
     405           0 :                 return -1;
     406             :         }
     407           0 :         free_w(&username);
     408           0 :         if(grp)
     409             :         {
     410           0 :                 if(gid!=getgid() // do not do it if we already have the same gid
     411           0 :                  && setgid(gid))
     412             :                 {
     413           0 :                         logp("could not set group '%s': %s\n", group,
     414           0 :                                 strerror(errno));
     415           0 :                         return -1;
     416             :                 }
     417             :         }
     418           0 :         if(uid!=getuid() // do not do it if we already have the same uid
     419           0 :           && setuid(uid))
     420             :         {
     421           0 :                 logp("could not set specified user '%s': %s\n", username,
     422           0 :                         strerror(errno));
     423           0 :                 return -1;
     424             :         }
     425             : #endif
     426             :         return 0;
     427             : }
     428             : 
     429             : // Not in dpth.c so that Windows client can see it.
     430          14 : int dpth_protocol1_is_compressed(int compressed, const char *datapath)
     431             : {
     432          14 :         const char *dp=NULL;
     433             : 
     434          14 :         if(compressed>0) return compressed;
     435          12 :         if(compressed==0) return 0;
     436             : 
     437             :         /* Legacy - if the compressed value is -1 - that is, it is not set in
     438             :            the manifest, deduce the value from the datapath. */
     439           6 :         if((dp=strrchr(datapath, '.')) && !strcmp(dp, ".gz")) return 1;
     440           6 :         return 0;
     441             : }
     442             : 
     443         330 : long version_to_long(const char *version)
     444             : {
     445         330 :         long ret=0;
     446         330 :         char *copy=NULL;
     447         330 :         char *tok1=NULL;
     448         330 :         char *tok2=NULL;
     449         330 :         char *tok3=NULL;
     450         330 :         if(!version || !*version) return 0;
     451         327 :         if(!(copy=strdup_w(version, __func__)))
     452             :                 return -1;
     453         327 :         if(!(tok1=strtok(copy, "."))
     454         327 :           || !(tok2=strtok(NULL, "."))
     455         327 :           || !(tok3=strtok(NULL, ".")))
     456             :         {
     457           0 :                 free_w(&copy);
     458           0 :                 return -1;
     459             :         }
     460         327 :         ret+=atol(tok3);
     461         327 :         ret+=atol(tok2)*100;
     462         327 :         ret+=atol(tok1)*100*100;
     463         327 :         free_w(&copy);
     464         327 :         return ret;
     465             : }
     466             : 
     467             : /* These receive_a_file() and send_a_file() functions are for use by
     468             :    extra_comms and the CA stuff, rather than backups/restores. */
     469           0 : int receive_a_file(struct asfd *asfd, const char *path, struct cntr *cntr)
     470             : {
     471           0 :         int ret=-1;
     472           0 :         struct BFILE *bfd=NULL;
     473           0 :         uint64_t rcvdbytes=0;
     474           0 :         uint64_t sentbytes=0;
     475             : 
     476           0 :         if(!(bfd=bfile_alloc())) goto end;
     477           0 :         bfile_init(bfd, 0, cntr);
     478             : #ifdef HAVE_WIN32
     479             :         bfd->set_win32_api(bfd, 0);
     480             : #else
     481           0 :         bfd->set_vss_strip(bfd, 0);
     482             : #endif
     483           0 :         if(bfd->open(bfd, asfd, path,
     484             :                 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
     485             :                 S_IRUSR | S_IWUSR))
     486             :         {
     487             :                 struct berrno be;
     488           0 :                 berrno_init(&be);
     489           0 :                 logp("Could not open for writing %s: %s\n",
     490           0 :                         path, berrno_bstrerror(&be, errno));
     491             :                 goto end;
     492             :         }
     493             : 
     494           0 :         ret=transfer_gzfile_in(asfd, bfd, &rcvdbytes, &sentbytes);
     495           0 :         if(bfd->close(bfd, asfd))
     496             :         {
     497           0 :                 logp("error closing %s in %s\n", path, __func__);
     498           0 :                 goto end;
     499             :         }
     500           0 :         logp("Received: %s\n", path);
     501           0 :         ret=0;
     502             : end:
     503           0 :         bfd->close(bfd, asfd);
     504           0 :         bfile_free(&bfd);
     505           0 :         return ret;
     506             : }
     507             : 
     508             : /* Windows will use this function, when sending a certificate signing request.
     509             :    It is not using the Windows API stuff because it needs to arrive on the
     510             :    server side without any junk in it. */
     511           0 : int send_a_file(struct asfd *asfd, const char *path, struct cntr *cntr)
     512             : {
     513           0 :         int ret=0;
     514           0 :         struct fzp *fzp=NULL;
     515           0 :         uint64_t bytes=0;
     516           0 :         if(!(fzp=fzp_open(path, "rb"))
     517           0 :           || send_whole_file_gz(asfd, "datapth", 0, &bytes,
     518             :                 cntr, 9 /*compression*/, fzp))
     519             :         {
     520             :                 ret=-1;
     521             :                 goto end;
     522             :         }
     523           0 :         logp("Sent %s\n", path);
     524             : end:
     525           0 :         fzp_close(&fzp);
     526           0 :         return ret;
     527             : }
     528             : 
     529         208 : int strncmp_w(const char *s1, const char *s2)
     530             : {
     531         208 :         return strncmp(s1, s2, strlen(s2));
     532             : }
     533             : 
     534           0 : char *strreplace_w(char *orig, char *search, char *replace, const char *func)
     535             : {
     536           0 :         char *result=NULL; // the return string
     537             :         char *ins;         // the next insert point
     538             :         char *tmp;         // varies
     539             :         int len_rep;       // length of replace (the string to replace search with)
     540             :         int len_search;    // length of search (the string to look for)
     541             :         int len_front;     // distance between rep and end of last rep
     542             :         int count;         // number of replacements
     543             : 
     544             :         // sanity checks and initialization
     545           0 :         if(!orig || !search) goto end;
     546           0 :         len_search = strlen(search);
     547           0 :         if(len_search==0)
     548             :                 goto end;
     549           0 :         if(!replace)
     550             :                 len_rep=0;
     551             :         else
     552           0 :                 len_rep=strlen(replace);
     553             : 
     554             :         // count the number of replacements needed
     555           0 :         ins=orig;
     556           0 :         for(count=0; (tmp=strstr(ins, search)); ++count)
     557           0 :                 ins=tmp+len_search;
     558             : 
     559           0 :         tmp=result=(char *)malloc_w(strlen(orig)+(len_rep-len_search)*count+1, func);
     560             : 
     561           0 :         if(!result) goto end;
     562             : 
     563           0 :         while(count--)
     564             :         {
     565           0 :                 ins=strstr(orig, search);
     566           0 :                 len_front=ins-orig;
     567           0 :                 tmp=strncpy(tmp, orig, len_front)+len_front;
     568           0 :                 tmp=strcpy(tmp, replace)+len_rep;
     569           0 :                 orig+=len_front+len_search; // move to next "end of rep"
     570             :         }
     571           0 :         strcpy(tmp, orig);
     572             : end:
     573           0 :         return result;
     574             : }
     575             : 
     576          18 : static int charcount_noescaped(const char *orig, char search, int repeat)
     577             : {
     578          18 :         int count=0;
     579             :         int len;
     580             :         int i;
     581          18 :         char quote='\0';
     582          18 :         char prev='\0';
     583          18 :         if(!orig) return count;
     584          18 :         len=strlen(orig);
     585         860 :         for(count=0, i=0; i<len; i++)
     586             :         {
     587         842 :                 if(quote=='\0' && (orig[i]=='\'' || orig[i]=='"'))
     588             :                         quote=orig[i];
     589         839 :                 else if(quote!='\0' && orig[i]==quote)
     590             :                 {
     591             :                         // ignore escaped quote
     592           3 :                         if(i>0 && orig[i-1]=='\\')
     593             :                                 goto loop_tail;
     594           3 :                         quote='\0';
     595             :                 }
     596         836 :                 else if(quote=='\0' && orig[i]==search)
     597             :                 {
     598             :                         // ignore escaped char
     599          43 :                         if(i>0 && orig[i-1]=='\\')
     600             :                                 goto loop_tail;
     601          43 :                         if(repeat || prev!=orig[i])
     602          39 :                                 count++;
     603             :                 }
     604             : loop_tail:
     605         842 :                 prev=orig[i];
     606             :         }
     607             :         return count;
     608             : }
     609             : 
     610          12 : char *charreplace_noescaped_w(const char *orig, char search, const char *replace, int *count, const char *func)
     611             : {
     612          12 :         char *result=NULL;
     613             :         char *tmp;
     614          12 :         char quote='\0';
     615          12 :         int nb_repl=0;  // number of replacement
     616             :         int i;
     617             :         int len;
     618             :         int len_replace;
     619             :         int len_dest;
     620             : 
     621          12 :         if(!orig || !search) goto end;
     622             : 
     623          12 :         len=strlen(orig);
     624          12 :         len_replace=strlen(replace);
     625             : 
     626          12 :         if(!(nb_repl=charcount_noescaped(orig, search, 1)))
     627             :         {
     628           7 :                 result=strdup_w(orig, func);
     629           7 :                 goto end;
     630             :         }
     631             : 
     632           5 :         len_dest=len+((len_replace-1)*nb_repl)+1;
     633           5 :         tmp=result=(char *)malloc_w(len_dest, func);
     634           5 :         if(!result) goto end;
     635             : 
     636             :         quote='\0';
     637         363 :         for(i=0; i<len; i++)
     638             :         {
     639         363 :                 if(quote=='\0' && (orig[i]=='\'' || orig[i]=='"'))
     640             :                         quote=orig[i];
     641         361 :                 else if(quote!='\0' && orig[i]==quote)
     642             :                 {
     643           2 :                         if(i<=0 || orig[i-1]!='\\')
     644           2 :                                 quote='\0';
     645             :                 }
     646         359 :                 else if(quote=='\0' && orig[i]==search)
     647             :                 {
     648           9 :                         if(i<=0 || orig[i-1]!='\\')
     649             :                         {
     650           9 :                                 tmp=strncpy(tmp, replace, len_replace)+len_replace;
     651           9 :                                 continue;
     652             :                         }
     653             :                 }
     654         354 :                 *tmp=orig[i];
     655         354 :                 tmp++;
     656             :         }
     657           5 :         *tmp='\0';
     658             : end:
     659          12 :         *count=nb_repl;
     660          12 :         return result;
     661             : }
     662             : 
     663             : /*
     664             :  * Returns NULL-terminated list of tokens found in string src,
     665             :  * also sets *size to number of tokens found (list length without final NULL).
     666             :  * On failure returns NULL. List itself and tokens are dynamically allocated.
     667             :  * Calls to strtok with delimiters in second argument are used (see its docs),
     668             :  * but neither src nor delimiters arguments are altered.
     669             :  */
     670           0 : char **strsplit_w(const char *src, const char *delimiters, size_t *size, const char *func)
     671             : {
     672             :         size_t allocated;
     673           0 :         char *init=NULL;
     674           0 :         char **ret=NULL;
     675             : 
     676           0 :         *size=0;
     677           0 :         if(!(init=strdup_w(src, func))) goto end;
     678           0 :         if(!(ret=(char **)malloc_w((allocated=10)*sizeof(char *), func)))
     679             :                 goto end;
     680           0 :         for(char *tmp=strtok(init, delimiters); tmp; tmp=strtok(NULL, delimiters))
     681             :         {
     682             :                 // Check if space is present for another token and terminating NULL.
     683           0 :                 if(allocated<*size+2)
     684             :                 {
     685           0 :                         if(!(ret=(char **)realloc_w(ret,
     686           0 :                                 (allocated=*size+11)*sizeof(char *), func)))
     687             :                                         goto end;
     688             :                 }
     689           0 :                 if(!(ret[(*size)++]=strdup_w(tmp, func)))
     690             :                 {
     691             :                         ret=NULL;
     692             :                         goto end;
     693             :                 }
     694             :         }
     695           0 :         ret[*size]=NULL;
     696             : 
     697             : end:
     698           0 :         free_w(&init);
     699           0 :         return ret;
     700             : }
     701             : 
     702           6 : static char *strip_whitespace_w(const char *src, const char *func)
     703             : {
     704           6 :         char *ret=NULL;
     705           6 :         char *ptr=(char *)src;
     706           6 :         int len=strlen(src);
     707             :         int size;
     708           6 :         if(*ptr!=' ' && ptr[len-1]!=' ')
     709             :         {
     710           3 :                 if(!(ret=strdup_w(src, func))) goto end;
     711             :                 return ret;
     712             :         }
     713           3 :         for(; *ptr==' '; ptr++);
     714           3 :         size=strlen(ptr);
     715           3 :         for(; ptr[size-1]==' '; --size);
     716           3 :         if(!(ret=(char *)malloc_w(size+2, func))) goto end;
     717           3 :         ret=strncpy(ret, ptr, size);
     718           3 :         ret[size]='\0';
     719             : end:
     720             :         return ret;
     721             : }
     722             : 
     723             : // same as strsplit_w except the delimiter is a single char and if the delimiter
     724             : // is inside quotes or escaped with '\' it is ignored.
     725           6 : char **charsplit_noescaped_w(const char *src, char delimiter, size_t *size, const char *func)
     726             : {
     727           6 :         char **ret=NULL;
     728           6 :         char *ptr=NULL;
     729             :         char *buf;
     730             :         char *end;
     731           6 :         char quote='\0';
     732           6 :         char prev='\0';
     733             :         int count;
     734             :         int i, j, k;
     735             :         int len;
     736             : 
     737           6 :         if(!src) goto end;
     738           6 :         ptr=strip_whitespace_w(src, func);
     739           6 :         buf=ptr;
     740           6 :         len=strlen(ptr);
     741           6 :         if(!(count=charcount_noescaped(ptr, delimiter, 0)))
     742             :                 goto end;
     743             :         // need one more space than the number of delimiters
     744           6 :         count++;
     745           6 :         if(!(ret=(char **)malloc_w((count+1)*sizeof(char *), func)))
     746             :                 goto error;
     747           6 :         *size=(size_t)count;
     748         292 :         for(i=0, j=0, k=0; i<len; i++)
     749             :         {
     750         286 :                 if(quote=='\0' && (ptr[i]=='\'' || ptr[i]=='"'))
     751             :                         quote=ptr[i];
     752         285 :                 else if(quote!='\0' && ptr[i]==quote)
     753             :                 {
     754           1 :                         if(i<=0 || ptr[i-1]!='\\')
     755           1 :                                 quote='\0';
     756             :                 }
     757         284 :                 else if(quote=='\0' && ptr[i]==delimiter)
     758             :                 {
     759          34 :                         if(i<=0 || ptr[i-1]!='\\')
     760             :                         {
     761          34 :                                 if(prev==ptr[i])
     762           4 :                                         buf++;
     763             :                                 else
     764             :                                 {
     765             :                                         char *tmp;
     766          30 :                                         int tmp_len=j+1;
     767          30 :                                         if(k>0) buf++;
     768          30 :                                         if(!(tmp=(char *)malloc_w(
     769             :                                                 tmp_len, func)))
     770             :                                                         goto error;
     771          30 :                                         tmp=strncpy(tmp, buf, tmp_len);
     772          30 :                                         tmp[tmp_len-1]='\0';
     773          30 :                                         ret[k]=tmp;
     774          30 :                                         buf+=j;
     775          30 :                                         j=0;
     776          30 :                                         k++;
     777             :                                 }
     778             :                                 goto loop_tail;
     779             :                         }
     780             :                 }
     781         252 :                 j++;
     782             : loop_tail:
     783         286 :                 prev=ptr[i];
     784             :         }
     785           6 :         while(*buf==delimiter && *(buf-1)!='\\') buf++;
     786           6 :         if(!(end=(char *)malloc_w(j+1, func)))
     787             :                 goto error;
     788           6 :         end=strncpy(end, buf, j+1);
     789           6 :         end[j]='\0';
     790           6 :         ret[k]=end;
     791           6 :         ret[k+1]=NULL;
     792             : end:
     793           6 :         free_w(&ptr);
     794           6 :         return ret;
     795             : error:
     796           0 :         free_w(&ptr);
     797           0 :         free_list_w(&ret, *size);
     798           0 :         return NULL;
     799             : }
     800             : 
     801           6 : void free_list_w(char ***list, size_t size)
     802             : {
     803           6 :         char **l=*list;
     804           6 :         if(!l) return;
     805             :         size_t i;
     806          36 :         for(i=0; i<size; i++)
     807          36 :                 if(l[i]) free_w(&l[i]);
     808           6 :         free_v((void **)list);
     809             : }
     810             : 
     811             : // Strip any trailing slashes (unless it is '/').
     812          10 : void strip_trailing_slashes(char **str)
     813             : {
     814             :         size_t l;
     815             :         // FIX THIS: pretty crappy.
     816             :         while(1)
     817             :         {
     818          12 :                 if(!str || !*str
     819          11 :                   || !strcmp(*str, "/")
     820          11 :                   || !(l=strlen(*str))
     821          11 :                   || (*str)[l-1]!='/')
     822          10 :                         return;
     823           1 :                 (*str)[l-1]='\0';
     824             :         }
     825             : }
     826             : 
     827           0 : int breakpoint(int breakpoint, const char *func)
     828             : {
     829           0 :         logp("Breakpoint %d hit in %s\n", breakpoint, func);
     830           0 :         return -1;
     831             : }
     832             : 
     833             : /* Windows users have a nasty habit of putting in backslashes. Convert them. */
     834             : #ifdef HAVE_WIN32
     835             : void convert_backslashes(char **path)
     836             : {
     837             :         char *p=NULL;
     838             :         for(p=*path; *p; p++) if(*p=='\\') *p='/';
     839             : }
     840             : #endif
     841             : 
     842           3 : char *strlwr(char *s)
     843             : {
     844           3 :         char *tmp=s;
     845           3 :         for(;*tmp;++tmp) *tmp=tolower((unsigned char)*tmp);
     846           3 :         return s;
     847             : }
     848             : 
     849           1 : void strip_fqdn(char **fqdn)
     850             : {
     851             :         char *tmp;
     852           1 :         if(!fqdn || !*fqdn)
     853             :                 return;
     854           1 :         if((tmp=strchr(*fqdn, '.')))
     855           1 :                 *tmp='\0';
     856             : }

Generated by: LCOV version 1.13