2009-09-07 Tristan Gingold <gingold@adacore.com>
[binutils.git] / bfd / vmsutil.c
blob3dbfb8cfc05f360def82819de6e33dd242b2bc4a
1 /* vmsutil.c -- Utilities for VMS.
2 Copyright 2009 Free Software Foundation, Inc.
4 Written by Douglas B Rupp <rupp@gnat.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
20 #include "sysdep.h"
21 #include "vmsutil.h"
23 /* The purspose of the two alternate versions below is to have one that
24 works for native VMS and one that works on an NFS mounted filesystem
25 (Unix Server/VMS client). The main issue being to generate the special
26 VMS file timestamps for the debug info. */
28 #ifdef VMS
29 #define __NEW_STARLET 1
30 #include <vms/starlet.h>
31 #include <vms/rms.h>
32 #include <vms/atrdef.h>
33 #include <vms/fibdef.h>
34 #include <vms/stsdef.h>
35 #include <vms/iodef.h>
36 #include <vms/fatdef.h>
37 #include <errno.h>
38 #include <vms/descrip.h>
39 #include <string.h>
40 #include <unixlib.h>
42 #define MAXPATH 256
44 /* Descrip.h doesn't have everything... */
45 typedef struct fibdef * __fibdef_ptr32 __attribute__ (( mode (SI) ));
47 struct dsc$descriptor_fib
49 unsigned int fib$l_len;
50 __fibdef_ptr32 fib$l_addr;
53 /* I/O Status Block. */
54 struct IOSB
56 unsigned short status, count;
57 unsigned int devdep;
60 static char *tryfile;
62 /* Variable length string. */
63 struct vstring
65 short length;
66 char string[NAM$C_MAXRSS+1];
69 static char filename_buff [MAXPATH];
70 static char vms_filespec [MAXPATH];
72 /* Callback function for filespec style conversion. */
74 static int
75 translate_unix (char *name, int type ATTRIBUTE_UNUSED)
77 strncpy (filename_buff, name, MAXPATH);
78 filename_buff [MAXPATH - 1] = (char) 0;
79 return 0;
82 /* Wrapper for DECC function that converts a Unix filespec
83 to VMS style filespec. */
85 static char *
86 to_vms_file_spec (char *filespec)
88 strncpy (vms_filespec, "", MAXPATH);
89 decc$to_vms (filespec, translate_unix, 1, 1);
90 strncpy (vms_filespec, filename_buff, MAXPATH);
92 vms_filespec [MAXPATH - 1] = (char) 0;
94 return vms_filespec;
97 #else /* not VMS */
99 #define _BSD_SOURCE 1
100 #include <sys/stat.h>
101 #include <time.h>
103 #define VMS_EPOCH_OFFSET 35067168000000000LL
104 #define VMS_GRANULARITY_FACTOR 10000000
106 #endif /* VMS */
108 /* Return VMS file date, size, format, version given a name. */
111 vms_file_stats_name (const char *filename,
112 long long *cdt,
113 long *siz,
114 char *rfo,
115 int *ver)
117 #ifdef VMS
118 struct FAB fab;
119 struct NAM nam;
121 unsigned long long create;
122 FAT recattr;
123 char ascnamebuff [256];
125 ATRDEF atrlst[]
127 { ATR$S_CREDATE, ATR$C_CREDATE, &create },
128 { ATR$S_RECATTR, ATR$C_RECATTR, &recattr },
129 { ATR$S_ASCNAME, ATR$C_ASCNAME, &ascnamebuff },
130 { 0, 0, 0}
133 FIBDEF fib;
134 struct dsc$descriptor_fib fibdsc = {sizeof (fib), (void *) &fib};
136 struct IOSB iosb;
138 long status;
139 unsigned short chan;
141 struct vstring file;
142 struct dsc$descriptor_s filedsc
143 = {NAM$C_MAXRSS, DSC$K_DTYPE_T, DSC$K_CLASS_S, (void *) file.string};
144 struct vstring device;
145 struct dsc$descriptor_s devicedsc
146 = {NAM$C_MAXRSS, DSC$K_DTYPE_T, DSC$K_CLASS_S, (void *) device.string};
147 struct vstring result;
148 struct dsc$descriptor_s resultdsc
149 = {NAM$C_MAXRSS, DSC$K_DTYPE_VT, DSC$K_CLASS_VS, (void *) result.string};
151 if (strcmp (filename, "<internal>") == 0
152 || strcmp (filename, "<built-in>") == 0)
154 if (cdt)
155 *cdt = 0;
157 if (siz)
158 *siz = 0;
160 if (rfo)
161 *rfo = 0;
163 if (ver)
164 *ver = 0;
166 return 0;
169 tryfile = to_vms_file_spec ((char *) filename);
171 /* Allocate and initialize a FAB and NAM structures. */
172 fab = cc$rms_fab;
173 nam = cc$rms_nam;
175 nam.nam$l_esa = file.string;
176 nam.nam$b_ess = NAM$C_MAXRSS;
177 nam.nam$l_rsa = result.string;
178 nam.nam$b_rss = NAM$C_MAXRSS;
179 fab.fab$l_fna = tryfile;
180 fab.fab$b_fns = strlen (tryfile);
181 fab.fab$l_nam = &nam;
183 /* Validate filespec syntax and device existence. */
184 status = SYS$PARSE (&fab, 0, 0);
185 if ((status & 1) != 1)
186 return 1;
188 file.string[nam.nam$b_esl] = 0;
190 /* Find matching filespec. */
191 status = SYS$SEARCH (&fab, 0, 0);
192 if ((status & 1) != 1)
193 return 1;
195 file.string[nam.nam$b_esl] = 0;
196 result.string[result.length=nam.nam$b_rsl] = 0;
198 /* Get the device name and assign an IO channel. */
199 strncpy (device.string, nam.nam$l_dev, nam.nam$b_dev);
200 devicedsc.dsc$w_length = nam.nam$b_dev;
201 chan = 0;
202 status = SYS$ASSIGN (&devicedsc, &chan, 0, 0, 0);
203 if ((status & 1) != 1)
204 return 1;
206 /* Initialize the FIB and fill in the directory id field. */
207 memset (&fib, 0, sizeof (fib));
208 fib.fib$w_did[0] = nam.nam$w_did[0];
209 fib.fib$w_did[1] = nam.nam$w_did[1];
210 fib.fib$w_did[2] = nam.nam$w_did[2];
211 fib.fib$l_acctl = 0;
212 fib.fib$l_wcc = 0;
213 strcpy (file.string, (strrchr (result.string, ']') + 1));
214 filedsc.dsc$w_length = strlen (file.string);
215 result.string[result.length = 0] = 0;
217 /* Open and close the file to fill in the attributes. */
218 status
219 = SYS$QIOW (0, chan, IO$_ACCESS|IO$M_ACCESS, &iosb, 0, 0,
220 &fibdsc, &filedsc, &result.length, &resultdsc, &atrlst, 0);
221 if ((status & 1) != 1)
222 return 1;
223 if ((iosb.status & 1) != 1)
224 return 1;
226 result.string[result.length] = 0;
227 status = SYS$QIOW (0, chan, IO$_DEACCESS, &iosb, 0, 0, &fibdsc, 0, 0, 0,
228 &atrlst, 0);
229 if ((status & 1) != 1)
230 return 1;
231 if ((iosb.status & 1) != 1)
232 return 1;
234 /* Deassign the channel and exit. */
235 status = SYS$DASSGN (chan);
236 if ((status & 1) != 1)
237 return 1;
239 if (cdt) *cdt = create;
240 if (siz) *siz = (512 * 65536 * recattr.fat$w_efblkh) +
241 (512 * (recattr.fat$w_efblkl - 1)) +
242 recattr.fat$w_ffbyte;
243 if (rfo) *rfo = recattr.fat$v_rtype;
244 if (ver) *ver = strtol (strrchr (ascnamebuff, ';') + 1, 0, 10);
245 #else /* not VMS */
247 struct stat buff;
248 struct tm *ts;
249 long long gmtoff, secs, nsecs;
251 if ((stat (filename, &buff)) != 0)
252 return 1;
254 if (cdt)
256 ts = localtime (& buff.st_mtime);
258 #ifdef HAVE_TM_GMTOFF
259 gmtoff = ts->tm_gmtoff;
260 #else
262 extern long timezone;
264 if (ts->tm_isdst == 1)
265 gmtoff = - (timezone - 3600);
266 else
267 gmtoff = - timezone;
269 #endif
271 #ifdef HAVE_ST_MTIM_TV_SEC
272 secs = buff.st_mtim.tv_sec;
273 #else
274 secs = buff.st_mtime;
275 #endif
277 #ifdef HAVE_ST_MTIM_TV_NSEC
278 nsecs = buff.st_mtim.tv_nsec;
279 #else
280 nsecs = 0;
281 #endif
283 /* VMS timestamps are stored in local time to 100 nsec accuracy, but by
284 experiment I found timestamps truncated to (at least) microseconds
285 on an NFS mounted filesystem, hence the adjustment below. DBR. */
286 *cdt = ((secs + gmtoff) * VMS_GRANULARITY_FACTOR)
287 + (nsecs / 1000 * 10) + VMS_EPOCH_OFFSET;
290 if (siz)
291 *siz = buff.st_size;
293 if (rfo)
294 *rfo = 2; /* Stream LF format. */
296 /* Returning a file version of 0 is never correct for debug info, version 1
297 will be correct if file editing is done only on the Unix side. If editing
298 is done on the VMS side, then its TBD. */
299 if (ver)
300 *ver = 1;
301 #endif /* VMS */
303 return 0;