]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - factor/factor.c
1 /* $NetBSD: factor.c,v 1.38 2020/10/12 13:54:51 christos Exp $ */
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
37 __COPYRIGHT("@(#) Copyright (c) 1989, 1993\
38 The Regents of the University of California. All rights reserved.");
41 __SCCSID("@(#)factor.c 8.4 (Berkeley) 5/4/95");
44 __RCSID("$NetBSD: factor.c,v 1.38 2020/10/12 13:54:51 christos Exp $");
47 __FBSDID("$FreeBSD: head/usr.bin/factor/factor.c 356666 2020-01-12 20:25:11Z gad $");
52 * factor - factor a number into primes
54 * By: Landon Curt Noll chongo@toad.com, ...!{sun,tolsoft}!hoptoad!chongo
56 * chongo <for a good prime call: 391581 * 2^216193 - 1> /\oo/\
59 * factor [-hx] [number] ...
61 * The form of the output is:
63 * number: factor1 factor1 factor2 factor3 factor3 factor3 ...
65 * where factor1 <= factor2 <= factor3 <= ...
67 * If the -h flag is specified, the output is in "human-readable" format.
68 * Duplicate factors are printed in the form of x^n.
70 * If the -x flag is specified numbers are printed in hex.
72 * If no number args are given, the list of numbers are read from stdin.
89 #include <openssl/bn.h>
91 #define PRIME_CHECKS 5
93 /* print factors for big numbers */
94 static void pollard_pminus1(BIGNUM
*, int, int);
99 typedef u_long BN_ULONG
;
102 #define BN_CTX_new() NULL
103 #define BN_new() calloc(sizeof(BIGNUM), 1)
104 #define BN_free(a) free(a)
106 #define BN_copy(a, b) *(a) = *(b)
107 #define BN_cmp(a, b) (*(a) - *(b))
108 #define BN_is_zero(v) (*(v) == 0)
109 #define BN_is_one(v) (*(v) == 1)
110 #define BN_mod_word(a, b) (*(a) % (b))
112 static BIGNUM
*BN_dup(const BIGNUM
*);
113 static int BN_dec2bn(BIGNUM
**, const char *);
114 static int BN_hex2bn(BIGNUM
**, const char *);
115 static BN_ULONG
BN_div_word(BIGNUM
*, BN_ULONG
);
116 static void BN_print_fp(FILE *, const BIGNUM
*);
120 static void BN_print_dec_fp(FILE *, const BIGNUM
*);
121 static void convert_str2bn(BIGNUM
**, char *);
122 static void pr_fact(BIGNUM
*, int, int); /* print factors of a value */
123 static void pr_print(BIGNUM
*, int, int); /* print a prime */
124 static void usage(void) __dead
;
126 static BN_CTX
*ctx
; /* just use a global context */
129 main(int argc
, char *argv
[])
132 int ch
, hflag
, xflag
;
133 char *p
, buf
[LINE_MAX
]; /* > max number of digits. */
139 errx(1, "can't initialise bignum");
141 while ((ch
= getopt(argc
, argv
, "hx")) != -1)
156 /* No args supplied, read numbers from stdin. */
159 if (fgets(buf
, sizeof(buf
), stdin
) == NULL
) {
164 for (p
= buf
; isblank((unsigned char)*p
); ++p
);
165 if (*p
== '\n' || *p
== '\0')
167 convert_str2bn(&val
, p
);
168 pr_fact(val
, hflag
, xflag
);
170 /* Factor the arguments. */
172 for (p
= *argv
; p
!= NULL
; p
= *++argv
) {
173 convert_str2bn(&val
, p
);
174 pr_fact(val
, hflag
, xflag
);
180 pr_exp(int i
, int xflag
)
182 printf(xflag
&& i
> 9 ? "^0x%x" : "^%d", i
);
186 pr_uint64(uint64_t i
, int xflag
)
188 printf(xflag
? " 0x%" PRIx64
: " %" PRIu64
, i
);
192 * pr_fact - print the factors of a number
194 * Print the factors of the number, from the lowest to the highest.
195 * A factor will be printed multiple times if it divides the value
198 * If hflag is specified, duplicate factors are printed in "human-
199 * readable" form of x^n.
201 * If the xflag is specified, numbers will be printed in hex.
203 * Factors are printed with leading tabs.
206 pr_fact(BIGNUM
*val
, int hflag
, int xflag
)
209 const uint64_t *fact
; /* The factor found. */
211 /* Firewall - catch 0 and 1. */
212 if (BN_is_zero(val
)) /* Historical practice; 0 just exits. */
214 if (BN_is_one(val
)) {
223 BN_print_fp(stdout
, val
);
225 BN_print_dec_fp(stdout
, val
);
228 for (fact
= &prime
[0]; !BN_is_one(val
); ++fact
) {
229 /* Look for the smallest factor. */
231 if (BN_mod_word(val
, (BN_ULONG
)*fact
) == 0)
233 } while (++fact
<= pr_limit
);
235 /* Watch for primes larger than the table. */
236 if (fact
> pr_limit
) {
241 BN_set_word(bnfact
, *(fact
- 1));
242 if (!BN_sqr(bnfact
, bnfact
, ctx
))
243 errx(1, "error in BN_sqr()");
244 if (BN_cmp(bnfact
, val
) > 0 ||
245 BN_is_prime_ex(val
, PRIME_CHECKS
, NULL
, NULL
) == 1)
246 pr_print(val
, hflag
, xflag
);
248 pollard_pminus1(val
, hflag
, xflag
);
250 pr_print(val
, hflag
, xflag
);
252 pr_print(NULL
, hflag
, xflag
);
256 /* Divide factor out until none are left. */
261 pr_uint64(*fact
, xflag
);
262 BN_div_word(val
, (BN_ULONG
)*fact
);
263 } while (BN_mod_word(val
, (BN_ULONG
)*fact
) == 0);
266 pr_uint64(*fact
, xflag
);
271 /* Let the user know we're doing something. */
278 pr_print(BIGNUM
*val
, int hflag
, int xflag
)
290 if (val
!= NULL
&& BN_cmp(val
, sval
) == 0) {
295 } else if (val
== NULL
) {
302 fputs(" 0x", stdout
);
303 BN_print_fp(stdout
, pval
);
306 BN_print_dec_fp(stdout
, pval
);
326 fprintf(stderr
, "Usage: %s [-hx] [value ...]\n", getprogname());
332 /* pollard p-1, algorithm from Jim Gillogly, May 2000 */
334 pollard_pminus1(BIGNUM
*val
, int hflag
, int xflag
)
336 BIGNUM
*base
, *rbase
, *num
, *i
, *x
;
344 BN_set_word(rbase
, 1);
346 if (!BN_add_word(rbase
, 1))
347 errx(1, "error in BN_add_word()");
349 BN_copy(base
, rbase
);
352 BN_mod_exp(base
, base
, i
, val
, ctx
);
358 if (!BN_gcd(x
, x
, val
, ctx
))
359 errx(1, "error in BN_gcd()");
362 if (BN_is_prime_ex(x
, PRIME_CHECKS
, NULL
, NULL
) == 1)
363 pr_print(x
, hflag
, xflag
);
365 pollard_pminus1(x
, hflag
, xflag
);
368 BN_div(num
, NULL
, val
, x
, ctx
);
371 if (BN_is_prime_ex(num
, PRIME_CHECKS
, NULL
,
373 pr_print(num
, hflag
, xflag
);
379 if (!BN_add_word(i
, 1))
380 errx(1, "error in BN_add_word()");
385 * Sigh.. No _decimal_ output to file functions in BN.
388 BN_print_dec_fp(FILE *fp
, const BIGNUM
*num
)
392 buf
= BN_bn2dec(num
);
394 return; /* XXX do anything here? */
395 fprintf(fp
, "%s", buf
);
402 BN_print_fp(FILE *fp
, const BIGNUM
*num
)
404 fprintf(fp
, "%lx", (unsigned long)*num
);
408 BN_print_dec_fp(FILE *fp
, const BIGNUM
*num
)
410 fprintf(fp
, "%lu", (unsigned long)*num
);
414 BN_dec2bn(BIGNUM
**a
, const char *str
)
419 **a
= strtoul(str
, &p
, 10);
420 return (errno
== 0 ? 1 : 0); /* OpenSSL returns 0 on error! */
424 BN_hex2bn(BIGNUM
**a
, const char *str
)
429 **a
= strtoul(str
, &p
, 16);
430 return (errno
== 0 ? 1 : 0); /* OpenSSL returns 0 on error! */
434 BN_div_word(BIGNUM
*a
, BN_ULONG b
)
444 BN_dup(const BIGNUM
*a
)
446 BIGNUM
*b
= BN_new();
453 /* Convert string pointed to by *str to a bignum. */
455 convert_str2bn(BIGNUM
**val
, char *p
)
461 errx(1, "negative numbers aren't permitted.");
462 if (*p
== '0' && (p
[1] == 'x' || p
[1] == 'X')) {
463 n
= BN_hex2bn(val
, p
+ 2);
465 n
= BN_dec2bn(val
, p
);
468 errx(1, "%s: illegal numeric format.", p
);