]> git.cworth.org Git - tar/blob - gnu/xstrtol.c
upstream: Fix extraction of device nodes.
[tar] / gnu / xstrtol.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* A more useful interface to strtol.
4
5    Copyright (C) 1995-1996, 1998-2001, 2003-2007, 2009-2010 Free Software
6    Foundation, Inc.
7
8    This program is free software: you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 /* Written by Jim Meyering. */
22
23 #ifndef __strtol
24 # define __strtol strtol
25 # define __strtol_t long int
26 # define __xstrtol xstrtol
27 # define STRTOL_T_MINIMUM LONG_MIN
28 # define STRTOL_T_MAXIMUM LONG_MAX
29 #endif
30
31 #include <config.h>
32
33 #include "xstrtol.h"
34
35 /* Some pre-ANSI implementations (e.g. SunOS 4)
36    need stderr defined if assertion checking is enabled.  */
37 #include <stdio.h>
38
39 #include <assert.h>
40 #include <ctype.h>
41 #include <errno.h>
42 #include <limits.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 #include "intprops.h"
47
48 static strtol_error
49 bkm_scale (__strtol_t *x, int scale_factor)
50 {
51   if (TYPE_SIGNED (__strtol_t) && *x < STRTOL_T_MINIMUM / scale_factor)
52     {
53       *x = STRTOL_T_MINIMUM;
54       return LONGINT_OVERFLOW;
55     }
56   if (STRTOL_T_MAXIMUM / scale_factor < *x)
57     {
58       *x = STRTOL_T_MAXIMUM;
59       return LONGINT_OVERFLOW;
60     }
61   *x *= scale_factor;
62   return LONGINT_OK;
63 }
64
65 static strtol_error
66 bkm_scale_by_power (__strtol_t *x, int base, int power)
67 {
68   strtol_error err = LONGINT_OK;
69   while (power--)
70     err |= bkm_scale (x, base);
71   return err;
72 }
73
74 /* FIXME: comment.  */
75
76 strtol_error
77 __xstrtol (const char *s, char **ptr, int strtol_base,
78            __strtol_t *val, const char *valid_suffixes)
79 {
80   char *t_ptr;
81   char **p;
82   __strtol_t tmp;
83   strtol_error err = LONGINT_OK;
84
85   assert (0 <= strtol_base && strtol_base <= 36);
86
87   p = (ptr ? ptr : &t_ptr);
88
89   if (! TYPE_SIGNED (__strtol_t))
90     {
91       const char *q = s;
92       unsigned char ch = *q;
93       while (isspace (ch))
94         ch = *++q;
95       if (ch == '-')
96         return LONGINT_INVALID;
97     }
98
99   errno = 0;
100   tmp = __strtol (s, p, strtol_base);
101
102   if (*p == s)
103     {
104       /* If there is no number but there is a valid suffix, assume the
105          number is 1.  The string is invalid otherwise.  */
106       if (valid_suffixes && **p && strchr (valid_suffixes, **p))
107         tmp = 1;
108       else
109         return LONGINT_INVALID;
110     }
111   else if (errno != 0)
112     {
113       if (errno != ERANGE)
114         return LONGINT_INVALID;
115       err = LONGINT_OVERFLOW;
116     }
117
118   /* Let valid_suffixes == NULL mean `allow any suffix'.  */
119   /* FIXME: update all callers except the ones that allow suffixes
120      after the number, changing last parameter NULL to `""'.  */
121   if (!valid_suffixes)
122     {
123       *val = tmp;
124       return err;
125     }
126
127   if (**p != '\0')
128     {
129       int base = 1024;
130       int suffixes = 1;
131       strtol_error overflow;
132
133       if (!strchr (valid_suffixes, **p))
134         {
135           *val = tmp;
136           return err | LONGINT_INVALID_SUFFIX_CHAR;
137         }
138
139       if (strchr (valid_suffixes, '0'))
140         {
141           /* The ``valid suffix'' '0' is a special flag meaning that
142              an optional second suffix is allowed, which can change
143              the base.  A suffix "B" (e.g. "100MB") stands for a power
144              of 1000, whereas a suffix "iB" (e.g. "100MiB") stands for
145              a power of 1024.  If no suffix (e.g. "100M"), assume
146              power-of-1024.  */
147
148           switch (p[0][1])
149             {
150             case 'i':
151               if (p[0][2] == 'B')
152                 suffixes += 2;
153               break;
154
155             case 'B':
156             case 'D': /* 'D' is obsolescent */
157               base = 1000;
158               suffixes++;
159               break;
160             }
161         }
162
163       switch (**p)
164         {
165         case 'b':
166           overflow = bkm_scale (&tmp, 512);
167           break;
168
169         case 'B':
170           overflow = bkm_scale (&tmp, 1024);
171           break;
172
173         case 'c':
174           overflow = 0;
175           break;
176
177         case 'E': /* exa or exbi */
178           overflow = bkm_scale_by_power (&tmp, base, 6);
179           break;
180
181         case 'G': /* giga or gibi */
182         case 'g': /* 'g' is undocumented; for compatibility only */
183           overflow = bkm_scale_by_power (&tmp, base, 3);
184           break;
185
186         case 'k': /* kilo */
187         case 'K': /* kibi */
188           overflow = bkm_scale_by_power (&tmp, base, 1);
189           break;
190
191         case 'M': /* mega or mebi */
192         case 'm': /* 'm' is undocumented; for compatibility only */
193           overflow = bkm_scale_by_power (&tmp, base, 2);
194           break;
195
196         case 'P': /* peta or pebi */
197           overflow = bkm_scale_by_power (&tmp, base, 5);
198           break;
199
200         case 'T': /* tera or tebi */
201         case 't': /* 't' is undocumented; for compatibility only */
202           overflow = bkm_scale_by_power (&tmp, base, 4);
203           break;
204
205         case 'w':
206           overflow = bkm_scale (&tmp, 2);
207           break;
208
209         case 'Y': /* yotta or 2**80 */
210           overflow = bkm_scale_by_power (&tmp, base, 8);
211           break;
212
213         case 'Z': /* zetta or 2**70 */
214           overflow = bkm_scale_by_power (&tmp, base, 7);
215           break;
216
217         default:
218           *val = tmp;
219           return err | LONGINT_INVALID_SUFFIX_CHAR;
220         }
221
222       err |= overflow;
223       *p += suffixes;
224       if (**p)
225         err |= LONGINT_INVALID_SUFFIX_CHAR;
226     }
227
228   *val = tmp;
229   return err;
230 }