2 Unix SMB/Netbios implementation.
4 replacement routines for broken systems
5 Copyright (C) Andrew Tridgell 1992-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern int DEBUGLEVEL
;
27 void replace_dummy(void)
31 #ifndef HAVE_FTRUNCATE
32 /*******************************************************************
33 ftruncate for operating systems that don't have it
34 ********************************************************************/
35 int ftruncate(int f
,SMB_OFF_T l
)
43 return fcntl(f
, F_FREESP
, &fl
);
49 /*******************************************************************
50 a mktime() replacement for those who don't have it - contributed by
51 C.A. Lademann <cal@zls.com>
52 ********************************************************************/
54 #define HOUR 60*MINUTE
57 time_t mktime(struct tm
*t
)
61 int mon
[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
67 epoch
= (t
->tm_year
- 70) * YEAR
+
68 (t
->tm_year
/ 4 - 70 / 4 - t
->tm_year
/ 100) * DAY
;
73 for(i
= 0; i
< t
->tm_mon
; i
++) {
74 epoch
+= mon
[m
] * DAY
;
75 if(m
== 1 && y
% 4 == 0 && (y
% 100 != 0 || y
% 400 == 0))
84 epoch
+= (t
->tm_mday
- 1) * DAY
;
85 epoch
+= t
->tm_hour
* HOUR
+ t
->tm_min
* MINUTE
+ t
->tm_sec
;
87 if((u
= localtime(&epoch
)) != NULL
) {
88 t
->tm_sec
= u
->tm_sec
;
89 t
->tm_min
= u
->tm_min
;
90 t
->tm_hour
= u
->tm_hour
;
91 t
->tm_mday
= u
->tm_mday
;
92 t
->tm_mon
= u
->tm_mon
;
93 t
->tm_year
= u
->tm_year
;
94 t
->tm_wday
= u
->tm_wday
;
95 t
->tm_yday
= u
->tm_yday
;
96 t
->tm_isdst
= u
->tm_isdst
;
101 #endif /* !HAVE_MKTIME */
106 /* Rename a file. (from libiberty in GNU binutils) */
107 int rename(const char *zfrom
, const char *zto
)
109 if (link (zfrom
, zto
) < 0)
114 || link (zfrom
, zto
) < 0)
117 return unlink (zfrom
);
124 * Search for a match in a netgroup. This replaces it on broken systems.
126 int innetgr(char *group
,char *host
,char *user
,char *dom
)
128 char *hst
, *usr
, *dm
;
131 while (getnetgrent(&hst
, &usr
, &dm
)) {
132 if (((host
== 0) || (hst
== 0) || !strcmp(host
, hst
)) &&
133 ((user
== 0) || (usr
== 0) || !strcmp(user
, usr
)) &&
134 ((dom
== 0) || (dm
== 0) || !strcmp(dom
, dm
))) {
146 #ifndef HAVE_INITGROUPS
147 /****************************************************************************
148 some systems don't have an initgroups call
149 ****************************************************************************/
150 int initgroups(char *name
,gid_t id
)
152 #ifndef HAVE_SETGROUPS
155 DEBUG(1,("WARNING: running without setgroups\n"));
158 /* yikes! no SETGROUPS or INITGROUPS? how can this work? */
161 gid_t grouplst
[NGROUPS_MAX
];
168 while (i
< NGROUPS_MAX
&&
169 ((g
= (struct group
*)getgrent()) != (struct group
*)NULL
)) {
174 while (gr
&& (*gr
!= (char)NULL
)) {
175 if (strcmp(name
,gr
) == 0) {
176 grouplst
[i
] = g
->gr_gid
;
185 return(setgroups(i
,grouplst
));
191 #if (defined(SecureWare) && defined(SCO))
192 /* This is needed due to needing the nap() function but we don't want
193 to include the Xenix libraries since that will break other things...
194 BTW: system call # 0x0c28 is the same as calling nap() */
195 long nap(long milliseconds
) {
196 return syscall(0x0c28, milliseconds
);
202 /*******************************************************************
203 safely copies memory, ensuring no overlap problems.
204 this is only used if the machine does not have it's own memmove().
205 this is not the fastest algorithm in town, but it will do for our
207 ********************************************************************/
208 void *memmove(void *dest
,const void *src
,int size
)
212 if (dest
==src
|| !size
) return(dest
);
214 d
= (unsigned long)dest
;
215 s
= (unsigned long)src
;
217 if ((d
>= (s
+size
)) || (s
>= (d
+size
))) {
219 memcpy(dest
,src
,size
);
224 /* we can forward copy */
225 if (s
-d
>= sizeof(int) &&
228 !(size
%sizeof(int))) {
229 /* do it all as words */
230 int *idest
= (int *)dest
;
231 int *isrc
= (int *)src
;
233 for (i
=0;i
<size
;i
++) idest
[i
] = isrc
[i
];
236 char *cdest
= (char *)dest
;
237 char *csrc
= (char *)src
;
238 for (i
=0;i
<size
;i
++) cdest
[i
] = csrc
[i
];
241 /* must backward copy */
242 if (d
-s
>= sizeof(int) &&
245 !(size
%sizeof(int))) {
246 /* do it all as words */
247 int *idest
= (int *)dest
;
248 int *isrc
= (int *)src
;
250 for (i
=size
-1;i
>=0;i
--) idest
[i
] = isrc
[i
];
253 char *cdest
= (char *)dest
;
254 char *csrc
= (char *)src
;
255 for (i
=size
-1;i
>=0;i
--) cdest
[i
] = csrc
[i
];
263 /****************************************************************************
265 ****************************************************************************/
266 char *strdup(const char *s
)
271 if (!s
) return(NULL
);
274 ret
= (char *)malloc(len
);
275 if (!ret
) return(NULL
);
281 #ifdef REPLACE_INET_NTOA
282 char *rep_inet_ntoa(struct in_addr ip
)
284 unsigned char *p
= (unsigned char *)&ip
.s_addr
;
287 slprintf(buf
, 17, "%d.%d.%d.%d",
288 (int)p
[0], (int)p
[1], (int)p
[2], (int)p
[3]);
290 slprintf(buf
, 17, "%d.%d.%d.%d",
291 (int)p
[3], (int)p
[2], (int)p
[1], (int)p
[0]);