-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.c
245 lines (192 loc) · 6.75 KB
/
header.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/**************************************************************************/
/* header.c : fonctions propres à la construction de l'entête */
/**************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "messages.h"
#include "header.h"
#include "debug.h"
#include "aff.h"
/**************************************************************************/
/* atoNb : petite fonction utilitaire qui convertit une chaine */
/* representant soit un hexadécimal (précédé d'un &) soit un décimal */
/**************************************************************************/
unsigned int atoNb(char* val)
{
unsigned int nb;
if ((val[0]=='&') || (val[0]=='#') || (val[0]=='x'))
sscanf(val+1,"%x",&nb);
else
nb=(unsigned int)atoi(val);
DEBUG("atoNb chaine : %s.\n",val);
DEBUG("atoNb conversion : %d.\n",nb);
return nb;
}
/**************************************************************************/
/* getNomFichAms : permet d'obtenir à partir du chemin d'accès du fichier */
/* le nom sur 11 caractère du fichier amsdos */
/**************************************************************************/
void getNomFichAms(char *nomFichAms,char *pathFichAms)
{
int a=10;
char *fin=pathFichAms+strlen(pathFichAms)-1;
while(a) nomFichAms[a--]=' '; /* nettoyage par l'espace */
a=0;
/* extraction du nom du fichier sans le chemin d'accès */
while (fin>=pathFichAms && *fin!='/' &&*fin!='\\') fin--;
pathFichAms=fin+1;
DEBUG("Nom du fichier extrait %s\n",pathFichAms);
/* copie et vérification du nom du ficher amdos */
if (strlen(pathFichAms)>12)
{printf(ERR10);exit(1);}
while(*pathFichAms && *pathFichAms!='.' && a < 8)
*(nomFichAms + a++) = *pathFichAms++;
if(a > 8 && *pathFichAms=='.') {
printf(ERR11);
exit(1);
}
/* copie de l'extension si elle existe*/
if (*pathFichAms=='.')
memcpy(nomFichAms+8,++pathFichAms,3);
DEBUG("Extension du fichier extrait %s\n",pathFichAms);
if (strlen(pathFichAms)>3) {printf(ERR12);exit(1);}
}
/**********************************************/
/* affDump : affiche la copie écran de */
/* l'en-tête du fichier Amsdos */
/**********************************************/
void affDump(unsigned char* buff)
{
int i=0,t=0;
unsigned short taille,adrLoad,adrExe,somme,somme2,somme3=0;
taille=0;
adrLoad=buff[ADRLOAD+1];
adrLoad=buff[ADRLOAD]+adrLoad<<8;
adrExe=buff[ADREXE+1];
adrExe=buff[ADREXE]+adrLoad<<8;
somme=buff[SOMME+1]*256 + buff[SOMME];
CLS();
LOCATE(1,1);
while(t<HEADSIZE)
{
SETCOL(32);
printf("%02x|",t);
for(i=0;i<8;i++)
AFFHDMP((unsigned char)buff[i+t]);
printf("%c[%d;%d;%dm | ",27,1,33,44);
for(i=0;i<8;i++)
AFFCDMP (buff[i+t]);
t+=8;
RESTDEFAULT();
putchar('\n');
}
LOCATE(1,1);
printf(MESS1,(unsigned char) buff[USER]);
printf(MESS2,buff+NOM); /* c'est bien une chaine */
printf(MESS3,(unsigned char)buff[TYPE]);
printf(MESS4,buff[TAILLE+1] *256 + buff[TAILLE]);
printf(MESS5,buff[ADRLOAD+1]*256 + buff[ADRLOAD]);
printf(MESS6,buff[ADREXE+1] *256 + buff[ADREXE]);
printf(MESS7,buff[SOMME+1] *256 + buff[SOMME]);
LOCATE(21,1);
}
/**********************************************/
/* dos2Ams : ajoute un en-tête au fichier Dos */
/* et écrit le résultat dans le fichier Ams */
/**********************************************/
void dos2Ams(char* pathFichDos,char* pathFichAms,char* nomFichAms,
char user, char type, unsigned short adrExe,unsigned short adrLoad,char verbose)
{
unsigned char *buff;
unsigned short somme=0,i;
unsigned long taille;
FILE *fichDos=fopen(pathFichDos,"rb"),*fichAms;
/* Le fichier source existe-t-il ? */
if (fichDos==NULL) {printf (ERR13,pathFichDos);exit(1);}
/* Test de la taille du fichier */
fseek(fichDos, 0, SEEK_END);
taille=ftell(fichDos);
if (taille>65535) {printf(ERR14);exit(1);}
DEBUG("Taille du fichier DOS : %do.\n", taille);
fseek(fichDos, 0, SEEK_SET); /* Pour lire, rembobinons. */
/* copie du contenu du fichier en mémoire (64K max, bah...) */
/* avec réservation de 128 octets pour l'en-tête */
buff=calloc(taille+HEADSIZE,1);
fread(buff+HEADSIZE,1,taille,fichDos);
DEBUG("Elements lus : %d.\n",taille);
/* remplissage de l'en-tête avec les informations données */
/* user */
buff[USER]= user;
/* nom de fichier */
memcpy(buff+NOM,nomFichAms,11);
/* type de fichier */
buff[TYPE]=type;
/* taille (en deux endroits différents) */
buff[TAILLE]=taille&255;
buff[TAILLE+1]=taille>>8;
buff[TAILLE2]=taille&255;
buff[TAILLE2+1]=taille>>8;
/* adresse de chargement */
buff[ADRLOAD]=(char)(adrLoad&255);
buff[ADRLOAD+1]=(char)(adrLoad>>8);
/* adresse d'exécution */
buff[ADREXE]=(char)(adrExe&255);
buff[ADREXE+1]=(char)(adrExe>>8);
if (verbose) printf(MESS6,adrExe);
/* somme de vérification */
for(i=0;i<SOMME;i++) somme+=buff[i];
DEBUG("Somme : %x\n",somme);
buff[SOMME]=(char)(somme&255);
buff[SOMME+1]=(char)(somme>>8);
/* si le mode verbeux est mis */
/* invoquer affDump est de mise */
if(verbose) affDump(buff);
/* sauvegarde (ouf !) */
fichAms=fopen(pathFichAms,"wb");
fwrite(buff,1,taille + HEADSIZE,fichAms);
DEBUG("Elements ecrits : %d.\n",taille + HEADSIZE);
}
/**************************************************************************/
/* info : obtenir les propriétés d'un fichier */
/* est-il un fichier amsdos ? */
/**************************************************************************/
void info(char* path)
{
unsigned short sommeLu,sommeDmp=0,i;
FILE* fichAms=fopen(path,"r");
unsigned char buff[HEADSIZE];
fread(buff,1,HEADSIZE,fichAms);
/* calcul de la somme de vérification */
/* et comparaison avec la somme lue dans l'en-tête */
for(i=0;i<SOMME;i++) sommeDmp+=buff[i];
sommeLu=buff[SOMME] + buff[SOMME+1]*256;
DEBUG("Somme Lu: %x.\n",sommeLu);
DEBUG("Somme Dmp : %x.\n",sommeDmp);
/* affichage de l'en-tête (dump) si le fichier est valide */
if(sommeLu!=sommeDmp)
{printf(MESS8,path,sommeLu,sommeDmp);return;}
affDump(buff);
}
/***************************/
/* Petit programme de test */
/***************************/
#ifdef TESTHC
int main()
{
char i[11],a;
getNomFichAms(i,"c:\\hahahaha\\hohohoo\\uhu.txt");
for(a=0;a<11;a++) putchar(i[a]);
putchar('\n'); putchar('\n');
getNomFichAms(i,"/mnt/zut/hopla/rahihi.tar");
for(a=0;a<11;a++) putchar(i[a]);
putchar('\n');
getNomFichAms(i,"/mnt/zut/hopla/rahihih");
for(a=0;a<11;a++) putchar(i[a]);
putchar('\n');
getNomFichAms(i,"/mnt/zut/hopla/r.scr");
for(a=0;a<11;a++) putchar(i[a]);
putchar('\n');
}
#endif