4 limits.c - manages data/functions for limiting the sizes of images read from files.
9 if (!i_set_image_file_limits(max_width, max_height, max_bytes)) {
12 i_get_image_file_limits(&max_width, &max_height, &max_bytes);
14 // file reader implementations
15 if (!i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t))) {
21 Manage limits for image files read by Imager.
23 Setting a value of zero means that limit will be ignored.
30 #define IMAGER_NO_CONTEXT
34 =item im_set_image_file_limits(ctx, width, height, bytes)
35 X<im_set_image_file_limits API>X<i_set_image_file_limits API>
37 =synopsis im_set_image_file_limits(aIMCTX, 500, 500, 1000000);
38 =synopsis i_set_image_file_limits(500, 500, 1000000);
40 Set limits on the sizes of images read by Imager.
42 Setting a limit to 0 means that limit is ignored.
44 Negative limits result in failure.
52 i_img_dim width, height - maximum width and height.
56 size_t bytes - maximum size in memory in bytes. A value of zero sets
57 this limit to one gigabyte.
61 Returns non-zero on success.
63 Also callable as C<i_set_image_file_limits(width, height, bytes)>.
69 im_set_image_file_limits(pIMCTX, i_img_dim width, i_img_dim height, size_t bytes) {
73 i_push_error(0, "width must be non-negative");
77 i_push_error(0, "height must be non-negative");
81 aIMCTX->max_width = width;
82 aIMCTX->max_height = height;
83 aIMCTX->max_bytes = bytes ? bytes : DEF_BYTES_LIMIT;
89 =item im_get_image_file_limits(ctx, &width, &height, &bytes)
90 X<im_get_image_file_limits API>X<i_get_image_file_limits>
92 =synopsis im_get_image_file_limits(aIMCTX, &width, &height, &bytes)
93 =synopsis i_get_image_file_limits(&width, &height, &bytes)
95 Retrieves the file limits set by i_set_image_file_limits().
101 i_img_dim *width, *height - the maximum width and height of the image.
105 size_t *bytes - size in memory of the image in bytes.
109 Also callable as C<i_get_image_file_limits(&width, &height, &bytes)>.
115 im_get_image_file_limits(pIMCTX, i_img_dim *width, i_img_dim *height, size_t *bytes) {
116 im_clear_error(aIMCTX);
118 *width = aIMCTX->max_width;
119 *height = aIMCTX->max_height;
120 *bytes = aIMCTX->max_bytes;
126 =item im_int_check_image_file_limits(width, height, channels, sample_size)
127 X<im_int_check_image_file_limits API>X<i_int_check_image_file_limits>
129 =synopsis im_int_check_image_file_limits(aIMCTX, width, height, channels, sizeof(i_sample_t))
130 =synopsis i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t))
132 Checks the size of a file in memory against the configured image file
135 This also range checks the values to those permitted by Imager and
136 checks for overflows in calculating the size.
138 Returns non-zero if the file is within limits.
140 This function is intended to be called by image file read functions.
142 Also callable as C<i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t)>.
148 im_int_check_image_file_limits(pIMCTX, i_img_dim width, i_img_dim height, int channels, size_t sample_size) {
150 im_clear_error(aIMCTX);
153 im_push_errorf(aIMCTX, 0, "file size limit - image width of %" i_DF " is not positive",
157 if (aIMCTX->max_width && width > aIMCTX->max_width) {
158 im_push_errorf(aIMCTX, 0, "file size limit - image width of %" i_DF " exceeds limit of %" i_DF,
159 i_DFc(width), i_DFc(aIMCTX->max_width));
164 im_push_errorf(aIMCTX, 0, "file size limit - image height of %" i_DF " is not positive",
169 if (aIMCTX->max_height && height > aIMCTX->max_height) {
170 im_push_errorf(aIMCTX, 0, "file size limit - image height of %" i_DF
171 " exceeds limit of %" i_DF, i_DFc(height), i_DFc(aIMCTX->max_height));
175 if (channels < 1 || channels > MAXCHANNELS) {
176 im_push_errorf(aIMCTX, 0, "file size limit - channels %d out of range",
181 if (sample_size < 1 || sample_size > sizeof(long double)) {
182 im_push_errorf(aIMCTX, 0, "file size limit - sample_size %ld out of range",
187 /* This overflow check is a bit more paranoid than usual.
188 We don't protect it under max_bytes since we always want to check
191 bytes = width * height * channels * sample_size;
192 if (bytes / width != height * channels * sample_size
193 || bytes / height != width * channels * sample_size) {
194 im_push_error(aIMCTX, 0, "file size limit - integer overflow calculating storage");
197 if (aIMCTX->max_bytes) {
198 if (bytes > aIMCTX->max_bytes) {
199 im_push_errorf(aIMCTX, 0, "file size limit - storage size of %lu "
200 "exceeds limit of %lu", (unsigned long)bytes,
201 (unsigned long)aIMCTX->max_bytes);