1 | /* |
---|
2 | * This file contains miscellaneous pieces of code which regfio.c |
---|
3 | * depends upon, from the Samba Subversion tree. See: |
---|
4 | * http://websvn.samba.org/cgi-bin/viewcvs.cgi/trunk/source/ |
---|
5 | * |
---|
6 | * Copyright (C) 2005-2006,2009 Timothy D. Morgan |
---|
7 | * Copyright (C) 1992-2005 Samba development team |
---|
8 | * (see individual files under Subversion for details.) |
---|
9 | * |
---|
10 | * This program is free software; you can redistribute it and/or modify |
---|
11 | * it under the terms of the GNU General Public License as published by |
---|
12 | * the Free Software Foundation; version 3 of the License. |
---|
13 | * |
---|
14 | * This program is distributed in the hope that it will be useful, |
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | * GNU General Public License for more details. |
---|
18 | * |
---|
19 | * You should have received a copy of the GNU General Public License |
---|
20 | * along with this program; if not, write to the Free Software |
---|
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
22 | * |
---|
23 | * $Id: smb_deps.c 134 2009-01-16 18:36:04Z tim $ |
---|
24 | */ |
---|
25 | |
---|
26 | #include "../include/smb_deps.h" |
---|
27 | |
---|
28 | |
---|
29 | /* These act as replacements for numerous Samba memory allocation |
---|
30 | * functions. |
---|
31 | */ |
---|
32 | void* zalloc(size_t size) |
---|
33 | { |
---|
34 | void* ret_val = NULL; |
---|
35 | if((ret_val = (void*)malloc(size)) != NULL) |
---|
36 | memset(ret_val, 0, size); |
---|
37 | return ret_val; |
---|
38 | } |
---|
39 | |
---|
40 | void* zcalloc(size_t size, unsigned int count) |
---|
41 | { |
---|
42 | return zalloc(size*count); |
---|
43 | } |
---|
44 | |
---|
45 | /* From lib/time.c */ |
---|
46 | |
---|
47 | /**************************************************************************** |
---|
48 | Put a 8 byte filetime from a time_t |
---|
49 | This takes real GMT as input and converts to kludge-GMT |
---|
50 | ****************************************************************************/ |
---|
51 | void unix_to_nt_time(NTTIME *nt, time_t t) |
---|
52 | { |
---|
53 | double d; |
---|
54 | |
---|
55 | if (t==0) |
---|
56 | { |
---|
57 | nt->low = 0; |
---|
58 | nt->high = 0; |
---|
59 | return; |
---|
60 | } |
---|
61 | |
---|
62 | if (t == TIME_T_MAX) |
---|
63 | { |
---|
64 | nt->low = 0xffffffff; |
---|
65 | nt->high = 0x7fffffff; |
---|
66 | return; |
---|
67 | } |
---|
68 | |
---|
69 | if (t == -1) |
---|
70 | { |
---|
71 | nt->low = 0xffffffff; |
---|
72 | nt->high = 0xffffffff; |
---|
73 | return; |
---|
74 | } |
---|
75 | |
---|
76 | /* this converts GMT to kludge-GMT */ |
---|
77 | /* XXX: This was removed due to difficult dependency requirements. |
---|
78 | * So far, times appear to be correct without this adjustment, but |
---|
79 | * that may be proven wrong with adequate testing. |
---|
80 | */ |
---|
81 | /* t -= TimeDiff(t) - get_serverzone(); */ |
---|
82 | |
---|
83 | d = (double)(t); |
---|
84 | d += TIME_FIXUP_CONSTANT; |
---|
85 | d *= 1.0e7; |
---|
86 | |
---|
87 | nt->high = (uint32)(d * (1.0/(4.0*(double)(1<<30)))); |
---|
88 | nt->low = (uint32)(d - ((double)nt->high)*4.0*(double)(1<<30)); |
---|
89 | } |
---|
90 | |
---|
91 | |
---|
92 | /**************************************************************************** |
---|
93 | Interpret an 8 byte "filetime" structure to a time_t |
---|
94 | It's originally in "100ns units since jan 1st 1601" |
---|
95 | |
---|
96 | An 8 byte value of 0xffffffffffffffff will be returned as (time_t)0. |
---|
97 | |
---|
98 | It appears to be kludge-GMT (at least for file listings). This means |
---|
99 | its the GMT you get by taking a localtime and adding the |
---|
100 | serverzone. This is NOT the same as GMT in some cases. This routine |
---|
101 | converts this to real GMT. |
---|
102 | ****************************************************************************/ |
---|
103 | time_t nt_time_to_unix(const NTTIME* nt) |
---|
104 | { |
---|
105 | double d; |
---|
106 | time_t ret; |
---|
107 | /* The next two lines are a fix needed for the |
---|
108 | broken SCO compiler. JRA. */ |
---|
109 | time_t l_time_min = TIME_T_MIN; |
---|
110 | time_t l_time_max = TIME_T_MAX; |
---|
111 | |
---|
112 | if (nt->high == 0 || (nt->high == 0xffffffff && nt->low == 0xffffffff)) |
---|
113 | return(0); |
---|
114 | |
---|
115 | d = ((double)nt->high)*4.0*(double)(1<<30); |
---|
116 | d += (nt->low&0xFFF00000); |
---|
117 | d *= 1.0e-7; |
---|
118 | |
---|
119 | /* now adjust by 369 years to make the secs since 1970 */ |
---|
120 | d -= TIME_FIXUP_CONSTANT; |
---|
121 | |
---|
122 | if (d <= l_time_min) |
---|
123 | return (l_time_min); |
---|
124 | |
---|
125 | if (d >= l_time_max) |
---|
126 | return (l_time_max); |
---|
127 | |
---|
128 | ret = (time_t)(d+0.5); |
---|
129 | |
---|
130 | /* this takes us from kludge-GMT to real GMT */ |
---|
131 | /* XXX: This was removed due to difficult dependency requirements. |
---|
132 | * So far, times appear to be correct without this adjustment, but |
---|
133 | * that may be proven wrong with adequate testing. |
---|
134 | */ |
---|
135 | /* |
---|
136 | ret -= get_serverzone(); |
---|
137 | ret += LocTimeDiff(ret); |
---|
138 | */ |
---|
139 | |
---|
140 | return(ret); |
---|
141 | } |
---|
142 | |
---|
143 | /* End of stuff from lib/time.c */ |
---|