aboutsummaryrefslogtreecommitdiff
path: root/quotesys.c
blob: 528f38227203aa1443f9b54d4ba837ceadadfac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* Shell command argument quoting.
   Copyright (C) 1994, 1995, 1997 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.
   If not, write to the Free Software Foundation,
   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

/* Written by Paul Eggert <eggert@twinsun.com> */

#if HAVE_CONFIG_H
# include <config.h>
#endif

#include <sys/types.h>
#include <quotesys.h>

/* Place into QUOTED a quoted version of ARG suitable for `system'.
   Return the length of the resulting string (which is not null-terminated).
   If QUOTED is null, return the length without any side effects.  */

size_t
quote_system_arg (quoted, arg)
     char *quoted;
     char const *arg;
{
  char const *a;
  size_t len = 0;

  /* Scan ARG, copying it to QUOTED if QUOTED is not null,
     looking for shell metacharacters.  */

  for (a = arg; ; a++)
    {
      char c = *a;
      switch (c)
	{
	case 0:
	  /* ARG has no shell metacharacters.  */
	  return len;

	case '=':
	  if (*arg == '-')
	    break;
	  /* Fall through.  */
	case '\t': case '\n': case ' ':
	case '!': case '"': case '#': case '$': case '%': case '&': case '\'':
	case '(': case ')': case '*': case ';':
	case '<': case '>': case '?': case '[': case '\\':
	case '^': case '`': case '|': case '~':
	  {
	    /* ARG has a shell metacharacter.
	       Start over, quoting it this time.  */

	    len = 0;
	    c = *arg++;

	    /* If ARG is an option, quote just its argument.
	       This is not necessary, but it looks nicer.  */
	    if (c == '-'  &&  arg < a)
	      {
		c = *arg++;

		if (quoted)
		  {
		    quoted[len] = '-';
		    quoted[len + 1] = c;
		  }
		len += 2;

		if (c == '-')
		  while (arg < a)
		    {
		      c = *arg++;
		      if (quoted)
			quoted[len] = c;
		      len++;
		      if (c == '=')
			break;
		    }
		c = *arg++;
	      }

	    if (quoted)
	      quoted[len] = '\'';
	    len++;

	    for (;  c;  c = *arg++)
	      {
		if (c == '\'')
		  {
		    if (quoted)
		      {
			quoted[len] = '\'';
			quoted[len + 1] = '\\';
			quoted[len + 2] = '\'';
		      }
		    len += 3;
		  }
		if (quoted)
		  quoted[len] = c;
		len++;
	      }

	    if (quoted)
	      quoted[len] = '\'';
	    return len + 1;
	  }
	}

      if (quoted)
	quoted[len] = c;
      len++;
    }
}