vsprintf.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. /*
  2. * linux/lib/vsprintf.c
  3. *
  4. * Copyright (C) 1991, 1992 Linus Torvalds
  5. */
  6. /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
  7. /*
  8. * Wirzenius wrote this portably, Torvalds fucked it up :-)
  9. */
  10. /*
  11. * Fri Jul 13 2001 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
  12. * - changed to provide snprintf and vsnprintf functions
  13. * So Feb 1 16:51:32 CET 2004 Juergen Quade <quade@hsnr.de>
  14. * - scnprintf and vscnprintf
  15. */
  16. #include <stdarg.h>
  17. #include <linux/module.h> /* for KSYM_SYMBOL_LEN */
  18. #include <linux/types.h>
  19. #include <linux/string.h>
  20. #include <linux/ctype.h>
  21. #include <linux/kernel.h>
  22. #include <linux/kallsyms.h>
  23. #include <linux/uaccess.h>
  24. #include <linux/ioport.h>
  25. #include <linux/cred.h>
  26. #include <net/addrconf.h>
  27. #include <asm/page.h> /* for PAGE_SIZE */
  28. #include <asm/div64.h>
  29. #include <asm/sections.h> /* for dereference_function_descriptor() */
  30. #include "kstrtox.h"
  31. /**
  32. * simple_strtoull - convert a string to an unsigned long long
  33. * @cp: The start of the string
  34. * @endp: A pointer to the end of the parsed string will be placed here
  35. * @base: The number base to use
  36. */
  37. unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
  38. {
  39. unsigned long long result;
  40. unsigned int rv;
  41. cp = _parse_integer_fixup_radix(cp, &base);
  42. rv = _parse_integer(cp, base, &result);
  43. /* FIXME */
  44. cp += (rv & ~KSTRTOX_OVERFLOW);
  45. if (endp)
  46. *endp = (char *)cp;
  47. return result;
  48. }
  49. EXPORT_SYMBOL(simple_strtoull);
  50. /**
  51. * simple_strtoul - convert a string to an unsigned long
  52. * @cp: The start of the string
  53. * @endp: A pointer to the end of the parsed string will be placed here
  54. * @base: The number base to use
  55. */
  56. unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
  57. {
  58. return simple_strtoull(cp, endp, base);
  59. }
  60. EXPORT_SYMBOL(simple_strtoul);
  61. /**
  62. * simple_strtol - convert a string to a signed long
  63. * @cp: The start of the string
  64. * @endp: A pointer to the end of the parsed string will be placed here
  65. * @base: The number base to use
  66. */
  67. long simple_strtol(const char *cp, char **endp, unsigned int base)
  68. {
  69. if (*cp == '-')
  70. return -simple_strtoul(cp + 1, endp, base);
  71. return simple_strtoul(cp, endp, base);
  72. }
  73. EXPORT_SYMBOL(simple_strtol);
  74. /**
  75. * simple_strtoll - convert a string to a signed long long
  76. * @cp: The start of the string
  77. * @endp: A pointer to the end of the parsed string will be placed here
  78. * @base: The number base to use
  79. */
  80. long long simple_strtoll(const char *cp, char **endp, unsigned int base)
  81. {
  82. if (*cp == '-')
  83. return -simple_strtoull(cp + 1, endp, base);
  84. return simple_strtoull(cp, endp, base);
  85. }
  86. EXPORT_SYMBOL(simple_strtoll);
  87. static noinline_for_stack
  88. int skip_atoi(const char **s)
  89. {
  90. int i = 0;
  91. while (isdigit(**s))
  92. i = i*10 + *((*s)++) - '0';
  93. return i;
  94. }
  95. /* Decimal conversion is by far the most typical, and is used
  96. * for /proc and /sys data. This directly impacts e.g. top performance
  97. * with many processes running. We optimize it for speed
  98. * using code from
  99. * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
  100. * (with permission from the author, Douglas W. Jones). */
  101. /* Formats correctly any integer in [0,99999].
  102. * Outputs from one to five digits depending on input.
  103. * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
  104. static noinline_for_stack
  105. char *put_dec_trunc(char *buf, unsigned q)
  106. {
  107. unsigned d3, d2, d1, d0;
  108. d1 = (q>>4) & 0xf;
  109. d2 = (q>>8) & 0xf;
  110. d3 = (q>>12);
  111. d0 = 6*(d3 + d2 + d1) + (q & 0xf);
  112. q = (d0 * 0xcd) >> 11;
  113. d0 = d0 - 10*q;
  114. *buf++ = d0 + '0'; /* least significant digit */
  115. d1 = q + 9*d3 + 5*d2 + d1;
  116. if (d1 != 0) {
  117. q = (d1 * 0xcd) >> 11;
  118. d1 = d1 - 10*q;
  119. *buf++ = d1 + '0'; /* next digit */
  120. d2 = q + 2*d2;
  121. if ((d2 != 0) || (d3 != 0)) {
  122. q = (d2 * 0xd) >> 7;
  123. d2 = d2 - 10*q;
  124. *buf++ = d2 + '0'; /* next digit */
  125. d3 = q + 4*d3;
  126. if (d3 != 0) {
  127. q = (d3 * 0xcd) >> 11;
  128. d3 = d3 - 10*q;
  129. *buf++ = d3 + '0'; /* next digit */
  130. if (q != 0)
  131. *buf++ = q + '0'; /* most sign. digit */
  132. }
  133. }
  134. }
  135. return buf;
  136. }
  137. /* Same with if's removed. Always emits five digits */
  138. static noinline_for_stack
  139. char *put_dec_full(char *buf, unsigned q)
  140. {
  141. /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
  142. /* but anyway, gcc produces better code with full-sized ints */
  143. unsigned d3, d2, d1, d0;
  144. d1 = (q>>4) & 0xf;
  145. d2 = (q>>8) & 0xf;
  146. d3 = (q>>12);
  147. /*
  148. * Possible ways to approx. divide by 10
  149. * gcc -O2 replaces multiply with shifts and adds
  150. * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
  151. * (x * 0x67) >> 10: 1100111
  152. * (x * 0x34) >> 9: 110100 - same
  153. * (x * 0x1a) >> 8: 11010 - same
  154. * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
  155. */
  156. d0 = 6*(d3 + d2 + d1) + (q & 0xf);
  157. q = (d0 * 0xcd) >> 11;
  158. d0 = d0 - 10*q;
  159. *buf++ = d0 + '0';
  160. d1 = q + 9*d3 + 5*d2 + d1;
  161. q = (d1 * 0xcd) >> 11;
  162. d1 = d1 - 10*q;
  163. *buf++ = d1 + '0';
  164. d2 = q + 2*d2;
  165. q = (d2 * 0xd) >> 7;
  166. d2 = d2 - 10*q;
  167. *buf++ = d2 + '0';
  168. d3 = q + 4*d3;
  169. q = (d3 * 0xcd) >> 11; /* - shorter code */
  170. /* q = (d3 * 0x67) >> 10; - would also work */
  171. d3 = d3 - 10*q;
  172. *buf++ = d3 + '0';
  173. *buf++ = q + '0';
  174. return buf;
  175. }
  176. /* No inlining helps gcc to use registers better */
  177. static noinline_for_stack
  178. char *put_dec(char *buf, unsigned long long num)
  179. {
  180. while (1) {
  181. unsigned rem;
  182. if (num < 100000)
  183. return put_dec_trunc(buf, num);
  184. rem = do_div(num, 100000);
  185. buf = put_dec_full(buf, rem);
  186. }
  187. }
  188. /*
  189. * Convert passed number to decimal string.
  190. * Returns the length of string. On buffer overflow, returns 0.
  191. *
  192. * If speed is not important, use snprintf(). It's easy to read the code.
  193. */
  194. int num_to_str(char *buf, int size, unsigned long long num)
  195. {
  196. char tmp[21]; /* Enough for 2^64 in decimal */
  197. int idx, len;
  198. len = put_dec(tmp, num) - tmp;
  199. if (len > size)
  200. return 0;
  201. for (idx = 0; idx < len; ++idx)
  202. buf[idx] = tmp[len - idx - 1];
  203. return len;
  204. }
  205. #define ZEROPAD 1 /* pad with zero */
  206. #define SIGN 2 /* unsigned/signed long */
  207. #define PLUS 4 /* show plus */
  208. #define SPACE 8 /* space if plus */
  209. #define LEFT 16 /* left justified */
  210. #define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
  211. #define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
  212. enum format_type {
  213. FORMAT_TYPE_NONE, /* Just a string part */
  214. FORMAT_TYPE_WIDTH,
  215. FORMAT_TYPE_PRECISION,
  216. FORMAT_TYPE_CHAR,
  217. FORMAT_TYPE_STR,
  218. FORMAT_TYPE_PTR,
  219. FORMAT_TYPE_PERCENT_CHAR,
  220. FORMAT_TYPE_INVALID,
  221. FORMAT_TYPE_LONG_LONG,
  222. FORMAT_TYPE_ULONG,
  223. FORMAT_TYPE_LONG,
  224. FORMAT_TYPE_UBYTE,
  225. FORMAT_TYPE_BYTE,
  226. FORMAT_TYPE_USHORT,
  227. FORMAT_TYPE_SHORT,
  228. FORMAT_TYPE_UINT,
  229. FORMAT_TYPE_INT,
  230. FORMAT_TYPE_NRCHARS,
  231. FORMAT_TYPE_SIZE_T,
  232. FORMAT_TYPE_PTRDIFF
  233. };
  234. struct printf_spec {
  235. u8 type; /* format_type enum */
  236. u8 flags; /* flags to number() */
  237. u8 base; /* number base, 8, 10 or 16 only */
  238. u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */
  239. s16 field_width; /* width of output field */
  240. s16 precision; /* # of digits/chars */
  241. };
  242. static noinline_for_stack
  243. char *number(char *buf, char *end, unsigned long long num,
  244. struct printf_spec spec)
  245. {
  246. /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
  247. static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
  248. char tmp[66];
  249. char sign;
  250. char locase;
  251. int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
  252. int i;
  253. /* locase = 0 or 0x20. ORing digits or letters with 'locase'
  254. * produces same digits or (maybe lowercased) letters */
  255. locase = (spec.flags & SMALL);
  256. if (spec.flags & LEFT)
  257. spec.flags &= ~ZEROPAD;
  258. sign = 0;
  259. if (spec.flags & SIGN) {
  260. if ((signed long long)num < 0) {
  261. sign = '-';
  262. num = -(signed long long)num;
  263. spec.field_width--;
  264. } else if (spec.flags & PLUS) {
  265. sign = '+';
  266. spec.field_width--;
  267. } else if (spec.flags & SPACE) {
  268. sign = ' ';
  269. spec.field_width--;
  270. }
  271. }
  272. if (need_pfx) {
  273. spec.field_width--;
  274. if (spec.base == 16)
  275. spec.field_width--;
  276. }
  277. /* generate full string in tmp[], in reverse order */
  278. i = 0;
  279. if (num == 0)
  280. tmp[i++] = '0';
  281. /* Generic code, for any base:
  282. else do {
  283. tmp[i++] = (digits[do_div(num,base)] | locase);
  284. } while (num != 0);
  285. */
  286. else if (spec.base != 10) { /* 8 or 16 */
  287. int mask = spec.base - 1;
  288. int shift = 3;
  289. if (spec.base == 16)
  290. shift = 4;
  291. do {
  292. tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
  293. num >>= shift;
  294. } while (num);
  295. } else { /* base 10 */
  296. i = put_dec(tmp, num) - tmp;
  297. }
  298. /* printing 100 using %2d gives "100", not "00" */
  299. if (i > spec.precision)
  300. spec.precision = i;
  301. /* leading space padding */
  302. spec.field_width -= spec.precision;
  303. if (!(spec.flags & (ZEROPAD+LEFT))) {
  304. while (--spec.field_width >= 0) {
  305. if (buf < end)
  306. *buf = ' ';
  307. ++buf;
  308. }
  309. }
  310. /* sign */
  311. if (sign) {
  312. if (buf < end)
  313. *buf = sign;
  314. ++buf;
  315. }
  316. /* "0x" / "0" prefix */
  317. if (need_pfx) {
  318. if (buf < end)
  319. *buf = '0';
  320. ++buf;
  321. if (spec.base == 16) {
  322. if (buf < end)
  323. *buf = ('X' | locase);
  324. ++buf;
  325. }
  326. }
  327. /* zero or space padding */
  328. if (!(spec.flags & LEFT)) {
  329. char c = (spec.flags & ZEROPAD) ? '0' : ' ';
  330. while (--spec.field_width >= 0) {
  331. if (buf < end)
  332. *buf = c;
  333. ++buf;
  334. }
  335. }
  336. /* hmm even more zero padding? */
  337. while (i <= --spec.precision) {
  338. if (buf < end)
  339. *buf = '0';
  340. ++buf;
  341. }
  342. /* actual digits of result */
  343. while (--i >= 0) {
  344. if (buf < end)
  345. *buf = tmp[i];
  346. ++buf;
  347. }
  348. /* trailing space padding */
  349. while (--spec.field_width >= 0) {
  350. if (buf < end)
  351. *buf = ' ';
  352. ++buf;
  353. }
  354. return buf;
  355. }
  356. static noinline_for_stack
  357. char *string(char *buf, char *end, const char *s, struct printf_spec spec)
  358. {
  359. int len, i;
  360. if ((unsigned long)s < PAGE_SIZE)
  361. s = "(null)";
  362. len = strnlen(s, spec.precision);
  363. if (!(spec.flags & LEFT)) {
  364. while (len < spec.field_width--) {
  365. if (buf < end)
  366. *buf = ' ';
  367. ++buf;
  368. }
  369. }
  370. for (i = 0; i < len; ++i) {
  371. if (buf < end)
  372. *buf = *s;
  373. ++buf; ++s;
  374. }
  375. while (len < spec.field_width--) {
  376. if (buf < end)
  377. *buf = ' ';
  378. ++buf;
  379. }
  380. return buf;
  381. }
  382. static noinline_for_stack
  383. char *symbol_string(char *buf, char *end, void *ptr,
  384. struct printf_spec spec, char ext)
  385. {
  386. unsigned long value = (unsigned long) ptr;
  387. #ifdef CONFIG_KALLSYMS
  388. char sym[KSYM_SYMBOL_LEN];
  389. if (ext == 'B')
  390. sprint_backtrace(sym, value);
  391. else if (ext != 'f' && ext != 's')
  392. sprint_symbol(sym, value);
  393. else
  394. sprint_symbol_no_offset(sym, value);
  395. return string(buf, end, sym, spec);
  396. #else
  397. spec.field_width = 2 * sizeof(void *);
  398. spec.flags |= SPECIAL | SMALL | ZEROPAD;
  399. spec.base = 16;
  400. return number(buf, end, value, spec);
  401. #endif
  402. }
  403. static noinline_for_stack
  404. char *resource_string(char *buf, char *end, struct resource *res,
  405. struct printf_spec spec, const char *fmt)
  406. {
  407. #ifndef IO_RSRC_PRINTK_SIZE
  408. #define IO_RSRC_PRINTK_SIZE 6
  409. #endif
  410. #ifndef MEM_RSRC_PRINTK_SIZE
  411. #define MEM_RSRC_PRINTK_SIZE 10
  412. #endif
  413. static const struct printf_spec io_spec = {
  414. .base = 16,
  415. .field_width = IO_RSRC_PRINTK_SIZE,
  416. .precision = -1,
  417. .flags = SPECIAL | SMALL | ZEROPAD,
  418. };
  419. static const struct printf_spec mem_spec = {
  420. .base = 16,
  421. .field_width = MEM_RSRC_PRINTK_SIZE,
  422. .precision = -1,
  423. .flags = SPECIAL | SMALL | ZEROPAD,
  424. };
  425. static const struct printf_spec bus_spec = {
  426. .base = 16,
  427. .field_width = 2,
  428. .precision = -1,
  429. .flags = SMALL | ZEROPAD,
  430. };
  431. static const struct printf_spec dec_spec = {
  432. .base = 10,
  433. .precision = -1,
  434. .flags = 0,
  435. };
  436. static const struct printf_spec str_spec = {
  437. .field_width = -1,
  438. .precision = 10,
  439. .flags = LEFT,
  440. };
  441. static const struct printf_spec flag_spec = {
  442. .base = 16,
  443. .precision = -1,
  444. .flags = SPECIAL | SMALL,
  445. };
  446. /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
  447. * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
  448. #define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
  449. #define FLAG_BUF_SIZE (2 * sizeof(res->flags))
  450. #define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
  451. #define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
  452. char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
  453. 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
  454. char *p = sym, *pend = sym + sizeof(sym);
  455. int decode = (fmt[0] == 'R') ? 1 : 0;
  456. const struct printf_spec *specp;
  457. *p++ = '[';
  458. if (res->flags & IORESOURCE_IO) {
  459. p = string(p, pend, "io ", str_spec);
  460. specp = &io_spec;
  461. } else if (res->flags & IORESOURCE_MEM) {
  462. p = string(p, pend, "mem ", str_spec);
  463. specp = &mem_spec;
  464. } else if (res->flags & IORESOURCE_IRQ) {
  465. p = string(p, pend, "irq ", str_spec);
  466. specp = &dec_spec;
  467. } else if (res->flags & IORESOURCE_DMA) {
  468. p = string(p, pend, "dma ", str_spec);
  469. specp = &dec_spec;
  470. } else if (res->flags & IORESOURCE_BUS) {
  471. p = string(p, pend, "bus ", str_spec);
  472. specp = &bus_spec;
  473. } else {
  474. p = string(p, pend, "??? ", str_spec);
  475. specp = &mem_spec;
  476. decode = 0;
  477. }
  478. p = number(p, pend, res->start, *specp);
  479. if (res->start != res->end) {
  480. *p++ = '-';
  481. p = number(p, pend, res->end, *specp);
  482. }
  483. if (decode) {
  484. if (res->flags & IORESOURCE_MEM_64)
  485. p = string(p, pend, " 64bit", str_spec);
  486. if (res->flags & IORESOURCE_PREFETCH)
  487. p = string(p, pend, " pref", str_spec);
  488. if (res->flags & IORESOURCE_WINDOW)
  489. p = string(p, pend, " window", str_spec);
  490. if (res->flags & IORESOURCE_DISABLED)
  491. p = string(p, pend, " disabled", str_spec);
  492. } else {
  493. p = string(p, pend, " flags ", str_spec);
  494. p = number(p, pend, res->flags, flag_spec);
  495. }
  496. *p++ = ']';
  497. *p = '\0';
  498. return string(buf, end, sym, spec);
  499. }
  500. static noinline_for_stack
  501. char *mac_address_string(char *buf, char *end, u8 *addr,
  502. struct printf_spec spec, const char *fmt)
  503. {
  504. char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
  505. char *p = mac_addr;
  506. int i;
  507. char separator;
  508. if (fmt[1] == 'F') { /* FDDI canonical format */
  509. separator = '-';
  510. } else {
  511. separator = ':';
  512. }
  513. for (i = 0; i < 6; i++) {
  514. p = hex_byte_pack(p, addr[i]);
  515. if (fmt[0] == 'M' && i != 5)
  516. *p++ = separator;
  517. }
  518. *p = '\0';
  519. return string(buf, end, mac_addr, spec);
  520. }
  521. static noinline_for_stack
  522. char *ip4_string(char *p, const u8 *addr, const char *fmt)
  523. {
  524. int i;
  525. bool leading_zeros = (fmt[0] == 'i');
  526. int index;
  527. int step;
  528. switch (fmt[2]) {
  529. case 'h':
  530. #ifdef __BIG_ENDIAN
  531. index = 0;
  532. step = 1;
  533. #else
  534. index = 3;
  535. step = -1;
  536. #endif
  537. break;
  538. case 'l':
  539. index = 3;
  540. step = -1;
  541. break;
  542. case 'n':
  543. case 'b':
  544. default:
  545. index = 0;
  546. step = 1;
  547. break;
  548. }
  549. for (i = 0; i < 4; i++) {
  550. char temp[3]; /* hold each IP quad in reverse order */
  551. int digits = put_dec_trunc(temp, addr[index]) - temp;
  552. if (leading_zeros) {
  553. if (digits < 3)
  554. *p++ = '0';
  555. if (digits < 2)
  556. *p++ = '0';
  557. }
  558. /* reverse the digits in the quad */
  559. while (digits--)
  560. *p++ = temp[digits];
  561. if (i < 3)
  562. *p++ = '.';
  563. index += step;
  564. }
  565. *p = '\0';
  566. return p;
  567. }
  568. static noinline_for_stack
  569. char *ip6_compressed_string(char *p, const char *addr)
  570. {
  571. int i, j, range;
  572. unsigned char zerolength[8];
  573. int longest = 1;
  574. int colonpos = -1;
  575. u16 word;
  576. u8 hi, lo;
  577. bool needcolon = false;
  578. bool useIPv4;
  579. struct in6_addr in6;
  580. memcpy(&in6, addr, sizeof(struct in6_addr));
  581. useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
  582. memset(zerolength, 0, sizeof(zerolength));
  583. if (useIPv4)
  584. range = 6;
  585. else
  586. range = 8;
  587. /* find position of longest 0 run */
  588. for (i = 0; i < range; i++) {
  589. for (j = i; j < range; j++) {
  590. if (in6.s6_addr16[j] != 0)
  591. break;
  592. zerolength[i]++;
  593. }
  594. }
  595. for (i = 0; i < range; i++) {
  596. if (zerolength[i] > longest) {
  597. longest = zerolength[i];
  598. colonpos = i;
  599. }
  600. }
  601. if (longest == 1) /* don't compress a single 0 */
  602. colonpos = -1;
  603. /* emit address */
  604. for (i = 0; i < range; i++) {
  605. if (i == colonpos) {
  606. if (needcolon || i == 0)
  607. *p++ = ':';
  608. *p++ = ':';
  609. needcolon = false;
  610. i += longest - 1;
  611. continue;
  612. }
  613. if (needcolon) {
  614. *p++ = ':';
  615. needcolon = false;
  616. }
  617. /* hex u16 without leading 0s */
  618. word = ntohs(in6.s6_addr16[i]);
  619. hi = word >> 8;
  620. lo = word & 0xff;
  621. if (hi) {
  622. if (hi > 0x0f)
  623. p = hex_byte_pack(p, hi);
  624. else
  625. *p++ = hex_asc_lo(hi);
  626. p = hex_byte_pack(p, lo);
  627. }
  628. else if (lo > 0x0f)
  629. p = hex_byte_pack(p, lo);
  630. else
  631. *p++ = hex_asc_lo(lo);
  632. needcolon = true;
  633. }
  634. if (useIPv4) {
  635. if (needcolon)
  636. *p++ = ':';
  637. p = ip4_string(p, &in6.s6_addr[12], "I4");
  638. }
  639. *p = '\0';
  640. return p;
  641. }
  642. static noinline_for_stack
  643. char *ip6_string(char *p, const char *addr, const char *fmt)
  644. {
  645. int i;
  646. for (i = 0; i < 8; i++) {
  647. p = hex_byte_pack(p, *addr++);
  648. p = hex_byte_pack(p, *addr++);
  649. if (fmt[0] == 'I' && i != 7)
  650. *p++ = ':';
  651. }
  652. *p = '\0';
  653. return p;
  654. }
  655. static noinline_for_stack
  656. char *ip6_addr_string(char *buf, char *end, const u8 *addr,
  657. struct printf_spec spec, const char *fmt)
  658. {
  659. char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
  660. if (fmt[0] == 'I' && fmt[2] == 'c')
  661. ip6_compressed_string(ip6_addr, addr);
  662. else
  663. ip6_string(ip6_addr, addr, fmt);
  664. return string(buf, end, ip6_addr, spec);
  665. }
  666. static noinline_for_stack
  667. char *ip4_addr_string(char *buf, char *end, const u8 *addr,
  668. struct printf_spec spec, const char *fmt)
  669. {
  670. char ip4_addr[sizeof("255.255.255.255")];
  671. ip4_string(ip4_addr, addr, fmt);
  672. return string(buf, end, ip4_addr, spec);
  673. }
  674. static noinline_for_stack
  675. char *uuid_string(char *buf, char *end, const u8 *addr,
  676. struct printf_spec spec, const char *fmt)
  677. {
  678. char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
  679. char *p = uuid;
  680. int i;
  681. static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
  682. static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
  683. const u8 *index = be;
  684. bool uc = false;
  685. switch (*(++fmt)) {
  686. case 'L':
  687. uc = true; /* fall-through */
  688. case 'l':
  689. index = le;
  690. break;
  691. case 'B':
  692. uc = true;
  693. break;
  694. }
  695. for (i = 0; i < 16; i++) {
  696. p = hex_byte_pack(p, addr[index[i]]);
  697. switch (i) {
  698. case 3:
  699. case 5:
  700. case 7:
  701. case 9:
  702. *p++ = '-';
  703. break;
  704. }
  705. }
  706. *p = 0;
  707. if (uc) {
  708. p = uuid;
  709. do {
  710. *p = toupper(*p);
  711. } while (*(++p));
  712. }
  713. return string(buf, end, uuid, spec);
  714. }
  715. static
  716. char *netdev_feature_string(char *buf, char *end, const u8 *addr,
  717. struct printf_spec spec)
  718. {
  719. spec.flags |= SPECIAL | SMALL | ZEROPAD;
  720. if (spec.field_width == -1)
  721. spec.field_width = 2 + 2 * sizeof(netdev_features_t);
  722. spec.base = 16;
  723. return number(buf, end, *(const netdev_features_t *)addr, spec);
  724. }
  725. int kptr_restrict __read_mostly = 4;
  726. /*
  727. * Show a '%p' thing. A kernel extension is that the '%p' is followed
  728. * by an extra set of alphanumeric characters that are extended format
  729. * specifiers.
  730. *
  731. * Right now we handle:
  732. *
  733. * - 'F' For symbolic function descriptor pointers with offset
  734. * - 'f' For simple symbolic function names without offset
  735. * - 'S' For symbolic direct pointers with offset
  736. * - 's' For symbolic direct pointers without offset
  737. * - 'B' For backtraced symbolic direct pointers with offset
  738. * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
  739. * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
  740. * - 'M' For a 6-byte MAC address, it prints the address in the
  741. * usual colon-separated hex notation
  742. * - 'm' For a 6-byte MAC address, it prints the hex address without colons
  743. * - 'MF' For a 6-byte MAC FDDI address, it prints the address
  744. * with a dash-separated hex notation
  745. * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
  746. * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
  747. * IPv6 uses colon separated network-order 16 bit hex with leading 0's
  748. * - 'i' [46] for 'raw' IPv4/IPv6 addresses
  749. * IPv6 omits the colons (01020304...0f)
  750. * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
  751. * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
  752. * - 'I6c' for IPv6 addresses printed as specified by
  753. * http://tools.ietf.org/html/rfc5952
  754. * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
  755. * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  756. * Options for %pU are:
  757. * b big endian lower case hex (default)
  758. * B big endian UPPER case hex
  759. * l little endian lower case hex
  760. * L little endian UPPER case hex
  761. * big endian output byte order is:
  762. * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
  763. * little endian output byte order is:
  764. * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
  765. * - 'V' For a struct va_format which contains a format string * and va_list *,
  766. * call vsnprintf(->format, *->va_list).
  767. * Implements a "recursive vsnprintf".
  768. * Do not use this feature without some mechanism to verify the
  769. * correctness of the format string and va_list arguments.
  770. * - 'K' For a kernel pointer that should be hidden from unprivileged users
  771. * - 'NF' For a netdev_features_t
  772. * - 'a' For a phys_addr_t type and its derivative types (passed by reference)
  773. *
  774. * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
  775. * function pointers are really function descriptors, which contain a
  776. * pointer to the real address.
  777. */
  778. static noinline_for_stack
  779. char *pointer(const char *fmt, char *buf, char *end, void *ptr,
  780. struct printf_spec spec)
  781. {
  782. if (!ptr && *fmt != 'K') {
  783. /*
  784. * Print (null) with the same width as a pointer so it makes
  785. * tabular output look nice.
  786. */
  787. if (spec.field_width == -1)
  788. spec.field_width = 2 * sizeof(void *);
  789. return string(buf, end, "(null)", spec);
  790. }
  791. switch (*fmt) {
  792. case 'F':
  793. case 'f':
  794. ptr = dereference_function_descriptor(ptr);
  795. /* Fallthrough */
  796. case 'S':
  797. case 's':
  798. case 'B':
  799. return symbol_string(buf, end, ptr, spec, *fmt);
  800. case 'R':
  801. case 'r':
  802. return resource_string(buf, end, ptr, spec, fmt);
  803. case 'M': /* Colon separated: 00:01:02:03:04:05 */
  804. case 'm': /* Contiguous: 000102030405 */
  805. /* [mM]F (FDDI, bit reversed) */
  806. return mac_address_string(buf, end, ptr, spec, fmt);
  807. case 'I': /* Formatted IP supported
  808. * 4: 1.2.3.4
  809. * 6: 0001:0203:...:0708
  810. * 6c: 1::708 or 1::1.2.3.4
  811. */
  812. case 'i': /* Contiguous:
  813. * 4: 001.002.003.004
  814. * 6: 000102...0f
  815. */
  816. switch (fmt[1]) {
  817. case '6':
  818. return ip6_addr_string(buf, end, ptr, spec, fmt);
  819. case '4':
  820. return ip4_addr_string(buf, end, ptr, spec, fmt);
  821. }
  822. break;
  823. case 'U':
  824. return uuid_string(buf, end, ptr, spec, fmt);
  825. case 'V':
  826. {
  827. va_list va;
  828. va_copy(va, *((struct va_format *)ptr)->va);
  829. buf += vsnprintf(buf, end > buf ? end - buf : 0,
  830. ((struct va_format *)ptr)->fmt, va);
  831. va_end(va);
  832. return buf;
  833. }
  834. case 'K':
  835. /*
  836. * %pK cannot be used in IRQ context because its test
  837. * for CAP_SYSLOG would be meaningless.
  838. */
  839. if (kptr_restrict && (in_irq() || in_serving_softirq() ||
  840. in_nmi())) {
  841. if (spec.field_width == -1)
  842. spec.field_width = 2 * sizeof(void *);
  843. return string(buf, end, "pK-error", spec);
  844. }
  845. switch (kptr_restrict) {
  846. case 0:
  847. /* Always print %pK values */
  848. break;
  849. case 1: {
  850. /*
  851. * Only print the real pointer value if the current
  852. * process has CAP_SYSLOG and is running with the
  853. * same credentials it started with. This is because
  854. * access to files is checked at open() time, but %pK
  855. * checks permission at read() time. We don't want to
  856. * leak pointer values if a binary opens a file using
  857. * %pK and then elevates privileges before reading it.
  858. */
  859. const struct cred *cred = current_cred();
  860. if (!has_capability_noaudit(current, CAP_SYSLOG) ||
  861. (cred->euid != cred->uid) ||
  862. (cred->egid != cred->gid))
  863. ptr = NULL;
  864. break;
  865. }
  866. case 2:
  867. default:
  868. /* Always print 0's for %pK */
  869. ptr = NULL;
  870. break;
  871. }
  872. break;
  873. case 'N':
  874. switch (fmt[1]) {
  875. case 'F':
  876. return netdev_feature_string(buf, end, ptr, spec);
  877. }
  878. break;
  879. case 'a':
  880. spec.flags |= SPECIAL | SMALL | ZEROPAD;
  881. spec.field_width = sizeof(phys_addr_t) * 2 + 2;
  882. spec.base = 16;
  883. return number(buf, end,
  884. (unsigned long long) *((phys_addr_t *)ptr), spec);
  885. }
  886. spec.flags |= SMALL;
  887. if (spec.field_width == -1) {
  888. spec.field_width = 2 * sizeof(void *);
  889. spec.flags |= ZEROPAD;
  890. }
  891. spec.base = 16;
  892. return number(buf, end, (unsigned long) ptr, spec);
  893. }
  894. /*
  895. * Helper function to decode printf style format.
  896. * Each call decode a token from the format and return the
  897. * number of characters read (or likely the delta where it wants
  898. * to go on the next call).
  899. * The decoded token is returned through the parameters
  900. *
  901. * 'h', 'l', or 'L' for integer fields
  902. * 'z' support added 23/7/1999 S.H.
  903. * 'z' changed to 'Z' --davidm 1/25/99
  904. * 't' added for ptrdiff_t
  905. *
  906. * @fmt: the format string
  907. * @type of the token returned
  908. * @flags: various flags such as +, -, # tokens..
  909. * @field_width: overwritten width
  910. * @base: base of the number (octal, hex, ...)
  911. * @precision: precision of a number
  912. * @qualifier: qualifier of a number (long, size_t, ...)
  913. */
  914. static noinline_for_stack
  915. int format_decode(const char *fmt, struct printf_spec *spec)
  916. {
  917. const char *start = fmt;
  918. /* we finished early by reading the field width */
  919. if (spec->type == FORMAT_TYPE_WIDTH) {
  920. if (spec->field_width < 0) {
  921. spec->field_width = -spec->field_width;
  922. spec->flags |= LEFT;
  923. }
  924. spec->type = FORMAT_TYPE_NONE;
  925. goto precision;
  926. }
  927. /* we finished early by reading the precision */
  928. if (spec->type == FORMAT_TYPE_PRECISION) {
  929. if (spec->precision < 0)
  930. spec->precision = 0;
  931. spec->type = FORMAT_TYPE_NONE;
  932. goto qualifier;
  933. }
  934. /* By default */
  935. spec->type = FORMAT_TYPE_NONE;
  936. for (; *fmt ; ++fmt) {
  937. if (*fmt == '%')
  938. break;
  939. }
  940. /* Return the current non-format string */
  941. if (fmt != start || !*fmt)
  942. return fmt - start;
  943. /* Process flags */
  944. spec->flags = 0;
  945. while (1) { /* this also skips first '%' */
  946. bool found = true;
  947. ++fmt;
  948. switch (*fmt) {
  949. case '-': spec->flags |= LEFT; break;
  950. case '+': spec->flags |= PLUS; break;
  951. case ' ': spec->flags |= SPACE; break;
  952. case '#': spec->flags |= SPECIAL; break;
  953. case '0': spec->flags |= ZEROPAD; break;
  954. default: found = false;
  955. }
  956. if (!found)
  957. break;
  958. }
  959. /* get field width */
  960. spec->field_width = -1;
  961. if (isdigit(*fmt))
  962. spec->field_width = skip_atoi(&fmt);
  963. else if (*fmt == '*') {
  964. /* it's the next argument */
  965. spec->type = FORMAT_TYPE_WIDTH;
  966. return ++fmt - start;
  967. }
  968. precision:
  969. /* get the precision */
  970. spec->precision = -1;
  971. if (*fmt == '.') {
  972. ++fmt;
  973. if (isdigit(*fmt)) {
  974. spec->precision = skip_atoi(&fmt);
  975. if (spec->precision < 0)
  976. spec->precision = 0;
  977. } else if (*fmt == '*') {
  978. /* it's the next argument */
  979. spec->type = FORMAT_TYPE_PRECISION;
  980. return ++fmt - start;
  981. }
  982. }
  983. qualifier:
  984. /* get the conversion qualifier */
  985. spec->qualifier = -1;
  986. if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
  987. _tolower(*fmt) == 'z' || *fmt == 't') {
  988. spec->qualifier = *fmt++;
  989. if (unlikely(spec->qualifier == *fmt)) {
  990. if (spec->qualifier == 'l') {
  991. spec->qualifier = 'L';
  992. ++fmt;
  993. } else if (spec->qualifier == 'h') {
  994. spec->qualifier = 'H';
  995. ++fmt;
  996. }
  997. }
  998. }
  999. /* default base */
  1000. spec->base = 10;
  1001. switch (*fmt) {
  1002. case 'c':
  1003. spec->type = FORMAT_TYPE_CHAR;
  1004. return ++fmt - start;
  1005. case 's':
  1006. spec->type = FORMAT_TYPE_STR;
  1007. return ++fmt - start;
  1008. case 'p':
  1009. spec->type = FORMAT_TYPE_PTR;
  1010. return fmt - start;
  1011. /* skip alnum */
  1012. case 'n':
  1013. spec->type = FORMAT_TYPE_NRCHARS;
  1014. return ++fmt - start;
  1015. case '%':
  1016. spec->type = FORMAT_TYPE_PERCENT_CHAR;
  1017. return ++fmt - start;
  1018. /* integer number formats - set up the flags and "break" */
  1019. case 'o':
  1020. spec->base = 8;
  1021. break;
  1022. case 'x':
  1023. spec->flags |= SMALL;
  1024. case 'X':
  1025. spec->base = 16;
  1026. break;
  1027. case 'd':
  1028. case 'i':
  1029. spec->flags |= SIGN;
  1030. case 'u':
  1031. break;
  1032. default:
  1033. spec->type = FORMAT_TYPE_INVALID;
  1034. return fmt - start;
  1035. }
  1036. if (spec->qualifier == 'L')
  1037. spec->type = FORMAT_TYPE_LONG_LONG;
  1038. else if (spec->qualifier == 'l') {
  1039. if (spec->flags & SIGN)
  1040. spec->type = FORMAT_TYPE_LONG;
  1041. else
  1042. spec->type = FORMAT_TYPE_ULONG;
  1043. } else if (_tolower(spec->qualifier) == 'z') {
  1044. spec->type = FORMAT_TYPE_SIZE_T;
  1045. } else if (spec->qualifier == 't') {
  1046. spec->type = FORMAT_TYPE_PTRDIFF;
  1047. } else if (spec->qualifier == 'H') {
  1048. if (spec->flags & SIGN)
  1049. spec->type = FORMAT_TYPE_BYTE;
  1050. else
  1051. spec->type = FORMAT_TYPE_UBYTE;
  1052. } else if (spec->qualifier == 'h') {
  1053. if (spec->flags & SIGN)
  1054. spec->type = FORMAT_TYPE_SHORT;
  1055. else
  1056. spec->type = FORMAT_TYPE_USHORT;
  1057. } else {
  1058. if (spec->flags & SIGN)
  1059. spec->type = FORMAT_TYPE_INT;
  1060. else
  1061. spec->type = FORMAT_TYPE_UINT;
  1062. }
  1063. return ++fmt - start;
  1064. }
  1065. /**
  1066. * vsnprintf - Format a string and place it in a buffer
  1067. * @buf: The buffer to place the result into
  1068. * @size: The size of the buffer, including the trailing null space
  1069. * @fmt: The format string to use
  1070. * @args: Arguments for the format string
  1071. *
  1072. * This function follows C99 vsnprintf, but has some extensions:
  1073. * %pS output the name of a text symbol with offset
  1074. * %ps output the name of a text symbol without offset
  1075. * %pF output the name of a function pointer with its offset
  1076. * %pf output the name of a function pointer without its offset
  1077. * %pB output the name of a backtrace symbol with its offset
  1078. * %pR output the address range in a struct resource with decoded flags
  1079. * %pr output the address range in a struct resource with raw flags
  1080. * %pM output a 6-byte MAC address with colons
  1081. * %pm output a 6-byte MAC address without colons
  1082. * %pI4 print an IPv4 address without leading zeros
  1083. * %pi4 print an IPv4 address with leading zeros
  1084. * %pI6 print an IPv6 address with colons
  1085. * %pi6 print an IPv6 address without colons
  1086. * %pI6c print an IPv6 address as specified by RFC 5952
  1087. * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
  1088. * case.
  1089. * %n is ignored
  1090. *
  1091. * The return value is the number of characters which would
  1092. * be generated for the given input, excluding the trailing
  1093. * '\0', as per ISO C99. If you want to have the exact
  1094. * number of characters written into @buf as return value
  1095. * (not including the trailing '\0'), use vscnprintf(). If the
  1096. * return is greater than or equal to @size, the resulting
  1097. * string is truncated.
  1098. *
  1099. * If you're not already dealing with a va_list consider using snprintf().
  1100. */
  1101. int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
  1102. {
  1103. unsigned long long num;
  1104. char *str, *end;
  1105. struct printf_spec spec = {0};
  1106. /* Reject out-of-range values early. Large positive sizes are
  1107. used for unknown buffer sizes. */
  1108. if (WARN_ON_ONCE((int) size < 0))
  1109. return 0;
  1110. str = buf;
  1111. end = buf + size;
  1112. /* Make sure end is always >= buf */
  1113. if (end < buf) {
  1114. end = ((void *)-1);
  1115. size = end - buf;
  1116. }
  1117. while (*fmt) {
  1118. const char *old_fmt = fmt;
  1119. int read = format_decode(fmt, &spec);
  1120. fmt += read;
  1121. switch (spec.type) {
  1122. case FORMAT_TYPE_NONE: {
  1123. int copy = read;
  1124. if (str < end) {
  1125. if (copy > end - str)
  1126. copy = end - str;
  1127. memcpy(str, old_fmt, copy);
  1128. }
  1129. str += read;
  1130. break;
  1131. }
  1132. case FORMAT_TYPE_WIDTH:
  1133. spec.field_width = va_arg(args, int);
  1134. break;
  1135. case FORMAT_TYPE_PRECISION:
  1136. spec.precision = va_arg(args, int);
  1137. break;
  1138. case FORMAT_TYPE_CHAR: {
  1139. char c;
  1140. if (!(spec.flags & LEFT)) {
  1141. while (--spec.field_width > 0) {
  1142. if (str < end)
  1143. *str = ' ';
  1144. ++str;
  1145. }
  1146. }
  1147. c = (unsigned char) va_arg(args, int);
  1148. if (str < end)
  1149. *str = c;
  1150. ++str;
  1151. while (--spec.field_width > 0) {
  1152. if (str < end)
  1153. *str = ' ';
  1154. ++str;
  1155. }
  1156. break;
  1157. }
  1158. case FORMAT_TYPE_STR:
  1159. str = string(str, end, va_arg(args, char *), spec);
  1160. break;
  1161. case FORMAT_TYPE_PTR:
  1162. str = pointer(fmt+1, str, end, va_arg(args, void *),
  1163. spec);
  1164. while (isalnum(*fmt))
  1165. fmt++;
  1166. break;
  1167. case FORMAT_TYPE_PERCENT_CHAR:
  1168. if (str < end)
  1169. *str = '%';
  1170. ++str;
  1171. break;
  1172. case FORMAT_TYPE_INVALID:
  1173. if (str < end)
  1174. *str = '%';
  1175. ++str;
  1176. break;
  1177. case FORMAT_TYPE_NRCHARS: {
  1178. /*
  1179. * Since %n poses a greater security risk than
  1180. * utility, ignore %n and skip its argument.
  1181. */
  1182. void *skip_arg;
  1183. WARN_ONCE(1, "Please remove ignored %%n in '%s'\n",
  1184. old_fmt);
  1185. skip_arg = va_arg(args, void *);
  1186. break;
  1187. }
  1188. default:
  1189. switch (spec.type) {
  1190. case FORMAT_TYPE_LONG_LONG:
  1191. num = va_arg(args, long long);
  1192. break;
  1193. case FORMAT_TYPE_ULONG:
  1194. num = va_arg(args, unsigned long);
  1195. break;
  1196. case FORMAT_TYPE_LONG:
  1197. num = va_arg(args, long);
  1198. break;
  1199. case FORMAT_TYPE_SIZE_T:
  1200. num = va_arg(args, size_t);
  1201. break;
  1202. case FORMAT_TYPE_PTRDIFF:
  1203. num = va_arg(args, ptrdiff_t);
  1204. break;
  1205. case FORMAT_TYPE_UBYTE:
  1206. num = (unsigned char) va_arg(args, int);
  1207. break;
  1208. case FORMAT_TYPE_BYTE:
  1209. num = (signed char) va_arg(args, int);
  1210. break;
  1211. case FORMAT_TYPE_USHORT:
  1212. num = (unsigned short) va_arg(args, int);
  1213. break;
  1214. case FORMAT_TYPE_SHORT:
  1215. num = (short) va_arg(args, int);
  1216. break;
  1217. case FORMAT_TYPE_INT:
  1218. num = (int) va_arg(args, int);
  1219. break;
  1220. default:
  1221. num = va_arg(args, unsigned int);
  1222. }
  1223. str = number(str, end, num, spec);
  1224. }
  1225. }
  1226. if (size > 0) {
  1227. if (str < end)
  1228. *str = '\0';
  1229. else
  1230. end[-1] = '\0';
  1231. }
  1232. /* the trailing null byte doesn't count towards the total */
  1233. return str-buf;
  1234. }
  1235. EXPORT_SYMBOL(vsnprintf);
  1236. /**
  1237. * vscnprintf - Format a string and place it in a buffer
  1238. * @buf: The buffer to place the result into
  1239. * @size: The size of the buffer, including the trailing null space
  1240. * @fmt: The format string to use
  1241. * @args: Arguments for the format string
  1242. *
  1243. * The return value is the number of characters which have been written into
  1244. * the @buf not including the trailing '\0'. If @size is == 0 the function
  1245. * returns 0.
  1246. *
  1247. * If you're not already dealing with a va_list consider using scnprintf().
  1248. *
  1249. * See the vsnprintf() documentation for format string extensions over C99.
  1250. */
  1251. int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
  1252. {
  1253. int i;
  1254. i = vsnprintf(buf, size, fmt, args);
  1255. if (likely(i < size))
  1256. return i;
  1257. if (size != 0)
  1258. return size - 1;
  1259. return 0;
  1260. }
  1261. EXPORT_SYMBOL(vscnprintf);
  1262. /**
  1263. * snprintf - Format a string and place it in a buffer
  1264. * @buf: The buffer to place the result into
  1265. * @size: The size of the buffer, including the trailing null space
  1266. * @fmt: The format string to use
  1267. * @...: Arguments for the format string
  1268. *
  1269. * The return value is the number of characters which would be
  1270. * generated for the given input, excluding the trailing null,
  1271. * as per ISO C99. If the return is greater than or equal to
  1272. * @size, the resulting string is truncated.
  1273. *
  1274. * See the vsnprintf() documentation for format string extensions over C99.
  1275. */
  1276. int snprintf(char *buf, size_t size, const char *fmt, ...)
  1277. {
  1278. va_list args;
  1279. int i;
  1280. va_start(args, fmt);
  1281. i = vsnprintf(buf, size, fmt, args);
  1282. va_end(args);
  1283. return i;
  1284. }
  1285. EXPORT_SYMBOL(snprintf);
  1286. /**
  1287. * scnprintf - Format a string and place it in a buffer
  1288. * @buf: The buffer to place the result into
  1289. * @size: The size of the buffer, including the trailing null space
  1290. * @fmt: The format string to use
  1291. * @...: Arguments for the format string
  1292. *
  1293. * The return value is the number of characters written into @buf not including
  1294. * the trailing '\0'. If @size is == 0 the function returns 0.
  1295. */
  1296. int scnprintf(char *buf, size_t size, const char *fmt, ...)
  1297. {
  1298. va_list args;
  1299. int i;
  1300. va_start(args, fmt);
  1301. i = vscnprintf(buf, size, fmt, args);
  1302. va_end(args);
  1303. return i;
  1304. }
  1305. EXPORT_SYMBOL(scnprintf);
  1306. /**
  1307. * vsprintf - Format a string and place it in a buffer
  1308. * @buf: The buffer to place the result into
  1309. * @fmt: The format string to use
  1310. * @args: Arguments for the format string
  1311. *
  1312. * The function returns the number of characters written
  1313. * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
  1314. * buffer overflows.
  1315. *
  1316. * If you're not already dealing with a va_list consider using sprintf().
  1317. *
  1318. * See the vsnprintf() documentation for format string extensions over C99.
  1319. */
  1320. int vsprintf(char *buf, const char *fmt, va_list args)
  1321. {
  1322. return vsnprintf(buf, INT_MAX, fmt, args);
  1323. }
  1324. EXPORT_SYMBOL(vsprintf);
  1325. /**
  1326. * sprintf - Format a string and place it in a buffer
  1327. * @buf: The buffer to place the result into
  1328. * @fmt: The format string to use
  1329. * @...: Arguments for the format string
  1330. *
  1331. * The function returns the number of characters written
  1332. * into @buf. Use snprintf() or scnprintf() in order to avoid
  1333. * buffer overflows.
  1334. *
  1335. * See the vsnprintf() documentation for format string extensions over C99.
  1336. */
  1337. int sprintf(char *buf, const char *fmt, ...)
  1338. {
  1339. va_list args;
  1340. int i;
  1341. va_start(args, fmt);
  1342. i = vsnprintf(buf, INT_MAX, fmt, args);
  1343. va_end(args);
  1344. return i;
  1345. }
  1346. EXPORT_SYMBOL(sprintf);
  1347. #ifdef CONFIG_BINARY_PRINTF
  1348. /*
  1349. * bprintf service:
  1350. * vbin_printf() - VA arguments to binary data
  1351. * bstr_printf() - Binary data to text string
  1352. */
  1353. /**
  1354. * vbin_printf - Parse a format string and place args' binary value in a buffer
  1355. * @bin_buf: The buffer to place args' binary value
  1356. * @size: The size of the buffer(by words(32bits), not characters)
  1357. * @fmt: The format string to use
  1358. * @args: Arguments for the format string
  1359. *
  1360. * The format follows C99 vsnprintf, except %n is ignored, and its argument
  1361. * is skiped.
  1362. *
  1363. * The return value is the number of words(32bits) which would be generated for
  1364. * the given input.
  1365. *
  1366. * NOTE:
  1367. * If the return value is greater than @size, the resulting bin_buf is NOT
  1368. * valid for bstr_printf().
  1369. */
  1370. int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
  1371. {
  1372. struct printf_spec spec = {0};
  1373. char *str, *end;
  1374. str = (char *)bin_buf;
  1375. end = (char *)(bin_buf + size);
  1376. #define save_arg(type) \
  1377. do { \
  1378. if (sizeof(type) == 8) { \
  1379. unsigned long long value; \
  1380. str = PTR_ALIGN(str, sizeof(u32)); \
  1381. value = va_arg(args, unsigned long long); \
  1382. if (str + sizeof(type) <= end) { \
  1383. *(u32 *)str = *(u32 *)&value; \
  1384. *(u32 *)(str + 4) = *((u32 *)&value + 1); \
  1385. } \
  1386. } else { \
  1387. unsigned long value; \
  1388. str = PTR_ALIGN(str, sizeof(type)); \
  1389. value = va_arg(args, int); \
  1390. if (str + sizeof(type) <= end) \
  1391. *(typeof(type) *)str = (type)value; \
  1392. } \
  1393. str += sizeof(type); \
  1394. } while (0)
  1395. while (*fmt) {
  1396. int read = format_decode(fmt, &spec);
  1397. fmt += read;
  1398. switch (spec.type) {
  1399. case FORMAT_TYPE_NONE:
  1400. case FORMAT_TYPE_INVALID:
  1401. case FORMAT_TYPE_PERCENT_CHAR:
  1402. break;
  1403. case FORMAT_TYPE_WIDTH:
  1404. case FORMAT_TYPE_PRECISION:
  1405. save_arg(int);
  1406. break;
  1407. case FORMAT_TYPE_CHAR:
  1408. save_arg(char);
  1409. break;
  1410. case FORMAT_TYPE_STR: {
  1411. const char *save_str = va_arg(args, char *);
  1412. size_t len;
  1413. if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
  1414. || (unsigned long)save_str < PAGE_SIZE)
  1415. save_str = "(null)";
  1416. len = strlen(save_str) + 1;
  1417. if (str + len < end)
  1418. memcpy(str, save_str, len);
  1419. str += len;
  1420. break;
  1421. }
  1422. case FORMAT_TYPE_PTR:
  1423. save_arg(void *);
  1424. /* skip all alphanumeric pointer suffixes */
  1425. while (isalnum(*fmt))
  1426. fmt++;
  1427. break;
  1428. case FORMAT_TYPE_NRCHARS: {
  1429. /* skip %n 's argument */
  1430. u8 qualifier = spec.qualifier;
  1431. void *skip_arg;
  1432. if (qualifier == 'l')
  1433. skip_arg = va_arg(args, long *);
  1434. else if (_tolower(qualifier) == 'z')
  1435. skip_arg = va_arg(args, size_t *);
  1436. else
  1437. skip_arg = va_arg(args, int *);
  1438. break;
  1439. }
  1440. default:
  1441. switch (spec.type) {
  1442. case FORMAT_TYPE_LONG_LONG:
  1443. save_arg(long long);
  1444. break;
  1445. case FORMAT_TYPE_ULONG:
  1446. case FORMAT_TYPE_LONG:
  1447. save_arg(unsigned long);
  1448. break;
  1449. case FORMAT_TYPE_SIZE_T:
  1450. save_arg(size_t);
  1451. break;
  1452. case FORMAT_TYPE_PTRDIFF:
  1453. save_arg(ptrdiff_t);
  1454. break;
  1455. case FORMAT_TYPE_UBYTE:
  1456. case FORMAT_TYPE_BYTE:
  1457. save_arg(char);
  1458. break;
  1459. case FORMAT_TYPE_USHORT:
  1460. case FORMAT_TYPE_SHORT:
  1461. save_arg(short);
  1462. break;
  1463. default:
  1464. save_arg(int);
  1465. }
  1466. }
  1467. }
  1468. return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
  1469. #undef save_arg
  1470. }
  1471. EXPORT_SYMBOL_GPL(vbin_printf);
  1472. /**
  1473. * bstr_printf - Format a string from binary arguments and place it in a buffer
  1474. * @buf: The buffer to place the result into
  1475. * @size: The size of the buffer, including the trailing null space
  1476. * @fmt: The format string to use
  1477. * @bin_buf: Binary arguments for the format string
  1478. *
  1479. * This function like C99 vsnprintf, but the difference is that vsnprintf gets
  1480. * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
  1481. * a binary buffer that generated by vbin_printf.
  1482. *
  1483. * The format follows C99 vsnprintf, but has some extensions:
  1484. * see vsnprintf comment for details.
  1485. *
  1486. * The return value is the number of characters which would
  1487. * be generated for the given input, excluding the trailing
  1488. * '\0', as per ISO C99. If you want to have the exact
  1489. * number of characters written into @buf as return value
  1490. * (not including the trailing '\0'), use vscnprintf(). If the
  1491. * return is greater than or equal to @size, the resulting
  1492. * string is truncated.
  1493. */
  1494. int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
  1495. {
  1496. struct printf_spec spec = {0};
  1497. char *str, *end;
  1498. const char *args = (const char *)bin_buf;
  1499. if (WARN_ON_ONCE((int) size < 0))
  1500. return 0;
  1501. str = buf;
  1502. end = buf + size;
  1503. #define get_arg(type) \
  1504. ({ \
  1505. typeof(type) value; \
  1506. if (sizeof(type) == 8) { \
  1507. args = PTR_ALIGN(args, sizeof(u32)); \
  1508. *(u32 *)&value = *(u32 *)args; \
  1509. *((u32 *)&value + 1) = *(u32 *)(args + 4); \
  1510. } else { \
  1511. args = PTR_ALIGN(args, sizeof(type)); \
  1512. value = *(typeof(type) *)args; \
  1513. } \
  1514. args += sizeof(type); \
  1515. value; \
  1516. })
  1517. /* Make sure end is always >= buf */
  1518. if (end < buf) {
  1519. end = ((void *)-1);
  1520. size = end - buf;
  1521. }
  1522. while (*fmt) {
  1523. const char *old_fmt = fmt;
  1524. int read = format_decode(fmt, &spec);
  1525. fmt += read;
  1526. switch (spec.type) {
  1527. case FORMAT_TYPE_NONE: {
  1528. int copy = read;
  1529. if (str < end) {
  1530. if (copy > end - str)
  1531. copy = end - str;
  1532. memcpy(str, old_fmt, copy);
  1533. }
  1534. str += read;
  1535. break;
  1536. }
  1537. case FORMAT_TYPE_WIDTH:
  1538. spec.field_width = get_arg(int);
  1539. break;
  1540. case FORMAT_TYPE_PRECISION:
  1541. spec.precision = get_arg(int);
  1542. break;
  1543. case FORMAT_TYPE_CHAR: {
  1544. char c;
  1545. if (!(spec.flags & LEFT)) {
  1546. while (--spec.field_width > 0) {
  1547. if (str < end)
  1548. *str = ' ';
  1549. ++str;
  1550. }
  1551. }
  1552. c = (unsigned char) get_arg(char);
  1553. if (str < end)
  1554. *str = c;
  1555. ++str;
  1556. while (--spec.field_width > 0) {
  1557. if (str < end)
  1558. *str = ' ';
  1559. ++str;
  1560. }
  1561. break;
  1562. }
  1563. case FORMAT_TYPE_STR: {
  1564. const char *str_arg = args;
  1565. args += strlen(str_arg) + 1;
  1566. str = string(str, end, (char *)str_arg, spec);
  1567. break;
  1568. }
  1569. case FORMAT_TYPE_PTR:
  1570. str = pointer(fmt+1, str, end, get_arg(void *), spec);
  1571. while (isalnum(*fmt))
  1572. fmt++;
  1573. break;
  1574. case FORMAT_TYPE_PERCENT_CHAR:
  1575. case FORMAT_TYPE_INVALID:
  1576. if (str < end)
  1577. *str = '%';
  1578. ++str;
  1579. break;
  1580. case FORMAT_TYPE_NRCHARS:
  1581. /* skip */
  1582. break;
  1583. default: {
  1584. unsigned long long num;
  1585. switch (spec.type) {
  1586. case FORMAT_TYPE_LONG_LONG:
  1587. num = get_arg(long long);
  1588. break;
  1589. case FORMAT_TYPE_ULONG:
  1590. case FORMAT_TYPE_LONG:
  1591. num = get_arg(unsigned long);
  1592. break;
  1593. case FORMAT_TYPE_SIZE_T:
  1594. num = get_arg(size_t);
  1595. break;
  1596. case FORMAT_TYPE_PTRDIFF:
  1597. num = get_arg(ptrdiff_t);
  1598. break;
  1599. case FORMAT_TYPE_UBYTE:
  1600. num = get_arg(unsigned char);
  1601. break;
  1602. case FORMAT_TYPE_BYTE:
  1603. num = get_arg(signed char);
  1604. break;
  1605. case FORMAT_TYPE_USHORT:
  1606. num = get_arg(unsigned short);
  1607. break;
  1608. case FORMAT_TYPE_SHORT:
  1609. num = get_arg(short);
  1610. break;
  1611. case FORMAT_TYPE_UINT:
  1612. num = get_arg(unsigned int);
  1613. break;
  1614. default:
  1615. num = get_arg(int);
  1616. }
  1617. str = number(str, end, num, spec);
  1618. } /* default: */
  1619. } /* switch(spec.type) */
  1620. } /* while(*fmt) */
  1621. if (size > 0) {
  1622. if (str < end)
  1623. *str = '\0';
  1624. else
  1625. end[-1] = '\0';
  1626. }
  1627. #undef get_arg
  1628. /* the trailing null byte doesn't count towards the total */
  1629. return str - buf;
  1630. }
  1631. EXPORT_SYMBOL_GPL(bstr_printf);
  1632. /**
  1633. * bprintf - Parse a format string and place args' binary value in a buffer
  1634. * @bin_buf: The buffer to place args' binary value
  1635. * @size: The size of the buffer(by words(32bits), not characters)
  1636. * @fmt: The format string to use
  1637. * @...: Arguments for the format string
  1638. *
  1639. * The function returns the number of words(u32) written
  1640. * into @bin_buf.
  1641. */
  1642. int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
  1643. {
  1644. va_list args;
  1645. int ret;
  1646. va_start(args, fmt);
  1647. ret = vbin_printf(bin_buf, size, fmt, args);
  1648. va_end(args);
  1649. return ret;
  1650. }
  1651. EXPORT_SYMBOL_GPL(bprintf);
  1652. #endif /* CONFIG_BINARY_PRINTF */
  1653. /**
  1654. * vsscanf - Unformat a buffer into a list of arguments
  1655. * @buf: input buffer
  1656. * @fmt: format of buffer
  1657. * @args: arguments
  1658. */
  1659. int vsscanf(const char *buf, const char *fmt, va_list args)
  1660. {
  1661. const char *str = buf;
  1662. char *next;
  1663. char digit;
  1664. int num = 0;
  1665. u8 qualifier;
  1666. u8 base;
  1667. s16 field_width;
  1668. bool is_sign;
  1669. while (*fmt && *str) {
  1670. /* skip any white space in format */
  1671. /* white space in format matchs any amount of
  1672. * white space, including none, in the input.
  1673. */
  1674. if (isspace(*fmt)) {
  1675. fmt = skip_spaces(++fmt);
  1676. str = skip_spaces(str);
  1677. }
  1678. /* anything that is not a conversion must match exactly */
  1679. if (*fmt != '%' && *fmt) {
  1680. if (*fmt++ != *str++)
  1681. break;
  1682. continue;
  1683. }
  1684. if (!*fmt)
  1685. break;
  1686. ++fmt;
  1687. /* skip this conversion.
  1688. * advance both strings to next white space
  1689. */
  1690. if (*fmt == '*') {
  1691. while (!isspace(*fmt) && *fmt != '%' && *fmt)
  1692. fmt++;
  1693. while (!isspace(*str) && *str)
  1694. str++;
  1695. continue;
  1696. }
  1697. /* get field width */
  1698. field_width = -1;
  1699. if (isdigit(*fmt))
  1700. field_width = skip_atoi(&fmt);
  1701. /* get conversion qualifier */
  1702. qualifier = -1;
  1703. if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
  1704. _tolower(*fmt) == 'z') {
  1705. qualifier = *fmt++;
  1706. if (unlikely(qualifier == *fmt)) {
  1707. if (qualifier == 'h') {
  1708. qualifier = 'H';
  1709. fmt++;
  1710. } else if (qualifier == 'l') {
  1711. qualifier = 'L';
  1712. fmt++;
  1713. }
  1714. }
  1715. }
  1716. if (!*fmt || !*str)
  1717. break;
  1718. base = 10;
  1719. is_sign = 0;
  1720. switch (*fmt++) {
  1721. case 'c':
  1722. {
  1723. char *s = (char *)va_arg(args, char*);
  1724. if (field_width == -1)
  1725. field_width = 1;
  1726. do {
  1727. *s++ = *str++;
  1728. } while (--field_width > 0 && *str);
  1729. num++;
  1730. }
  1731. continue;
  1732. case 's':
  1733. {
  1734. char *s = (char *)va_arg(args, char *);
  1735. if (field_width == -1)
  1736. field_width = SHRT_MAX;
  1737. /* first, skip leading white space in buffer */
  1738. str = skip_spaces(str);
  1739. /* now copy until next white space */
  1740. while (*str && !isspace(*str) && field_width--)
  1741. *s++ = *str++;
  1742. *s = '\0';
  1743. num++;
  1744. }
  1745. continue;
  1746. case 'n':
  1747. /* return number of characters read so far */
  1748. {
  1749. int *i = (int *)va_arg(args, int*);
  1750. *i = str - buf;
  1751. }
  1752. continue;
  1753. case 'o':
  1754. base = 8;
  1755. break;
  1756. case 'x':
  1757. case 'X':
  1758. base = 16;
  1759. break;
  1760. case 'i':
  1761. base = 0;
  1762. case 'd':
  1763. is_sign = 1;
  1764. case 'u':
  1765. break;
  1766. case '%':
  1767. /* looking for '%' in str */
  1768. if (*str++ != '%')
  1769. return num;
  1770. continue;
  1771. default:
  1772. /* invalid format; stop here */
  1773. return num;
  1774. }
  1775. /* have some sort of integer conversion.
  1776. * first, skip white space in buffer.
  1777. */
  1778. str = skip_spaces(str);
  1779. digit = *str;
  1780. if (is_sign && digit == '-')
  1781. digit = *(str + 1);
  1782. if (!digit
  1783. || (base == 16 && !isxdigit(digit))
  1784. || (base == 10 && !isdigit(digit))
  1785. || (base == 8 && (!isdigit(digit) || digit > '7'))
  1786. || (base == 0 && !isdigit(digit)))
  1787. break;
  1788. switch (qualifier) {
  1789. case 'H': /* that's 'hh' in format */
  1790. if (is_sign) {
  1791. signed char *s = (signed char *)va_arg(args, signed char *);
  1792. *s = (signed char)simple_strtol(str, &next, base);
  1793. } else {
  1794. unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
  1795. *s = (unsigned char)simple_strtoul(str, &next, base);
  1796. }
  1797. break;
  1798. case 'h':
  1799. if (is_sign) {
  1800. short *s = (short *)va_arg(args, short *);
  1801. *s = (short)simple_strtol(str, &next, base);
  1802. } else {
  1803. unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
  1804. *s = (unsigned short)simple_strtoul(str, &next, base);
  1805. }
  1806. break;
  1807. case 'l':
  1808. if (is_sign) {
  1809. long *l = (long *)va_arg(args, long *);
  1810. *l = simple_strtol(str, &next, base);
  1811. } else {
  1812. unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
  1813. *l = simple_strtoul(str, &next, base);
  1814. }
  1815. break;
  1816. case 'L':
  1817. if (is_sign) {
  1818. long long *l = (long long *)va_arg(args, long long *);
  1819. *l = simple_strtoll(str, &next, base);
  1820. } else {
  1821. unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
  1822. *l = simple_strtoull(str, &next, base);
  1823. }
  1824. break;
  1825. case 'Z':
  1826. case 'z':
  1827. {
  1828. size_t *s = (size_t *)va_arg(args, size_t *);
  1829. *s = (size_t)simple_strtoul(str, &next, base);
  1830. }
  1831. break;
  1832. default:
  1833. if (is_sign) {
  1834. int *i = (int *)va_arg(args, int *);
  1835. *i = (int)simple_strtol(str, &next, base);
  1836. } else {
  1837. unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
  1838. *i = (unsigned int)simple_strtoul(str, &next, base);
  1839. }
  1840. break;
  1841. }
  1842. num++;
  1843. if (!next)
  1844. break;
  1845. str = next;
  1846. }
  1847. /*
  1848. * Now we've come all the way through so either the input string or the
  1849. * format ended. In the former case, there can be a %n at the current
  1850. * position in the format that needs to be filled.
  1851. */
  1852. if (*fmt == '%' && *(fmt + 1) == 'n') {
  1853. int *p = (int *)va_arg(args, int *);
  1854. *p = str - buf;
  1855. }
  1856. return num;
  1857. }
  1858. EXPORT_SYMBOL(vsscanf);
  1859. /**
  1860. * sscanf - Unformat a buffer into a list of arguments
  1861. * @buf: input buffer
  1862. * @fmt: formatting of buffer
  1863. * @...: resulting arguments
  1864. */
  1865. int sscanf(const char *buf, const char *fmt, ...)
  1866. {
  1867. va_list args;
  1868. int i;
  1869. va_start(args, fmt);
  1870. i = vsscanf(buf, fmt, args);
  1871. va_end(args);
  1872. return i;
  1873. }
  1874. EXPORT_SYMBOL(sscanf);