ctf-types.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704
  1. /* Type handling functions.
  2. Copyright (C) 2019-2022 Free Software Foundation, Inc.
  3. This file is part of libctf.
  4. libctf is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. This program is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. See the GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; see the file COPYING. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <ctf-impl.h>
  16. #include <assert.h>
  17. #include <string.h>
  18. /* Determine whether a type is a parent or a child. */
  19. int
  20. ctf_type_isparent (ctf_dict_t *fp, ctf_id_t id)
  21. {
  22. return (LCTF_TYPE_ISPARENT (fp, id));
  23. }
  24. int
  25. ctf_type_ischild (ctf_dict_t * fp, ctf_id_t id)
  26. {
  27. return (LCTF_TYPE_ISCHILD (fp, id));
  28. }
  29. /* Expand a structure element into the passed-in ctf_lmember_t. */
  30. static int
  31. ctf_struct_member (ctf_dict_t *fp, ctf_lmember_t *dst, const ctf_type_t *tp,
  32. unsigned char *vlen, size_t vbytes, size_t n)
  33. {
  34. if (!ctf_assert (fp, n < LCTF_INFO_VLEN (fp, tp->ctt_info)))
  35. return -1; /* errno is set for us. */
  36. /* Already large. */
  37. if (tp->ctt_size == CTF_LSIZE_SENT)
  38. {
  39. ctf_lmember_t *lmp = (ctf_lmember_t *) vlen;
  40. if (!ctf_assert (fp, (n + 1) * sizeof (ctf_lmember_t) <= vbytes))
  41. return -1; /* errno is set for us. */
  42. memcpy (dst, &lmp[n], sizeof (ctf_lmember_t));
  43. }
  44. else
  45. {
  46. ctf_member_t *mp = (ctf_member_t *) vlen;
  47. dst->ctlm_name = mp[n].ctm_name;
  48. dst->ctlm_type = mp[n].ctm_type;
  49. dst->ctlm_offsetlo = mp[n].ctm_offset;
  50. dst->ctlm_offsethi = 0;
  51. }
  52. return 0;
  53. }
  54. /* Iterate over the members of a STRUCT or UNION. We pass the name, member
  55. type, and offset of each member to the specified callback function. */
  56. int
  57. ctf_member_iter (ctf_dict_t *fp, ctf_id_t type, ctf_member_f *func, void *arg)
  58. {
  59. ctf_next_t *i = NULL;
  60. ssize_t offset;
  61. const char *name;
  62. ctf_id_t membtype;
  63. while ((offset = ctf_member_next (fp, type, &i, &name, &membtype, 0)) >= 0)
  64. {
  65. int rc;
  66. if ((rc = func (name, membtype, offset, arg)) != 0)
  67. {
  68. ctf_next_destroy (i);
  69. return rc;
  70. }
  71. }
  72. if (ctf_errno (fp) != ECTF_NEXT_END)
  73. return -1; /* errno is set for us. */
  74. return 0;
  75. }
  76. /* Iterate over the members of a STRUCT or UNION, returning each member's
  77. offset and optionally name and member type in turn. On end-of-iteration,
  78. returns -1. If FLAGS is CTF_MN_RECURSE, recurse into unnamed members. */
  79. ssize_t
  80. ctf_member_next (ctf_dict_t *fp, ctf_id_t type, ctf_next_t **it,
  81. const char **name, ctf_id_t *membtype, int flags)
  82. {
  83. ctf_dict_t *ofp = fp;
  84. uint32_t kind;
  85. ssize_t offset;
  86. uint32_t max_vlen;
  87. ctf_next_t *i = *it;
  88. if (!i)
  89. {
  90. const ctf_type_t *tp;
  91. ctf_dtdef_t *dtd;
  92. ssize_t size;
  93. ssize_t increment;
  94. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  95. return -1; /* errno is set for us. */
  96. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  97. return -1; /* errno is set for us. */
  98. if ((i = ctf_next_create ()) == NULL)
  99. return ctf_set_errno (ofp, ENOMEM);
  100. i->cu.ctn_fp = ofp;
  101. i->ctn_tp = tp;
  102. ctf_get_ctt_size (fp, tp, &size, &increment);
  103. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  104. if (kind != CTF_K_STRUCT && kind != CTF_K_UNION)
  105. {
  106. ctf_next_destroy (i);
  107. return (ctf_set_errno (ofp, ECTF_NOTSOU));
  108. }
  109. if ((dtd = ctf_dynamic_type (fp, type)) != NULL)
  110. {
  111. i->u.ctn_vlen = dtd->dtd_vlen;
  112. i->ctn_size = dtd->dtd_vlen_alloc;
  113. }
  114. else
  115. {
  116. unsigned long vlen = LCTF_INFO_VLEN (fp, tp->ctt_info);
  117. i->u.ctn_vlen = (unsigned char *) tp + increment;
  118. i->ctn_size = LCTF_VBYTES (fp, kind, size, vlen);;
  119. }
  120. i->ctn_iter_fun = (void (*) (void)) ctf_member_next;
  121. i->ctn_n = 0;
  122. *it = i;
  123. }
  124. if ((void (*) (void)) ctf_member_next != i->ctn_iter_fun)
  125. return (ctf_set_errno (ofp, ECTF_NEXT_WRONGFUN));
  126. if (ofp != i->cu.ctn_fp)
  127. return (ctf_set_errno (ofp, ECTF_NEXT_WRONGFP));
  128. /* Resolve to the native dict of this type. */
  129. if ((fp = ctf_get_dict (ofp, type)) == NULL)
  130. return (ctf_set_errno (ofp, ECTF_NOPARENT));
  131. max_vlen = LCTF_INFO_VLEN (fp, i->ctn_tp->ctt_info);
  132. /* When we hit an unnamed struct/union member, we set ctn_type to indicate
  133. that we are inside one, then return the unnamed member: on the next call,
  134. we must skip over top-level member iteration in favour of iteration within
  135. the sub-struct until it later turns out that that iteration has ended. */
  136. retry:
  137. if (!i->ctn_type)
  138. {
  139. ctf_lmember_t memb;
  140. const char *membname;
  141. if (i->ctn_n == max_vlen)
  142. goto end_iter;
  143. if (ctf_struct_member (fp, &memb, i->ctn_tp, i->u.ctn_vlen, i->ctn_size,
  144. i->ctn_n) < 0)
  145. return -1; /* errno is set for us. */
  146. membname = ctf_strptr (fp, memb.ctlm_name);
  147. if (name)
  148. *name = membname;
  149. if (membtype)
  150. *membtype = memb.ctlm_type;
  151. offset = (unsigned long) CTF_LMEM_OFFSET (&memb);
  152. if (membname[0] == 0
  153. && (ctf_type_kind (fp, memb.ctlm_type) == CTF_K_STRUCT
  154. || ctf_type_kind (fp, memb.ctlm_type) == CTF_K_UNION))
  155. i->ctn_type = memb.ctlm_type;
  156. i->ctn_n++;
  157. /* The callers might want automatic recursive sub-struct traversal. */
  158. if (!(flags & CTF_MN_RECURSE))
  159. i->ctn_type = 0;
  160. /* Sub-struct traversal starting? Take note of the offset of this member,
  161. for later boosting of sub-struct members' offsets. */
  162. if (i->ctn_type)
  163. i->ctn_increment = offset;
  164. }
  165. /* Traversing a sub-struct? Just return it, with the offset adjusted. */
  166. else
  167. {
  168. ssize_t ret = ctf_member_next (fp, i->ctn_type, &i->ctn_next, name,
  169. membtype, flags);
  170. if (ret >= 0)
  171. return ret + i->ctn_increment;
  172. if (ctf_errno (fp) != ECTF_NEXT_END)
  173. {
  174. ctf_next_destroy (i);
  175. *it = NULL;
  176. i->ctn_type = 0;
  177. return ret; /* errno is set for us. */
  178. }
  179. if (!ctf_assert (fp, (i->ctn_next == NULL)))
  180. return -1; /* errno is set for us. */
  181. i->ctn_type = 0;
  182. /* This sub-struct has ended: on to the next real member. */
  183. goto retry;
  184. }
  185. return offset;
  186. end_iter:
  187. ctf_next_destroy (i);
  188. *it = NULL;
  189. return ctf_set_errno (ofp, ECTF_NEXT_END);
  190. }
  191. /* Iterate over the members of an ENUM. We pass the string name and associated
  192. integer value of each enum element to the specified callback function. */
  193. int
  194. ctf_enum_iter (ctf_dict_t *fp, ctf_id_t type, ctf_enum_f *func, void *arg)
  195. {
  196. ctf_next_t *i = NULL;
  197. const char *name;
  198. int val;
  199. while ((name = ctf_enum_next (fp, type, &i, &val)) != NULL)
  200. {
  201. int rc;
  202. if ((rc = func (name, val, arg)) != 0)
  203. {
  204. ctf_next_destroy (i);
  205. return rc;
  206. }
  207. }
  208. if (ctf_errno (fp) != ECTF_NEXT_END)
  209. return -1; /* errno is set for us. */
  210. return 0;
  211. }
  212. /* Iterate over the members of an enum TYPE, returning each enumerand's NAME or
  213. NULL at end of iteration or error, and optionally passing back the
  214. enumerand's integer VALue. */
  215. const char *
  216. ctf_enum_next (ctf_dict_t *fp, ctf_id_t type, ctf_next_t **it,
  217. int *val)
  218. {
  219. ctf_dict_t *ofp = fp;
  220. uint32_t kind;
  221. const char *name;
  222. ctf_next_t *i = *it;
  223. if (!i)
  224. {
  225. const ctf_type_t *tp;
  226. ctf_dtdef_t *dtd;
  227. if ((type = ctf_type_resolve_unsliced (fp, type)) == CTF_ERR)
  228. return NULL; /* errno is set for us. */
  229. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  230. return NULL; /* errno is set for us. */
  231. if ((i = ctf_next_create ()) == NULL)
  232. {
  233. ctf_set_errno (ofp, ENOMEM);
  234. return NULL;
  235. }
  236. i->cu.ctn_fp = ofp;
  237. (void) ctf_get_ctt_size (fp, tp, NULL,
  238. &i->ctn_increment);
  239. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  240. if (kind != CTF_K_ENUM)
  241. {
  242. ctf_next_destroy (i);
  243. ctf_set_errno (ofp, ECTF_NOTENUM);
  244. return NULL;
  245. }
  246. dtd = ctf_dynamic_type (fp, type);
  247. i->ctn_iter_fun = (void (*) (void)) ctf_enum_next;
  248. i->ctn_n = LCTF_INFO_VLEN (fp, tp->ctt_info);
  249. if (dtd == NULL)
  250. i->u.ctn_en = (const ctf_enum_t *) ((uintptr_t) tp +
  251. i->ctn_increment);
  252. else
  253. i->u.ctn_en = (const ctf_enum_t *) dtd->dtd_vlen;
  254. *it = i;
  255. }
  256. if ((void (*) (void)) ctf_enum_next != i->ctn_iter_fun)
  257. {
  258. ctf_set_errno (ofp, ECTF_NEXT_WRONGFUN);
  259. return NULL;
  260. }
  261. if (ofp != i->cu.ctn_fp)
  262. {
  263. ctf_set_errno (ofp, ECTF_NEXT_WRONGFP);
  264. return NULL;
  265. }
  266. /* Resolve to the native dict of this type. */
  267. if ((fp = ctf_get_dict (ofp, type)) == NULL)
  268. {
  269. ctf_set_errno (ofp, ECTF_NOPARENT);
  270. return NULL;
  271. }
  272. if (i->ctn_n == 0)
  273. goto end_iter;
  274. name = ctf_strptr (fp, i->u.ctn_en->cte_name);
  275. if (val)
  276. *val = i->u.ctn_en->cte_value;
  277. i->u.ctn_en++;
  278. i->ctn_n--;
  279. return name;
  280. end_iter:
  281. ctf_next_destroy (i);
  282. *it = NULL;
  283. ctf_set_errno (ofp, ECTF_NEXT_END);
  284. return NULL;
  285. }
  286. /* Iterate over every root (user-visible) type in the given CTF dict.
  287. We pass the type ID of each type to the specified callback function.
  288. Does not traverse parent types: you have to do that explicitly. This is by
  289. design, to avoid traversing them more than once if traversing many children
  290. of a single parent. */
  291. int
  292. ctf_type_iter (ctf_dict_t *fp, ctf_type_f *func, void *arg)
  293. {
  294. ctf_next_t *i = NULL;
  295. ctf_id_t type;
  296. while ((type = ctf_type_next (fp, &i, NULL, 0)) != CTF_ERR)
  297. {
  298. int rc;
  299. if ((rc = func (type, arg)) != 0)
  300. {
  301. ctf_next_destroy (i);
  302. return rc;
  303. }
  304. }
  305. if (ctf_errno (fp) != ECTF_NEXT_END)
  306. return -1; /* errno is set for us. */
  307. return 0;
  308. }
  309. /* Iterate over every type in the given CTF dict, user-visible or not.
  310. We pass the type ID of each type to the specified callback function.
  311. Does not traverse parent types: you have to do that explicitly. This is by
  312. design, to avoid traversing them more than once if traversing many children
  313. of a single parent. */
  314. int
  315. ctf_type_iter_all (ctf_dict_t *fp, ctf_type_all_f *func, void *arg)
  316. {
  317. ctf_next_t *i = NULL;
  318. ctf_id_t type;
  319. int flag;
  320. while ((type = ctf_type_next (fp, &i, &flag, 1)) != CTF_ERR)
  321. {
  322. int rc;
  323. if ((rc = func (type, flag, arg)) != 0)
  324. {
  325. ctf_next_destroy (i);
  326. return rc;
  327. }
  328. }
  329. if (ctf_errno (fp) != ECTF_NEXT_END)
  330. return -1; /* errno is set for us. */
  331. return 0;
  332. }
  333. /* Iterate over every type in the given CTF dict, optionally including
  334. non-user-visible types, returning each type ID and hidden flag in turn.
  335. Returns CTF_ERR on end of iteration or error.
  336. Does not traverse parent types: you have to do that explicitly. This is by
  337. design, to avoid traversing them more than once if traversing many children
  338. of a single parent. */
  339. ctf_id_t
  340. ctf_type_next (ctf_dict_t *fp, ctf_next_t **it, int *flag, int want_hidden)
  341. {
  342. ctf_next_t *i = *it;
  343. if (!i)
  344. {
  345. if ((i = ctf_next_create ()) == NULL)
  346. return ctf_set_errno (fp, ENOMEM);
  347. i->cu.ctn_fp = fp;
  348. i->ctn_type = 1;
  349. i->ctn_iter_fun = (void (*) (void)) ctf_type_next;
  350. *it = i;
  351. }
  352. if ((void (*) (void)) ctf_type_next != i->ctn_iter_fun)
  353. return (ctf_set_errno (fp, ECTF_NEXT_WRONGFUN));
  354. if (fp != i->cu.ctn_fp)
  355. return (ctf_set_errno (fp, ECTF_NEXT_WRONGFP));
  356. while (i->ctn_type <= fp->ctf_typemax)
  357. {
  358. const ctf_type_t *tp = LCTF_INDEX_TO_TYPEPTR (fp, i->ctn_type);
  359. if ((!want_hidden) && (!LCTF_INFO_ISROOT (fp, tp->ctt_info)))
  360. {
  361. i->ctn_type++;
  362. continue;
  363. }
  364. if (flag)
  365. *flag = LCTF_INFO_ISROOT (fp, tp->ctt_info);
  366. return LCTF_INDEX_TO_TYPE (fp, i->ctn_type++, fp->ctf_flags & LCTF_CHILD);
  367. }
  368. ctf_next_destroy (i);
  369. *it = NULL;
  370. return ctf_set_errno (fp, ECTF_NEXT_END);
  371. }
  372. /* Iterate over every variable in the given CTF dict, in arbitrary order.
  373. We pass the name of each variable to the specified callback function. */
  374. int
  375. ctf_variable_iter (ctf_dict_t *fp, ctf_variable_f *func, void *arg)
  376. {
  377. ctf_next_t *i = NULL;
  378. ctf_id_t type;
  379. const char *name;
  380. while ((type = ctf_variable_next (fp, &i, &name)) != CTF_ERR)
  381. {
  382. int rc;
  383. if ((rc = func (name, type, arg)) != 0)
  384. {
  385. ctf_next_destroy (i);
  386. return rc;
  387. }
  388. }
  389. if (ctf_errno (fp) != ECTF_NEXT_END)
  390. return -1; /* errno is set for us. */
  391. return 0;
  392. }
  393. /* Iterate over every variable in the given CTF dict, in arbitrary order,
  394. returning the name and type of each variable in turn. The name argument is
  395. not optional. Returns CTF_ERR on end of iteration or error. */
  396. ctf_id_t
  397. ctf_variable_next (ctf_dict_t *fp, ctf_next_t **it, const char **name)
  398. {
  399. ctf_next_t *i = *it;
  400. if ((fp->ctf_flags & LCTF_CHILD) && (fp->ctf_parent == NULL))
  401. return (ctf_set_errno (fp, ECTF_NOPARENT));
  402. if (!i)
  403. {
  404. if ((i = ctf_next_create ()) == NULL)
  405. return ctf_set_errno (fp, ENOMEM);
  406. i->cu.ctn_fp = fp;
  407. i->ctn_iter_fun = (void (*) (void)) ctf_variable_next;
  408. if (fp->ctf_flags & LCTF_RDWR)
  409. i->u.ctn_dvd = ctf_list_next (&fp->ctf_dvdefs);
  410. *it = i;
  411. }
  412. if ((void (*) (void)) ctf_variable_next != i->ctn_iter_fun)
  413. return (ctf_set_errno (fp, ECTF_NEXT_WRONGFUN));
  414. if (fp != i->cu.ctn_fp)
  415. return (ctf_set_errno (fp, ECTF_NEXT_WRONGFP));
  416. if (!(fp->ctf_flags & LCTF_RDWR))
  417. {
  418. if (i->ctn_n >= fp->ctf_nvars)
  419. goto end_iter;
  420. *name = ctf_strptr (fp, fp->ctf_vars[i->ctn_n].ctv_name);
  421. return fp->ctf_vars[i->ctn_n++].ctv_type;
  422. }
  423. else
  424. {
  425. ctf_id_t id;
  426. if (i->u.ctn_dvd == NULL)
  427. goto end_iter;
  428. *name = i->u.ctn_dvd->dvd_name;
  429. id = i->u.ctn_dvd->dvd_type;
  430. i->u.ctn_dvd = ctf_list_next (i->u.ctn_dvd);
  431. return id;
  432. }
  433. end_iter:
  434. ctf_next_destroy (i);
  435. *it = NULL;
  436. return ctf_set_errno (fp, ECTF_NEXT_END);
  437. }
  438. /* Follow a given type through the graph for TYPEDEF, VOLATILE, CONST, and
  439. RESTRICT nodes until we reach a "base" type node. This is useful when
  440. we want to follow a type ID to a node that has members or a size. To guard
  441. against infinite loops, we implement simplified cycle detection and check
  442. each link against itself, the previous node, and the topmost node.
  443. Does not drill down through slices to their contained type.
  444. Callers of this function must not presume that a type it returns must have a
  445. valid ctt_size: forwards do not, and must be separately handled. */
  446. ctf_id_t
  447. ctf_type_resolve (ctf_dict_t *fp, ctf_id_t type)
  448. {
  449. ctf_id_t prev = type, otype = type;
  450. ctf_dict_t *ofp = fp;
  451. const ctf_type_t *tp;
  452. if (type == 0)
  453. return (ctf_set_errno (ofp, ECTF_NONREPRESENTABLE));
  454. while ((tp = ctf_lookup_by_id (&fp, type)) != NULL)
  455. {
  456. switch (LCTF_INFO_KIND (fp, tp->ctt_info))
  457. {
  458. case CTF_K_TYPEDEF:
  459. case CTF_K_VOLATILE:
  460. case CTF_K_CONST:
  461. case CTF_K_RESTRICT:
  462. if (tp->ctt_type == type || tp->ctt_type == otype
  463. || tp->ctt_type == prev)
  464. {
  465. ctf_err_warn (ofp, 0, ECTF_CORRUPT, _("type %lx cycle detected"),
  466. otype);
  467. return (ctf_set_errno (ofp, ECTF_CORRUPT));
  468. }
  469. prev = type;
  470. type = tp->ctt_type;
  471. break;
  472. case CTF_K_UNKNOWN:
  473. return (ctf_set_errno (ofp, ECTF_NONREPRESENTABLE));
  474. default:
  475. return type;
  476. }
  477. if (type == 0)
  478. return (ctf_set_errno (ofp, ECTF_NONREPRESENTABLE));
  479. }
  480. return CTF_ERR; /* errno is set for us. */
  481. }
  482. /* Like ctf_type_resolve(), but traverse down through slices to their contained
  483. type. */
  484. ctf_id_t
  485. ctf_type_resolve_unsliced (ctf_dict_t *fp, ctf_id_t type)
  486. {
  487. const ctf_type_t *tp;
  488. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  489. return -1;
  490. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  491. return CTF_ERR; /* errno is set for us. */
  492. if ((LCTF_INFO_KIND (fp, tp->ctt_info)) == CTF_K_SLICE)
  493. return ctf_type_reference (fp, type);
  494. return type;
  495. }
  496. /* Return the native dict of a given type: if called on a child and the
  497. type is in the parent, return the parent. Needed if you plan to access
  498. the type directly, without using the API. */
  499. ctf_dict_t *
  500. ctf_get_dict (ctf_dict_t *fp, ctf_id_t type)
  501. {
  502. if ((fp->ctf_flags & LCTF_CHILD) && LCTF_TYPE_ISPARENT (fp, type))
  503. return fp->ctf_parent;
  504. return fp;
  505. }
  506. /* Look up a name in the given name table, in the appropriate hash given the
  507. kind of the identifier. The name is a raw, undecorated identifier. */
  508. ctf_id_t ctf_lookup_by_rawname (ctf_dict_t *fp, int kind, const char *name)
  509. {
  510. return ctf_lookup_by_rawhash (fp, ctf_name_table (fp, kind), name);
  511. }
  512. /* Look up a name in the given name table, in the appropriate hash given the
  513. readability state of the dictionary. The name is a raw, undecorated
  514. identifier. */
  515. ctf_id_t ctf_lookup_by_rawhash (ctf_dict_t *fp, ctf_names_t *np, const char *name)
  516. {
  517. ctf_id_t id;
  518. if (fp->ctf_flags & LCTF_RDWR)
  519. id = (ctf_id_t) (uintptr_t) ctf_dynhash_lookup (np->ctn_writable, name);
  520. else
  521. id = ctf_hash_lookup_type (np->ctn_readonly, fp, name);
  522. return id;
  523. }
  524. /* Lookup the given type ID and return its name as a new dynamically-allocated
  525. string. */
  526. char *
  527. ctf_type_aname (ctf_dict_t *fp, ctf_id_t type)
  528. {
  529. ctf_decl_t cd;
  530. ctf_decl_node_t *cdp;
  531. ctf_decl_prec_t prec, lp, rp;
  532. int ptr, arr;
  533. uint32_t k;
  534. char *buf;
  535. if (fp == NULL && type == CTF_ERR)
  536. return NULL; /* Simplify caller code by permitting CTF_ERR. */
  537. ctf_decl_init (&cd);
  538. ctf_decl_push (&cd, fp, type);
  539. if (cd.cd_err != 0)
  540. {
  541. ctf_decl_fini (&cd);
  542. ctf_set_errno (fp, cd.cd_err);
  543. return NULL;
  544. }
  545. /* If the type graph's order conflicts with lexical precedence order
  546. for pointers or arrays, then we need to surround the declarations at
  547. the corresponding lexical precedence with parentheses. This can
  548. result in either a parenthesized pointer (*) as in int (*)() or
  549. int (*)[], or in a parenthesized pointer and array as in int (*[])(). */
  550. ptr = cd.cd_order[CTF_PREC_POINTER] > CTF_PREC_POINTER;
  551. arr = cd.cd_order[CTF_PREC_ARRAY] > CTF_PREC_ARRAY;
  552. rp = arr ? CTF_PREC_ARRAY : ptr ? CTF_PREC_POINTER : -1;
  553. lp = ptr ? CTF_PREC_POINTER : arr ? CTF_PREC_ARRAY : -1;
  554. k = CTF_K_POINTER; /* Avoid leading whitespace (see below). */
  555. for (prec = CTF_PREC_BASE; prec < CTF_PREC_MAX; prec++)
  556. {
  557. for (cdp = ctf_list_next (&cd.cd_nodes[prec]);
  558. cdp != NULL; cdp = ctf_list_next (cdp))
  559. {
  560. ctf_dict_t *rfp = fp;
  561. const ctf_type_t *tp = ctf_lookup_by_id (&rfp, cdp->cd_type);
  562. const char *name = ctf_strptr (rfp, tp->ctt_name);
  563. if (k != CTF_K_POINTER && k != CTF_K_ARRAY)
  564. ctf_decl_sprintf (&cd, " ");
  565. if (lp == prec)
  566. {
  567. ctf_decl_sprintf (&cd, "(");
  568. lp = -1;
  569. }
  570. switch (cdp->cd_kind)
  571. {
  572. case CTF_K_INTEGER:
  573. case CTF_K_FLOAT:
  574. case CTF_K_TYPEDEF:
  575. /* Integers, floats, and typedefs must always be named types. */
  576. if (name[0] == '\0')
  577. {
  578. ctf_set_errno (fp, ECTF_CORRUPT);
  579. ctf_decl_fini (&cd);
  580. return NULL;
  581. }
  582. ctf_decl_sprintf (&cd, "%s", name);
  583. break;
  584. case CTF_K_POINTER:
  585. ctf_decl_sprintf (&cd, "*");
  586. break;
  587. case CTF_K_ARRAY:
  588. ctf_decl_sprintf (&cd, "[%u]", cdp->cd_n);
  589. break;
  590. case CTF_K_FUNCTION:
  591. {
  592. size_t i;
  593. ctf_funcinfo_t fi;
  594. ctf_id_t *argv = NULL;
  595. if (ctf_func_type_info (rfp, cdp->cd_type, &fi) < 0)
  596. goto err; /* errno is set for us. */
  597. if ((argv = calloc (fi.ctc_argc, sizeof (ctf_id_t *))) == NULL)
  598. {
  599. ctf_set_errno (rfp, errno);
  600. goto err;
  601. }
  602. if (ctf_func_type_args (rfp, cdp->cd_type,
  603. fi.ctc_argc, argv) < 0)
  604. goto err; /* errno is set for us. */
  605. ctf_decl_sprintf (&cd, "(*) (");
  606. for (i = 0; i < fi.ctc_argc; i++)
  607. {
  608. char *arg = ctf_type_aname (rfp, argv[i]);
  609. if (arg == NULL)
  610. goto err; /* errno is set for us. */
  611. ctf_decl_sprintf (&cd, "%s", arg);
  612. free (arg);
  613. if ((i < fi.ctc_argc - 1)
  614. || (fi.ctc_flags & CTF_FUNC_VARARG))
  615. ctf_decl_sprintf (&cd, ", ");
  616. }
  617. if (fi.ctc_flags & CTF_FUNC_VARARG)
  618. ctf_decl_sprintf (&cd, "...");
  619. ctf_decl_sprintf (&cd, ")");
  620. free (argv);
  621. break;
  622. err:
  623. free (argv);
  624. ctf_decl_fini (&cd);
  625. return NULL;
  626. }
  627. break;
  628. case CTF_K_STRUCT:
  629. ctf_decl_sprintf (&cd, "struct %s", name);
  630. break;
  631. case CTF_K_UNION:
  632. ctf_decl_sprintf (&cd, "union %s", name);
  633. break;
  634. case CTF_K_ENUM:
  635. ctf_decl_sprintf (&cd, "enum %s", name);
  636. break;
  637. case CTF_K_FORWARD:
  638. {
  639. switch (ctf_type_kind_forwarded (fp, cdp->cd_type))
  640. {
  641. case CTF_K_STRUCT:
  642. ctf_decl_sprintf (&cd, "struct %s", name);
  643. break;
  644. case CTF_K_UNION:
  645. ctf_decl_sprintf (&cd, "union %s", name);
  646. break;
  647. case CTF_K_ENUM:
  648. ctf_decl_sprintf (&cd, "enum %s", name);
  649. break;
  650. default:
  651. ctf_set_errno (fp, ECTF_CORRUPT);
  652. ctf_decl_fini (&cd);
  653. return NULL;
  654. }
  655. break;
  656. }
  657. case CTF_K_VOLATILE:
  658. ctf_decl_sprintf (&cd, "volatile");
  659. break;
  660. case CTF_K_CONST:
  661. ctf_decl_sprintf (&cd, "const");
  662. break;
  663. case CTF_K_RESTRICT:
  664. ctf_decl_sprintf (&cd, "restrict");
  665. break;
  666. case CTF_K_UNKNOWN:
  667. if (name[0] == '\0')
  668. ctf_decl_sprintf (&cd, _("(nonrepresentable type)"));
  669. else
  670. ctf_decl_sprintf (&cd, _("(nonrepresentable type %s)"),
  671. name);
  672. break;
  673. }
  674. k = cdp->cd_kind;
  675. }
  676. if (rp == prec)
  677. ctf_decl_sprintf (&cd, ")");
  678. }
  679. if (cd.cd_enomem)
  680. (void) ctf_set_errno (fp, ENOMEM);
  681. buf = ctf_decl_buf (&cd);
  682. ctf_decl_fini (&cd);
  683. return buf;
  684. }
  685. /* Lookup the given type ID and print a string name for it into buf. Return
  686. the actual number of bytes (not including \0) needed to format the name. */
  687. ssize_t
  688. ctf_type_lname (ctf_dict_t *fp, ctf_id_t type, char *buf, size_t len)
  689. {
  690. char *str = ctf_type_aname (fp, type);
  691. size_t slen;
  692. if (str == NULL)
  693. return CTF_ERR; /* errno is set for us. */
  694. slen = strlen (str);
  695. snprintf (buf, len, "%s", str);
  696. free (str);
  697. if (slen >= len)
  698. (void) ctf_set_errno (fp, ECTF_NAMELEN);
  699. return slen;
  700. }
  701. /* Lookup the given type ID and print a string name for it into buf. If buf
  702. is too small, return NULL: the ECTF_NAMELEN error is set on 'fp' for us. */
  703. char *
  704. ctf_type_name (ctf_dict_t *fp, ctf_id_t type, char *buf, size_t len)
  705. {
  706. ssize_t rv = ctf_type_lname (fp, type, buf, len);
  707. return (rv >= 0 && (size_t) rv < len ? buf : NULL);
  708. }
  709. /* Lookup the given type ID and return its raw, unadorned, undecorated name.
  710. The name will live as long as its ctf_dict_t does.
  711. The only decoration is that a NULL return always means an error: nameless
  712. types return a null string. */
  713. const char *
  714. ctf_type_name_raw (ctf_dict_t *fp, ctf_id_t type)
  715. {
  716. const ctf_type_t *tp;
  717. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  718. return NULL; /* errno is set for us. */
  719. if (tp->ctt_name == 0)
  720. return "";
  721. return ctf_strraw (fp, tp->ctt_name);
  722. }
  723. /* Lookup the given type ID and return its raw, unadorned, undecorated name as a
  724. new dynamically-allocated string. */
  725. char *
  726. ctf_type_aname_raw (ctf_dict_t *fp, ctf_id_t type)
  727. {
  728. const char *name = ctf_type_name_raw (fp, type);
  729. if (name != NULL)
  730. return strdup (name);
  731. return NULL;
  732. }
  733. /* Resolve the type down to a base type node, and then return the size
  734. of the type storage in bytes. */
  735. ssize_t
  736. ctf_type_size (ctf_dict_t *fp, ctf_id_t type)
  737. {
  738. ctf_dict_t *ofp = fp;
  739. const ctf_type_t *tp;
  740. ssize_t size;
  741. ctf_arinfo_t ar;
  742. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  743. return -1; /* errno is set for us. */
  744. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  745. return -1; /* errno is set for us. */
  746. switch (LCTF_INFO_KIND (fp, tp->ctt_info))
  747. {
  748. case CTF_K_POINTER:
  749. return fp->ctf_dmodel->ctd_pointer;
  750. case CTF_K_FUNCTION:
  751. return 0; /* Function size is only known by symtab. */
  752. case CTF_K_ENUM:
  753. return fp->ctf_dmodel->ctd_int;
  754. case CTF_K_ARRAY:
  755. /* ctf_add_array() does not directly encode the element size, but
  756. requires the user to multiply to determine the element size.
  757. If ctf_get_ctt_size() returns nonzero, then use the recorded
  758. size instead. */
  759. if ((size = ctf_get_ctt_size (fp, tp, NULL, NULL)) > 0)
  760. return size;
  761. if (ctf_array_info (ofp, type, &ar) < 0
  762. || (size = ctf_type_size (ofp, ar.ctr_contents)) < 0)
  763. return -1; /* errno is set for us. */
  764. return size * ar.ctr_nelems;
  765. case CTF_K_FORWARD:
  766. /* Forwards do not have a meaningful size. */
  767. return (ctf_set_errno (ofp, ECTF_INCOMPLETE));
  768. default: /* including slices of enums, etc */
  769. return (ctf_get_ctt_size (fp, tp, NULL, NULL));
  770. }
  771. }
  772. /* Resolve the type down to a base type node, and then return the alignment
  773. needed for the type storage in bytes.
  774. XXX may need arch-dependent attention. */
  775. ssize_t
  776. ctf_type_align (ctf_dict_t *fp, ctf_id_t type)
  777. {
  778. const ctf_type_t *tp;
  779. ctf_dict_t *ofp = fp;
  780. int kind;
  781. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  782. return -1; /* errno is set for us. */
  783. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  784. return -1; /* errno is set for us. */
  785. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  786. switch (kind)
  787. {
  788. case CTF_K_POINTER:
  789. case CTF_K_FUNCTION:
  790. return fp->ctf_dmodel->ctd_pointer;
  791. case CTF_K_ARRAY:
  792. {
  793. ctf_arinfo_t r;
  794. if (ctf_array_info (ofp, type, &r) < 0)
  795. return -1; /* errno is set for us. */
  796. return (ctf_type_align (ofp, r.ctr_contents));
  797. }
  798. case CTF_K_STRUCT:
  799. case CTF_K_UNION:
  800. {
  801. size_t align = 0;
  802. ctf_dtdef_t *dtd;
  803. unsigned char *vlen;
  804. uint32_t i = 0, n = LCTF_INFO_VLEN (fp, tp->ctt_info);
  805. ssize_t size, increment, vbytes;
  806. ctf_get_ctt_size (fp, tp, &size, &increment);
  807. if ((dtd = ctf_dynamic_type (fp, type)) != NULL)
  808. {
  809. vlen = dtd->dtd_vlen;
  810. vbytes = dtd->dtd_vlen_alloc;
  811. }
  812. else
  813. {
  814. vlen = (unsigned char *) tp + increment;
  815. vbytes = LCTF_VBYTES (fp, kind, size, n);
  816. }
  817. if (kind == CTF_K_STRUCT)
  818. n = MIN (n, 1); /* Only use first member for structs. */
  819. for (; n != 0; n--, i++)
  820. {
  821. ctf_lmember_t memb;
  822. if (ctf_struct_member (fp, &memb, tp, vlen, vbytes, i) < 0)
  823. return -1; /* errno is set for us. */
  824. ssize_t am = ctf_type_align (ofp, memb.ctlm_type);
  825. align = MAX (align, (size_t) am);
  826. }
  827. return align;
  828. }
  829. case CTF_K_ENUM:
  830. return fp->ctf_dmodel->ctd_int;
  831. case CTF_K_FORWARD:
  832. /* Forwards do not have a meaningful alignment. */
  833. return (ctf_set_errno (ofp, ECTF_INCOMPLETE));
  834. default: /* including slices of enums, etc */
  835. return (ctf_get_ctt_size (fp, tp, NULL, NULL));
  836. }
  837. }
  838. /* Return the kind (CTF_K_* constant) for the specified type ID. */
  839. int
  840. ctf_type_kind_unsliced (ctf_dict_t *fp, ctf_id_t type)
  841. {
  842. const ctf_type_t *tp;
  843. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  844. return -1; /* errno is set for us. */
  845. return (LCTF_INFO_KIND (fp, tp->ctt_info));
  846. }
  847. /* Return the kind (CTF_K_* constant) for the specified type ID.
  848. Slices are considered to be of the same kind as the type sliced. */
  849. int
  850. ctf_type_kind (ctf_dict_t *fp, ctf_id_t type)
  851. {
  852. int kind;
  853. if ((kind = ctf_type_kind_unsliced (fp, type)) < 0)
  854. return -1;
  855. if (kind == CTF_K_SLICE)
  856. {
  857. if ((type = ctf_type_reference (fp, type)) == CTF_ERR)
  858. return -1;
  859. kind = ctf_type_kind_unsliced (fp, type);
  860. }
  861. return kind;
  862. }
  863. /* Return the kind of this type, except, for forwards, return the kind of thing
  864. this is a forward to. */
  865. int
  866. ctf_type_kind_forwarded (ctf_dict_t *fp, ctf_id_t type)
  867. {
  868. int kind;
  869. const ctf_type_t *tp;
  870. if ((kind = ctf_type_kind (fp, type)) < 0)
  871. return -1; /* errno is set for us. */
  872. if (kind != CTF_K_FORWARD)
  873. return kind;
  874. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  875. return -1; /* errno is set for us. */
  876. return tp->ctt_type;
  877. }
  878. /* If the type is one that directly references another type (such as POINTER),
  879. then return the ID of the type to which it refers. */
  880. ctf_id_t
  881. ctf_type_reference (ctf_dict_t *fp, ctf_id_t type)
  882. {
  883. ctf_dict_t *ofp = fp;
  884. const ctf_type_t *tp;
  885. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  886. return CTF_ERR; /* errno is set for us. */
  887. switch (LCTF_INFO_KIND (fp, tp->ctt_info))
  888. {
  889. case CTF_K_POINTER:
  890. case CTF_K_TYPEDEF:
  891. case CTF_K_VOLATILE:
  892. case CTF_K_CONST:
  893. case CTF_K_RESTRICT:
  894. return tp->ctt_type;
  895. /* Slices store their type in an unusual place. */
  896. case CTF_K_SLICE:
  897. {
  898. ctf_dtdef_t *dtd;
  899. const ctf_slice_t *sp;
  900. if ((dtd = ctf_dynamic_type (ofp, type)) == NULL)
  901. {
  902. ssize_t increment;
  903. (void) ctf_get_ctt_size (fp, tp, NULL, &increment);
  904. sp = (const ctf_slice_t *) ((uintptr_t) tp + increment);
  905. }
  906. else
  907. sp = (const ctf_slice_t *) dtd->dtd_vlen;
  908. return sp->cts_type;
  909. }
  910. default:
  911. return (ctf_set_errno (ofp, ECTF_NOTREF));
  912. }
  913. }
  914. /* Find a pointer to type by looking in fp->ctf_ptrtab. If we can't find a
  915. pointer to the given type, see if we can compute a pointer to the type
  916. resulting from resolving the type down to its base type and use that
  917. instead. This helps with cases where the CTF data includes "struct foo *"
  918. but not "foo_t *" and the user accesses "foo_t *" in the debugger.
  919. XXX what about parent dicts? */
  920. ctf_id_t
  921. ctf_type_pointer (ctf_dict_t *fp, ctf_id_t type)
  922. {
  923. ctf_dict_t *ofp = fp;
  924. ctf_id_t ntype;
  925. if (ctf_lookup_by_id (&fp, type) == NULL)
  926. return CTF_ERR; /* errno is set for us. */
  927. if ((ntype = fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX (fp, type)]) != 0)
  928. return (LCTF_INDEX_TO_TYPE (fp, ntype, (fp->ctf_flags & LCTF_CHILD)));
  929. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  930. return (ctf_set_errno (ofp, ECTF_NOTYPE));
  931. if (ctf_lookup_by_id (&fp, type) == NULL)
  932. return (ctf_set_errno (ofp, ECTF_NOTYPE));
  933. if ((ntype = fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX (fp, type)]) != 0)
  934. return (LCTF_INDEX_TO_TYPE (fp, ntype, (fp->ctf_flags & LCTF_CHILD)));
  935. return (ctf_set_errno (ofp, ECTF_NOTYPE));
  936. }
  937. /* Return the encoding for the specified INTEGER, FLOAT, or ENUM. */
  938. int
  939. ctf_type_encoding (ctf_dict_t *fp, ctf_id_t type, ctf_encoding_t *ep)
  940. {
  941. ctf_dict_t *ofp = fp;
  942. ctf_dtdef_t *dtd;
  943. const ctf_type_t *tp;
  944. ssize_t increment;
  945. const unsigned char *vlen;
  946. uint32_t data;
  947. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  948. return -1; /* errno is set for us. */
  949. if ((dtd = ctf_dynamic_type (ofp, type)) != NULL)
  950. vlen = dtd->dtd_vlen;
  951. else
  952. {
  953. ctf_get_ctt_size (fp, tp, NULL, &increment);
  954. vlen = (const unsigned char *) ((uintptr_t) tp + increment);
  955. }
  956. switch (LCTF_INFO_KIND (fp, tp->ctt_info))
  957. {
  958. case CTF_K_INTEGER:
  959. data = *(const uint32_t *) vlen;
  960. ep->cte_format = CTF_INT_ENCODING (data);
  961. ep->cte_offset = CTF_INT_OFFSET (data);
  962. ep->cte_bits = CTF_INT_BITS (data);
  963. break;
  964. case CTF_K_FLOAT:
  965. data = *(const uint32_t *) vlen;
  966. ep->cte_format = CTF_FP_ENCODING (data);
  967. ep->cte_offset = CTF_FP_OFFSET (data);
  968. ep->cte_bits = CTF_FP_BITS (data);
  969. break;
  970. case CTF_K_ENUM:
  971. /* v3 only: we must guess at the underlying integral format. */
  972. ep->cte_format = CTF_INT_SIGNED;
  973. ep->cte_offset = 0;
  974. ep->cte_bits = 0;
  975. break;
  976. case CTF_K_SLICE:
  977. {
  978. const ctf_slice_t *slice;
  979. ctf_encoding_t underlying_en;
  980. ctf_id_t underlying;
  981. slice = (ctf_slice_t *) vlen;
  982. underlying = ctf_type_resolve (fp, slice->cts_type);
  983. if (ctf_type_encoding (fp, underlying, &underlying_en) < 0)
  984. return -1; /* errno is set for us. */
  985. ep->cte_format = underlying_en.cte_format;
  986. ep->cte_offset = slice->cts_offset;
  987. ep->cte_bits = slice->cts_bits;
  988. break;
  989. }
  990. default:
  991. return (ctf_set_errno (ofp, ECTF_NOTINTFP));
  992. }
  993. return 0;
  994. }
  995. int
  996. ctf_type_cmp (ctf_dict_t *lfp, ctf_id_t ltype, ctf_dict_t *rfp,
  997. ctf_id_t rtype)
  998. {
  999. int rval;
  1000. if (ltype < rtype)
  1001. rval = -1;
  1002. else if (ltype > rtype)
  1003. rval = 1;
  1004. else
  1005. rval = 0;
  1006. if (lfp == rfp)
  1007. return rval;
  1008. if (LCTF_TYPE_ISPARENT (lfp, ltype) && lfp->ctf_parent != NULL)
  1009. lfp = lfp->ctf_parent;
  1010. if (LCTF_TYPE_ISPARENT (rfp, rtype) && rfp->ctf_parent != NULL)
  1011. rfp = rfp->ctf_parent;
  1012. if (lfp < rfp)
  1013. return -1;
  1014. if (lfp > rfp)
  1015. return 1;
  1016. return rval;
  1017. }
  1018. /* Return a boolean value indicating if two types are compatible. This function
  1019. returns true if the two types are the same, or if they (or their ultimate
  1020. base type) have the same encoding properties, or (for structs / unions /
  1021. enums / forward declarations) if they have the same name and (for structs /
  1022. unions) member count. */
  1023. int
  1024. ctf_type_compat (ctf_dict_t *lfp, ctf_id_t ltype,
  1025. ctf_dict_t *rfp, ctf_id_t rtype)
  1026. {
  1027. const ctf_type_t *ltp, *rtp;
  1028. ctf_encoding_t le, re;
  1029. ctf_arinfo_t la, ra;
  1030. uint32_t lkind, rkind;
  1031. int same_names = 0;
  1032. if (ctf_type_cmp (lfp, ltype, rfp, rtype) == 0)
  1033. return 1;
  1034. ltype = ctf_type_resolve (lfp, ltype);
  1035. lkind = ctf_type_kind (lfp, ltype);
  1036. rtype = ctf_type_resolve (rfp, rtype);
  1037. rkind = ctf_type_kind (rfp, rtype);
  1038. ltp = ctf_lookup_by_id (&lfp, ltype);
  1039. rtp = ctf_lookup_by_id (&rfp, rtype);
  1040. if (ltp != NULL && rtp != NULL)
  1041. same_names = (strcmp (ctf_strptr (lfp, ltp->ctt_name),
  1042. ctf_strptr (rfp, rtp->ctt_name)) == 0);
  1043. if (((lkind == CTF_K_ENUM) && (rkind == CTF_K_INTEGER)) ||
  1044. ((rkind == CTF_K_ENUM) && (lkind == CTF_K_INTEGER)))
  1045. return 1;
  1046. if (lkind != rkind)
  1047. return 0;
  1048. switch (lkind)
  1049. {
  1050. case CTF_K_INTEGER:
  1051. case CTF_K_FLOAT:
  1052. memset (&le, 0, sizeof (le));
  1053. memset (&re, 0, sizeof (re));
  1054. return (ctf_type_encoding (lfp, ltype, &le) == 0
  1055. && ctf_type_encoding (rfp, rtype, &re) == 0
  1056. && memcmp (&le, &re, sizeof (ctf_encoding_t)) == 0);
  1057. case CTF_K_POINTER:
  1058. return (ctf_type_compat (lfp, ctf_type_reference (lfp, ltype),
  1059. rfp, ctf_type_reference (rfp, rtype)));
  1060. case CTF_K_ARRAY:
  1061. return (ctf_array_info (lfp, ltype, &la) == 0
  1062. && ctf_array_info (rfp, rtype, &ra) == 0
  1063. && la.ctr_nelems == ra.ctr_nelems
  1064. && ctf_type_compat (lfp, la.ctr_contents, rfp, ra.ctr_contents)
  1065. && ctf_type_compat (lfp, la.ctr_index, rfp, ra.ctr_index));
  1066. case CTF_K_STRUCT:
  1067. case CTF_K_UNION:
  1068. return (same_names && (ctf_type_size (lfp, ltype)
  1069. == ctf_type_size (rfp, rtype)));
  1070. case CTF_K_ENUM:
  1071. {
  1072. int lencoded, rencoded;
  1073. lencoded = ctf_type_encoding (lfp, ltype, &le);
  1074. rencoded = ctf_type_encoding (rfp, rtype, &re);
  1075. if ((lencoded != rencoded) ||
  1076. ((lencoded == 0) && memcmp (&le, &re, sizeof (ctf_encoding_t)) != 0))
  1077. return 0;
  1078. }
  1079. /* FALLTHRU */
  1080. case CTF_K_FORWARD:
  1081. return same_names; /* No other checks required for these type kinds. */
  1082. default:
  1083. return 0; /* Should not get here since we did a resolve. */
  1084. }
  1085. }
  1086. /* Return the number of members in a STRUCT or UNION, or the number of
  1087. enumerators in an ENUM. The count does not include unnamed sub-members. */
  1088. int
  1089. ctf_member_count (ctf_dict_t *fp, ctf_id_t type)
  1090. {
  1091. ctf_dict_t *ofp = fp;
  1092. const ctf_type_t *tp;
  1093. uint32_t kind;
  1094. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  1095. return -1; /* errno is set for us. */
  1096. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1097. return -1; /* errno is set for us. */
  1098. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  1099. if (kind != CTF_K_STRUCT && kind != CTF_K_UNION && kind != CTF_K_ENUM)
  1100. return (ctf_set_errno (ofp, ECTF_NOTSUE));
  1101. return LCTF_INFO_VLEN (fp, tp->ctt_info);
  1102. }
  1103. /* Return the type and offset for a given member of a STRUCT or UNION. */
  1104. int
  1105. ctf_member_info (ctf_dict_t *fp, ctf_id_t type, const char *name,
  1106. ctf_membinfo_t *mip)
  1107. {
  1108. ctf_dict_t *ofp = fp;
  1109. const ctf_type_t *tp;
  1110. ctf_dtdef_t *dtd;
  1111. unsigned char *vlen;
  1112. ssize_t size, increment, vbytes;
  1113. uint32_t kind, n, i = 0;
  1114. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  1115. return -1; /* errno is set for us. */
  1116. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1117. return -1; /* errno is set for us. */
  1118. ctf_get_ctt_size (fp, tp, &size, &increment);
  1119. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  1120. if (kind != CTF_K_STRUCT && kind != CTF_K_UNION)
  1121. return (ctf_set_errno (ofp, ECTF_NOTSOU));
  1122. n = LCTF_INFO_VLEN (fp, tp->ctt_info);
  1123. if ((dtd = ctf_dynamic_type (fp, type)) != NULL)
  1124. {
  1125. vlen = dtd->dtd_vlen;
  1126. vbytes = dtd->dtd_vlen_alloc;
  1127. }
  1128. else
  1129. {
  1130. vlen = (unsigned char *) tp + increment;
  1131. vbytes = LCTF_VBYTES (fp, kind, size, n);
  1132. }
  1133. for (; n != 0; n--, i++)
  1134. {
  1135. ctf_lmember_t memb;
  1136. const char *membname;
  1137. if (ctf_struct_member (fp, &memb, tp, vlen, vbytes, i) < 0)
  1138. return -1; /* errno is set for us. */
  1139. membname = ctf_strptr (fp, memb.ctlm_name);
  1140. if (membname[0] == 0
  1141. && (ctf_type_kind (fp, memb.ctlm_type) == CTF_K_STRUCT
  1142. || ctf_type_kind (fp, memb.ctlm_type) == CTF_K_UNION)
  1143. && (ctf_member_info (fp, memb.ctlm_type, name, mip) == 0))
  1144. return 0;
  1145. if (strcmp (membname, name) == 0)
  1146. {
  1147. mip->ctm_type = memb.ctlm_type;
  1148. mip->ctm_offset = (unsigned long) CTF_LMEM_OFFSET (&memb);
  1149. return 0;
  1150. }
  1151. }
  1152. return (ctf_set_errno (ofp, ECTF_NOMEMBNAM));
  1153. }
  1154. /* Return the array type, index, and size information for the specified ARRAY. */
  1155. int
  1156. ctf_array_info (ctf_dict_t *fp, ctf_id_t type, ctf_arinfo_t *arp)
  1157. {
  1158. ctf_dict_t *ofp = fp;
  1159. const ctf_type_t *tp;
  1160. const ctf_array_t *ap;
  1161. const ctf_dtdef_t *dtd;
  1162. ssize_t increment;
  1163. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1164. return -1; /* errno is set for us. */
  1165. if (LCTF_INFO_KIND (fp, tp->ctt_info) != CTF_K_ARRAY)
  1166. return (ctf_set_errno (ofp, ECTF_NOTARRAY));
  1167. if ((dtd = ctf_dynamic_type (ofp, type)) != NULL)
  1168. ap = (const ctf_array_t *) dtd->dtd_vlen;
  1169. else
  1170. {
  1171. ctf_get_ctt_size (fp, tp, NULL, &increment);
  1172. ap = (const ctf_array_t *) ((uintptr_t) tp + increment);
  1173. }
  1174. arp->ctr_contents = ap->cta_contents;
  1175. arp->ctr_index = ap->cta_index;
  1176. arp->ctr_nelems = ap->cta_nelems;
  1177. return 0;
  1178. }
  1179. /* Convert the specified value to the corresponding enum tag name, if a
  1180. matching name can be found. Otherwise NULL is returned. */
  1181. const char *
  1182. ctf_enum_name (ctf_dict_t *fp, ctf_id_t type, int value)
  1183. {
  1184. ctf_dict_t *ofp = fp;
  1185. const ctf_type_t *tp;
  1186. const ctf_enum_t *ep;
  1187. const ctf_dtdef_t *dtd;
  1188. ssize_t increment;
  1189. uint32_t n;
  1190. if ((type = ctf_type_resolve_unsliced (fp, type)) == CTF_ERR)
  1191. return NULL; /* errno is set for us. */
  1192. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1193. return NULL; /* errno is set for us. */
  1194. if (LCTF_INFO_KIND (fp, tp->ctt_info) != CTF_K_ENUM)
  1195. {
  1196. ctf_set_errno (ofp, ECTF_NOTENUM);
  1197. return NULL;
  1198. }
  1199. ctf_get_ctt_size (fp, tp, NULL, &increment);
  1200. if ((dtd = ctf_dynamic_type (ofp, type)) == NULL)
  1201. ep = (const ctf_enum_t *) ((uintptr_t) tp + increment);
  1202. else
  1203. ep = (const ctf_enum_t *) dtd->dtd_vlen;
  1204. for (n = LCTF_INFO_VLEN (fp, tp->ctt_info); n != 0; n--, ep++)
  1205. {
  1206. if (ep->cte_value == value)
  1207. return (ctf_strptr (fp, ep->cte_name));
  1208. }
  1209. ctf_set_errno (ofp, ECTF_NOENUMNAM);
  1210. return NULL;
  1211. }
  1212. /* Convert the specified enum tag name to the corresponding value, if a
  1213. matching name can be found. Otherwise CTF_ERR is returned. */
  1214. int
  1215. ctf_enum_value (ctf_dict_t *fp, ctf_id_t type, const char *name, int *valp)
  1216. {
  1217. ctf_dict_t *ofp = fp;
  1218. const ctf_type_t *tp;
  1219. const ctf_enum_t *ep;
  1220. const ctf_dtdef_t *dtd;
  1221. ssize_t increment;
  1222. uint32_t n;
  1223. if ((type = ctf_type_resolve_unsliced (fp, type)) == CTF_ERR)
  1224. return -1; /* errno is set for us. */
  1225. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1226. return -1; /* errno is set for us. */
  1227. if (LCTF_INFO_KIND (fp, tp->ctt_info) != CTF_K_ENUM)
  1228. {
  1229. (void) ctf_set_errno (ofp, ECTF_NOTENUM);
  1230. return -1;
  1231. }
  1232. ctf_get_ctt_size (fp, tp, NULL, &increment);
  1233. if ((dtd = ctf_dynamic_type (ofp, type)) == NULL)
  1234. ep = (const ctf_enum_t *) ((uintptr_t) tp + increment);
  1235. else
  1236. ep = (const ctf_enum_t *) dtd->dtd_vlen;
  1237. for (n = LCTF_INFO_VLEN (fp, tp->ctt_info); n != 0; n--, ep++)
  1238. {
  1239. if (strcmp (ctf_strptr (fp, ep->cte_name), name) == 0)
  1240. {
  1241. if (valp != NULL)
  1242. *valp = ep->cte_value;
  1243. return 0;
  1244. }
  1245. }
  1246. ctf_set_errno (ofp, ECTF_NOENUMNAM);
  1247. return -1;
  1248. }
  1249. /* Given a type ID relating to a function type, return info on return types and
  1250. arg counts for that function. */
  1251. int
  1252. ctf_func_type_info (ctf_dict_t *fp, ctf_id_t type, ctf_funcinfo_t *fip)
  1253. {
  1254. const ctf_type_t *tp;
  1255. uint32_t kind;
  1256. const uint32_t *args;
  1257. const ctf_dtdef_t *dtd;
  1258. ssize_t size, increment;
  1259. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  1260. return -1; /* errno is set for us. */
  1261. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1262. return -1; /* errno is set for us. */
  1263. (void) ctf_get_ctt_size (fp, tp, &size, &increment);
  1264. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  1265. if (kind != CTF_K_FUNCTION)
  1266. return (ctf_set_errno (fp, ECTF_NOTFUNC));
  1267. fip->ctc_return = tp->ctt_type;
  1268. fip->ctc_flags = 0;
  1269. fip->ctc_argc = LCTF_INFO_VLEN (fp, tp->ctt_info);
  1270. if ((dtd = ctf_dynamic_type (fp, type)) == NULL)
  1271. args = (uint32_t *) ((uintptr_t) tp + increment);
  1272. else
  1273. args = (uint32_t *) dtd->dtd_vlen;
  1274. if (fip->ctc_argc != 0 && args[fip->ctc_argc - 1] == 0)
  1275. {
  1276. fip->ctc_flags |= CTF_FUNC_VARARG;
  1277. fip->ctc_argc--;
  1278. }
  1279. return 0;
  1280. }
  1281. /* Given a type ID relating to a function type, return the arguments for the
  1282. function. */
  1283. int
  1284. ctf_func_type_args (ctf_dict_t *fp, ctf_id_t type, uint32_t argc, ctf_id_t *argv)
  1285. {
  1286. const ctf_type_t *tp;
  1287. const uint32_t *args;
  1288. const ctf_dtdef_t *dtd;
  1289. ssize_t size, increment;
  1290. ctf_funcinfo_t f;
  1291. if (ctf_func_type_info (fp, type, &f) < 0)
  1292. return -1; /* errno is set for us. */
  1293. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
  1294. return -1; /* errno is set for us. */
  1295. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1296. return -1; /* errno is set for us. */
  1297. (void) ctf_get_ctt_size (fp, tp, &size, &increment);
  1298. if ((dtd = ctf_dynamic_type (fp, type)) == NULL)
  1299. args = (uint32_t *) ((uintptr_t) tp + increment);
  1300. else
  1301. args = (uint32_t *) dtd->dtd_vlen;
  1302. for (argc = MIN (argc, f.ctc_argc); argc != 0; argc--)
  1303. *argv++ = *args++;
  1304. return 0;
  1305. }
  1306. /* Recursively visit the members of any type. This function is used as the
  1307. engine for ctf_type_visit, below. We resolve the input type, recursively
  1308. invoke ourself for each type member if the type is a struct or union, and
  1309. then invoke the callback function on the current type. If any callback
  1310. returns non-zero, we abort and percolate the error code back up to the top. */
  1311. static int
  1312. ctf_type_rvisit (ctf_dict_t *fp, ctf_id_t type, ctf_visit_f *func,
  1313. void *arg, const char *name, unsigned long offset, int depth)
  1314. {
  1315. ctf_id_t otype = type;
  1316. const ctf_type_t *tp;
  1317. const ctf_dtdef_t *dtd;
  1318. unsigned char *vlen;
  1319. ssize_t size, increment, vbytes;
  1320. uint32_t kind, n, i = 0;
  1321. int nonrepresentable = 0;
  1322. int rc;
  1323. if ((type = ctf_type_resolve (fp, type)) == CTF_ERR) {
  1324. if (ctf_errno (fp) != ECTF_NONREPRESENTABLE)
  1325. return -1; /* errno is set for us. */
  1326. else
  1327. nonrepresentable = 1;
  1328. }
  1329. if (!nonrepresentable)
  1330. if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
  1331. return -1; /* errno is set for us. */
  1332. if ((rc = func (name, otype, offset, depth, arg)) != 0)
  1333. return rc;
  1334. if (!nonrepresentable)
  1335. kind = LCTF_INFO_KIND (fp, tp->ctt_info);
  1336. if (nonrepresentable || (kind != CTF_K_STRUCT && kind != CTF_K_UNION))
  1337. return 0;
  1338. ctf_get_ctt_size (fp, tp, &size, &increment);
  1339. n = LCTF_INFO_VLEN (fp, tp->ctt_info);
  1340. if ((dtd = ctf_dynamic_type (fp, type)) != NULL)
  1341. {
  1342. vlen = dtd->dtd_vlen;
  1343. vbytes = dtd->dtd_vlen_alloc;
  1344. }
  1345. else
  1346. {
  1347. vlen = (unsigned char *) tp + increment;
  1348. vbytes = LCTF_VBYTES (fp, kind, size, n);
  1349. }
  1350. for (; n != 0; n--, i++)
  1351. {
  1352. ctf_lmember_t memb;
  1353. if (ctf_struct_member (fp, &memb, tp, vlen, vbytes, i) < 0)
  1354. return -1; /* errno is set for us. */
  1355. if ((rc = ctf_type_rvisit (fp, memb.ctlm_type,
  1356. func, arg, ctf_strptr (fp, memb.ctlm_name),
  1357. offset + (unsigned long) CTF_LMEM_OFFSET (&memb),
  1358. depth + 1)) != 0)
  1359. return rc;
  1360. }
  1361. return 0;
  1362. }
  1363. /* Recursively visit the members of any type. We pass the name, member
  1364. type, and offset of each member to the specified callback function. */
  1365. int
  1366. ctf_type_visit (ctf_dict_t *fp, ctf_id_t type, ctf_visit_f *func, void *arg)
  1367. {
  1368. return (ctf_type_rvisit (fp, type, func, arg, "", 0, 0));
  1369. }