1 /* te-vms.c -- Utilities for VMS.
2 Copyright (C) 2009-2023 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. */
23 /* The purpose 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. */
29 #define __NEW_STARLET 1
30 #include <vms/starlet.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>
38 #include <vms/descrip.h>
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. */
56 unsigned short status
, count
;
62 /* Variable length string. */
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. */
75 translate_unix (char *name
, int type ATTRIBUTE_UNUSED
)
77 strncpy (filename_buff
, name
, MAXPATH
);
78 filename_buff
[MAXPATH
- 1] = (char) 0;
82 /* Wrapper for DECC function that converts a Unix filespec
83 to VMS style filespec. */
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;
100 #include <sys/stat.h>
103 #define VMS_EPOCH_OFFSET 35067168000000000LL
104 #define VMS_GRANULARITY_FACTOR 10000000
108 /* Return VMS file date, size, format, version given a name. */
111 vms_file_stats_name (const char *dirname
,
112 const char *filename
,
124 unsigned long long create
;
126 char ascnamebuff
[256];
130 { ATR$S_CREDATE
, ATR$C_CREDATE
, &create
},
131 { ATR$S_RECATTR
, ATR$C_RECATTR
, &recattr
},
132 { ATR$S_ASCNAME
, ATR$C_ASCNAME
, &ascnamebuff
},
137 struct dsc$descriptor_fib fibdsc
= {sizeof (fib
), (void *) &fib
};
145 struct dsc$descriptor_s filedsc
146 = {NAM$C_MAXRSS
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, (void *) file
.string
};
147 struct vstring device
;
148 struct dsc$descriptor_s devicedsc
149 = {NAM$C_MAXRSS
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, (void *) device
.string
};
150 struct vstring result
;
151 struct dsc$descriptor_s resultdsc
152 = {NAM$C_MAXRSS
, DSC$K_DTYPE_VT
, DSC$K_CLASS_VS
, (void *) result
.string
};
154 if (strcmp (filename
, "<internal>") == 0
155 || strcmp (filename
, "<built-in>") == 0)
172 fullname
= concat (dirname
, filename
, NULL
);
173 tryfile
= to_vms_file_spec (fullname
);
175 /* Allocate and initialize a FAB and NAM structures. */
179 nam
.nam$l_esa
= file
.string
;
180 nam
.nam$b_ess
= NAM$C_MAXRSS
;
181 nam
.nam$l_rsa
= result
.string
;
182 nam
.nam$b_rss
= NAM$C_MAXRSS
;
183 fab
.fab$l_fna
= tryfile
;
184 fab
.fab$b_fns
= strlen (tryfile
);
185 fab
.fab$l_nam
= &nam
;
187 /* Validate filespec syntax and device existence. */
188 status
= SYS$
PARSE (&fab
, 0, 0);
189 if ((status
& 1) != 1)
195 file
.string
[nam
.nam$b_esl
] = 0;
197 /* Find matching filespec. */
198 status
= SYS$
SEARCH (&fab
, 0, 0);
199 if ((status
& 1) != 1)
205 file
.string
[nam
.nam$b_esl
] = 0;
206 result
.string
[result
.length
=nam
.nam$b_rsl
] = 0;
208 /* Get the device name and assign an IO channel. */
209 strncpy (device
.string
, nam
.nam$l_dev
, nam
.nam$b_dev
);
210 devicedsc
.dsc$w_length
= nam
.nam$b_dev
;
212 status
= SYS$
ASSIGN (&devicedsc
, &chan
, 0, 0, 0);
213 if ((status
& 1) != 1)
219 /* Initialize the FIB and fill in the directory id field. */
220 memset (&fib
, 0, sizeof (fib
));
221 fib
.fib$w_did
[0] = nam
.nam$w_did
[0];
222 fib
.fib$w_did
[1] = nam
.nam$w_did
[1];
223 fib
.fib$w_did
[2] = nam
.nam$w_did
[2];
226 strcpy (file
.string
, (strrchr (result
.string
, ']') + 1));
227 filedsc
.dsc$w_length
= strlen (file
.string
);
228 result
.string
[result
.length
= 0] = 0;
230 /* Open and close the file to fill in the attributes. */
232 = SYS$
QIOW (0, chan
, IO$_ACCESS
|IO$M_ACCESS
, &iosb
, 0, 0,
233 &fibdsc
, &filedsc
, &result
.length
, &resultdsc
, &atrlst
, 0);
234 if ((status
& 1) != 1)
240 if ((iosb
.status
& 1) != 1)
246 result
.string
[result
.length
] = 0;
247 status
= SYS$
QIOW (0, chan
, IO$_DEACCESS
, &iosb
, 0, 0, &fibdsc
, 0, 0, 0,
249 if ((status
& 1) != 1)
255 if ((iosb
.status
& 1) != 1)
261 /* Deassign the channel and exit. */
262 status
= SYS$
DASSGN (chan
);
263 if ((status
& 1) != 1)
269 if (cdt
) *cdt
= create
;
270 if (siz
) *siz
= (512 * 65536 * recattr
.fat$w_efblkh
) +
271 (512 * (recattr
.fat$w_efblkl
- 1)) +
272 recattr
.fat$w_ffbyte
;
273 if (rfo
) *rfo
= recattr
.fat$v_rtype
;
274 if (ver
) *ver
= strtol (strrchr (ascnamebuff
, ';') + 1, 0, 10);
279 long long gmtoff
, secs
, nsecs
;
281 fullname
= concat (dirname
, filename
, NULL
);
283 if ((stat (fullname
, &buff
)) != 0)
291 ts
= localtime (& buff
.st_mtime
);
293 #ifdef HAVE_TM_GMTOFF
294 gmtoff
= ts
->tm_gmtoff
;
297 extern long timezone
;
299 if (ts
->tm_isdst
== 1)
300 gmtoff
= - (timezone
- 3600);
306 #ifdef HAVE_ST_MTIM_TV_SEC
307 secs
= buff
.st_mtim
.tv_sec
;
309 secs
= buff
.st_mtime
;
312 #ifdef HAVE_ST_MTIM_TV_NSEC
313 nsecs
= buff
.st_mtim
.tv_nsec
;
318 /* VMS timestamps are stored in local time to 100 nsec accuracy, but by
319 experiment I found timestamps truncated to (at least) microseconds
320 on an NFS mounted filesystem, hence the adjustment below. DBR. */
321 *cdt
= ((secs
+ gmtoff
) * VMS_GRANULARITY_FACTOR
)
322 + (nsecs
/ 1000 * 10) + VMS_EPOCH_OFFSET
;
329 *rfo
= 2; /* Stream LF format. */
331 /* Returning a file version of 0 is never correct for debug info, version 1
332 will be correct if file editing is done only on the Unix side. If editing
333 is done on the VMS side, then its TBD. */
343 vms_dwarf2_file_time_name (const char *filename
, const char *dirname
)
347 if (vms_file_stats_name (dirname
, filename
, &cdt
, 0, 0, 0) == 0)
354 vms_dwarf2_file_size_name (const char *filename
, const char *dirname
)
358 if (vms_file_stats_name (dirname
, filename
, 0, &siz
, 0, 0) == 0)
364 /* VMS debugger needs the filename with version appended. */
365 /* Longest filename on VMS is 255 characters. Largest version is 32768. */
367 vms_dwarf2_file_name (const char *filename
, const char *dirname
)
370 static char buff
[255 + 7];
372 vms_file_stats_name (dirname
, filename
, 0, 0, 0, &ver
);
373 snprintf (buff
, 255 + 7, "%s;%d", filename
, ver
);