vfs: check userland buffers before reading them.
[haiku.git] / src / apps / mail / Utilities.cpp
blobcc5010d7e1e3f53e50040cc46b9033b728bd6f9b
1 /*
2 Open Tracker License
4 Terms and Conditions
6 Copyright (c) 1991-2001, Be Incorporated. All rights reserved.
8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 Except as contained in this notice, the name of Be Incorporated shall not be
26 used in advertising or otherwise to promote the sale, use or other dealings in
27 this Software without prior written authorization from Be Incorporated.
29 BeMail(TM), Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
30 of Be Incorporated in the United States and other countries. Other brand product
31 names are registered trademarks or trademarks of their respective holders.
32 All rights reserved.
36 #include "Utilities.h"
38 #include <fs_attr.h>
39 #include <Node.h>
40 #include <String.h>
41 #include <TypeConstants.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
48 status_t
49 WriteAttrString(BNode* node, const char* attr, const char* value)
51 if (!value)
52 value = B_EMPTY_STRING;
54 ssize_t size = node->WriteAttr(attr, B_STRING_TYPE, 0, value,
55 strlen(value) + 1);
57 return size >= 0 ? B_OK : size;
61 //====================================================================
62 // case-insensitive version of strcmp
65 int32
66 cistrcmp(const char* str1, const char* str2)
68 char c1;
69 char c2;
70 int32 len;
71 int32 loop;
73 len = strlen(str1) + 1;
74 for (loop = 0; loop < len; loop++) {
75 c1 = str1[loop];
76 if (c1 >= 'A' && c1 <= 'Z')
77 c1 += 'a' - 'A';
78 c2 = str2[loop];
79 if (c2 >= 'A' && c2 <= 'Z')
80 c2 += 'a' - 'A';
81 if (c1 == c2) {
82 } else if (c1 < c2) {
83 return -1;
84 } else if (c1 > c2 || !c2) {
85 return 1;
88 return 0;
92 //====================================================================
93 // case-insensitive version of strncmp
96 int32
97 cistrncmp(const char* str1, const char* str2, int32 max)
99 char c1;
100 char c2;
101 int32 loop;
103 for (loop = 0; loop < max; loop++) {
104 c1 = *str1++;
105 if (c1 >= 'A' && c1 <= 'Z')
106 c1 += 'a' - 'A';
107 c2 = *str2++;
108 if (c2 >= 'A' && c2 <= 'Z')
109 c2 += 'a' - 'A';
110 if (c1 == c2) {
111 } else if (c1 < c2) {
112 return -1;
113 } else if (c1 > c2 || !c2) {
114 return 1;
117 return 0;
121 //--------------------------------------------------------------------
122 // case-insensitive version of strstr
125 char*
126 cistrstr(const char* cs, const char* ct)
128 char c1;
129 char c2;
130 int32 cs_len;
131 int32 ct_len;
132 int32 loop1;
133 int32 loop2;
135 cs_len = strlen(cs);
136 ct_len = strlen(ct);
137 for (loop1 = 0; loop1 < cs_len; loop1++) {
138 if (cs_len - loop1 < ct_len)
139 return NULL;
141 for (loop2 = 0; loop2 < ct_len; loop2++) {
142 c1 = cs[loop1 + loop2];
143 if ((c1 >= 'A') && (c1 <= 'Z'))
144 c1 += ('a' - 'A');
145 c2 = ct[loop2];
146 if ((c2 >= 'A') && (c2 <= 'Z'))
147 c2 += ('a' - 'A');
148 if (c1 != c2)
149 goto next;
151 return const_cast<char*>(&cs[loop1]);
152 next:
153 // label must be followed by a statement
156 return NULL;
160 //--------------------------------------------------------------------
161 // return length of \n terminated line
164 int32
165 linelen(char* str, int32 len, bool header)
167 int32 loop;
169 for (loop = 0; loop < len; loop++) {
170 if (str[loop] == '\n') {
171 if (!header || loop < 2
172 || (header && str[loop + 1] != ' ' && str[loop + 1] != '\t'))
173 return loop + 1;
176 return len;