png.c 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560
  1. /* png.c - location for general purpose libpng functions
  2. *
  3. * Copyright (c) 2018-2024 Cosmin Truta
  4. * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson
  5. * Copyright (c) 1996-1997 Andreas Dilger
  6. * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  7. *
  8. * This code is released under the libpng license.
  9. * For conditions of distribution and use, see the disclaimer
  10. * and license in png.h
  11. */
  12. #include "pngpriv.h"
  13. /* Generate a compiler error if there is an old png.h in the search path. */
  14. typedef png_libpng_version_1_6_43 Your_png_h_is_not_version_1_6_43;
  15. /* Tells libpng that we have already handled the first "num_bytes" bytes
  16. * of the PNG file signature. If the PNG data is embedded into another
  17. * stream we can set num_bytes = 8 so that libpng will not attempt to read
  18. * or write any of the magic bytes before it starts on the IHDR.
  19. */
  20. #ifdef PNG_READ_SUPPORTED
  21. void PNGAPI
  22. png_set_sig_bytes(png_structrp png_ptr, int num_bytes)
  23. {
  24. unsigned int nb = (unsigned int)num_bytes;
  25. png_debug(1, "in png_set_sig_bytes");
  26. if (png_ptr == NULL)
  27. return;
  28. if (num_bytes < 0)
  29. nb = 0;
  30. if (nb > 8)
  31. png_error(png_ptr, "Too many bytes for PNG signature");
  32. png_ptr->sig_bytes = (png_byte)nb;
  33. }
  34. /* Checks whether the supplied bytes match the PNG signature. We allow
  35. * checking less than the full 8-byte signature so that those apps that
  36. * already read the first few bytes of a file to determine the file type
  37. * can simply check the remaining bytes for extra assurance. Returns
  38. * an integer less than, equal to, or greater than zero if sig is found,
  39. * respectively, to be less than, to match, or be greater than the correct
  40. * PNG signature (this is the same behavior as strcmp, memcmp, etc).
  41. */
  42. int PNGAPI
  43. png_sig_cmp(png_const_bytep sig, size_t start, size_t num_to_check)
  44. {
  45. static const png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
  46. if (num_to_check > 8)
  47. num_to_check = 8;
  48. else if (num_to_check < 1)
  49. return -1;
  50. if (start > 7)
  51. return -1;
  52. if (start + num_to_check > 8)
  53. num_to_check = 8 - start;
  54. return memcmp(&sig[start], &png_signature[start], num_to_check);
  55. }
  56. #endif /* READ */
  57. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  58. /* Function to allocate memory for zlib */
  59. PNG_FUNCTION(voidpf /* PRIVATE */,
  60. png_zalloc,(voidpf png_ptr, uInt items, uInt size),PNG_ALLOCATED)
  61. {
  62. png_alloc_size_t num_bytes = size;
  63. if (png_ptr == NULL)
  64. return NULL;
  65. if (items >= (~(png_alloc_size_t)0)/size)
  66. {
  67. png_warning (png_voidcast(png_structrp, png_ptr),
  68. "Potential overflow in png_zalloc()");
  69. return NULL;
  70. }
  71. num_bytes *= items;
  72. return png_malloc_warn(png_voidcast(png_structrp, png_ptr), num_bytes);
  73. }
  74. /* Function to free memory for zlib */
  75. void /* PRIVATE */
  76. png_zfree(voidpf png_ptr, voidpf ptr)
  77. {
  78. png_free(png_voidcast(png_const_structrp,png_ptr), ptr);
  79. }
  80. /* Reset the CRC variable to 32 bits of 1's. Care must be taken
  81. * in case CRC is > 32 bits to leave the top bits 0.
  82. */
  83. void /* PRIVATE */
  84. png_reset_crc(png_structrp png_ptr)
  85. {
  86. /* The cast is safe because the crc is a 32-bit value. */
  87. png_ptr->crc = (png_uint_32)crc32(0, Z_NULL, 0);
  88. }
  89. /* Calculate the CRC over a section of data. We can only pass as
  90. * much data to this routine as the largest single buffer size. We
  91. * also check that this data will actually be used before going to the
  92. * trouble of calculating it.
  93. */
  94. void /* PRIVATE */
  95. png_calculate_crc(png_structrp png_ptr, png_const_bytep ptr, size_t length)
  96. {
  97. int need_crc = 1;
  98. if (PNG_CHUNK_ANCILLARY(png_ptr->chunk_name) != 0)
  99. {
  100. if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
  101. (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
  102. need_crc = 0;
  103. }
  104. else /* critical */
  105. {
  106. if ((png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE) != 0)
  107. need_crc = 0;
  108. }
  109. /* 'uLong' is defined in zlib.h as unsigned long; this means that on some
  110. * systems it is a 64-bit value. crc32, however, returns 32 bits so the
  111. * following cast is safe. 'uInt' may be no more than 16 bits, so it is
  112. * necessary to perform a loop here.
  113. */
  114. if (need_crc != 0 && length > 0)
  115. {
  116. uLong crc = png_ptr->crc; /* Should never issue a warning */
  117. do
  118. {
  119. uInt safe_length = (uInt)length;
  120. #ifndef __COVERITY__
  121. if (safe_length == 0)
  122. safe_length = (uInt)-1; /* evil, but safe */
  123. #endif
  124. crc = crc32(crc, ptr, safe_length);
  125. /* The following should never issue compiler warnings; if they do the
  126. * target system has characteristics that will probably violate other
  127. * assumptions within the libpng code.
  128. */
  129. ptr += safe_length;
  130. length -= safe_length;
  131. }
  132. while (length > 0);
  133. /* And the following is always safe because the crc is only 32 bits. */
  134. png_ptr->crc = (png_uint_32)crc;
  135. }
  136. }
  137. /* Check a user supplied version number, called from both read and write
  138. * functions that create a png_struct.
  139. */
  140. int
  141. png_user_version_check(png_structrp png_ptr, png_const_charp user_png_ver)
  142. {
  143. /* Libpng versions 1.0.0 and later are binary compatible if the version
  144. * string matches through the second '.'; we must recompile any
  145. * applications that use any older library version.
  146. */
  147. if (user_png_ver != NULL)
  148. {
  149. int i = -1;
  150. int found_dots = 0;
  151. do
  152. {
  153. i++;
  154. if (user_png_ver[i] != PNG_LIBPNG_VER_STRING[i])
  155. png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  156. if (user_png_ver[i] == '.')
  157. found_dots++;
  158. } while (found_dots < 2 && user_png_ver[i] != 0 &&
  159. PNG_LIBPNG_VER_STRING[i] != 0);
  160. }
  161. else
  162. png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  163. if ((png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH) != 0)
  164. {
  165. #ifdef PNG_WARNINGS_SUPPORTED
  166. size_t pos = 0;
  167. char m[128];
  168. pos = png_safecat(m, (sizeof m), pos,
  169. "Application built with libpng-");
  170. pos = png_safecat(m, (sizeof m), pos, user_png_ver);
  171. pos = png_safecat(m, (sizeof m), pos, " but running with ");
  172. pos = png_safecat(m, (sizeof m), pos, PNG_LIBPNG_VER_STRING);
  173. PNG_UNUSED(pos)
  174. png_warning(png_ptr, m);
  175. #endif
  176. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  177. png_ptr->flags = 0;
  178. #endif
  179. return 0;
  180. }
  181. /* Success return. */
  182. return 1;
  183. }
  184. /* Generic function to create a png_struct for either read or write - this
  185. * contains the common initialization.
  186. */
  187. PNG_FUNCTION(png_structp /* PRIVATE */,
  188. png_create_png_struct,(png_const_charp user_png_ver, png_voidp error_ptr,
  189. png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
  190. png_malloc_ptr malloc_fn, png_free_ptr free_fn),PNG_ALLOCATED)
  191. {
  192. png_struct create_struct;
  193. # ifdef PNG_SETJMP_SUPPORTED
  194. jmp_buf create_jmp_buf;
  195. # endif
  196. /* This temporary stack-allocated structure is used to provide a place to
  197. * build enough context to allow the user provided memory allocator (if any)
  198. * to be called.
  199. */
  200. memset(&create_struct, 0, (sizeof create_struct));
  201. /* Added at libpng-1.2.6 */
  202. # ifdef PNG_USER_LIMITS_SUPPORTED
  203. create_struct.user_width_max = PNG_USER_WIDTH_MAX;
  204. create_struct.user_height_max = PNG_USER_HEIGHT_MAX;
  205. # ifdef PNG_USER_CHUNK_CACHE_MAX
  206. /* Added at libpng-1.2.43 and 1.4.0 */
  207. create_struct.user_chunk_cache_max = PNG_USER_CHUNK_CACHE_MAX;
  208. # endif
  209. # ifdef PNG_USER_CHUNK_MALLOC_MAX
  210. /* Added at libpng-1.2.43 and 1.4.1, required only for read but exists
  211. * in png_struct regardless.
  212. */
  213. create_struct.user_chunk_malloc_max = PNG_USER_CHUNK_MALLOC_MAX;
  214. # endif
  215. # endif
  216. /* The following two API calls simply set fields in png_struct, so it is safe
  217. * to do them now even though error handling is not yet set up.
  218. */
  219. # ifdef PNG_USER_MEM_SUPPORTED
  220. png_set_mem_fn(&create_struct, mem_ptr, malloc_fn, free_fn);
  221. # else
  222. PNG_UNUSED(mem_ptr)
  223. PNG_UNUSED(malloc_fn)
  224. PNG_UNUSED(free_fn)
  225. # endif
  226. /* (*error_fn) can return control to the caller after the error_ptr is set,
  227. * this will result in a memory leak unless the error_fn does something
  228. * extremely sophisticated. The design lacks merit but is implicit in the
  229. * API.
  230. */
  231. png_set_error_fn(&create_struct, error_ptr, error_fn, warn_fn);
  232. # ifdef PNG_SETJMP_SUPPORTED
  233. if (!setjmp(create_jmp_buf))
  234. # endif
  235. {
  236. # ifdef PNG_SETJMP_SUPPORTED
  237. /* Temporarily fake out the longjmp information until we have
  238. * successfully completed this function. This only works if we have
  239. * setjmp() support compiled in, but it is safe - this stuff should
  240. * never happen.
  241. */
  242. create_struct.jmp_buf_ptr = &create_jmp_buf;
  243. create_struct.jmp_buf_size = 0; /*stack allocation*/
  244. create_struct.longjmp_fn = longjmp;
  245. # endif
  246. /* Call the general version checker (shared with read and write code):
  247. */
  248. if (png_user_version_check(&create_struct, user_png_ver) != 0)
  249. {
  250. png_structrp png_ptr = png_voidcast(png_structrp,
  251. png_malloc_warn(&create_struct, (sizeof *png_ptr)));
  252. if (png_ptr != NULL)
  253. {
  254. /* png_ptr->zstream holds a back-pointer to the png_struct, so
  255. * this can only be done now:
  256. */
  257. create_struct.zstream.zalloc = png_zalloc;
  258. create_struct.zstream.zfree = png_zfree;
  259. create_struct.zstream.opaque = png_ptr;
  260. # ifdef PNG_SETJMP_SUPPORTED
  261. /* Eliminate the local error handling: */
  262. create_struct.jmp_buf_ptr = NULL;
  263. create_struct.jmp_buf_size = 0;
  264. create_struct.longjmp_fn = 0;
  265. # endif
  266. *png_ptr = create_struct;
  267. /* This is the successful return point */
  268. return png_ptr;
  269. }
  270. }
  271. }
  272. /* A longjmp because of a bug in the application storage allocator or a
  273. * simple failure to allocate the png_struct.
  274. */
  275. return NULL;
  276. }
  277. /* Allocate the memory for an info_struct for the application. */
  278. PNG_FUNCTION(png_infop,PNGAPI
  279. png_create_info_struct,(png_const_structrp png_ptr),PNG_ALLOCATED)
  280. {
  281. png_inforp info_ptr;
  282. png_debug(1, "in png_create_info_struct");
  283. if (png_ptr == NULL)
  284. return NULL;
  285. /* Use the internal API that does not (or at least should not) error out, so
  286. * that this call always returns ok. The application typically sets up the
  287. * error handling *after* creating the info_struct because this is the way it
  288. * has always been done in 'example.c'.
  289. */
  290. info_ptr = png_voidcast(png_inforp, png_malloc_base(png_ptr,
  291. (sizeof *info_ptr)));
  292. if (info_ptr != NULL)
  293. memset(info_ptr, 0, (sizeof *info_ptr));
  294. return info_ptr;
  295. }
  296. /* This function frees the memory associated with a single info struct.
  297. * Normally, one would use either png_destroy_read_struct() or
  298. * png_destroy_write_struct() to free an info struct, but this may be
  299. * useful for some applications. From libpng 1.6.0 this function is also used
  300. * internally to implement the png_info release part of the 'struct' destroy
  301. * APIs. This ensures that all possible approaches free the same data (all of
  302. * it).
  303. */
  304. void PNGAPI
  305. png_destroy_info_struct(png_const_structrp png_ptr, png_infopp info_ptr_ptr)
  306. {
  307. png_inforp info_ptr = NULL;
  308. png_debug(1, "in png_destroy_info_struct");
  309. if (png_ptr == NULL)
  310. return;
  311. if (info_ptr_ptr != NULL)
  312. info_ptr = *info_ptr_ptr;
  313. if (info_ptr != NULL)
  314. {
  315. /* Do this first in case of an error below; if the app implements its own
  316. * memory management this can lead to png_free calling png_error, which
  317. * will abort this routine and return control to the app error handler.
  318. * An infinite loop may result if it then tries to free the same info
  319. * ptr.
  320. */
  321. *info_ptr_ptr = NULL;
  322. png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
  323. memset(info_ptr, 0, (sizeof *info_ptr));
  324. png_free(png_ptr, info_ptr);
  325. }
  326. }
  327. /* Initialize the info structure. This is now an internal function (0.89)
  328. * and applications using it are urged to use png_create_info_struct()
  329. * instead. Use deprecated in 1.6.0, internal use removed (used internally it
  330. * is just a memset).
  331. *
  332. * NOTE: it is almost inconceivable that this API is used because it bypasses
  333. * the user-memory mechanism and the user error handling/warning mechanisms in
  334. * those cases where it does anything other than a memset.
  335. */
  336. PNG_FUNCTION(void,PNGAPI
  337. png_info_init_3,(png_infopp ptr_ptr, size_t png_info_struct_size),
  338. PNG_DEPRECATED)
  339. {
  340. png_inforp info_ptr = *ptr_ptr;
  341. png_debug(1, "in png_info_init_3");
  342. if (info_ptr == NULL)
  343. return;
  344. if ((sizeof (png_info)) > png_info_struct_size)
  345. {
  346. *ptr_ptr = NULL;
  347. /* The following line is why this API should not be used: */
  348. free(info_ptr);
  349. info_ptr = png_voidcast(png_inforp, png_malloc_base(NULL,
  350. (sizeof *info_ptr)));
  351. if (info_ptr == NULL)
  352. return;
  353. *ptr_ptr = info_ptr;
  354. }
  355. /* Set everything to 0 */
  356. memset(info_ptr, 0, (sizeof *info_ptr));
  357. }
  358. void PNGAPI
  359. png_data_freer(png_const_structrp png_ptr, png_inforp info_ptr,
  360. int freer, png_uint_32 mask)
  361. {
  362. png_debug(1, "in png_data_freer");
  363. if (png_ptr == NULL || info_ptr == NULL)
  364. return;
  365. if (freer == PNG_DESTROY_WILL_FREE_DATA)
  366. info_ptr->free_me |= mask;
  367. else if (freer == PNG_USER_WILL_FREE_DATA)
  368. info_ptr->free_me &= ~mask;
  369. else
  370. png_error(png_ptr, "Unknown freer parameter in png_data_freer");
  371. }
  372. void PNGAPI
  373. png_free_data(png_const_structrp png_ptr, png_inforp info_ptr, png_uint_32 mask,
  374. int num)
  375. {
  376. png_debug(1, "in png_free_data");
  377. if (png_ptr == NULL || info_ptr == NULL)
  378. return;
  379. #ifdef PNG_TEXT_SUPPORTED
  380. /* Free text item num or (if num == -1) all text items */
  381. if (info_ptr->text != NULL &&
  382. ((mask & PNG_FREE_TEXT) & info_ptr->free_me) != 0)
  383. {
  384. if (num != -1)
  385. {
  386. png_free(png_ptr, info_ptr->text[num].key);
  387. info_ptr->text[num].key = NULL;
  388. }
  389. else
  390. {
  391. int i;
  392. for (i = 0; i < info_ptr->num_text; i++)
  393. png_free(png_ptr, info_ptr->text[i].key);
  394. png_free(png_ptr, info_ptr->text);
  395. info_ptr->text = NULL;
  396. info_ptr->num_text = 0;
  397. info_ptr->max_text = 0;
  398. }
  399. }
  400. #endif
  401. #ifdef PNG_tRNS_SUPPORTED
  402. /* Free any tRNS entry */
  403. if (((mask & PNG_FREE_TRNS) & info_ptr->free_me) != 0)
  404. {
  405. info_ptr->valid &= ~PNG_INFO_tRNS;
  406. png_free(png_ptr, info_ptr->trans_alpha);
  407. info_ptr->trans_alpha = NULL;
  408. info_ptr->num_trans = 0;
  409. }
  410. #endif
  411. #ifdef PNG_sCAL_SUPPORTED
  412. /* Free any sCAL entry */
  413. if (((mask & PNG_FREE_SCAL) & info_ptr->free_me) != 0)
  414. {
  415. png_free(png_ptr, info_ptr->scal_s_width);
  416. png_free(png_ptr, info_ptr->scal_s_height);
  417. info_ptr->scal_s_width = NULL;
  418. info_ptr->scal_s_height = NULL;
  419. info_ptr->valid &= ~PNG_INFO_sCAL;
  420. }
  421. #endif
  422. #ifdef PNG_pCAL_SUPPORTED
  423. /* Free any pCAL entry */
  424. if (((mask & PNG_FREE_PCAL) & info_ptr->free_me) != 0)
  425. {
  426. png_free(png_ptr, info_ptr->pcal_purpose);
  427. png_free(png_ptr, info_ptr->pcal_units);
  428. info_ptr->pcal_purpose = NULL;
  429. info_ptr->pcal_units = NULL;
  430. if (info_ptr->pcal_params != NULL)
  431. {
  432. int i;
  433. for (i = 0; i < info_ptr->pcal_nparams; i++)
  434. png_free(png_ptr, info_ptr->pcal_params[i]);
  435. png_free(png_ptr, info_ptr->pcal_params);
  436. info_ptr->pcal_params = NULL;
  437. }
  438. info_ptr->valid &= ~PNG_INFO_pCAL;
  439. }
  440. #endif
  441. #ifdef PNG_iCCP_SUPPORTED
  442. /* Free any profile entry */
  443. if (((mask & PNG_FREE_ICCP) & info_ptr->free_me) != 0)
  444. {
  445. png_free(png_ptr, info_ptr->iccp_name);
  446. png_free(png_ptr, info_ptr->iccp_profile);
  447. info_ptr->iccp_name = NULL;
  448. info_ptr->iccp_profile = NULL;
  449. info_ptr->valid &= ~PNG_INFO_iCCP;
  450. }
  451. #endif
  452. #ifdef PNG_sPLT_SUPPORTED
  453. /* Free a given sPLT entry, or (if num == -1) all sPLT entries */
  454. if (info_ptr->splt_palettes != NULL &&
  455. ((mask & PNG_FREE_SPLT) & info_ptr->free_me) != 0)
  456. {
  457. if (num != -1)
  458. {
  459. png_free(png_ptr, info_ptr->splt_palettes[num].name);
  460. png_free(png_ptr, info_ptr->splt_palettes[num].entries);
  461. info_ptr->splt_palettes[num].name = NULL;
  462. info_ptr->splt_palettes[num].entries = NULL;
  463. }
  464. else
  465. {
  466. int i;
  467. for (i = 0; i < info_ptr->splt_palettes_num; i++)
  468. {
  469. png_free(png_ptr, info_ptr->splt_palettes[i].name);
  470. png_free(png_ptr, info_ptr->splt_palettes[i].entries);
  471. }
  472. png_free(png_ptr, info_ptr->splt_palettes);
  473. info_ptr->splt_palettes = NULL;
  474. info_ptr->splt_palettes_num = 0;
  475. info_ptr->valid &= ~PNG_INFO_sPLT;
  476. }
  477. }
  478. #endif
  479. #ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
  480. if (info_ptr->unknown_chunks != NULL &&
  481. ((mask & PNG_FREE_UNKN) & info_ptr->free_me) != 0)
  482. {
  483. if (num != -1)
  484. {
  485. png_free(png_ptr, info_ptr->unknown_chunks[num].data);
  486. info_ptr->unknown_chunks[num].data = NULL;
  487. }
  488. else
  489. {
  490. int i;
  491. for (i = 0; i < info_ptr->unknown_chunks_num; i++)
  492. png_free(png_ptr, info_ptr->unknown_chunks[i].data);
  493. png_free(png_ptr, info_ptr->unknown_chunks);
  494. info_ptr->unknown_chunks = NULL;
  495. info_ptr->unknown_chunks_num = 0;
  496. }
  497. }
  498. #endif
  499. #ifdef PNG_eXIf_SUPPORTED
  500. /* Free any eXIf entry */
  501. if (((mask & PNG_FREE_EXIF) & info_ptr->free_me) != 0)
  502. {
  503. # ifdef PNG_READ_eXIf_SUPPORTED
  504. if (info_ptr->eXIf_buf)
  505. {
  506. png_free(png_ptr, info_ptr->eXIf_buf);
  507. info_ptr->eXIf_buf = NULL;
  508. }
  509. # endif
  510. if (info_ptr->exif)
  511. {
  512. png_free(png_ptr, info_ptr->exif);
  513. info_ptr->exif = NULL;
  514. }
  515. info_ptr->valid &= ~PNG_INFO_eXIf;
  516. }
  517. #endif
  518. #ifdef PNG_hIST_SUPPORTED
  519. /* Free any hIST entry */
  520. if (((mask & PNG_FREE_HIST) & info_ptr->free_me) != 0)
  521. {
  522. png_free(png_ptr, info_ptr->hist);
  523. info_ptr->hist = NULL;
  524. info_ptr->valid &= ~PNG_INFO_hIST;
  525. }
  526. #endif
  527. /* Free any PLTE entry that was internally allocated */
  528. if (((mask & PNG_FREE_PLTE) & info_ptr->free_me) != 0)
  529. {
  530. png_free(png_ptr, info_ptr->palette);
  531. info_ptr->palette = NULL;
  532. info_ptr->valid &= ~PNG_INFO_PLTE;
  533. info_ptr->num_palette = 0;
  534. }
  535. #ifdef PNG_INFO_IMAGE_SUPPORTED
  536. /* Free any image bits attached to the info structure */
  537. if (((mask & PNG_FREE_ROWS) & info_ptr->free_me) != 0)
  538. {
  539. if (info_ptr->row_pointers != NULL)
  540. {
  541. png_uint_32 row;
  542. for (row = 0; row < info_ptr->height; row++)
  543. png_free(png_ptr, info_ptr->row_pointers[row]);
  544. png_free(png_ptr, info_ptr->row_pointers);
  545. info_ptr->row_pointers = NULL;
  546. }
  547. info_ptr->valid &= ~PNG_INFO_IDAT;
  548. }
  549. #endif
  550. if (num != -1)
  551. mask &= ~PNG_FREE_MUL;
  552. info_ptr->free_me &= ~mask;
  553. }
  554. #endif /* READ || WRITE */
  555. /* This function returns a pointer to the io_ptr associated with the user
  556. * functions. The application should free any memory associated with this
  557. * pointer before png_write_destroy() or png_read_destroy() are called.
  558. */
  559. png_voidp PNGAPI
  560. png_get_io_ptr(png_const_structrp png_ptr)
  561. {
  562. if (png_ptr == NULL)
  563. return NULL;
  564. return png_ptr->io_ptr;
  565. }
  566. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  567. # ifdef PNG_STDIO_SUPPORTED
  568. /* Initialize the default input/output functions for the PNG file. If you
  569. * use your own read or write routines, you can call either png_set_read_fn()
  570. * or png_set_write_fn() instead of png_init_io(). If you have defined
  571. * PNG_NO_STDIO or otherwise disabled PNG_STDIO_SUPPORTED, you must use a
  572. * function of your own because "FILE *" isn't necessarily available.
  573. */
  574. void PNGAPI
  575. png_init_io(png_structrp png_ptr, png_FILE_p fp)
  576. {
  577. png_debug(1, "in png_init_io");
  578. if (png_ptr == NULL)
  579. return;
  580. png_ptr->io_ptr = (png_voidp)fp;
  581. }
  582. # endif
  583. # ifdef PNG_SAVE_INT_32_SUPPORTED
  584. /* PNG signed integers are saved in 32-bit 2's complement format. ANSI C-90
  585. * defines a cast of a signed integer to an unsigned integer either to preserve
  586. * the value, if it is positive, or to calculate:
  587. *
  588. * (UNSIGNED_MAX+1) + integer
  589. *
  590. * Where UNSIGNED_MAX is the appropriate maximum unsigned value, so when the
  591. * negative integral value is added the result will be an unsigned value
  592. * corresponding to the 2's complement representation.
  593. */
  594. void PNGAPI
  595. png_save_int_32(png_bytep buf, png_int_32 i)
  596. {
  597. png_save_uint_32(buf, (png_uint_32)i);
  598. }
  599. # endif
  600. # ifdef PNG_TIME_RFC1123_SUPPORTED
  601. /* Convert the supplied time into an RFC 1123 string suitable for use in
  602. * a "Creation Time" or other text-based time string.
  603. */
  604. int PNGAPI
  605. png_convert_to_rfc1123_buffer(char out[29], png_const_timep ptime)
  606. {
  607. static const char short_months[12][4] =
  608. {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
  609. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
  610. if (out == NULL)
  611. return 0;
  612. if (ptime->year > 9999 /* RFC1123 limitation */ ||
  613. ptime->month == 0 || ptime->month > 12 ||
  614. ptime->day == 0 || ptime->day > 31 ||
  615. ptime->hour > 23 || ptime->minute > 59 ||
  616. ptime->second > 60)
  617. return 0;
  618. {
  619. size_t pos = 0;
  620. char number_buf[5] = {0, 0, 0, 0, 0}; /* enough for a four-digit year */
  621. # define APPEND_STRING(string) pos = png_safecat(out, 29, pos, (string))
  622. # define APPEND_NUMBER(format, value)\
  623. APPEND_STRING(PNG_FORMAT_NUMBER(number_buf, format, (value)))
  624. # define APPEND(ch) if (pos < 28) out[pos++] = (ch)
  625. APPEND_NUMBER(PNG_NUMBER_FORMAT_u, (unsigned)ptime->day);
  626. APPEND(' ');
  627. APPEND_STRING(short_months[(ptime->month - 1)]);
  628. APPEND(' ');
  629. APPEND_NUMBER(PNG_NUMBER_FORMAT_u, ptime->year);
  630. APPEND(' ');
  631. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->hour);
  632. APPEND(':');
  633. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->minute);
  634. APPEND(':');
  635. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->second);
  636. APPEND_STRING(" +0000"); /* This reliably terminates the buffer */
  637. PNG_UNUSED (pos)
  638. # undef APPEND
  639. # undef APPEND_NUMBER
  640. # undef APPEND_STRING
  641. }
  642. return 1;
  643. }
  644. # if PNG_LIBPNG_VER < 10700
  645. /* To do: remove the following from libpng-1.7 */
  646. /* Original API that uses a private buffer in png_struct.
  647. * Deprecated because it causes png_struct to carry a spurious temporary
  648. * buffer (png_struct::time_buffer), better to have the caller pass this in.
  649. */
  650. png_const_charp PNGAPI
  651. png_convert_to_rfc1123(png_structrp png_ptr, png_const_timep ptime)
  652. {
  653. if (png_ptr != NULL)
  654. {
  655. /* The only failure above if png_ptr != NULL is from an invalid ptime */
  656. if (png_convert_to_rfc1123_buffer(png_ptr->time_buffer, ptime) == 0)
  657. png_warning(png_ptr, "Ignoring invalid time value");
  658. else
  659. return png_ptr->time_buffer;
  660. }
  661. return NULL;
  662. }
  663. # endif /* LIBPNG_VER < 10700 */
  664. # endif /* TIME_RFC1123 */
  665. #endif /* READ || WRITE */
  666. png_const_charp PNGAPI
  667. png_get_copyright(png_const_structrp png_ptr)
  668. {
  669. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  670. #ifdef PNG_STRING_COPYRIGHT
  671. return PNG_STRING_COPYRIGHT
  672. #else
  673. return PNG_STRING_NEWLINE \
  674. "libpng version 1.6.43" PNG_STRING_NEWLINE \
  675. "Copyright (c) 2018-2024 Cosmin Truta" PNG_STRING_NEWLINE \
  676. "Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson" \
  677. PNG_STRING_NEWLINE \
  678. "Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
  679. "Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
  680. PNG_STRING_NEWLINE;
  681. #endif
  682. }
  683. /* The following return the library version as a short string in the
  684. * format 1.0.0 through 99.99.99zz. To get the version of *.h files
  685. * used with your application, print out PNG_LIBPNG_VER_STRING, which
  686. * is defined in png.h.
  687. * Note: now there is no difference between png_get_libpng_ver() and
  688. * png_get_header_ver(). Due to the version_nn_nn_nn typedef guard,
  689. * it is guaranteed that png.c uses the correct version of png.h.
  690. */
  691. png_const_charp PNGAPI
  692. png_get_libpng_ver(png_const_structrp png_ptr)
  693. {
  694. /* Version of *.c files used when building libpng */
  695. return png_get_header_ver(png_ptr);
  696. }
  697. png_const_charp PNGAPI
  698. png_get_header_ver(png_const_structrp png_ptr)
  699. {
  700. /* Version of *.h files used when building libpng */
  701. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  702. return PNG_LIBPNG_VER_STRING;
  703. }
  704. png_const_charp PNGAPI
  705. png_get_header_version(png_const_structrp png_ptr)
  706. {
  707. /* Returns longer string containing both version and date */
  708. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  709. #ifdef __STDC__
  710. return PNG_HEADER_VERSION_STRING
  711. # ifndef PNG_READ_SUPPORTED
  712. " (NO READ SUPPORT)"
  713. # endif
  714. PNG_STRING_NEWLINE;
  715. #else
  716. return PNG_HEADER_VERSION_STRING;
  717. #endif
  718. }
  719. #ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
  720. /* NOTE: this routine is not used internally! */
  721. /* Build a grayscale palette. Palette is assumed to be 1 << bit_depth
  722. * large of png_color. This lets grayscale images be treated as
  723. * paletted. Most useful for gamma correction and simplification
  724. * of code. This API is not used internally.
  725. */
  726. void PNGAPI
  727. png_build_grayscale_palette(int bit_depth, png_colorp palette)
  728. {
  729. int num_palette;
  730. int color_inc;
  731. int i;
  732. int v;
  733. png_debug(1, "in png_do_build_grayscale_palette");
  734. if (palette == NULL)
  735. return;
  736. switch (bit_depth)
  737. {
  738. case 1:
  739. num_palette = 2;
  740. color_inc = 0xff;
  741. break;
  742. case 2:
  743. num_palette = 4;
  744. color_inc = 0x55;
  745. break;
  746. case 4:
  747. num_palette = 16;
  748. color_inc = 0x11;
  749. break;
  750. case 8:
  751. num_palette = 256;
  752. color_inc = 1;
  753. break;
  754. default:
  755. num_palette = 0;
  756. color_inc = 0;
  757. break;
  758. }
  759. for (i = 0, v = 0; i < num_palette; i++, v += color_inc)
  760. {
  761. palette[i].red = (png_byte)(v & 0xff);
  762. palette[i].green = (png_byte)(v & 0xff);
  763. palette[i].blue = (png_byte)(v & 0xff);
  764. }
  765. }
  766. #endif
  767. #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
  768. int PNGAPI
  769. png_handle_as_unknown(png_const_structrp png_ptr, png_const_bytep chunk_name)
  770. {
  771. /* Check chunk_name and return "keep" value if it's on the list, else 0 */
  772. png_const_bytep p, p_end;
  773. if (png_ptr == NULL || chunk_name == NULL || png_ptr->num_chunk_list == 0)
  774. return PNG_HANDLE_CHUNK_AS_DEFAULT;
  775. p_end = png_ptr->chunk_list;
  776. p = p_end + png_ptr->num_chunk_list*5; /* beyond end */
  777. /* The code is the fifth byte after each four byte string. Historically this
  778. * code was always searched from the end of the list, this is no longer
  779. * necessary because the 'set' routine handles duplicate entries correctly.
  780. */
  781. do /* num_chunk_list > 0, so at least one */
  782. {
  783. p -= 5;
  784. if (memcmp(chunk_name, p, 4) == 0)
  785. return p[4];
  786. }
  787. while (p > p_end);
  788. /* This means that known chunks should be processed and unknown chunks should
  789. * be handled according to the value of png_ptr->unknown_default; this can be
  790. * confusing because, as a result, there are two levels of defaulting for
  791. * unknown chunks.
  792. */
  793. return PNG_HANDLE_CHUNK_AS_DEFAULT;
  794. }
  795. #if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) ||\
  796. defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED)
  797. int /* PRIVATE */
  798. png_chunk_unknown_handling(png_const_structrp png_ptr, png_uint_32 chunk_name)
  799. {
  800. png_byte chunk_string[5];
  801. PNG_CSTRING_FROM_CHUNK(chunk_string, chunk_name);
  802. return png_handle_as_unknown(png_ptr, chunk_string);
  803. }
  804. #endif /* READ_UNKNOWN_CHUNKS || HANDLE_AS_UNKNOWN */
  805. #endif /* SET_UNKNOWN_CHUNKS */
  806. #ifdef PNG_READ_SUPPORTED
  807. /* This function, added to libpng-1.0.6g, is untested. */
  808. int PNGAPI
  809. png_reset_zstream(png_structrp png_ptr)
  810. {
  811. if (png_ptr == NULL)
  812. return Z_STREAM_ERROR;
  813. /* WARNING: this resets the window bits to the maximum! */
  814. return inflateReset(&png_ptr->zstream);
  815. }
  816. #endif /* READ */
  817. /* This function was added to libpng-1.0.7 */
  818. png_uint_32 PNGAPI
  819. png_access_version_number(void)
  820. {
  821. /* Version of *.c files used when building libpng */
  822. return (png_uint_32)PNG_LIBPNG_VER;
  823. }
  824. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  825. /* Ensure that png_ptr->zstream.msg holds some appropriate error message string.
  826. * If it doesn't 'ret' is used to set it to something appropriate, even in cases
  827. * like Z_OK or Z_STREAM_END where the error code is apparently a success code.
  828. */
  829. void /* PRIVATE */
  830. png_zstream_error(png_structrp png_ptr, int ret)
  831. {
  832. /* Translate 'ret' into an appropriate error string, priority is given to the
  833. * one in zstream if set. This always returns a string, even in cases like
  834. * Z_OK or Z_STREAM_END where the error code is a success code.
  835. */
  836. if (png_ptr->zstream.msg == NULL) switch (ret)
  837. {
  838. default:
  839. case Z_OK:
  840. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected zlib return code");
  841. break;
  842. case Z_STREAM_END:
  843. /* Normal exit */
  844. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected end of LZ stream");
  845. break;
  846. case Z_NEED_DICT:
  847. /* This means the deflate stream did not have a dictionary; this
  848. * indicates a bogus PNG.
  849. */
  850. png_ptr->zstream.msg = PNGZ_MSG_CAST("missing LZ dictionary");
  851. break;
  852. case Z_ERRNO:
  853. /* gz APIs only: should not happen */
  854. png_ptr->zstream.msg = PNGZ_MSG_CAST("zlib IO error");
  855. break;
  856. case Z_STREAM_ERROR:
  857. /* internal libpng error */
  858. png_ptr->zstream.msg = PNGZ_MSG_CAST("bad parameters to zlib");
  859. break;
  860. case Z_DATA_ERROR:
  861. png_ptr->zstream.msg = PNGZ_MSG_CAST("damaged LZ stream");
  862. break;
  863. case Z_MEM_ERROR:
  864. png_ptr->zstream.msg = PNGZ_MSG_CAST("insufficient memory");
  865. break;
  866. case Z_BUF_ERROR:
  867. /* End of input or output; not a problem if the caller is doing
  868. * incremental read or write.
  869. */
  870. png_ptr->zstream.msg = PNGZ_MSG_CAST("truncated");
  871. break;
  872. case Z_VERSION_ERROR:
  873. png_ptr->zstream.msg = PNGZ_MSG_CAST("unsupported zlib version");
  874. break;
  875. case PNG_UNEXPECTED_ZLIB_RETURN:
  876. /* Compile errors here mean that zlib now uses the value co-opted in
  877. * pngpriv.h for PNG_UNEXPECTED_ZLIB_RETURN; update the switch above
  878. * and change pngpriv.h. Note that this message is "... return",
  879. * whereas the default/Z_OK one is "... return code".
  880. */
  881. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected zlib return");
  882. break;
  883. }
  884. }
  885. /* png_convert_size: a PNGAPI but no longer in png.h, so deleted
  886. * at libpng 1.5.5!
  887. */
  888. /* Added at libpng version 1.2.34 and 1.4.0 (moved from pngset.c) */
  889. #ifdef PNG_GAMMA_SUPPORTED /* always set if COLORSPACE */
  890. static int
  891. png_colorspace_check_gamma(png_const_structrp png_ptr,
  892. png_colorspacerp colorspace, png_fixed_point gAMA, int from)
  893. /* This is called to check a new gamma value against an existing one. The
  894. * routine returns false if the new gamma value should not be written.
  895. *
  896. * 'from' says where the new gamma value comes from:
  897. *
  898. * 0: the new gamma value is the libpng estimate for an ICC profile
  899. * 1: the new gamma value comes from a gAMA chunk
  900. * 2: the new gamma value comes from an sRGB chunk
  901. */
  902. {
  903. png_fixed_point gtest;
  904. if ((colorspace->flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
  905. (png_muldiv(&gtest, colorspace->gamma, PNG_FP_1, gAMA) == 0 ||
  906. png_gamma_significant(gtest) != 0))
  907. {
  908. /* Either this is an sRGB image, in which case the calculated gamma
  909. * approximation should match, or this is an image with a profile and the
  910. * value libpng calculates for the gamma of the profile does not match the
  911. * value recorded in the file. The former, sRGB, case is an error, the
  912. * latter is just a warning.
  913. */
  914. if ((colorspace->flags & PNG_COLORSPACE_FROM_sRGB) != 0 || from == 2)
  915. {
  916. png_chunk_report(png_ptr, "gamma value does not match sRGB",
  917. PNG_CHUNK_ERROR);
  918. /* Do not overwrite an sRGB value */
  919. return from == 2;
  920. }
  921. else /* sRGB tag not involved */
  922. {
  923. png_chunk_report(png_ptr, "gamma value does not match libpng estimate",
  924. PNG_CHUNK_WARNING);
  925. return from == 1;
  926. }
  927. }
  928. return 1;
  929. }
  930. void /* PRIVATE */
  931. png_colorspace_set_gamma(png_const_structrp png_ptr,
  932. png_colorspacerp colorspace, png_fixed_point gAMA)
  933. {
  934. /* Changed in libpng-1.5.4 to limit the values to ensure overflow can't
  935. * occur. Since the fixed point representation is asymmetrical it is
  936. * possible for 1/gamma to overflow the limit of 21474 and this means the
  937. * gamma value must be at least 5/100000 and hence at most 20000.0. For
  938. * safety the limits here are a little narrower. The values are 0.00016 to
  939. * 6250.0, which are truly ridiculous gamma values (and will produce
  940. * displays that are all black or all white.)
  941. *
  942. * In 1.6.0 this test replaces the ones in pngrutil.c, in the gAMA chunk
  943. * handling code, which only required the value to be >0.
  944. */
  945. png_const_charp errmsg;
  946. if (gAMA < 16 || gAMA > 625000000)
  947. errmsg = "gamma value out of range";
  948. # ifdef PNG_READ_gAMA_SUPPORTED
  949. /* Allow the application to set the gamma value more than once */
  950. else if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0 &&
  951. (colorspace->flags & PNG_COLORSPACE_FROM_gAMA) != 0)
  952. errmsg = "duplicate";
  953. # endif
  954. /* Do nothing if the colorspace is already invalid */
  955. else if ((colorspace->flags & PNG_COLORSPACE_INVALID) != 0)
  956. return;
  957. else
  958. {
  959. if (png_colorspace_check_gamma(png_ptr, colorspace, gAMA,
  960. 1/*from gAMA*/) != 0)
  961. {
  962. /* Store this gamma value. */
  963. colorspace->gamma = gAMA;
  964. colorspace->flags |=
  965. (PNG_COLORSPACE_HAVE_GAMMA | PNG_COLORSPACE_FROM_gAMA);
  966. }
  967. /* At present if the check_gamma test fails the gamma of the colorspace is
  968. * not updated however the colorspace is not invalidated. This
  969. * corresponds to the case where the existing gamma comes from an sRGB
  970. * chunk or profile. An error message has already been output.
  971. */
  972. return;
  973. }
  974. /* Error exit - errmsg has been set. */
  975. colorspace->flags |= PNG_COLORSPACE_INVALID;
  976. png_chunk_report(png_ptr, errmsg, PNG_CHUNK_WRITE_ERROR);
  977. }
  978. void /* PRIVATE */
  979. png_colorspace_sync_info(png_const_structrp png_ptr, png_inforp info_ptr)
  980. {
  981. if ((info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) != 0)
  982. {
  983. /* Everything is invalid */
  984. info_ptr->valid &= ~(PNG_INFO_gAMA|PNG_INFO_cHRM|PNG_INFO_sRGB|
  985. PNG_INFO_iCCP);
  986. # ifdef PNG_COLORSPACE_SUPPORTED
  987. /* Clean up the iCCP profile now if it won't be used. */
  988. png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, -1/*not used*/);
  989. # else
  990. PNG_UNUSED(png_ptr)
  991. # endif
  992. }
  993. else
  994. {
  995. # ifdef PNG_COLORSPACE_SUPPORTED
  996. /* Leave the INFO_iCCP flag set if the pngset.c code has already set
  997. * it; this allows a PNG to contain a profile which matches sRGB and
  998. * yet still have that profile retrievable by the application.
  999. */
  1000. if ((info_ptr->colorspace.flags & PNG_COLORSPACE_MATCHES_sRGB) != 0)
  1001. info_ptr->valid |= PNG_INFO_sRGB;
  1002. else
  1003. info_ptr->valid &= ~PNG_INFO_sRGB;
  1004. if ((info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
  1005. info_ptr->valid |= PNG_INFO_cHRM;
  1006. else
  1007. info_ptr->valid &= ~PNG_INFO_cHRM;
  1008. # endif
  1009. if ((info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0)
  1010. info_ptr->valid |= PNG_INFO_gAMA;
  1011. else
  1012. info_ptr->valid &= ~PNG_INFO_gAMA;
  1013. }
  1014. }
  1015. #ifdef PNG_READ_SUPPORTED
  1016. void /* PRIVATE */
  1017. png_colorspace_sync(png_const_structrp png_ptr, png_inforp info_ptr)
  1018. {
  1019. if (info_ptr == NULL) /* reduce code size; check here not in the caller */
  1020. return;
  1021. info_ptr->colorspace = png_ptr->colorspace;
  1022. png_colorspace_sync_info(png_ptr, info_ptr);
  1023. }
  1024. #endif
  1025. #endif /* GAMMA */
  1026. #ifdef PNG_COLORSPACE_SUPPORTED
  1027. /* Added at libpng-1.5.5 to support read and write of true CIEXYZ values for
  1028. * cHRM, as opposed to using chromaticities. These internal APIs return
  1029. * non-zero on a parameter error. The X, Y and Z values are required to be
  1030. * positive and less than 1.0.
  1031. */
  1032. static int
  1033. png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ)
  1034. {
  1035. png_int_32 d, dwhite, whiteX, whiteY;
  1036. d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
  1037. if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0)
  1038. return 1;
  1039. if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0)
  1040. return 1;
  1041. dwhite = d;
  1042. whiteX = XYZ->red_X;
  1043. whiteY = XYZ->red_Y;
  1044. d = XYZ->green_X + XYZ->green_Y + XYZ->green_Z;
  1045. if (png_muldiv(&xy->greenx, XYZ->green_X, PNG_FP_1, d) == 0)
  1046. return 1;
  1047. if (png_muldiv(&xy->greeny, XYZ->green_Y, PNG_FP_1, d) == 0)
  1048. return 1;
  1049. dwhite += d;
  1050. whiteX += XYZ->green_X;
  1051. whiteY += XYZ->green_Y;
  1052. d = XYZ->blue_X + XYZ->blue_Y + XYZ->blue_Z;
  1053. if (png_muldiv(&xy->bluex, XYZ->blue_X, PNG_FP_1, d) == 0)
  1054. return 1;
  1055. if (png_muldiv(&xy->bluey, XYZ->blue_Y, PNG_FP_1, d) == 0)
  1056. return 1;
  1057. dwhite += d;
  1058. whiteX += XYZ->blue_X;
  1059. whiteY += XYZ->blue_Y;
  1060. /* The reference white is simply the sum of the end-point (X,Y,Z) vectors,
  1061. * thus:
  1062. */
  1063. if (png_muldiv(&xy->whitex, whiteX, PNG_FP_1, dwhite) == 0)
  1064. return 1;
  1065. if (png_muldiv(&xy->whitey, whiteY, PNG_FP_1, dwhite) == 0)
  1066. return 1;
  1067. return 0;
  1068. }
  1069. static int
  1070. png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy)
  1071. {
  1072. png_fixed_point red_inverse, green_inverse, blue_scale;
  1073. png_fixed_point left, right, denominator;
  1074. /* Check xy and, implicitly, z. Note that wide gamut color spaces typically
  1075. * have end points with 0 tristimulus values (these are impossible end
  1076. * points, but they are used to cover the possible colors). We check
  1077. * xy->whitey against 5, not 0, to avoid a possible integer overflow.
  1078. */
  1079. if (xy->redx < 0 || xy->redx > PNG_FP_1) return 1;
  1080. if (xy->redy < 0 || xy->redy > PNG_FP_1-xy->redx) return 1;
  1081. if (xy->greenx < 0 || xy->greenx > PNG_FP_1) return 1;
  1082. if (xy->greeny < 0 || xy->greeny > PNG_FP_1-xy->greenx) return 1;
  1083. if (xy->bluex < 0 || xy->bluex > PNG_FP_1) return 1;
  1084. if (xy->bluey < 0 || xy->bluey > PNG_FP_1-xy->bluex) return 1;
  1085. if (xy->whitex < 0 || xy->whitex > PNG_FP_1) return 1;
  1086. if (xy->whitey < 5 || xy->whitey > PNG_FP_1-xy->whitex) return 1;
  1087. /* The reverse calculation is more difficult because the original tristimulus
  1088. * value had 9 independent values (red,green,blue)x(X,Y,Z) however only 8
  1089. * derived values were recorded in the cHRM chunk;
  1090. * (red,green,blue,white)x(x,y). This loses one degree of freedom and
  1091. * therefore an arbitrary ninth value has to be introduced to undo the
  1092. * original transformations.
  1093. *
  1094. * Think of the original end-points as points in (X,Y,Z) space. The
  1095. * chromaticity values (c) have the property:
  1096. *
  1097. * C
  1098. * c = ---------
  1099. * X + Y + Z
  1100. *
  1101. * For each c (x,y,z) from the corresponding original C (X,Y,Z). Thus the
  1102. * three chromaticity values (x,y,z) for each end-point obey the
  1103. * relationship:
  1104. *
  1105. * x + y + z = 1
  1106. *
  1107. * This describes the plane in (X,Y,Z) space that intersects each axis at the
  1108. * value 1.0; call this the chromaticity plane. Thus the chromaticity
  1109. * calculation has scaled each end-point so that it is on the x+y+z=1 plane
  1110. * and chromaticity is the intersection of the vector from the origin to the
  1111. * (X,Y,Z) value with the chromaticity plane.
  1112. *
  1113. * To fully invert the chromaticity calculation we would need the three
  1114. * end-point scale factors, (red-scale, green-scale, blue-scale), but these
  1115. * were not recorded. Instead we calculated the reference white (X,Y,Z) and
  1116. * recorded the chromaticity of this. The reference white (X,Y,Z) would have
  1117. * given all three of the scale factors since:
  1118. *
  1119. * color-C = color-c * color-scale
  1120. * white-C = red-C + green-C + blue-C
  1121. * = red-c*red-scale + green-c*green-scale + blue-c*blue-scale
  1122. *
  1123. * But cHRM records only white-x and white-y, so we have lost the white scale
  1124. * factor:
  1125. *
  1126. * white-C = white-c*white-scale
  1127. *
  1128. * To handle this the inverse transformation makes an arbitrary assumption
  1129. * about white-scale:
  1130. *
  1131. * Assume: white-Y = 1.0
  1132. * Hence: white-scale = 1/white-y
  1133. * Or: red-Y + green-Y + blue-Y = 1.0
  1134. *
  1135. * Notice the last statement of the assumption gives an equation in three of
  1136. * the nine values we want to calculate. 8 more equations come from the
  1137. * above routine as summarised at the top above (the chromaticity
  1138. * calculation):
  1139. *
  1140. * Given: color-x = color-X / (color-X + color-Y + color-Z)
  1141. * Hence: (color-x - 1)*color-X + color.x*color-Y + color.x*color-Z = 0
  1142. *
  1143. * This is 9 simultaneous equations in the 9 variables "color-C" and can be
  1144. * solved by Cramer's rule. Cramer's rule requires calculating 10 9x9 matrix
  1145. * determinants, however this is not as bad as it seems because only 28 of
  1146. * the total of 90 terms in the various matrices are non-zero. Nevertheless
  1147. * Cramer's rule is notoriously numerically unstable because the determinant
  1148. * calculation involves the difference of large, but similar, numbers. It is
  1149. * difficult to be sure that the calculation is stable for real world values
  1150. * and it is certain that it becomes unstable where the end points are close
  1151. * together.
  1152. *
  1153. * So this code uses the perhaps slightly less optimal but more
  1154. * understandable and totally obvious approach of calculating color-scale.
  1155. *
  1156. * This algorithm depends on the precision in white-scale and that is
  1157. * (1/white-y), so we can immediately see that as white-y approaches 0 the
  1158. * accuracy inherent in the cHRM chunk drops off substantially.
  1159. *
  1160. * libpng arithmetic: a simple inversion of the above equations
  1161. * ------------------------------------------------------------
  1162. *
  1163. * white_scale = 1/white-y
  1164. * white-X = white-x * white-scale
  1165. * white-Y = 1.0
  1166. * white-Z = (1 - white-x - white-y) * white_scale
  1167. *
  1168. * white-C = red-C + green-C + blue-C
  1169. * = red-c*red-scale + green-c*green-scale + blue-c*blue-scale
  1170. *
  1171. * This gives us three equations in (red-scale,green-scale,blue-scale) where
  1172. * all the coefficients are now known:
  1173. *
  1174. * red-x*red-scale + green-x*green-scale + blue-x*blue-scale
  1175. * = white-x/white-y
  1176. * red-y*red-scale + green-y*green-scale + blue-y*blue-scale = 1
  1177. * red-z*red-scale + green-z*green-scale + blue-z*blue-scale
  1178. * = (1 - white-x - white-y)/white-y
  1179. *
  1180. * In the last equation color-z is (1 - color-x - color-y) so we can add all
  1181. * three equations together to get an alternative third:
  1182. *
  1183. * red-scale + green-scale + blue-scale = 1/white-y = white-scale
  1184. *
  1185. * So now we have a Cramer's rule solution where the determinants are just
  1186. * 3x3 - far more tractible. Unfortunately 3x3 determinants still involve
  1187. * multiplication of three coefficients so we can't guarantee to avoid
  1188. * overflow in the libpng fixed point representation. Using Cramer's rule in
  1189. * floating point is probably a good choice here, but it's not an option for
  1190. * fixed point. Instead proceed to simplify the first two equations by
  1191. * eliminating what is likely to be the largest value, blue-scale:
  1192. *
  1193. * blue-scale = white-scale - red-scale - green-scale
  1194. *
  1195. * Hence:
  1196. *
  1197. * (red-x - blue-x)*red-scale + (green-x - blue-x)*green-scale =
  1198. * (white-x - blue-x)*white-scale
  1199. *
  1200. * (red-y - blue-y)*red-scale + (green-y - blue-y)*green-scale =
  1201. * 1 - blue-y*white-scale
  1202. *
  1203. * And now we can trivially solve for (red-scale,green-scale):
  1204. *
  1205. * green-scale =
  1206. * (white-x - blue-x)*white-scale - (red-x - blue-x)*red-scale
  1207. * -----------------------------------------------------------
  1208. * green-x - blue-x
  1209. *
  1210. * red-scale =
  1211. * 1 - blue-y*white-scale - (green-y - blue-y) * green-scale
  1212. * ---------------------------------------------------------
  1213. * red-y - blue-y
  1214. *
  1215. * Hence:
  1216. *
  1217. * red-scale =
  1218. * ( (green-x - blue-x) * (white-y - blue-y) -
  1219. * (green-y - blue-y) * (white-x - blue-x) ) / white-y
  1220. * -------------------------------------------------------------------------
  1221. * (green-x - blue-x)*(red-y - blue-y)-(green-y - blue-y)*(red-x - blue-x)
  1222. *
  1223. * green-scale =
  1224. * ( (red-y - blue-y) * (white-x - blue-x) -
  1225. * (red-x - blue-x) * (white-y - blue-y) ) / white-y
  1226. * -------------------------------------------------------------------------
  1227. * (green-x - blue-x)*(red-y - blue-y)-(green-y - blue-y)*(red-x - blue-x)
  1228. *
  1229. * Accuracy:
  1230. * The input values have 5 decimal digits of accuracy. The values are all in
  1231. * the range 0 < value < 1, so simple products are in the same range but may
  1232. * need up to 10 decimal digits to preserve the original precision and avoid
  1233. * underflow. Because we are using a 32-bit signed representation we cannot
  1234. * match this; the best is a little over 9 decimal digits, less than 10.
  1235. *
  1236. * The approach used here is to preserve the maximum precision within the
  1237. * signed representation. Because the red-scale calculation above uses the
  1238. * difference between two products of values that must be in the range -1..+1
  1239. * it is sufficient to divide the product by 7; ceil(100,000/32767*2). The
  1240. * factor is irrelevant in the calculation because it is applied to both
  1241. * numerator and denominator.
  1242. *
  1243. * Note that the values of the differences of the products of the
  1244. * chromaticities in the above equations tend to be small, for example for
  1245. * the sRGB chromaticities they are:
  1246. *
  1247. * red numerator: -0.04751
  1248. * green numerator: -0.08788
  1249. * denominator: -0.2241 (without white-y multiplication)
  1250. *
  1251. * The resultant Y coefficients from the chromaticities of some widely used
  1252. * color space definitions are (to 15 decimal places):
  1253. *
  1254. * sRGB
  1255. * 0.212639005871510 0.715168678767756 0.072192315360734
  1256. * Kodak ProPhoto
  1257. * 0.288071128229293 0.711843217810102 0.000085653960605
  1258. * Adobe RGB
  1259. * 0.297344975250536 0.627363566255466 0.075291458493998
  1260. * Adobe Wide Gamut RGB
  1261. * 0.258728243040113 0.724682314948566 0.016589442011321
  1262. */
  1263. /* By the argument, above overflow should be impossible here. The return
  1264. * value of 2 indicates an internal error to the caller.
  1265. */
  1266. if (png_muldiv(&left, xy->greenx-xy->bluex, xy->redy - xy->bluey, 7) == 0)
  1267. return 2;
  1268. if (png_muldiv(&right, xy->greeny-xy->bluey, xy->redx - xy->bluex, 7) == 0)
  1269. return 2;
  1270. denominator = left - right;
  1271. /* Now find the red numerator. */
  1272. if (png_muldiv(&left, xy->greenx-xy->bluex, xy->whitey-xy->bluey, 7) == 0)
  1273. return 2;
  1274. if (png_muldiv(&right, xy->greeny-xy->bluey, xy->whitex-xy->bluex, 7) == 0)
  1275. return 2;
  1276. /* Overflow is possible here and it indicates an extreme set of PNG cHRM
  1277. * chunk values. This calculation actually returns the reciprocal of the
  1278. * scale value because this allows us to delay the multiplication of white-y
  1279. * into the denominator, which tends to produce a small number.
  1280. */
  1281. if (png_muldiv(&red_inverse, xy->whitey, denominator, left-right) == 0 ||
  1282. red_inverse <= xy->whitey /* r+g+b scales = white scale */)
  1283. return 1;
  1284. /* Similarly for green_inverse: */
  1285. if (png_muldiv(&left, xy->redy-xy->bluey, xy->whitex-xy->bluex, 7) == 0)
  1286. return 2;
  1287. if (png_muldiv(&right, xy->redx-xy->bluex, xy->whitey-xy->bluey, 7) == 0)
  1288. return 2;
  1289. if (png_muldiv(&green_inverse, xy->whitey, denominator, left-right) == 0 ||
  1290. green_inverse <= xy->whitey)
  1291. return 1;
  1292. /* And the blue scale, the checks above guarantee this can't overflow but it
  1293. * can still produce 0 for extreme cHRM values.
  1294. */
  1295. blue_scale = png_reciprocal(xy->whitey) - png_reciprocal(red_inverse) -
  1296. png_reciprocal(green_inverse);
  1297. if (blue_scale <= 0)
  1298. return 1;
  1299. /* And fill in the png_XYZ: */
  1300. if (png_muldiv(&XYZ->red_X, xy->redx, PNG_FP_1, red_inverse) == 0)
  1301. return 1;
  1302. if (png_muldiv(&XYZ->red_Y, xy->redy, PNG_FP_1, red_inverse) == 0)
  1303. return 1;
  1304. if (png_muldiv(&XYZ->red_Z, PNG_FP_1 - xy->redx - xy->redy, PNG_FP_1,
  1305. red_inverse) == 0)
  1306. return 1;
  1307. if (png_muldiv(&XYZ->green_X, xy->greenx, PNG_FP_1, green_inverse) == 0)
  1308. return 1;
  1309. if (png_muldiv(&XYZ->green_Y, xy->greeny, PNG_FP_1, green_inverse) == 0)
  1310. return 1;
  1311. if (png_muldiv(&XYZ->green_Z, PNG_FP_1 - xy->greenx - xy->greeny, PNG_FP_1,
  1312. green_inverse) == 0)
  1313. return 1;
  1314. if (png_muldiv(&XYZ->blue_X, xy->bluex, blue_scale, PNG_FP_1) == 0)
  1315. return 1;
  1316. if (png_muldiv(&XYZ->blue_Y, xy->bluey, blue_scale, PNG_FP_1) == 0)
  1317. return 1;
  1318. if (png_muldiv(&XYZ->blue_Z, PNG_FP_1 - xy->bluex - xy->bluey, blue_scale,
  1319. PNG_FP_1) == 0)
  1320. return 1;
  1321. return 0; /*success*/
  1322. }
  1323. static int
  1324. png_XYZ_normalize(png_XYZ *XYZ)
  1325. {
  1326. png_int_32 Y;
  1327. if (XYZ->red_Y < 0 || XYZ->green_Y < 0 || XYZ->blue_Y < 0 ||
  1328. XYZ->red_X < 0 || XYZ->green_X < 0 || XYZ->blue_X < 0 ||
  1329. XYZ->red_Z < 0 || XYZ->green_Z < 0 || XYZ->blue_Z < 0)
  1330. return 1;
  1331. /* Normalize by scaling so the sum of the end-point Y values is PNG_FP_1.
  1332. * IMPLEMENTATION NOTE: ANSI requires signed overflow not to occur, therefore
  1333. * relying on addition of two positive values producing a negative one is not
  1334. * safe.
  1335. */
  1336. Y = XYZ->red_Y;
  1337. if (0x7fffffff - Y < XYZ->green_X)
  1338. return 1;
  1339. Y += XYZ->green_Y;
  1340. if (0x7fffffff - Y < XYZ->blue_X)
  1341. return 1;
  1342. Y += XYZ->blue_Y;
  1343. if (Y != PNG_FP_1)
  1344. {
  1345. if (png_muldiv(&XYZ->red_X, XYZ->red_X, PNG_FP_1, Y) == 0)
  1346. return 1;
  1347. if (png_muldiv(&XYZ->red_Y, XYZ->red_Y, PNG_FP_1, Y) == 0)
  1348. return 1;
  1349. if (png_muldiv(&XYZ->red_Z, XYZ->red_Z, PNG_FP_1, Y) == 0)
  1350. return 1;
  1351. if (png_muldiv(&XYZ->green_X, XYZ->green_X, PNG_FP_1, Y) == 0)
  1352. return 1;
  1353. if (png_muldiv(&XYZ->green_Y, XYZ->green_Y, PNG_FP_1, Y) == 0)
  1354. return 1;
  1355. if (png_muldiv(&XYZ->green_Z, XYZ->green_Z, PNG_FP_1, Y) == 0)
  1356. return 1;
  1357. if (png_muldiv(&XYZ->blue_X, XYZ->blue_X, PNG_FP_1, Y) == 0)
  1358. return 1;
  1359. if (png_muldiv(&XYZ->blue_Y, XYZ->blue_Y, PNG_FP_1, Y) == 0)
  1360. return 1;
  1361. if (png_muldiv(&XYZ->blue_Z, XYZ->blue_Z, PNG_FP_1, Y) == 0)
  1362. return 1;
  1363. }
  1364. return 0;
  1365. }
  1366. static int
  1367. png_colorspace_endpoints_match(const png_xy *xy1, const png_xy *xy2, int delta)
  1368. {
  1369. /* Allow an error of +/-0.01 (absolute value) on each chromaticity */
  1370. if (PNG_OUT_OF_RANGE(xy1->whitex, xy2->whitex,delta) ||
  1371. PNG_OUT_OF_RANGE(xy1->whitey, xy2->whitey,delta) ||
  1372. PNG_OUT_OF_RANGE(xy1->redx, xy2->redx, delta) ||
  1373. PNG_OUT_OF_RANGE(xy1->redy, xy2->redy, delta) ||
  1374. PNG_OUT_OF_RANGE(xy1->greenx, xy2->greenx,delta) ||
  1375. PNG_OUT_OF_RANGE(xy1->greeny, xy2->greeny,delta) ||
  1376. PNG_OUT_OF_RANGE(xy1->bluex, xy2->bluex, delta) ||
  1377. PNG_OUT_OF_RANGE(xy1->bluey, xy2->bluey, delta))
  1378. return 0;
  1379. return 1;
  1380. }
  1381. /* Added in libpng-1.6.0, a different check for the validity of a set of cHRM
  1382. * chunk chromaticities. Earlier checks used to simply look for the overflow
  1383. * condition (where the determinant of the matrix to solve for XYZ ends up zero
  1384. * because the chromaticity values are not all distinct.) Despite this it is
  1385. * theoretically possible to produce chromaticities that are apparently valid
  1386. * but that rapidly degrade to invalid, potentially crashing, sets because of
  1387. * arithmetic inaccuracies when calculations are performed on them. The new
  1388. * check is to round-trip xy -> XYZ -> xy and then check that the result is
  1389. * within a small percentage of the original.
  1390. */
  1391. static int
  1392. png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy)
  1393. {
  1394. int result;
  1395. png_xy xy_test;
  1396. /* As a side-effect this routine also returns the XYZ endpoints. */
  1397. result = png_XYZ_from_xy(XYZ, xy);
  1398. if (result != 0)
  1399. return result;
  1400. result = png_xy_from_XYZ(&xy_test, XYZ);
  1401. if (result != 0)
  1402. return result;
  1403. if (png_colorspace_endpoints_match(xy, &xy_test,
  1404. 5/*actually, the math is pretty accurate*/) != 0)
  1405. return 0;
  1406. /* Too much slip */
  1407. return 1;
  1408. }
  1409. /* This is the check going the other way. The XYZ is modified to normalize it
  1410. * (another side-effect) and the xy chromaticities are returned.
  1411. */
  1412. static int
  1413. png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ)
  1414. {
  1415. int result;
  1416. png_XYZ XYZtemp;
  1417. result = png_XYZ_normalize(XYZ);
  1418. if (result != 0)
  1419. return result;
  1420. result = png_xy_from_XYZ(xy, XYZ);
  1421. if (result != 0)
  1422. return result;
  1423. XYZtemp = *XYZ;
  1424. return png_colorspace_check_xy(&XYZtemp, xy);
  1425. }
  1426. /* Used to check for an endpoint match against sRGB */
  1427. static const png_xy sRGB_xy = /* From ITU-R BT.709-3 */
  1428. {
  1429. /* color x y */
  1430. /* red */ 64000, 33000,
  1431. /* green */ 30000, 60000,
  1432. /* blue */ 15000, 6000,
  1433. /* white */ 31270, 32900
  1434. };
  1435. static int
  1436. png_colorspace_set_xy_and_XYZ(png_const_structrp png_ptr,
  1437. png_colorspacerp colorspace, const png_xy *xy, const png_XYZ *XYZ,
  1438. int preferred)
  1439. {
  1440. if ((colorspace->flags & PNG_COLORSPACE_INVALID) != 0)
  1441. return 0;
  1442. /* The consistency check is performed on the chromaticities; this factors out
  1443. * variations because of the normalization (or not) of the end point Y
  1444. * values.
  1445. */
  1446. if (preferred < 2 &&
  1447. (colorspace->flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
  1448. {
  1449. /* The end points must be reasonably close to any we already have. The
  1450. * following allows an error of up to +/-.001
  1451. */
  1452. if (png_colorspace_endpoints_match(xy, &colorspace->end_points_xy,
  1453. 100) == 0)
  1454. {
  1455. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1456. png_benign_error(png_ptr, "inconsistent chromaticities");
  1457. return 0; /* failed */
  1458. }
  1459. /* Only overwrite with preferred values */
  1460. if (preferred == 0)
  1461. return 1; /* ok, but no change */
  1462. }
  1463. colorspace->end_points_xy = *xy;
  1464. colorspace->end_points_XYZ = *XYZ;
  1465. colorspace->flags |= PNG_COLORSPACE_HAVE_ENDPOINTS;
  1466. /* The end points are normally quoted to two decimal digits, so allow +/-0.01
  1467. * on this test.
  1468. */
  1469. if (png_colorspace_endpoints_match(xy, &sRGB_xy, 1000) != 0)
  1470. colorspace->flags |= PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB;
  1471. else
  1472. colorspace->flags &= PNG_COLORSPACE_CANCEL(
  1473. PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB);
  1474. return 2; /* ok and changed */
  1475. }
  1476. int /* PRIVATE */
  1477. png_colorspace_set_chromaticities(png_const_structrp png_ptr,
  1478. png_colorspacerp colorspace, const png_xy *xy, int preferred)
  1479. {
  1480. /* We must check the end points to ensure they are reasonable - in the past
  1481. * color management systems have crashed as a result of getting bogus
  1482. * colorant values, while this isn't the fault of libpng it is the
  1483. * responsibility of libpng because PNG carries the bomb and libpng is in a
  1484. * position to protect against it.
  1485. */
  1486. png_XYZ XYZ;
  1487. switch (png_colorspace_check_xy(&XYZ, xy))
  1488. {
  1489. case 0: /* success */
  1490. return png_colorspace_set_xy_and_XYZ(png_ptr, colorspace, xy, &XYZ,
  1491. preferred);
  1492. case 1:
  1493. /* We can't invert the chromaticities so we can't produce value XYZ
  1494. * values. Likely as not a color management system will fail too.
  1495. */
  1496. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1497. png_benign_error(png_ptr, "invalid chromaticities");
  1498. break;
  1499. default:
  1500. /* libpng is broken; this should be a warning but if it happens we
  1501. * want error reports so for the moment it is an error.
  1502. */
  1503. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1504. png_error(png_ptr, "internal error checking chromaticities");
  1505. }
  1506. return 0; /* failed */
  1507. }
  1508. int /* PRIVATE */
  1509. png_colorspace_set_endpoints(png_const_structrp png_ptr,
  1510. png_colorspacerp colorspace, const png_XYZ *XYZ_in, int preferred)
  1511. {
  1512. png_XYZ XYZ = *XYZ_in;
  1513. png_xy xy;
  1514. switch (png_colorspace_check_XYZ(&xy, &XYZ))
  1515. {
  1516. case 0:
  1517. return png_colorspace_set_xy_and_XYZ(png_ptr, colorspace, &xy, &XYZ,
  1518. preferred);
  1519. case 1:
  1520. /* End points are invalid. */
  1521. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1522. png_benign_error(png_ptr, "invalid end points");
  1523. break;
  1524. default:
  1525. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1526. png_error(png_ptr, "internal error checking chromaticities");
  1527. }
  1528. return 0; /* failed */
  1529. }
  1530. #if defined(PNG_sRGB_SUPPORTED) || defined(PNG_iCCP_SUPPORTED)
  1531. /* Error message generation */
  1532. static char
  1533. png_icc_tag_char(png_uint_32 byte)
  1534. {
  1535. byte &= 0xff;
  1536. if (byte >= 32 && byte <= 126)
  1537. return (char)byte;
  1538. else
  1539. return '?';
  1540. }
  1541. static void
  1542. png_icc_tag_name(char *name, png_uint_32 tag)
  1543. {
  1544. name[0] = '\'';
  1545. name[1] = png_icc_tag_char(tag >> 24);
  1546. name[2] = png_icc_tag_char(tag >> 16);
  1547. name[3] = png_icc_tag_char(tag >> 8);
  1548. name[4] = png_icc_tag_char(tag );
  1549. name[5] = '\'';
  1550. }
  1551. static int
  1552. is_ICC_signature_char(png_alloc_size_t it)
  1553. {
  1554. return it == 32 || (it >= 48 && it <= 57) || (it >= 65 && it <= 90) ||
  1555. (it >= 97 && it <= 122);
  1556. }
  1557. static int
  1558. is_ICC_signature(png_alloc_size_t it)
  1559. {
  1560. return is_ICC_signature_char(it >> 24) /* checks all the top bits */ &&
  1561. is_ICC_signature_char((it >> 16) & 0xff) &&
  1562. is_ICC_signature_char((it >> 8) & 0xff) &&
  1563. is_ICC_signature_char(it & 0xff);
  1564. }
  1565. static int
  1566. png_icc_profile_error(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1567. png_const_charp name, png_alloc_size_t value, png_const_charp reason)
  1568. {
  1569. size_t pos;
  1570. char message[196]; /* see below for calculation */
  1571. if (colorspace != NULL)
  1572. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1573. pos = png_safecat(message, (sizeof message), 0, "profile '"); /* 9 chars */
  1574. pos = png_safecat(message, pos+79, pos, name); /* Truncate to 79 chars */
  1575. pos = png_safecat(message, (sizeof message), pos, "': "); /* +2 = 90 */
  1576. if (is_ICC_signature(value) != 0)
  1577. {
  1578. /* So 'value' is at most 4 bytes and the following cast is safe */
  1579. png_icc_tag_name(message+pos, (png_uint_32)value);
  1580. pos += 6; /* total +8; less than the else clause */
  1581. message[pos++] = ':';
  1582. message[pos++] = ' ';
  1583. }
  1584. # ifdef PNG_WARNINGS_SUPPORTED
  1585. else
  1586. {
  1587. char number[PNG_NUMBER_BUFFER_SIZE]; /* +24 = 114 */
  1588. pos = png_safecat(message, (sizeof message), pos,
  1589. png_format_number(number, number+(sizeof number),
  1590. PNG_NUMBER_FORMAT_x, value));
  1591. pos = png_safecat(message, (sizeof message), pos, "h: "); /* +2 = 116 */
  1592. }
  1593. # endif
  1594. /* The 'reason' is an arbitrary message, allow +79 maximum 195 */
  1595. pos = png_safecat(message, (sizeof message), pos, reason);
  1596. PNG_UNUSED(pos)
  1597. /* This is recoverable, but make it unconditionally an app_error on write to
  1598. * avoid writing invalid ICC profiles into PNG files (i.e., we handle them
  1599. * on read, with a warning, but on write unless the app turns off
  1600. * application errors the PNG won't be written.)
  1601. */
  1602. png_chunk_report(png_ptr, message,
  1603. (colorspace != NULL) ? PNG_CHUNK_ERROR : PNG_CHUNK_WRITE_ERROR);
  1604. return 0;
  1605. }
  1606. #endif /* sRGB || iCCP */
  1607. #ifdef PNG_sRGB_SUPPORTED
  1608. int /* PRIVATE */
  1609. png_colorspace_set_sRGB(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1610. int intent)
  1611. {
  1612. /* sRGB sets known gamma, end points and (from the chunk) intent. */
  1613. /* IMPORTANT: these are not necessarily the values found in an ICC profile
  1614. * because ICC profiles store values adapted to a D50 environment; it is
  1615. * expected that the ICC profile mediaWhitePointTag will be D50; see the
  1616. * checks and code elsewhere to understand this better.
  1617. *
  1618. * These XYZ values, which are accurate to 5dp, produce rgb to gray
  1619. * coefficients of (6968,23435,2366), which are reduced (because they add up
  1620. * to 32769 not 32768) to (6968,23434,2366). These are the values that
  1621. * libpng has traditionally used (and are the best values given the 15bit
  1622. * algorithm used by the rgb to gray code.)
  1623. */
  1624. static const png_XYZ sRGB_XYZ = /* D65 XYZ (*not* the D50 adapted values!) */
  1625. {
  1626. /* color X Y Z */
  1627. /* red */ 41239, 21264, 1933,
  1628. /* green */ 35758, 71517, 11919,
  1629. /* blue */ 18048, 7219, 95053
  1630. };
  1631. /* Do nothing if the colorspace is already invalidated. */
  1632. if ((colorspace->flags & PNG_COLORSPACE_INVALID) != 0)
  1633. return 0;
  1634. /* Check the intent, then check for existing settings. It is valid for the
  1635. * PNG file to have cHRM or gAMA chunks along with sRGB, but the values must
  1636. * be consistent with the correct values. If, however, this function is
  1637. * called below because an iCCP chunk matches sRGB then it is quite
  1638. * conceivable that an older app recorded incorrect gAMA and cHRM because of
  1639. * an incorrect calculation based on the values in the profile - this does
  1640. * *not* invalidate the profile (though it still produces an error, which can
  1641. * be ignored.)
  1642. */
  1643. if (intent < 0 || intent >= PNG_sRGB_INTENT_LAST)
  1644. return png_icc_profile_error(png_ptr, colorspace, "sRGB",
  1645. (png_alloc_size_t)intent, "invalid sRGB rendering intent");
  1646. if ((colorspace->flags & PNG_COLORSPACE_HAVE_INTENT) != 0 &&
  1647. colorspace->rendering_intent != intent)
  1648. return png_icc_profile_error(png_ptr, colorspace, "sRGB",
  1649. (png_alloc_size_t)intent, "inconsistent rendering intents");
  1650. if ((colorspace->flags & PNG_COLORSPACE_FROM_sRGB) != 0)
  1651. {
  1652. png_benign_error(png_ptr, "duplicate sRGB information ignored");
  1653. return 0;
  1654. }
  1655. /* If the standard sRGB cHRM chunk does not match the one from the PNG file
  1656. * warn but overwrite the value with the correct one.
  1657. */
  1658. if ((colorspace->flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0 &&
  1659. !png_colorspace_endpoints_match(&sRGB_xy, &colorspace->end_points_xy,
  1660. 100))
  1661. png_chunk_report(png_ptr, "cHRM chunk does not match sRGB",
  1662. PNG_CHUNK_ERROR);
  1663. /* This check is just done for the error reporting - the routine always
  1664. * returns true when the 'from' argument corresponds to sRGB (2).
  1665. */
  1666. (void)png_colorspace_check_gamma(png_ptr, colorspace, PNG_GAMMA_sRGB_INVERSE,
  1667. 2/*from sRGB*/);
  1668. /* intent: bugs in GCC force 'int' to be used as the parameter type. */
  1669. colorspace->rendering_intent = (png_uint_16)intent;
  1670. colorspace->flags |= PNG_COLORSPACE_HAVE_INTENT;
  1671. /* endpoints */
  1672. colorspace->end_points_xy = sRGB_xy;
  1673. colorspace->end_points_XYZ = sRGB_XYZ;
  1674. colorspace->flags |=
  1675. (PNG_COLORSPACE_HAVE_ENDPOINTS|PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB);
  1676. /* gamma */
  1677. colorspace->gamma = PNG_GAMMA_sRGB_INVERSE;
  1678. colorspace->flags |= PNG_COLORSPACE_HAVE_GAMMA;
  1679. /* Finally record that we have an sRGB profile */
  1680. colorspace->flags |=
  1681. (PNG_COLORSPACE_MATCHES_sRGB|PNG_COLORSPACE_FROM_sRGB);
  1682. return 1; /* set */
  1683. }
  1684. #endif /* sRGB */
  1685. #ifdef PNG_iCCP_SUPPORTED
  1686. /* Encoded value of D50 as an ICC XYZNumber. From the ICC 2010 spec the value
  1687. * is XYZ(0.9642,1.0,0.8249), which scales to:
  1688. *
  1689. * (63189.8112, 65536, 54060.6464)
  1690. */
  1691. static const png_byte D50_nCIEXYZ[12] =
  1692. { 0x00, 0x00, 0xf6, 0xd6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x2d };
  1693. static int /* bool */
  1694. icc_check_length(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1695. png_const_charp name, png_uint_32 profile_length)
  1696. {
  1697. if (profile_length < 132)
  1698. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1699. "too short");
  1700. return 1;
  1701. }
  1702. #ifdef PNG_READ_iCCP_SUPPORTED
  1703. int /* PRIVATE */
  1704. png_icc_check_length(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1705. png_const_charp name, png_uint_32 profile_length)
  1706. {
  1707. if (!icc_check_length(png_ptr, colorspace, name, profile_length))
  1708. return 0;
  1709. /* This needs to be here because the 'normal' check is in
  1710. * png_decompress_chunk, yet this happens after the attempt to
  1711. * png_malloc_base the required data. We only need this on read; on write
  1712. * the caller supplies the profile buffer so libpng doesn't allocate it. See
  1713. * the call to icc_check_length below (the write case).
  1714. */
  1715. # ifdef PNG_SET_USER_LIMITS_SUPPORTED
  1716. else if (png_ptr->user_chunk_malloc_max > 0 &&
  1717. png_ptr->user_chunk_malloc_max < profile_length)
  1718. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1719. "exceeds application limits");
  1720. # elif PNG_USER_CHUNK_MALLOC_MAX > 0
  1721. else if (PNG_USER_CHUNK_MALLOC_MAX < profile_length)
  1722. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1723. "exceeds libpng limits");
  1724. # else /* !SET_USER_LIMITS */
  1725. /* This will get compiled out on all 32-bit and better systems. */
  1726. else if (PNG_SIZE_MAX < profile_length)
  1727. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1728. "exceeds system limits");
  1729. # endif /* !SET_USER_LIMITS */
  1730. return 1;
  1731. }
  1732. #endif /* READ_iCCP */
  1733. int /* PRIVATE */
  1734. png_icc_check_header(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1735. png_const_charp name, png_uint_32 profile_length,
  1736. png_const_bytep profile/* first 132 bytes only */, int color_type)
  1737. {
  1738. png_uint_32 temp;
  1739. /* Length check; this cannot be ignored in this code because profile_length
  1740. * is used later to check the tag table, so even if the profile seems over
  1741. * long profile_length from the caller must be correct. The caller can fix
  1742. * this up on read or write by just passing in the profile header length.
  1743. */
  1744. temp = png_get_uint_32(profile);
  1745. if (temp != profile_length)
  1746. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1747. "length does not match profile");
  1748. temp = (png_uint_32) (*(profile+8));
  1749. if (temp > 3 && (profile_length & 3))
  1750. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1751. "invalid length");
  1752. temp = png_get_uint_32(profile+128); /* tag count: 12 bytes/tag */
  1753. if (temp > 357913930 || /* (2^32-4-132)/12: maximum possible tag count */
  1754. profile_length < 132+12*temp) /* truncated tag table */
  1755. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1756. "tag count too large");
  1757. /* The 'intent' must be valid or we can't store it, ICC limits the intent to
  1758. * 16 bits.
  1759. */
  1760. temp = png_get_uint_32(profile+64);
  1761. if (temp >= 0xffff) /* The ICC limit */
  1762. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1763. "invalid rendering intent");
  1764. /* This is just a warning because the profile may be valid in future
  1765. * versions.
  1766. */
  1767. if (temp >= PNG_sRGB_INTENT_LAST)
  1768. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1769. "intent outside defined range");
  1770. /* At this point the tag table can't be checked because it hasn't necessarily
  1771. * been loaded; however, various header fields can be checked. These checks
  1772. * are for values permitted by the PNG spec in an ICC profile; the PNG spec
  1773. * restricts the profiles that can be passed in an iCCP chunk (they must be
  1774. * appropriate to processing PNG data!)
  1775. */
  1776. /* Data checks (could be skipped). These checks must be independent of the
  1777. * version number; however, the version number doesn't accommodate changes in
  1778. * the header fields (just the known tags and the interpretation of the
  1779. * data.)
  1780. */
  1781. temp = png_get_uint_32(profile+36); /* signature 'ascp' */
  1782. if (temp != 0x61637370)
  1783. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1784. "invalid signature");
  1785. /* Currently the PCS illuminant/adopted white point (the computational
  1786. * white point) are required to be D50,
  1787. * however the profile contains a record of the illuminant so perhaps ICC
  1788. * expects to be able to change this in the future (despite the rationale in
  1789. * the introduction for using a fixed PCS adopted white.) Consequently the
  1790. * following is just a warning.
  1791. */
  1792. if (memcmp(profile+68, D50_nCIEXYZ, 12) != 0)
  1793. (void)png_icc_profile_error(png_ptr, NULL, name, 0/*no tag value*/,
  1794. "PCS illuminant is not D50");
  1795. /* The PNG spec requires this:
  1796. * "If the iCCP chunk is present, the image samples conform to the colour
  1797. * space represented by the embedded ICC profile as defined by the
  1798. * International Color Consortium [ICC]. The colour space of the ICC profile
  1799. * shall be an RGB colour space for colour images (PNG colour types 2, 3, and
  1800. * 6), or a greyscale colour space for greyscale images (PNG colour types 0
  1801. * and 4)."
  1802. *
  1803. * This checking code ensures the embedded profile (on either read or write)
  1804. * conforms to the specification requirements. Notice that an ICC 'gray'
  1805. * color-space profile contains the information to transform the monochrome
  1806. * data to XYZ or L*a*b (according to which PCS the profile uses) and this
  1807. * should be used in preference to the standard libpng K channel replication
  1808. * into R, G and B channels.
  1809. *
  1810. * Previously it was suggested that an RGB profile on grayscale data could be
  1811. * handled. However it it is clear that using an RGB profile in this context
  1812. * must be an error - there is no specification of what it means. Thus it is
  1813. * almost certainly more correct to ignore the profile.
  1814. */
  1815. temp = png_get_uint_32(profile+16); /* data colour space field */
  1816. switch (temp)
  1817. {
  1818. case 0x52474220: /* 'RGB ' */
  1819. if ((color_type & PNG_COLOR_MASK_COLOR) == 0)
  1820. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1821. "RGB color space not permitted on grayscale PNG");
  1822. break;
  1823. case 0x47524159: /* 'GRAY' */
  1824. if ((color_type & PNG_COLOR_MASK_COLOR) != 0)
  1825. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1826. "Gray color space not permitted on RGB PNG");
  1827. break;
  1828. default:
  1829. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1830. "invalid ICC profile color space");
  1831. }
  1832. /* It is up to the application to check that the profile class matches the
  1833. * application requirements; the spec provides no guidance, but it's pretty
  1834. * weird if the profile is not scanner ('scnr'), monitor ('mntr'), printer
  1835. * ('prtr') or 'spac' (for generic color spaces). Issue a warning in these
  1836. * cases. Issue an error for device link or abstract profiles - these don't
  1837. * contain the records necessary to transform the color-space to anything
  1838. * other than the target device (and not even that for an abstract profile).
  1839. * Profiles of these classes may not be embedded in images.
  1840. */
  1841. temp = png_get_uint_32(profile+12); /* profile/device class */
  1842. switch (temp)
  1843. {
  1844. case 0x73636e72: /* 'scnr' */
  1845. case 0x6d6e7472: /* 'mntr' */
  1846. case 0x70727472: /* 'prtr' */
  1847. case 0x73706163: /* 'spac' */
  1848. /* All supported */
  1849. break;
  1850. case 0x61627374: /* 'abst' */
  1851. /* May not be embedded in an image */
  1852. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1853. "invalid embedded Abstract ICC profile");
  1854. case 0x6c696e6b: /* 'link' */
  1855. /* DeviceLink profiles cannot be interpreted in a non-device specific
  1856. * fashion, if an app uses the AToB0Tag in the profile the results are
  1857. * undefined unless the result is sent to the intended device,
  1858. * therefore a DeviceLink profile should not be found embedded in a
  1859. * PNG.
  1860. */
  1861. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1862. "unexpected DeviceLink ICC profile class");
  1863. case 0x6e6d636c: /* 'nmcl' */
  1864. /* A NamedColor profile is also device specific, however it doesn't
  1865. * contain an AToB0 tag that is open to misinterpretation. Almost
  1866. * certainly it will fail the tests below.
  1867. */
  1868. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1869. "unexpected NamedColor ICC profile class");
  1870. break;
  1871. default:
  1872. /* To allow for future enhancements to the profile accept unrecognized
  1873. * profile classes with a warning, these then hit the test below on the
  1874. * tag content to ensure they are backward compatible with one of the
  1875. * understood profiles.
  1876. */
  1877. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1878. "unrecognized ICC profile class");
  1879. break;
  1880. }
  1881. /* For any profile other than a device link one the PCS must be encoded
  1882. * either in XYZ or Lab.
  1883. */
  1884. temp = png_get_uint_32(profile+20);
  1885. switch (temp)
  1886. {
  1887. case 0x58595a20: /* 'XYZ ' */
  1888. case 0x4c616220: /* 'Lab ' */
  1889. break;
  1890. default:
  1891. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1892. "unexpected ICC PCS encoding");
  1893. }
  1894. return 1;
  1895. }
  1896. int /* PRIVATE */
  1897. png_icc_check_tag_table(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1898. png_const_charp name, png_uint_32 profile_length,
  1899. png_const_bytep profile /* header plus whole tag table */)
  1900. {
  1901. png_uint_32 tag_count = png_get_uint_32(profile+128);
  1902. png_uint_32 itag;
  1903. png_const_bytep tag = profile+132; /* The first tag */
  1904. /* First scan all the tags in the table and add bits to the icc_info value
  1905. * (temporarily in 'tags').
  1906. */
  1907. for (itag=0; itag < tag_count; ++itag, tag += 12)
  1908. {
  1909. png_uint_32 tag_id = png_get_uint_32(tag+0);
  1910. png_uint_32 tag_start = png_get_uint_32(tag+4); /* must be aligned */
  1911. png_uint_32 tag_length = png_get_uint_32(tag+8);/* not padded */
  1912. /* The ICC specification does not exclude zero length tags, therefore the
  1913. * start might actually be anywhere if there is no data, but this would be
  1914. * a clear abuse of the intent of the standard so the start is checked for
  1915. * being in range. All defined tag types have an 8 byte header - a 4 byte
  1916. * type signature then 0.
  1917. */
  1918. /* This is a hard error; potentially it can cause read outside the
  1919. * profile.
  1920. */
  1921. if (tag_start > profile_length || tag_length > profile_length - tag_start)
  1922. return png_icc_profile_error(png_ptr, colorspace, name, tag_id,
  1923. "ICC profile tag outside profile");
  1924. if ((tag_start & 3) != 0)
  1925. {
  1926. /* CNHP730S.icc shipped with Microsoft Windows 64 violates this; it is
  1927. * only a warning here because libpng does not care about the
  1928. * alignment.
  1929. */
  1930. (void)png_icc_profile_error(png_ptr, NULL, name, tag_id,
  1931. "ICC profile tag start not a multiple of 4");
  1932. }
  1933. }
  1934. return 1; /* success, maybe with warnings */
  1935. }
  1936. #ifdef PNG_sRGB_SUPPORTED
  1937. #if PNG_sRGB_PROFILE_CHECKS >= 0
  1938. /* Information about the known ICC sRGB profiles */
  1939. static const struct
  1940. {
  1941. png_uint_32 adler, crc, length;
  1942. png_uint_32 md5[4];
  1943. png_byte have_md5;
  1944. png_byte is_broken;
  1945. png_uint_16 intent;
  1946. # define PNG_MD5(a,b,c,d) { a, b, c, d }, (a!=0)||(b!=0)||(c!=0)||(d!=0)
  1947. # define PNG_ICC_CHECKSUM(adler, crc, md5, intent, broke, date, length, fname)\
  1948. { adler, crc, length, md5, broke, intent },
  1949. } png_sRGB_checks[] =
  1950. {
  1951. /* This data comes from contrib/tools/checksum-icc run on downloads of
  1952. * all four ICC sRGB profiles from www.color.org.
  1953. */
  1954. /* adler32, crc32, MD5[4], intent, date, length, file-name */
  1955. PNG_ICC_CHECKSUM(0x0a3fd9f6, 0x3b8772b9,
  1956. PNG_MD5(0x29f83dde, 0xaff255ae, 0x7842fae4, 0xca83390d), 0, 0,
  1957. "2009/03/27 21:36:31", 3048, "sRGB_IEC61966-2-1_black_scaled.icc")
  1958. /* ICC sRGB v2 perceptual no black-compensation: */
  1959. PNG_ICC_CHECKSUM(0x4909e5e1, 0x427ebb21,
  1960. PNG_MD5(0xc95bd637, 0xe95d8a3b, 0x0df38f99, 0xc1320389), 1, 0,
  1961. "2009/03/27 21:37:45", 3052, "sRGB_IEC61966-2-1_no_black_scaling.icc")
  1962. PNG_ICC_CHECKSUM(0xfd2144a1, 0x306fd8ae,
  1963. PNG_MD5(0xfc663378, 0x37e2886b, 0xfd72e983, 0x8228f1b8), 0, 0,
  1964. "2009/08/10 17:28:01", 60988, "sRGB_v4_ICC_preference_displayclass.icc")
  1965. /* ICC sRGB v4 perceptual */
  1966. PNG_ICC_CHECKSUM(0x209c35d2, 0xbbef7812,
  1967. PNG_MD5(0x34562abf, 0x994ccd06, 0x6d2c5721, 0xd0d68c5d), 0, 0,
  1968. "2007/07/25 00:05:37", 60960, "sRGB_v4_ICC_preference.icc")
  1969. /* The following profiles have no known MD5 checksum. If there is a match
  1970. * on the (empty) MD5 the other fields are used to attempt a match and
  1971. * a warning is produced. The first two of these profiles have a 'cprt' tag
  1972. * which suggests that they were also made by Hewlett Packard.
  1973. */
  1974. PNG_ICC_CHECKSUM(0xa054d762, 0x5d5129ce,
  1975. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 1, 0,
  1976. "2004/07/21 18:57:42", 3024, "sRGB_IEC61966-2-1_noBPC.icc")
  1977. /* This is a 'mntr' (display) profile with a mediaWhitePointTag that does not
  1978. * match the D50 PCS illuminant in the header (it is in fact the D65 values,
  1979. * so the white point is recorded as the un-adapted value.) The profiles
  1980. * below only differ in one byte - the intent - and are basically the same as
  1981. * the previous profile except for the mediaWhitePointTag error and a missing
  1982. * chromaticAdaptationTag.
  1983. */
  1984. PNG_ICC_CHECKSUM(0xf784f3fb, 0x182ea552,
  1985. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 0, 1/*broken*/,
  1986. "1998/02/09 06:49:00", 3144, "HP-Microsoft sRGB v2 perceptual")
  1987. PNG_ICC_CHECKSUM(0x0398f3fc, 0xf29e526d,
  1988. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 1, 1/*broken*/,
  1989. "1998/02/09 06:49:00", 3144, "HP-Microsoft sRGB v2 media-relative")
  1990. };
  1991. static int
  1992. png_compare_ICC_profile_with_sRGB(png_const_structrp png_ptr,
  1993. png_const_bytep profile, uLong adler)
  1994. {
  1995. /* The quick check is to verify just the MD5 signature and trust the
  1996. * rest of the data. Because the profile has already been verified for
  1997. * correctness this is safe. png_colorspace_set_sRGB will check the 'intent'
  1998. * field too, so if the profile has been edited with an intent not defined
  1999. * by sRGB (but maybe defined by a later ICC specification) the read of
  2000. * the profile will fail at that point.
  2001. */
  2002. png_uint_32 length = 0;
  2003. png_uint_32 intent = 0x10000; /* invalid */
  2004. #if PNG_sRGB_PROFILE_CHECKS > 1
  2005. uLong crc = 0; /* the value for 0 length data */
  2006. #endif
  2007. unsigned int i;
  2008. #ifdef PNG_SET_OPTION_SUPPORTED
  2009. /* First see if PNG_SKIP_sRGB_CHECK_PROFILE has been set to "on" */
  2010. if (((png_ptr->options >> PNG_SKIP_sRGB_CHECK_PROFILE) & 3) ==
  2011. PNG_OPTION_ON)
  2012. return 0;
  2013. #endif
  2014. for (i=0; i < (sizeof png_sRGB_checks) / (sizeof png_sRGB_checks[0]); ++i)
  2015. {
  2016. if (png_get_uint_32(profile+84) == png_sRGB_checks[i].md5[0] &&
  2017. png_get_uint_32(profile+88) == png_sRGB_checks[i].md5[1] &&
  2018. png_get_uint_32(profile+92) == png_sRGB_checks[i].md5[2] &&
  2019. png_get_uint_32(profile+96) == png_sRGB_checks[i].md5[3])
  2020. {
  2021. /* This may be one of the old HP profiles without an MD5, in that
  2022. * case we can only use the length and Adler32 (note that these
  2023. * are not used by default if there is an MD5!)
  2024. */
  2025. # if PNG_sRGB_PROFILE_CHECKS == 0
  2026. if (png_sRGB_checks[i].have_md5 != 0)
  2027. return 1+png_sRGB_checks[i].is_broken;
  2028. # endif
  2029. /* Profile is unsigned or more checks have been configured in. */
  2030. if (length == 0)
  2031. {
  2032. length = png_get_uint_32(profile);
  2033. intent = png_get_uint_32(profile+64);
  2034. }
  2035. /* Length *and* intent must match */
  2036. if (length == (png_uint_32) png_sRGB_checks[i].length &&
  2037. intent == (png_uint_32) png_sRGB_checks[i].intent)
  2038. {
  2039. /* Now calculate the adler32 if not done already. */
  2040. if (adler == 0)
  2041. {
  2042. adler = adler32(0, NULL, 0);
  2043. adler = adler32(adler, profile, length);
  2044. }
  2045. if (adler == png_sRGB_checks[i].adler)
  2046. {
  2047. /* These basic checks suggest that the data has not been
  2048. * modified, but if the check level is more than 1 perform
  2049. * our own crc32 checksum on the data.
  2050. */
  2051. # if PNG_sRGB_PROFILE_CHECKS > 1
  2052. if (crc == 0)
  2053. {
  2054. crc = crc32(0, NULL, 0);
  2055. crc = crc32(crc, profile, length);
  2056. }
  2057. /* So this check must pass for the 'return' below to happen.
  2058. */
  2059. if (crc == png_sRGB_checks[i].crc)
  2060. # endif
  2061. {
  2062. if (png_sRGB_checks[i].is_broken != 0)
  2063. {
  2064. /* These profiles are known to have bad data that may cause
  2065. * problems if they are used, therefore attempt to
  2066. * discourage their use, skip the 'have_md5' warning below,
  2067. * which is made irrelevant by this error.
  2068. */
  2069. png_chunk_report(png_ptr, "known incorrect sRGB profile",
  2070. PNG_CHUNK_ERROR);
  2071. }
  2072. /* Warn that this being done; this isn't even an error since
  2073. * the profile is perfectly valid, but it would be nice if
  2074. * people used the up-to-date ones.
  2075. */
  2076. else if (png_sRGB_checks[i].have_md5 == 0)
  2077. {
  2078. png_chunk_report(png_ptr,
  2079. "out-of-date sRGB profile with no signature",
  2080. PNG_CHUNK_WARNING);
  2081. }
  2082. return 1+png_sRGB_checks[i].is_broken;
  2083. }
  2084. }
  2085. # if PNG_sRGB_PROFILE_CHECKS > 0
  2086. /* The signature matched, but the profile had been changed in some
  2087. * way. This probably indicates a data error or uninformed hacking.
  2088. * Fall through to "no match".
  2089. */
  2090. png_chunk_report(png_ptr,
  2091. "Not recognizing known sRGB profile that has been edited",
  2092. PNG_CHUNK_WARNING);
  2093. break;
  2094. # endif
  2095. }
  2096. }
  2097. }
  2098. return 0; /* no match */
  2099. }
  2100. void /* PRIVATE */
  2101. png_icc_set_sRGB(png_const_structrp png_ptr,
  2102. png_colorspacerp colorspace, png_const_bytep profile, uLong adler)
  2103. {
  2104. /* Is this profile one of the known ICC sRGB profiles? If it is, just set
  2105. * the sRGB information.
  2106. */
  2107. if (png_compare_ICC_profile_with_sRGB(png_ptr, profile, adler) != 0)
  2108. (void)png_colorspace_set_sRGB(png_ptr, colorspace,
  2109. (int)/*already checked*/png_get_uint_32(profile+64));
  2110. }
  2111. #endif /* PNG_sRGB_PROFILE_CHECKS >= 0 */
  2112. #endif /* sRGB */
  2113. int /* PRIVATE */
  2114. png_colorspace_set_ICC(png_const_structrp png_ptr, png_colorspacerp colorspace,
  2115. png_const_charp name, png_uint_32 profile_length, png_const_bytep profile,
  2116. int color_type)
  2117. {
  2118. if ((colorspace->flags & PNG_COLORSPACE_INVALID) != 0)
  2119. return 0;
  2120. if (icc_check_length(png_ptr, colorspace, name, profile_length) != 0 &&
  2121. png_icc_check_header(png_ptr, colorspace, name, profile_length, profile,
  2122. color_type) != 0 &&
  2123. png_icc_check_tag_table(png_ptr, colorspace, name, profile_length,
  2124. profile) != 0)
  2125. {
  2126. # if defined(PNG_sRGB_SUPPORTED) && PNG_sRGB_PROFILE_CHECKS >= 0
  2127. /* If no sRGB support, don't try storing sRGB information */
  2128. png_icc_set_sRGB(png_ptr, colorspace, profile, 0);
  2129. # endif
  2130. return 1;
  2131. }
  2132. /* Failure case */
  2133. return 0;
  2134. }
  2135. #endif /* iCCP */
  2136. #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
  2137. void /* PRIVATE */
  2138. png_colorspace_set_rgb_coefficients(png_structrp png_ptr)
  2139. {
  2140. /* Set the rgb_to_gray coefficients from the colorspace. */
  2141. if (png_ptr->rgb_to_gray_coefficients_set == 0 &&
  2142. (png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
  2143. {
  2144. /* png_set_background has not been called, get the coefficients from the Y
  2145. * values of the colorspace colorants.
  2146. */
  2147. png_fixed_point r = png_ptr->colorspace.end_points_XYZ.red_Y;
  2148. png_fixed_point g = png_ptr->colorspace.end_points_XYZ.green_Y;
  2149. png_fixed_point b = png_ptr->colorspace.end_points_XYZ.blue_Y;
  2150. png_fixed_point total = r+g+b;
  2151. if (total > 0 &&
  2152. r >= 0 && png_muldiv(&r, r, 32768, total) && r >= 0 && r <= 32768 &&
  2153. g >= 0 && png_muldiv(&g, g, 32768, total) && g >= 0 && g <= 32768 &&
  2154. b >= 0 && png_muldiv(&b, b, 32768, total) && b >= 0 && b <= 32768 &&
  2155. r+g+b <= 32769)
  2156. {
  2157. /* We allow 0 coefficients here. r+g+b may be 32769 if two or
  2158. * all of the coefficients were rounded up. Handle this by
  2159. * reducing the *largest* coefficient by 1; this matches the
  2160. * approach used for the default coefficients in pngrtran.c
  2161. */
  2162. int add = 0;
  2163. if (r+g+b > 32768)
  2164. add = -1;
  2165. else if (r+g+b < 32768)
  2166. add = 1;
  2167. if (add != 0)
  2168. {
  2169. if (g >= r && g >= b)
  2170. g += add;
  2171. else if (r >= g && r >= b)
  2172. r += add;
  2173. else
  2174. b += add;
  2175. }
  2176. /* Check for an internal error. */
  2177. if (r+g+b != 32768)
  2178. png_error(png_ptr,
  2179. "internal error handling cHRM coefficients");
  2180. else
  2181. {
  2182. png_ptr->rgb_to_gray_red_coeff = (png_uint_16)r;
  2183. png_ptr->rgb_to_gray_green_coeff = (png_uint_16)g;
  2184. }
  2185. }
  2186. /* This is a png_error at present even though it could be ignored -
  2187. * it should never happen, but it is important that if it does, the
  2188. * bug is fixed.
  2189. */
  2190. else
  2191. png_error(png_ptr, "internal error handling cHRM->XYZ");
  2192. }
  2193. }
  2194. #endif /* READ_RGB_TO_GRAY */
  2195. #endif /* COLORSPACE */
  2196. void /* PRIVATE */
  2197. png_check_IHDR(png_const_structrp png_ptr,
  2198. png_uint_32 width, png_uint_32 height, int bit_depth,
  2199. int color_type, int interlace_type, int compression_type,
  2200. int filter_type)
  2201. {
  2202. int error = 0;
  2203. /* Check for width and height valid values */
  2204. if (width == 0)
  2205. {
  2206. png_warning(png_ptr, "Image width is zero in IHDR");
  2207. error = 1;
  2208. }
  2209. if (width > PNG_UINT_31_MAX)
  2210. {
  2211. png_warning(png_ptr, "Invalid image width in IHDR");
  2212. error = 1;
  2213. }
  2214. /* The bit mask on the first line below must be at least as big as a
  2215. * png_uint_32. "~7U" is not adequate on 16-bit systems because it will
  2216. * be an unsigned 16-bit value. Casting to (png_alloc_size_t) makes the
  2217. * type of the result at least as bit (in bits) as the RHS of the > operator
  2218. * which also avoids a common warning on 64-bit systems that the comparison
  2219. * of (png_uint_32) against the constant value on the RHS will always be
  2220. * false.
  2221. */
  2222. if (((width + 7) & ~(png_alloc_size_t)7) >
  2223. (((PNG_SIZE_MAX
  2224. - 48 /* big_row_buf hack */
  2225. - 1) /* filter byte */
  2226. / 8) /* 8-byte RGBA pixels */
  2227. - 1)) /* extra max_pixel_depth pad */
  2228. {
  2229. /* The size of the row must be within the limits of this architecture.
  2230. * Because the read code can perform arbitrary transformations the
  2231. * maximum size is checked here. Because the code in png_read_start_row
  2232. * adds extra space "for safety's sake" in several places a conservative
  2233. * limit is used here.
  2234. *
  2235. * NOTE: it would be far better to check the size that is actually used,
  2236. * but the effect in the real world is minor and the changes are more
  2237. * extensive, therefore much more dangerous and much more difficult to
  2238. * write in a way that avoids compiler warnings.
  2239. */
  2240. png_warning(png_ptr, "Image width is too large for this architecture");
  2241. error = 1;
  2242. }
  2243. #ifdef PNG_SET_USER_LIMITS_SUPPORTED
  2244. if (width > png_ptr->user_width_max)
  2245. #else
  2246. if (width > PNG_USER_WIDTH_MAX)
  2247. #endif
  2248. {
  2249. png_warning(png_ptr, "Image width exceeds user limit in IHDR");
  2250. error = 1;
  2251. }
  2252. if (height == 0)
  2253. {
  2254. png_warning(png_ptr, "Image height is zero in IHDR");
  2255. error = 1;
  2256. }
  2257. if (height > PNG_UINT_31_MAX)
  2258. {
  2259. png_warning(png_ptr, "Invalid image height in IHDR");
  2260. error = 1;
  2261. }
  2262. #ifdef PNG_SET_USER_LIMITS_SUPPORTED
  2263. if (height > png_ptr->user_height_max)
  2264. #else
  2265. if (height > PNG_USER_HEIGHT_MAX)
  2266. #endif
  2267. {
  2268. png_warning(png_ptr, "Image height exceeds user limit in IHDR");
  2269. error = 1;
  2270. }
  2271. /* Check other values */
  2272. if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&
  2273. bit_depth != 8 && bit_depth != 16)
  2274. {
  2275. png_warning(png_ptr, "Invalid bit depth in IHDR");
  2276. error = 1;
  2277. }
  2278. if (color_type < 0 || color_type == 1 ||
  2279. color_type == 5 || color_type > 6)
  2280. {
  2281. png_warning(png_ptr, "Invalid color type in IHDR");
  2282. error = 1;
  2283. }
  2284. if (((color_type == PNG_COLOR_TYPE_PALETTE) && bit_depth > 8) ||
  2285. ((color_type == PNG_COLOR_TYPE_RGB ||
  2286. color_type == PNG_COLOR_TYPE_GRAY_ALPHA ||
  2287. color_type == PNG_COLOR_TYPE_RGB_ALPHA) && bit_depth < 8))
  2288. {
  2289. png_warning(png_ptr, "Invalid color type/bit depth combination in IHDR");
  2290. error = 1;
  2291. }
  2292. if (interlace_type >= PNG_INTERLACE_LAST)
  2293. {
  2294. png_warning(png_ptr, "Unknown interlace method in IHDR");
  2295. error = 1;
  2296. }
  2297. if (compression_type != PNG_COMPRESSION_TYPE_BASE)
  2298. {
  2299. png_warning(png_ptr, "Unknown compression method in IHDR");
  2300. error = 1;
  2301. }
  2302. #ifdef PNG_MNG_FEATURES_SUPPORTED
  2303. /* Accept filter_method 64 (intrapixel differencing) only if
  2304. * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
  2305. * 2. Libpng did not read a PNG signature (this filter_method is only
  2306. * used in PNG datastreams that are embedded in MNG datastreams) and
  2307. * 3. The application called png_permit_mng_features with a mask that
  2308. * included PNG_FLAG_MNG_FILTER_64 and
  2309. * 4. The filter_method is 64 and
  2310. * 5. The color_type is RGB or RGBA
  2311. */
  2312. if ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) != 0 &&
  2313. png_ptr->mng_features_permitted != 0)
  2314. png_warning(png_ptr, "MNG features are not allowed in a PNG datastream");
  2315. if (filter_type != PNG_FILTER_TYPE_BASE)
  2316. {
  2317. if (!((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) != 0 &&
  2318. (filter_type == PNG_INTRAPIXEL_DIFFERENCING) &&
  2319. ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) == 0) &&
  2320. (color_type == PNG_COLOR_TYPE_RGB ||
  2321. color_type == PNG_COLOR_TYPE_RGB_ALPHA)))
  2322. {
  2323. png_warning(png_ptr, "Unknown filter method in IHDR");
  2324. error = 1;
  2325. }
  2326. if ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) != 0)
  2327. {
  2328. png_warning(png_ptr, "Invalid filter method in IHDR");
  2329. error = 1;
  2330. }
  2331. }
  2332. #else
  2333. if (filter_type != PNG_FILTER_TYPE_BASE)
  2334. {
  2335. png_warning(png_ptr, "Unknown filter method in IHDR");
  2336. error = 1;
  2337. }
  2338. #endif
  2339. if (error == 1)
  2340. png_error(png_ptr, "Invalid IHDR data");
  2341. }
  2342. #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)
  2343. /* ASCII to fp functions */
  2344. /* Check an ASCII formatted floating point value, see the more detailed
  2345. * comments in pngpriv.h
  2346. */
  2347. /* The following is used internally to preserve the sticky flags */
  2348. #define png_fp_add(state, flags) ((state) |= (flags))
  2349. #define png_fp_set(state, value) ((state) = (value) | ((state) & PNG_FP_STICKY))
  2350. int /* PRIVATE */
  2351. png_check_fp_number(png_const_charp string, size_t size, int *statep,
  2352. size_t *whereami)
  2353. {
  2354. int state = *statep;
  2355. size_t i = *whereami;
  2356. while (i < size)
  2357. {
  2358. int type;
  2359. /* First find the type of the next character */
  2360. switch (string[i])
  2361. {
  2362. case 43: type = PNG_FP_SAW_SIGN; break;
  2363. case 45: type = PNG_FP_SAW_SIGN + PNG_FP_NEGATIVE; break;
  2364. case 46: type = PNG_FP_SAW_DOT; break;
  2365. case 48: type = PNG_FP_SAW_DIGIT; break;
  2366. case 49: case 50: case 51: case 52:
  2367. case 53: case 54: case 55: case 56:
  2368. case 57: type = PNG_FP_SAW_DIGIT + PNG_FP_NONZERO; break;
  2369. case 69:
  2370. case 101: type = PNG_FP_SAW_E; break;
  2371. default: goto PNG_FP_End;
  2372. }
  2373. /* Now deal with this type according to the current
  2374. * state, the type is arranged to not overlap the
  2375. * bits of the PNG_FP_STATE.
  2376. */
  2377. switch ((state & PNG_FP_STATE) + (type & PNG_FP_SAW_ANY))
  2378. {
  2379. case PNG_FP_INTEGER + PNG_FP_SAW_SIGN:
  2380. if ((state & PNG_FP_SAW_ANY) != 0)
  2381. goto PNG_FP_End; /* not a part of the number */
  2382. png_fp_add(state, type);
  2383. break;
  2384. case PNG_FP_INTEGER + PNG_FP_SAW_DOT:
  2385. /* Ok as trailer, ok as lead of fraction. */
  2386. if ((state & PNG_FP_SAW_DOT) != 0) /* two dots */
  2387. goto PNG_FP_End;
  2388. else if ((state & PNG_FP_SAW_DIGIT) != 0) /* trailing dot? */
  2389. png_fp_add(state, type);
  2390. else
  2391. png_fp_set(state, PNG_FP_FRACTION | type);
  2392. break;
  2393. case PNG_FP_INTEGER + PNG_FP_SAW_DIGIT:
  2394. if ((state & PNG_FP_SAW_DOT) != 0) /* delayed fraction */
  2395. png_fp_set(state, PNG_FP_FRACTION | PNG_FP_SAW_DOT);
  2396. png_fp_add(state, type | PNG_FP_WAS_VALID);
  2397. break;
  2398. case PNG_FP_INTEGER + PNG_FP_SAW_E:
  2399. if ((state & PNG_FP_SAW_DIGIT) == 0)
  2400. goto PNG_FP_End;
  2401. png_fp_set(state, PNG_FP_EXPONENT);
  2402. break;
  2403. /* case PNG_FP_FRACTION + PNG_FP_SAW_SIGN:
  2404. goto PNG_FP_End; ** no sign in fraction */
  2405. /* case PNG_FP_FRACTION + PNG_FP_SAW_DOT:
  2406. goto PNG_FP_End; ** Because SAW_DOT is always set */
  2407. case PNG_FP_FRACTION + PNG_FP_SAW_DIGIT:
  2408. png_fp_add(state, type | PNG_FP_WAS_VALID);
  2409. break;
  2410. case PNG_FP_FRACTION + PNG_FP_SAW_E:
  2411. /* This is correct because the trailing '.' on an
  2412. * integer is handled above - so we can only get here
  2413. * with the sequence ".E" (with no preceding digits).
  2414. */
  2415. if ((state & PNG_FP_SAW_DIGIT) == 0)
  2416. goto PNG_FP_End;
  2417. png_fp_set(state, PNG_FP_EXPONENT);
  2418. break;
  2419. case PNG_FP_EXPONENT + PNG_FP_SAW_SIGN:
  2420. if ((state & PNG_FP_SAW_ANY) != 0)
  2421. goto PNG_FP_End; /* not a part of the number */
  2422. png_fp_add(state, PNG_FP_SAW_SIGN);
  2423. break;
  2424. /* case PNG_FP_EXPONENT + PNG_FP_SAW_DOT:
  2425. goto PNG_FP_End; */
  2426. case PNG_FP_EXPONENT + PNG_FP_SAW_DIGIT:
  2427. png_fp_add(state, PNG_FP_SAW_DIGIT | PNG_FP_WAS_VALID);
  2428. break;
  2429. /* case PNG_FP_EXPONEXT + PNG_FP_SAW_E:
  2430. goto PNG_FP_End; */
  2431. default: goto PNG_FP_End; /* I.e. break 2 */
  2432. }
  2433. /* The character seems ok, continue. */
  2434. ++i;
  2435. }
  2436. PNG_FP_End:
  2437. /* Here at the end, update the state and return the correct
  2438. * return code.
  2439. */
  2440. *statep = state;
  2441. *whereami = i;
  2442. return (state & PNG_FP_SAW_DIGIT) != 0;
  2443. }
  2444. /* The same but for a complete string. */
  2445. int
  2446. png_check_fp_string(png_const_charp string, size_t size)
  2447. {
  2448. int state=0;
  2449. size_t char_index=0;
  2450. if (png_check_fp_number(string, size, &state, &char_index) != 0 &&
  2451. (char_index == size || string[char_index] == 0))
  2452. return state /* must be non-zero - see above */;
  2453. return 0; /* i.e. fail */
  2454. }
  2455. #endif /* pCAL || sCAL */
  2456. #ifdef PNG_sCAL_SUPPORTED
  2457. # ifdef PNG_FLOATING_POINT_SUPPORTED
  2458. /* Utility used below - a simple accurate power of ten from an integral
  2459. * exponent.
  2460. */
  2461. static double
  2462. png_pow10(int power)
  2463. {
  2464. int recip = 0;
  2465. double d = 1;
  2466. /* Handle negative exponent with a reciprocal at the end because
  2467. * 10 is exact whereas .1 is inexact in base 2
  2468. */
  2469. if (power < 0)
  2470. {
  2471. if (power < DBL_MIN_10_EXP) return 0;
  2472. recip = 1; power = -power;
  2473. }
  2474. if (power > 0)
  2475. {
  2476. /* Decompose power bitwise. */
  2477. double mult = 10;
  2478. do
  2479. {
  2480. if (power & 1) d *= mult;
  2481. mult *= mult;
  2482. power >>= 1;
  2483. }
  2484. while (power > 0);
  2485. if (recip != 0) d = 1/d;
  2486. }
  2487. /* else power is 0 and d is 1 */
  2488. return d;
  2489. }
  2490. /* Function to format a floating point value in ASCII with a given
  2491. * precision.
  2492. */
  2493. void /* PRIVATE */
  2494. png_ascii_from_fp(png_const_structrp png_ptr, png_charp ascii, size_t size,
  2495. double fp, unsigned int precision)
  2496. {
  2497. /* We use standard functions from math.h, but not printf because
  2498. * that would require stdio. The caller must supply a buffer of
  2499. * sufficient size or we will png_error. The tests on size and
  2500. * the space in ascii[] consumed are indicated below.
  2501. */
  2502. if (precision < 1)
  2503. precision = DBL_DIG;
  2504. /* Enforce the limit of the implementation precision too. */
  2505. if (precision > DBL_DIG+1)
  2506. precision = DBL_DIG+1;
  2507. /* Basic sanity checks */
  2508. if (size >= precision+5) /* See the requirements below. */
  2509. {
  2510. if (fp < 0)
  2511. {
  2512. fp = -fp;
  2513. *ascii++ = 45; /* '-' PLUS 1 TOTAL 1 */
  2514. --size;
  2515. }
  2516. if (fp >= DBL_MIN && fp <= DBL_MAX)
  2517. {
  2518. int exp_b10; /* A base 10 exponent */
  2519. double base; /* 10^exp_b10 */
  2520. /* First extract a base 10 exponent of the number,
  2521. * the calculation below rounds down when converting
  2522. * from base 2 to base 10 (multiply by log10(2) -
  2523. * 0.3010, but 77/256 is 0.3008, so exp_b10 needs to
  2524. * be increased. Note that the arithmetic shift
  2525. * performs a floor() unlike C arithmetic - using a
  2526. * C multiply would break the following for negative
  2527. * exponents.
  2528. */
  2529. (void)frexp(fp, &exp_b10); /* exponent to base 2 */
  2530. exp_b10 = (exp_b10 * 77) >> 8; /* <= exponent to base 10 */
  2531. /* Avoid underflow here. */
  2532. base = png_pow10(exp_b10); /* May underflow */
  2533. while (base < DBL_MIN || base < fp)
  2534. {
  2535. /* And this may overflow. */
  2536. double test = png_pow10(exp_b10+1);
  2537. if (test <= DBL_MAX)
  2538. {
  2539. ++exp_b10; base = test;
  2540. }
  2541. else
  2542. break;
  2543. }
  2544. /* Normalize fp and correct exp_b10, after this fp is in the
  2545. * range [.1,1) and exp_b10 is both the exponent and the digit
  2546. * *before* which the decimal point should be inserted
  2547. * (starting with 0 for the first digit). Note that this
  2548. * works even if 10^exp_b10 is out of range because of the
  2549. * test on DBL_MAX above.
  2550. */
  2551. fp /= base;
  2552. while (fp >= 1)
  2553. {
  2554. fp /= 10; ++exp_b10;
  2555. }
  2556. /* Because of the code above fp may, at this point, be
  2557. * less than .1, this is ok because the code below can
  2558. * handle the leading zeros this generates, so no attempt
  2559. * is made to correct that here.
  2560. */
  2561. {
  2562. unsigned int czero, clead, cdigits;
  2563. char exponent[10];
  2564. /* Allow up to two leading zeros - this will not lengthen
  2565. * the number compared to using E-n.
  2566. */
  2567. if (exp_b10 < 0 && exp_b10 > -3) /* PLUS 3 TOTAL 4 */
  2568. {
  2569. czero = 0U-exp_b10; /* PLUS 2 digits: TOTAL 3 */
  2570. exp_b10 = 0; /* Dot added below before first output. */
  2571. }
  2572. else
  2573. czero = 0; /* No zeros to add */
  2574. /* Generate the digit list, stripping trailing zeros and
  2575. * inserting a '.' before a digit if the exponent is 0.
  2576. */
  2577. clead = czero; /* Count of leading zeros */
  2578. cdigits = 0; /* Count of digits in list. */
  2579. do
  2580. {
  2581. double d;
  2582. fp *= 10;
  2583. /* Use modf here, not floor and subtract, so that
  2584. * the separation is done in one step. At the end
  2585. * of the loop don't break the number into parts so
  2586. * that the final digit is rounded.
  2587. */
  2588. if (cdigits+czero+1 < precision+clead)
  2589. fp = modf(fp, &d);
  2590. else
  2591. {
  2592. d = floor(fp + .5);
  2593. if (d > 9)
  2594. {
  2595. /* Rounding up to 10, handle that here. */
  2596. if (czero > 0)
  2597. {
  2598. --czero; d = 1;
  2599. if (cdigits == 0) --clead;
  2600. }
  2601. else
  2602. {
  2603. while (cdigits > 0 && d > 9)
  2604. {
  2605. int ch = *--ascii;
  2606. if (exp_b10 != (-1))
  2607. ++exp_b10;
  2608. else if (ch == 46)
  2609. {
  2610. ch = *--ascii; ++size;
  2611. /* Advance exp_b10 to '1', so that the
  2612. * decimal point happens after the
  2613. * previous digit.
  2614. */
  2615. exp_b10 = 1;
  2616. }
  2617. --cdigits;
  2618. d = ch - 47; /* I.e. 1+(ch-48) */
  2619. }
  2620. /* Did we reach the beginning? If so adjust the
  2621. * exponent but take into account the leading
  2622. * decimal point.
  2623. */
  2624. if (d > 9) /* cdigits == 0 */
  2625. {
  2626. if (exp_b10 == (-1))
  2627. {
  2628. /* Leading decimal point (plus zeros?), if
  2629. * we lose the decimal point here it must
  2630. * be reentered below.
  2631. */
  2632. int ch = *--ascii;
  2633. if (ch == 46)
  2634. {
  2635. ++size; exp_b10 = 1;
  2636. }
  2637. /* Else lost a leading zero, so 'exp_b10' is
  2638. * still ok at (-1)
  2639. */
  2640. }
  2641. else
  2642. ++exp_b10;
  2643. /* In all cases we output a '1' */
  2644. d = 1;
  2645. }
  2646. }
  2647. }
  2648. fp = 0; /* Guarantees termination below. */
  2649. }
  2650. if (d == 0)
  2651. {
  2652. ++czero;
  2653. if (cdigits == 0) ++clead;
  2654. }
  2655. else
  2656. {
  2657. /* Included embedded zeros in the digit count. */
  2658. cdigits += czero - clead;
  2659. clead = 0;
  2660. while (czero > 0)
  2661. {
  2662. /* exp_b10 == (-1) means we just output the decimal
  2663. * place - after the DP don't adjust 'exp_b10' any
  2664. * more!
  2665. */
  2666. if (exp_b10 != (-1))
  2667. {
  2668. if (exp_b10 == 0)
  2669. {
  2670. *ascii++ = 46; --size;
  2671. }
  2672. /* PLUS 1: TOTAL 4 */
  2673. --exp_b10;
  2674. }
  2675. *ascii++ = 48; --czero;
  2676. }
  2677. if (exp_b10 != (-1))
  2678. {
  2679. if (exp_b10 == 0)
  2680. {
  2681. *ascii++ = 46; --size; /* counted above */
  2682. }
  2683. --exp_b10;
  2684. }
  2685. *ascii++ = (char)(48 + (int)d); ++cdigits;
  2686. }
  2687. }
  2688. while (cdigits+czero < precision+clead && fp > DBL_MIN);
  2689. /* The total output count (max) is now 4+precision */
  2690. /* Check for an exponent, if we don't need one we are
  2691. * done and just need to terminate the string. At this
  2692. * point, exp_b10==(-1) is effectively a flag: it got
  2693. * to '-1' because of the decrement, after outputting
  2694. * the decimal point above. (The exponent required is
  2695. * *not* -1.)
  2696. */
  2697. if (exp_b10 >= (-1) && exp_b10 <= 2)
  2698. {
  2699. /* The following only happens if we didn't output the
  2700. * leading zeros above for negative exponent, so this
  2701. * doesn't add to the digit requirement. Note that the
  2702. * two zeros here can only be output if the two leading
  2703. * zeros were *not* output, so this doesn't increase
  2704. * the output count.
  2705. */
  2706. while (exp_b10-- > 0) *ascii++ = 48;
  2707. *ascii = 0;
  2708. /* Total buffer requirement (including the '\0') is
  2709. * 5+precision - see check at the start.
  2710. */
  2711. return;
  2712. }
  2713. /* Here if an exponent is required, adjust size for
  2714. * the digits we output but did not count. The total
  2715. * digit output here so far is at most 1+precision - no
  2716. * decimal point and no leading or trailing zeros have
  2717. * been output.
  2718. */
  2719. size -= cdigits;
  2720. *ascii++ = 69; --size; /* 'E': PLUS 1 TOTAL 2+precision */
  2721. /* The following use of an unsigned temporary avoids ambiguities in
  2722. * the signed arithmetic on exp_b10 and permits GCC at least to do
  2723. * better optimization.
  2724. */
  2725. {
  2726. unsigned int uexp_b10;
  2727. if (exp_b10 < 0)
  2728. {
  2729. *ascii++ = 45; --size; /* '-': PLUS 1 TOTAL 3+precision */
  2730. uexp_b10 = 0U-exp_b10;
  2731. }
  2732. else
  2733. uexp_b10 = 0U+exp_b10;
  2734. cdigits = 0;
  2735. while (uexp_b10 > 0)
  2736. {
  2737. exponent[cdigits++] = (char)(48 + uexp_b10 % 10);
  2738. uexp_b10 /= 10;
  2739. }
  2740. }
  2741. /* Need another size check here for the exponent digits, so
  2742. * this need not be considered above.
  2743. */
  2744. if (size > cdigits)
  2745. {
  2746. while (cdigits > 0) *ascii++ = exponent[--cdigits];
  2747. *ascii = 0;
  2748. return;
  2749. }
  2750. }
  2751. }
  2752. else if (!(fp >= DBL_MIN))
  2753. {
  2754. *ascii++ = 48; /* '0' */
  2755. *ascii = 0;
  2756. return;
  2757. }
  2758. else
  2759. {
  2760. *ascii++ = 105; /* 'i' */
  2761. *ascii++ = 110; /* 'n' */
  2762. *ascii++ = 102; /* 'f' */
  2763. *ascii = 0;
  2764. return;
  2765. }
  2766. }
  2767. /* Here on buffer too small. */
  2768. png_error(png_ptr, "ASCII conversion buffer too small");
  2769. }
  2770. # endif /* FLOATING_POINT */
  2771. # ifdef PNG_FIXED_POINT_SUPPORTED
  2772. /* Function to format a fixed point value in ASCII.
  2773. */
  2774. void /* PRIVATE */
  2775. png_ascii_from_fixed(png_const_structrp png_ptr, png_charp ascii,
  2776. size_t size, png_fixed_point fp)
  2777. {
  2778. /* Require space for 10 decimal digits, a decimal point, a minus sign and a
  2779. * trailing \0, 13 characters:
  2780. */
  2781. if (size > 12)
  2782. {
  2783. png_uint_32 num;
  2784. /* Avoid overflow here on the minimum integer. */
  2785. if (fp < 0)
  2786. {
  2787. *ascii++ = 45; num = (png_uint_32)(-fp);
  2788. }
  2789. else
  2790. num = (png_uint_32)fp;
  2791. if (num <= 0x80000000) /* else overflowed */
  2792. {
  2793. unsigned int ndigits = 0, first = 16 /* flag value */;
  2794. char digits[10] = {0};
  2795. while (num)
  2796. {
  2797. /* Split the low digit off num: */
  2798. unsigned int tmp = num/10;
  2799. num -= tmp*10;
  2800. digits[ndigits++] = (char)(48 + num);
  2801. /* Record the first non-zero digit, note that this is a number
  2802. * starting at 1, it's not actually the array index.
  2803. */
  2804. if (first == 16 && num > 0)
  2805. first = ndigits;
  2806. num = tmp;
  2807. }
  2808. if (ndigits > 0)
  2809. {
  2810. while (ndigits > 5) *ascii++ = digits[--ndigits];
  2811. /* The remaining digits are fractional digits, ndigits is '5' or
  2812. * smaller at this point. It is certainly not zero. Check for a
  2813. * non-zero fractional digit:
  2814. */
  2815. if (first <= 5)
  2816. {
  2817. unsigned int i;
  2818. *ascii++ = 46; /* decimal point */
  2819. /* ndigits may be <5 for small numbers, output leading zeros
  2820. * then ndigits digits to first:
  2821. */
  2822. i = 5;
  2823. while (ndigits < i)
  2824. {
  2825. *ascii++ = 48; --i;
  2826. }
  2827. while (ndigits >= first) *ascii++ = digits[--ndigits];
  2828. /* Don't output the trailing zeros! */
  2829. }
  2830. }
  2831. else
  2832. *ascii++ = 48;
  2833. /* And null terminate the string: */
  2834. *ascii = 0;
  2835. return;
  2836. }
  2837. }
  2838. /* Here on buffer too small. */
  2839. png_error(png_ptr, "ASCII conversion buffer too small");
  2840. }
  2841. # endif /* FIXED_POINT */
  2842. #endif /* SCAL */
  2843. #if defined(PNG_FLOATING_POINT_SUPPORTED) && \
  2844. !defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \
  2845. (defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \
  2846. defined(PNG_sCAL_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  2847. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \
  2848. (defined(PNG_sCAL_SUPPORTED) && \
  2849. defined(PNG_FLOATING_ARITHMETIC_SUPPORTED))
  2850. png_fixed_point
  2851. png_fixed(png_const_structrp png_ptr, double fp, png_const_charp text)
  2852. {
  2853. double r = floor(100000 * fp + .5);
  2854. if (r > 2147483647. || r < -2147483648.)
  2855. png_fixed_error(png_ptr, text);
  2856. # ifndef PNG_ERROR_TEXT_SUPPORTED
  2857. PNG_UNUSED(text)
  2858. # endif
  2859. return (png_fixed_point)r;
  2860. }
  2861. #endif
  2862. #if defined(PNG_GAMMA_SUPPORTED) || defined(PNG_COLORSPACE_SUPPORTED) ||\
  2863. defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED)
  2864. /* muldiv functions */
  2865. /* This API takes signed arguments and rounds the result to the nearest
  2866. * integer (or, for a fixed point number - the standard argument - to
  2867. * the nearest .00001). Overflow and divide by zero are signalled in
  2868. * the result, a boolean - true on success, false on overflow.
  2869. */
  2870. int
  2871. png_muldiv(png_fixed_point_p res, png_fixed_point a, png_int_32 times,
  2872. png_int_32 divisor)
  2873. {
  2874. /* Return a * times / divisor, rounded. */
  2875. if (divisor != 0)
  2876. {
  2877. if (a == 0 || times == 0)
  2878. {
  2879. *res = 0;
  2880. return 1;
  2881. }
  2882. else
  2883. {
  2884. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2885. double r = a;
  2886. r *= times;
  2887. r /= divisor;
  2888. r = floor(r+.5);
  2889. /* A png_fixed_point is a 32-bit integer. */
  2890. if (r <= 2147483647. && r >= -2147483648.)
  2891. {
  2892. *res = (png_fixed_point)r;
  2893. return 1;
  2894. }
  2895. #else
  2896. int negative = 0;
  2897. png_uint_32 A, T, D;
  2898. png_uint_32 s16, s32, s00;
  2899. if (a < 0)
  2900. negative = 1, A = -a;
  2901. else
  2902. A = a;
  2903. if (times < 0)
  2904. negative = !negative, T = -times;
  2905. else
  2906. T = times;
  2907. if (divisor < 0)
  2908. negative = !negative, D = -divisor;
  2909. else
  2910. D = divisor;
  2911. /* Following can't overflow because the arguments only
  2912. * have 31 bits each, however the result may be 32 bits.
  2913. */
  2914. s16 = (A >> 16) * (T & 0xffff) +
  2915. (A & 0xffff) * (T >> 16);
  2916. /* Can't overflow because the a*times bit is only 30
  2917. * bits at most.
  2918. */
  2919. s32 = (A >> 16) * (T >> 16) + (s16 >> 16);
  2920. s00 = (A & 0xffff) * (T & 0xffff);
  2921. s16 = (s16 & 0xffff) << 16;
  2922. s00 += s16;
  2923. if (s00 < s16)
  2924. ++s32; /* carry */
  2925. if (s32 < D) /* else overflow */
  2926. {
  2927. /* s32.s00 is now the 64-bit product, do a standard
  2928. * division, we know that s32 < D, so the maximum
  2929. * required shift is 31.
  2930. */
  2931. int bitshift = 32;
  2932. png_fixed_point result = 0; /* NOTE: signed */
  2933. while (--bitshift >= 0)
  2934. {
  2935. png_uint_32 d32, d00;
  2936. if (bitshift > 0)
  2937. d32 = D >> (32-bitshift), d00 = D << bitshift;
  2938. else
  2939. d32 = 0, d00 = D;
  2940. if (s32 > d32)
  2941. {
  2942. if (s00 < d00) --s32; /* carry */
  2943. s32 -= d32, s00 -= d00, result += 1<<bitshift;
  2944. }
  2945. else
  2946. if (s32 == d32 && s00 >= d00)
  2947. s32 = 0, s00 -= d00, result += 1<<bitshift;
  2948. }
  2949. /* Handle the rounding. */
  2950. if (s00 >= (D >> 1))
  2951. ++result;
  2952. if (negative != 0)
  2953. result = -result;
  2954. /* Check for overflow. */
  2955. if ((negative != 0 && result <= 0) ||
  2956. (negative == 0 && result >= 0))
  2957. {
  2958. *res = result;
  2959. return 1;
  2960. }
  2961. }
  2962. #endif
  2963. }
  2964. }
  2965. return 0;
  2966. }
  2967. #endif /* READ_GAMMA || INCH_CONVERSIONS */
  2968. #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED)
  2969. /* The following is for when the caller doesn't much care about the
  2970. * result.
  2971. */
  2972. png_fixed_point
  2973. png_muldiv_warn(png_const_structrp png_ptr, png_fixed_point a, png_int_32 times,
  2974. png_int_32 divisor)
  2975. {
  2976. png_fixed_point result;
  2977. if (png_muldiv(&result, a, times, divisor) != 0)
  2978. return result;
  2979. png_warning(png_ptr, "fixed point overflow ignored");
  2980. return 0;
  2981. }
  2982. #endif
  2983. #ifdef PNG_GAMMA_SUPPORTED /* more fixed point functions for gamma */
  2984. /* Calculate a reciprocal, return 0 on div-by-zero or overflow. */
  2985. png_fixed_point
  2986. png_reciprocal(png_fixed_point a)
  2987. {
  2988. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2989. double r = floor(1E10/a+.5);
  2990. if (r <= 2147483647. && r >= -2147483648.)
  2991. return (png_fixed_point)r;
  2992. #else
  2993. png_fixed_point res;
  2994. if (png_muldiv(&res, 100000, 100000, a) != 0)
  2995. return res;
  2996. #endif
  2997. return 0; /* error/overflow */
  2998. }
  2999. /* This is the shared test on whether a gamma value is 'significant' - whether
  3000. * it is worth doing gamma correction.
  3001. */
  3002. int /* PRIVATE */
  3003. png_gamma_significant(png_fixed_point gamma_val)
  3004. {
  3005. return gamma_val < PNG_FP_1 - PNG_GAMMA_THRESHOLD_FIXED ||
  3006. gamma_val > PNG_FP_1 + PNG_GAMMA_THRESHOLD_FIXED;
  3007. }
  3008. #endif
  3009. #ifdef PNG_READ_GAMMA_SUPPORTED
  3010. #ifdef PNG_16BIT_SUPPORTED
  3011. /* A local convenience routine. */
  3012. static png_fixed_point
  3013. png_product2(png_fixed_point a, png_fixed_point b)
  3014. {
  3015. /* The required result is 1/a * 1/b; the following preserves accuracy. */
  3016. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3017. double r = a * 1E-5;
  3018. r *= b;
  3019. r = floor(r+.5);
  3020. if (r <= 2147483647. && r >= -2147483648.)
  3021. return (png_fixed_point)r;
  3022. #else
  3023. png_fixed_point res;
  3024. if (png_muldiv(&res, a, b, 100000) != 0)
  3025. return res;
  3026. #endif
  3027. return 0; /* overflow */
  3028. }
  3029. #endif /* 16BIT */
  3030. /* The inverse of the above. */
  3031. png_fixed_point
  3032. png_reciprocal2(png_fixed_point a, png_fixed_point b)
  3033. {
  3034. /* The required result is 1/a * 1/b; the following preserves accuracy. */
  3035. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3036. if (a != 0 && b != 0)
  3037. {
  3038. double r = 1E15/a;
  3039. r /= b;
  3040. r = floor(r+.5);
  3041. if (r <= 2147483647. && r >= -2147483648.)
  3042. return (png_fixed_point)r;
  3043. }
  3044. #else
  3045. /* This may overflow because the range of png_fixed_point isn't symmetric,
  3046. * but this API is only used for the product of file and screen gamma so it
  3047. * doesn't matter that the smallest number it can produce is 1/21474, not
  3048. * 1/100000
  3049. */
  3050. png_fixed_point res = png_product2(a, b);
  3051. if (res != 0)
  3052. return png_reciprocal(res);
  3053. #endif
  3054. return 0; /* overflow */
  3055. }
  3056. #endif /* READ_GAMMA */
  3057. #ifdef PNG_READ_GAMMA_SUPPORTED /* gamma table code */
  3058. #ifndef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3059. /* Fixed point gamma.
  3060. *
  3061. * The code to calculate the tables used below can be found in the shell script
  3062. * contrib/tools/intgamma.sh
  3063. *
  3064. * To calculate gamma this code implements fast log() and exp() calls using only
  3065. * fixed point arithmetic. This code has sufficient precision for either 8-bit
  3066. * or 16-bit sample values.
  3067. *
  3068. * The tables used here were calculated using simple 'bc' programs, but C double
  3069. * precision floating point arithmetic would work fine.
  3070. *
  3071. * 8-bit log table
  3072. * This is a table of -log(value/255)/log(2) for 'value' in the range 128 to
  3073. * 255, so it's the base 2 logarithm of a normalized 8-bit floating point
  3074. * mantissa. The numbers are 32-bit fractions.
  3075. */
  3076. static const png_uint_32
  3077. png_8bit_l2[128] =
  3078. {
  3079. 4270715492U, 4222494797U, 4174646467U, 4127164793U, 4080044201U, 4033279239U,
  3080. 3986864580U, 3940795015U, 3895065449U, 3849670902U, 3804606499U, 3759867474U,
  3081. 3715449162U, 3671346997U, 3627556511U, 3584073329U, 3540893168U, 3498011834U,
  3082. 3455425220U, 3413129301U, 3371120137U, 3329393864U, 3287946700U, 3246774933U,
  3083. 3205874930U, 3165243125U, 3124876025U, 3084770202U, 3044922296U, 3005329011U,
  3084. 2965987113U, 2926893432U, 2888044853U, 2849438323U, 2811070844U, 2772939474U,
  3085. 2735041326U, 2697373562U, 2659933400U, 2622718104U, 2585724991U, 2548951424U,
  3086. 2512394810U, 2476052606U, 2439922311U, 2404001468U, 2368287663U, 2332778523U,
  3087. 2297471715U, 2262364947U, 2227455964U, 2192742551U, 2158222529U, 2123893754U,
  3088. 2089754119U, 2055801552U, 2022034013U, 1988449497U, 1955046031U, 1921821672U,
  3089. 1888774511U, 1855902668U, 1823204291U, 1790677560U, 1758320682U, 1726131893U,
  3090. 1694109454U, 1662251657U, 1630556815U, 1599023271U, 1567649391U, 1536433567U,
  3091. 1505374214U, 1474469770U, 1443718700U, 1413119487U, 1382670639U, 1352370686U,
  3092. 1322218179U, 1292211689U, 1262349810U, 1232631153U, 1203054352U, 1173618059U,
  3093. 1144320946U, 1115161701U, 1086139034U, 1057251672U, 1028498358U, 999877854U,
  3094. 971388940U, 943030410U, 914801076U, 886699767U, 858725327U, 830876614U,
  3095. 803152505U, 775551890U, 748073672U, 720716771U, 693480120U, 666362667U,
  3096. 639363374U, 612481215U, 585715177U, 559064263U, 532527486U, 506103872U,
  3097. 479792461U, 453592303U, 427502463U, 401522014U, 375650043U, 349885648U,
  3098. 324227938U, 298676034U, 273229066U, 247886176U, 222646516U, 197509248U,
  3099. 172473545U, 147538590U, 122703574U, 97967701U, 73330182U, 48790236U,
  3100. 24347096U, 0U
  3101. #if 0
  3102. /* The following are the values for 16-bit tables - these work fine for the
  3103. * 8-bit conversions but produce very slightly larger errors in the 16-bit
  3104. * log (about 1.2 as opposed to 0.7 absolute error in the final value). To
  3105. * use these all the shifts below must be adjusted appropriately.
  3106. */
  3107. 65166, 64430, 63700, 62976, 62257, 61543, 60835, 60132, 59434, 58741, 58054,
  3108. 57371, 56693, 56020, 55352, 54689, 54030, 53375, 52726, 52080, 51439, 50803,
  3109. 50170, 49542, 48918, 48298, 47682, 47070, 46462, 45858, 45257, 44661, 44068,
  3110. 43479, 42894, 42312, 41733, 41159, 40587, 40020, 39455, 38894, 38336, 37782,
  3111. 37230, 36682, 36137, 35595, 35057, 34521, 33988, 33459, 32932, 32408, 31887,
  3112. 31369, 30854, 30341, 29832, 29325, 28820, 28319, 27820, 27324, 26830, 26339,
  3113. 25850, 25364, 24880, 24399, 23920, 23444, 22970, 22499, 22029, 21562, 21098,
  3114. 20636, 20175, 19718, 19262, 18808, 18357, 17908, 17461, 17016, 16573, 16132,
  3115. 15694, 15257, 14822, 14390, 13959, 13530, 13103, 12678, 12255, 11834, 11415,
  3116. 10997, 10582, 10168, 9756, 9346, 8937, 8531, 8126, 7723, 7321, 6921, 6523,
  3117. 6127, 5732, 5339, 4947, 4557, 4169, 3782, 3397, 3014, 2632, 2251, 1872, 1495,
  3118. 1119, 744, 372
  3119. #endif
  3120. };
  3121. static png_int_32
  3122. png_log8bit(unsigned int x)
  3123. {
  3124. unsigned int lg2 = 0;
  3125. /* Each time 'x' is multiplied by 2, 1 must be subtracted off the final log,
  3126. * because the log is actually negate that means adding 1. The final
  3127. * returned value thus has the range 0 (for 255 input) to 7.994 (for 1
  3128. * input), return -1 for the overflow (log 0) case, - so the result is
  3129. * always at most 19 bits.
  3130. */
  3131. if ((x &= 0xff) == 0)
  3132. return -1;
  3133. if ((x & 0xf0) == 0)
  3134. lg2 = 4, x <<= 4;
  3135. if ((x & 0xc0) == 0)
  3136. lg2 += 2, x <<= 2;
  3137. if ((x & 0x80) == 0)
  3138. lg2 += 1, x <<= 1;
  3139. /* result is at most 19 bits, so this cast is safe: */
  3140. return (png_int_32)((lg2 << 16) + ((png_8bit_l2[x-128]+32768)>>16));
  3141. }
  3142. /* The above gives exact (to 16 binary places) log2 values for 8-bit images,
  3143. * for 16-bit images we use the most significant 8 bits of the 16-bit value to
  3144. * get an approximation then multiply the approximation by a correction factor
  3145. * determined by the remaining up to 8 bits. This requires an additional step
  3146. * in the 16-bit case.
  3147. *
  3148. * We want log2(value/65535), we have log2(v'/255), where:
  3149. *
  3150. * value = v' * 256 + v''
  3151. * = v' * f
  3152. *
  3153. * So f is value/v', which is equal to (256+v''/v') since v' is in the range 128
  3154. * to 255 and v'' is in the range 0 to 255 f will be in the range 256 to less
  3155. * than 258. The final factor also needs to correct for the fact that our 8-bit
  3156. * value is scaled by 255, whereas the 16-bit values must be scaled by 65535.
  3157. *
  3158. * This gives a final formula using a calculated value 'x' which is value/v' and
  3159. * scaling by 65536 to match the above table:
  3160. *
  3161. * log2(x/257) * 65536
  3162. *
  3163. * Since these numbers are so close to '1' we can use simple linear
  3164. * interpolation between the two end values 256/257 (result -368.61) and 258/257
  3165. * (result 367.179). The values used below are scaled by a further 64 to give
  3166. * 16-bit precision in the interpolation:
  3167. *
  3168. * Start (256): -23591
  3169. * Zero (257): 0
  3170. * End (258): 23499
  3171. */
  3172. #ifdef PNG_16BIT_SUPPORTED
  3173. static png_int_32
  3174. png_log16bit(png_uint_32 x)
  3175. {
  3176. unsigned int lg2 = 0;
  3177. /* As above, but now the input has 16 bits. */
  3178. if ((x &= 0xffff) == 0)
  3179. return -1;
  3180. if ((x & 0xff00) == 0)
  3181. lg2 = 8, x <<= 8;
  3182. if ((x & 0xf000) == 0)
  3183. lg2 += 4, x <<= 4;
  3184. if ((x & 0xc000) == 0)
  3185. lg2 += 2, x <<= 2;
  3186. if ((x & 0x8000) == 0)
  3187. lg2 += 1, x <<= 1;
  3188. /* Calculate the base logarithm from the top 8 bits as a 28-bit fractional
  3189. * value.
  3190. */
  3191. lg2 <<= 28;
  3192. lg2 += (png_8bit_l2[(x>>8)-128]+8) >> 4;
  3193. /* Now we need to interpolate the factor, this requires a division by the top
  3194. * 8 bits. Do this with maximum precision.
  3195. */
  3196. x = ((x << 16) + (x >> 9)) / (x >> 8);
  3197. /* Since we divided by the top 8 bits of 'x' there will be a '1' at 1<<24,
  3198. * the value at 1<<16 (ignoring this) will be 0 or 1; this gives us exactly
  3199. * 16 bits to interpolate to get the low bits of the result. Round the
  3200. * answer. Note that the end point values are scaled by 64 to retain overall
  3201. * precision and that 'lg2' is current scaled by an extra 12 bits, so adjust
  3202. * the overall scaling by 6-12. Round at every step.
  3203. */
  3204. x -= 1U << 24;
  3205. if (x <= 65536U) /* <= '257' */
  3206. lg2 += ((23591U * (65536U-x)) + (1U << (16+6-12-1))) >> (16+6-12);
  3207. else
  3208. lg2 -= ((23499U * (x-65536U)) + (1U << (16+6-12-1))) >> (16+6-12);
  3209. /* Safe, because the result can't have more than 20 bits: */
  3210. return (png_int_32)((lg2 + 2048) >> 12);
  3211. }
  3212. #endif /* 16BIT */
  3213. /* The 'exp()' case must invert the above, taking a 20-bit fixed point
  3214. * logarithmic value and returning a 16 or 8-bit number as appropriate. In
  3215. * each case only the low 16 bits are relevant - the fraction - since the
  3216. * integer bits (the top 4) simply determine a shift.
  3217. *
  3218. * The worst case is the 16-bit distinction between 65535 and 65534. This
  3219. * requires perhaps spurious accuracy in the decoding of the logarithm to
  3220. * distinguish log2(65535/65534.5) - 10^-5 or 17 bits. There is little chance
  3221. * of getting this accuracy in practice.
  3222. *
  3223. * To deal with this the following exp() function works out the exponent of the
  3224. * fractional part of the logarithm by using an accurate 32-bit value from the
  3225. * top four fractional bits then multiplying in the remaining bits.
  3226. */
  3227. static const png_uint_32
  3228. png_32bit_exp[16] =
  3229. {
  3230. /* NOTE: the first entry is deliberately set to the maximum 32-bit value. */
  3231. 4294967295U, 4112874773U, 3938502376U, 3771522796U, 3611622603U, 3458501653U,
  3232. 3311872529U, 3171459999U, 3037000500U, 2908241642U, 2784941738U, 2666869345U,
  3233. 2553802834U, 2445529972U, 2341847524U, 2242560872U
  3234. };
  3235. /* Adjustment table; provided to explain the numbers in the code below. */
  3236. #if 0
  3237. for (i=11;i>=0;--i){ print i, " ", (1 - e(-(2^i)/65536*l(2))) * 2^(32-i), "\n"}
  3238. 11 44937.64284865548751208448
  3239. 10 45180.98734845585101160448
  3240. 9 45303.31936980687359311872
  3241. 8 45364.65110595323018870784
  3242. 7 45395.35850361789624614912
  3243. 6 45410.72259715102037508096
  3244. 5 45418.40724413220722311168
  3245. 4 45422.25021786898173001728
  3246. 3 45424.17186732298419044352
  3247. 2 45425.13273269940811464704
  3248. 1 45425.61317555035558641664
  3249. 0 45425.85339951654943850496
  3250. #endif
  3251. static png_uint_32
  3252. png_exp(png_fixed_point x)
  3253. {
  3254. if (x > 0 && x <= 0xfffff) /* Else overflow or zero (underflow) */
  3255. {
  3256. /* Obtain a 4-bit approximation */
  3257. png_uint_32 e = png_32bit_exp[(x >> 12) & 0x0f];
  3258. /* Incorporate the low 12 bits - these decrease the returned value by
  3259. * multiplying by a number less than 1 if the bit is set. The multiplier
  3260. * is determined by the above table and the shift. Notice that the values
  3261. * converge on 45426 and this is used to allow linear interpolation of the
  3262. * low bits.
  3263. */
  3264. if (x & 0x800)
  3265. e -= (((e >> 16) * 44938U) + 16U) >> 5;
  3266. if (x & 0x400)
  3267. e -= (((e >> 16) * 45181U) + 32U) >> 6;
  3268. if (x & 0x200)
  3269. e -= (((e >> 16) * 45303U) + 64U) >> 7;
  3270. if (x & 0x100)
  3271. e -= (((e >> 16) * 45365U) + 128U) >> 8;
  3272. if (x & 0x080)
  3273. e -= (((e >> 16) * 45395U) + 256U) >> 9;
  3274. if (x & 0x040)
  3275. e -= (((e >> 16) * 45410U) + 512U) >> 10;
  3276. /* And handle the low 6 bits in a single block. */
  3277. e -= (((e >> 16) * 355U * (x & 0x3fU)) + 256U) >> 9;
  3278. /* Handle the upper bits of x. */
  3279. e >>= x >> 16;
  3280. return e;
  3281. }
  3282. /* Check for overflow */
  3283. if (x <= 0)
  3284. return png_32bit_exp[0];
  3285. /* Else underflow */
  3286. return 0;
  3287. }
  3288. static png_byte
  3289. png_exp8bit(png_fixed_point lg2)
  3290. {
  3291. /* Get a 32-bit value: */
  3292. png_uint_32 x = png_exp(lg2);
  3293. /* Convert the 32-bit value to 0..255 by multiplying by 256-1. Note that the
  3294. * second, rounding, step can't overflow because of the first, subtraction,
  3295. * step.
  3296. */
  3297. x -= x >> 8;
  3298. return (png_byte)(((x + 0x7fffffU) >> 24) & 0xff);
  3299. }
  3300. #ifdef PNG_16BIT_SUPPORTED
  3301. static png_uint_16
  3302. png_exp16bit(png_fixed_point lg2)
  3303. {
  3304. /* Get a 32-bit value: */
  3305. png_uint_32 x = png_exp(lg2);
  3306. /* Convert the 32-bit value to 0..65535 by multiplying by 65536-1: */
  3307. x -= x >> 16;
  3308. return (png_uint_16)((x + 32767U) >> 16);
  3309. }
  3310. #endif /* 16BIT */
  3311. #endif /* FLOATING_ARITHMETIC */
  3312. png_byte
  3313. png_gamma_8bit_correct(unsigned int value, png_fixed_point gamma_val)
  3314. {
  3315. if (value > 0 && value < 255)
  3316. {
  3317. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3318. /* 'value' is unsigned, ANSI-C90 requires the compiler to correctly
  3319. * convert this to a floating point value. This includes values that
  3320. * would overflow if 'value' were to be converted to 'int'.
  3321. *
  3322. * Apparently GCC, however, does an intermediate conversion to (int)
  3323. * on some (ARM) but not all (x86) platforms, possibly because of
  3324. * hardware FP limitations. (E.g. if the hardware conversion always
  3325. * assumes the integer register contains a signed value.) This results
  3326. * in ANSI-C undefined behavior for large values.
  3327. *
  3328. * Other implementations on the same machine might actually be ANSI-C90
  3329. * conformant and therefore compile spurious extra code for the large
  3330. * values.
  3331. *
  3332. * We can be reasonably sure that an unsigned to float conversion
  3333. * won't be faster than an int to float one. Therefore this code
  3334. * assumes responsibility for the undefined behavior, which it knows
  3335. * can't happen because of the check above.
  3336. *
  3337. * Note the argument to this routine is an (unsigned int) because, on
  3338. * 16-bit platforms, it is assigned a value which might be out of
  3339. * range for an (int); that would result in undefined behavior in the
  3340. * caller if the *argument* ('value') were to be declared (int).
  3341. */
  3342. double r = floor(255*pow((int)/*SAFE*/value/255.,gamma_val*.00001)+.5);
  3343. return (png_byte)r;
  3344. # else
  3345. png_int_32 lg2 = png_log8bit(value);
  3346. png_fixed_point res;
  3347. if (png_muldiv(&res, gamma_val, lg2, PNG_FP_1) != 0)
  3348. return png_exp8bit(res);
  3349. /* Overflow. */
  3350. value = 0;
  3351. # endif
  3352. }
  3353. return (png_byte)(value & 0xff);
  3354. }
  3355. #ifdef PNG_16BIT_SUPPORTED
  3356. png_uint_16
  3357. png_gamma_16bit_correct(unsigned int value, png_fixed_point gamma_val)
  3358. {
  3359. if (value > 0 && value < 65535)
  3360. {
  3361. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3362. /* The same (unsigned int)->(double) constraints apply here as above,
  3363. * however in this case the (unsigned int) to (int) conversion can
  3364. * overflow on an ANSI-C90 compliant system so the cast needs to ensure
  3365. * that this is not possible.
  3366. */
  3367. double r = floor(65535*pow((png_int_32)value/65535.,
  3368. gamma_val*.00001)+.5);
  3369. return (png_uint_16)r;
  3370. # else
  3371. png_int_32 lg2 = png_log16bit(value);
  3372. png_fixed_point res;
  3373. if (png_muldiv(&res, gamma_val, lg2, PNG_FP_1) != 0)
  3374. return png_exp16bit(res);
  3375. /* Overflow. */
  3376. value = 0;
  3377. # endif
  3378. }
  3379. return (png_uint_16)value;
  3380. }
  3381. #endif /* 16BIT */
  3382. /* This does the right thing based on the bit_depth field of the
  3383. * png_struct, interpreting values as 8-bit or 16-bit. While the result
  3384. * is nominally a 16-bit value if bit depth is 8 then the result is
  3385. * 8-bit (as are the arguments.)
  3386. */
  3387. png_uint_16 /* PRIVATE */
  3388. png_gamma_correct(png_structrp png_ptr, unsigned int value,
  3389. png_fixed_point gamma_val)
  3390. {
  3391. if (png_ptr->bit_depth == 8)
  3392. return png_gamma_8bit_correct(value, gamma_val);
  3393. #ifdef PNG_16BIT_SUPPORTED
  3394. else
  3395. return png_gamma_16bit_correct(value, gamma_val);
  3396. #else
  3397. /* should not reach this */
  3398. return 0;
  3399. #endif /* 16BIT */
  3400. }
  3401. #ifdef PNG_16BIT_SUPPORTED
  3402. /* Internal function to build a single 16-bit table - the table consists of
  3403. * 'num' 256 entry subtables, where 'num' is determined by 'shift' - the amount
  3404. * to shift the input values right (or 16-number_of_signifiant_bits).
  3405. *
  3406. * The caller is responsible for ensuring that the table gets cleaned up on
  3407. * png_error (i.e. if one of the mallocs below fails) - i.e. the *table argument
  3408. * should be somewhere that will be cleaned.
  3409. */
  3410. static void
  3411. png_build_16bit_table(png_structrp png_ptr, png_uint_16pp *ptable,
  3412. unsigned int shift, png_fixed_point gamma_val)
  3413. {
  3414. /* Various values derived from 'shift': */
  3415. unsigned int num = 1U << (8U - shift);
  3416. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3417. /* CSE the division and work round wacky GCC warnings (see the comments
  3418. * in png_gamma_8bit_correct for where these come from.)
  3419. */
  3420. double fmax = 1.0 / (((png_int_32)1 << (16U - shift)) - 1);
  3421. #endif
  3422. unsigned int max = (1U << (16U - shift)) - 1U;
  3423. unsigned int max_by_2 = 1U << (15U - shift);
  3424. unsigned int i;
  3425. png_uint_16pp table = *ptable =
  3426. (png_uint_16pp)png_calloc(png_ptr, num * (sizeof (png_uint_16p)));
  3427. for (i = 0; i < num; i++)
  3428. {
  3429. png_uint_16p sub_table = table[i] =
  3430. (png_uint_16p)png_malloc(png_ptr, 256 * (sizeof (png_uint_16)));
  3431. /* The 'threshold' test is repeated here because it can arise for one of
  3432. * the 16-bit tables even if the others don't hit it.
  3433. */
  3434. if (png_gamma_significant(gamma_val) != 0)
  3435. {
  3436. /* The old code would overflow at the end and this would cause the
  3437. * 'pow' function to return a result >1, resulting in an
  3438. * arithmetic error. This code follows the spec exactly; ig is
  3439. * the recovered input sample, it always has 8-16 bits.
  3440. *
  3441. * We want input * 65535/max, rounded, the arithmetic fits in 32
  3442. * bits (unsigned) so long as max <= 32767.
  3443. */
  3444. unsigned int j;
  3445. for (j = 0; j < 256; j++)
  3446. {
  3447. png_uint_32 ig = (j << (8-shift)) + i;
  3448. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3449. /* Inline the 'max' scaling operation: */
  3450. /* See png_gamma_8bit_correct for why the cast to (int) is
  3451. * required here.
  3452. */
  3453. double d = floor(65535.*pow(ig*fmax, gamma_val*.00001)+.5);
  3454. sub_table[j] = (png_uint_16)d;
  3455. # else
  3456. if (shift != 0)
  3457. ig = (ig * 65535U + max_by_2)/max;
  3458. sub_table[j] = png_gamma_16bit_correct(ig, gamma_val);
  3459. # endif
  3460. }
  3461. }
  3462. else
  3463. {
  3464. /* We must still build a table, but do it the fast way. */
  3465. unsigned int j;
  3466. for (j = 0; j < 256; j++)
  3467. {
  3468. png_uint_32 ig = (j << (8-shift)) + i;
  3469. if (shift != 0)
  3470. ig = (ig * 65535U + max_by_2)/max;
  3471. sub_table[j] = (png_uint_16)ig;
  3472. }
  3473. }
  3474. }
  3475. }
  3476. /* NOTE: this function expects the *inverse* of the overall gamma transformation
  3477. * required.
  3478. */
  3479. static void
  3480. png_build_16to8_table(png_structrp png_ptr, png_uint_16pp *ptable,
  3481. unsigned int shift, png_fixed_point gamma_val)
  3482. {
  3483. unsigned int num = 1U << (8U - shift);
  3484. unsigned int max = (1U << (16U - shift))-1U;
  3485. unsigned int i;
  3486. png_uint_32 last;
  3487. png_uint_16pp table = *ptable =
  3488. (png_uint_16pp)png_calloc(png_ptr, num * (sizeof (png_uint_16p)));
  3489. /* 'num' is the number of tables and also the number of low bits of low
  3490. * bits of the input 16-bit value used to select a table. Each table is
  3491. * itself indexed by the high 8 bits of the value.
  3492. */
  3493. for (i = 0; i < num; i++)
  3494. table[i] = (png_uint_16p)png_malloc(png_ptr,
  3495. 256 * (sizeof (png_uint_16)));
  3496. /* 'gamma_val' is set to the reciprocal of the value calculated above, so
  3497. * pow(out,g) is an *input* value. 'last' is the last input value set.
  3498. *
  3499. * In the loop 'i' is used to find output values. Since the output is
  3500. * 8-bit there are only 256 possible values. The tables are set up to
  3501. * select the closest possible output value for each input by finding
  3502. * the input value at the boundary between each pair of output values
  3503. * and filling the table up to that boundary with the lower output
  3504. * value.
  3505. *
  3506. * The boundary values are 0.5,1.5..253.5,254.5. Since these are 9-bit
  3507. * values the code below uses a 16-bit value in i; the values start at
  3508. * 128.5 (for 0.5) and step by 257, for a total of 254 values (the last
  3509. * entries are filled with 255). Start i at 128 and fill all 'last'
  3510. * table entries <= 'max'
  3511. */
  3512. last = 0;
  3513. for (i = 0; i < 255; ++i) /* 8-bit output value */
  3514. {
  3515. /* Find the corresponding maximum input value */
  3516. png_uint_16 out = (png_uint_16)(i * 257U); /* 16-bit output value */
  3517. /* Find the boundary value in 16 bits: */
  3518. png_uint_32 bound = png_gamma_16bit_correct(out+128U, gamma_val);
  3519. /* Adjust (round) to (16-shift) bits: */
  3520. bound = (bound * max + 32768U)/65535U + 1U;
  3521. while (last < bound)
  3522. {
  3523. table[last & (0xffU >> shift)][last >> (8U - shift)] = out;
  3524. last++;
  3525. }
  3526. }
  3527. /* And fill in the final entries. */
  3528. while (last < (num << 8))
  3529. {
  3530. table[last & (0xff >> shift)][last >> (8U - shift)] = 65535U;
  3531. last++;
  3532. }
  3533. }
  3534. #endif /* 16BIT */
  3535. /* Build a single 8-bit table: same as the 16-bit case but much simpler (and
  3536. * typically much faster). Note that libpng currently does no sBIT processing
  3537. * (apparently contrary to the spec) so a 256-entry table is always generated.
  3538. */
  3539. static void
  3540. png_build_8bit_table(png_structrp png_ptr, png_bytepp ptable,
  3541. png_fixed_point gamma_val)
  3542. {
  3543. unsigned int i;
  3544. png_bytep table = *ptable = (png_bytep)png_malloc(png_ptr, 256);
  3545. if (png_gamma_significant(gamma_val) != 0)
  3546. for (i=0; i<256; i++)
  3547. table[i] = png_gamma_8bit_correct(i, gamma_val);
  3548. else
  3549. for (i=0; i<256; ++i)
  3550. table[i] = (png_byte)(i & 0xff);
  3551. }
  3552. /* Used from png_read_destroy and below to release the memory used by the gamma
  3553. * tables.
  3554. */
  3555. void /* PRIVATE */
  3556. png_destroy_gamma_table(png_structrp png_ptr)
  3557. {
  3558. png_free(png_ptr, png_ptr->gamma_table);
  3559. png_ptr->gamma_table = NULL;
  3560. #ifdef PNG_16BIT_SUPPORTED
  3561. if (png_ptr->gamma_16_table != NULL)
  3562. {
  3563. int i;
  3564. int istop = (1 << (8 - png_ptr->gamma_shift));
  3565. for (i = 0; i < istop; i++)
  3566. {
  3567. png_free(png_ptr, png_ptr->gamma_16_table[i]);
  3568. }
  3569. png_free(png_ptr, png_ptr->gamma_16_table);
  3570. png_ptr->gamma_16_table = NULL;
  3571. }
  3572. #endif /* 16BIT */
  3573. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3574. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3575. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3576. png_free(png_ptr, png_ptr->gamma_from_1);
  3577. png_ptr->gamma_from_1 = NULL;
  3578. png_free(png_ptr, png_ptr->gamma_to_1);
  3579. png_ptr->gamma_to_1 = NULL;
  3580. #ifdef PNG_16BIT_SUPPORTED
  3581. if (png_ptr->gamma_16_from_1 != NULL)
  3582. {
  3583. int i;
  3584. int istop = (1 << (8 - png_ptr->gamma_shift));
  3585. for (i = 0; i < istop; i++)
  3586. {
  3587. png_free(png_ptr, png_ptr->gamma_16_from_1[i]);
  3588. }
  3589. png_free(png_ptr, png_ptr->gamma_16_from_1);
  3590. png_ptr->gamma_16_from_1 = NULL;
  3591. }
  3592. if (png_ptr->gamma_16_to_1 != NULL)
  3593. {
  3594. int i;
  3595. int istop = (1 << (8 - png_ptr->gamma_shift));
  3596. for (i = 0; i < istop; i++)
  3597. {
  3598. png_free(png_ptr, png_ptr->gamma_16_to_1[i]);
  3599. }
  3600. png_free(png_ptr, png_ptr->gamma_16_to_1);
  3601. png_ptr->gamma_16_to_1 = NULL;
  3602. }
  3603. #endif /* 16BIT */
  3604. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3605. }
  3606. /* We build the 8- or 16-bit gamma tables here. Note that for 16-bit
  3607. * tables, we don't make a full table if we are reducing to 8-bit in
  3608. * the future. Note also how the gamma_16 tables are segmented so that
  3609. * we don't need to allocate > 64K chunks for a full 16-bit table.
  3610. */
  3611. void /* PRIVATE */
  3612. png_build_gamma_table(png_structrp png_ptr, int bit_depth)
  3613. {
  3614. png_debug(1, "in png_build_gamma_table");
  3615. /* Remove any existing table; this copes with multiple calls to
  3616. * png_read_update_info. The warning is because building the gamma tables
  3617. * multiple times is a performance hit - it's harmless but the ability to
  3618. * call png_read_update_info() multiple times is new in 1.5.6 so it seems
  3619. * sensible to warn if the app introduces such a hit.
  3620. */
  3621. if (png_ptr->gamma_table != NULL || png_ptr->gamma_16_table != NULL)
  3622. {
  3623. png_warning(png_ptr, "gamma table being rebuilt");
  3624. png_destroy_gamma_table(png_ptr);
  3625. }
  3626. if (bit_depth <= 8)
  3627. {
  3628. png_build_8bit_table(png_ptr, &png_ptr->gamma_table,
  3629. png_ptr->screen_gamma > 0 ?
  3630. png_reciprocal2(png_ptr->colorspace.gamma,
  3631. png_ptr->screen_gamma) : PNG_FP_1);
  3632. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3633. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3634. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3635. if ((png_ptr->transformations & (PNG_COMPOSE | PNG_RGB_TO_GRAY)) != 0)
  3636. {
  3637. png_build_8bit_table(png_ptr, &png_ptr->gamma_to_1,
  3638. png_reciprocal(png_ptr->colorspace.gamma));
  3639. png_build_8bit_table(png_ptr, &png_ptr->gamma_from_1,
  3640. png_ptr->screen_gamma > 0 ?
  3641. png_reciprocal(png_ptr->screen_gamma) :
  3642. png_ptr->colorspace.gamma/* Probably doing rgb_to_gray */);
  3643. }
  3644. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3645. }
  3646. #ifdef PNG_16BIT_SUPPORTED
  3647. else
  3648. {
  3649. png_byte shift, sig_bit;
  3650. if ((png_ptr->color_type & PNG_COLOR_MASK_COLOR) != 0)
  3651. {
  3652. sig_bit = png_ptr->sig_bit.red;
  3653. if (png_ptr->sig_bit.green > sig_bit)
  3654. sig_bit = png_ptr->sig_bit.green;
  3655. if (png_ptr->sig_bit.blue > sig_bit)
  3656. sig_bit = png_ptr->sig_bit.blue;
  3657. }
  3658. else
  3659. sig_bit = png_ptr->sig_bit.gray;
  3660. /* 16-bit gamma code uses this equation:
  3661. *
  3662. * ov = table[(iv & 0xff) >> gamma_shift][iv >> 8]
  3663. *
  3664. * Where 'iv' is the input color value and 'ov' is the output value -
  3665. * pow(iv, gamma).
  3666. *
  3667. * Thus the gamma table consists of up to 256 256-entry tables. The table
  3668. * is selected by the (8-gamma_shift) most significant of the low 8 bits
  3669. * of the color value then indexed by the upper 8 bits:
  3670. *
  3671. * table[low bits][high 8 bits]
  3672. *
  3673. * So the table 'n' corresponds to all those 'iv' of:
  3674. *
  3675. * <all high 8-bit values><n << gamma_shift>..<(n+1 << gamma_shift)-1>
  3676. *
  3677. */
  3678. if (sig_bit > 0 && sig_bit < 16U)
  3679. /* shift == insignificant bits */
  3680. shift = (png_byte)((16U - sig_bit) & 0xff);
  3681. else
  3682. shift = 0; /* keep all 16 bits */
  3683. if ((png_ptr->transformations & (PNG_16_TO_8 | PNG_SCALE_16_TO_8)) != 0)
  3684. {
  3685. /* PNG_MAX_GAMMA_8 is the number of bits to keep - effectively
  3686. * the significant bits in the *input* when the output will
  3687. * eventually be 8 bits. By default it is 11.
  3688. */
  3689. if (shift < (16U - PNG_MAX_GAMMA_8))
  3690. shift = (16U - PNG_MAX_GAMMA_8);
  3691. }
  3692. if (shift > 8U)
  3693. shift = 8U; /* Guarantees at least one table! */
  3694. png_ptr->gamma_shift = shift;
  3695. /* NOTE: prior to 1.5.4 this test used to include PNG_BACKGROUND (now
  3696. * PNG_COMPOSE). This effectively smashed the background calculation for
  3697. * 16-bit output because the 8-bit table assumes the result will be
  3698. * reduced to 8 bits.
  3699. */
  3700. if ((png_ptr->transformations & (PNG_16_TO_8 | PNG_SCALE_16_TO_8)) != 0)
  3701. png_build_16to8_table(png_ptr, &png_ptr->gamma_16_table, shift,
  3702. png_ptr->screen_gamma > 0 ? png_product2(png_ptr->colorspace.gamma,
  3703. png_ptr->screen_gamma) : PNG_FP_1);
  3704. else
  3705. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_table, shift,
  3706. png_ptr->screen_gamma > 0 ? png_reciprocal2(png_ptr->colorspace.gamma,
  3707. png_ptr->screen_gamma) : PNG_FP_1);
  3708. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3709. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3710. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3711. if ((png_ptr->transformations & (PNG_COMPOSE | PNG_RGB_TO_GRAY)) != 0)
  3712. {
  3713. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_to_1, shift,
  3714. png_reciprocal(png_ptr->colorspace.gamma));
  3715. /* Notice that the '16 from 1' table should be full precision, however
  3716. * the lookup on this table still uses gamma_shift, so it can't be.
  3717. * TODO: fix this.
  3718. */
  3719. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_from_1, shift,
  3720. png_ptr->screen_gamma > 0 ? png_reciprocal(png_ptr->screen_gamma) :
  3721. png_ptr->colorspace.gamma/* Probably doing rgb_to_gray */);
  3722. }
  3723. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3724. }
  3725. #endif /* 16BIT */
  3726. }
  3727. #endif /* READ_GAMMA */
  3728. /* HARDWARE OR SOFTWARE OPTION SUPPORT */
  3729. #ifdef PNG_SET_OPTION_SUPPORTED
  3730. int PNGAPI
  3731. png_set_option(png_structrp png_ptr, int option, int onoff)
  3732. {
  3733. if (png_ptr != NULL && option >= 0 && option < PNG_OPTION_NEXT &&
  3734. (option & 1) == 0)
  3735. {
  3736. png_uint_32 mask = 3U << option;
  3737. png_uint_32 setting = (2U + (onoff != 0)) << option;
  3738. png_uint_32 current = png_ptr->options;
  3739. png_ptr->options = (png_uint_32)((current & ~mask) | setting);
  3740. return (int)(current & mask) >> option;
  3741. }
  3742. return PNG_OPTION_INVALID;
  3743. }
  3744. #endif
  3745. /* sRGB support */
  3746. #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\
  3747. defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)
  3748. /* sRGB conversion tables; these are machine generated with the code in
  3749. * contrib/tools/makesRGB.c. The actual sRGB transfer curve defined in the
  3750. * specification (see the article at https://en.wikipedia.org/wiki/SRGB)
  3751. * is used, not the gamma=1/2.2 approximation use elsewhere in libpng.
  3752. * The sRGB to linear table is exact (to the nearest 16-bit linear fraction).
  3753. * The inverse (linear to sRGB) table has accuracies as follows:
  3754. *
  3755. * For all possible (255*65535+1) input values:
  3756. *
  3757. * error: -0.515566 - 0.625971, 79441 (0.475369%) of readings inexact
  3758. *
  3759. * For the input values corresponding to the 65536 16-bit values:
  3760. *
  3761. * error: -0.513727 - 0.607759, 308 (0.469978%) of readings inexact
  3762. *
  3763. * In all cases the inexact readings are only off by one.
  3764. */
  3765. #ifdef PNG_SIMPLIFIED_READ_SUPPORTED
  3766. /* The convert-to-sRGB table is only currently required for read. */
  3767. const png_uint_16 png_sRGB_table[256] =
  3768. {
  3769. 0,20,40,60,80,99,119,139,
  3770. 159,179,199,219,241,264,288,313,
  3771. 340,367,396,427,458,491,526,562,
  3772. 599,637,677,718,761,805,851,898,
  3773. 947,997,1048,1101,1156,1212,1270,1330,
  3774. 1391,1453,1517,1583,1651,1720,1790,1863,
  3775. 1937,2013,2090,2170,2250,2333,2418,2504,
  3776. 2592,2681,2773,2866,2961,3058,3157,3258,
  3777. 3360,3464,3570,3678,3788,3900,4014,4129,
  3778. 4247,4366,4488,4611,4736,4864,4993,5124,
  3779. 5257,5392,5530,5669,5810,5953,6099,6246,
  3780. 6395,6547,6700,6856,7014,7174,7335,7500,
  3781. 7666,7834,8004,8177,8352,8528,8708,8889,
  3782. 9072,9258,9445,9635,9828,10022,10219,10417,
  3783. 10619,10822,11028,11235,11446,11658,11873,12090,
  3784. 12309,12530,12754,12980,13209,13440,13673,13909,
  3785. 14146,14387,14629,14874,15122,15371,15623,15878,
  3786. 16135,16394,16656,16920,17187,17456,17727,18001,
  3787. 18277,18556,18837,19121,19407,19696,19987,20281,
  3788. 20577,20876,21177,21481,21787,22096,22407,22721,
  3789. 23038,23357,23678,24002,24329,24658,24990,25325,
  3790. 25662,26001,26344,26688,27036,27386,27739,28094,
  3791. 28452,28813,29176,29542,29911,30282,30656,31033,
  3792. 31412,31794,32179,32567,32957,33350,33745,34143,
  3793. 34544,34948,35355,35764,36176,36591,37008,37429,
  3794. 37852,38278,38706,39138,39572,40009,40449,40891,
  3795. 41337,41785,42236,42690,43147,43606,44069,44534,
  3796. 45002,45473,45947,46423,46903,47385,47871,48359,
  3797. 48850,49344,49841,50341,50844,51349,51858,52369,
  3798. 52884,53401,53921,54445,54971,55500,56032,56567,
  3799. 57105,57646,58190,58737,59287,59840,60396,60955,
  3800. 61517,62082,62650,63221,63795,64372,64952,65535
  3801. };
  3802. #endif /* SIMPLIFIED_READ */
  3803. /* The base/delta tables are required for both read and write (but currently
  3804. * only the simplified versions.)
  3805. */
  3806. const png_uint_16 png_sRGB_base[512] =
  3807. {
  3808. 128,1782,3383,4644,5675,6564,7357,8074,
  3809. 8732,9346,9921,10463,10977,11466,11935,12384,
  3810. 12816,13233,13634,14024,14402,14769,15125,15473,
  3811. 15812,16142,16466,16781,17090,17393,17690,17981,
  3812. 18266,18546,18822,19093,19359,19621,19879,20133,
  3813. 20383,20630,20873,21113,21349,21583,21813,22041,
  3814. 22265,22487,22707,22923,23138,23350,23559,23767,
  3815. 23972,24175,24376,24575,24772,24967,25160,25352,
  3816. 25542,25730,25916,26101,26284,26465,26645,26823,
  3817. 27000,27176,27350,27523,27695,27865,28034,28201,
  3818. 28368,28533,28697,28860,29021,29182,29341,29500,
  3819. 29657,29813,29969,30123,30276,30429,30580,30730,
  3820. 30880,31028,31176,31323,31469,31614,31758,31902,
  3821. 32045,32186,32327,32468,32607,32746,32884,33021,
  3822. 33158,33294,33429,33564,33697,33831,33963,34095,
  3823. 34226,34357,34486,34616,34744,34873,35000,35127,
  3824. 35253,35379,35504,35629,35753,35876,35999,36122,
  3825. 36244,36365,36486,36606,36726,36845,36964,37083,
  3826. 37201,37318,37435,37551,37668,37783,37898,38013,
  3827. 38127,38241,38354,38467,38580,38692,38803,38915,
  3828. 39026,39136,39246,39356,39465,39574,39682,39790,
  3829. 39898,40005,40112,40219,40325,40431,40537,40642,
  3830. 40747,40851,40955,41059,41163,41266,41369,41471,
  3831. 41573,41675,41777,41878,41979,42079,42179,42279,
  3832. 42379,42478,42577,42676,42775,42873,42971,43068,
  3833. 43165,43262,43359,43456,43552,43648,43743,43839,
  3834. 43934,44028,44123,44217,44311,44405,44499,44592,
  3835. 44685,44778,44870,44962,45054,45146,45238,45329,
  3836. 45420,45511,45601,45692,45782,45872,45961,46051,
  3837. 46140,46229,46318,46406,46494,46583,46670,46758,
  3838. 46846,46933,47020,47107,47193,47280,47366,47452,
  3839. 47538,47623,47709,47794,47879,47964,48048,48133,
  3840. 48217,48301,48385,48468,48552,48635,48718,48801,
  3841. 48884,48966,49048,49131,49213,49294,49376,49458,
  3842. 49539,49620,49701,49782,49862,49943,50023,50103,
  3843. 50183,50263,50342,50422,50501,50580,50659,50738,
  3844. 50816,50895,50973,51051,51129,51207,51285,51362,
  3845. 51439,51517,51594,51671,51747,51824,51900,51977,
  3846. 52053,52129,52205,52280,52356,52432,52507,52582,
  3847. 52657,52732,52807,52881,52956,53030,53104,53178,
  3848. 53252,53326,53400,53473,53546,53620,53693,53766,
  3849. 53839,53911,53984,54056,54129,54201,54273,54345,
  3850. 54417,54489,54560,54632,54703,54774,54845,54916,
  3851. 54987,55058,55129,55199,55269,55340,55410,55480,
  3852. 55550,55620,55689,55759,55828,55898,55967,56036,
  3853. 56105,56174,56243,56311,56380,56448,56517,56585,
  3854. 56653,56721,56789,56857,56924,56992,57059,57127,
  3855. 57194,57261,57328,57395,57462,57529,57595,57662,
  3856. 57728,57795,57861,57927,57993,58059,58125,58191,
  3857. 58256,58322,58387,58453,58518,58583,58648,58713,
  3858. 58778,58843,58908,58972,59037,59101,59165,59230,
  3859. 59294,59358,59422,59486,59549,59613,59677,59740,
  3860. 59804,59867,59930,59993,60056,60119,60182,60245,
  3861. 60308,60370,60433,60495,60558,60620,60682,60744,
  3862. 60806,60868,60930,60992,61054,61115,61177,61238,
  3863. 61300,61361,61422,61483,61544,61605,61666,61727,
  3864. 61788,61848,61909,61969,62030,62090,62150,62211,
  3865. 62271,62331,62391,62450,62510,62570,62630,62689,
  3866. 62749,62808,62867,62927,62986,63045,63104,63163,
  3867. 63222,63281,63340,63398,63457,63515,63574,63632,
  3868. 63691,63749,63807,63865,63923,63981,64039,64097,
  3869. 64155,64212,64270,64328,64385,64443,64500,64557,
  3870. 64614,64672,64729,64786,64843,64900,64956,65013,
  3871. 65070,65126,65183,65239,65296,65352,65409,65465
  3872. };
  3873. const png_byte png_sRGB_delta[512] =
  3874. {
  3875. 207,201,158,129,113,100,90,82,77,72,68,64,61,59,56,54,
  3876. 52,50,49,47,46,45,43,42,41,40,39,39,38,37,36,36,
  3877. 35,34,34,33,33,32,32,31,31,30,30,30,29,29,28,28,
  3878. 28,27,27,27,27,26,26,26,25,25,25,25,24,24,24,24,
  3879. 23,23,23,23,23,22,22,22,22,22,22,21,21,21,21,21,
  3880. 21,20,20,20,20,20,20,20,20,19,19,19,19,19,19,19,
  3881. 19,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,
  3882. 17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,
  3883. 16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,
  3884. 15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,
  3885. 14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,13,
  3886. 13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,
  3887. 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,
  3888. 12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,
  3889. 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
  3890. 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
  3891. 11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3892. 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3893. 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3894. 10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3895. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3896. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3897. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3898. 9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3899. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3900. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3901. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3902. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3903. 8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,
  3904. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  3905. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  3906. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
  3907. };
  3908. #endif /* SIMPLIFIED READ/WRITE sRGB support */
  3909. /* SIMPLIFIED READ/WRITE SUPPORT */
  3910. #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\
  3911. defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)
  3912. static int
  3913. png_image_free_function(png_voidp argument)
  3914. {
  3915. png_imagep image = png_voidcast(png_imagep, argument);
  3916. png_controlp cp = image->opaque;
  3917. png_control c;
  3918. /* Double check that we have a png_ptr - it should be impossible to get here
  3919. * without one.
  3920. */
  3921. if (cp->png_ptr == NULL)
  3922. return 0;
  3923. /* First free any data held in the control structure. */
  3924. # ifdef PNG_STDIO_SUPPORTED
  3925. if (cp->owned_file != 0)
  3926. {
  3927. FILE *fp = png_voidcast(FILE*, cp->png_ptr->io_ptr);
  3928. cp->owned_file = 0;
  3929. /* Ignore errors here. */
  3930. if (fp != NULL)
  3931. {
  3932. cp->png_ptr->io_ptr = NULL;
  3933. (void)fclose(fp);
  3934. }
  3935. }
  3936. # endif
  3937. /* Copy the control structure so that the original, allocated, version can be
  3938. * safely freed. Notice that a png_error here stops the remainder of the
  3939. * cleanup, but this is probably fine because that would indicate bad memory
  3940. * problems anyway.
  3941. */
  3942. c = *cp;
  3943. image->opaque = &c;
  3944. png_free(c.png_ptr, cp);
  3945. /* Then the structures, calling the correct API. */
  3946. if (c.for_write != 0)
  3947. {
  3948. # ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
  3949. png_destroy_write_struct(&c.png_ptr, &c.info_ptr);
  3950. # else
  3951. png_error(c.png_ptr, "simplified write not supported");
  3952. # endif
  3953. }
  3954. else
  3955. {
  3956. # ifdef PNG_SIMPLIFIED_READ_SUPPORTED
  3957. png_destroy_read_struct(&c.png_ptr, &c.info_ptr, NULL);
  3958. # else
  3959. png_error(c.png_ptr, "simplified read not supported");
  3960. # endif
  3961. }
  3962. /* Success. */
  3963. return 1;
  3964. }
  3965. void PNGAPI
  3966. png_image_free(png_imagep image)
  3967. {
  3968. /* Safely call the real function, but only if doing so is safe at this point
  3969. * (if not inside an error handling context). Otherwise assume
  3970. * png_safe_execute will call this API after the return.
  3971. */
  3972. if (image != NULL && image->opaque != NULL &&
  3973. image->opaque->error_buf == NULL)
  3974. {
  3975. png_image_free_function(image);
  3976. image->opaque = NULL;
  3977. }
  3978. }
  3979. int /* PRIVATE */
  3980. png_image_error(png_imagep image, png_const_charp error_message)
  3981. {
  3982. /* Utility to log an error. */
  3983. png_safecat(image->message, (sizeof image->message), 0, error_message);
  3984. image->warning_or_error |= PNG_IMAGE_ERROR;
  3985. png_image_free(image);
  3986. return 0;
  3987. }
  3988. #endif /* SIMPLIFIED READ/WRITE */
  3989. #endif /* READ || WRITE */